diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2015-09-09 02:53:30 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-09-09 02:53:30 -0700 |
commit | 708fd2fe841ed248f3b4ef059b417cd7af68f694 (patch) | |
tree | ee196d5f060781748ce0f24e86ccf4772d0cad0e /qt-ui | |
parent | 7bbd60a4fdf75040454ddcd9edd0026e4ae5a0ad (diff) | |
download | subsurface-708fd2fe841ed248f3b4ef059b417cd7af68f694.tar.gz |
Two small string changes
Reported by Ettore Atalan on Trnasifex.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui')
-rw-r--r-- | qt-ui/mainwindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-ui/mainwindow.cpp b/qt-ui/mainwindow.cpp index 4b186ed69..c9f15ee12 100644 --- a/qt-ui/mainwindow.cpp +++ b/qt-ui/mainwindow.cpp @@ -694,7 +694,7 @@ void MainWindow::on_actionReplanDive_triggered() if (!plannerStateClean() || !current_dive || !current_dive->dc.model) return; else if (strcmp(current_dive->dc.model, "planned dive")) { - if (QMessageBox::warning(this, tr("Warning"), tr("trying to replan a dive that's not a planned dive."), + if (QMessageBox::warning(this, tr("Warning"), tr("Trying to replan a dive that's not a planned dive."), QMessageBox::Ok | QMessageBox::Cancel) == QMessageBox::Cancel) return; } |