Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/nutrinoweb/ui/toolbar.py
diff options
context:
space:
mode:
Diffstat (limited to 'nutrinoweb/ui/toolbar.py')
-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')
}
}
}