1 |
# Copyright (c) 2001-2005 by Intevation GmbH |
# Copyright (c) 2001-2007 by Intevation GmbH |
2 |
|
# vim: set fileencoding=ISO-8859-15 : |
3 |
# Authors: |
# Authors: |
4 |
# Jonathan Coles <[email protected]> |
# Jonathan Coles <[email protected]> |
5 |
# Bernhard Reiter <[email protected]> |
# Bernhard Reiter <[email protected]> |
35 |
|
|
36 |
# Note: The source code is in ASCII, so we escape some |
# Note: The source code is in ASCII, so we escape some |
37 |
# characters to get byte strings in latin1. |
# characters to get byte strings in latin1. |
38 |
lead_developer = 'Bernhard Herzog' |
maintainers = [ 'Bernhard Reiter (2006 - current)', |
39 |
developers = [ 'Jonathan Coles', |
'Bernhard Herzog (2001 - 2005)' ] |
40 |
'Frank Koormann', |
lead_developer = 'Bernhard Herzog (2001 - 2005)' |
41 |
internal_from_unicode(u'Martin M\xfcller'), |
developers = [ 'Jonathan Coles (2003, 2005)', |
42 |
'Bernhard Reiter', |
'Frank Koormann (2002 - )', |
43 |
'Jan-Oliver Wagner' ] |
internal_from_unicode(u'Martin M\xfcller (2003)'), |
44 |
|
'Didrik Pinte (2006 - )', |
45 |
|
'Bernhard Reiter (2004 - )', |
46 |
|
'Jan-Oliver Wagner (2002 - 2005)' ] |
47 |
translators = [ ( _('French'), 'Daniel Calvelo Aros' ), |
translators = [ ( _('French'), 'Daniel Calvelo Aros' ), |
48 |
( _('German'), |
( _('German'), |
49 |
internal_from_unicode(u'Bj\xf6rn Broscheit')), |
internal_from_unicode(u'Bj\xf6rn Broscheit')), |
52 |
( _('Portuguese (Brazilian)'), 'Eduardo Patto Kanegae'), |
( _('Portuguese (Brazilian)'), 'Eduardo Patto Kanegae'), |
53 |
( _('Russian'), 'Alex Shevlakov'), |
( _('Russian'), 'Alex Shevlakov'), |
54 |
( _('Spanish'), 'Daniel Calvelo Aros') ] |
( _('Spanish'), 'Daniel Calvelo Aros') ] |
55 |
other_contributors = [ 'Jonathan Byron', |
other_contributors = [ 'Jonathan Byron (2004)', |
56 |
'Didrik Pinte', |
'Ole Rahn (2004)', |
57 |
'Ole Rahn', |
'Silke Reimer (2003, 2004)', |
58 |
'Silke Reimer' ] |
'Martin "Joey" Schulze (2004, 2005)' ] |
59 |
dyn_modules = [ ('wxPython', versions['wxPython']), |
dyn_modules = [ ('wxPython', versions['wxPython']), |
60 |
('Python', versions['python']), |
('Python', versions['python']), |
61 |
('PySQLite', versions['pysqlite']), |
('PySQLite', versions['pysqlite']), |
95 |
text += _('\tNone registered.\n') |
text += _('\tNone registered.\n') |
96 |
text += '\n' |
text += '\n' |
97 |
|
|
98 |
|
text += _('Maintainers:\n') |
99 |
|
for name in maintainers: |
100 |
|
text += '\t%s\n' % name |
101 |
|
text += '\n' |
102 |
|
|
103 |
text += _('Lead Developer:\n') |
text += _('Lead Developer:\n') |
104 |
text += '\t%s\n\n' % lead_developer |
text += '\t%s\n\n' % lead_developer |
105 |
|
|
147 |
|
|
148 |
text_title = wx.StaticText(self, -1, |
text_title = wx.StaticText(self, -1, |
149 |
_("Thuban is a program for exploring geographic data.\n\n") + |
_("Thuban is a program for exploring geographic data.\n\n") + |
150 |
"Copyright 2001-2006 Intevation GmbH.\n" + |
"Copyright 2001-2007 Intevation GmbH.\n" + |
151 |
_("Thuban is licensed under the GNU GPL"), |
_("Thuban is licensed under the GNU GPL"), |
152 |
style=wx.ST_NO_AUTORESIZE|wx.ALIGN_CENTRE) |
style=wx.ST_NO_AUTORESIZE|wx.ALIGN_CENTRE) |
153 |
|
|