[devhelp] App: fix inconsistencies for zoom action descriptions



commit 547f837e7c3afdd2c3da2174a48b23bc1ec6191e
Author: Sébastien Wilmet <swilmet gnome org>
Date:   Sat May 19 11:57:44 2018 +0200

    App: fix inconsistencies for zoom action descriptions
    
    In the GtkShortcutsWindow it was "Zoom in" etc while in the menu it's
    "Larger Text" etc. In gedit it's also "Larger Text" in the menu, but
    gedit doesn't document those actions in its GtkShortcutsWindow.
    
    So have "Larger text" etc consistently, in both the menu and the
    GtkShortcutsWindow, to avoid confusion.

 src/dh-app.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/src/dh-app.c b/src/dh-app.c
index eaa3e16..1178b43 100644
--- a/src/dh-app.c
+++ b/src/dh-app.c
@@ -64,11 +64,11 @@ add_menu_action_infos (DhApp *app)
                 { "win.find", NULL, N_("_Find"), "<Control>f",
                   N_("Find in current page") },
                 { "win.zoom-in", NULL, N_("_Larger Text"), NULL,
-                  N_("Zoom in") },
+                  N_("Larger text") },
                 { "win.zoom-out", NULL, N_("S_maller Text"), "<Control>minus",
-                  N_("Zoom out") },
+                  N_("Smaller text") },
                 { "win.zoom-default", NULL, N_("_Normal Size"), "<Control>0",
-                  N_("Reset zoom") },
+                  N_("Normal size") },
                 { NULL }
         };
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]