|
|
@ -256,6 +256,19 @@ class InstallWizard(QDialog, MessageBoxMixin, BaseWizard): |
|
|
|
vbox.addStretch(1) |
|
|
|
vbox.addWidget(QLabel(_('Options') + ':')) |
|
|
|
def f(b): |
|
|
|
if b: |
|
|
|
msg = ' '.join([ |
|
|
|
'<b>' + _('Warning') + '</b>' + ': ', |
|
|
|
_('BIP39 seeds may not be supported in the future.'), |
|
|
|
'<br/><br/>', |
|
|
|
_('As technology matures, Bitcoin address generation may change.'), |
|
|
|
_('However, BIP39 seeds do not include a version number.'), |
|
|
|
_('As a result, it is not possible to infer your wallet type from a BIP39 seed.'), |
|
|
|
'<br/><br/>', |
|
|
|
_('We do not guarantee that BIP39 seeds will be supported in future versions of Electrum.'), |
|
|
|
_('We recommend to use seeds generated by Electrum or compatible wallets.'), |
|
|
|
]) |
|
|
|
self.show_warning(msg) |
|
|
|
slayout.is_seed = (lambda x: bool(x)) if b else is_seed |
|
|
|
slayout.on_edit() |
|
|
|
cb_bip39 = QCheckBox(_('BIP39 seed')) |
|
|
|