aboutsummaryrefslogtreecommitdiff
path: root/components/TickDelegate.qml
diff options
context:
space:
mode:
authorIlya Kitaev <mbg033@gmail.com>2016-07-20 22:28:11 +0300
committerIlya Kitaev <mbg033@gmail.com>2016-07-20 22:28:11 +0300
commit32ebf180acce258f8efb9bcaeca945a1fdd311ce (patch)
tree3f617d1ef44e919cbaac2aa22c77cdbc4c50d77c /components/TickDelegate.qml
parent39b88daf326cdbbbac5f757769168d41e6d3517b (diff)
downloadmonzero-gui-32ebf180acce258f8efb9bcaeca945a1fdd311ce.tar.gz
monzero-gui-32ebf180acce258f8efb9bcaeca945a1fdd311ce.tar.xz
monzero-gui-32ebf180acce258f8efb9bcaeca945a1fdd311ce.zip
dynamic translation support. closes #24
Diffstat (limited to 'components/TickDelegate.qml')
-rw-r--r--components/TickDelegate.qml6
1 files changed, 3 insertions, 3 deletions
diff --git a/components/TickDelegate.qml b/components/TickDelegate.qml
index 70ef1b50..2163d3e7 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("LOW")
- if(currentIndex === 3) return qsTr("MEDIUM")
- if(currentIndex === 13) return qsTr("HIGH")
+ if(currentIndex === 0) return qsTr("LOW") + translationManager.emptyString
+ if(currentIndex === 3) return qsTr("MEDIUM") + translationManager.emptyString
+ if(currentIndex === 13) return qsTr("HIGH") + translationManager.emptyString
return ""
}
}