summaryrefslogtreecommitdiff
path: root/src/plugins/irc
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2014-06-08 09:39:27 +0200
committerSébastien Helleu <flashcode@flashtux.org>2014-06-08 09:39:27 +0200
commitf68c9c6df6d22c55015ebe69430d73ad4e6661a0 (patch)
tree6fb2735ee3bfb19d851b820989ca97e40b49981c /src/plugins/irc
parent17e451ae55ed666cdc4a2b7051f027a459001335 (diff)
downloadweechat-f68c9c6df6d22c55015ebe69430d73ad4e6661a0.zip
irc: fix help of commands kick/kickban/remove (closes #102)
Diffstat (limited to 'src/plugins/irc')
-rw-r--r--src/plugins/irc/irc-command.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/irc/irc-command.c b/src/plugins/irc/irc-command.c
index 46ea6c1d5..ecb20011a 100644
--- a/src/plugins/irc/irc-command.c
+++ b/src/plugins/irc/irc-command.c
@@ -6049,7 +6049,7 @@ irc_command_init ()
&irc_command_join, NULL);
weechat_hook_command (
"kick",
- N_("forcibly remove a user from a channel"),
+ N_("kick a user out of a channel"),
N_("[<channel>] <nick> [<reason>]"),
N_("channel: channel name\n"
" nick: nick\n"
@@ -6058,7 +6058,7 @@ irc_command_init ()
"%(nicks) %(irc_msg_kick) %-", &irc_command_kick, NULL);
weechat_hook_command (
"kickban",
- N_("kicks and bans a nick from a channel"),
+ N_("kick a user out of a channel and ban the host"),
N_("[<channel>] <nick> [<reason>]"),
N_("channel: channel name\n"
" nick: nick\n"
@@ -6307,7 +6307,7 @@ irc_command_init ()
NULL, &irc_command_rehash, NULL);
weechat_hook_command (
"remove",
- N_("remove a user from the channel"),
+ N_("force a user to leave a channel"),
N_("[<channel>] <nick> [<reason>]"),
N_("channel: channel name\n"
" nick: nick\n"