diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2015-01-07 15:09:24 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-01-07 15:09:24 -0800 |
commit | e3aebfdd6664f2b5127894c82364fea466b27027 (patch) | |
tree | afe9dee0c66a44f3ccb092e969c762669cc4653f | |
parent | b08b32af2c6c34fb0b17a6479b72e27a6301027b (diff) | |
download | subsurface-e3aebfdd6664f2b5127894c82364fea466b27027.tar.gz |
CSV import UI: Minor update to strings
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r-- | qt-ui/divelogimportdialog.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qt-ui/divelogimportdialog.cpp b/qt-ui/divelogimportdialog.cpp index 108de0f6b..e622c1427 100644 --- a/qt-ui/divelogimportdialog.cpp +++ b/qt-ui/divelogimportdialog.cpp @@ -16,12 +16,12 @@ static QString subsurface_index = "subsurface/csvindex"; const DiveLogImportDialog::CSVAppConfig DiveLogImportDialog::CSVApps[CSVAPPS] = { // time, depth, temperature, po2, cns, ndl, tts, stopdepth, pressure - { "Manual Import", }, + { "Manual import", }, { "APD Log Viewer", 1, 2, 16, 7, 18, -1, -1, 19, -1, "Tab" }, { "XP5", 1, 2, 10, -1, -1, -1, -1, -1, -1, "Tab" }, { "SensusCSV", 10, 11, -1, -1, -1, -1, -1, -1, -1, "," }, { "Seabear CSV", 1, 2, 6, -1, -1, 3, 4, 5, 7, ";" }, - { "SubsurfaceCSV", -1, -1, -1, -1, -1, -1, -1, -1, -1, "," }, + { "Subsurface CSV", -1, -1, -1, -1, -1, -1, -1, -1, -1, "," }, { NULL, } }; |