diff options
Diffstat (limited to 'src/ephy-window.c')
-rw-r--r-- | src/ephy-window.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/ephy-window.c b/src/ephy-window.c index 2d6dbd37a..ece7da772 100644 --- a/src/ephy-window.c +++ b/src/ephy-window.c @@ -1297,6 +1297,10 @@ setup_ui_manager (EphyWindow *window) action = gtk_action_group_get_action (action_group, "ViewEncoding"); g_object_set (action, "hide_if_empty", FALSE, NULL); + action = gtk_action_group_get_action (action_group, "ViewZoomIn"); + g_object_set (action, "short-label", _("Larger"), NULL); + action = gtk_action_group_get_action (action_group, "ViewZoomOut"); + g_object_set (action, "short-label", _("Smaller"), NULL); action_group = gtk_action_group_new ("PopupsActions"); gtk_action_group_set_translation_domain (action_group, NULL); |