aboutsummaryrefslogtreecommitdiffstats
path: root/embed/mozilla
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2005-07-11 00:21:23 +0800
committerChristian Persch <chpe@src.gnome.org>2005-07-11 00:21:23 +0800
commit75ecb3bdd186210a6064b46d3889b5719d786afb (patch)
treedeae4d65db9f917aa80557cb1490166f509e5728 /embed/mozilla
parenta4629854eaa0cf1414f3e3353a722afc01473f4e (diff)
downloadgsoc2013-epiphany-75ecb3bdd186210a6064b46d3889b5719d786afb.tar
gsoc2013-epiphany-75ecb3bdd186210a6064b46d3889b5719d786afb.tar.gz
gsoc2013-epiphany-75ecb3bdd186210a6064b46d3889b5719d786afb.tar.bz2
gsoc2013-epiphany-75ecb3bdd186210a6064b46d3889b5719d786afb.tar.lz
gsoc2013-epiphany-75ecb3bdd186210a6064b46d3889b5719d786afb.tar.xz
gsoc2013-epiphany-75ecb3bdd186210a6064b46d3889b5719d786afb.tar.zst
gsoc2013-epiphany-75ecb3bdd186210a6064b46d3889b5719d786afb.zip
Add context to two strings.
2005-07-10 Christian Persch <chpe@cvs.gnome.org> * embed/mozilla/EphyProtocolHandler.cpp: Add context to two strings.
Diffstat (limited to 'embed/mozilla')
-rw-r--r--embed/mozilla/EphyProtocolHandler.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/embed/mozilla/EphyProtocolHandler.cpp b/embed/mozilla/EphyProtocolHandler.cpp
index 5fb46f751..b327d5480 100644
--- a/embed/mozilla/EphyProtocolHandler.cpp
+++ b/embed/mozilla/EphyProtocolHandler.cpp
@@ -519,13 +519,17 @@ EphyProtocolHandler::CreateErrorPage(nsIURI *aErrorURI,
Write (stream, "<li><a href=\"http://google.com/search?q=cache:");
Write (stream, rawurl.get());
Write (stream, "\">");
- Write (stream, _("in the Google Cache"));
+ /* Translators: The text before the "|" is context to help you decide on
+ * the correct translation. You MUST OMIT it in the translated string. */
+ Write (stream, Q_("You may find an old version:|in the Google Cache"));
Write (stream, "</a></li>\n");
Write (stream, "<li><a href=\"http://web.archive.org/web/*/");
Write (stream, rawurl.get());
Write (stream, "\">");
- Write (stream, _("in the Internet Archive"));
+ /* Translators: The text before the "|" is context to help you decide on
+ * the correct translation. You MUST OMIT it in the translated string. */
+ Write (stream, Q_("You may find an old version:|in the Internet Archive"));
Write (stream, "</a></li>\n"
"</ul>\n"
"</p>");