diff options
author | Tim Wootton <tim@tee-jay.demon.co.uk> | 2014-07-11 00:06:43 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-07-10 16:26:41 -0700 |
commit | 8e7b7fafdaf7c4f91038c57088e34e0f67362357 (patch) | |
tree | aa71d586af396c5ec6c42b9c412be25e24f15e45 /qt-ui/divelogexportdialog.cpp | |
parent | 5c5168cf17fc0162556db661d35e7ef689845d22 (diff) | |
download | subsurface-8e7b7fafdaf7c4f91038c57088e34e0f67362357.tar.gz |
divelogexportdialog 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/divelogexportdialog.cpp')
-rw-r--r-- | qt-ui/divelogexportdialog.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/qt-ui/divelogexportdialog.cpp b/qt-ui/divelogexportdialog.cpp index f2ff0d194..47795ec0a 100644 --- a/qt-ui/divelogexportdialog.cpp +++ b/qt-ui/divelogexportdialog.cpp @@ -59,7 +59,7 @@ void DiveLogExportDialog::showExplanation() } else if (ui->exportCSV->isChecked()) { ui->description->setText("Comma separated values that include the most relevant information of the dive profile."); } else if (ui->exportDivelogs->isChecked()) { - ui->description->setText("Send the dive data to Divelogs.de website."); + ui->description->setText("Send the dive data to divelogs.de website."); } else if (ui->exportWorldMap->isChecked()) { ui->description->setText("HTML export of the dive locations, visualized on a world map."); } else if (ui->exportSubsurfaceXML->isChecked()) { @@ -150,16 +150,16 @@ void DiveLogExportDialog::on_buttonBox_accepted() case 0: if (ui->exportUDDF->isChecked()) { stylesheet = "uddf-export.xslt"; - filename = QFileDialog::getSaveFileName(this, tr("Export UDDF File as"), lastDir, + filename = QFileDialog::getSaveFileName(this, tr("Export UDDF file as"), lastDir, tr("UDDF files (*.uddf *.UDDF)")); } else if (ui->exportCSV->isChecked()) { stylesheet = "xml2csv.xslt"; - filename = QFileDialog::getSaveFileName(this, tr("Export CSV File as"), lastDir, + filename = QFileDialog::getSaveFileName(this, tr("Export CSV file as"), lastDir, tr("CSV files (*.csv *.CSV)")); } else if (ui->exportDivelogs->isChecked()) { DivelogsDeWebServices::instance()->prepareDivesForUpload(ui->exportSelected->isChecked()); } else if (ui->exportWorldMap->isChecked()) { - filename = QFileDialog::getSaveFileName(this, tr("Export World Map"), lastDir, + filename = QFileDialog::getSaveFileName(this, tr("Export world map"), lastDir, tr("HTML files (*.html)")); if (!filename.isNull() && !filename.isEmpty()) export_worldmap_HTML(filename.toUtf8().data(), ui->exportSelected->isChecked()); |