[GRASS-SVN] r61974 - in grass/branches/releasebranch_7_0: . gui/wxpython/modules

svn_grass at osgeo.org svn_grass at osgeo.org
Mon Sep 15 00:30:21 PDT 2014


Author: martinl
Date: 2014-09-15 00:30:21 -0700 (Mon, 15 Sep 2014)
New Revision: 61974

Modified:
   grass/branches/releasebranch_7_0/
   grass/branches/releasebranch_7_0/gui/wxpython/modules/extensions.py
Log:
wxGUI/extensions: change button's labels to be more clear
                  (merge r61967-8 from trunk)



Property changes on: grass/branches/releasebranch_7_0
___________________________________________________________________
Modified: svn:mergeinfo
   - /grass/trunk:60289,60696,61269,61380,61420,61422,61480,61500,61764,61808,61829,61831,61851-61852,61854,61858,61888,61891,61905,61907,61913-61914,61916,61918,61921,61938
   + /grass/trunk:60289,60696,61269,61380,61420,61422,61480,61500,61764,61808,61829,61831,61851-61852,61854,61858,61888,61891,61905,61907,61913-61914,61916,61918,61921,61938,61967-61968

Modified: grass/branches/releasebranch_7_0/gui/wxpython/modules/extensions.py
===================================================================
--- grass/branches/releasebranch_7_0/gui/wxpython/modules/extensions.py	2014-09-15 07:11:50 UTC (rev 61973)
+++ grass/branches/releasebranch_7_0/gui/wxpython/modules/extensions.py	2014-09-15 07:30:21 UTC (rev 61974)
@@ -361,10 +361,10 @@
         self.extList = CheckListExtension(parent = self.panel)
 
         # buttons
-        self.btnUninstall = wx.Button(parent = self.panel, id = wx.ID_REMOVE)
-        self.btnUninstall.SetToolTipString(_("Uninstall selected AddOns extensions"))
-        self.btnUpdate = wx.Button(parent = self.panel, id = wx.ID_REFRESH)
-        self.btnUpdate.SetToolTipString(_("Reinstall selected AddOns extensions"))
+        self.btnUninstall = wx.Button(parent = self.panel, id = wx.ID_REMOVE, label=_("Uninstall"))
+        self.btnUninstall.SetToolTipString(_("Uninstall selected Addons extensions"))
+        self.btnUpdate = wx.Button(parent = self.panel, id = wx.ID_REFRESH, label=_("Reinstall"))
+        self.btnUpdate.SetToolTipString(_("Reinstall selected Addons extensions"))
 
         self.btnClose = wx.Button(parent = self.panel, id = wx.ID_CLOSE)
         



More information about the grass-commit mailing list