[GRASS-SVN] r39705 - grass/branches/releasebranch_6_4/gui/wxpython/gui_modules

svn_grass at osgeo.org svn_grass at osgeo.org
Thu Nov 12 07:54:42 EST 2009


Author: martinl
Date: 2009-11-12 07:54:41 -0500 (Thu, 12 Nov 2009)
New Revision: 39705

Modified:
   grass/branches/releasebranch_6_4/gui/wxpython/gui_modules/sqlbuilder.py
Log:
fix gettext warning
   (merge r39703 from trunk)


Modified: grass/branches/releasebranch_6_4/gui/wxpython/gui_modules/sqlbuilder.py
===================================================================
--- grass/branches/releasebranch_6_4/gui/wxpython/gui_modules/sqlbuilder.py	2009-11-12 12:25:25 UTC (rev 39704)
+++ grass/branches/releasebranch_6_4/gui/wxpython/gui_modules/sqlbuilder.py	2009-11-12 12:54:41 UTC (rev 39705)
@@ -74,8 +74,8 @@
         self.colvalues = []     # array with unique values in selected column
 
         # set dialog title
-        self.SetTitle(_("GRASS SQL Builder (%s): vector map <%s>") % \
-                          (qtype.upper(), self.vectmap))
+        self.SetTitle(_("GRASS SQL Builder (%(type)s): vector map <%(map)s>") % \
+                          { 'type' : qtype.upper(), 'map' : self.vectmap })
         
         self.panel = wx.Panel(parent = self, id = wx.ID_ANY)
 



More information about the grass-commit mailing list