diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2011-04-04 11:21:24 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2011-04-04 11:21:24 +0200 |
commit | 2e559e428737ca046b3baedf9b88cd1aa7adf2a6 (patch) | |
tree | a444d8b2e804ba72ed3fa1261cbaecca72034a01 | |
parent | Drop plain-text urls on urlbar (diff) | |
download | rekonq-2e559e428737ca046b3baedf9b88cd1aa7adf2a6.tar.xz |
Fix string
-rw-r--r-- | src/protocolhandler.cpp | 5 |
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; } |