aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mail/ChangeLog8
-rw-r--r--mail/em-format-html-display.c5
2 files changed, 11 insertions, 2 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index da35a82333..48be3efaa7 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,3 +1,11 @@
+2006-09-12 Ushveen Kaur <kushveen@novell.com>
+
+ ** Fixes bug #353921
+
+ * em-format-html.c: (em_format_html_get_search_dialog): "Back"
+ and "Forward" buttons changed to "Previous" and "Next"
+ respectively.
+
2007-01-24 Wang Xin <jedy.wang@sun.com>
* em-folder-browser.c: Fixes 397195.
diff --git a/mail/em-format-html-display.c b/mail/em-format-html-display.c
index 4c8f16444b..24afd40ba6 100644
--- a/mail/em-format-html-display.c
+++ b/mail/em-format-html-display.c
@@ -678,11 +678,12 @@ em_format_html_get_search_dialog (EMFormatHTMLDisplay *efhd)
gtk_box_pack_start ((GtkBox *)(hbox2), p->search_entry_box, FALSE, FALSE, 5);
// gtk_box_pack_start ((GtkBox *)(hbox2), p->search_entry_box, TRUE, TRUE, 5);
- button3 = gtk_button_new_from_stock ("gtk-go-back");
+ button3 = gtk_button_new_with_mnemonic (_("_Previous"));
+ gtk_button_set_image (button3, gtk_image_new_from_stock(GTK_STOCK_GO_BACK, GTK_ICON_SIZE_BUTTON));
gtk_widget_show (button3);
gtk_box_pack_start ((GtkBox *)(hbox2), button3, FALSE, FALSE, 5);
- button2 = gtk_button_new_with_mnemonic (_("Fo_rward"));
+ button2 = gtk_button_new_with_mnemonic (_("_Next"));
gtk_button_set_image (button2, gtk_image_new_from_stock(GTK_STOCK_GO_FORWARD, GTK_ICON_SIZE_BUTTON));
gtk_widget_show (button2);
gtk_box_pack_start ((GtkBox *)(hbox2), button2, FALSE, FALSE, 5);