]> www.fi.muni.cz Git - evince.git/commitdiff
Make all toolbar items translatable
authorLuca Ferretti <elle.uca@libero.it>
Fri, 15 Apr 2005 09:10:59 +0000 (09:10 +0000)
committerMarco Pesenti Gritti <marco@src.gnome.org>
Fri, 15 Apr 2005 09:10:59 +0000 (09:10 +0000)
2005-04-15  Luca Ferretti <elle.uca@libero.it>

        * shell/ev-window.c: (set_action_properties):

        Make all toolbar items translatable

ChangeLog
shell/ev-window.c

index 9a11a7fc797e84c48e4948bb15ff2cce46615bdf..eead1ca577b27a73a71ef09e715bb0f4edec0f96 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2005-04-15  Luca Ferretti <elle.uca@libero.it>
+
+       * shell/ev-window.c: (set_action_properties):
+
+       Make all toolbar items translatable
+
 2005-04-15  Marco Pesenti Gritti <mpg@redhat.com>
 
        * ps/ps-document.c: (ps_document_init), (ps_document_get_type),
index 4d03050e168c434d920626022025ce49bfdba52d..68940d5a640bea26edc30e63d4432a6e3519a0db 100644 (file)
@@ -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);