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

svn_grass at osgeo.org svn_grass at osgeo.org
Tue Jul 8 09:37:06 EDT 2008


Author: martinl
Date: 2008-07-08 09:37:06 -0400 (Tue, 08 Jul 2008)
New Revision: 32050

Modified:
   grass/branches/develbranch_6/gui/wxpython/gui_modules/mapdisp.py
Log:
wxGUI: i18n minor update (merged from trunk, r32049)


Modified: grass/branches/develbranch_6/gui/wxpython/gui_modules/mapdisp.py
===================================================================
--- grass/branches/develbranch_6/gui/wxpython/gui_modules/mapdisp.py	2008-07-08 13:35:05 UTC (rev 32049)
+++ grass/branches/develbranch_6/gui/wxpython/gui_modules/mapdisp.py	2008-07-08 13:37:06 UTC (rev 32050)
@@ -2962,15 +2962,15 @@
         point = wx.GetMousePosition()
         printmenu = wx.Menu()
         # Add items to the menu
-        setup = wx.MenuItem(printmenu, wx.ID_ANY,'Page setup')
+        setup = wx.MenuItem(printmenu, wx.ID_ANY, _('Page setup'))
         printmenu.AppendItem(setup)
         self.Bind(wx.EVT_MENU, self.printopt.OnPageSetup, setup)
 
-        preview = wx.MenuItem(printmenu, wx.ID_ANY,'Print preview')
+        preview = wx.MenuItem(printmenu, wx.ID_ANY, _('Print preview'))
         printmenu.AppendItem(preview)
         self.Bind(wx.EVT_MENU, self.printopt.OnPrintPreview, preview)
 
-        doprint = wx.MenuItem(printmenu, wx.ID_ANY,'Print display')
+        doprint = wx.MenuItem(printmenu, wx.ID_ANY, _('Print display'))
         printmenu.AppendItem(doprint)
         self.Bind(wx.EVT_MENU, self.printopt.OnDoPrint, doprint)
 



More information about the grass-commit mailing list