diff options
Diffstat (limited to 'main/src/ui')
-rw-r--r-- | main/src/ui/notifications.vala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/ui/notifications.vala b/main/src/ui/notifications.vala index 0bc03a73..2c576e14 100644 --- a/main/src/ui/notifications.vala +++ b/main/src/ui/notifications.vala @@ -106,7 +106,7 @@ public class Notifications : Object { } private void notify_connection_error(Account account, ConnectionManager.ConnectionError error) { - Notification notification = new Notification(_("Failed connecting to %s").printf(account.bare_jid.domainpart)); + 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"); |