From 3fff491455c8e99884d6bcaed1cdc39568784d95 Mon Sep 17 00:00:00 2001 From: Luca Ferretti Date: Fri, 15 Apr 2005 09:10:59 +0000 Subject: Make all toolbar items translatable 2005-04-15 Luca Ferretti * shell/ev-window.c: (set_action_properties): Make all toolbar items translatable --- diff --git a/ChangeLog b/ChangeLog index 9a11a7f..eead1ca 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2005-04-15 Luca Ferretti + + * shell/ev-window.c: (set_action_properties): + + Make all toolbar items translatable + 2005-04-15 Marco Pesenti Gritti * ps/ps-document.c: (ps_document_init), (ps_document_get_type), diff --git a/shell/ev-window.c b/shell/ev-window.c index 4d03050..68940d5 100644 --- a/shell/ev-window.c +++ b/shell/ev-window.c @@ -2249,10 +2249,27 @@ set_action_properties (GtkActionGroup *action_group) /*translators: this is the label for toolbar button*/ g_object_set (action, "short_label", _("Previous"), NULL); g_object_set (action, "is-important", TRUE, NULL); + action = gtk_action_group_get_action (action_group, "GoNextPage"); - /*translators: this is the label for toolbar button*/ g_object_set (action, "is-important", TRUE, NULL); + /*translators: this is the label for toolbar button*/ g_object_set (action, "short_label", _("Next"), NULL); + + action = gtk_action_group_get_action (action_group, "ViewZoomIn"); + /*translators: this is the label for toolbar button*/ + g_object_set (action, "short_label", _("Zoom In"), NULL); + action = gtk_action_group_get_action (action_group, "ViewZoomIn"); + + action = gtk_action_group_get_action (action_group, "ViewZoomOut"); + /*translators: this is the label for toolbar button*/ + g_object_set (action, "short_label", _("Zoom Out"), NULL); + action = gtk_action_group_get_action (action_group, "ViewZoomIn"); + + action = gtk_action_group_get_action (action_group, "ViewBestFit"); + /*translators: this is the label for toolbar button*/ + g_object_set (action, "short_label", _("Best Fit"), NULL); + action = gtk_action_group_get_action (action_group, "ViewZoomIn"); + action = gtk_action_group_get_action (action_group, "ViewPageWidth"); /*translators: this is the label for toolbar button*/ g_object_set (action, "short_label", _("Fit Width"), NULL); -- cgit v0.9.1