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

irc: replace "user" by "nick" in description of commands

This commit is contained in:
Sebastien Helleu
2014-03-22 10:05:45 +01:00
parent 73576b49d0
commit aad5765e35
18 changed files with 87 additions and 80 deletions
+4 -4
View File
@@ -5792,7 +5792,7 @@ irc_command_init ()
N_("ban nicks or hosts"),
N_("[<channel>] [<nick> [<nick>...]]"),
N_("channel: channel name\n"
" nick: user or host\n"
" nick: nick or host\n"
"\n"
"Without argument, this command display ban list for current channel."),
"%(irc_channel_nicks_hosts)", &irc_command_ban, NULL);
@@ -6208,7 +6208,7 @@ irc_command_init ()
N_("quiet nicks or hosts"),
N_("[<channel>] [<nick> [<nick>...]]"),
N_("channel: channel name\n"
" nick: user or host\n"
" nick: nick or host\n"
"\n"
"Without argument, this command display quiet list for current "
"channel."),
@@ -6399,14 +6399,14 @@ irc_command_init ()
N_("unban nicks or hosts"),
N_("[<channel>] <nick> [<nick>...]"),
N_("channel: channel name\n"
" nick: user or host"),
" nick: nick or host"),
NULL, &irc_command_unban, NULL);
weechat_hook_command (
"unquiet",
N_("unquiet nicks or hosts"),
N_("[<channel>] <nick> [<nick>...]"),
N_("channel: channel name\n"
" nick: user or host"),
" nick: nick or host"),
"%(irc_channel_nicks_hosts)", &irc_command_unquiet, NULL);
weechat_hook_command (
"userhost",