diff options
| author | Monzero Build System <builds@monzero.org> | 2026-08-15 21:26:40 +0100 |
|---|---|---|
| committer | Monzero Build System <builds@monzero.org> | 2026-08-15 21:26:40 +0100 |
| commit | dceeb88444ce966caa1a133d2926d5f7213c87ff (patch) | |
| tree | d74c9c7d7e43c2a0d39d656c690c63050cff7f53 /pages/TxKey.qml | |
| parent | 81f33c7e00bf183823909a02e6d96ce11e41adce (diff) | |
| download | monzero-gui-phase0-20260815.tar.gz monzero-gui-phase0-20260815.tar.xz monzero-gui-phase0-20260815.zip | |
Establish Monzero GUI Phase 0 baselinemonzero-gui-phase0-20260815
Diffstat (limited to 'pages/TxKey.qml')
| -rw-r--r-- | pages/TxKey.qml | 56 |
1 files changed, 28 insertions, 28 deletions
diff --git a/pages/TxKey.qml b/pages/TxKey.qml index e2808e2a..45bd6e3a 100644 --- a/pages/TxKey.qml +++ b/pages/TxKey.qml @@ -1,4 +1,4 @@ -// Copyright (c) 2014-2024, The Monero Project +// Copyright (c) 2014-2024, The Monzero Project // // All rights reserved. // @@ -31,7 +31,7 @@ import QtQuick.Controls 1.4 import QtQuick.Controls.Styles 1.4 import QtQuick.Layouts 1.1 -import "../components" as MoneroComponents +import "../components" as MonzeroComponents import moneroComponents.Clipboard 1.0 import "../js/TxUtils.js" as TxUtils @@ -57,23 +57,23 @@ Rectangle { id: soloBox spacing: 20 - MoneroComponents.Label { + MonzeroComponents.Label { id: soloTitleLabel fontSize: 24 text: qsTr("Prove Transaction") + " / " + qsTr("Reserve") + translationManager.emptyString } - MoneroComponents.TextPlain { + MonzeroComponents.TextPlain { Layout.fillWidth: true text: qsTr("Generate a proof of your incoming/outgoing payment by supplying the transaction ID, the recipient address and an optional message. \n" + "For the case of outgoing payments, you can get a 'Spend Proof' that proves the authorship of a transaction. In this case, you don't need to specify the recipient address.") + qsTr("\nFor reserve proofs you don't need to specify tx id or address.") + translationManager.emptyString wrapMode: Text.Wrap - font.family: MoneroComponents.Style.fontRegular.name + font.family: MonzeroComponents.Style.fontRegular.name font.pixelSize: 14 - color: MoneroComponents.Style.defaultFontColor + color: MonzeroComponents.Style.defaultFontColor } - MoneroComponents.LineEdit { + MonzeroComponents.LineEdit { id: getProofTxIdLine Layout.fillWidth: true labelFontSize: 14 @@ -86,7 +86,7 @@ Rectangle { enabled: getReserveProofAmtLine.text.length === 0 } - MoneroComponents.LineEdit { + MonzeroComponents.LineEdit { id: getProofAddressLine Layout.fillWidth: true labelFontSize: 14 @@ -99,14 +99,14 @@ Rectangle { enabled: getReserveProofAmtLine.text.length === 0 } - MoneroComponents.LineEdit { + MonzeroComponents.LineEdit { id: getReserveProofAmtLine Layout.fillWidth: true labelFontSize: 14 labelText: qsTr("Amount") + translationManager.emptyString fontSize: 16 placeholderFontSize: 16 - placeholderText: qsTr("Paste amount of XMR (reserve proof only)") + translationManager.emptyString + placeholderText: qsTr("Paste amount of XMZ (reserve proof only)") + translationManager.emptyString readOnly: false copyButton: true enabled: getProofAddressLine.text.length === 0 && getProofTxIdLine.text.length === 0 @@ -130,7 +130,7 @@ Rectangle { } } - MoneroComponents.LineEdit { + MonzeroComponents.LineEdit { id: getProofMessageLine Layout.fillWidth: true fontSize: 16 @@ -142,7 +142,7 @@ Rectangle { copyButton: true } - MoneroComponents.StandardButton { + MonzeroComponents.StandardButton { Layout.topMargin: 16 small: true text: qsTr("Generate") + translationManager.emptyString @@ -156,30 +156,30 @@ Rectangle { // underline Rectangle { height: 1 - color: MoneroComponents.Style.dividerColor - opacity: MoneroComponents.Style.dividerOpacity + color: MonzeroComponents.Style.dividerColor + opacity: MonzeroComponents.Style.dividerOpacity Layout.fillWidth: true Layout.alignment: Qt.AlignHCenter anchors.bottomMargin: 3 } - MoneroComponents.Label { + MonzeroComponents.Label { id: soloTitleLabel2 fontSize: 24 text: qsTr("Check Transaction") + " / " + qsTr("Reserve") + translationManager.emptyString } - MoneroComponents.TextPlain { + MonzeroComponents.TextPlain { text: qsTr("Verify that funds were paid to an address by supplying the transaction ID, the recipient address, the message used for signing and the signature.\n" + "For the case with Spend Proof, you don't need to specify the recipient address.") + "\n" + qsTr("Transaction is not needed for reserve proof.") + translationManager.emptyString wrapMode: Text.Wrap Layout.fillWidth: true - font.family: MoneroComponents.Style.fontRegular.name + font.family: MonzeroComponents.Style.fontRegular.name font.pixelSize: 14 - color: MoneroComponents.Style.defaultFontColor + color: MonzeroComponents.Style.defaultFontColor } - MoneroComponents.LineEdit { + MonzeroComponents.LineEdit { id: checkProofTxIdLine Layout.fillWidth: true labelFontSize: 14 @@ -191,7 +191,7 @@ Rectangle { copyButton: true } - MoneroComponents.LineEdit { + MonzeroComponents.LineEdit { id: checkProofAddressLine Layout.fillWidth: true labelFontSize: 14 @@ -203,7 +203,7 @@ Rectangle { copyButton: true } - MoneroComponents.LineEdit { + MonzeroComponents.LineEdit { id: checkProofMessageLine Layout.fillWidth: true fontSize: 16 @@ -215,7 +215,7 @@ Rectangle { copyButton: true } - MoneroComponents.LineEdit { + MonzeroComponents.LineEdit { id: checkProofSignatureLine Layout.fillWidth: true fontSize: 16 @@ -227,7 +227,7 @@ Rectangle { copyButton: true } - MoneroComponents.StandardButton { + MonzeroComponents.StandardButton { Layout.topMargin: 16 small: true text: qsTr("Check") + translationManager.emptyString @@ -241,20 +241,20 @@ Rectangle { // underline Rectangle { height: 1 - color: MoneroComponents.Style.dividerColor - opacity: MoneroComponents.Style.dividerOpacity + color: MonzeroComponents.Style.dividerColor + opacity: MonzeroComponents.Style.dividerOpacity Layout.fillWidth: true Layout.alignment: Qt.AlignHCenter anchors.bottomMargin: 3 } - MoneroComponents.TextPlain { + MonzeroComponents.TextPlain { text: qsTr("If a payment had several transactions then each must be checked and the results combined.") + translationManager.emptyString wrapMode: Text.Wrap Layout.fillWidth: true - font.family: MoneroComponents.Style.fontRegular.name + font.family: MonzeroComponents.Style.fontRegular.name font.pixelSize: 14 - color: MoneroComponents.Style.defaultFontColor + color: MonzeroComponents.Style.defaultFontColor } } } |
