diff options
Diffstat (limited to 'qt-ui/usersurvey.cpp')
-rw-r--r-- | qt-ui/usersurvey.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/qt-ui/usersurvey.cpp b/qt-ui/usersurvey.cpp index 0a97fdb78..e1153c42f 100644 --- a/qt-ui/usersurvey.cpp +++ b/qt-ui/usersurvey.cpp @@ -93,13 +93,13 @@ void UserSurvey::requestReceived(QNetworkReply *reply) { QMessageBox msgbox; QString msgTitle = tr("Submit User Survey."); - QString msgText = tr("<h3>Subsurface was unable to submit the user survey.</h3>"); + QString msgText = "<h3>" + tr("Subsurface was unable to submit the user survey.") + "</h3>"; if (reply->error() != QNetworkReply::NoError) { //Network Error - msgText = msgText + tr("<br/><b>The following error occurred:</b><br/>") + reply->errorString() - + tr("<br/><br/><b>Please check your internet connection.</b>"); + msgText = msgText + "<br/><b>" + tr("The following error occurred:") + "</b><br/>" + reply->errorString() + + "<br/><br/><b>" + tr("Please check your internet connection.") + "</b>"; } else { //No network error QString response(reply->readAll()); |