fix english
This commit is contained in:
parent
f200d994f5
commit
77650c4a6d
1 changed files with 6 additions and 4 deletions
|
@ -1298,8 +1298,9 @@ _('If "%s" accepts this request you will know his status.') %jid)
|
||||||
def change_status(self, widget, account, status):
|
def change_status(self, widget, account, status):
|
||||||
if status == 'invisible':
|
if status == 'invisible':
|
||||||
if self.connected_rooms(account):
|
if self.connected_rooms(account):
|
||||||
dialog = dialogs.ConfirmationDialog(_('You are connected in rooms'),
|
dialog = dialogs.ConfirmationDialog(
|
||||||
_('Changiing status to invisible will disconnect you from all your rooms. Are you sure you want to go invisible?'))
|
_('You are participating in one or more group chats'),
|
||||||
|
_('Changing your status to invisible will result in disconnection from those group chats. Are you sure you want to go invisible?'))
|
||||||
if dialog.get_response() != gtk.RESPONSE_OK:
|
if dialog.get_response() != gtk.RESPONSE_OK:
|
||||||
return
|
return
|
||||||
message = self.get_status_message(status)
|
message = self.get_status_message(status)
|
||||||
|
@ -1338,8 +1339,9 @@ _('If "%s" accepts this request you will know his status.') %jid)
|
||||||
bug_user = True
|
bug_user = True
|
||||||
break
|
break
|
||||||
if bug_user:
|
if bug_user:
|
||||||
dialog = dialogs.ConfirmationDialog(_('You are connected in rooms'),
|
dialog = dialogs.ConfirmationDialog(
|
||||||
_('Changiing status to invisible will disconnect you from all your rooms. Are you sure you want to go invisible?'))
|
_('You are participating in one or more group chats'),
|
||||||
|
_('Changing your status to invisible will result in disconnection from those group chats. Are you sure you want to go invisible?'))
|
||||||
if dialog.get_response() != gtk.RESPONSE_OK:
|
if dialog.get_response() != gtk.RESPONSE_OK:
|
||||||
return
|
return
|
||||||
message = self.get_status_message(status)
|
message = self.get_status_message(status)
|
||||||
|
|
Loading…
Add table
Reference in a new issue