[GRASS-SVN] r58412 - grass/trunk/gui/wxpython/web_services
svn_grass at osgeo.org
svn_grass at osgeo.org
Sun Dec 8 13:21:00 PST 2013
Author: martinl
Date: 2013-12-08 13:21:00 -0800 (Sun, 08 Dec 2013)
New Revision: 58412
Modified:
grass/trunk/gui/wxpython/web_services/dialogs.py
Log:
wxGUI/save wms dialog: cosmetics in terminology
Modified: grass/trunk/gui/wxpython/web_services/dialogs.py
===================================================================
--- grass/trunk/gui/wxpython/web_services/dialogs.py 2013-12-08 20:54:42 UTC (rev 58411)
+++ grass/trunk/gui/wxpython/web_services/dialogs.py 2013-12-08 21:21:00 UTC (rev 58412)
@@ -771,7 +771,7 @@
"""
def __init__(self, parent, layer, giface):
- wx.Dialog.__init__(self, parent = parent, title = ("Save web service layer"), id = wx.ID_ANY)
+ wx.Dialog.__init__(self, parent = parent, title = ("Save web service layer as raster map"), id = wx.ID_ANY)
self.layer = layer
self._giface = giface
@@ -788,7 +788,7 @@
self.labels = {}
self.params = {}
- self.labels['output'] = wx.StaticText(parent = self, id = wx.ID_ANY, label = _("Name for output raster layer:"))
+ self.labels['output'] = wx.StaticText(parent = self, id = wx.ID_ANY, label = _("Name for output raster map:"))
self.params['output'] = Select(parent = self, type = 'rast', mapsets = [grass.gisenv()['MAPSET']],
size = globalvar.DIALOG_GSELECT_SIZE)
@@ -803,7 +803,7 @@
self.region_types['named'] = wx.RadioButton(parent = self, id = wx.ID_ANY, label = 'Named region')
self.overwrite = wx.CheckBox(parent = self, id = wx.ID_ANY,
- label = _("Overwrite existing layer"))
+ label = _("Overwrite existing raster map"))
self.named_reg_panel = wx.Panel(parent = self, id = wx.ID_ANY)
self.labels['region'] = wx.StaticText(parent = self.named_reg_panel, id = wx.ID_ANY,
@@ -817,7 +817,7 @@
self.btn_close.SetToolTipString(_("Close dialog"))
self.btn_ok = wx.Button(parent = self, id = wx.ID_ANY, label = _("&Save layer"))
- self.btn_ok.SetToolTipString(_("Add web service layer"))
+ self.btn_ok.SetToolTipString(_("Save web service layer as raster map"))
# statusbar
self.statusbar = wx.StatusBar(parent = self, id = wx.ID_ANY)
More information about the grass-commit
mailing list