[GRASS-SVN] r40034 -
grass/branches/develbranch_6/gui/wxpython/gui_modules
svn_grass at osgeo.org
svn_grass at osgeo.org
Thu Dec 17 08:29:41 EST 2009
Author: martinl
Date: 2009-12-17 08:29:36 -0500 (Thu, 17 Dec 2009)
New Revision: 40034
Modified:
grass/branches/develbranch_6/gui/wxpython/gui_modules/help.py
Log:
wxGUI: fix trac #839
Modified: grass/branches/develbranch_6/gui/wxpython/gui_modules/help.py
===================================================================
--- grass/branches/develbranch_6/gui/wxpython/gui_modules/help.py 2009-12-17 12:36:31 UTC (rev 40033)
+++ grass/branches/develbranch_6/gui/wxpython/gui_modules/help.py 2009-12-17 13:29:36 UTC (rev 40034)
@@ -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