diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2009-05-28 16:07:40 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2009-05-28 16:07:40 +0200 |
commit | 0e040e8301aff16022887a85c00d03b3df97dfa5 (patch) | |
tree | 60c7245686d1d4d2d5694ffc8a84ba68d760ce36 /src/plugins/logger | |
parent | 62e2f1f808dd2bfbda61ec501eb92e59ed97b5b5 (diff) | |
download | weechat-0e040e8301aff16022887a85c00d03b3df97dfa5.zip |
Convert all docs to asciidoc format, add scripting guide
Diffstat (limited to 'src/plugins/logger')
-rw-r--r-- | src/plugins/logger/logger-config.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/plugins/logger/logger-config.c b/src/plugins/logger/logger-config.c index 3a2f72e54..102921acd 100644 --- a/src/plugins/logger/logger-config.c +++ b/src/plugins/logger/logger-config.c @@ -368,16 +368,17 @@ logger_config_init () logger_config_file_path = weechat_config_new_option ( logger_config_file, ptr_section, "path", "string", - N_("path for WeeChat log files ('%h' will be replaced by WeeChat " - "home, ~/.weechat by default)"), + N_("path for WeeChat log files (\"%h\" will be replaced by WeeChat " + "home, \"~/.weechat\" by default)"), NULL, 0, 0, "%h/logs/", NULL, 0, NULL, NULL, &logger_config_change_file_option_restart_log, NULL, NULL, NULL); logger_config_file_mask = weechat_config_new_option ( logger_config_file, ptr_section, "mask", "string", - N_("default file name mask for log files (format is 'directory/to/file' " - "or 'file', without first '/' because 'path' option is used to " - "build complete path to file); local buffer variables are permitted"), + N_("default file name mask for log files (format is " + "\"directory/to/file\" or \"file\", without first \"/\" because " + "\"path\" option is used to build complete path to file); local " + "buffer variables are permitted"), NULL, 0, 0, "$plugin.$name.weechatlog", NULL, 0, NULL, NULL, &logger_config_change_file_option_restart_log, NULL, NULL, NULL); logger_config_file_info_lines = weechat_config_new_option ( |