diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2018-03-24 17:13:17 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2018-03-24 18:36:32 +0100 |
commit | cbad99356f577a0260078e87e5af45bddc3220ba (patch) | |
tree | d0224a434943ec819a6980617aa3c7ec3a616d5d /src | |
parent | a75250b300090b8e3067ba9d7ce8990aa3ded161 (diff) | |
download | weechat-cbad99356f577a0260078e87e5af45bddc3220ba.zip |
irc: fix messages on exception to make them easier to translate
Diffstat (limited to 'src')
-rw-r--r-- | src/plugins/irc/irc-protocol.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/irc/irc-protocol.c b/src/plugins/irc/irc-protocol.c index 59d93339b..50924f46f 100644 --- a/src/plugins/irc/irc-protocol.c +++ b/src/plugins/irc/irc-protocol.c @@ -4081,7 +4081,7 @@ IRC_PROTOCOL_CALLBACK(348) ptr_modelist->state = IRC_MODELIST_STATE_RECEIVING; } - sprintf (str_number, "%s[%s%d%s] ", + sprintf (str_number, " %s[%s%d%s]", IRC_COLOR_CHAT_DELIMITERS, IRC_COLOR_RESET, ((ptr_modelist->last_item) ? ptr_modelist->last_item->number + 1 : 0) + 1, @@ -4106,7 +4106,7 @@ IRC_PROTOCOL_CALLBACK(348) date, irc_protocol_tags (command, "irc_numeric", NULL, NULL), /* TRANSLATORS: "%s" after "on" is a date */ - _("%s%s[%s%s%s] %s%sexception %s%s%s by %s on %s"), + _("%s%s[%s%s%s]%s%s exception %s%s%s by %s on %s"), weechat_prefix ("network"), IRC_COLOR_CHAT_DELIMITERS, IRC_COLOR_CHAT_CHANNEL, @@ -4129,7 +4129,7 @@ IRC_PROTOCOL_CALLBACK(348) server, NULL, command, "exceptionlist", ptr_buffer), date, irc_protocol_tags (command, "irc_numeric", NULL, NULL), - _("%s%s[%s%s%s] %s%sexception %s%s%s by %s"), + _("%s%s[%s%s%s]%s%s exception %s%s%s by %s"), weechat_prefix ("network"), IRC_COLOR_CHAT_DELIMITERS, IRC_COLOR_CHAT_CHANNEL, @@ -4152,7 +4152,7 @@ IRC_PROTOCOL_CALLBACK(348) server, NULL, command, "exceptionlist", ptr_buffer), date, irc_protocol_tags (command, "irc_numeric", NULL, NULL), - _("%s%s[%s%s%s] %s%sexception %s%s"), + _("%s%s[%s%s%s]%s%s exception %s%s"), weechat_prefix ("network"), IRC_COLOR_CHAT_DELIMITERS, IRC_COLOR_CHAT_CHANNEL, |