diff options
author | Lubomir I. Ivanov <neolit123@gmail.com> | 2015-01-25 17:03:17 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-01-25 07:36:08 -0800 |
commit | 656d23fa930b7d9781cea1e7ac5437729df6689c (patch) | |
tree | 5c4639c7c1fd4f7c1af4d309391dadf1a44c698c | |
parent | 5c3d95770c6761d6976b33a4fce1c7b841231493 (diff) | |
download | subsurface-656d23fa930b7d9781cea1e7ac5437729df6689c.tar.gz |
Typos: capitalize TTS, CNS, NDL in diveloginportdialog.cpp
Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r-- | qt-ui/divelogimportdialog.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/qt-ui/divelogimportdialog.cpp b/qt-ui/divelogimportdialog.cpp index 9fa5ca994..1b37258b2 100644 --- a/qt-ui/divelogimportdialog.cpp +++ b/qt-ui/divelogimportdialog.cpp @@ -24,8 +24,8 @@ ColumnNameProvider::ColumnNameProvider(QObject *parent) : QAbstractListModel(par { columnNames << tr("Dive #") << tr("Date") << tr("Time") << tr("Duration") << tr("Location") << tr("GPS") << tr("Weight") << tr("Cyl. size") << tr("Start pressure") << tr("End pressure") << tr("Max depth") << tr("Avg depth") << tr("Divemaster") << tr("Buddy") << tr("Notes") << tr("Tags") << tr("Air temp.") << tr("Water temp.") << - tr("O₂") << tr("He") << tr("Sample time") << tr("Sample depth") << tr("Sample temperature") << tr("Sample pO₂") << tr("Sample cns") << tr("Sample ndl") << - tr("Sample tts") << tr("Sample stopdepth") << tr("Sample pressure"); + tr("O₂") << tr("He") << tr("Sample time") << tr("Sample depth") << tr("Sample temperature") << tr("Sample pO₂") << tr("Sample CNS") << tr("Sample NDL") << + tr("Sample TTS") << tr("Sample stopdepth") << tr("Sample pressure"); } bool ColumnNameProvider::insertRows(int row, int count, const QModelIndex &parent) @@ -478,11 +478,11 @@ void DiveLogImportDialog::loadFileContents(int value, whatChanged triggeredBy) if (CSVApps[value].po2 != -1 && CSVApps[value].po2 < currColumns.count()) headers.replace(CSVApps[value].po2, tr("Sample pO₂")); if (CSVApps[value].cns != -1 && CSVApps[value].cns < currColumns.count()) - headers.replace(CSVApps[value].cns, tr("Sample cns")); + headers.replace(CSVApps[value].cns, tr("Sample CNS")); if (CSVApps[value].ndl != -1 && CSVApps[value].ndl < currColumns.count()) - headers.replace(CSVApps[value].ndl, tr("Sample ndl")); + headers.replace(CSVApps[value].ndl, tr("Sample NDL")); if (CSVApps[value].tts != -1 && CSVApps[value].tts < currColumns.count()) - headers.replace(CSVApps[value].tts, tr("Sample tts")); + headers.replace(CSVApps[value].tts, tr("Sample TTS")); if (CSVApps[value].stopdepth != -1 && CSVApps[value].stopdepth < currColumns.count()) headers.replace(CSVApps[value].stopdepth, tr("Sample stopdepth")); if (CSVApps[value].pressure != -1 && CSVApps[value].pressure < currColumns.count()) |