[Jeff] fix some strings.
This commit is contained in:
parent
d48cde2b29
commit
605924b2b8
|
@ -227,7 +227,7 @@ class LeaveGroupchatsCommand(AdHocCommand):
|
||||||
self.badRequest(request)
|
self.badRequest(request)
|
||||||
return False
|
return False
|
||||||
response, cmd = self.buildResponse(request, status = 'completed')
|
response, cmd = self.buildResponse(request, status = 'completed')
|
||||||
note = _('You leaved the following groupchats:')
|
note = _('You left the following groupchats:')
|
||||||
for room_jid in gc:
|
for room_jid in gc:
|
||||||
note += '\n\t' + room_jid
|
note += '\n\t' + room_jid
|
||||||
cmd.addChild('note', {}, note)
|
cmd.addChild('note', {}, note)
|
||||||
|
|
|
@ -569,7 +569,7 @@ class Connection(ConnectionHandlers):
|
||||||
else:
|
else:
|
||||||
self.dispatch('ERROR', (_('Error while removing privacy list'),
|
self.dispatch('ERROR', (_('Error while removing privacy list'),
|
||||||
_('Privacy list %s has not been removed. It is maybe active in '
|
_('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))
|
'again.') % privacy_list))
|
||||||
common.xmpp.features_nb.delPrivacyList(self.connection, privacy_list,
|
common.xmpp.features_nb.delPrivacyList(self.connection, privacy_list,
|
||||||
_on_del_privacy_list_result)
|
_on_del_privacy_list_result)
|
||||||
|
|
Loading…
Reference in New Issue