diff options
Diffstat (limited to 'qt-ui/updatemanager.cpp')
-rw-r--r-- | qt-ui/updatemanager.cpp | 6 |
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 { |