mirror of
https://github.com/monero-project/monero-gui.git
synced 2025-05-13 15:52:15 +00:00
Update WizardCreateWallet2.qml
This commit is contained in:
parent
eec8ac872e
commit
3450baff2e
1 changed files with 5 additions and 7 deletions
|
@ -151,7 +151,7 @@ Rectangle {
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
Layout.alignment: Qt.AlignHCenter
|
Layout.alignment: Qt.AlignHCenter
|
||||||
color: MoneroComponents.Style.dimmedFontColor
|
color: MoneroComponents.Style.dimmedFontColor
|
||||||
text: qsTr("The next page will display your recovery phrase, also known as mnemonic seed. ") + qsTr("These words are a backup of your wallet. Write these words down now on a piece of paper in the same order displayed. Keep this paper in a safe place and do not disclose it to anybody! Do not store these words digitally, always use a paper!") + translationManager.emptyString
|
text: qsTr("The next page will display your recovery phrase, also known as mnemonic seed.") + " " + qsTr("These words are a backup of your wallet. Write these words down now on a piece of paper in the same order displayed. Keep this paper in a safe place and do not disclose it to anybody! Do not store these words digitally, always use a paper!") + translationManager.emptyString
|
||||||
|
|
||||||
font.family: MoneroComponents.Style.fontRegular.name
|
font.family: MoneroComponents.Style.fontRegular.name
|
||||||
font.pixelSize: 14
|
font.pixelSize: 14
|
||||||
|
@ -159,7 +159,7 @@ Rectangle {
|
||||||
leftPadding: 0
|
leftPadding: 0
|
||||||
topPadding: 0
|
topPadding: 0
|
||||||
Accessible.role: Accessible.StaticText
|
Accessible.role: Accessible.StaticText
|
||||||
Accessible.name: qsTr("The next page will display your recovery phrase, also known as mnemonic seed. ") + qsTr("These words are a backup of your wallet. Write these words down now on a piece of paper in the same order displayed. Keep this paper in a safe place and do not disclose it to anybody! Do not store these words digitally, always use a paper!") + translationManager.emptyString
|
Accessible.name: qsTr("The next page will display your recovery phrase, also known as mnemonic seed.") + " " + qsTr("These words are a backup of your wallet. Write these words down now on a piece of paper in the same order displayed. Keep this paper in a safe place and do not disclose it to anybody! Do not store these words digitally, always use a paper!") + translationManager.emptyString
|
||||||
KeyNavigation.up: mobileImage
|
KeyNavigation.up: mobileImage
|
||||||
KeyNavigation.backtab: mobileImage
|
KeyNavigation.backtab: mobileImage
|
||||||
KeyNavigation.down: displaySeedButton
|
KeyNavigation.down: displaySeedButton
|
||||||
|
@ -279,7 +279,6 @@ Rectangle {
|
||||||
small: true
|
small: true
|
||||||
primary: false
|
primary: false
|
||||||
text: qsTr("Create new seed") + translationManager.emptyString
|
text: qsTr("Create new seed") + translationManager.emptyString
|
||||||
tooltip: qsTr("Generate a new seed") + translationManager.emptyString
|
|
||||||
onClicked: {
|
onClicked: {
|
||||||
wizardController.restart(true);
|
wizardController.restart(true);
|
||||||
wizardController.createWallet();
|
wizardController.createWallet();
|
||||||
|
@ -288,7 +287,7 @@ Rectangle {
|
||||||
checkSeedListGridDestruction.start();
|
checkSeedListGridDestruction.start();
|
||||||
}
|
}
|
||||||
Accessible.role: Accessible.Button
|
Accessible.role: Accessible.Button
|
||||||
Accessible.name: qsTr("Generate a new seed") + translationManager.emptyString
|
Accessible.name: qsTr("Create new seed") + translationManager.emptyString
|
||||||
KeyNavigation.up: (wizardCreateWallet2.seedListGrid && seedListGridColumn.children[0]) ? seedListGridColumn.children[0].children[24] : recoveryPhraseLabel
|
KeyNavigation.up: (wizardCreateWallet2.seedListGrid && seedListGridColumn.children[0]) ? seedListGridColumn.children[0].children[24] : recoveryPhraseLabel
|
||||||
KeyNavigation.backtab: (wizardCreateWallet2.seedListGrid && seedListGridColumn.children[0]) ? seedListGridColumn.children[0].children[24] : recoveryPhraseLabel
|
KeyNavigation.backtab: (wizardCreateWallet2.seedListGrid && seedListGridColumn.children[0]) ? seedListGridColumn.children[0].children[24] : recoveryPhraseLabel
|
||||||
KeyNavigation.down: copyToClipboardButton
|
KeyNavigation.down: copyToClipboardButton
|
||||||
|
@ -301,7 +300,6 @@ Rectangle {
|
||||||
small: true
|
small: true
|
||||||
primary: false
|
primary: false
|
||||||
text: qsTr("Copy to clipboard") + translationManager.emptyString
|
text: qsTr("Copy to clipboard") + translationManager.emptyString
|
||||||
tooltip: qsTr("Copy the mnemonic seed to the clipboard") + translationManager.emptyString
|
|
||||||
onClicked: {
|
onClicked: {
|
||||||
clipboard.setText(wizardController.walletOptionsSeed);
|
clipboard.setText(wizardController.walletOptionsSeed);
|
||||||
appWindow.showStatusMessage(qsTr("Recovery phrase copied to clipboard"),3);
|
appWindow.showStatusMessage(qsTr("Recovery phrase copied to clipboard"),3);
|
||||||
|
@ -325,7 +323,7 @@ Rectangle {
|
||||||
oshelper.openFile("wizard/template.pdf")
|
oshelper.openFile("wizard/template.pdf")
|
||||||
}
|
}
|
||||||
Accessible.role: Accessible.Button
|
Accessible.role: Accessible.Button
|
||||||
Accessible.name: qsTr("Print a blank template to write down your seed") + translationManager.emptyString
|
Accessible.name: qsTr("Print a template to write down your seed") + translationManager.emptyString
|
||||||
KeyNavigation.up: copyToClipboardButton.visible ? copyToClipboardButton : (wizardCreateWallet2.seedListGrid && seedListGridColumn.children[0]) ? seedListGridColumn.children[0].children[24] : recoveryPhraseLabel
|
KeyNavigation.up: copyToClipboardButton.visible ? copyToClipboardButton : (wizardCreateWallet2.seedListGrid && seedListGridColumn.children[0]) ? seedListGridColumn.children[0].children[24] : recoveryPhraseLabel
|
||||||
KeyNavigation.backtab: copyToClipboardButton.visible ? copyToClipboardButton : (wizardCreateWallet2.seedListGrid && seedListGridColumn.children[0]) ? seedListGridColumn.children[0].children[24] : recoveryPhraseLabel
|
KeyNavigation.backtab: copyToClipboardButton.visible ? copyToClipboardButton : (wizardCreateWallet2.seedListGrid && seedListGridColumn.children[0]) ? seedListGridColumn.children[0].children[24] : recoveryPhraseLabel
|
||||||
KeyNavigation.down: walletCreationDate
|
KeyNavigation.down: walletCreationDate
|
||||||
|
@ -389,7 +387,7 @@ Rectangle {
|
||||||
tooltipIconVisible: true
|
tooltipIconVisible: true
|
||||||
themeTransition: false
|
themeTransition: false
|
||||||
Accessible.role: Accessible.StaticText
|
Accessible.role: Accessible.StaticText
|
||||||
Accessible.name: qsTr("Wallet restore height") + " " + Utils.roundDownToNearestThousand(wizardController.m_wallet ? wizardController.m_wallet.walletCreationHeight : 0) + translationManager.emptyString
|
Accessible.name: qsTr("Restore height") + " " + Utils.roundDownToNearestThousand(wizardController.m_wallet ? wizardController.m_wallet.walletCreationHeight : 0) + translationManager.emptyString
|
||||||
KeyNavigation.up: walletCreationDate
|
KeyNavigation.up: walletCreationDate
|
||||||
KeyNavigation.backtab: walletCreationDate
|
KeyNavigation.backtab: walletCreationDate
|
||||||
Keys.onDownPressed: navigation.btnPrev.forceActiveFocus();
|
Keys.onDownPressed: navigation.btnPrev.forceActiveFocus();
|
||||||
|
|
Loading…
Reference in a new issue