[GRASS-SVN] r39704 -
grass/branches/develbranch_6/gui/wxpython/gui_modules
svn_grass at osgeo.org
svn_grass at osgeo.org
Thu Nov 12 07:25:26 EST 2009
Author: martinl
Date: 2009-11-12 07:25:25 -0500 (Thu, 12 Nov 2009)
New Revision: 39704
Modified:
grass/branches/develbranch_6/gui/wxpython/gui_modules/sqlbuilder.py
Log:
fix gettext warning
(merge r39703 from trunk)
Modified: grass/branches/develbranch_6/gui/wxpython/gui_modules/sqlbuilder.py
===================================================================
--- grass/branches/develbranch_6/gui/wxpython/gui_modules/sqlbuilder.py 2009-11-12 12:22:01 UTC (rev 39703)
+++ grass/branches/develbranch_6/gui/wxpython/gui_modules/sqlbuilder.py 2009-11-12 12:25:25 UTC (rev 39704)
@@ -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