aboutsummaryrefslogtreecommitdiffstats
path: root/qt-ui/updatemanager.cpp
diff options
context:
space:
mode:
authorGravatar Tim Wootton <tim@tee-jay.demon.co.uk>2014-11-25 15:47:24 +0000
committerGravatar Dirk Hohndel <dirk@hohndel.org>2014-11-25 07:57:33 -0800
commit93d59c22d78788823c22f7d6f2efa01bdcdac5f4 (patch)
tree2db6ced98955950013a92bfa8b5b9a8fa72da06c /qt-ui/updatemanager.cpp
parentf72ec5e29bbf36f5346dd7c0a56972e916c4efa1 (diff)
downloadsubsurface-93d59c22d78788823c22f7d6f2efa01bdcdac5f4.tar.gz
Match agreed captalisation style
Signed-off-by: Tim Wootton <tim@tee-jay.demon.co.uk> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/updatemanager.cpp')
-rw-r--r--qt-ui/updatemanager.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/qt-ui/updatemanager.cpp b/qt-ui/updatemanager.cpp
index 858de561d..a181f34fa 100644
--- a/qt-ui/updatemanager.cpp
+++ b/qt-ui/updatemanager.cpp
@@ -56,16 +56,16 @@ void UpdateManager::requestReceived()
msgbox.setIcon(QMessageBox::Information);
if (responseBody == "OK") {
- msgText = tr("You are using the latest version of subsurface.");
+ msgText = tr("You are using the latest version of Subsurface.");
} else if (responseBody.startsWith("http")) {
- msgText = tr("A new version of subsurface is available.<br/>Click on:<br/><a href=\"%1\">%1</a><br/> to download it.")
+ msgText = tr("A new version of Subsurface is available.<br/>Click on:<br/><a href=\"%1\">%1</a><br/> to download it.")
.arg(responseBody);
} else if (responseBody.startsWith("Latest version")) {
// the webservice backend doesn't localize - but it's easy enough to just replace the
// strings that it is likely to send back
responseBody.replace("Latest version is ", "");
responseBody.replace(". please check with your OS vendor for updates.", "");
- msgText = QString("<b>") + tr("A new version of subsurface is available.") + QString("</b><br/><br/>") +
+ msgText = QString("<b>") + tr("A new version of Subsurface is available.") + QString("</b><br/><br/>") +
tr("Latest version is %1, please check with your OS vendor for updates.")
.arg(responseBody);
} else {