diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2010-11-18 18:21:26 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2010-11-18 18:21:26 +0100 |
commit | 917ce33ef16dda86cfc7a309c97b7afc1a16f9cd (patch) | |
tree | bb489c818b9ae9da3a34bc56cb1069234cec5cbb /src/core | |
parent | f15f114e4d4a1b649248301fef5cda176ad2a3a3 (diff) | |
download | weechat-917ce33ef16dda86cfc7a309c97b7afc1a16f9cd.zip |
Add note about strftime in help of options weechat.look.buffer_time_format and weechat.look.item_time_format
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/wee-config.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/core/wee-config.c b/src/core/wee-config.c index cb3526758..82c300d18 100644 --- a/src/core/wee-config.c +++ b/src/core/wee-config.c @@ -1288,7 +1288,8 @@ config_weechat_init_options () config_look_buffer_time_format = config_file_new_option ( weechat_config_file, ptr_section, "buffer_time_format", "string", - N_("time format for each line displayed in buffers"), + N_("time format for each line displayed in buffers (see man strftime " + "for date/time specifiers)"), NULL, 0, 0, "%H:%M:%S", NULL, 0, NULL, NULL, &config_change_buffer_time_format, NULL, NULL, NULL); config_look_color_nicks_number = config_file_new_option ( weechat_config_file, ptr_section, @@ -1406,7 +1407,8 @@ config_weechat_init_options () config_look_item_time_format = config_file_new_option ( weechat_config_file, ptr_section, "item_time_format", "string", - N_("time format for \"time\" bar item"), + N_("time format for \"time\" bar item (see man strftime for date/time " + "specifiers)"), NULL, 0, 0, "%H:%M", NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL); config_look_jump_current_to_previous_buffer = config_file_new_option ( weechat_config_file, ptr_section, |