From 097449079d73a680ee5a1ddd7d8acbdf022b7882 Mon Sep 17 00:00:00 2001 From: Jacob Brydolf Date: Sat, 29 Oct 2016 16:44:13 +0200 Subject: [PATCH] wizard: default account name on recover page --- wizard/WizardMain.qml | 3 +-- wizard/WizardRecoveryWallet.qml | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/wizard/WizardMain.qml b/wizard/WizardMain.qml index 34835a5f..b52ea92d 100644 --- a/wizard/WizardMain.qml +++ b/wizard/WizardMain.qml @@ -70,7 +70,6 @@ Rectangle { } function switchPage(next) { - console.log("hepp") // save settings for current page; if (next && typeof pages[currentPage].onPageClosed !== 'undefined') { if (pages[currentPage].onPageClosed(settings) !== true) { @@ -79,7 +78,7 @@ Rectangle { }; } - print ("switchpage: currentPage: ", currentPage); + console.log("switchpage: currentPage: ", currentPage); if (currentPage > 0 || currentPage < pages.length - 1) { pages[currentPage].opacity = 0 diff --git a/wizard/WizardRecoveryWallet.qml b/wizard/WizardRecoveryWallet.qml index f4c5091e..837f9f86 100644 --- a/wizard/WizardRecoveryWallet.qml +++ b/wizard/WizardRecoveryWallet.qml @@ -76,7 +76,7 @@ Item { WizardManageWalletUI { id: uiItem - accountNameText: qsTr("My account name") + translationManager.emptyString + accountNameText: defaultAccountName titleText: qsTr("We're ready to recover your account") + translationManager.emptyString wordsTextTitle: qsTr("Please enter your 25 word private key") + translationManager.emptyString wordsTextItem.clipboardButtonVisible: false