mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
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>
This commit is contained in:
parent
a99349814c
commit
d2d6b7937e
2 changed files with 6 additions and 6 deletions
|
@ -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>";
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue