diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2020-04-02 20:38:37 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2020-04-02 20:38:37 +0200 |
commit | 2f8fd4c0ef04bee2d70ed6e9989a86cff28bbe81 (patch) | |
tree | f07cf7bd42029cf02353497a335ed2ac9af41557 /src/plugins/fset/fset-config.c | |
parent | c59f812c740cf891e3fe34cee51f594fd21c71d7 (diff) | |
download | weechat-2f8fd4c0ef04bee2d70ed6e9989a86cff28bbe81.zip |
fset: fix help on options fset.format.option1 and fset.format.option2
Diffstat (limited to 'src/plugins/fset/fset-config.c')
-rw-r--r-- | src/plugins/fset/fset-config.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/fset/fset-config.c b/src/plugins/fset/fset-config.c index c9139877e..b5bcfbab1 100644 --- a/src/plugins/fset/fset-config.c +++ b/src/plugins/fset/fset-config.c @@ -498,8 +498,8 @@ fset_config_init () fset_config_format_option[0] = weechat_config_new_option ( fset_config_file, ptr_section, "option1", "string", - N_("first format of each line with an option which is not marked " - "nor the selected one " + N_("first format of each line, used when option " + "fset.look.format_number is set to 1 " "(note: content is evaluated, see /help fset); " "an empty string uses the default format " "(\"${marked} ${name} ${type} ${value2}\"), which is without " @@ -514,8 +514,8 @@ fset_config_init () fset_config_format_option[1] = weechat_config_new_option ( fset_config_file, ptr_section, "option2", "string", - N_("second format of each line with an option which is not marked " - "nor the selected one " + N_("second format of each line, used when option " + "fset.look.format_number is set to 2 " "(note: content is evaluated, see /help fset); " "an empty string uses the default format " "(\"${marked} ${name} ${type} ${value2}\"), which is without " |