فهرست منبع

fix gettext warning

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@39703 15284696-431f-4ddb-bdfa-cd5b030d7da7
Martin Landa 15 سال پیش
والد
کامیت
cc04c1f0e6
1فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 2 2
      gui/wxpython/gui_modules/sqlbuilder.py

+ 2 - 2
gui/wxpython/gui_modules/sqlbuilder.py

@@ -75,8 +75,8 @@ class SQLFrame(wx.Frame):
         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)