aboutsummaryrefslogtreecommitdiffstats
path: root/src/ephy-window.c
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2003-09-06 00:50:01 +0800
committerChristian Persch <chpe@src.gnome.org>2003-09-06 00:50:01 +0800
commit73d28bcf0b72658c77272b01a1c338f8c0fe7662 (patch)
treec7942c691b5f553d71f987559da5a33e0fe900e9 /src/ephy-window.c
parentac762623eea794b629452b1625835f97b02234c9 (diff)
downloadgsoc2013-epiphany-73d28bcf0b72658c77272b01a1c338f8c0fe7662.tar
gsoc2013-epiphany-73d28bcf0b72658c77272b01a1c338f8c0fe7662.tar.gz
gsoc2013-epiphany-73d28bcf0b72658c77272b01a1c338f8c0fe7662.tar.bz2
gsoc2013-epiphany-73d28bcf0b72658c77272b01a1c338f8c0fe7662.tar.lz
gsoc2013-epiphany-73d28bcf0b72658c77272b01a1c338f8c0fe7662.tar.xz
gsoc2013-epiphany-73d28bcf0b72658c77272b01a1c338f8c0fe7662.tar.zst
gsoc2013-epiphany-73d28bcf0b72658c77272b01a1c338f8c0fe7662.zip
Use gtk_action_group_set_translation_domain() to restore menu and popup
2003-09-05 Christian Persch <chpe@cvs.gnome.org> * src/bookmarks/ephy-bookmarks-editor.c: (ephy_bookmarks_editor_construct): * src/ephy-history-window.c: (ephy_history_window_construct): * src/ephy-window.c: (setup_window): * src/ppview-toolbar.c: (ppview_toolbar_set_window): Use gtk_action_group_set_translation_domain() to restore menu and popup i18n.
Diffstat (limited to 'src/ephy-window.c')
-rw-r--r--src/ephy-window.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ephy-window.c b/src/ephy-window.c
index 661e695c3..29e6cdd9c 100644
--- a/src/ephy-window.c
+++ b/src/ephy-window.c
@@ -602,6 +602,7 @@ setup_window (EphyWindow *window)
merge = gtk_ui_manager_new ();
action_group = gtk_action_group_new ("WindowActions");
+ gtk_action_group_set_translation_domain (action_group, NULL);
gtk_action_group_add_actions (action_group, ephy_menu_entries,
ephy_menu_n_entries, window);
gtk_ui_manager_insert_action_group (merge, action_group, 0);
@@ -627,6 +628,7 @@ setup_window (EphyWindow *window)
g_object_set (action, "is_important", TRUE, NULL);
action_group = gtk_action_group_new ("PopupsActions");
+ gtk_action_group_set_translation_domain (action_group, NULL);
gtk_action_group_add_actions (action_group, ephy_popups_entries,
ephy_popups_n_entries, window);
gtk_ui_manager_insert_action_group (merge, action_group, 0);