summaryrefslogtreecommitdiff
path: root/GstDebugViewer
diff options
context:
space:
mode:
authorRené Stadler <mail@renestadler.de>2012-08-24 02:09:04 +0200
committerRené Stadler <mail@renestadler.de>2012-08-24 02:09:04 +0200
commit402cb844ae8107e3ea86fc6b93bd24b21eb4ba63 (patch)
tree925d1fca72df73092d49fb368fc0eee5167b46fd /GstDebugViewer
parenteeba6d7b20435e647676d7f68b7ac70c9ecc48db (diff)
Modernize menus a little
A bit in preparation to gtk3 app menus.
Diffstat (limited to 'GstDebugViewer')
-rw-r--r--GstDebugViewer/GUI/window.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/GstDebugViewer/GUI/window.py b/GstDebugViewer/GUI/window.py
index 4c7e201..990485c 100644
--- a/GstDebugViewer/GUI/window.py
+++ b/GstDebugViewer/GUI/window.py
@@ -230,7 +230,7 @@ class Window (object):
self.actions = Common.GUI.Actions ()
group = gtk.ActionGroup ("MenuActions")
- group.add_actions ([("FileMenuAction", None, _("_File")),
+ group.add_actions ([("AppMenuAction", None, _("_Application")),
("ViewMenuAction", None, _("_View")),
("ViewColumnsMenuAction", None, _("_Columns")),
("HelpMenuAction", None, _("_Help")),
@@ -244,7 +244,7 @@ class Window (object):
("close-window", gtk.STOCK_CLOSE, _("Close _Window"), "<Ctrl>W"),
("cancel-load", gtk.STOCK_CANCEL, None,),
("clear-line-view", gtk.STOCK_CLEAR, None),
- ("show-about", gtk.STOCK_ABOUT, None),
+ ("show-about", None, _("About GStreamer Debug Viewer",)),
("enlarge-text", gtk.STOCK_ZOOM_IN, _("Enlarge Text"), "<Ctrl>plus"),
("shrink-text", gtk.STOCK_ZOOM_OUT, _("Shrink Text"), "<Ctrl>minus"),
("reset-text", gtk.STOCK_ZOOM_100, _("Normal Text Size"), "<Ctrl>0")])