From kde-commits Mon Apr 04 13:50:58 2011 From: Panagiotis Papadopoulos Date: Mon, 04 Apr 2011 13:50:58 +0000 To: kde-commits Subject: =?utf-8?q?=5Brekonq=5D_src=3A_fix_string_=3A-=29?= Message-Id: <20110404135058.B2A9CA609B () git ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=130192511122740 Git commit 9ce99a9863a2b595b7f9b83e1502addc0fa3f7c9 by Panagiotis Papadopoulos. Committed on 04/04/2011 at 12:58. Pushed by pano into branch 'master'. fix string :-) In KDE apps you should not use abbreviations like don't, doesn't, can't, etc. You have to fully write them out: do not, does not, cannot, etc. :-) M +1 -1 src/protocolhandler.cpp http://commits.kde.org/rekonq/9ce99a9863a2b595b7f9b83e1502addc0fa3f7c9 diff --git a/src/protocolhandler.cpp b/src/protocolhandler.cpp index 9543769..945f5b4 100644 --- a/src/protocolhandler.cpp +++ b/src/protocolhandler.cpp @@ -178,7 +178,7 @@ bool ProtocolHandler::preHandling(const QNetworkRequest &request, QWebFrame *fra return false; // Error Message, for those protocols we cannot handle - KMessageBox::error(rApp->mainWindow(), i18nc("@info", "rekonq doesn't know how to handle this protocol: %1", _url.protocol())); + KMessageBox::error(rApp->mainWindow(), i18nc("@info", "rekonq does not know how to handle this protocol: %1", _url.protocol())); return true; }