summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2014-03-12 09:26:28 +0100
committerSebastien Helleu <flashcode@flashtux.org>2014-03-12 09:30:09 +0100
commita38e577596a58efbcff50111fe8769dc4b6679db (patch)
tree967ba59dc75979e59948d57f0b95b38a74ddba80 /src
parentd3ee1bcfe08a5d4163bb1e8d15e25fa0199ae772 (diff)
downloadweechat-a38e577596a58efbcff50111fe8769dc4b6679db.zip
core: update translations
Diffstat (limited to 'src')
-rw-r--r--src/plugins/irc/irc-protocol.c12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/plugins/irc/irc-protocol.c b/src/plugins/irc/irc-protocol.c
index 69dfcb9f8..96953674f 100644
--- a/src/plugins/irc/irc-protocol.c
+++ b/src/plugins/irc/irc-protocol.c
@@ -321,10 +321,11 @@ IRC_PROTOCOL_CALLBACK(cap)
{
ptr_caps = (argv_eol[4][0] == ':') ? argv_eol[4] + 1 : argv_eol[4];
weechat_printf_date_tags (server->buffer, date, NULL,
- _("%s%s: client capability, enabled for current session: %s"),
- weechat_prefix("network"),
- IRC_PLUGIN_NAME,
- ptr_caps);
+ _("%s%s: client capability, currently "
+ "enabled: %s"),
+ weechat_prefix ("network"),
+ IRC_PLUGIN_NAME,
+ ptr_caps);
}
}
else if (strcmp (argv[3], "ACK") == 0)
@@ -334,7 +335,8 @@ IRC_PROTOCOL_CALLBACK(cap)
ptr_caps = (argv_eol[4][0] == ':') ? argv_eol[4] + 1 : argv_eol[4];
weechat_printf_date_tags (server->buffer, date, NULL,
_("%s%s: client capability, enabled: %s"),
- weechat_prefix ("network"), IRC_PLUGIN_NAME,
+ weechat_prefix ("network"),
+ IRC_PLUGIN_NAME,
ptr_caps);
sasl_to_do = 0;
caps_supported = weechat_string_split (ptr_caps, " ", 0, 0,