From e7dd80087540444be5f2583794ddcc345b99fb1f Mon Sep 17 00:00:00 2001 From: ThomasV Date: Wed, 31 Aug 2016 08:50:31 +0200 Subject: [PATCH] tweak messages --- gui/qt/installwizard.py | 2 +- lib/base_wizard.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/gui/qt/installwizard.py b/gui/qt/installwizard.py index 49653a86..199bb0fb 100644 --- a/gui/qt/installwizard.py +++ b/gui/qt/installwizard.py @@ -291,7 +291,7 @@ class InstallWizard(QDialog, MessageBoxMixin, BaseWizard): self.app.clipboard().clear() title = _('Confirm Seed') message = ' '.join([ - _('Your seed is your wallet!'), + _('Your seed is important!'), _('If you lose your seed, your money will be permanently lost.'), _('To make sure that you have properly saved your seed, please retype it here.') ]) diff --git a/lib/base_wizard.py b/lib/base_wizard.py index 73b154ba..64f2aefe 100644 --- a/lib/base_wizard.py +++ b/lib/base_wizard.py @@ -249,8 +249,9 @@ class BaseWizard(object): def on_restore_seed(self, seed, is_bip39): if keystore.is_new_seed(seed) or is_bip39: message = '\n'.join([ - _('You may have extended your seed with a passphrase.'), + _('Your seed may have a passphrase.'), _('If that is the case, enter it here.'), + '\n', _('Note that this is NOT your encryption password.'), _('If you do not know what this is, leave this field empty.'), ])