diff options
author | Tim Wootton <tim@tee-jay.demon.co.uk> | 2014-07-11 18:39:03 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-07-11 10:44:09 -0700 |
commit | 9dd484b63fb10e1c5d456eadab581929059c144a (patch) | |
tree | a46852709c66b74c01b92869b7c0a6834be752ac /qt-ui/subsurfacewebservices.cpp | |
parent | fbd00c6b0da55b4c7add823c80e3d4afaf452544 (diff) | |
download | subsurface-9dd484b63fb10e1c5d456eadab581929059c144a.tar.gz |
Misc UI capitalisation consitencies and other text changes
Capitalisation consitencies
A typo correction
A readability improvement (IMHO)
Signed-off-by: Tim Wootton <tim@tee-jay.demon.co.uk>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/subsurfacewebservices.cpp')
-rw-r--r-- | qt-ui/subsurfacewebservices.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qt-ui/subsurfacewebservices.cpp b/qt-ui/subsurfacewebservices.cpp index 27a56ec1f..219d10d8c 100644 --- a/qt-ui/subsurfacewebservices.cpp +++ b/qt-ui/subsurfacewebservices.cpp @@ -440,7 +440,7 @@ void SubsurfaceWebServices::setStatusText(int status) QString text; switch (status) { case DD_STATUS_ERROR_CONNECT: - text = tr("Connection Error: "); + text = tr("Connection error: "); break; case DD_STATUS_ERROR_ID: text = tr("Invalid user identifier!"); @@ -449,7 +449,7 @@ void SubsurfaceWebServices::setStatusText(int status) text = tr("Cannot parse response!"); break; case DD_STATUS_OK: - text = tr("Download Success!"); + text = tr("Download successful"); break; } ui.status->setText(text); |