From 86aca1e24e120713a3e80a0753905ff5ca85198c Mon Sep 17 00:00:00 2001 From: ThomasV Date: Tue, 18 Apr 2023 10:20:49 +0200 Subject: [PATCH] qml: change title of ConfirmTxDialog From a user perspectuve, what they are asked to do is select the mining fee. --- electrum/gui/qml/components/ConfirmTxDialog.qml | 2 +- electrum/gui/qml/components/OpenChannelDialog.qml | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/electrum/gui/qml/components/ConfirmTxDialog.qml b/electrum/gui/qml/components/ConfirmTxDialog.qml index 5910bc1cf..e0a630cb4 100644 --- a/electrum/gui/qml/components/ConfirmTxDialog.qml +++ b/electrum/gui/qml/components/ConfirmTxDialog.qml @@ -17,7 +17,7 @@ ElDialog { property alias amountLabelText: amountLabel.text property alias sendButtonText: sendButton.text - title: qsTr('Confirm Transaction') + title: qsTr('Transaction Fee') // copy these to finalizer onAddressChanged: finalizer.address = address diff --git a/electrum/gui/qml/components/OpenChannelDialog.qml b/electrum/gui/qml/components/OpenChannelDialog.qml index 78f3ca195..a14a3da2c 100644 --- a/electrum/gui/qml/components/OpenChannelDialog.qml +++ b/electrum/gui/qml/components/OpenChannelDialog.qml @@ -200,7 +200,6 @@ ElDialog { Component { id: confirmOpenChannelDialog ConfirmTxDialog { - title: qsTr('Confirm Open Channel') amountLabelText: qsTr('Channel capacity') sendButtonText: qsTr('Open Channel') finalizer: channelopener.finalizer