summaryrefslogtreecommitdiffstats
path: root/qt-ui/preferences.cpp
diff options
context:
space:
mode:
authorGravatar Tim Wootton <tim@tee-jay.demon.co.uk>2014-07-11 00:06:50 +0100
committerGravatar Dirk Hohndel <dirk@hohndel.org>2014-07-10 16:30:39 -0700
commit25114a4e847614382b5dc41a4c90ce52a2bba086 (patch)
treede655c363a86e8eca667c293c8202a6b23c9a2f2 /qt-ui/preferences.cpp
parent70bec60983f3dc42dc74343aae3d3c1b4e0e58c3 (diff)
downloadsubsurface-25114a4e847614382b5dc41a4c90ce52a2bba086.tar.gz
preferences capitalisation consistency
Signed-off-by: Tim Wootton <tim@tee-jay.demon.co.uk> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/preferences.cpp')
-rw-r--r--qt-ui/preferences.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/qt-ui/preferences.cpp b/qt-ui/preferences.cpp
index ef37c10c1..cb24ec33a 100644
--- a/qt-ui/preferences.cpp
+++ b/qt-ui/preferences.cpp
@@ -378,7 +378,7 @@ void PreferencesDialog::buttonClicked(QAbstractButton *button)
void PreferencesDialog::on_chooseFile_clicked()
{
QFileInfo fi(system_default_filename());
- QString choosenFileName = QFileDialog::getOpenFileName(this, tr("Open Default Log File"), fi.absolutePath(), tr("Subsurface XML files (*.ssrf *.xml *.XML)"));
+ QString choosenFileName = QFileDialog::getOpenFileName(this, tr("Open default log file"), fi.absolutePath(), tr("Subsurface XML files (*.ssrf *.xml *.XML)"));
if (!choosenFileName.isEmpty())
ui.defaultfilename->setText(choosenFileName);
@@ -392,7 +392,7 @@ void PreferencesDialog::on_resetSettings_clicked()
response.setStandardButtons(QMessageBox::Ok | QMessageBox::Cancel);
response.setDefaultButton(QMessageBox::Cancel);
response.setWindowTitle(tr("Warning"));
- response.setText(tr("If you click OK, all settings of Subsurface are reset to their default values. This will be applied immediately."));
+ response.setText(tr("If you click OK, all settings of Subsurface will be reset to their default values. This will be applied immediately."));
response.setWindowModality(Qt::WindowModal);
int result = response.exec();