From c6be2521efc2e6211c5a2e39f85b1e760e94f980 Mon Sep 17 00:00:00 2001 From: Sander van Grieken Date: Thu, 9 Mar 2023 15:19:33 +0100 Subject: [PATCH] qml: relabel Export tx to Share --- electrum/gui/qml/components/ExportTxDialog.qml | 2 +- electrum/gui/qml/components/TxDetails.qml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/electrum/gui/qml/components/ExportTxDialog.qml b/electrum/gui/qml/components/ExportTxDialog.qml index 72d44fb9b..7bfaec28f 100644 --- a/electrum/gui/qml/components/ExportTxDialog.qml +++ b/electrum/gui/qml/components/ExportTxDialog.qml @@ -15,7 +15,7 @@ ElDialog { // if text_qr is undefined text will be used property string text_help - title: qsTr('Export Transaction') + title: qsTr('Share Transaction') parent: Overlay.overlay modal: true diff --git a/electrum/gui/qml/components/TxDetails.qml b/electrum/gui/qml/components/TxDetails.qml index 2b349fd41..f4f8cada8 100644 --- a/electrum/gui/qml/components/TxDetails.qml +++ b/electrum/gui/qml/components/TxDetails.qml @@ -377,7 +377,7 @@ Pane { Layout.fillWidth: true Layout.preferredWidth: 1 icon.source: '../../icons/qrcode_white.png' - text: qsTr('Export') + text: qsTr('Share') onClicked: { var dialog = exportTxDialog.createObject(root, { txdetails: txdetails }) dialog.open()