aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog9
-rw-r--r--src/popup-commands.c4
2 files changed, 11 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 99203cca8..b11ef9dd3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,14 @@
2004-07-25 Christian Persch <chpe@cvs.gnome.org>
+ * src/popup-commands.c: (popup_cmd_download_link),
+ (popup_cmd_download_link_as):
+
+ Fix "Save Link As" filechooser title, and change
+ capitalisation on the "Download Link" filechooser
+ title. Fixes bug #138208.
+
+2004-07-25 Christian Persch <chpe@cvs.gnome.org>
+
* embed/mozilla/mozilla-embed-single.cpp:
Make sure we don't release the single observer more than
diff --git a/src/popup-commands.c b/src/popup-commands.c
index 0f880dc72..34dafdfc8 100644
--- a/src/popup-commands.c
+++ b/src/popup-commands.c
@@ -242,7 +242,7 @@ void
popup_cmd_download_link (GtkAction *action,
EphyWindow *window)
{
- save_property_url (action, _("Download link"), window,
+ save_property_url (action, _("Download Link"), window,
FALSE, "link");
}
@@ -250,7 +250,7 @@ void
popup_cmd_download_link_as (GtkAction *action,
EphyWindow *window)
{
- save_property_url (action, _("Download link"), window,
+ save_property_url (action, _("Save Link As"), window,
TRUE, "link");
}
void