diff options
author | Anton Lundin <glance@acc.umu.se> | 2014-11-20 21:02:37 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-11-20 14:32:15 -0800 |
commit | 72c47a856edea0ab4b7900ad2db4b0702d3afdf2 (patch) | |
tree | 09d2fcfc0e4230dab987826197f3275e1a61e119 | |
parent | 2f7a7f3e6ac3d741bebd9e31f63d0bcf3f237774 (diff) | |
download | subsurface-72c47a856edea0ab4b7900ad2db4b0702d3afdf2.tar.gz |
Adjust Poseidon Mouth piece event strings
After some feedback on the mailing list, these strings where preferred.
Signed-off-by: Anton Lundin <glance@acc.umu.se>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r-- | file.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -597,23 +597,23 @@ int parse_txt_file(const char *filename, const char *csv) case 3: switch (type) { case 0: - //MouthPiece position event: 0=OC, 1=CC, 2=UN, 3=NC + //Mouth piece position event: 0=OC, 1=CC, 2=UN, 3=NC switch (value) { case 0: add_event(dc, cur_sampletime, 0, 0, 0, - QT_TRANSLATE_NOOP("gettextFromC", "MouthPiece position OC")); + QT_TRANSLATE_NOOP("gettextFromC", "Mouth piece position OC")); break; case 1: add_event(dc, cur_sampletime, 0, 0, 0, - QT_TRANSLATE_NOOP("gettextFromC", "MouthPiece position CC")); + QT_TRANSLATE_NOOP("gettextFromC", "Mouth piece position CC")); break; case 2: add_event(dc, cur_sampletime, 0, 0, 0, - QT_TRANSLATE_NOOP("gettextFromC", "MouthPiece position UN")); + QT_TRANSLATE_NOOP("gettextFromC", "Mouth piece position unknown")); break; case 3: add_event(dc, cur_sampletime, 0, 0, 0, - QT_TRANSLATE_NOOP("gettextFromC", "MouthPiece position NC")); + QT_TRANSLATE_NOOP("gettextFromC", "Mouth piece position not connected")); break; } case 3: |