summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2016-02-11 07:30:24 +0100
committerSébastien Helleu <flashcode@flashtux.org>2016-02-11 07:30:24 +0100
commit94ef33022dc2dabed3458e2770e500c7ad944696 (patch)
tree2f553a175fb5b77c200ebadce70229f4e0ab49d7 /src
parentca835a6d26581557933b4a11f229f9bc7f329eea (diff)
downloadweechat-94ef33022dc2dabed3458e2770e500c7ad944696.zip
irc: use upper case for SASL in messages displayed
Diffstat (limited to 'src')
-rw-r--r--src/plugins/irc/irc-protocol.c2
-rw-r--r--src/plugins/irc/irc-server.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/irc/irc-protocol.c b/src/plugins/irc/irc-protocol.c
index 689a3c91f..f7b20111d 100644
--- a/src/plugins/irc/irc-protocol.c
+++ b/src/plugins/irc/irc-protocol.c
@@ -427,7 +427,7 @@ IRC_PROTOCOL_CALLBACK(cap)
{
weechat_printf (
server->buffer,
- _("%s%s: client capability: sasl not supported"),
+ _("%s%s: client capability: SASL not supported"),
weechat_prefix ("network"), IRC_PLUGIN_NAME);
}
}
diff --git a/src/plugins/irc/irc-server.c b/src/plugins/irc/irc-server.c
index 6c081e3a0..6f7b4fc33 100644
--- a/src/plugins/irc/irc-server.c
+++ b/src/plugins/irc/irc-server.c
@@ -2916,7 +2916,7 @@ irc_server_timer_sasl_cb (void *data, int remaining_calls)
if (!server->is_connected)
{
weechat_printf (server->buffer,
- _("%s%s: sasl authentication timeout"),
+ _("%s%s: SASL authentication timeout"),
weechat_prefix ("error"), IRC_PLUGIN_NAME);
sasl_fail = IRC_SERVER_OPTION_INTEGER(server,
IRC_SERVER_OPTION_SASL_FAIL);