HIG: title is AllCaps. remove space before puncuation; improve strings

This commit is contained in:
Nikos Kouremenos 2006-01-16 16:44:50 +00:00
parent 3caa90957f
commit efbc25b648
1 changed files with 8 additions and 8 deletions

View File

@ -1911,17 +1911,17 @@ class GroupchatConfigWindow(DataFormWindow):
def on_add_button_clicked(self, widget): def on_add_button_clicked(self, widget):
affiliation = self.get_active_affiliation() affiliation = self.get_active_affiliation()
if affiliation == 'outcast': if affiliation == 'outcast':
title = _('Banning ...') title = _('Banning...')
prompt = _('Who do you want to ban ? (jid, domain, ...)') prompt = _('Whom do you want to ban? (JID, domain, ...)')
elif affiliation == 'member': elif affiliation == 'member':
title = _('Becoming member') title = _('Adding Member')
prompt = _('Who do you want to make a member ? (jid, domain, ...)') prompt = _('Whom do you want to make a member? (JID, domain, ...)')
elif affiliation == 'owner': elif affiliation == 'owner':
title = _('Becoming owner') title = _('Adding Owner')
prompt = _('Who do you want to make a owner ? (jid, domain, ...)') prompt = _('Whom do you want to make a owner? (JID, domain, ...)')
else: else:
title = _('Becoming administrator') title = _('Adding Administrator')
prompt = _('Who do you want to make an administrator ? (jid, domain, ...)') prompt = _('Whom do you want to make an administrator? (JID, domain, ...)')
instance = dialogs.InputDialog(title, prompt) instance = dialogs.InputDialog(title, prompt)
response = instance.get_response() response = instance.get_response()