diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | src/ephy-window.c | 4 |
2 files changed, 8 insertions, 2 deletions
@@ -7,6 +7,12 @@ 2006-01-30 Christian Persch <chpe@cvs.gnome.org> + * src/ephy-window.c: + + Change text for zoom in/out. + +2006-01-30 Christian Persch <chpe@cvs.gnome.org> + * embed/mozilla/EphyAboutModule.cpp: Special error text for localhost URIs. Bug #323261, diff --git a/src/ephy-window.c b/src/ephy-window.c index 64b17bb3f..782033f42 100644 --- a/src/ephy-window.c +++ b/src/ephy-window.c @@ -207,10 +207,10 @@ static const GtkActionEntry ephy_menu_entries [] = { { "ViewReload", GTK_STOCK_REFRESH, N_("_Reload"), "<control>R", N_("Display the latest content of the current page"), G_CALLBACK (window_cmd_view_reload) }, - { "ViewZoomIn", GTK_STOCK_ZOOM_IN, N_("Zoom _In"), "<control>plus", + { "ViewZoomIn", GTK_STOCK_ZOOM_IN, N_("_Larger Text"), "<control>plus", N_("Increase the text size"), G_CALLBACK (window_cmd_view_zoom_in) }, - { "ViewZoomOut", GTK_STOCK_ZOOM_OUT, N_("Zoom _Out"), "<control>minus", + { "ViewZoomOut", GTK_STOCK_ZOOM_OUT, N_("S_maller Text"), "<control>minus", N_("Decrease the text size"), G_CALLBACK (window_cmd_view_zoom_out) }, { "ViewZoomNormal", GTK_STOCK_ZOOM_100, N_("_Normal Size"), "<control>0", |