mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
More strings to translate for statistics tab
Signed-off-by: Sergey Starosek <sergey.starosek@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
f0e17e6fff
commit
dcca755343
1 changed files with 2 additions and 2 deletions
|
@ -542,11 +542,11 @@ void MainTab::updateDiveInfo(bool clear)
|
||||||
* it is used.
|
* it is used.
|
||||||
*/
|
*/
|
||||||
if (he_tot.mliter || o2_tot.mliter) {
|
if (he_tot.mliter || o2_tot.mliter) {
|
||||||
gasUsedString.append(QString("These gases could be\nmixed from Air and using:\n"));
|
gasUsedString.append(tr("These gases could be\nmixed from Air and using:\n"));
|
||||||
if (he_tot.mliter)
|
if (he_tot.mliter)
|
||||||
gasUsedString.append(QString("He: %1").arg(get_volume_string(he_tot, true)));
|
gasUsedString.append(QString("He: %1").arg(get_volume_string(he_tot, true)));
|
||||||
if (he_tot.mliter && o2_tot.mliter)
|
if (he_tot.mliter && o2_tot.mliter)
|
||||||
gasUsedString.append(QString(" and "));
|
gasUsedString.append(tr(" and "));
|
||||||
if (o2_tot.mliter)
|
if (o2_tot.mliter)
|
||||||
gasUsedString.append(QString("O2: %2\n").arg(get_volume_string(o2_tot, true)));
|
gasUsedString.append(QString("O2: %2\n").arg(get_volume_string(o2_tot, true)));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue