[GRASS-SVN] r49060 - grass/branches/develbranch_6/gui/wxpython/gui_modules

svn_grass at osgeo.org svn_grass at osgeo.org
Wed Nov 2 18:40:08 EDT 2011


Author: martinl
Date: 2011-11-02 15:40:08 -0700 (Wed, 02 Nov 2011)
New Revision: 49060

Modified:
   grass/branches/develbranch_6/gui/wxpython/gui_modules/gselect.py
Log:
wxGUI: fix problematic string (wrong translation can break adding new map layers)


Modified: grass/branches/develbranch_6/gui/wxpython/gui_modules/gselect.py
===================================================================
--- grass/branches/develbranch_6/gui/wxpython/gui_modules/gselect.py	2011-11-02 21:39:53 UTC (rev 49059)
+++ grass/branches/develbranch_6/gui/wxpython/gui_modules/gselect.py	2011-11-02 22:40:08 UTC (rev 49060)
@@ -340,7 +340,7 @@
         
         first_mapset = None
         for mapset in mapsets:
-            mapset_node = self.AddItem(_('Mapset:') + ' ' + mapset)
+            mapset_node = self.AddItem(_('Mapset') + ': ' + mapset)
             if not first_mapset:
                 first_mapset = mapset_node
             



More information about the grass-commit mailing list