diff options
Diffstat (limited to 'main/src/ui/notifications.vala')
-rw-r--r-- | main/src/ui/notifications.vala | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/main/src/ui/notifications.vala b/main/src/ui/notifications.vala index 396a88ab..c68ab0ff 100644 --- a/main/src/ui/notifications.vala +++ b/main/src/ui/notifications.vala @@ -112,10 +112,10 @@ public class Notifications : Object { Notification notification = new Notification(_("Could not connect to %s").printf(account.bare_jid.domainpart)); switch (error.source) { case ConnectionManager.ConnectionError.Source.SASL: - notification.set_body("Wrong password"); + notification.set_body(_("Wrong password")); break; case ConnectionManager.ConnectionError.Source.TLS: - notification.set_body("Invalid TLS certificate"); + notification.set_body(_("Invalid TLS certificate")); break; } GLib.Application.get_default().send_notification(account.id.to_string() + "-connection-error", notification); |