diff options
| author | xmr-eric <eric@moneroeric.com> | 2017-02-27 18:58:17 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-02-27 18:58:17 -0500 |
| commit | e8875e0e1f93faab0e25f58e5c0dea9183d08b6a (patch) | |
| tree | a90480dc17a81e788c34ebc4e634d5f7ca79ea71 | |
| parent | d354d4aa545c3bf01293bb8d63d9e96fb5f5c0d9 (diff) | |
| download | monzero-gui-e8875e0e1f93faab0e25f58e5c0dea9183d08b6a.tar.gz monzero-gui-e8875e0e1f93faab0e25f58e5c0dea9183d08b6a.tar.xz monzero-gui-e8875e0e1f93faab0e25f58e5c0dea9183d08b6a.zip | |
PrivacyLevelSmall.qml: mixed case for Wizard
| -rw-r--r-- | components/PrivacyLevelSmall.qml | 6 |
1 files changed, 3 insertions, 3 deletions
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 { |
