diff --git a/src/dialogs.py b/src/dialogs.py index c9b68cb39..1cc439886 100644 --- a/src/dialogs.py +++ b/src/dialogs.py @@ -524,12 +524,15 @@ class AboutDialog: dlg.set_copyright(s) text = open('../COPYING').read() dlg.set_license(text) - + + #FIXME: do versions strings translatable after .10 + #FIXME: use %s then dlg.set_comments(_('A GTK+ jabber client') + '\nGTK+ Version: ' + \ self.tuple2str(gtk.gtk_version) + '\nPyGTK Version: ' + \ self.tuple2str(gtk.pygtk_version)) dlg.set_website('http://www.gajim.org') + #FIXME: do current devs a translatable string authors = [ 'Current Developers:', 'Yann Le Boulanger ', @@ -570,9 +573,9 @@ class AboutDialog: rep = dlg.run() dlg.destroy() - def tuple2str(self, tuple): + def tuple2str(self, tuple_): str_ = '' - for num in tuple: + for num in tuple_: str_ += str(num) + '.' return str_[0:-1] # remove latest .