summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2009-07-31 16:41:42 +0200
committerAndrea Diamantini <adjam7@gmail.com>2009-07-31 16:41:42 +0200
commita98163b586c85b03c71b5bedab6021cacd30d1a4 (patch)
tree4b97fdfbc21f8d9ae29a27c4b70e016269d572de /src
parentMerge branch 'I18n' (diff)
downloadrekonq-a98163b586c85b03c71b5bedab6021cacd30d1a4.tar.xz
String fix
Diffstat (limited to 'src')
-rw-r--r--src/webview.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/webview.cpp b/src/webview.cpp
index 654efc29..a8a45077 100644
--- a/src/webview.cpp
+++ b/src/webview.cpp
@@ -216,7 +216,7 @@ void WebView::contextMenuEvent(QContextMenuEvent *event)
service = KService::serviceByDesktopPath(QString("searchproviders/%1.desktop").arg(engine));
const QString searchProviderPrefix = *(service->property("Keys").toStringList().begin()) + keywordDelimiter;
data.setData(searchProviderPrefix + "some keyword");
- a = new KAction(i18n("Search with ")+service->name(), this);
+ a = new KAction(i18n("Search with %1", service->name()), this);
a->setIcon(Application::icon(KUrl(data.uri())));
a->setData(searchProviderPrefix);
connect(a, SIGNAL(triggered(bool)), this, SLOT(slotSearch()));