15 |
|
|
16 |
from wxPython.wx import * |
from wxPython.wx import * |
17 |
|
|
18 |
from locale import getdefaultlocale |
from Thuban import _, internal_from_unicode, get_internal_encoding |
|
|
|
|
from Thuban import _, internal_from_unicode |
|
19 |
from Thuban.version import versions |
from Thuban.version import versions |
20 |
from Thuban.Model.resource import gdal_support_status |
from Thuban.Model.resource import gdal_support_status |
21 |
|
|
70 |
text+= '\t%s %s\n' % (name, version) |
text+= '\t%s %s\n' % (name, version) |
71 |
text += '\n' |
text += '\n' |
72 |
|
|
73 |
|
text += _('\tInternal encoding: %s\n') % get_internal_encoding() |
74 |
|
text += '\n' |
75 |
|
|
76 |
if gdal_support_status: |
if gdal_support_status: |
77 |
text += gdal_support_status + "\n\n" |
text += gdal_support_status + "\n\n" |
78 |
|
|
137 |
|
|
138 |
text_title = wxStaticText(self, -1, |
text_title = wxStaticText(self, -1, |
139 |
_("Thuban is a program for exploring geographic data.\n\n") + |
_("Thuban is a program for exploring geographic data.\n\n") + |
140 |
"Copyright 2001-2004 Intevation GmbH.\n" + |
"Copyright 2001-2005 Intevation GmbH.\n" + |
141 |
_("Thuban is licensed under the GNU GPL"), |
_("Thuban is licensed under the GNU GPL"), |
142 |
style=wxST_NO_AUTORESIZE|wxALIGN_CENTRE) |
style=wxST_NO_AUTORESIZE|wxALIGN_CENTRE) |
143 |
|
|