From ce9bfe53c561cc80587ad92b65822df463670662 Mon Sep 17 00:00:00 2001 From: Nikos Kouremenos Date: Mon, 6 Jun 2005 00:12:51 +0000 Subject: [PATCH] mention link to patchers in about dialog --- src/dialogs.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/dialogs.py b/src/dialogs.py index c4acd3324..e15150a9f 100644 --- a/src/dialogs.py +++ b/src/dialogs.py @@ -367,9 +367,8 @@ class About_dialog: '''Class for about dialog''' def __init__(self): if gtk.pygtk_version < (2, 6, 0) or gtk.gtk_version < (2, 6, 0): - #FIXME: when 0.7.1 is out fix this [add version in _] - Information_dialog(_('Gajim - a GTK+ Jabber client') + '\nVersion %s' \ - % gajim.version) + Information_dialog(_('Gajim - a GTK+ Jabber client\nVersion %s') \ + % gajim.version) return dlg = gtk.AboutDialog() @@ -383,7 +382,7 @@ class About_dialog: dlg.set_comments(_('A GTK jabber client')) dlg.set_website('http://www.gajim.org') - authors = ['Yann Le Boulanger ', 'Vincent Hanquez ', 'Nikos Kouremenos ', 'Alex Podaras '] + authors = ['Yann Le Boulanger ', 'Vincent Hanquez ', 'Nikos Kouremenos ', 'Alex Podaras ', 'Gajim patchers '] dlg.set_authors(authors) pixbuf = gtk.gdk.pixbuf_new_from_file(os.path.join(gajim.DATA_DIR, 'pixmaps/gajim.png'))