aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2004-05-19 18:33:19 +0800
committerChristian Persch <chpe@src.gnome.org>2004-05-19 18:33:19 +0800
commitcee5ad0a169b69938e45da69acd8696efa7b3f7f (patch)
tree4b2b919053367ba87fcdc7333135f6e5d1f1bb87
parent3ee134ac21a334be9600e88a1fe06e1a1c5d0652 (diff)
downloadgsoc2013-epiphany-cee5ad0a169b69938e45da69acd8696efa7b3f7f.tar
gsoc2013-epiphany-cee5ad0a169b69938e45da69acd8696efa7b3f7f.tar.gz
gsoc2013-epiphany-cee5ad0a169b69938e45da69acd8696efa7b3f7f.tar.bz2
gsoc2013-epiphany-cee5ad0a169b69938e45da69acd8696efa7b3f7f.tar.lz
gsoc2013-epiphany-cee5ad0a169b69938e45da69acd8696efa7b3f7f.tar.xz
gsoc2013-epiphany-cee5ad0a169b69938e45da69acd8696efa7b3f7f.tar.zst
gsoc2013-epiphany-cee5ad0a169b69938e45da69acd8696efa7b3f7f.zip
Fix capitalisation.
2004-05-19 Christian Persch <chpe@cvs.gnome.org> * embed/print-dialog.c: (ephy_print_dialog_browse_button_cb): * src/bookmarks/ephy-bookmarks-editor.c: (import_dialog_response_cb): Fix capitalisation.
-rw-r--r--ChangeLog8
-rwxr-xr-xembed/print-dialog.c2
-rw-r--r--src/bookmarks/ephy-bookmarks-editor.c2
3 files changed, 10 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index d622f7ec4..a6b5e9990 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2004-05-19 Christian Persch <chpe@cvs.gnome.org>
+
+ * embed/print-dialog.c: (ephy_print_dialog_browse_button_cb):
+ * src/bookmarks/ephy-bookmarks-editor.c:
+ (import_dialog_response_cb):
+
+ Fix capitalisation.
+
2004-05-17 Christian Persch <chpe@cvs.gnome.org>
* embed/mozilla/EphySingle.cpp:
diff --git a/embed/print-dialog.c b/embed/print-dialog.c
index 238be4d98..6e4b46e2c 100755
--- a/embed/print-dialog.c
+++ b/embed/print-dialog.c
@@ -299,7 +299,7 @@ ephy_print_dialog_browse_button_cb (GtkWidget *widget,
filter = ephy_file_chooser_add_mime_filter (fc, _("Postscript files"),
"application/postscript", NULL);
- ephy_file_chooser_add_pattern_filter (fc, _("All Files"), "*", NULL);
+ ephy_file_chooser_add_pattern_filter (fc, _("All files"), "*", NULL);
gtk_file_chooser_set_filter (GTK_FILE_CHOOSER (fc), filter);
diff --git a/src/bookmarks/ephy-bookmarks-editor.c b/src/bookmarks/ephy-bookmarks-editor.c
index 2bf909e8d..5a8b71976 100644
--- a/src/bookmarks/ephy-bookmarks-editor.c
+++ b/src/bookmarks/ephy-bookmarks-editor.c
@@ -575,7 +575,7 @@ import_dialog_response_cb (GtkDialog *dialog, gint response,
"text/rdf", NULL);
filter = ephy_file_chooser_add_pattern_filter (dialog,
- _("All Files"),
+ _("All files"),
"*", NULL);
gtk_file_chooser_set_filter (GTK_FILE_CHOOSER (dialog),