Преглед на файлове

wxGUI datacatalog: Change lock symbol icon to editing icon and improve tooltips (#870)

* add edit.svg to icon directory
Linda Kladivova преди 4 години
родител
ревизия
8663ae5fb4
променени са 2 файла, в които са добавени 5 реда и са изтрити 4 реда
  1. 1 0
      gui/icons/grass/edit.svg
  2. 4 4
      gui/wxpython/datacatalog/toolbars.py

Файловите разлики са ограничени, защото са твърде много
+ 1 - 0
gui/icons/grass/edit.svg


+ 4 - 4
gui/wxpython/datacatalog/toolbars.py

@@ -27,11 +27,11 @@ icons = {
         img='reload',
         label=_("Reload current GRASS mapset only")),
     'unlocked': MetaIcon(
-        img='unlocked',
-        label=_("Restrict editing to current mapset only")),
+        img='edit',
+        label=_("Restrict edits to the current mapset only")),
     'locked': MetaIcon(
-        img='locked',
-        label=_("Allow editing other mapsets")),
+        img='edit',
+        label=_("Allow edits outside of the current mapset")),
     'addGrassDB': MetaIcon(
         img='grassdb-add',
         label=_("Add new GRASS database")),