summaryrefslogtreecommitdiff
path: root/src/plugins/irc
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2021-10-14 22:21:23 +0200
committerSébastien Helleu <flashcode@flashtux.org>2021-10-17 21:28:31 +0200
commit0be96b7c6638e02dc1b662ce9b2f19318115bba7 (patch)
treedfac1c7496bac101fe62c76169728903d59cb633 /src/plugins/irc
parent9d4119232f5160c1b1f49f9a36832ca8263c4159 (diff)
downloadweechat-0be96b7c6638e02dc1b662ce9b2f19318115bba7.zip
irc: fix messages displayed when prefix/nick is missing
Diffstat (limited to 'src/plugins/irc')
-rw-r--r--src/plugins/irc/irc-protocol.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/irc/irc-protocol.h b/src/plugins/irc/irc-protocol.h
index 8ac4f7c4b..b8f1a9629 100644
--- a/src/plugins/irc/irc-protocol.h
+++ b/src/plugins/irc/irc-protocol.h
@@ -96,7 +96,7 @@
if (argv[0][0] != ':') \
{ \
weechat_printf (server->buffer, \
- _("%s%s: \"%s\" command received without " \
+ _("%s%s: command \"%s\" received without " \
"host"), \
weechat_prefix ("error"), IRC_PLUGIN_NAME, \
command); \
@@ -107,7 +107,7 @@
if (!nick) \
{ \
weechat_printf (server->buffer, \
- _("%s%s: \"%s\" command received without " \
+ _("%s%s: command \"%s\" received without " \
"nick"), \
weechat_prefix ("error"), IRC_PLUGIN_NAME, \
command); \