diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2005-11-01 19:15:56 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2005-11-01 19:15:56 +0800 |
commit | 709f0858814f1ece4bdeb288c2a4ae907a08c358 (patch) | |
tree | 32ae587982b4a8203d842dd0b261bba2042c9835 /src/ephy-tab.c | |
parent | 5f88d3915c6330ec150b977b320375ab3284b322 (diff) | |
download | gsoc2013-epiphany-709f0858814f1ece4bdeb288c2a4ae907a08c358.tar gsoc2013-epiphany-709f0858814f1ece4bdeb288c2a4ae907a08c358.tar.gz gsoc2013-epiphany-709f0858814f1ece4bdeb288c2a4ae907a08c358.tar.bz2 gsoc2013-epiphany-709f0858814f1ece4bdeb288c2a4ae907a08c358.tar.lz gsoc2013-epiphany-709f0858814f1ece4bdeb288c2a4ae907a08c358.tar.xz gsoc2013-epiphany-709f0858814f1ece4bdeb288c2a4ae907a08c358.tar.zst gsoc2013-epiphany-709f0858814f1ece4bdeb288c2a4ae907a08c358.zip |
More curly quotes.
2005-11-01 Christian Persch <chpe@cvs.gnome.org>
* embed/mozilla/ContentHandler.cpp:
* embed/mozilla/GtkNSSClientAuthDialogs.cpp:
* embed/mozilla/GtkNSSDialogs.cpp:
* embed/print-dialog.c: (ephy_print_verify_postscript):
* lib/ephy-gui.c: (ephy_gui_check_location_writable):
* src/bookmarks/ephy-bookmark-properties.c: (update_window_title):
* src/bookmarks/ephy-bookmarks-editor.c:
(delete_topic_dialog_construct), (add_bookmarks_source),
(import_bookmarks):
* src/bookmarks/ephy-bookmarks.c: (redirect_cb):
* src/bookmarks/ephy-new-bookmark.c: (duplicate_dialog_construct):
* src/ephy-extensions-manager.c: (dir_changed_cb):
* src/ephy-tab.c: (update_net_state_message):
More curly quotes.
Diffstat (limited to 'src/ephy-tab.c')
-rw-r--r-- | src/ephy-tab.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ephy-tab.c b/src/ephy-tab.c index 353f0d30b..0546a96f2 100644 --- a/src/ephy-tab.c +++ b/src/ephy-tab.c @@ -1624,15 +1624,15 @@ update_net_state_message (EphyTab *tab, const char *uri, EphyEmbedNetState flags { if (flags & EPHY_EMBED_STATE_REDIRECTING) { - msg = _("Redirecting to %s..."); + msg = _("Redirecting to “%s”..."); } else if (flags & EPHY_EMBED_STATE_TRANSFERRING) { - msg = _("Transferring data from %s..."); + msg = _("Transferring data from “%s”..."); } else if (flags & EPHY_EMBED_STATE_NEGOTIATING) { - msg = _("Waiting for authorization from %s..."); + msg = _("Waiting for authorization from “%s”..."); } } @@ -1640,7 +1640,7 @@ update_net_state_message (EphyTab *tab, const char *uri, EphyEmbedNetState flags { if (flags & EPHY_EMBED_STATE_START) { - msg = _("Loading %s..."); + msg = _("Loading “%s”..."); } } |