From 9ac8e26a48b2ef47ad193126ccdb8e2d8f25729f Mon Sep 17 00:00:00 2001 From: xmr-eric Date: Mon, 27 Feb 2017 17:03:51 -0500 Subject: TickDelegate.qml: Keep text mixed case --- components/TickDelegate.qml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'components') 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 "" } } -- cgit v1.2.3 From e8875e0e1f93faab0e25f58e5c0dea9183d08b6a Mon Sep 17 00:00:00 2001 From: xmr-eric Date: Mon, 27 Feb 2017 18:58:17 -0500 Subject: PrivacyLevelSmall.qml: mixed case for Wizard --- components/PrivacyLevelSmall.qml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'components') diff --git a/components/PrivacyLevelSmall.qml b/components/PrivacyLevelSmall.qml index cf9169f8..ebca0c30 100644 --- a/components/PrivacyLevelSmall.qml +++ b/components/PrivacyLevelSmall.qml @@ -99,7 +99,7 @@ Item { font.bold: true color: "#000000" x: row.x + (row.positions[0] !== undefined ? row.positions[0].currentX - 3 : 0) - width - text: qsTr("LOW") + translationManager.emptyString + text: qsTr("Low") + translationManager.emptyString } Text { @@ -110,7 +110,7 @@ Item { font.bold: true color: "#000000" x: row.x + (row.positions[4] !== undefined ? row.positions[4].currentX - 3 : 0) - width - text: qsTr("MEDIUM") + translationManager.emptyString + text: qsTr("Medium") + translationManager.emptyString } Text { @@ -121,7 +121,7 @@ Item { font.bold: true color: "#000000" x: row.x + (row.positions[13] !== undefined ? row.positions[13].currentX - 3 : 0) - width - text: qsTr("HIGH") + translationManager.emptyString + text: qsTr("High") + translationManager.emptyString } MouseArea { -- cgit v1.2.3 From 44bcb3d06c171a74edd8c36e88590a1714fd1c08 Mon Sep 17 00:00:00 2001 From: xmr-eric Date: Wed, 1 Mar 2017 18:45:55 -0500 Subject: Update PrivacyLevelSmall.qml --- components/PrivacyLevelSmall.qml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'components') diff --git a/components/PrivacyLevelSmall.qml b/components/PrivacyLevelSmall.qml index ebca0c30..cf9169f8 100644 --- a/components/PrivacyLevelSmall.qml +++ b/components/PrivacyLevelSmall.qml @@ -99,7 +99,7 @@ Item { font.bold: true color: "#000000" x: row.x + (row.positions[0] !== undefined ? row.positions[0].currentX - 3 : 0) - width - text: qsTr("Low") + translationManager.emptyString + text: qsTr("LOW") + translationManager.emptyString } Text { @@ -110,7 +110,7 @@ Item { font.bold: true color: "#000000" x: row.x + (row.positions[4] !== undefined ? row.positions[4].currentX - 3 : 0) - width - text: qsTr("Medium") + translationManager.emptyString + text: qsTr("MEDIUM") + translationManager.emptyString } Text { @@ -121,7 +121,7 @@ Item { font.bold: true color: "#000000" x: row.x + (row.positions[13] !== undefined ? row.positions[13].currentX - 3 : 0) - width - text: qsTr("High") + translationManager.emptyString + text: qsTr("HIGH") + translationManager.emptyString } MouseArea { -- cgit v1.2.3