From 9ac8e26a48b2ef47ad193126ccdb8e2d8f25729f Mon Sep 17 00:00:00 2001 From: xmr-eric Date: Mon, 27 Feb 2017 17:03:51 -0500 Subject: [PATCH] TickDelegate.qml: Keep text mixed case --- components/TickDelegate.qml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/components/TickDelegate.qml b/components/TickDelegate.qml index 01c51e19..2dfbddd9 100644 --- a/components/TickDelegate.qml +++ b/components/TickDelegate.qml @@ -52,9 +52,9 @@ Item { font.pixelSize: 12 color: "#4A4949" text: { - if(currentIndex === 0) return qsTr("NORMAL") + translationManager.emptyString - if(currentIndex === 3) return qsTr("MEDIUM") + translationManager.emptyString - if(currentIndex === 13) return qsTr("HIGH") + translationManager.emptyString + if(currentIndex === 0) return qsTr("Normal") + translationManager.emptyString + if(currentIndex === 3) return qsTr("Medium") + translationManager.emptyString + if(currentIndex === 13) return qsTr("High") + translationManager.emptyString return "" } }