1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-01 07:16:37 +02:00

irc: fix help of commands kick/kickban/remove (closes #102)

This commit is contained in:
Sébastien Helleu
2014-06-08 09:39:27 +02:00
parent 17e451ae55
commit f68c9c6df6
21 changed files with 226 additions and 103 deletions
+3 -3
View File
@@ -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"