diff options
| author | 2013-11-29 10:20:10 -0800 | |
|---|---|---|
| committer | 2013-11-29 10:20:10 -0800 | |
| commit | adf6d1e22d06cebcc7dc2a8a379618d8eb2df655 (patch) | |
| tree | 272cc0ec4f88a7d147f64cf08036e5f2be1db026 /qt-ui | |
| parent | b76a9478783ec3f5b4ee642c1af046960dacf798 (diff) | |
| download | subsurface-adf6d1e22d06cebcc7dc2a8a379618d8eb2df655.tar.gz | |
Units should be lower case
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui')
| -rw-r--r-- | qt-ui/models.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-ui/models.cpp b/qt-ui/models.cpp index b8909dadf..12e17c8e9 100644 --- a/qt-ui/models.cpp +++ b/qt-ui/models.cpp @@ -758,7 +758,7 @@ int TankInfoModel::rowCount(const QModelIndex& parent) const TankInfoModel::TankInfoModel() : rows(-1) { - setHeaderDataStrings( QStringList() << tr("Description") << tr("Ml") << tr("Bar")); + setHeaderDataStrings( QStringList() << tr("Description") << tr("ml") << tr("bar")); struct tank_info_t *info = tank_info; for (info = tank_info; info->name; info++, rows++){ QString infoName(info->name); |