diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/webview.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/webview.cpp b/src/webview.cpp index 86be4506..5555eb87 100644 --- a/src/webview.cpp +++ b/src/webview.cpp @@ -197,7 +197,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 |