/[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 1980 by bh, Tue Nov 25 15:59:18 2003 UTC revision 2335 by silke, Wed Aug 11 08:09:44 2004 UTC
# Line 1  Line 1 
1  # Copyright (c) 2001, 2002, 2003 by Intevation GmbH  # Copyright (c) 2001, 2002, 2003, 2004 by Intevation GmbH
2  # Authors:  # Authors:
3  # Jonathan Coles <[email protected]>  # Jonathan Coles <[email protected]>
4    # Bernhard Reiter <[email protected]>
5  #  #
6  # This program is free software under the GPL (>=v2)  # This program is free software under the GPL (>=v2)
7  # Read the file COPYING coming with Thuban for details.  # Read the file COPYING coming with Thuban for details.
# Line 32  class About(wxDialog): Line 33  class About(wxDialog):
33          # characters to get byte strings in latin1.          # characters to get byte strings in latin1.
34          lead_developer = 'Bernhard Herzog'          lead_developer = 'Bernhard Herzog'
35          developers = [ 'Jonathan Coles', 'Frank Koormann',          developers = [ 'Jonathan Coles', 'Frank Koormann',
36                         'Martin M\xfcller', 'Jan-Oliver Wagner' ]                         unicodeToLocale(u'Martin M\xfcller'), 'Jan-Oliver Wagner' ]
37          translators = [ ( _('French'), 'Daniel Calvelo Aros' ),          translators = [ ( _('French'), 'Daniel Calvelo Aros' ),
38                          ( _('German'), 'Bj\xf6rn Broscheit'),                          ( _('German'), unicodeToLocale(u'Bj\xf6rn Broscheit')),
39                          ( _('Italian'), 'Maurizio Napolitano'),                          ( _('Italian'), 'Maurizio Napolitano'),
40                            ( _('Portuguese (Brazilian)'), 'Eduardo Patto Kanegae'),
41                          ( _('Russian'), 'Alex Shevlakov'),                          ( _('Russian'), 'Alex Shevlakov'),
42                          ( _('Spanish'), 'Daniel Calvelo Aros') ]                          ( _('Spanish'), 'Daniel Calvelo Aros') ]
43          other_contributors = [ 'Jonathan Byron', 'Silke Reimer',          other_contributors = [ 'Jonathan Byron', 'Silke Reimer',
# Line 88  class About(wxDialog): Line 90  class About(wxDialog):
90    
91          text += \          text += \
92              _("Questions and comments can be sent to the following addresses:\n"              _("Questions and comments can be sent to the following addresses:\n"
93              "\tThuban developers:\n\t\t<[email protected]>\n"              "\tGeneral list (public):\n\t\t<[email protected]>\n"
94              "\tThuban mailing list:\n\t\t<[email protected]>")              "\tDevelopers list (public):\n\t\t<[email protected]>\n"
95                "\tThuban team at Intevation:\n\t\t<[email protected]>\n"
96                )
97    
98          self.text = text          self.text = text
99    
100          text_title = wxStaticText(self, -1,          text_title = wxStaticText(self, -1,
101              _("Thuban is a program for exploring geographic data.\n\n") +              _("Thuban is a program for exploring geographic data.\n\n") +
102              "Copyright 2001-2003 Intevation GmbH.\n" +              "Copyright 2001-2004 Intevation GmbH.\n" +
103              _("Thuban is licensed under the GNU GPL"),              _("Thuban is licensed under the GNU GPL"),
104                                    style=wxST_NO_AUTORESIZE|wxALIGN_CENTRE)                                    style=wxST_NO_AUTORESIZE|wxALIGN_CENTRE)
105    
# Line 125  class About(wxDialog): Line 129  class About(wxDialog):
129          self.EndModal(wxID_CANCEL)          self.EndModal(wxID_CANCEL)
130    
131    
132    def unicodeToLocale(unicodeStr):
133        " Function to convert a unicode object to an object \ in the user's locale encoding"
134    
135    
136        from locale import getlocale
137    
138        return unicodeStr.encode(getlocale()[1])
139    

Legend:
Removed from v.1980  
changed lines
  Added in v.2335

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26