better strings
This commit is contained in:
parent
a730ab8e90
commit
7eb8a879b5
|
@ -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()
|
||||||
|
|
Loading…
Reference in New Issue