diff --git a/electrum/gui/qml/components/ServerConnectWizard.qml b/electrum/gui/qml/components/ServerConnectWizard.qml index ad4755761..3f08c7642 100644 --- a/electrum/gui/qml/components/ServerConnectWizard.qml +++ b/electrum/gui/qml/components/ServerConnectWizard.qml @@ -12,6 +12,7 @@ Wizard { enter: null // disable transition wiz: Daemon.serverConnectWizard + finishButtonText: qsTr('Next') onAccepted: { var proxy = wizard_data['proxy'] diff --git a/electrum/gui/qml/components/wizard/Wizard.qml b/electrum/gui/qml/components/wizard/Wizard.qml index 82de9fb2b..d34678c01 100644 --- a/electrum/gui/qml/components/wizard/Wizard.qml +++ b/electrum/gui/qml/components/wizard/Wizard.qml @@ -24,6 +24,7 @@ ElDialog { property var wizard_data property alias pages: pages property QtObject wiz + property alias finishButtonText: finishButton.text function doClose() { if (pages.currentIndex == 0) @@ -171,6 +172,7 @@ ElDialog { } Button { + id: finishButton text: qsTr("Finish") visible: pages.lastpage enabled: pages.pagevalid