diff options
author | Allan Nordhøy <epost@anotheragency.no> | 2019-11-26 18:16:41 +0100 |
---|---|---|
committer | fiaxh <git@lightrise.org> | 2019-11-26 18:16:41 +0100 |
commit | a10c82191e2d7afa221f752fb318cd6c1f94e6c4 (patch) | |
tree | b69946309a625ed377eb26e94f5e79943859e375 /main/src | |
parent | 7624f349dea57083a92b817351515d15fa3c5f41 (diff) | |
download | dino-a10c82191e2d7afa221f752fb318cd6c1f94e6c4.tar.gz dino-a10c82191e2d7afa221f752fb318cd6c1f94e6c4.zip |
Could not connect to %s (#605)
Diffstat (limited to 'main/src')
-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"); |