diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2020-09-12 18:08:13 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2020-09-12 18:08:13 +0200 |
commit | 1745b78b5727d4a8fef74f36aa79e61ba2a3850d (patch) | |
tree | 2141b7ddde6c2b06f2f815eb21f914e08669ce28 /src/plugins/irc | |
parent | 7ce5dce8f9c3461a4cd2cdd6f4f8dbd9ea72e636 (diff) | |
download | weechat-1745b78b5727d4a8fef74f36aa79e61ba2a3850d.zip |
irc: fix typo in English plural form of "normal" (normals -> normal)
Diffstat (limited to 'src/plugins/irc')
-rw-r--r-- | src/plugins/irc/irc-protocol.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/irc/irc-protocol.c b/src/plugins/irc/irc-protocol.c index dc3fad004..cc343f589 100644 --- a/src/plugins/irc/irc-protocol.c +++ b/src/plugins/irc/irc-protocol.c @@ -5422,12 +5422,12 @@ IRC_PROTOCOL_CALLBACK(366) length = strlen (str_nicks_count); snprintf (str_nicks_count + length, sizeof (str_nicks_count) - length, - "%s%s%d%s %s", + /* TRANSLATORS: eg: "2 normal" in the sense "2 normal nicks" (ie no op/voice) */ + NG_("%s%s%d%s normal", "%s%s%d%s normal", num_normal), (str_nicks_count[0]) ? ", " : "", IRC_COLOR_CHAT_CHANNEL, num_normal, - IRC_COLOR_RESET, - NG_("normal", "normals", num_normal)); + IRC_COLOR_RESET); weechat_printf_date_tags ( irc_msgbuffer_get_target_buffer ( server, NULL, command, "names", ptr_channel->buffer), |