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-16 09:08:31 +0100
commitdd7bb40b885efbde6ca7121194403857ef263208 (patch)
tree137b2ef02b0775090fa81b7ca426299f6be6bfae /HomeScreen/qml/ShortcutArea.qml
parenta8414c772521b330d950dedc7f5b25f8ebff6e23 (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.qml18
1 files changed, 17 insertions, 1 deletions
diff --git a/HomeScreen/qml/ShortcutArea.qml b/HomeScreen/qml/ShortcutArea.qml
index 9e71a94..6684982 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: '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')
}
}
-
property int currentIndex: -1 // TODO: to be moved to whereever right
property int pid: -1