summaryrefslogtreecommitdiff
path: root/main/actions.py
diff options
context:
space:
mode:
Diffstat (limited to 'main/actions.py')
-rw-r--r--main/actions.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/main/actions.py b/main/actions.py
index 77f8a46..89ba987 100644
--- a/main/actions.py
+++ b/main/actions.py
@@ -29,5 +29,6 @@ class Action:
def __init__(self, id, path, label):
self.id, self.path, self.label = id, main_path + path, label
-actions = [Action('view', '', _('View')), Action('edit', 'edit', _('Add')),
- Action('edit_route', 'edit_route', _('Add route'))]
+actions = [Action('view', '', _('View')),
+ Action('edit', 'edit', _('Add a new point of interest')),
+ Action('edit_route', 'edit_route', _('Add a new route'))]