diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2013-07-29 18:53:15 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2013-07-29 18:53:15 +0200 |
commit | 53fa3f770e9763bb6b847b7ebf69ebca08de98d4 (patch) | |
tree | 203aa9ca1197ed0f063ad2990e821d64c6c41f67 | |
parent | 7e64b9f1f94b0d154a8def7c166f0eaeb667c5d5 (diff) | |
download | weechat-53fa3f770e9763bb6b847b7ebf69ebca08de98d4.zip |
irc: add note about evaluated content of option (for options allowing secured data inside)
-rw-r--r-- | src/plugins/irc/irc-config.c | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/src/plugins/irc/irc-config.c b/src/plugins/irc/irc-config.c index 34f4fd89f..78bf50169 100644 --- a/src/plugins/irc/irc-config.c +++ b/src/plugins/irc/irc-config.c @@ -1620,7 +1620,8 @@ irc_config_server_new_option (struct t_config_file *config_file, new_option = weechat_config_new_option ( config_file, section, option_name, "string", - N_("username for SASL authentication"), + N_("username for SASL authentication " + "(note: content is evaluated, see /help eval)"), NULL, 0, 0, default_value, value, null_value_allowed, @@ -1632,7 +1633,8 @@ irc_config_server_new_option (struct t_config_file *config_file, new_option = weechat_config_new_option ( config_file, section, option_name, "string", - N_("password for SASL authentication"), + N_("password for SASL authentication " + "(note: content is evaluated, see /help eval)"), NULL, 0, 0, default_value, value, null_value_allowed, @@ -1745,7 +1747,8 @@ irc_config_server_new_option (struct t_config_file *config_file, N_("command(s) to run when connected to server (many commands " "should be separated by \";\", use \"\\;\" for a semicolon, " "special variables $nick, $channel and $server are replaced " - "by their value)"), + "by their value) " + "(note: content is evaluated, see /help eval)"), NULL, 0, 0, default_value, value, null_value_allowed, @@ -1771,7 +1774,8 @@ irc_config_server_new_option (struct t_config_file *config_file, config_file, section, option_name, "string", N_("comma separated list of channels to join when connected to server " - "(example: \"#chan1,#chan2,#chan3 key1,key2\")"), + "(example: \"#chan1,#chan2,#chan3 key1,key2\") " + "(note: content is evaluated, see /help eval)"), NULL, 0, 0, default_value, value, null_value_allowed, |