Update seed import warnings to reference Pallectrum instead of Electrum

This commit is contained in:
2025-12-04 12:08:52 +01:00
parent 012a0968ff
commit 452b3e08bc

View File

@@ -233,15 +233,15 @@ class SeedWidget(QWidget):
if self.seed_type == 'bip39':
message = ' '.join([
'<b>' + _('Warning') + ':</b> ',
_('BIP39 seeds can be imported in Electrum, so that users can access funds locked in other wallets.'),
_('BIP39 seeds can be imported in Pallectrum, 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.'),
_('We do not guarantee that BIP39 imports will always be supported in Pallectrum.'),
])
elif self.seed_type == 'slip39':
message = ' '.join([
'<b>' + _('Warning') + ':</b> ',
_('SLIP39 seeds can be imported in Electrum, so that users can access funds locked in other wallets.'),
_('SLIP39 seeds can be imported in Pallectrum, so that users can access funds locked in other wallets.'),
_('However, we do not generate SLIP39 seeds.'),
])
else: