better strings

This commit is contained in:
Nikos Kouremenos 2005-05-18 12:34:20 +00:00
parent a730ab8e90
commit 7eb8a879b5
1 changed files with 3 additions and 3 deletions

View File

@ -81,8 +81,8 @@ class Edit_groups_dialog:
self.changes_made = True self.changes_made = True
model = self.list.get_model() model = self.list.get_model()
if model[path][1] and len(self.user.groups) == 1: # we try to remove if model[path][1] and len(self.user.groups) == 1: # we try to remove
# the latest group # the last group
Error_dialog(_('There must be at least one group for each contact')) Error_dialog(_('A contact must belong at least to one group'))
return return
model[path][1] = not model[path][1] model[path][1] = not model[path][1]
if model[path][1]: if model[path][1]:
@ -360,7 +360,7 @@ class About_dialog:
'''Class for about dialog''' '''Class for about dialog'''
def __init__(self): def __init__(self):
if gtk.pygtk_version < (2, 6, 0): if gtk.pygtk_version < (2, 6, 0):
Information_dialog(_('Gajim - A GTK jabber client')) Information_dialog(_('Gajim - a GTK+ Jabber client'))
return return
dlg = gtk.AboutDialog() dlg = gtk.AboutDialog()