mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-12-13 11:56:32 +02:00
Merge pull request #319
e3ef832
Wizard Option Page: Change "Recover" to "Restore" (xmr-eric)2f4d31a
Improve wizard Seed importance/secret statement (xmr-eric)31f9c1d
CreateWallet page (xmr-eric)638e207
End of Wizard page (xmr-eric)7f82464
ManageWalletUIpage (xmr-eric)9bd557c
Recover Wallet page (xmr-eric)a4d9dc0
Password page edits (xmr-eric)
This commit is contained in:
commit
7555502d64
@ -96,8 +96,8 @@ Item {
|
|||||||
|
|
||||||
WizardManageWalletUI {
|
WizardManageWalletUI {
|
||||||
id: uiItem
|
id: uiItem
|
||||||
titleText: qsTr("A new wallet has been created for you") + translationManager.emptyString
|
titleText: qsTr("Give your new wallet a name") + translationManager.emptyString
|
||||||
wordsTextTitle: qsTr("This is the 25 word mnemonic for your wallet") + translationManager.emptyString
|
wordsTextTitle: qsTr("Here is your wallet's 25 word mnemonic seed") + translationManager.emptyString
|
||||||
wordsTextItem.clipboardButtonVisible: true
|
wordsTextItem.clipboardButtonVisible: true
|
||||||
wordsTextItem.tipTextVisible: true
|
wordsTextItem.tipTextVisible: true
|
||||||
wordsTextItem.memoTextReadOnly: true
|
wordsTextItem.memoTextReadOnly: true
|
||||||
|
@ -52,8 +52,8 @@ Item {
|
|||||||
|
|
||||||
return "<table>"
|
return "<table>"
|
||||||
+ trStart + qsTr("Language") + trMiddle + wizard.settings["language"] + trEnd
|
+ trStart + qsTr("Language") + trMiddle + wizard.settings["language"] + trEnd
|
||||||
+ trStart + qsTr("Account name") + trMiddle + wizard.settings["account_name"] + trEnd
|
+ trStart + qsTr("Wallet name") + trMiddle + wizard.settings["account_name"] + trEnd
|
||||||
+ trStart + qsTr("Seed") + trMiddle + wizard.settings["wallet"].seed + trEnd
|
+ trStart + qsTr("Backup seed") + trMiddle + wizard.settings["wallet"].seed + trEnd
|
||||||
+ trStart + qsTr("Wallet path") + trMiddle + wizard.settings["wallet_path"] + trEnd
|
+ trStart + qsTr("Wallet path") + trMiddle + wizard.settings["wallet_path"] + trEnd
|
||||||
// + trStart + qsTr("Auto donations") + trMiddle + autoDonationText + trEnd
|
// + trStart + qsTr("Auto donations") + trMiddle + autoDonationText + trEnd
|
||||||
// + (autoDonationEnabled
|
// + (autoDonationEnabled
|
||||||
@ -70,7 +70,7 @@ Item {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function updateSettingsSummary() {
|
function updateSettingsSummary() {
|
||||||
settingsText.text = qsTr("An overview of your Monero configuration is below:") + translationManager.emptyString
|
settingsText.text = qsTr("New wallet details:") + translationManager.emptyString
|
||||||
+ "<br>"
|
+ "<br>"
|
||||||
+ buildSettingsString();
|
+ buildSettingsString();
|
||||||
}
|
}
|
||||||
|
@ -104,7 +104,7 @@ Item {
|
|||||||
horizontalAlignment: Text.AlignHCenter
|
horizontalAlignment: Text.AlignHCenter
|
||||||
//renderType: Text.NativeRendering
|
//renderType: Text.NativeRendering
|
||||||
color: "#4A4646"
|
color: "#4A4646"
|
||||||
text: qsTr("This is the name of your wallet. You can change it to a different name if you’d like:") + translationManager.emptyString
|
text: qsTr("or use the name suggested below:") + translationManager.emptyString
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -175,7 +175,7 @@ Item {
|
|||||||
anchors.top: memoTextItem.bottom
|
anchors.top: memoTextItem.bottom
|
||||||
width: 250
|
width: 250
|
||||||
anchors.topMargin: 20
|
anchors.topMargin: 20
|
||||||
placeholderText: qsTr("Restore height")
|
placeholderText: qsTr("Restore height (optional)")
|
||||||
Layout.alignment: Qt.AlignCenter
|
Layout.alignment: Qt.AlignCenter
|
||||||
validator: IntValidator {
|
validator: IntValidator {
|
||||||
bottom:0
|
bottom:0
|
||||||
|
@ -73,7 +73,7 @@ Column {
|
|||||||
font.pixelSize: 15
|
font.pixelSize: 15
|
||||||
color: "#4A4646"
|
color: "#4A4646"
|
||||||
wrapMode: Text.Wrap
|
wrapMode: Text.Wrap
|
||||||
text: qsTr("It is very important to write it down as this is the only backup you will need for your wallet.")
|
text: qsTr("This seed is VERY important to write down and keep secret. It is all you need to backup and restore your wallet.")
|
||||||
+ translationManager.emptyString
|
+ translationManager.emptyString
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -174,7 +174,7 @@ Item {
|
|||||||
font.pixelSize: 16
|
font.pixelSize: 16
|
||||||
color: "#4A4949"
|
color: "#4A4949"
|
||||||
horizontalAlignment: Text.AlignHCenter
|
horizontalAlignment: Text.AlignHCenter
|
||||||
text: qsTr("Recover wallet from 25 word mnemonic seed") + translationManager.emptyString
|
text: qsTr("Restore wallet from 25 word mnemonic seed") + translationManager.emptyString
|
||||||
width:page.buttonSize
|
width:page.buttonSize
|
||||||
wrapMode: Text.WordWrap
|
wrapMode: Text.WordWrap
|
||||||
}
|
}
|
||||||
|
@ -50,9 +50,9 @@ Item {
|
|||||||
handlePassword();
|
handlePassword();
|
||||||
|
|
||||||
if (wizard.currentPath === "create_wallet") {
|
if (wizard.currentPath === "create_wallet") {
|
||||||
passwordPage.titleText = qsTr("Now that your wallet has been created, please set a password for the wallet") + translationManager.emptyString
|
passwordPage.titleText = qsTr("Give your wallet a password") + translationManager.emptyString
|
||||||
} else {
|
} else {
|
||||||
passwordPage.titleText = qsTr("Now that your wallet has been restored, please set a password for the wallet") + translationManager.emptyString
|
passwordPage.titleText = qsTr("Give your wallet a password") + translationManager.emptyString
|
||||||
}
|
}
|
||||||
|
|
||||||
passwordItem.focus = true;
|
passwordItem.focus = true;
|
||||||
@ -148,8 +148,8 @@ Item {
|
|||||||
//renderType: Text.NativeRendering
|
//renderType: Text.NativeRendering
|
||||||
color: "#4A4646"
|
color: "#4A4646"
|
||||||
horizontalAlignment: Text.AlignHCenter
|
horizontalAlignment: Text.AlignHCenter
|
||||||
text: qsTr("Note that this password cannot be recovered, and if forgotten you will need to restore your wallet from the mnemonic seed you were just given<br/><br/>
|
text: qsTr("Note: this password cannot be recovered. If you forget it then the wallet will have to be restored from its 25 word mnemonic seed.<br/><br/>
|
||||||
Your password will be used to protect your wallet and to confirm actions, so make sure that your password is sufficiently secure.")
|
Enter a secure password (using letters, numbers, and/or symbols):")
|
||||||
+ translationManager.emptyString
|
+ translationManager.emptyString
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -89,8 +89,8 @@ Item {
|
|||||||
WizardManageWalletUI {
|
WizardManageWalletUI {
|
||||||
id: uiItem
|
id: uiItem
|
||||||
accountNameText: defaultAccountName
|
accountNameText: defaultAccountName
|
||||||
titleText: qsTr("We're ready to recover your account") + translationManager.emptyString
|
titleText: qsTr("Give your restored wallet a name") + translationManager.emptyString
|
||||||
wordsTextTitle: qsTr("Please enter your 25 word private key") + translationManager.emptyString
|
wordsTextTitle: qsTr("Enter your 25 word mnemonic seed:") + translationManager.emptyString
|
||||||
wordsTextItem.clipboardButtonVisible: false
|
wordsTextItem.clipboardButtonVisible: false
|
||||||
wordsTextItem.tipTextVisible: false
|
wordsTextItem.tipTextVisible: false
|
||||||
wordsTextItem.memoTextReadOnly: false
|
wordsTextItem.memoTextReadOnly: false
|
||||||
|
Loading…
Reference in New Issue
Block a user