From 605924b2b81a8eb38b5e5748ff2ec905def4645b Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Sun, 21 Jan 2007 14:13:39 +0000 Subject: [PATCH] [Jeff] fix some strings. --- src/common/commands.py | 2 +- src/common/connection.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/commands.py b/src/common/commands.py index cd3a1e640..457266e45 100644 --- a/src/common/commands.py +++ b/src/common/commands.py @@ -227,7 +227,7 @@ class LeaveGroupchatsCommand(AdHocCommand): self.badRequest(request) return False response, cmd = self.buildResponse(request, status = 'completed') - note = _('You leaved the following groupchats:') + note = _('You left the following groupchats:') for room_jid in gc: note += '\n\t' + room_jid cmd.addChild('note', {}, note) diff --git a/src/common/connection.py b/src/common/connection.py index 70775cf13..3e52aec5e 100644 --- a/src/common/connection.py +++ b/src/common/connection.py @@ -569,7 +569,7 @@ class Connection(ConnectionHandlers): else: self.dispatch('ERROR', (_('Error while removing privacy list'), _('Privacy list %s has not been removed. It is maybe active in ' - 'one of your connected resources. Desactivate it and try ' + 'one of your connected resources. Deactivate it and try ' 'again.') % privacy_list)) common.xmpp.features_nb.delPrivacyList(self.connection, privacy_list, _on_del_privacy_list_result)