1Upstream-Status: Pending 2 3Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> 4 5Index: Qt5_CinematicExperience_rpi_1.0/content/SettingsView.qml 6=================================================================== 7--- Qt5_CinematicExperience_rpi_1.0.orig/content/SettingsView.qml 8+++ Qt5_CinematicExperience_rpi_1.0/content/SettingsView.qml 9@@ -127,8 +127,8 @@ Item { 10 Switch { 11 text: "Do you l-o-v-e colors?" 12 checked: settings.showColors 13- onText: "Yes" 14- offText: "No!" 15+ textON: "Yes" 16+ textOFF: "No!" 17 onCheckedChanged: { 18 settings.showColors = checked; 19 } 20Index: Qt5_CinematicExperience_rpi_1.0/content/Switch.qml 21=================================================================== 22--- Qt5_CinematicExperience_rpi_1.0.orig/content/Switch.qml 23+++ Qt5_CinematicExperience_rpi_1.0/content/Switch.qml 24@@ -6,8 +6,8 @@ Item { 25 26 property alias text: textItem.text 27 property bool checked: false 28- property string onText: "On" 29- property string offText: "Off" 30+ property string textON: "On" 31+ property string textOFF: "Off" 32 33 QtObject { 34 id: priv 35@@ -120,7 +120,7 @@ Item { 36 color: "#000000" 37 font.pixelSize: 18 38 font.bold: true 39- text: onText 40+ text: textON 41 } 42 Text { 43 anchors.verticalCenter: parent.verticalCenter 44@@ -129,7 +129,7 @@ Item { 45 color: "#ffffff" 46 font.pixelSize: 18 47 font.bold: true 48- text: offText 49+ text: textOFF 50 } 51 52 Image { 53