Index: sources/gui/qml/components/ConfirmTreatmentTable.qml =================================================================== diff -u -r27cc308ff5113a9386899d3c8f8b29962a8498e1 -re8df7fe7fe6274c416f176369250b9581e07d2a5 --- sources/gui/qml/components/ConfirmTreatmentTable.qml (.../ConfirmTreatmentTable.qml) (revision 27cc308ff5113a9386899d3c8f8b29962a8498e1) +++ sources/gui/qml/components/ConfirmTreatmentTable.qml (.../ConfirmTreatmentTable.qml) (revision e8df7fe7fe6274c416f176369250b9581e07d2a5) @@ -100,15 +100,29 @@ anchors.bottom: parent.bottom width: parent.width - 2*Variables.createTreatmentMargin height: _root.height - _header.height - prescriptionKeys : vTreatmentCreate.doGetPrescriptionParameterNames() + prescriptionKeys : [ qsTr("Blood Flow Rate" ), + qsTr("Dialysate Flow Rate" ), + qsTr("Duration" ), + qsTr("Heparin Dispensing Rate" ), + qsTr("Heparin Bolus Volume" ), + qsTr("Heparin Stop Time" ), + qsTr("Saline Bolus Volume" )] + operatingKeys : [ qsTr("Heparin Type" ), + qsTr("Acid Concentrate" ), + qsTr("Bicarbonate Concentrate" ), + qsTr("Dialyzer Type" ), + qsTr("Dialysate Temperature" ), + qsTr("Arterial Pressure Limit Low" ), + qsTr("Arterial Pressure Limit High" ), + qsTr("Venous Pressure Limit Low" ), + qsTr("Venous Pressure Limit High" ), + qsTr("Blood Pressure Measure Interval" ), + qsTr("Rinseback Rate" )] prescriptionValues : vTreatmentCreate.doGetPrescriptionParameterValues() - operatingKeys : vTreatmentCreate.doGetOperatingParameterNames() operatingValues : vTreatmentCreate.doGetOperatingParameterValues() onVisibleChanged: { if (visible) { - prescriptionKeys = vTreatmentCreate.doGetPrescriptionParameterNames() prescriptionValues = vTreatmentCreate.doGetPrescriptionParameterValues() - operatingKeys = vTreatmentCreate.doGetOperatingParameterNames() operatingValues = vTreatmentCreate.doGetOperatingParameterValues() } }