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