diff options
author | Diego Escalante Urrelo <diegoe@svn.gnome.org> | 2007-01-09 08:40:44 +0800 |
---|---|---|
committer | Diego Escalante Urrelo <diegoe@src.gnome.org> | 2007-01-09 08:40:44 +0800 |
commit | fc051e29f9dd21db6254ce75f17c97a4012bcf03 (patch) | |
tree | 541ead4bd68bf66a7b355b2897dc15aae9b4fc92 /src/ephy-tab.c | |
parent | ea99ffca78680dd661967ba44c97be341aae7032 (diff) | |
download | gsoc2013-epiphany-fc051e29f9dd21db6254ce75f17c97a4012bcf03.tar.gz gsoc2013-epiphany-fc051e29f9dd21db6254ce75f17c97a4012bcf03.tar.zst gsoc2013-epiphany-fc051e29f9dd21db6254ce75f17c97a4012bcf03.zip |
Changes "..." for the ellipsis character "…". Bug #324380. Patch by
2007-01-09 Diego Escalante Urrelo <diegoe@svn.gnome.org>
* src/ephy-history-window.c:
* src/ephy-main.c:
* src/bookmarks/ephy-bookmarks-editor.c:
* src/ephy-tab.c:
* src/ephy-encoding-menu.c:
* src/ephy-window.c:
* data/glade/form-signing-dialog.glade:
* data/glade/prefs-dialog.glade:
Changes "..." for the ellipsis character "…". Bug #324380. Patch by
Diego Escalante Urrelo.
svn path=/trunk/; revision=6810
Diffstat (limited to 'src/ephy-tab.c')
-rw-r--r-- | src/ephy-tab.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/ephy-tab.c b/src/ephy-tab.c index ed5cca59f..3ac1bf997 100644 --- a/src/ephy-tab.c +++ b/src/ephy-tab.c @@ -629,7 +629,7 @@ ephy_tab_get_popups_allowed (EphyTab *tab) g_return_val_if_fail (EPHY_IS_EMBED (embed), FALSE); location = ephy_embed_get_location (embed, TRUE); - if (location == NULL) return FALSE; /* FALSE, TRUE... same thing */ + if (location == NULL) return FALSE; /* FALSE, TRUE… same thing */ response = ephy_permission_manager_test_permission (permission_manager, location, EPT_POPUP); @@ -937,11 +937,11 @@ ephy_tab_set_loading_title (EphyTab *tab, if (title != NULL && title[0] != '\0') { /* translators: %s here is the address of the web page */ - priv->loading_title = g_strdup_printf (_("Loading “%s”..."), title); + priv->loading_title = g_strdup_printf (_("Loading “%s”…"), title); } else { - priv->loading_title = g_strdup (_("Loading...")); + priv->loading_title = g_strdup (_("Loading…")); } g_free (freeme); @@ -1692,15 +1692,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”…"); } } @@ -1708,7 +1708,7 @@ update_net_state_message (EphyTab *tab, const char *uri, EphyEmbedNetState flags { if (flags & EPHY_EMBED_STATE_START) { - msg = _("Loading “%s”..."); + msg = _("Loading “%s”…"); } } |