From 73d28bcf0b72658c77272b01a1c338f8c0fe7662 Mon Sep 17 00:00:00 2001 From: Christian Persch Date: Fri, 5 Sep 2003 16:50:01 +0000 Subject: Use gtk_action_group_set_translation_domain() to restore menu and popup 2003-09-05 Christian Persch * 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. --- src/ephy-window.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/ephy-window.c') 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); -- cgit v1.2.3