diff options
author | Miika Turkia <miika.turkia@gmail.com> | 2014-12-29 17:45:29 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-12-29 09:25:33 -0800 |
commit | adb5cc5d306f11f8b3749259623ce6aae616f532 (patch) | |
tree | 39144e383564c8ae29e74eced165de3808c8e29b /qt-ui/divelogexportdialog.cpp | |
parent | 175ee84cc5f83eb7ee4bcac67ca6526d2f9a7f07 (diff) | |
download | subsurface-adb5cc5d306f11f8b3749259623ce6aae616f532.tar.gz |
Highlight that this CSV export is about dive profile.
Signed-off-by: Miika Turkia <miika.turkia@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/divelogexportdialog.cpp')
-rw-r--r-- | qt-ui/divelogexportdialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-ui/divelogexportdialog.cpp b/qt-ui/divelogexportdialog.cpp index ab6f3884c..d168ebe25 100644 --- a/qt-ui/divelogexportdialog.cpp +++ b/qt-ui/divelogexportdialog.cpp @@ -75,7 +75,7 @@ void DiveLogExportDialog::showExplanation() if (ui->exportUDDF->isChecked()) { ui->description->setText(tr("Generic format that is used for data exchange between a variety of diving related programs.")); } else if (ui->exportCSV->isChecked()) { - ui->description->setText(tr("Comma separated values that include the most relevant information of the dive profile.")); + ui->description->setText(tr("Comma separated values describing the dive profile.")); } else if (ui->exportCSVDetails->isChecked()) { ui->description->setText(tr("Comma separated values of the dive information. This includes most of the dive details but no profile information.")); } else if (ui->exportDivelogs->isChecked()) { |