[GRASS-SVN] r40422 - grass/trunk/gui/wxpython

svn_grass at osgeo.org svn_grass at osgeo.org
Wed Jan 13 18:32:46 EST 2010


Author: neteler
Date: 2010-01-13 18:32:46 -0500 (Wed, 13 Jan 2010)
New Revision: 40422

Modified:
   grass/trunk/gui/wxpython/gis_set.py
Log:
enable i18N for 'Quit' and 'Help'

Modified: grass/trunk/gui/wxpython/gis_set.py
===================================================================
--- grass/trunk/gui/wxpython/gis_set.py	2010-01-13 23:32:36 UTC (rev 40421)
+++ grass/trunk/gui/wxpython/gis_set.py	2010-01-13 23:32:46 UTC (rev 40422)
@@ -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