aboutsummaryrefslogtreecommitdiffstats
path: root/qt-ui/profile
diff options
context:
space:
mode:
authorGravatar Tim Wootton <tim@tee-jay.demon.co.uk>2015-01-26 06:51:19 +0000
committerGravatar Dirk Hohndel <dirk@hohndel.org>2015-01-26 07:28:03 -0800
commitc38eaf68e98a2ede308a6406365a15bb7a92c32e (patch)
tree43113a8f9b6a8b4aba76c5aa8db38a0abcffa249 /qt-ui/profile
parent04749d68630420ffade6f30afca043fe451bc10c (diff)
downloadsubsurface-c38eaf68e98a2ede308a6406365a15bb7a92c32e.tar.gz
Change mean depth/s to mean depth @ s
Mean depth/s sounds too much like a rate of change but this referers to instantaneus mean depth at a time. Signed-off-by: Tim Wootton <tim@tee-jay.demon.co.uk> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/profile')
-rw-r--r--qt-ui/profile/diveplotdatamodel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-ui/profile/diveplotdatamodel.cpp b/qt-ui/profile/diveplotdatamodel.cpp
index a4d1a90e9..b09f026bb 100644
--- a/qt-ui/profile/diveplotdatamodel.cpp
+++ b/qt-ui/profile/diveplotdatamodel.cpp
@@ -148,7 +148,7 @@ QVariant DivePlotDataModel::headerData(int section, Qt::Orientation orientation,
case GFLINE:
return tr("Gradient factor");
case INSTANT_MEANDEPTH:
- return tr("Mean depth/s");
+ return tr("Mean depth @ s");
}
if (role == Qt::DisplayRole && section >= TISSUE_1 && section <= TISSUE_16) {
return QString("Ceiling: %1").arg(section - TISSUE_1);