aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxmr-eric <eric@moneroeric.com>2017-02-27 17:03:51 -0500
committerGitHub <noreply@github.com>2017-02-27 17:03:51 -0500
commit9ac8e26a48b2ef47ad193126ccdb8e2d8f25729f (patch)
treec599d466949d9b7d06eecefb973ea1d457d42a25
parent0b017ff9546951248bd5ed8d28a9227634f739fe (diff)
downloadmonzero-gui-9ac8e26a48b2ef47ad193126ccdb8e2d8f25729f.tar.gz
monzero-gui-9ac8e26a48b2ef47ad193126ccdb8e2d8f25729f.tar.xz
monzero-gui-9ac8e26a48b2ef47ad193126ccdb8e2d8f25729f.zip
TickDelegate.qml: Keep text mixed case
-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 ""
}
}