27 |
| wxRESIZE_BORDER, |
| wxRESIZE_BORDER, |
28 |
size = (400, 250)) |
size = (400, 250)) |
29 |
|
|
30 |
text = _(#"Build Date: %s\n" |
lead_developer = 'Bernhard Herzog' |
31 |
"%s\n\n" |
developers = [ 'Jonathan Coles', 'Frank Koormann', |
32 |
"Currently using:\n" |
'Martin M�ller', 'Jan-Oliver Wagner' ] |
33 |
"\t%s\n" |
translators = [ ( _('French'), 'Daniel Calvelo Aros' ), |
34 |
"\t%s\n" |
( _('German'), 'Bj�rn Broscheit'), |
35 |
"\t%s\n" |
( _('Italian'), 'Maurizio Napolitano'), |
36 |
"\t%s\n" |
( _('Russian'), 'Alex Shevlakov'), |
37 |
"\t%s\n\n" |
( _('Spanish'), 'Daniel Calvelo Aros') ] |
38 |
"Compiled against:\n" |
other_contributors = [ 'Jonathan Byron', 'Silke Reimer', |
39 |
"\t%s\n" |
'Bernhard Reiter' ] |
40 |
"\t%s\n\n" |
dyn_modules = [ ('wxPython', versions['wxPython']), |
41 |
"Lead Developer:\n" |
('Python', versions['python']), |
42 |
"\tBernhard Herzog\n\n" |
('PySQLite', versions['pysqlite']), |
43 |
"Developers:\n" |
('SQLite', versions['sqlite']), |
44 |
"\tJonathan Coles\n" |
('GDAL', versions.get('gdal',_('- not available')))] |
45 |
"\tFrank Koormann\n" |
direct_modules = [ \ |
46 |
"\tMartin M�ller\n" |
('GTK', versions.get('gtk', _('- not available'))), |
47 |
"\tJan-Oliver Wagner\n\n" |
('proj', versions['proj']) ] |
48 |
"Translators:\n" |
|
49 |
"\tFrench: Daniel Calvelo Aros\n" |
text = 'Thuban %s\n\n' % versions['thuban-long'] |
50 |
"\tItalian: Maurizio Napolitano\n" |
|
51 |
"\tRussian: Alex Shevlakov\n" |
text += _('Currently using:\n') |
52 |
"\tSpanish: Daniel Calvelo Aros\n\n" |
|
53 |
"Other Contributors:\n" |
for name, version in dyn_modules: |
54 |
"\tJonathan Byron\n" |
text+= '\t%s %s\n' % (name, version) |
55 |
"\tBernhard Reiter\n\n" |
text += '\n' |
56 |
"Questions and comments can be sent to the following addresses:\n" |
|
57 |
|
text += _('Compiled for:\n') |
58 |
|
|
59 |
|
for name, version in direct_modules: |
60 |
|
text+= '\t%s %s\n' % (name, version) |
61 |
|
text += '\n' |
62 |
|
|
63 |
|
text += _('Lead Developer:\n') |
64 |
|
text += '\t%s\n\n' % lead_developer |
65 |
|
|
66 |
|
text += _('Developers:\n') |
67 |
|
for name in developers: |
68 |
|
text += '\t%s\n' % name |
69 |
|
text += '\n' |
70 |
|
|
71 |
|
text += _('Translators:\n') |
72 |
|
for lang, name in translators: |
73 |
|
text += '\t%s: %s\n' % (lang, name) |
74 |
|
text += '\n' |
75 |
|
|
76 |
|
text += _('Other Contributors:\n') |
77 |
|
for name in other_contributors: |
78 |
|
text += '\t%s\n' % name |
79 |
|
text += '\n' |
80 |
|
|
81 |
|
text += \ |
82 |
|
_("Questions and comments can be sent to the following addresses:\n" |
83 |
"\tThuban developers:\n\t\t<[email protected]>\n" |
"\tThuban developers:\n\t\t<[email protected]>\n" |
84 |
"\tThuban mailing list:\n\t\t<[email protected]>" |
"\tThuban mailing list:\n\t\t<[email protected]>") |
|
% ("Thuban %s" % versions['thuban-long'], |
|
|
"wxPython %s" % versions['wxPython'], |
|
|
"Python %s" % versions['python'], |
|
|
"PySQLite %s" % versions['pysqlite'], |
|
|
"SQLite %s" % versions['sqlite'], |
|
|
"GDAL %s" % versions.get('gdal', "- not available"), |
|
|
"GTK %s" % versions.get('gtk', "- not available"), |
|
|
"proj %s" % versions['proj'])) |
|
85 |
|
|
86 |
self.text = text |
self.text = text |
87 |
|
|
88 |
text_title = wxStaticText(self, -1, |
text_title = wxStaticText(self, -1, |
89 |
"Thuban is a program for exploring geographic data.\n\n" |
_("Thuban is a program for exploring geographic data.\n\n") + |
90 |
"Copyright 2001-2003 Intevation GmbH.\n" |
"Copyright 2001-2003 Intevation GmbH.\n" + |
91 |
"Thuban is licensed under the GNU GPL", |
_("Thuban is licensed under the GNU GPL"), |
92 |
style=wxST_NO_AUTORESIZE|wxALIGN_CENTRE) |
style=wxST_NO_AUTORESIZE|wxALIGN_CENTRE) |
93 |
|
|
94 |
textBox = wxTextCtrl(self, -1, text, |
textBox = wxTextCtrl(self, -1, text, |