Index: sources/gui/qml/pages/pretreatment/PreTreatmentWaterSample.qml =================================================================== diff -u -r4a2b83dcb56555861d2c741a8e8894e5b07e24bf -ra7aab61ca63538c37b6931c60252680fc2ec2416 --- sources/gui/qml/pages/pretreatment/PreTreatmentWaterSample.qml (.../PreTreatmentWaterSample.qml) (revision 4a2b83dcb56555861d2c741a8e8894e5b07e24bf) +++ sources/gui/qml/pages/pretreatment/PreTreatmentWaterSample.qml (.../PreTreatmentWaterSample.qml) (revision a7aab61ca63538c37b6931c60252680fc2ec2416) @@ -107,7 +107,9 @@ WaterSampleContainer { id: _failContainer imageSource : "qrc:/images/iWaterSampleFail" buttonText : qsTr("Fail") - description : qsTr("Chlorine level > 0.1 %1").arg(Variables.unitTextChlorine) + description : ("%1 > %2 %3").arg(qsTr("Chlorine level")) + .arg(Variables.chlorineLevel) + .arg(Variables.unitTextChlorine) onClicked :{ _failContainer.selected = true _passContainer.selected = false @@ -117,7 +119,9 @@ WaterSampleContainer { id: _passContainer imageSource : "qrc:/images/iWaterSamplePass" buttonText : qsTr("Pass") - description : qsTr("Chlorine level ≤ 0.1 %1").arg(Variables.unitTextChlorine) + description : ("%1 ≤ %2 %3").arg(qsTr("Chlorine level")) + .arg(Variables.chlorineLevel) + .arg(Variables.unitTextChlorine) onClicked :{ _failContainer.selected = false _passContainer.selected = true