diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | src/ephy-history-window.c | 4 |
2 files changed, 8 insertions, 2 deletions
@@ -1,3 +1,9 @@ +2005-01-02 Adam Hooper <adamh@cvs.gnome.org> + + * src/ephy-history-window.c: (confirmation_dialog_construct): + + Change C_lear to Cl_ear. Fixes bug #162706. + 2005-01-01 Crispin Flowerday <gnome@flowerday.cx> * embed/ephy-embed-single.c: (ephy_embed_single_iface_init): diff --git a/src/ephy-history-window.c b/src/ephy-history-window.c index 912e5b4f0..eeab28783 100644 --- a/src/ephy-history-window.c +++ b/src/ephy-history-window.c @@ -198,7 +198,7 @@ static GtkActionEntry ephy_history_ui_entries [] = { { "SelectAll", NULL, N_("Select _All"), "<control>A", N_("Select all history links or text"), G_CALLBACK (cmd_select_all) }, - { "Clear", GTK_STOCK_CLEAR, N_("C_lear History"), NULL, + { "Clear", GTK_STOCK_CLEAR, N_("Cl_ear History"), NULL, N_("Clear your browsing history"), G_CALLBACK (cmd_clear) }, @@ -262,7 +262,7 @@ confirmation_dialog_construct (EphyHistoryWindow *editor) _("Clearing the browsing history will cause all" " history links to be permanently deleted.")); - button = gtk_button_new_with_label (_("C_lear")); + button = gtk_button_new_with_label (_("Cl_ear")); image = gtk_image_new_from_stock (GTK_STOCK_CLEAR, GTK_ICON_SIZE_BUTTON); gtk_button_set_image (GTK_BUTTON (button), image); gtk_widget_show (image); |