X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;ds=sidebyside;f=app%2FHVAC.qml;h=7710589484873793d24c248efc05336c01aea956;hb=8363df0356c20c92f6dae175b3c8b83b1032e6ff;hp=41cf7fa3a98f379928140cb3bfa3aaea355de7e8;hpb=45a90600c28111cdf0a358390c0082d6785d7f6a;p=apps%2Fhvac.git diff --git a/app/HVAC.qml b/app/HVAC.qml index 41cf7fa..7710589 100644 --- a/app/HVAC.qml +++ b/app/HVAC.qml @@ -18,11 +18,17 @@ import QtQuick 2.6 import QtQuick.Layouts 1.1 import QtQuick.Controls 2.0 import AGL.Demo.Controls 1.0 +import Translator 1.0 import 'api' as API ApplicationWindow { id: root + Translator { + id: translator + language: 'en_US' + } + API.Binding { id: binding url: bindingAddress @@ -57,7 +63,7 @@ ApplicationWindow { anchors.left: fanSpeedSlider.left anchors.top: fanSpeedSlider.bottom font.pixelSize: 32 - text: 'FAN SPEED' + text: translator.translate(qsTr('FAN SPEED'), translator.language) } } } @@ -74,7 +80,6 @@ ApplicationWindow { side: 'Left' } HeatDegree { - enabled: leftSeat.headLevel > 0 onCurrentItemChanged: { console.log("Left Temp changed",degree) binding.leftTemperature = degree @@ -89,8 +94,8 @@ ApplicationWindow { offImage: './images/HMI_HVAC_Inactive.svg' Label { anchors.centerIn: parent - color: parent.checked ? '#66FF99' : '#848286' - text: 'A/C' + color: parent.checked ? '#00ADDC' : '#848286' + text: translator.translate(qsTr('A/C'), translator.language) font.pixelSize: parent.height / 3 } onCheckedChanged: { @@ -102,8 +107,8 @@ ApplicationWindow { offImage: './images/HMI_HVAC_Inactive.svg' Label { anchors.centerIn: parent - color: parent.checked ? '#66FF99' : '#848286' - text: 'AUTO' + color: parent.checked ? '#00ADDC' : '#848286' + text: translator.translate(qsTr('AUTO'), translator.language) font.pixelSize: parent.height / 3 } onCheckedChanged: { @@ -127,7 +132,6 @@ ApplicationWindow { side: 'Right' } HeatDegree { - enabled: rightSeat.headLevel > 0 onCurrentItemChanged: { console.log("Right Temp changed",degree) binding.rightTemperature = degree