diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2015-01-06 20:21:51 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-01-06 20:21:51 -0800 |
commit | f42b986474b47bfcef78931c7744bb16f96c282e (patch) | |
tree | 84e4421c6c8259cbc42b322e474d90f57e79468f /qt-ui | |
parent | e544796199eb3ec3f12566b471bc60de1b3573f6 (diff) | |
download | subsurface-f42b986474b47bfcef78931c7744bb16f96c282e.tar.gz |
Adjust capitalization to our style
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui')
-rw-r--r-- | qt-ui/divelogimportdialog.cpp | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/qt-ui/divelogimportdialog.cpp b/qt-ui/divelogimportdialog.cpp index df1be75db..ebd46f2d3 100644 --- a/qt-ui/divelogimportdialog.cpp +++ b/qt-ui/divelogimportdialog.cpp @@ -26,8 +26,8 @@ const DiveLogImportDialog::CSVAppConfig DiveLogImportDialog::CSVApps[CSVAPPS] = ColumnNameProvider::ColumnNameProvider(QObject *parent) : QAbstractListModel(parent) { - columnNames << tr("Dive #") << tr("Date") << tr("Time") << tr("Duration") << tr("Location") << tr("GPS") << tr("Weight") << tr("Cyl size") << tr("Start Pressure") - << tr("End Press") << tr("Max depth") << tr("Mean depth") << tr("Buddy") << tr("Notes") << tr("Tags") << tr("Air temp") << tr("Water temp") + columnNames << tr("Dive #") << tr("Date") << tr("Time") << tr("Duration") << tr("Location") << tr("GPS") << tr("Weight") << tr("Cyl. size") << tr("Start pressure") + << tr("End press") << tr("Max depth") << tr("Mean depth") << tr("Divemaster") << tr("Buddy") << tr("Notes") << tr("Tags") << tr("Air temp.") << tr("Water temp.") << tr("O₂") << tr("He"); } @@ -361,13 +361,13 @@ void DiveLogImportDialog::on_buttonBox_accepted() if (ui->knownImports->currentText() == "Seabear CSV") { parse_seabear_csv_file(fileNames[i].toUtf8().data(), r.indexOf(tr("Time")), - r.indexOf(tr("Max Depth")), - r.indexOf(tr("Water temp")), + r.indexOf(tr("Max depth")), + r.indexOf(tr("Water temp.")), r.indexOf(tr("PO₂")), r.indexOf(tr("CNS")), r.indexOf(tr("NDL")), r.indexOf(tr("TTS")), - r.indexOf(tr("Stopped Depth")), + r.indexOf(tr("Stopped depth")), r.indexOf(tr("Pressure")), ui->CSVSeparator->currentIndex(), specialCSV.contains(ui->knownImports->currentIndex()) ? CSVApps[ui->knownImports->currentIndex()].name.toUtf8().data() : "csv", @@ -384,13 +384,13 @@ void DiveLogImportDialog::on_buttonBox_accepted() } else { parse_csv_file(fileNames[i].toUtf8().data(), r.indexOf(tr("Time")), - r.indexOf(tr("Max Depth")), - r.indexOf(tr("Water temp")), + r.indexOf(tr("Max depth")), + r.indexOf(tr("Water temp.")), r.indexOf(tr("PO₂")), r.indexOf(tr("CNS")), r.indexOf(tr("NDL")), r.indexOf(tr("TTS")), - r.indexOf(tr("Stopped Depth")), + r.indexOf(tr("Stopped depth")), r.indexOf(tr("Pressure")), ui->CSVSeparator->currentIndex(), specialCSV.contains(ui->knownImports->currentIndex()) ? CSVApps[ui->knownImports->currentIndex()].name.toUtf8().data() : "csv", @@ -418,13 +418,13 @@ void DiveLogImportDialog::on_buttonBox_accepted() r.indexOf(tr("Notes")), r.indexOf(tr("Weight")), r.indexOf(tr("Tags")), - r.indexOf(tr("Cyl size")), - r.indexOf(tr("Start Pressure")), - r.indexOf(tr("End Pressure")), + r.indexOf(tr("Cyl. size")), + r.indexOf(tr("Start pressure")), + r.indexOf(tr("End pressure")), r.indexOf(tr("O₂")), r.indexOf(tr("He")), - r.indexOf(tr("Air Temp")), - r.indexOf(tr("Water Temp")) + r.indexOf(tr("Air temp.")), + r.indexOf(tr("Water temp.")) ); } } |