diff options
| author | xmr-eric <xmr-eric@users.noreply.github.com> | 2017-11-20 11:50:56 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-11-20 11:50:56 -0500 |
| commit | 8e1f1dbf0562eb36d0b4d1599da35b4be25516f7 (patch) | |
| tree | 6eaead3cbc9b0aaa244e126c1d80440e82106feb | |
| parent | 2147803d45fa9e639eb01afa1558f5b49fbf0174 (diff) | |
| download | monzero-gui-8e1f1dbf0562eb36d0b4d1599da35b4be25516f7.tar.gz monzero-gui-8e1f1dbf0562eb36d0b4d1599da35b4be25516f7.tar.xz monzero-gui-8e1f1dbf0562eb36d0b4d1599da35b4be25516f7.zip | |
Rename tx privacy "Normal" setting to "Default"
With this PR, both tx priority and tx privacy settings will have similar terminology.
| -rw-r--r-- | components/TickDelegate.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/TickDelegate.qml b/components/TickDelegate.qml index 4e9789a4..7485dcc5 100644 --- a/components/TickDelegate.qml +++ b/components/TickDelegate.qml @@ -52,7 +52,7 @@ Item { font.pixelSize: 12 * scaleRatio color: "#4A4949" text: { - if(currentIndex === 0) return qsTr("Normal") + translationManager.emptyString + if(currentIndex === 0) return qsTr("Default") + translationManager.emptyString if(currentIndex === 13) return qsTr("High") + translationManager.emptyString return "" } |
