diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2005-07-13 19:48:52 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2005-07-13 19:48:52 +0800 |
commit | 25c01c03b2e9006e33f5ddb49ce5ad169470dea6 (patch) | |
tree | 6473418ec87e31f89ca51dd4e8c9cf8501a58694 | |
parent | 5caa7d39f08003cec199f5a5cb6e099d3417d334 (diff) | |
download | gsoc2013-epiphany-25c01c03b2e9006e33f5ddb49ce5ad169470dea6.tar gsoc2013-epiphany-25c01c03b2e9006e33f5ddb49ce5ad169470dea6.tar.gz gsoc2013-epiphany-25c01c03b2e9006e33f5ddb49ce5ad169470dea6.tar.bz2 gsoc2013-epiphany-25c01c03b2e9006e33f5ddb49ce5ad169470dea6.tar.lz gsoc2013-epiphany-25c01c03b2e9006e33f5ddb49ce5ad169470dea6.tar.xz gsoc2013-epiphany-25c01c03b2e9006e33f5ddb49ce5ad169470dea6.tar.zst gsoc2013-epiphany-25c01c03b2e9006e33f5ddb49ce5ad169470dea6.zip |
Fix a couple of strings. Fixes bug #310196.
2005-07-13 Christian Persch <chpe@cvs.gnome.org>
* embed/mozilla/EphyProtocolHandler.cpp:
Fix a couple of strings. Fixes bug #310196.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | embed/mozilla/EphyProtocolHandler.cpp | 6 |
2 files changed, 9 insertions, 3 deletions
@@ -1,3 +1,9 @@ +2005-07-13 Christian Persch <chpe@cvs.gnome.org> + + * embed/mozilla/EphyProtocolHandler.cpp: + + Fix a couple of strings. Fixes bug #310196. + 2005-07-12 Christian Persch <chpe@cvs.gnome.org> * embed/mozilla/EphyBrowser.cpp: diff --git a/embed/mozilla/EphyProtocolHandler.cpp b/embed/mozilla/EphyProtocolHandler.cpp index 50854ee2e..9c6184849 100644 --- a/embed/mozilla/EphyProtocolHandler.cpp +++ b/embed/mozilla/EphyProtocolHandler.cpp @@ -238,7 +238,7 @@ EphyProtocolHandler::GetErrorMessage(nsIURI *aURI, /* Translators: %s is the name of a protocol, like "http" etc. */ *aPrimary = g_strdup_printf (_("“%s” protocol is not supported."), scheme.get()); /* FIXME: get the list of supported protocols from necko */ - *aSecondary = _("Supported protocols are “http”, “https”, “ftp”, “file” “smb” " + *aSecondary = _("Supported protocols are “http”, “https”, “ftp”, “file”, “smb” " "and “sftp”."); } else if (strcmp (aError, "fileNotFound") == 0) @@ -299,7 +299,7 @@ EphyProtocolHandler::GetErrorMessage(nsIURI *aURI, host.get()); *aSecondary = _("The connection was lost because the " "server took too long to respond."); - *aTertiary = _("The server may be busy or you may have a network" + *aTertiary = _("The server may be busy or you may have a network " "connection problem. Try again later."); *aLinkIntro = _("There may be an old version of the page you wanted:"); } @@ -377,7 +377,7 @@ EphyProtocolHandler::GetErrorMessage(nsIURI *aURI, strcmp (aError, "proxyConnectFailure") == 0) { *aPrimary = g_strdup (_("Could not connect to proxy server.")); - *aSecondary = _("Check you system wide proxy server settings. " + *aSecondary = _("Check the proxy server settings in Control Center. " "If the connection still fails, there may be " "a problem with your proxy server or your " "network connection."); |