summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2012-09-24 18:05:10 +0200
committerAndrea Diamantini <adjam7@gmail.com>2012-12-10 02:48:05 +0100
commit2eab414416a70c4ab474ee3741388189b9a89f17 (patch)
treedce93cf37460cdcff331f9fcc039aa6a8d983554
parentrekonq new tab page restored :) (diff)
downloadrekonq-2eab414416a70c4ab474ee3741388189b9a89f17.tar.xz
Chusslove commit about strings
PS: hard life for a "playground" project :)
-rw-r--r--src/webtab/webview.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/webtab/webview.cpp b/src/webtab/webview.cpp
index 2ac68bf3..618edf3c 100644
--- a/src/webtab/webview.cpp
+++ b/src/webtab/webview.cpp
@@ -199,7 +199,7 @@ bool WebView::popupSpellMenu(QContextMenuEvent *event)
// Add alternates
if (words.isEmpty())
{
- QAction *a = mnu.addAction(i18n("No suggestions for ") + word);
+ QAction *a = mnu.addAction(i18n("No suggestions for %1", word));
a->setEnabled(false);
}
else