From cd830a4602b4dfe4e4a63c19b84174e60575446f Mon Sep 17 00:00:00 2001 From: Guillaume Desmottes Date: Thu, 07 Feb 2008 11:27:46 +0000 Subject: s/authentification/authentication --- diff --git a/src/server_plugin.py b/src/server_plugin.py index 514f949..35e45bc 100644 --- a/src/server_plugin.py +++ b/src/server_plugin.py @@ -78,7 +78,7 @@ class ServerPlugin(TelepathyPlugin): def _get_account_info(self): """Retrieve connection manager parameters for this account. We first try to connect without the register flag. If the connection - fails because of an authentification error we'll try to register + fails because of an authentication error we'll try to register the account. """ server = self._owner.get_server() @@ -304,8 +304,8 @@ class ServerPlugin(TelepathyPlugin): def _handle_connection_status_change(self, status, reason): """Override TelepathyPlugin implementation to manage connection errors - due to authentification problem. If the connection fails because of an - authentification error that's probably because the account isn't + due to authentication problem. If the connection fails because of an + authentication error that's probably because the account isn't registered yet on the server. So we try to register it.""" if status == self._conn_status: return @@ -313,7 +313,7 @@ class ServerPlugin(TelepathyPlugin): if (status == CONNECTION_STATUS_DISCONNECTED and reason == CONNECTION_STATUS_REASON_AUTHENTICATION_FAILED and not self._account['register']): - _logger.debug('Authentification failed. Try to register the account') + _logger.debug('Authentication failed. Trying to register the account') self._account['register'] = True self._stop() self._init_connection() -- cgit v0.9.1