aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Neumair <cneumair@src.gnome.org>2003-04-24 02:43:15 +0800
committerChristian Neumair <cneumair@src.gnome.org>2003-04-24 02:43:15 +0800
commit64ea5b29d748e2e3c9337d1e5845776221d67a2b (patch)
treee59b456bf357cb24a37bf74f916bad012ffca0d8
parent66853c7ee5b10e35ddf3c4528afcf5ea9dcd0d82 (diff)
downloadgsoc2013-epiphany-64ea5b29d748e2e3c9337d1e5845776221d67a2b.tar
gsoc2013-epiphany-64ea5b29d748e2e3c9337d1e5845776221d67a2b.tar.gz
gsoc2013-epiphany-64ea5b29d748e2e3c9337d1e5845776221d67a2b.tar.bz2
gsoc2013-epiphany-64ea5b29d748e2e3c9337d1e5845776221d67a2b.tar.lz
gsoc2013-epiphany-64ea5b29d748e2e3c9337d1e5845776221d67a2b.tar.xz
gsoc2013-epiphany-64ea5b29d748e2e3c9337d1e5845776221d67a2b.tar.zst
gsoc2013-epiphany-64ea5b29d748e2e3c9337d1e5845776221d67a2b.zip
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.
-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);