diff options
author | Tim Wootton <tim@tee-jay.demon.co.uk> | 2015-01-26 06:51:17 +0000 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-01-26 07:25:37 -0800 |
commit | d329420d5549e02e32ff4673513329f9dc30650f (patch) | |
tree | 6ce48d00ccfe60101b22358f21eded9ffeb1acc7 /qt-ui | |
parent | 73ffbdebe49cc3c4eb28ccf6e632792227a59db3 (diff) | |
download | subsurface-d329420d5549e02e32ff4673513329f9dc30650f.tar.gz |
Typos, punctuation and capitalisation.
Signed-off-by: Tim Wootton <tim@tee-jay.demon.co.uk>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui')
-rw-r--r-- | qt-ui/divelogimportdialog.cpp | 4 | ||||
-rw-r--r-- | qt-ui/downloadfromdivecomputer.ui | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/qt-ui/divelogimportdialog.cpp b/qt-ui/divelogimportdialog.cpp index 1b37258b2..26b6b2d53 100644 --- a/qt-ui/divelogimportdialog.cpp +++ b/qt-ui/divelogimportdialog.cpp @@ -23,7 +23,7 @@ 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 pressure") << tr("Max depth") << tr("Avg depth") << tr("Divemaster") << tr("Buddy") << tr("Notes") << tr("Tags") << tr("Air temp.") << tr("Water temp.") << + 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"); } @@ -486,7 +486,7 @@ void DiveLogImportDialog::loadFileContents(int value, whatChanged triggeredBy) 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()) - headers.replace(CSVApps[value].pressure, tr("Samples pressure")); + headers.replace(CSVApps[value].pressure, tr("Sample pressure")); } f.reset(); diff --git a/qt-ui/downloadfromdivecomputer.ui b/qt-ui/downloadfromdivecomputer.ui index 8d3f5c1dc..359b42fae 100644 --- a/qt-ui/downloadfromdivecomputer.ui +++ b/qt-ui/downloadfromdivecomputer.ui @@ -207,7 +207,7 @@ </sizepolicy> </property> <property name="text"> - <string>Downloaded Dives</string> + <string>Downloaded dives</string> </property> </widget> </item> |