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 {
anchors.fill: parent
anchors.margins: 8
VehicleSummaryRow {
labelText: "Firmware Version:"
labelText: qsTr("Firmware Version:")
valueText: esp8266.version
}
VehicleSummaryRow {
labelText: "WiFi Channel:"
labelText: qsTr("WiFi Channel:")
valueText: wifiChannel ? wifiChannel.valueString : ""
}
VehicleSummaryRow {
labelText: "WiFi SSID:"
labelText: qsTr("WiFi SSID:")
valueText: esp8266.wifiSSID
}
VehicleSummaryRow {
labelText: "WiFi Password:"
labelText: qsTr("WiFi Password:")
valueText: esp8266.wifiPassword
}
VehicleSummaryRow {
labelText: "UART Baud Rate:"
labelText: qsTr("UART Baud Rate:")
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