[GRASS-SVN] r40421 - grass/branches/develbranch_6/gui/wxpython
svn_grass at osgeo.org
svn_grass at osgeo.org
Wed Jan 13 18:32:37 EST 2010
Author: neteler
Date: 2010-01-13 18:32:36 -0500 (Wed, 13 Jan 2010)
New Revision: 40421
Modified:
grass/branches/develbranch_6/gui/wxpython/gis_set.py
Log:
enable i18N for 'Quit' and 'Help'
Modified: grass/branches/develbranch_6/gui/wxpython/gis_set.py
===================================================================
--- grass/branches/develbranch_6/gui/wxpython/gis_set.py 2010-01-13 23:32:27 UTC (rev 40420)
+++ grass/branches/develbranch_6/gui/wxpython/gis_set.py 2010-01-13 23:32:36 UTC (rev 40421)
@@ -121,9 +121,11 @@
self.bstart = wx.Button(parent=self.panel, id=wx.ID_ANY,
label=_("Start GRASS"))
self.bstart.SetDefault()
- self.bexit = wx.Button(parent=self.panel, id=wx.ID_EXIT)
+ self.bexit = wx.Button(parent=self.panel, id=wx.ID_EXIT,
+ label=_("Quit"))
self.bstart.SetMinSize((180, self.bexit.GetSize()[1]))
- self.bhelp = wx.Button(parent=self.panel, id=wx.ID_HELP)
+ self.bhelp = wx.Button(parent=self.panel, id=wx.ID_HELP,
+ label=_("Help"))
self.bbrowse = wx.Button(parent=self.panel, id=wx.ID_ANY,
label=_("Browse"))
self.bmapset = wx.Button(parent=self.panel, id=wx.ID_ANY,
More information about the grass-commit
mailing list