summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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()));