summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/en/weechat_plugin_api.en.txt120
-rw-r--r--doc/fr/weechat_plugin_api.fr.txt120
-rw-r--r--doc/it/weechat_plugin_api.it.txt144
3 files changed, 384 insertions, 0 deletions
diff --git a/doc/en/weechat_plugin_api.en.txt b/doc/en/weechat_plugin_api.en.txt
index 7b996fba7..0e6201878 100644
--- a/doc/en/weechat_plugin_api.en.txt
+++ b/doc/en/weechat_plugin_api.en.txt
@@ -7371,6 +7371,26 @@ Arguments:
|========================================
| Plugin | Signal | Arguments | Description
+| guile | guile_script_loaded +
+ (_new in version 0.3.9_) |
+ string: path to script |
+ scheme script loaded
+
+| guile | guile_script_unloaded +
+ (_new in version 0.3.9_) |
+ string: path to script |
+ scheme script unloaded
+
+| guile | guile_script_installed +
+ (_new in version 0.3.9_) |
+ string: comma-separated list of paths to scripts installed (example: "/path/to/script1.scm,/path/to/script2.scm") |
+ scheme script(s) installed
+
+| guile | guile_script_removed +
+ (_new in version 0.3.9_) |
+ string: comma-separated list of scripts removed (example: "script1.scm,script2.scm") |
+ scheme script(s) removed
+
| irc | xxx,irc_in_yyy ^(1)^ |
string: message |
irc message from server (before irc plugin uses it,
@@ -7489,6 +7509,106 @@ Arguments:
pointer: buffer |
display backlog for buffer
+| lua | lua_script_loaded +
+ (_new in version 0.3.9_) |
+ string: path to script |
+ lua script loaded
+
+| lua | lua_script_unloaded +
+ (_new in version 0.3.9_) |
+ string: path to script |
+ lua script unloaded
+
+| lua | lua_script_installed +
+ (_new in version 0.3.9_) |
+ string: comma-separated list of paths to scripts installed (example: "/path/to/script1.lua,/path/to/script2.lua") |
+ lua script(s) installed
+
+| lua | lua_script_removed +
+ (_new in version 0.3.9_) |
+ string: comma-separated list of scripts removed (example: "script1.lua,script2.lua") |
+ lua script(s) removed
+
+| perl | perl_script_loaded +
+ (_new in version 0.3.9_) |
+ string: path to script |
+ perl script loaded
+
+| perl | perl_script_unloaded +
+ (_new in version 0.3.9_) |
+ string: path to script |
+ perl script unloaded
+
+| perl | perl_script_installed +
+ (_new in version 0.3.9_) |
+ string: comma-separated list of paths to scripts installed (example: "/path/to/script1.pl,/path/to/script2.pl") |
+ perl script(s) installed
+
+| perl | perl_script_removed +
+ (_new in version 0.3.9_) |
+ string: comma-separated list of scripts removed (example: "script1.pl,script2.pl") |
+ perl script(s) removed
+
+| python | python_script_loaded +
+ (_new in version 0.3.9_) |
+ string: path to script |
+ python script loaded
+
+| python | python_script_unloaded +
+ (_new in version 0.3.9_) |
+ string: path to script |
+ python script unloaded
+
+| python | python_script_installed +
+ (_new in version 0.3.9_) |
+ string: comma-separated list of paths to scripts installed (example: "/path/to/script1.py,/path/to/script2.py") |
+ python script(s) installed
+
+| python | python_script_removed +
+ (_new in version 0.3.9_) |
+ string: comma-separated list of scripts removed (example: "script1.py,script2.py") |
+ python script(s) removed
+
+| ruby | ruby_script_loaded +
+ (_new in version 0.3.9_) |
+ string: path to script |
+ ruby script loaded
+
+| ruby | ruby_script_unloaded +
+ (_new in version 0.3.9_) |
+ string: path to script |
+ ruby script unloaded
+
+| ruby | ruby_script_installed +
+ (_new in version 0.3.9_) |
+ string: comma-separated list of paths to scripts installed (example: "/path/to/script1.rb,/path/to/script2.rb") |
+ ruby script(s) installed
+
+| ruby | ruby_script_removed +
+ (_new in version 0.3.9_) |
+ string: comma-separated list of scripts removed (example: "script1.rb,script2.rb") |
+ ruby script(s) removed
+
+| tcl | tcl_script_loaded +
+ (_new in version 0.3.9_) |
+ string: path to script |
+ tcl script loaded
+
+| tcl | tcl_script_unloaded +
+ (_new in version 0.3.9_) |
+ string: path to script |
+ tcl script unloaded
+
+| tcl | tcl_script_installed +
+ (_new in version 0.3.9_) |
+ string: comma-separated list of paths to scripts installed (example: "/path/to/script1.tcl,/path/to/script2.tcl") |
+ tcl script(s) installed
+
+| tcl | tcl_script_removed +
+ (_new in version 0.3.9_) |
+ string: comma-separated list of scripts removed (example: "script1.tcl,script2.tcl") |
+ tcl script(s) removed
+
| weechat | buffer_closing |
pointer: buffer |
closing buffer
diff --git a/doc/fr/weechat_plugin_api.fr.txt b/doc/fr/weechat_plugin_api.fr.txt
index 71309fbc9..e5a263424 100644
--- a/doc/fr/weechat_plugin_api.fr.txt
+++ b/doc/fr/weechat_plugin_api.fr.txt
@@ -7481,6 +7481,26 @@ Paramètres :
|========================================
| Extension | Signal | Paramètres | Description
+| guile | guile_script_loaded +
+ (_nouveau dans la version 0.3.9_) |
+ chaîne: chemin vers le script |
+ script scheme chargé
+
+| guile | guile_script_unloaded +
+ (_nouveau dans la version 0.3.9_) |
+ chaîne: chemin vers le script |
+ script scheme déchargé
+
+| guile | guile_script_installed +
+ (_nouveau dans la version 0.3.9_) |
+ chaîne: liste de chemins vers scripts installés (séparés par des virgules) (exemple: "/chemin/vers/script1.scm,/chemin/vers/script2.scm") |
+ script(s) scheme installé(s)
+
+| guile | guile_script_removed +
+ (_nouveau dans la version 0.3.9_) |
+ chaîne: liste de scripts supprimés (séparés par des virgules) (exemple: "script1.scm,script2.scm") |
+ script(s) scheme supprimé(s)
+
| irc | xxx,irc_in_yyy ^(1)^ |
chaîne : message |
message irc du serveur (avant utilisation par l'extension irc,
@@ -7599,6 +7619,106 @@ Paramètres :
pointeur : tampon |
affichage du backlog pour le tampon
+| lua | lua_script_loaded +
+ (_nouveau dans la version 0.3.9_) |
+ chaîne: chemin vers le script |
+ script lua chargé
+
+| lua | lua_script_unloaded +
+ (_nouveau dans la version 0.3.9_) |
+ chaîne: chemin vers le script |
+ script lua déchargé
+
+| lua | lua_script_installed +
+ (_nouveau dans la version 0.3.9_) |
+ chaîne: liste de chemins vers scripts installés (séparés par des virgules) (exemple: "/chemin/vers/script1.lua,/chemin/vers/script2.lua") |
+ script(s) lua installé(s)
+
+| lua | lua_script_removed +
+ (_nouveau dans la version 0.3.9_) |
+ chaîne: liste de scripts supprimés (séparés par des virgules) (exemple: "script1.lua,script2.lua") |
+ script(s) lua supprimé(s)
+
+| perl | perl_script_loaded +
+ (_nouveau dans la version 0.3.9_) |
+ chaîne: chemin vers le script |
+ script perl chargé
+
+| perl | perl_script_unloaded +
+ (_nouveau dans la version 0.3.9_) |
+ chaîne: chemin vers le script |
+ script perl déchargé
+
+| perl | perl_script_installed +
+ (_nouveau dans la version 0.3.9_) |
+ chaîne: liste de chemins vers scripts installés (séparés par des virgules) (exemple: "/chemin/vers/script1.pl,/chemin/vers/script2.pl") |
+ script(s) perl installé(s)
+
+| perl | perl_script_removed +
+ (_nouveau dans la version 0.3.9_) |
+ chaîne: liste de scripts supprimés (séparés par des virgules) (exemple: "script1.pl,script2.pl") |
+ script(s) perl supprimé(s)
+
+| python | python_script_loaded +
+ (_nouveau dans la version 0.3.9_) |
+ chaîne: chemin vers le script |
+ script python chargé
+
+| python | python_script_unloaded +
+ (_nouveau dans la version 0.3.9_) |
+ chaîne: chemin vers le script |
+ script python déchargé
+
+| python | python_script_installed +
+ (_nouveau dans la version 0.3.9_) |
+ chaîne: liste de chemins vers scripts installés (séparés par des virgules) (exemple: "/chemin/vers/script1.py,/chemin/vers/script2.py") |
+ script(s) python installé(s)
+
+| python | python_script_removed +
+ (_nouveau dans la version 0.3.9_) |
+ chaîne: liste de scripts supprimés (séparés par des virgules) (exemple: "script1.py,script2.py") |
+ script(s) python supprimé(s)
+
+| ruby | ruby_script_loaded +
+ (_nouveau dans la version 0.3.9_) |
+ chaîne: chemin vers le script |
+ script ruby chargé
+
+| ruby | ruby_script_unloaded +
+ (_nouveau dans la version 0.3.9_) |
+ chaîne: chemin vers le script |
+ script ruby déchargé
+
+| ruby | ruby_script_installed +
+ (_nouveau dans la version 0.3.9_) |
+ chaîne: liste de chemins vers scripts installés (séparés par des virgules) (exemple: "/chemin/vers/script1.rb,/chemin/vers/script2.rb") |
+ script(s) ruby installé(s)
+
+| ruby | ruby_script_removed +
+ (_nouveau dans la version 0.3.9_) |
+ chaîne: liste de scripts supprimés (séparés par des virgules) (exemple: "script1.rb,script2.rb") |
+ script(s) ruby supprimé(s)
+
+| tcl | tcl_script_loaded +
+ (_nouveau dans la version 0.3.9_) |
+ chaîne: chemin vers le script |
+ script tcl chargé
+
+| tcl | tcl_script_unloaded +
+ (_nouveau dans la version 0.3.9_) |
+ chaîne: chemin vers le script |
+ script tcl déchargé
+
+| tcl | tcl_script_installed +
+ (_nouveau dans la version 0.3.9_) |
+ chaîne: liste de chemins vers scripts installés (séparés par des virgules) (exemple: "/chemin/vers/script1.tcl,/chemin/vers/script2.tcl") |
+ script(s) tcl installé(s)
+
+| tcl | tcl_script_removed +
+ (_nouveau dans la version 0.3.9_) |
+ chaîne: liste de scripts supprimés (séparés par des virgules) (exemple: "script1.tcl,script2.tcl") |
+ script(s) tcl supprimé(s)
+
| weechat | buffer_closing |
pointeur : tampon |
fermeture du tampon en cours
diff --git a/doc/it/weechat_plugin_api.it.txt b/doc/it/weechat_plugin_api.it.txt
index ff0f90e43..9a4c0c9c9 100644
--- a/doc/it/weechat_plugin_api.it.txt
+++ b/doc/it/weechat_plugin_api.it.txt
@@ -7407,6 +7407,30 @@ Argomenti:
|========================================
| Plugin | Segnale | Argomenti | Descrizione
+// TRANSLATION MISSING
+| guile | guile_script_loaded +
+ (_novità nella versione 0.3.9_) |
+ string: path to script |
+ scheme script loaded
+
+// TRANSLATION MISSING
+| guile | guile_script_unloaded +
+ (_novità nella versione 0.3.9_) |
+ string: path to script |
+ scheme script unloaded
+
+// TRANSLATION MISSING
+| guile | guile_script_installed +
+ (_novità nella versione 0.3.9_) |
+ string: comma-separated list of paths to scripts installed (example: "/path/to/script1.scm,/path/to/script2.scm") |
+ scheme script(s) installed
+
+// TRANSLATION MISSING
+| guile | guile_script_removed +
+ (_novità nella versione 0.3.9_) |
+ string: comma-separated list of scripts removed (example: "script1.scm,script2.scm") |
+ scheme script(s) removed
+
| irc | xxx,irc_in_yyy ^(1)^ |
string: messaggio |
messaggio irc dal server (prima di essere utilizzato
@@ -7529,6 +7553,126 @@ Argomenti:
puntatore: buffer |
visualizza log precedenti per il buffer
+// TRANSLATION MISSING
+| lua | lua_script_loaded +
+ (_novità nella versione 0.3.9_) |
+ string: path to script |
+ lua script loaded
+
+// TRANSLATION MISSING
+| lua | lua_script_unloaded +
+ (_novità nella versione 0.3.9_) |
+ string: path to script |
+ lua script unloaded
+
+// TRANSLATION MISSING
+| lua | lua_script_installed +
+ (_novità nella versione 0.3.9_) |
+ string: comma-separated list of paths to scripts installed (example: "/path/to/script1.lua,/path/to/script2.lua") |
+ lua script(s) installed
+
+// TRANSLATION MISSING
+| lua | lua_script_removed +
+ (_novità nella versione 0.3.9_) |
+ string: comma-separated list of scripts removed (example: "script1.lua,script2.lua") |
+ lua script(s) removed
+
+// TRANSLATION MISSING
+| perl | perl_script_loaded +
+ (_novità nella versione 0.3.9_) |
+ string: path to script |
+ perl script loaded
+
+// TRANSLATION MISSING
+| perl | perl_script_unloaded +
+ (_novità nella versione 0.3.9_) |
+ string: path to script |
+ perl script unloaded
+
+// TRANSLATION MISSING
+| perl | perl_script_installed +
+ (_novità nella versione 0.3.9_) |
+ string: comma-separated list of paths to scripts installed (example: "/path/to/script1.pl,/path/to/script2.pl") |
+ perl script(s) installed
+
+// TRANSLATION MISSING
+| perl | perl_script_removed +
+ (_novità nella versione 0.3.9_) |
+ string: comma-separated list of scripts removed (example: "script1.pl,script2.pl") |
+ perl script(s) removed
+
+// TRANSLATION MISSING
+| python | python_script_loaded +
+ (_novità nella versione 0.3.9_) |
+ string: path to script |
+ python script loaded
+
+// TRANSLATION MISSING
+| python | python_script_unloaded +
+ (_novità nella versione 0.3.9_) |
+ string: path to script |
+ python script unloaded
+
+// TRANSLATION MISSING
+| python | python_script_installed +
+ (_novità nella versione 0.3.9_) |
+ string: comma-separated list of paths to scripts installed (example: "/path/to/script1.py,/path/to/script2.py") |
+ python script(s) installed
+
+// TRANSLATION MISSING
+| python | python_script_removed +
+ (_novità nella versione 0.3.9_) |
+ string: comma-separated list of scripts removed (example: "script1.py,script2.py") |
+ python script(s) removed
+
+// TRANSLATION MISSING
+| ruby | ruby_script_loaded +
+ (_novità nella versione 0.3.9_) |
+ string: path to script |
+ ruby script loaded
+
+// TRANSLATION MISSING
+| ruby | ruby_script_unloaded +
+ (_novità nella versione 0.3.9_) |
+ string: path to script |
+ ruby script unloaded
+
+// TRANSLATION MISSING
+| ruby | ruby_script_installed +
+ (_novità nella versione 0.3.9_) |
+ string: comma-separated list of paths to scripts installed (example: "/path/to/script1.rb,/path/to/script2.rb") |
+ ruby script(s) installed
+
+// TRANSLATION MISSING
+| ruby | ruby_script_removed +
+ (_novità nella versione 0.3.9_) |
+ string: comma-separated list of scripts removed (example: "script1.rb,script2.rb") |
+ ruby script(s) removed
+
+// TRANSLATION MISSING
+| tcl | tcl_script_loaded +
+ (_novità nella versione 0.3.9_) |
+ string: path to script |
+ tcl script loaded
+
+// TRANSLATION MISSING
+| tcl | tcl_script_unloaded +
+ (_novità nella versione 0.3.9_) |
+ string: path to script |
+ tcl script unloaded
+
+// TRANSLATION MISSING
+| tcl | tcl_script_installed +
+ (_novità nella versione 0.3.9_) |
+ string: comma-separated list of paths to scripts installed (example: "/path/to/script1.tcl,/path/to/script2.tcl") |
+ tcl script(s) installed
+
+// TRANSLATION MISSING
+| tcl | tcl_script_removed +
+ (_novità nella versione 0.3.9_) |
+ string: comma-separated list of scripts removed (example: "script1.tcl,script2.tcl") |
+ tcl script(s) removed
+
| weechat | buffer_closing |
puntatore: buffer |
chiusura del buffer