Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCarlos Garcia Campos <carlosgc@gnome.org>2009-02-01 11:33:22 (GMT)
committer Carlos Garcia Campos <carlosgc@src.gnome.org>2009-02-01 11:33:22 (GMT)
commit5c28946a3485ad6657985ac294c6a21089a0570c (patch)
tree397c26e130f4ea3a556e60a0834f182283e65701
parentdec308817b9817f6b4ed36b658e5123689bf6611 (diff)
Add mnemonics to buttons in search bar. Fixes bug #569212.
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
-rw-r--r--ChangeLog6
-rw-r--r--shell/eggfindbar.c4
2 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index d27c65f..0ff97ba 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,10 @@
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:
(ev_print_operation_export_print_dialog_response_cb):
diff --git a/shell/eggfindbar.c b/shell/eggfindbar.c
index 9bfaeb4..24079d3 100644
--- a/shell/eggfindbar.c
+++ b/shell/eggfindbar.c
@@ -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"));