diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/common/command.c | 5 | ||||
-rw-r--r-- | src/common/weeconfig.c | 3 |
2 files changed, 6 insertions, 2 deletions
diff --git a/src/common/command.c b/src/common/command.c index c66ecf79f..0f2cea7a8 100644 --- a/src/common/command.c +++ b/src/common/command.c @@ -160,7 +160,10 @@ t_weechat_command weechat_commands[] = "Without argument, /unignore command lists all defined ignore."), "*|%n *|action|ctcp|dcc|pv|%I *|%c *|%s", 0, 4, weechat_cmd_unignore, NULL }, - { "upgrade", N_("upgrade WeeChat without disconnecting from servers"), "", "", + { "upgrade", N_("upgrade WeeChat without disconnecting from servers"), + "", + N_("This command run again WeeChat binary, so it should have been compiled " + "installed with a package manager before running this command."), NULL, 0, 0, weechat_cmd_upgrade, NULL }, { "uptime", N_("show WeeChat uptime"), N_("[-o]"), diff --git a/src/common/weeconfig.c b/src/common/weeconfig.c index 6e59924ba..ac81dade2 100644 --- a/src/common/weeconfig.c +++ b/src/common/weeconfig.c @@ -675,7 +675,8 @@ t_config_option weechat_options_irc[] = OPTION_TYPE_BOOLEAN, BOOL_FALSE, BOOL_TRUE, BOOL_TRUE, NULL, NULL, &cfg_irc_show_away_once, NULL, &config_change_noop }, { "irc_default_msg_part", N_("default part message (leaving channel)"), - N_("default part message (leaving channel)"), + N_("default part message (leaving channel) ('%v' will be replaced by " + "WeeChat version in string)"), OPTION_TYPE_STRING, 0, 0, 0, "WeeChat %v", NULL, NULL, &cfg_irc_default_msg_part, &config_change_noop }, { "irc_default_msg_quit", N_("default quit message"), |