diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2017-06-03 14:58:03 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2017-06-25 16:35:27 +0200 |
commit | 1cc43c1a9c50a76380fc58e6e5076ce635eec512 (patch) | |
tree | 4174a2e013745c05c7fe2670fd51f9e3650cb793 /src | |
parent | 4eca2787ec7fdfc68b670ab74c99d1af1b1dbe19 (diff) | |
download | weechat-1cc43c1a9c50a76380fc58e6e5076ce635eec512.zip |
fset: add missing "${type_en}" and "${description_en}" in /help fset
Diffstat (limited to 'src')
-rw-r--r-- | src/plugins/fset/fset-command.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/plugins/fset/fset-command.c b/src/plugins/fset/fset-command.c index ced7d6573..7824e0528 100644 --- a/src/plugins/fset/fset-command.c +++ b/src/plugins/fset/fset-command.c @@ -532,7 +532,8 @@ fset_command_init () " - option data, with color and padded by spaces on the right:\n" " - ${name}: option name\n" " - ${parent_name}: parent option name\n" - " - ${type}: option type\n" + " - ${type}: option type (translated)\n" + " - ${type_en}: option type (in English)\n" " - ${default_value}: option default value\n" " - ${default_value_undef}: \"1\" if default value is null, " "otherwise \"0\"\n" @@ -544,7 +545,8 @@ fset_command_init () " - ${parent_value}: parent option value\n" " - ${min}: min value\n" " - ${max}: max value\n" - " - ${description}: option description\n" + " - ${description}: option description (translated)\n" + " - ${description_en}: option description (in English)\n" " - ${string_values}: string values allowed for set of an " "integer option using strings\n" " - ${marked}: \"1\" if option is marked, otherwise \"0\"\n" |