[GRASS-SVN] r40035 - grass/trunk/gui/wxpython/gui_modules

svn_grass at osgeo.org svn_grass at osgeo.org
Thu Dec 17 08:42:35 EST 2009


Author: martinl
Date: 2009-12-17 08:42:34 -0500 (Thu, 17 Dec 2009)
New Revision: 40035

Modified:
   grass/trunk/gui/wxpython/gui_modules/help.py
Log:
wxGUI: fix trac #839
       (merge r40034 from devbr6)


Modified: grass/trunk/gui/wxpython/gui_modules/help.py
===================================================================
--- grass/trunk/gui/wxpython/gui_modules/help.py	2009-12-17 13:29:36 UTC (rev 40034)
+++ grass/trunk/gui/wxpython/gui_modules/help.py	2009-12-17 13:42:34 UTC (rev 40035)
@@ -601,11 +601,11 @@
                 for translator in translators[lang]:
                     name, email = translator
                     translatorsBox.Add(item = wx.StaticText(parent = translatorswin, id = wx.ID_ANY,
-                                                        label = name))
+                                                            label =  unicode(name, "utf-8")))
                     translatorsBox.Add(item = wx.StaticText(parent = translatorswin, id = wx.ID_ANY,
-                                                        label = email))
+                                                            label = email))
                     translatorsBox.Add(item = wx.StaticText(parent = translatorswin, id = wx.ID_ANY,
-                                                        label = lang))
+                                                            label = lang))
             
             translatorswin.sizer.Add(item=translatorsBox, proportion=1,
                                  flag=wx.EXPAND | wx.ALL, border=3)



More information about the grass-commit mailing list