[GRASS-SVN] r40420 - grass/branches/releasebranch_6_4/gui/wxpython
svn_grass at osgeo.org
svn_grass at osgeo.org
Wed Jan 13 18:32:28 EST 2010
Author: neteler
Date: 2010-01-13 18:32:27 -0500 (Wed, 13 Jan 2010)
New Revision: 40420
Modified:
grass/branches/releasebranch_6_4/gui/wxpython/gis_set.py
Log:
enable i18N for 'Quit' and 'Help'
Modified: grass/branches/releasebranch_6_4/gui/wxpython/gis_set.py
===================================================================
--- grass/branches/releasebranch_6_4/gui/wxpython/gis_set.py 2010-01-13 20:00:39 UTC (rev 40419)
+++ grass/branches/releasebranch_6_4/gui/wxpython/gis_set.py 2010-01-13 23:32:27 UTC (rev 40420)
@@ -124,9 +124,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