diff options
| author | Panagiotis Papadopoulos <pano_90@gmx.net> | 2009-08-09 03:14:40 +0200 | 
|---|---|---|
| committer | Panagiotis Papadopoulos <pano_90@gmx.net> | 2009-08-09 03:14:40 +0200 | 
| commit | 1448a51d72d803fe03449f5f615b38f867411c2b (patch) | |
| tree | 71d4701c578189281145d247a877e3b43dd893f6 | |
| parent | Removed unneeded space (diff) | |
| download | rekonq-1448a51d72d803fe03449f5f615b38f867411c2b.tar.xz | |
Added colons to strings
| -rw-r--r-- | src/application.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/src/application.cpp b/src/application.cpp index 3817098d..df47a119 100644 --- a/src/application.cpp +++ b/src/application.cpp @@ -262,7 +262,7 @@ void Application::loadUrl(const KUrl& url, const Rekonq::OpenType& type)      if ( !url.isValid() )      { -        KMessageBox::error(0, i18n("Malformed URL\n%1", url.url())); +        KMessageBox::error(0, i18n("Malformed URL:\n%1", url.url()));          return;      } @@ -301,7 +301,7 @@ void Application::loadUrl(const KUrl& url, const Rekonq::OpenType& type)      if ( !KProtocolInfo::isKnownProtocol( loadingUrl ) )      { -        KMessageBox::error(0, i18n("Protocol not supported\n%1", url.protocol())); +        KMessageBox::error(0, i18n("Protocol not supported:\n%1", url.protocol()));          return;      } | 
