From 64ea5b29d748e2e3c9337d1e5845776221d67a2b Mon Sep 17 00:00:00 2001 From: Christian Neumair Date: Wed, 23 Apr 2003 18:43:15 +0000 Subject: Use gettext instead of gettext_noop call for g_object_set's third * src/ephy-window.c (setup_window): Use gettext instead of gettext_noop call for g_object_set's third argument. Makes some i18n magic in tbe dialog actually visible. --- ChangeLog | 7 +++++++ src/ephy-window.c | 8 ++++---- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 10cb3f8d4..8d4dd0717 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2003-04-23 Christian Neumair + + * src/ephy-window.c (setup_window): + + Use gettext instead of gettext_noop call for g_object_set's third + argument. Makes some i18n magic in tbe dialog actually visible. + 2003-04-22 David Bordoley * data/ui/epiphany-history-window-ui.xml.in: diff --git a/src/ephy-window.c b/src/ephy-window.c index 50f5a0509..84d930d88 100644 --- a/src/ephy-window.c +++ b/src/ephy-window.c @@ -490,13 +490,13 @@ setup_window (EphyWindow *window) egg_menu_merge_insert_action_group (merge, action_group, 0); window->priv->action_group = action_group; action = egg_action_group_get_action (action_group, "FileOpen"); - g_object_set (action, "short_label", N_("Open"), NULL); + g_object_set (action, "short_label", _("Open"), NULL); action = egg_action_group_get_action (action_group, "FileSaveAs"); - g_object_set (action, "short_label", N_("Save As"), NULL); + g_object_set (action, "short_label", _("Save As"), NULL); action = egg_action_group_get_action (action_group, "FilePrint"); - g_object_set (action, "short_label", N_("Print"), NULL); + g_object_set (action, "short_label", _("Print"), NULL); action = egg_action_group_get_action (action_group, "FileBookmarkPage"); - g_object_set (action, "short_label", N_("Bookmark"), NULL); + g_object_set (action, "short_label", _("Bookmark"), NULL); action = egg_action_group_get_action (action_group, "ViewZoomNormal"); g_object_set (action, "sensitive", FALSE, NULL); -- cgit v1.2.3