diff options
author | Lubomir I. Ivanov <neolit123@gmail.com> | 2015-01-27 17:06:11 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-01-27 07:21:17 -0800 |
commit | 96575b2366ba727c7a8ad0d7e3a33dbf40872246 (patch) | |
tree | f3015902da0fcf228840d22a4b6fa98b141f64d3 /qt-ui | |
parent | 6edc458e83c2daf446fb81a1fa3e5a3bfb06e533 (diff) | |
download | subsurface-96575b2366ba727c7a8ad0d7e3a33dbf40872246.tar.gz |
divelogimportdialog.cpp: more capitalization of acronyms
Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui')
-rw-r--r-- | qt-ui/divelogimportdialog.cpp | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/qt-ui/divelogimportdialog.cpp b/qt-ui/divelogimportdialog.cpp index 26b6b2d53..df69dc143 100644 --- a/qt-ui/divelogimportdialog.cpp +++ b/qt-ui/divelogimportdialog.cpp @@ -373,7 +373,7 @@ void DiveLogImportDialog::loadFileContents(int value, whatChanged triggeredBy) QString firstLine = f.readLine(); if (firstLine.contains("SEABEAR")) { seabear = true; - firstLine = "Sample time;Sample depth;Sample ndl;Sample tts;Sample stopdepth;Sample temperature;Sample pressure"; + firstLine = "Sample time;Sample depth;Sample NDL;Sample TTS;Sample stopdepth;Sample temperature;Sample pressure"; blockSignals(true); ui->knownImports->setCurrentText("Seabear CSV"); blockSignals(false); @@ -388,7 +388,7 @@ void DiveLogImportDialog::loadFileContents(int value, whatChanged triggeredBy) // Special handling for APD Log Viewer if (triggeredBy == KNOWNTYPES && value == 1) { - firstLine = "Sample time\tSample depth\t\t\t\t\tSample pO₂\t\t\t\t\t\t\t\t\tSample temperature\t\tSample cns\tSample stopdepth"; + firstLine = "Sample time\tSample depth\t\t\t\t\tSample pO₂\t\t\t\t\t\t\t\t\tSample temperature\t\tSample CNS\tSample stopdepth"; blockSignals(true); ui->CSVSeparator->setCurrentText(tr("Tab")); blockSignals(false); @@ -531,9 +531,9 @@ void DiveLogImportDialog::on_buttonBox_accepted() r.indexOf(tr("Sample depth")), r.indexOf(tr("Sample temperature")), r.indexOf(tr("Sample pO₂")), - r.indexOf(tr("Sample cns")), - r.indexOf(tr("Sample ndl")), - r.indexOf(tr("Sample tts")), + r.indexOf(tr("Sample CNS")), + r.indexOf(tr("Sample NDL")), + r.indexOf(tr("Sample TTS")), r.indexOf(tr("Sample stopdepth")), r.indexOf(tr("Sample pressure")), ui->CSVSeparator->currentIndex(), @@ -554,9 +554,9 @@ void DiveLogImportDialog::on_buttonBox_accepted() r.indexOf(tr("Sample depth")), r.indexOf(tr("Sample temperature")), r.indexOf(tr("Sample pO₂")), - r.indexOf(tr("Sample cns")), - r.indexOf(tr("Sample ndl")), - r.indexOf(tr("Sample tts")), + r.indexOf(tr("Sample CNS")), + r.indexOf(tr("Sample NDL")), + r.indexOf(tr("Sample TTS")), r.indexOf(tr("Sample stopdepth")), r.indexOf(tr("Sample pressure")), ui->CSVSeparator->currentIndex(), @@ -600,9 +600,9 @@ void DiveLogImportDialog::on_buttonBox_accepted() r.indexOf(tr("Sample depth")), r.indexOf(tr("Sample temperature")), r.indexOf(tr("Sample pO₂")), - r.indexOf(tr("Sample cns")), - r.indexOf(tr("Sample ndl")), - r.indexOf(tr("Sample tts")), + r.indexOf(tr("Sample CNS")), + r.indexOf(tr("Sample NDL")), + r.indexOf(tr("Sample TTS")), r.indexOf(tr("Sample stopdepth")), r.indexOf(tr("Sample pressure")), ui->CSVSeparator->currentIndex(), |