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>
This commit is contained in:
Tim Wootton 2014-07-11 18:39:03 +01:00 committed by Dirk Hohndel
parent fbd00c6b0d
commit 9dd484b63f
4 changed files with 6 additions and 6 deletions

View file

@ -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);