diff options
| author | Riccardo Spagni <ric@spagni.net> | 2017-03-03 16:18:31 +0200 |
|---|---|---|
| committer | Riccardo Spagni <ric@spagni.net> | 2017-03-03 16:18:31 +0200 |
| commit | f11ec2d0bdb48d1e80cccf3fdca074a646de19b0 (patch) | |
| tree | 2ae0f4dc99af52e2f27048cb2f131880decc973f /pages/Transfer.qml | |
| parent | 36f245e983f12636994652ad732c54b0974a6f37 (diff) | |
| parent | 44bcb3d06c171a74edd8c36e88590a1714fd1c08 (diff) | |
| download | monzero-gui-f11ec2d0bdb48d1e80cccf3fdca074a646de19b0.tar.gz monzero-gui-f11ec2d0bdb48d1e80cccf3fdca074a646de19b0.tar.xz monzero-gui-f11ec2d0bdb48d1e80cccf3fdca074a646de19b0.zip | |
Merge pull request #504
44bcb3d Update PrivacyLevelSmall.qml (xmr-eric)
e8875e0 PrivacyLevelSmall.qml: mixed case for Wizard (xmr-eric)
d354d4a Sign Verify: keep text mixed case (xmr-eric)
d1202e4 TxKey.qml: Keep text mixed case (xmr-eric)
08d5730 History.qml: Keep text mixed case (xmr-eric)
92a5781 Addressbook.qml: Keep text mixed case (xmr-eric)
9ac8e26 TickDelegate.qml: Keep text mixed case (xmr-eric)
0b017ff Transfer.qml: Keep buttons mixed case (xmr-eric)
Diffstat (limited to 'pages/Transfer.qml')
| -rw-r--r-- | pages/Transfer.qml | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/pages/Transfer.qml b/pages/Transfer.qml index 6f0079a9..8d187cc7 100644 --- a/pages/Transfer.qml +++ b/pages/Transfer.qml @@ -168,7 +168,7 @@ Rectangle { //anchors.top: amountLine.top //anchors.bottom: amountLine.bottom width: 60 - text: qsTr("ALL") + translationManager.emptyString + text: qsTr("All") + translationManager.emptyString shadowReleasedColor: "#FF4304" shadowPressedColor: "#B32D00" releasedColor: "#FF6C3C" @@ -182,11 +182,11 @@ Rectangle { id: priorityModel // ListElement: cannot use script for property value, so // code like this wont work: - // ListElement { column1: qsTr("LOW") + translationManager.emptyString ; column2: ""; priority: PendingTransaction.Priority_Low } + // ListElement { column1: qsTr("Low") + translationManager.emptyString ; column2: ""; priority: PendingTransaction.Priority_Low } - ListElement { column1: qsTr("LOW (x1 fee)") ; column2: ""; priority: PendingTransaction.Priority_Low } - ListElement { column1: qsTr("MEDIUM (x20 fee)") ; column2: ""; priority: PendingTransaction.Priority_Medium } - ListElement { column1: qsTr("HIGH (x166 fee)") ; column2: ""; priority: PendingTransaction.Priority_High } + ListElement { column1: qsTr("Low (x1 fee)") ; column2: ""; priority: PendingTransaction.Priority_Low } + ListElement { column1: qsTr("Medium (x20 fee)") ; column2: ""; priority: PendingTransaction.Priority_Medium } + ListElement { column1: qsTr("High (x166 fee)") ; column2: ""; priority: PendingTransaction.Priority_High } } StandardDropdown { @@ -300,7 +300,7 @@ Rectangle { anchors.topMargin: 17 anchors.rightMargin: 17 width: 60 - text: qsTr("RESOLVE") + translationManager.emptyString + text: qsTr("Resolve") + translationManager.emptyString shadowReleasedColor: "#FF4304" shadowPressedColor: "#B32D00" releasedColor: "#FF6C3C" @@ -414,7 +414,7 @@ Rectangle { anchors.leftMargin: 17 anchors.topMargin: 17 width: 60 - text: qsTr("SEND") + translationManager.emptyString + text: qsTr("Send") + translationManager.emptyString shadowReleasedColor: "#FF4304" shadowPressedColor: "#B32D00" releasedColor: "#FF6C3C" @@ -471,7 +471,7 @@ Rectangle { RowLayout { StandardButton { id: sweepUnmixableButton - text: qsTr("SWEEP UNMIXABLE") + translationManager.emptyString + text: qsTr("Sweep Unmixable") + translationManager.emptyString shadowReleasedColor: "#FF4304" shadowPressedColor: "#B32D00" releasedColor: "#FF6C3C" |
