summaryrefslogtreecommitdiff
path: root/src/urlbar
diff options
context:
space:
mode:
authorpano <pano@arch.localdomain>2010-04-11 12:55:15 +0200
committerpano <pano@arch.localdomain>2010-04-11 12:55:15 +0200
commit138801dfa40b1bbbbbf0ce6a5bd8e04977b9ccdc (patch)
tree0defc5420775f06956e3f870038b24302fc0cfc2 /src/urlbar
parentRemoving overkilling WeakPointer from data clean dialog and fixing a (diff)
downloadrekonq-138801dfa40b1bbbbbf0ce6a5bd8e04977b9ccdc.tar.xz
fix strings
Diffstat (limited to 'src/urlbar')
-rw-r--r--src/urlbar/urlresolver.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/urlbar/urlresolver.cpp b/src/urlbar/urlresolver.cpp
index ff90ce14..5f025cb5 100644
--- a/src/urlbar/urlresolver.cpp
+++ b/src/urlbar/urlresolver.cpp
@@ -187,12 +187,12 @@ UrlSearchList UrlResolver::webSearchesResolution()
{
// KUriFilter has the worst performance possible here and let this trick unusable
QString gUrl = QString("http://www.google.com/search?q=%1&ie=UTF-8&oe=UTF-8").arg(url1);
- QString gTitle = i18n("Search Google for ") + url1;
+ QString gTitle = i18n("Search Google for %1", url1);
UrlSearchItem gItem(UrlSearchItem::Search, gUrl, gTitle, QString("http://www.google.com") );
list << gItem;
// QString wUrl = QString("http://en.wikipedia.org/wiki/Special:Search?search=%1&go=Go").arg(url1);
-// QString wTitle = i18n("Search Wikipedia for ") + url1;
+// QString wTitle = i18n("Search Wikipedia for %1", url1);
// UrlSearchItem wItem(wUrl, wTitle, QString("http://wikipedia.org") );
// list << wItem;
}