thank Anders Ström for Goojim and improve some strings in about dlg
This commit is contained in:
parent
184680f988
commit
d8bfdd60f0
|
@ -1,3 +1,4 @@
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
## dialogs.py
|
## dialogs.py
|
||||||
##
|
##
|
||||||
## Copyright (C) 2003-2006 Yann Le Boulanger <asterix@lagaule.org>
|
## Copyright (C) 2003-2006 Yann Le Boulanger <asterix@lagaule.org>
|
||||||
|
@ -470,7 +471,7 @@ class AboutDialog:
|
||||||
dlg = gtk.AboutDialog()
|
dlg = gtk.AboutDialog()
|
||||||
dlg.set_name('Gajim')
|
dlg.set_name('Gajim')
|
||||||
dlg.set_version(gajim.version)
|
dlg.set_version(gajim.version)
|
||||||
s = u'Copyright \xa9 2003-2006 Gajim Team'
|
s = u'Copyright © 2003-2006 Gajim Team'
|
||||||
dlg.set_copyright(s)
|
dlg.set_copyright(s)
|
||||||
text = open('../COPYING').read()
|
text = open('../COPYING').read()
|
||||||
dlg.set_license(text)
|
dlg.set_license(text)
|
||||||
|
@ -485,7 +486,8 @@ class AboutDialog:
|
||||||
'Dimitur Kirov <dkirov@gmail.com>',
|
'Dimitur Kirov <dkirov@gmail.com>',
|
||||||
'Travis Shirk <travis@pobox.com>',
|
'Travis Shirk <travis@pobox.com>',
|
||||||
'',
|
'',
|
||||||
_('Read AUTHORS file for full list including past developers'),
|
_('Past Developers:'),
|
||||||
|
'Vincent Hanquez <tab@snarc.org>',
|
||||||
'',
|
'',
|
||||||
_('THANKS:'),
|
_('THANKS:'),
|
||||||
]
|
]
|
||||||
|
@ -494,7 +496,8 @@ class AboutDialog:
|
||||||
text_splitted = text.split('\n')
|
text_splitted = text.split('\n')
|
||||||
text = '\n'.join(text_splitted[:-2]) # remove one english setence
|
text = '\n'.join(text_splitted[:-2]) # remove one english setence
|
||||||
# and add it manually as translatable
|
# 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)
|
authors.append(text)
|
||||||
|
|
||||||
dlg.set_authors(authors)
|
dlg.set_authors(authors)
|
||||||
|
@ -509,8 +512,8 @@ class AboutDialog:
|
||||||
#here you write your name in the form Name FamilyName <someone@somewhere>
|
#here you write your name in the form Name FamilyName <someone@somewhere>
|
||||||
dlg.set_translator_credits(_('translator-credits'))
|
dlg.set_translator_credits(_('translator-credits'))
|
||||||
|
|
||||||
artists = ['Christophe Got', 'Dennis Craven', 'Guillaume Morin',
|
artists = ['Anders Ström', 'Christophe Got', 'Dennis Craven',
|
||||||
'Membris Khan']
|
'Guillaume Morin', 'Membris Khan']
|
||||||
dlg.set_artists(artists)
|
dlg.set_artists(artists)
|
||||||
|
|
||||||
rep = dlg.run()
|
rep = dlg.run()
|
||||||
|
|
Loading…
Reference in New Issue