diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2005-07-11 00:21:23 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2005-07-11 00:21:23 +0800 |
commit | 75ecb3bdd186210a6064b46d3889b5719d786afb (patch) | |
tree | deae4d65db9f917aa80557cb1490166f509e5728 | |
parent | a4629854eaa0cf1414f3e3353a722afc01473f4e (diff) | |
download | gsoc2013-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.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | embed/mozilla/EphyProtocolHandler.cpp | 8 |
2 files changed, 12 insertions, 2 deletions
@@ -1,5 +1,11 @@ 2005-07-10 Christian Persch <chpe@cvs.gnome.org> + * embed/mozilla/EphyProtocolHandler.cpp: + + Add context to two strings. + +2005-07-10 Christian Persch <chpe@cvs.gnome.org> + * embed/mozilla/EphyProtocolHandler.cpp: * embed/mozilla/EphyProtocolHandler.h: 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>"); |