diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-07-25 20:49:06 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-07-25 20:49:06 +0800 |
commit | 78d5bd1874dff802c7416deb5f056ce89aab1e5c (patch) | |
tree | 7de4cf56029ce4d0434696ef0c29158682de665e /src/popup-commands.c | |
parent | c108708fd68ed5d6363d02ab0408d7dcf9f5073b (diff) | |
download | gsoc2013-epiphany-78d5bd1874dff802c7416deb5f056ce89aab1e5c.tar gsoc2013-epiphany-78d5bd1874dff802c7416deb5f056ce89aab1e5c.tar.gz gsoc2013-epiphany-78d5bd1874dff802c7416deb5f056ce89aab1e5c.tar.bz2 gsoc2013-epiphany-78d5bd1874dff802c7416deb5f056ce89aab1e5c.tar.lz gsoc2013-epiphany-78d5bd1874dff802c7416deb5f056ce89aab1e5c.tar.xz gsoc2013-epiphany-78d5bd1874dff802c7416deb5f056ce89aab1e5c.tar.zst gsoc2013-epiphany-78d5bd1874dff802c7416deb5f056ce89aab1e5c.zip |
Fix "Save Link As" filechooser title, and change capitalisation on the
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.
Diffstat (limited to 'src/popup-commands.c')
-rw-r--r-- | src/popup-commands.c | 4 |
1 files changed, 2 insertions, 2 deletions
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 |