[GRASS-SVN] r54254 - grass/trunk/gui/wxpython/dbmgr

svn_grass at osgeo.org svn_grass at osgeo.org
Sun Dec 9 02:18:08 PST 2012


Author: martinl
Date: 2012-12-09 02:18:08 -0800 (Sun, 09 Dec 2012)
New Revision: 54254

Modified:
   grass/trunk/gui/wxpython/dbmgr/sqlbuilder.py
Log:
wxGUI/sqlbuilder: cosmetics


Modified: grass/trunk/gui/wxpython/dbmgr/sqlbuilder.py
===================================================================
--- grass/trunk/gui/wxpython/dbmgr/sqlbuilder.py	2012-12-08 19:36:06 UTC (rev 54253)
+++ grass/trunk/gui/wxpython/dbmgr/sqlbuilder.py	2012-12-09 10:18:08 UTC (rev 54254)
@@ -109,7 +109,7 @@
         self.btn_clear  = wx.Button(parent = self.panel, id = wx.ID_CLEAR)
         self.btn_clear.SetToolTipString(_("Set SQL statement to default"))
         self.btn_apply  = wx.Button(parent = self.panel, id = wx.ID_APPLY)
-        self.btn_apply.SetToolTipString(_("Apply SQL statement and close the dialog"))
+        self.btn_apply.SetToolTipString(_("Apply SQL statement in Attribute Table Manager"))
         self.btn_close  = wx.Button(parent = self.panel, id = wx.ID_CLOSE)
         self.btn_close.SetToolTipString(_("Close the dialog"))
         
@@ -365,7 +365,7 @@
         self.evtHandler = evtHandler
 
         # set dialog title
-        title = _("GRASS SQL Builder (%(type)s): vector map <%(map)s>") % \
+        title = _("GRASS SQL Builder (%(type)s) - <%(map)s>") % \
                  { 'type' : "SELECT", 'map' : vectmap }
 
         modeChoices = [_("Column to show (SELECT clause)"), 
@@ -507,7 +507,7 @@
 
         self.column = column 
         # set dialog title
-        title = _("GRASS SQL Builder (%(type)s): vector map <%(map)s>") % \
+        title = _("GRASS SQL Builder (%(type)s) - <%(map)s>") % \
                  { 'type' : "UPDATE", 'map' : vectmap }
 
         modeChoices = [_("Column to set (SET clause)"), 



More information about the grass-commit mailing list