Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorflorent <florent.pigout@gmail.com>2011-08-28 00:02:54 (GMT)
committer florent <florent.pigout@gmail.com>2011-08-28 00:02:54 (GMT)
commitc7e1284790246bc41a28bca4e132b4395bad5ed1 (patch)
treeba01e8af445015d2b0844a01237c1eb80ccf92e0
parentf29759ac7af129cef58e2e9f706530b15f05065e (diff)
update toolbar shortcuts
-rw-r--r--nutrinoweb/ui/toolbar.py17
1 files changed, 9 insertions, 8 deletions
diff --git a/nutrinoweb/ui/toolbar.py b/nutrinoweb/ui/toolbar.py
index 9266606..439514d 100644
--- a/nutrinoweb/ui/toolbar.py
+++ b/nutrinoweb/ui/toolbar.py
@@ -24,26 +24,27 @@ def _cb_next(widget, toolbar, next_):
BUTTONS = {
- 'post' : ['document-generic', _cb_next],
- 'ajax' : ['document-generic', _cb_next],
- 'gallery' : ['document-generic', _cb_next],
- 'separator' : [None, None]
+ 'activity' : ['document-generic', _cb_next],
+ 'eating' : ['document-generic', _cb_next],
+ 'sparetime': ['document-generic', _cb_next],
+ 'separator': [None, None]
}
TOOLBARS = {
'menu' : [
- ['post', 'ajax'],
+ ['activity', 'eating', 'sparetime'],
[]
],
}
TITLES = {
'menu' : {
- 'toolbox': _('Menu'),
+ 'toolbox': _('Debug'),
'buttons': {
- 'post': _('Post'),
- 'ajax': _('Ajax')
+ 'activity' : _('Activity'),
+ 'eating' : _('Eating'),
+ 'sparetime': _('Sparetime')
}
}
}