Commit 9ac9b3aa authored by Tomaz Canabrava's avatar Tomaz Canabrava

Continue the preparation to localization

Add support for localization in the QML's on the Common folder.
Signed-off-by: 's avatarTomaz Canabrava <tomaz.canabrava@intel.com>
parent e8b042e4
...@@ -30,23 +30,23 @@ FactPanel { ...@@ -30,23 +30,23 @@ FactPanel {
anchors.fill: parent anchors.fill: parent
anchors.margins: 8 anchors.margins: 8
VehicleSummaryRow { VehicleSummaryRow {
labelText: "Firmware Version:" labelText: qsTr("Firmware Version:")
valueText: esp8266.version valueText: esp8266.version
} }
VehicleSummaryRow { VehicleSummaryRow {
labelText: "WiFi Channel:" labelText: qsTr("WiFi Channel:")
valueText: wifiChannel ? wifiChannel.valueString : "" valueText: wifiChannel ? wifiChannel.valueString : ""
} }
VehicleSummaryRow { VehicleSummaryRow {
labelText: "WiFi SSID:" labelText: qsTr("WiFi SSID:")
valueText: esp8266.wifiSSID valueText: esp8266.wifiSSID
} }
VehicleSummaryRow { VehicleSummaryRow {
labelText: "WiFi Password:" labelText: qsTr("WiFi Password:")
valueText: esp8266.wifiPassword valueText: esp8266.wifiPassword
} }
VehicleSummaryRow { VehicleSummaryRow {
labelText: "UART Baud Rate:" labelText: qsTr("UART Baud Rate:")
valueText: uartBaud ? uartBaud.valueString : "" valueText: uartBaud ? uartBaud.valueString : ""
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment