浏览代码

spelling

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@56157 15284696-431f-4ddb-bdfa-cd5b030d7da7
Hamish Bowman 12 年之前
父节点
当前提交
b4efca5050
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      gui/wxpython/psmap/dialogs.py

+ 1 - 1
gui/wxpython/psmap/dialogs.py

@@ -218,7 +218,7 @@ class PsmapDialog(wx.Dialog):
         """!Add widgets for setting position relative to paper and to map"""
         panel.position = dict()
         positionLabel = wx.StaticText(panel, id = wx.ID_ANY, label = _("Position is given:"))
-        panel.position['toPaper'] = wx.RadioButton(panel, id = wx.ID_ANY, label = _("relatively to paper"), style = wx.RB_GROUP)
+        panel.position['toPaper'] = wx.RadioButton(panel, id = wx.ID_ANY, label = _("relative to paper"), style = wx.RB_GROUP)
         panel.position['toMap'] = wx.RadioButton(panel, id = wx.ID_ANY, label = _("by map coordinates"))
         panel.position['toPaper'].SetValue(dialogDict['XY'])
         panel.position['toMap'].SetValue(not dialogDict['XY'])