commit 621a3abf6feee9aac4bbd59b409b9edfe669e1b2
parent 4276eebaf03a526e7e57f963226502f198e1c4b5
Author: ThomasV <thomasv@electrum.org>
Date: Sat, 2 Sep 2017 04:26:20 +0200
improve bip39 warning (#2833)
Diffstat:
1 file changed, 4 insertions(+), 5 deletions(-)
diff --git a/gui/qt/seed_dialog.py b/gui/qt/seed_dialog.py
@@ -71,12 +71,11 @@ class SeedLayout(QVBoxLayout):
self.is_bip39 = b
if b:
msg = ' '.join([
- '<b>' + _('Warning') + ': BIP39 seeds are dangerous!' + '</b><br/><br/>',
- _('BIP39 seeds can be imported in Electrum so that users can access funds locked in other wallets.'),
- _('However, BIP39 seeds do not include a version number, which compromises compatibility with future wallet software.'),
- '<br/><br/>',
+ '<b>' + _('Warning') + ':</b> ',
+ _('BIP39 seeds can be imported in Electrum, so that users can access funds locked in other wallets.'),
+ _('However, we do not generate BIP39 seeds, because they do not meet our safety standard.'),
+ _('BIP39 seeds do not include a version number, which compromises compatibility with future software.'),
_('We do not guarantee that BIP39 imports will always be supported in Electrum.'),
- _('In addition, Electrum does not verify the checksum of BIP39 seeds; make sure you type your seed correctly.'),
])
else:
msg = ''