diff options
author | Lubomir I. Ivanov <neolit123@gmail.com> | 2015-01-27 17:06:13 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-01-27 07:21:49 -0800 |
commit | 66fdb2b89d0697f64003cf98f02e9ec5b5d2209e (patch) | |
tree | fc9c81d7ab5ea3685920f8e21fba71f831afad26 /qt-ui/profile | |
parent | dee91a96aa72c053c7fde60f1567a01bce88bd44 (diff) | |
download | subsurface-66fdb2b89d0697f64003cf98f02e9ec5b5d2209e.tar.gz |
diveplotdatamodel.cpp: use space before sensor index
the manual uses "Sensor 1:", not sure if it breaks anything.
Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/profile')
-rw-r--r-- | qt-ui/profile/diveplotdatamodel.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/qt-ui/profile/diveplotdatamodel.cpp b/qt-ui/profile/diveplotdatamodel.cpp index b09f026bb..3b3a288b6 100644 --- a/qt-ui/profile/diveplotdatamodel.cpp +++ b/qt-ui/profile/diveplotdatamodel.cpp @@ -136,11 +136,11 @@ QVariant DivePlotDataModel::headerData(int section, Qt::Orientation orientation, case O2SETPOINT: return tr("Setpoint"); case CCRSENSOR1: - return tr("Sensor1"); + return tr("Sensor 1"); case CCRSENSOR2: - return tr("Sensor2"); + return tr("Sensor 2"); case CCRSENSOR3: - return tr("Sensor3"); + return tr("Sensor 3"); case AMBPRESSURE: return tr("Ambient pressure"); case HEARTBEAT: |