Rename list column from O2% to Gas

In the dive list, calling the column O2% is kinda wrong, because in
at least my dive list there are both air and trimix showing up, so this
renames that column to Gas.

Signed-off-by: Anton Lundin <glance@acc.umu.se>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Anton Lundin 2014-07-20 15:07:55 +02:00 committed by Dirk Hohndel
parent b54032df75
commit e07d23f806

View file

@ -1339,7 +1339,7 @@ QVariant DiveTripModel::headerData(int section, Qt::Orientation orientation, int
ret = tr("Cyl");
break;
case NITROX:
ret = QString("O%1%").arg(UTF8_SUBSCRIPT_2);
ret = tr("Gas");
break;
case SAC:
ret = tr("SAC");