diff --git a/src/common/connection.py b/src/common/connection.py index 53592455d8378b96750f7264bc6f42bb44f3743a..99e5d0463bd16b8a41768abdb10b5ef85d2ea338 100644 --- a/src/common/connection.py +++ b/src/common/connection.py @@ -1262,7 +1262,12 @@ class Connection(CommonConnection, ConnectionHandlers): # we are not retrying, and not conecting if not self.retrycount and self.connected != 0: self.disconnect(on_purpose = True) - pritxt = _('Could not connect to "%s"') % self._hostname + if self._proxy: + pritxt = _('Could not connect to "%(host)s" via proxy "%(proxy)s"') %\ + {'host': self._hostname, 'proxy': self._proxy['host']} + else: + pritxt = _('Could not connect to "%(host)s"') % {'host': \ + self._hostname} sectxt = _('Check your connection or try again later.') if self.streamError: # show error dialog