/[thuban]/trunk/thuban/Thuban/UI/about.py
ViewVC logotype

Diff of /trunk/thuban/Thuban/UI/about.py

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1568 by jan, Fri Aug 8 13:33:03 2003 UTC revision 1631 by bh, Fri Aug 22 16:01:14 2003 UTC
# Line 27  class About(wxDialog): Line 27  class About(wxDialog):
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"                          ('psycopg', versions.get('psycopg',
46              "\tMartin M�ller\n"                                                   _('- not available')))]
47              "\tJan-Oliver Wagner\n\n"          direct_modules = [ \
48              "Translators:\n"                  ('GTK',      versions.get('gtk', _('- not available'))),
49              "\tFrench: Daniel Calvelo Aros\n"                  ('proj',     versions['proj']) ]
50              "\tItalian: Maurizio Napolitano\n"  
51              "\tRussian: Alex Shevlakov\n"          text = 'Thuban %s\n\n' % versions['thuban-long']
52              "\tSpanish: Daniel Calvelo Aros\n\n"  
53              "Other Contributors:\n"          text += _('Currently using:\n')
54              "\tJonathan Byron\n"  
55              "\tBernhard Reiter\n\n"          for name, version in dyn_modules:
56              "Questions and comments can be sent to the following addresses:\n"              text+= '\t%s %s\n' % (name, version)
57            text += '\n'
58    
59            text += _('Compiled for:\n')
60    
61            for name, version in direct_modules:
62                text+= '\t%s %s\n' % (name, version)
63            text += '\n'
64    
65            text += _('Lead Developer:\n')
66            text += '\t%s\n\n' % lead_developer
67    
68            text += _('Developers:\n')
69            for name in developers:
70                text += '\t%s\n' % name
71            text += '\n'
72    
73            text += _('Translators:\n')
74            for lang, name in translators:
75                text += '\t%s: %s\n' % (lang, name)
76            text += '\n'
77    
78            text += _('Other Contributors:\n')
79            for name in other_contributors:
80                text += '\t%s\n' % name
81            text += '\n'
82    
83            text += \
84                _("Questions and comments can be sent to the following addresses:\n"
85              "\tThuban developers:\n\t\t<[email protected]>\n"              "\tThuban developers:\n\t\t<[email protected]>\n"
86              "\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']))  
87    
88          self.text = text          self.text = text
89    
90          text_title = wxStaticText(self, -1,          text_title = wxStaticText(self, -1,
91              "Thuban is a program for exploring geographic data.\n\n"              _("Thuban is a program for exploring geographic data.\n\n") +
92              "Copyright 2001-2003 Intevation GmbH.\n"              "Copyright 2001-2003 Intevation GmbH.\n" +
93              "Thuban is licensed under the GNU GPL",              _("Thuban is licensed under the GNU GPL"),
94                                    style=wxST_NO_AUTORESIZE|wxALIGN_CENTRE)                                    style=wxST_NO_AUTORESIZE|wxALIGN_CENTRE)
95    
96          textBox = wxTextCtrl(self, -1, text,          textBox = wxTextCtrl(self, -1, text,

Legend:
Removed from v.1568  
changed lines
  Added in v.1631

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26