]> www.fi.muni.cz Git - evince.git/commitdiff
Add mnemonics to buttons in search bar. Fixes bug #569212.
authorCarlos Garcia Campos <carlosgc@gnome.org>
Sun, 1 Feb 2009 11:33:22 +0000 (11:33 +0000)
committerCarlos Garcia Campos <carlosgc@src.gnome.org>
Sun, 1 Feb 2009 11:33:22 +0000 (11:33 +0000)
2009-02-01  Carlos Garcia Campos  <carlosgc@gnome.org>

* shell/eggfindbar.c: (egg_find_bar_init):

Add mnemonics to buttons in search bar. Fixes bug #569212.

svn path=/trunk/; revision=3398

ChangeLog
shell/eggfindbar.c

index d27c65f11c959595515af5b8b64c8d25b729bcf8..0ff97bad9e69fbb093164d8e09729a62613cd8ad 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2009-02-01  Carlos Garcia Campos  <carlosgc@gnome.org>
+
+       * shell/eggfindbar.c: (egg_find_bar_init):
+
+       Add mnemonics to buttons in search bar. Fixes bug #569212.
+       
 2009-02-01  Carlos Garcia Campos  <carlosgc@gnome.org>
        
        * shell/ev-print-operation.c:
index 9bfaeb49daad2d4d5c5cb77e229746447507eba7..24079d3c08f5dd3dbad39b06699d3e1038011276 100644 (file)
@@ -326,14 +326,14 @@ egg_find_bar_init (EggFindBar *find_bar)
 
   /* Prev */
   arrow = gtk_arrow_new (GTK_ARROW_LEFT, GTK_SHADOW_NONE);
-  priv->previous_button = gtk_tool_button_new (arrow, Q_("Find Previous"));
+  priv->previous_button = gtk_tool_button_new (arrow, Q_("Find Pre_vious"));
   gtk_tool_item_set_is_important (priv->previous_button, TRUE);
   gtk_widget_set_tooltip_text (GTK_WIDGET (priv->previous_button),
                               _("Find previous occurrence of the search string"));
 
   /* Next */
   arrow = gtk_arrow_new (GTK_ARROW_RIGHT, GTK_SHADOW_NONE);
-  priv->next_button = gtk_tool_button_new (arrow, Q_("Find Next"));
+  priv->next_button = gtk_tool_button_new (arrow, Q_("Find Ne_xt"));
   gtk_tool_item_set_is_important (priv->next_button, TRUE);
   gtk_widget_set_tooltip_text (GTK_WIDGET (priv->next_button),
                               _("Find next occurrence of the search string"));