X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=HomeScreen%2Fqml%2FShortcutArea.qml;h=e2afc5389ab51b0ec34a81f9d044f6a5d342323a;hb=c5f5ce84f3991b02bdd9472d63b56fdbaf1a6c65;hp=d9931cb93f5df49d44075cb776da36352ef7296c;hpb=4f911d73e2a9a18c3d273b5deb3f1fc952ee68d2;p=staging%2FHomeScreen.git diff --git a/HomeScreen/qml/ShortcutArea.qml b/HomeScreen/qml/ShortcutArea.qml index d9931cb..e2afc53 100644 --- a/HomeScreen/qml/ShortcutArea.qml +++ b/HomeScreen/qml/ShortcutArea.qml @@ -29,21 +29,37 @@ Item { ListElement { name: 'Home' application: 'home@0.1' + label: 'HOME' } ListElement { name: 'Multimedia' application: 'mediaplayer@0.1' + label: 'MULTIMEDIA' } ListElement { name: 'HVAC' application: 'hvac@0.1' + label: 'HVAC' } ListElement { name: 'Navigation' application: 'controls@0.1' + label: 'NAVIGATION' + } + } + function languageChanged(lang) { + if(lang === "fr") { + applicationModel.setProperty(0, "label", 'ACCEUIL') + applicationModel.setProperty(1, "label", 'MULTIMÉDIA') + applicationModel.setProperty(2, "label", 'CLIMATISATION') + applicationModel.setProperty(3, "label", 'NAVIGATION') + } else { + applicationModel.setProperty(0, "label", 'HOME') + applicationModel.setProperty(1, "label", 'MULTIMEDIA') + applicationModel.setProperty(2, "label", 'HVAC') + applicationModel.setProperty(3, "label", 'NAVIGATION') } } - property int currentIndex: -1 // TODO: to be moved to whereever right property int pid: -1