aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2005-11-01 01:54:37 +0800
committerChristian Persch <chpe@src.gnome.org>2005-11-01 01:54:37 +0800
commit06020f19214a5e141fe5202a8f8678a2d0c13bd7 (patch)
tree25bdea04594af0f777e6d82d996bd11358d22398 /src
parent6b866168d7d5b3702f709b5ecb59454761b9e790 (diff)
downloadgsoc2013-epiphany-06020f19214a5e141fe5202a8f8678a2d0c13bd7.tar
gsoc2013-epiphany-06020f19214a5e141fe5202a8f8678a2d0c13bd7.tar.gz
gsoc2013-epiphany-06020f19214a5e141fe5202a8f8678a2d0c13bd7.tar.bz2
gsoc2013-epiphany-06020f19214a5e141fe5202a8f8678a2d0c13bd7.tar.lz
gsoc2013-epiphany-06020f19214a5e141fe5202a8f8678a2d0c13bd7.tar.xz
gsoc2013-epiphany-06020f19214a5e141fe5202a8f8678a2d0c13bd7.tar.zst
gsoc2013-epiphany-06020f19214a5e141fe5202a8f8678a2d0c13bd7.zip
Fix capitalisation, bug #320330.
2005-10-31 Christian Persch <chpe@cvs.gnome.org> * src/ephy-history-window.c: (build_search_box): Fix capitalisation, bug #320330.
Diffstat (limited to 'src')
-rw-r--r--src/ephy-history-window.c2
1 files changed, 1 insertions, 1 deletions
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);