diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2008-04-12 09:44:14 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2008-04-12 09:44:14 +0200 |
commit | 60d239c8f7c54dd3e654d2f80b713f75eb20bca3 (patch) | |
tree | 4f3060e19b58a93dfbeedf5c658d92696b5989a2 /src | |
parent | cd1e12250db1137c64cc526c77b63a9cbd3ba0cf (diff) | |
download | weechat-60d239c8f7c54dd3e654d2f80b713f75eb20bca3.zip |
Fixed minor bugs with help on options
Diffstat (limited to 'src')
-rw-r--r-- | src/core/wee-command.c | 2 | ||||
-rw-r--r-- | src/core/wee-config.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/core/wee-command.c b/src/core/wee-command.c index 96699e4ba..dceda8ca2 100644 --- a/src/core/wee-command.c +++ b/src/core/wee-command.c @@ -908,7 +908,7 @@ command_help (void *data, struct t_gui_buffer *buffer, GUI_COLOR(GUI_COLOR_CHAT_CHANNEL), argv[1], GUI_COLOR(GUI_COLOR_CHAT), - ptr_option->description); + _(ptr_option->description)); switch (ptr_option->type) { case CONFIG_OPTION_TYPE_BOOLEAN: diff --git a/src/core/wee-config.c b/src/core/wee-config.c index 7bb350aee..7c1a2d02e 100644 --- a/src/core/wee-config.c +++ b/src/core/wee-config.c @@ -781,13 +781,13 @@ config_weechat_init () weechat_config_file, ptr_section, "nicklist_min_size", "integer", N_("min size for nicklist (width or height, depending on " - "look_nicklist_position (0 = no min size))"), + "nicklist_position (0 = no min size))"), NULL, 0, 100, "0", NULL, NULL, &config_change_buffers, NULL, NULL, NULL); config_look_nicklist_max_size = config_file_new_option ( weechat_config_file, ptr_section, "nicklist_max_size", "integer", N_("max size for nicklist (width or height, depending on " - "look_nicklist_position (0 = no max size; if min = max " + "nicklist_position (0 = no max size; if min = max " "and > 0, then size is fixed))"), NULL, 0, 100, "0", NULL, NULL, &config_change_buffers, NULL, NULL, NULL); config_look_nicklist_separator = config_file_new_option ( |