diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | src/ephy-history-window.c | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -1,5 +1,11 @@ 2005-10-31 Christian Persch <chpe@cvs.gnome.org> + * src/ephy-history-window.c: (build_search_box): + + Fix capitalisation, bug #320330. + +2005-10-31 Christian Persch <chpe@cvs.gnome.org> + * embed/ephy-history.c: (ephy_history_class_init), (ephy_history_add_page), (impl_add_page): * embed/ephy-history.h: diff --git a/src/ephy-history-window.c b/src/ephy-history-window.c index ebcc7eacc..51425f9f8 100644 --- a/src/ephy-history-window.c +++ b/src/ephy-history-window.c @@ -1039,7 +1039,7 @@ build_search_box (EphyHistoryWindow *editor) combo = gtk_combo_box_new_text (); gtk_widget_show (combo); - gtk_combo_box_append_text (GTK_COMBO_BOX (combo), _("Last 30 Minutes")); + gtk_combo_box_append_text (GTK_COMBO_BOX (combo), _("Last 30 minutes")); gtk_combo_box_append_text (GTK_COMBO_BOX (combo), _("Today")); str = g_strdup_printf (ngettext ("Last %d day", "Last %d days", 2), 2); gtk_combo_box_append_text (GTK_COMBO_BOX (combo), str); |