diff options
author | Christian Neumair <cneumair@gnome.org> | 2008-07-21 10:10:34 +0000 |
---|---|---|
committer | Christian Neumair <cneumair@src.gnome.org> | 2008-07-21 10:10:34 +0000 |
commit | 02cbb458f332df72ab305636699e570612e5c7cc (patch) | |
tree | 6deb7d948a447bb40dede054f94a2e2de13d76db /src/nautilus-window-menus.c | |
parent | 89f2aab3cb1974eb1b283e20845b857dd2ec20f7 (diff) | |
download | nautilus-02cbb458f332df72ab305636699e570612e5c7cc.tar.gz |
Add tooltips to the zoom controls, make menu tooltips consistent with and
2008-07-21 Christian Neumair <cneumair@gnome.org>
* src/nautilus-window-menus.c:
* src/nautilus-zoom-control.c
(nautilus_zoom_control_instance_init):
Add tooltips to the zoom controls, make menu tooltips consistent with
and a11y description consistent with Epiphany. Related to #543935.
Thanks to Diego Escalante Urrelo.
svn path=/trunk/; revision=14385
Diffstat (limited to 'src/nautilus-window-menus.c')
-rw-r--r-- | src/nautilus-window-menus.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nautilus-window-menus.c b/src/nautilus-window-menus.c index 28aecb19b..cca53ae94 100644 --- a/src/nautilus-window-menus.c +++ b/src/nautilus-window-menus.c @@ -827,7 +827,7 @@ static const GtkActionEntry main_entries[] = { G_CALLBACK (action_about_nautilus_callback) }, /* name, stock id */ { "Zoom In", GTK_STOCK_ZOOM_IN, /* label, accelerator */ N_("Zoom _In"), "<control>plus", - /* tooltip */ N_("Show the contents in more detail"), + /* tooltip */ N_("Increase the view size"), G_CALLBACK (action_zoom_in_callback) }, /* name, stock id */ { "ZoomInAccel", NULL, /* label, accelerator */ "ZoomInAccel", "<control>equal", @@ -839,7 +839,7 @@ static const GtkActionEntry main_entries[] = { G_CALLBACK (action_zoom_in_callback) }, /* name, stock id */ { "Zoom Out", GTK_STOCK_ZOOM_OUT, /* label, accelerator */ N_("Zoom _Out"), "<control>minus", - /* tooltip */ N_("Show the contents in less detail"), + /* tooltip */ N_("Decrease the view size"), G_CALLBACK (action_zoom_out_callback) }, /* name, stock id */ { "ZoomOutAccel", NULL, /* label, accelerator */ "ZoomOutAccel", "<control>KP_Subtract", @@ -847,7 +847,7 @@ static const GtkActionEntry main_entries[] = { G_CALLBACK (action_zoom_out_callback) }, /* name, stock id */ { "Zoom Normal", GTK_STOCK_ZOOM_100, /* label, accelerator */ N_("Normal Si_ze"), "<control>0", - /* tooltip */ N_("Show the contents at the normal size"), + /* tooltip */ N_("Use the normal view size"), G_CALLBACK (action_zoom_normal_callback) }, /* name, stock id */ { "Connect to Server", NULL, /* label, accelerator */ N_("Connect to _Server..."), NULL, |