summaryrefslogtreecommitdiff
path: root/main/actions.py
diff options
context:
space:
mode:
authoretienne <etienne@9215b0d5-fb2c-4bbd-8d3e-bd2e9090e864>2009-01-14 00:05:56 +0000
committeretienne <etienne@9215b0d5-fb2c-4bbd-8d3e-bd2e9090e864>2009-01-14 00:05:56 +0000
commit0d1b6ecd08c24cca9aa283fcb4f30a456899a5f3 (patch)
tree765ee8b20f577a8e6756c3403bf471451c9aa296 /main/actions.py
parent5577411f505db728e778a9bda8cd8a958c805317 (diff)
downloadChimère-0d1b6ecd08c24cca9aa283fcb4f30a456899a5f3.tar.bz2
Chimère-0d1b6ecd08c24cca9aa283fcb4f30a456899a5f3.zip
Keep zoom level and bounds between pages
git-svn-id: http://www.peacefrogs.net/svn/chimere/trunk@13 9215b0d5-fb2c-4bbd-8d3e-bd2e9090e864
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'))]