diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2018-01-06 13:58:26 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2018-01-06 14:07:57 +0100 |
commit | 9876a8d0a78a118f65a020c727c1fb079b9adcbd (patch) | |
tree | b55504f846ebfcbcc70766dc00f9ad6164ae14d1 /doc/en/autogen | |
parent | bab307bf1b5ac07c45fd2ddb78930831bddb9c4b (diff) | |
download | weechat-9876a8d0a78a118f65a020c727c1fb079b9adcbd.zip |
core: update translations (issue #128)
Diffstat (limited to 'doc/en/autogen')
-rw-r--r-- | doc/en/autogen/plugin_api/infos.adoc | 16 | ||||
-rw-r--r-- | doc/en/autogen/user/guile_commands.adoc | 7 | ||||
-rw-r--r-- | doc/en/autogen/user/javascript_commands.adoc | 7 | ||||
-rw-r--r-- | doc/en/autogen/user/lua_commands.adoc | 7 | ||||
-rw-r--r-- | doc/en/autogen/user/perl_commands.adoc | 7 | ||||
-rw-r--r-- | doc/en/autogen/user/php_commands.adoc | 7 | ||||
-rw-r--r-- | doc/en/autogen/user/python_commands.adoc | 7 | ||||
-rw-r--r-- | doc/en/autogen/user/ruby_commands.adoc | 7 | ||||
-rw-r--r-- | doc/en/autogen/user/tcl_commands.adoc | 7 |
9 files changed, 64 insertions, 8 deletions
diff --git a/doc/en/autogen/plugin_api/infos.adoc b/doc/en/autogen/plugin_api/infos.adoc index 120a6535a..004c8ad65 100644 --- a/doc/en/autogen/plugin_api/infos.adoc +++ b/doc/en/autogen/plugin_api/infos.adoc @@ -10,6 +10,8 @@ | fifo | fifo_filename | name of FIFO pipe | - +| guile | guile_eval | evaluation of source code | source code to execute + | guile | guile_interpreter | name of the interpreter used | - | guile | guile_version | version of the interpreter used | - @@ -32,34 +34,48 @@ | irc | irc_server_isupport_value | value of feature, if supported by server (from IRC message 005) | server,feature +| javascript | javascript_eval | evaluation of source code | source code to execute + | javascript | javascript_interpreter | name of the interpreter used | - | javascript | javascript_version | version of the interpreter used | - +| lua | lua_eval | evaluation of source code | source code to execute + | lua | lua_interpreter | name of the interpreter used | - | lua | lua_version | version of the interpreter used | - +| perl | perl_eval | evaluation of source code | source code to execute + | perl | perl_interpreter | name of the interpreter used | - | perl | perl_version | version of the interpreter used | - +| php | php_eval | evaluation of source code | source code to execute + | php | php_interpreter | name of the interpreter used | - | php | php_version | version of the interpreter used | - | python | python2_bin | path to python 2.x interpreter | - +| python | python_eval | evaluation of source code | source code to execute + | python | python_interpreter | name of the interpreter used | - | python | python_version | version of the interpreter used | - | relay | relay_client_count | number of clients for relay | status name (optional): connecting, waiting_auth, connected, auth_failed, disconnected +| ruby | ruby_eval | evaluation of source code | source code to execute + | ruby | ruby_interpreter | name of the interpreter used | - | ruby | ruby_version | version of the interpreter used | - +| tcl | tcl_eval | evaluation of source code | source code to execute + | tcl | tcl_interpreter | name of the interpreter used | - | tcl | tcl_version | version of the interpreter used | - diff --git a/doc/en/autogen/user/guile_commands.adoc b/doc/en/autogen/user/guile_commands.adoc index 3b5d8fbe2..81e7934ec 100644 --- a/doc/en/autogen/user/guile_commands.adoc +++ b/doc/en/autogen/user/guile_commands.adoc @@ -10,6 +10,7 @@ load [-q] <filename> autoload reload|unload [-q] [<name>] + eval [-o|-oc] <code> version list: list loaded scripts @@ -19,8 +20,12 @@ autoload: load all scripts in "autoload" directory reload: reload a script (if no name given, unload all scripts, then load all scripts in "autoload" directory) unload: unload a script (if no name given, unload all scripts) filename: script (file) to load - name: a script name (name used in call to "register" function) -q: quiet mode: do not display messages + name: a script name (name used in call to "register" function) + eval: evaluate source code and display result on current buffer + -o: send evaluation result to the buffer without executing commands + -oc: send evaluation result to the buffer and execute commands + code: source code to evaluate version: display the version of interpreter used Without argument, this command lists all loaded scripts. diff --git a/doc/en/autogen/user/javascript_commands.adoc b/doc/en/autogen/user/javascript_commands.adoc index 4a4ab1a00..235154919 100644 --- a/doc/en/autogen/user/javascript_commands.adoc +++ b/doc/en/autogen/user/javascript_commands.adoc @@ -10,6 +10,7 @@ load [-q] <filename> autoload reload|unload [-q] [<name>] + eval [-o|-oc] <code> version list: list loaded scripts @@ -19,8 +20,12 @@ autoload: load all scripts in "autoload" directory reload: reload a script (if no name given, unload all scripts, then load all scripts in "autoload" directory) unload: unload a script (if no name given, unload all scripts) filename: script (file) to load - name: a script name (name used in call to "register" function) -q: quiet mode: do not display messages + name: a script name (name used in call to "register" function) + eval: evaluate source code and display result on current buffer + -o: send evaluation result to the buffer without executing commands + -oc: send evaluation result to the buffer and execute commands + code: source code to evaluate version: display the version of interpreter used Without argument, this command lists all loaded scripts. diff --git a/doc/en/autogen/user/lua_commands.adoc b/doc/en/autogen/user/lua_commands.adoc index 885d5f4ca..109a348bf 100644 --- a/doc/en/autogen/user/lua_commands.adoc +++ b/doc/en/autogen/user/lua_commands.adoc @@ -10,6 +10,7 @@ load [-q] <filename> autoload reload|unload [-q] [<name>] + eval [-o|-oc] <code> version list: list loaded scripts @@ -19,8 +20,12 @@ autoload: load all scripts in "autoload" directory reload: reload a script (if no name given, unload all scripts, then load all scripts in "autoload" directory) unload: unload a script (if no name given, unload all scripts) filename: script (file) to load - name: a script name (name used in call to "register" function) -q: quiet mode: do not display messages + name: a script name (name used in call to "register" function) + eval: evaluate source code and display result on current buffer + -o: send evaluation result to the buffer without executing commands + -oc: send evaluation result to the buffer and execute commands + code: source code to evaluate version: display the version of interpreter used Without argument, this command lists all loaded scripts. diff --git a/doc/en/autogen/user/perl_commands.adoc b/doc/en/autogen/user/perl_commands.adoc index c047a2f0e..44fbd52a5 100644 --- a/doc/en/autogen/user/perl_commands.adoc +++ b/doc/en/autogen/user/perl_commands.adoc @@ -10,6 +10,7 @@ load [-q] <filename> autoload reload|unload [-q] [<name>] + eval [-o|-oc] <code> version list: list loaded scripts @@ -19,8 +20,12 @@ autoload: load all scripts in "autoload" directory reload: reload a script (if no name given, unload all scripts, then load all scripts in "autoload" directory) unload: unload a script (if no name given, unload all scripts) filename: script (file) to load - name: a script name (name used in call to "register" function) -q: quiet mode: do not display messages + name: a script name (name used in call to "register" function) + eval: evaluate source code and display result on current buffer + -o: send evaluation result to the buffer without executing commands + -oc: send evaluation result to the buffer and execute commands + code: source code to evaluate version: display the version of interpreter used Without argument, this command lists all loaded scripts. diff --git a/doc/en/autogen/user/php_commands.adoc b/doc/en/autogen/user/php_commands.adoc index ee1cc62f3..447d3c1f6 100644 --- a/doc/en/autogen/user/php_commands.adoc +++ b/doc/en/autogen/user/php_commands.adoc @@ -10,6 +10,7 @@ load [-q] <filename> autoload reload|unload [-q] [<name>] + eval [-o|-oc] <code> version list: list loaded scripts @@ -19,8 +20,12 @@ autoload: load all scripts in "autoload" directory reload: reload a script (if no name given, unload all scripts, then load all scripts in "autoload" directory) unload: unload a script (if no name given, unload all scripts) filename: script (file) to load - name: a script name (name used in call to "register" function) -q: quiet mode: do not display messages + name: a script name (name used in call to "register" function) + eval: evaluate source code and display result on current buffer + -o: send evaluation result to the buffer without executing commands + -oc: send evaluation result to the buffer and execute commands + code: source code to evaluate version: display the version of interpreter used Without argument, this command lists all loaded scripts. diff --git a/doc/en/autogen/user/python_commands.adoc b/doc/en/autogen/user/python_commands.adoc index a3a49558e..a6d678094 100644 --- a/doc/en/autogen/user/python_commands.adoc +++ b/doc/en/autogen/user/python_commands.adoc @@ -10,6 +10,7 @@ load [-q] <filename> autoload reload|unload [-q] [<name>] + eval [-o|-oc] <code> version list: list loaded scripts @@ -19,8 +20,12 @@ autoload: load all scripts in "autoload" directory reload: reload a script (if no name given, unload all scripts, then load all scripts in "autoload" directory) unload: unload a script (if no name given, unload all scripts) filename: script (file) to load - name: a script name (name used in call to "register" function) -q: quiet mode: do not display messages + name: a script name (name used in call to "register" function) + eval: evaluate source code and display result on current buffer + -o: send evaluation result to the buffer without executing commands + -oc: send evaluation result to the buffer and execute commands + code: source code to evaluate version: display the version of interpreter used Without argument, this command lists all loaded scripts. diff --git a/doc/en/autogen/user/ruby_commands.adoc b/doc/en/autogen/user/ruby_commands.adoc index 9e4b70552..152e35d93 100644 --- a/doc/en/autogen/user/ruby_commands.adoc +++ b/doc/en/autogen/user/ruby_commands.adoc @@ -10,6 +10,7 @@ load [-q] <filename> autoload reload|unload [-q] [<name>] + eval [-o|-oc] <code> version list: list loaded scripts @@ -19,8 +20,12 @@ autoload: load all scripts in "autoload" directory reload: reload a script (if no name given, unload all scripts, then load all scripts in "autoload" directory) unload: unload a script (if no name given, unload all scripts) filename: script (file) to load - name: a script name (name used in call to "register" function) -q: quiet mode: do not display messages + name: a script name (name used in call to "register" function) + eval: evaluate source code and display result on current buffer + -o: send evaluation result to the buffer without executing commands + -oc: send evaluation result to the buffer and execute commands + code: source code to evaluate version: display the version of interpreter used Without argument, this command lists all loaded scripts. diff --git a/doc/en/autogen/user/tcl_commands.adoc b/doc/en/autogen/user/tcl_commands.adoc index 124f9adae..db0d7b78d 100644 --- a/doc/en/autogen/user/tcl_commands.adoc +++ b/doc/en/autogen/user/tcl_commands.adoc @@ -10,6 +10,7 @@ load [-q] <filename> autoload reload|unload [-q] [<name>] + eval [-o|-oc] <code> version list: list loaded scripts @@ -19,8 +20,12 @@ autoload: load all scripts in "autoload" directory reload: reload a script (if no name given, unload all scripts, then load all scripts in "autoload" directory) unload: unload a script (if no name given, unload all scripts) filename: script (file) to load - name: a script name (name used in call to "register" function) -q: quiet mode: do not display messages + name: a script name (name used in call to "register" function) + eval: evaluate source code and display result on current buffer + -o: send evaluation result to the buffer without executing commands + -oc: send evaluation result to the buffer and execute commands + code: source code to evaluate version: display the version of interpreter used Without argument, this command lists all loaded scripts. |