aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rw-r--r--src/ephy-window.c8
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 <chris@gnome-de.org>
+
+ * 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 <bordoley@msu.edu>
* 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);