[GRASS-SVN] r67656 - grass/branches/releasebranch_7_0/gui/wxpython

svn_grass at osgeo.org svn_grass at osgeo.org
Sun Jan 24 15:25:09 PST 2016


Author: neteler
Date: 2016-01-24 15:25:08 -0800 (Sun, 24 Jan 2016)
New Revision: 67656

Modified:
   grass/branches/releasebranch_7_0/gui/wxpython/gis_set.py
Log:
Add comments for translators to help differentiating between similar words. Comment must be on preceding line to string! (trunk, r67647)

Modified: grass/branches/releasebranch_7_0/gui/wxpython/gis_set.py
===================================================================
--- grass/branches/releasebranch_7_0/gui/wxpython/gis_set.py	2016-01-24 22:06:07 UTC (rev 67655)
+++ grass/branches/releasebranch_7_0/gui/wxpython/gis_set.py	2016-01-24 23:25:08 UTC (rev 67656)
@@ -161,24 +161,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