diff options
| author | rating89us <45968869+rating89us@users.noreply.github.com> | 2020-10-17 17:53:52 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-10-17 17:53:52 +0200 |
| commit | baa0ffa5f9e913aca2f502c39253abeb3f907be0 (patch) | |
| tree | fe6495f3ab6bd817552a1994ef56d77cfdc334a7 | |
| parent | cb1f3ad0ce228b9c272df76838754e303b074a32 (diff) | |
| download | monzero-gui-baa0ffa5f9e913aca2f502c39253abeb3f907be0.tar.gz monzero-gui-baa0ffa5f9e913aca2f502c39253abeb3f907be0.tar.xz monzero-gui-baa0ffa5f9e913aca2f502c39253abeb3f907be0.zip | |
WizardRestoreWallet1: add view-only option in placeholder of private spend key
| -rw-r--r-- | wizard/WizardRestoreWallet1.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wizard/WizardRestoreWallet1.qml b/wizard/WizardRestoreWallet1.qml index 838e2d00..b9b0b9a1 100644 --- a/wizard/WizardRestoreWallet1.qml +++ b/wizard/WizardRestoreWallet1.qml @@ -262,7 +262,7 @@ Rectangle { visible: wizardController.walletRestoreMode === 'keys' Layout.fillWidth: true placeholderFontSize: 16 - placeholderText: qsTr("Spend key (private)") + translationManager.emptyString + placeholderText: qsTr("Spend key (private)") + " / " + qsTr("Leave blank to create a view-only wallet") + translationManager.emptyString onTextUpdated: { wizardRestoreWallet1.verifyFromKeys(); |
