aboutsummaryrefslogtreecommitdiffstats
path: root/HomeScreen/qml/ShortcutArea.qml
diff options
context:
space:
mode:
authorPhilippe Lelong <lelong.ph@meltemus.com>2016-12-14 11:58:20 +0100
committerJosé Bollo <jose.bollo@iot.bzh>2016-12-20 13:28:35 +0100
commit15e7b5003a6590f780cb115fb2bdb526ce68defc (patch)
tree8b3708d6e2b464df55b0e8f6f199010ad7905907 /HomeScreen/qml/ShortcutArea.qml
parentc4242e92275d4309d3947ff28a7cd3b9f008d8c6 (diff)
Home screen translation changes
Signed-off-by: Philippe Lelong <lelong.ph@meltemus.com>
Diffstat (limited to 'HomeScreen/qml/ShortcutArea.qml')
-rw-r--r--HomeScreen/qml/ShortcutArea.qml19
1 files changed, 18 insertions, 1 deletions
diff --git a/HomeScreen/qml/ShortcutArea.qml b/HomeScreen/qml/ShortcutArea.qml
index 1d7dd92..092b034 100644
--- a/HomeScreen/qml/ShortcutArea.qml
+++ b/HomeScreen/qml/ShortcutArea.qml
@@ -28,19 +28,36 @@ Item {
id: applicationModel
ListElement {
name: 'Home'
- application: ''
+ 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: 'navigation@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')
}
}