Parcourir la source

wxGUI/modeler: name->label (cosmetics)

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@58523 15284696-431f-4ddb-bdfa-cd5b030d7da7
Martin Landa il y a 11 ans
Parent
commit
3517765f17
2 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 1 1
      gui/wxpython/gmodeler/dialogs.py
  2. 1 1
      gui/wxpython/gmodeler/frame.py

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

@@ -407,7 +407,7 @@ class ModelItemDialog(wx.Dialog):
                                     value = shape.GetText())
         
         self.itemList = ItemCheckListCtrl(parent = self.panel,
-                                          columns = [_("Name"),
+                                          columns = [_("Label"),
                                                      _("Command")],
                                           shape = shape,
                                           frame = parent)

+ 1 - 1
gui/wxpython/gmodeler/frame.py

@@ -1505,7 +1505,7 @@ class ItemPanel(wx.Panel):
                                     label=" %s " % _("List of items - right-click to delete"))
         
         self.list = ItemListCtrl(parent = self,
-                                 columns = [_("Name"), _("In loop"),
+                                 columns = [_("Label"), _("In loop"),
                                             _("Command")],
                                  columnsNotEditable = [1, 2],
                                  frame = self.parent)