diff options
author | Panagiotis Papadopoulos <pano_90@gmx.net> | 2011-04-04 12:58:43 +0200 |
---|---|---|
committer | Panagiotis Papadopoulos <pano_90@gmx.net> | 2011-04-04 12:58:43 +0200 |
commit | 9ce99a9863a2b595b7f9b83e1502addc0fa3f7c9 (patch) | |
tree | 9ed061ac9c68b272db1221eb07af921c8d294021 | |
parent | Minimum height to 20. Like Konqi... (diff) | |
download | rekonq-9ce99a9863a2b595b7f9b83e1502addc0fa3f7c9.tar.xz |
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. :-)
-rw-r--r-- | src/protocolhandler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/protocolhandler.cpp b/src/protocolhandler.cpp index 95437693..945f5b48 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; } |