[GRASS-SVN] r43329 - grass/trunk/gui/wxpython/gui_modules
svn_grass at osgeo.org
svn_grass at osgeo.org
Sun Aug 29 03:37:59 EDT 2010
Author: neteler
Date: 2010-08-29 07:37:59 +0000 (Sun, 29 Aug 2010)
New Revision: 43329
Modified:
grass/trunk/gui/wxpython/gui_modules/preferences.py
grass/trunk/gui/wxpython/gui_modules/profile.py
Log:
gettext fixes
Modified: grass/trunk/gui/wxpython/gui_modules/preferences.py
===================================================================
--- grass/trunk/gui/wxpython/gui_modules/preferences.py 2010-08-29 07:36:53 UTC (rev 43328)
+++ grass/trunk/gui/wxpython/gui_modules/preferences.py 2010-08-29 07:37:59 UTC (rev 43329)
@@ -2040,7 +2040,7 @@
key='font', subkey='encoding')
label = wx.StaticText(parent=panel, id=wx.ID_ANY,
- label=("Character encoding:"))
+ label=_("Character encoding:"))
gridSizer.Add(item=label,
flag=wx.ALIGN_CENTER_VERTICAL,
pos=(2, 0))
@@ -2058,7 +2058,7 @@
self.fontsize = self.settings.Get(group='display',
key='outputfont', subkey='size')
label = wx.StaticText(parent=panel, id=wx.ID_ANY,
- label=("Font size:"))
+ label=_("Font size:"))
gridSizer.Add(item=label,
flag=wx.ALIGN_CENTER_VERTICAL,
pos=(2, 0))
Modified: grass/trunk/gui/wxpython/gui_modules/profile.py
===================================================================
--- grass/trunk/gui/wxpython/gui_modules/profile.py 2010-08-29 07:36:53 UTC (rev 43328)
+++ grass/trunk/gui/wxpython/gui_modules/profile.py 2010-08-29 07:37:59 UTC (rev 43329)
@@ -929,7 +929,7 @@
#
# x-axis label
#
- label = wx.StaticText(parent=self, id=wx.ID_ANY, label=("X-axis label:"))
+ label = wx.StaticText(parent=self, id=wx.ID_ANY, label=_("X-axis label:"))
gridSizer.Add(item=label, flag=wx.ALIGN_CENTER_VERTICAL, pos=(2, 0))
self.xlabelentry = wx.TextCtrl(parent=self, id=wx.ID_ANY, value="", size=(250,-1))
# self.xlabelentry.SetFont(self.font)
More information about the grass-commit
mailing list