From 8e1f1dbf0562eb36d0b4d1599da35b4be25516f7 Mon Sep 17 00:00:00 2001 From: xmr-eric Date: Mon, 20 Nov 2017 11:50:56 -0500 Subject: [PATCH] Rename tx privacy "Normal" setting to "Default" With this PR, both tx priority and tx privacy settings will have similar terminology. --- components/TickDelegate.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 "" }