From d8bfdd60f0b8a634cf67b8453b5bbdd53fee4066 Mon Sep 17 00:00:00 2001 From: Nikos Kouremenos Date: Wed, 15 Mar 2006 12:59:01 +0000 Subject: [PATCH] =?UTF-8?q?thank=20Anders=20Str=C3=B6m=20for=20Goojim=20an?= =?UTF-8?q?d=20improve=20some=20strings=20in=20about=20dlg?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/dialogs.py | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/src/dialogs.py b/src/dialogs.py index 148a4477f..6f2e37c8e 100644 --- a/src/dialogs.py +++ b/src/dialogs.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- ## dialogs.py ## ## Copyright (C) 2003-2006 Yann Le Boulanger @@ -470,7 +471,7 @@ class AboutDialog: dlg = gtk.AboutDialog() dlg.set_name('Gajim') dlg.set_version(gajim.version) - s = u'Copyright \xa9 2003-2006 Gajim Team' + s = u'Copyright © 2003-2006 Gajim Team' dlg.set_copyright(s) text = open('../COPYING').read() dlg.set_license(text) @@ -485,7 +486,8 @@ class AboutDialog: 'Dimitur Kirov ', 'Travis Shirk ', '', - _('Read AUTHORS file for full list including past developers'), + _('Past Developers:'), + 'Vincent Hanquez ', '', _('THANKS:'), ] @@ -494,7 +496,8 @@ class AboutDialog: text_splitted = text.split('\n') text = '\n'.join(text_splitted[:-2]) # remove one english setence # and add it manually as translatable - text += '\n' + _('Last but not least, we thank all the package maintainers') + '\n' + text += '\n%s\n' % _('Last but not least, we would like to thank all ' + 'the package maintainers.') authors.append(text) dlg.set_authors(authors) @@ -509,8 +512,8 @@ class AboutDialog: #here you write your name in the form Name FamilyName dlg.set_translator_credits(_('translator-credits')) - artists = ['Christophe Got', 'Dennis Craven', 'Guillaume Morin', - 'Membris Khan'] + artists = ['Anders Ström', 'Christophe Got', 'Dennis Craven', + 'Guillaume Morin', 'Membris Khan'] dlg.set_artists(artists) rep = dlg.run()