From 621a3abf6feee9aac4bbd59b409b9edfe669e1b2 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Sat, 2 Sep 2017 04:26:20 +0200 Subject: [PATCH] improve bip39 warning (#2833) --- gui/qt/seed_dialog.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/gui/qt/seed_dialog.py b/gui/qt/seed_dialog.py index 01802312..8b51a560 100644 --- 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([ - '' + _('Warning') + ': BIP39 seeds are dangerous!' + '

', - _('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.'), - '

', + '' + _('Warning') + ': ', + _('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 = ''