diff options
author | Martin Měřinský <mermar@centrum.cz> | 2017-03-06 13:12:27 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2017-03-11 08:09:07 -0800 |
commit | af219af9ba9a8b4a1446f3f807b8cf2a5b03c085 (patch) | |
tree | b157e4a3d0afb6b8aac710cb58883e6126790e08 | |
parent | a9d361574ea99b2b02ebb7b96aab4d71d1e53842 (diff) | |
download | subsurface-af219af9ba9a8b4a1446f3f807b8cf2a5b03c085.tar.gz |
Cyl > Cylinder
-rw-r--r-- | qt-models/divetripmodel.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/qt-models/divetripmodel.cpp b/qt-models/divetripmodel.cpp index 20bdc3666..677a2cf97 100644 --- a/qt-models/divetripmodel.cpp +++ b/qt-models/divetripmodel.cpp @@ -232,7 +232,7 @@ QVariant DiveItem::data(int column, int role) const retVal = tr("Suit"); break; case CYLINDER: - retVal = tr("Cyl"); + retVal = tr("Cylinder"); break; case GAS: retVal = tr("Gas"); @@ -454,7 +454,7 @@ QVariant DiveTripModel::headerData(int section, Qt::Orientation orientation, int ret = tr("Suit"); break; case CYLINDER: - ret = tr("Cyl"); + ret = tr("Cylinder"); break; case GAS: ret = tr("Gas"); @@ -503,7 +503,7 @@ QVariant DiveTripModel::headerData(int section, Qt::Orientation orientation, int ret = tr("Suit"); break; case CYLINDER: - ret = tr("Cyl"); + ret = tr("Cylinder"); break; case GAS: ret = tr("Gas"); |