aboutsummaryrefslogtreecommitdiff
path: root/components
diff options
context:
space:
mode:
Diffstat (limited to 'components')
-rw-r--r--components/TickDelegate.qml6
1 files 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 ""
}
}