Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/atoideweb/ui/toolbar.py
diff options
context:
space:
mode:
Diffstat (limited to 'atoideweb/ui/toolbar.py')
-rw-r--r--atoideweb/ui/toolbar.py17
1 files changed, 9 insertions, 8 deletions
diff --git a/atoideweb/ui/toolbar.py b/atoideweb/ui/toolbar.py
index 9266606..89c3d17 100644
--- a/atoideweb/ui/toolbar.py
+++ b/atoideweb/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]
+ 'post' : ['document-generic', _cb_next],
+ 'ajax' : ['document-generic', _cb_next],
+ 'separator' : [None, None],
+ 'gallery' : ['document-generic', _cb_next]
}
TOOLBARS = {
'menu' : [
- ['post', 'ajax'],
+ ['post', 'ajax', 'gallery'],
[]
],
}
TITLES = {
'menu' : {
- 'toolbox': _('Menu'),
+ 'toolbox': _('Debug'),
'buttons': {
- 'post': _('Post'),
- 'ajax': _('Ajax')
+ 'post' : _('Post'),
+ 'ajax' : _('Ajax'),
+ 'gallery': _('Gallery')
}
}
}