aboutsummaryrefslogtreecommitdiffstats
path: root/qt-ui/usersurvey.cpp
diff options
context:
space:
mode:
authorGravatar Tim Wootton <tim@tee-jay.demon.co.uk>2014-07-11 00:06:38 +0100
committerGravatar Dirk Hohndel <dirk@hohndel.org>2014-07-10 16:24:55 -0700
commitd2d6b7937e42d4ba340ccf78aab56357706d2ef5 (patch)
tree1c96c94abe979bacec4cfe3a92492e0e32f61ab7 /qt-ui/usersurvey.cpp
parenta99349814c20b68c7356f414da0a5d6edadd304a (diff)
downloadsubsurface-d2d6b7937e42d4ba340ccf78aab56357706d2ef5.tar.gz
Implements consistent capitalisation and minor tweaks to survey text
Makes capitalisation consistent Replaces Tech diver with Technical diver Adds title to survey dialog (was "dialog") Signed-off-by: Tim Wootton <tim@tee-jay.demon.co.uk> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/usersurvey.cpp')
-rw-r--r--qt-ui/usersurvey.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/qt-ui/usersurvey.cpp b/qt-ui/usersurvey.cpp
index e1153c42f..b98f1d62f 100644
--- a/qt-ui/usersurvey.cpp
+++ b/qt-ui/usersurvey.cpp
@@ -72,7 +72,7 @@ void UserSurvey::on_buttonBox_rejected()
QMessageBox response(this);
response.setText(tr("Should we ask you later?"));
response.addButton(tr("Don't ask me again"), QMessageBox::RejectRole);
- response.addButton(tr("Ask Later"), QMessageBox::AcceptRole);
+ response.addButton(tr("Ask later"), QMessageBox::AcceptRole);
response.setWindowTitle(tr("Ask again?")); // Not displayed on MacOSX as described in Qt API
response.setIcon(QMessageBox::Question);
response.setWindowModality(Qt::WindowModal);
@@ -92,7 +92,7 @@ void UserSurvey::on_buttonBox_rejected()
void UserSurvey::requestReceived(QNetworkReply *reply)
{
QMessageBox msgbox;
- QString msgTitle = tr("Submit User Survey.");
+ QString msgTitle = tr("Submit user survey.");
QString msgText = "<h3>" + tr("Subsurface was unable to submit the user survey.") + "</h3>";