diff options
author | Miika Turkia <miika.turkia@gmail.com> | 2014-12-29 17:45:28 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-12-29 09:25:28 -0800 |
commit | 175ee84cc5f83eb7ee4bcac67ca6526d2f9a7f07 (patch) | |
tree | 06179d3669a0cf194a7e598ec5b09afd7695d6d8 /qt-ui/divelogexportdialog.cpp | |
parent | ed91a6373ccd928ce9e8ab2935bebc157cda7753 (diff) | |
download | subsurface-175ee84cc5f83eb7ee4bcac67ca6526d2f9a7f07.tar.gz |
Description of CSV detail export
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, 2 insertions, 0 deletions
diff --git a/qt-ui/divelogexportdialog.cpp b/qt-ui/divelogexportdialog.cpp index a237c9941..ab6f3884c 100644 --- a/qt-ui/divelogexportdialog.cpp +++ b/qt-ui/divelogexportdialog.cpp @@ -76,6 +76,8 @@ void DiveLogExportDialog::showExplanation() 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.")); + } 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()) { ui->description->setText(tr("Send the dive data to divelogs.de website.")); } else if (ui->exportDiveshare->isChecked()) { |