[GRASS-SVN] r49061 - grass/trunk/gui/wxpython/gui_modules
svn_grass at osgeo.org
svn_grass at osgeo.org
Wed Nov 2 18:41:47 EDT 2011
Author: martinl
Date: 2011-11-02 15:41:47 -0700 (Wed, 02 Nov 2011)
New Revision: 49061
Modified:
grass/trunk/gui/wxpython/gui_modules/gselect.py
Log:
wxGUI: fix problematic string (wrong translation can break adding new map layers)
(merge r49060 from devbr6)
Modified: grass/trunk/gui/wxpython/gui_modules/gselect.py
===================================================================
--- grass/trunk/gui/wxpython/gui_modules/gselect.py 2011-11-02 22:40:08 UTC (rev 49060)
+++ grass/trunk/gui/wxpython/gui_modules/gselect.py 2011-11-02 22:41:47 UTC (rev 49061)
@@ -342,7 +342,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