summaryrefslogtreecommitdiff
path: root/src/protocolhandler.cpp
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2011-04-04 11:21:24 +0200
committerAndrea Diamantini <adjam7@gmail.com>2011-04-04 11:21:24 +0200
commit2e559e428737ca046b3baedf9b88cd1aa7adf2a6 (patch)
treea444d8b2e804ba72ed3fa1261cbaecca72034a01 /src/protocolhandler.cpp
parentDrop plain-text urls on urlbar (diff)
downloadrekonq-2e559e428737ca046b3baedf9b88cd1aa7adf2a6.tar.xz
Fix string
Diffstat (limited to 'src/protocolhandler.cpp')
-rw-r--r--src/protocolhandler.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/protocolhandler.cpp b/src/protocolhandler.cpp
index 36efe2a7..95437693 100644
--- a/src/protocolhandler.cpp
+++ b/src/protocolhandler.cpp
@@ -178,10 +178,7 @@ bool ProtocolHandler::preHandling(const QNetworkRequest &request, QWebFrame *fra
return false;
// Error Message, for those protocols we cannot handle
- // FIXME change this sentence AFTER STRING FREEZE to: "rekonq doesn't know how to handle this protocol: _url.protocol()"
- KMessageBox::error(rApp->mainWindow(), i18nc("@info",
- "rekonq cannot handle this URL. \
- Please use an appropriate application to open it."));
+ KMessageBox::error(rApp->mainWindow(), i18nc("@info", "rekonq doesn't know how to handle this protocol: %1", _url.protocol()));
return true;
}