[GRASS-SVN] r39703 - grass/trunk/gui/wxpython/gui_modules
svn_grass at osgeo.org
svn_grass at osgeo.org
Thu Nov 12 07:22:03 EST 2009
Author: martinl
Date: 2009-11-12 07:22:01 -0500 (Thu, 12 Nov 2009)
New Revision: 39703
Modified:
grass/trunk/gui/wxpython/gui_modules/sqlbuilder.py
Log:
fix gettext warning
Modified: grass/trunk/gui/wxpython/gui_modules/sqlbuilder.py
===================================================================
--- grass/trunk/gui/wxpython/gui_modules/sqlbuilder.py 2009-11-11 13:57:43 UTC (rev 39702)
+++ grass/trunk/gui/wxpython/gui_modules/sqlbuilder.py 2009-11-12 12:22:01 UTC (rev 39703)
@@ -75,8 +75,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