him --> him or her
This commit is contained in:
parent
2a770a1ebf
commit
67844ff1dc
3 changed files with 3 additions and 3 deletions
|
@ -52,7 +52,7 @@ def Q_(s):
|
||||||
# widget.set_text(s)
|
# widget.set_text(s)
|
||||||
# Q_() removes the ?vcard:
|
# Q_() removes the ?vcard:
|
||||||
# but gettext while parsing the file detects ?vcard:Unknown as a whole string.
|
# but gettext while parsing the file detects ?vcard:Unknown as a whole string.
|
||||||
# translator can either put the ?vcard: part or no (easier for him to no)
|
# translator can either put the ?vcard: part or no (easier for him or her to no)
|
||||||
# nothing fails
|
# nothing fails
|
||||||
s = _(s)
|
s = _(s)
|
||||||
if s[0] == '?':
|
if s[0] == '?':
|
||||||
|
|
|
@ -561,7 +561,7 @@ class Interface:
|
||||||
|
|
||||||
def handle_event_unsubscribed(self, account, jid):
|
def handle_event_unsubscribed(self, account, jid):
|
||||||
dialogs.InformationDialog(_('Contact "%s" removed subscription from you') % jid,
|
dialogs.InformationDialog(_('Contact "%s" removed subscription from you') % jid,
|
||||||
_('You will always see him as offline.'))
|
_('You will always see him or her as offline.'))
|
||||||
if self.remote and self.remote.is_enabled():
|
if self.remote and self.remote.is_enabled():
|
||||||
self.remote.raise_signal('Unsubscribed', (account, jid))
|
self.remote.raise_signal('Unsubscribed', (account, jid))
|
||||||
|
|
||||||
|
|
|
@ -1353,7 +1353,7 @@ _('If "%s" accepts this request you will know his or her status.') %jid)
|
||||||
'''Remove a contact'''
|
'''Remove a contact'''
|
||||||
window = dialogs.ConfirmationDialogCheck(
|
window = dialogs.ConfirmationDialogCheck(
|
||||||
_('Contact "%s" will be removed from your roster') % (user.name),
|
_('Contact "%s" will be removed from your roster') % (user.name),
|
||||||
_('By removing this contact you also by default remove authorization resulting in him/her always seeing you as offline.'),
|
_('By removing this contact you also by default remove authorization resulting in him or her always seeing you as offline.'),
|
||||||
_('I want this contact to know my status after removal'))
|
_('I want this contact to know my status after removal'))
|
||||||
# FIXME:
|
# FIXME:
|
||||||
# maybe use 2 optionboxes from which the user can select? (better)
|
# maybe use 2 optionboxes from which the user can select? (better)
|
||||||
|
|
Loading…
Add table
Reference in a new issue