diff --git a/gui/qml/PageBatteryChargeryBMS.qml b/gui/qml/PageBatteryChargeryBMS.qml index 1b46a95..4575379 100644 --- a/gui/qml/PageBatteryChargeryBMS.qml +++ b/gui/qml/PageBatteryChargeryBMS.qml @@ -56,7 +56,7 @@ MbPage { } MbItemRow { - description: qsTr("Data Updated") + description: qsTr("Data Timestamp") values: [ MbTextBlock { item { bind: service.path("/Info/UpdateTimestamp"); } width: 215; height: 25 } ] diff --git a/gui/qml/PageBatteryChargeryBMSImpedances.qml b/gui/qml/PageBatteryChargeryBMSImpedances.qml index e6a51f4..f3b1adb 100644 --- a/gui/qml/PageBatteryChargeryBMSImpedances.qml +++ b/gui/qml/PageBatteryChargeryBMSImpedances.qml @@ -7,7 +7,7 @@ MbPage { property string bindPrefix property BatteryDetails details: BatteryDetails { bindPrefix: root.bindPrefix } - title: service.description + " Impedances" + title: service.description + " | Impedances" model: VisualItemModel { @@ -21,7 +21,7 @@ MbPage { } MbItemRow { - description: qsTr("Impedances Min|Max|Sum") + description: qsTr("Min|Max|Sum") values: [ MbTextBlock { item { bind: service.path("/Impedances/Min"); } width: 70; height: 25 }, MbTextBlock { item { bind: service.path("/Impedances/Max"); } width: 70; height: 25 }, @@ -48,7 +48,7 @@ MbPage { } MbItemRow { - description: qsTr("Impedances Data Updated") + description: qsTr("Data Timestamp") values: [ MbTextBlock { item { bind: service.path("/Impedances/UpdateTimestamp"); } width: 215; height: 25 } ] diff --git a/gui/qml/PageBatteryChargeryBMSVoltages.qml b/gui/qml/PageBatteryChargeryBMSVoltages.qml index df8daa3..4220a62 100644 --- a/gui/qml/PageBatteryChargeryBMSVoltages.qml +++ b/gui/qml/PageBatteryChargeryBMSVoltages.qml @@ -7,12 +7,12 @@ MbPage { property string bindPrefix property BatteryDetails details: BatteryDetails { bindPrefix: root.bindPrefix } - title: service.description + " Voltages" + title: service.description + " | Voltages" model: VisualItemModel { MbItemRow { - description: qsTr("Voltages Min|Max|Diff") + description: qsTr("Min|Max|Diff") values: [ MbTextBlock { item { bind: service.path("/Voltages/Min"); } width: 70; height: 25 }, MbTextBlock { item { bind: service.path("/Voltages/Max"); } width: 70; height: 25 }, @@ -46,7 +46,7 @@ MbPage { } MbItemRow { - description: qsTr("Voltages Data Updated") + description: qsTr("Data Timestamp") values: [ MbTextBlock { item { bind: service.path("/Voltages/UpdateTimestamp"); } width: 215; height: 25 } ]