[GRASS-SVN] r67647 - grass/trunk/gui/wxpython
svn_grass at osgeo.org
svn_grass at osgeo.org
Sun Jan 24 00:09:18 PST 2016
Author: marisn
Date: 2016-01-24 00:09:17 -0800 (Sun, 24 Jan 2016)
New Revision: 67647
Modified:
grass/trunk/gui/wxpython/gis_set.py
Log:
Add comments for translators to help differentiating between similar words.
Comment must be on preceding line to string!
Modified: grass/trunk/gui/wxpython/gis_set.py
===================================================================
--- grass/trunk/gui/wxpython/gis_set.py 2016-01-23 22:16:31 UTC (rev 67646)
+++ grass/trunk/gui/wxpython/gis_set.py 2016-01-24 08:09:17 UTC (rev 67647)
@@ -165,24 +165,30 @@
self.bbrowse = wx.Button(parent = self.gisdbase_panel, id = wx.ID_ANY,
label = _("&Browse"))
self.bmapset = wx.Button(parent = self.mapset_panel, id = wx.ID_ANY,
+ # GTC New mapset
label = _("&New"))
self.bmapset.SetToolTipString(
_("Create a new Mapset in selected Location"))
self.bwizard = wx.Button(parent = self.location_panel, id = wx.ID_ANY,
+ # GTC New location
label = _("N&ew"))
self.bwizard.SetToolTipString(_("Create a new location using location wizard."
" After location is created successfully,"
" GRASS session is started."))
self.rename_location_button = wx.Button(parent=self.location_panel, id=wx.ID_ANY,
+ # GTC Rename location
label=_("Ren&ame"))
self.rename_location_button.SetToolTipString(_("Rename selected location"))
self.delete_location_button = wx.Button(parent=self.location_panel, id=wx.ID_ANY,
+ # GTC Delete location
label=_("De&lete"))
self.delete_location_button.SetToolTipString(_("Delete selected location"))
self.rename_mapset_button = wx.Button(parent=self.mapset_panel, id=wx.ID_ANY,
+ # GTC Rename mapset
label=_("&Rename"))
self.rename_mapset_button.SetToolTipString(_("Rename selected mapset"))
self.delete_mapset_button = wx.Button(parent=self.mapset_panel, id=wx.ID_ANY,
+ # GTC Delete mapset
label=_("&Delete"))
self.delete_mapset_button.SetToolTipString(_("Delete selected mapset"))
More information about the grass-commit
mailing list