From 61e2e04f13808033c654cbad6ffe7f4916f7ab86 Mon Sep 17 00:00:00 2001 From: Guillaume Desmottes Date: Wed, 8 Feb 2012 13:36:58 +0100 Subject: [PATCH] improve TP_ERROR_STR_ALREADY_CONNECTED displayed error string 'ressource' is XMPP specific and not clear to most users. https://bugzilla.gnome.org/show_bug.cgi?id=669662 --- js/ui/telepathyClient.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/telepathyClient.js b/js/ui/telepathyClient.js index a74be892e..b2a860907 100644 --- a/js/ui/telepathyClient.js +++ b/js/ui/telepathyClient.js @@ -1323,7 +1323,7 @@ _connectionErrorMessages[Tp.error_get_dbus_name(Tp.Error.CONNECTION_FAILED)] _connectionErrorMessages[Tp.error_get_dbus_name(Tp.Error.CONNECTION_LOST)] = _("Connection has been lost"); _connectionErrorMessages[Tp.error_get_dbus_name(Tp.Error.ALREADY_CONNECTED)] - = _("This resource is already connected to the server"); + = _("This account is already connected to the server"); _connectionErrorMessages[Tp.error_get_dbus_name(Tp.Error.CONNECTION_REPLACED)] = _("Connection has been replaced by a new connection using the same resource"); _connectionErrorMessages[Tp.error_get_dbus_name(Tp.Error.REGISTRATION_EXISTS)]