Update wallet branding from Electrum to Pallectrum

Update all instances of 'Electrum Bitcoin Wallet' to 'Pallectrum Wallet' and
'Bitcoin' to 'Palladium' in UI strings to reflect new branding
This commit is contained in:
2025-11-21 09:20:13 +01:00
parent ef2fa3fcf3
commit 55d5cfbd35
2 changed files with 5 additions and 5 deletions

View File

@@ -36,7 +36,7 @@ class QEServerConnectWizard(ServerConnectWizard, QEAbstractWizard):
class WCWelcome(WizardComponent):
def __init__(self, parent, wizard):
WizardComponent.__init__(self, parent, wizard, title='Network Configuration')
self.wizard_title = _('Electrum Bitcoin Wallet')
self.wizard_title = _('Pallectrum Wallet')
self.first_help_label = QLabel()
self.first_help_label.setText(_("Optional settings to customize your network connection") + ":")

View File

@@ -243,7 +243,7 @@ class WalletWizardComponent(WizardComponent, ABC):
class WCWalletName(WalletWizardComponent, Logger):
def __init__(self, parent, wizard):
WalletWizardComponent.__init__(self, parent, wizard, title=_('Electrum wallet'))
WalletWizardComponent.__init__(self, parent, wizard, title=_('Pallectrum wallet'))
Logger.__init__(self)
path = wizard._path
@@ -392,7 +392,7 @@ class WCWalletType(WalletWizardComponent):
ChoiceItem(key='standard', label=_('Standard wallet')),
ChoiceItem(key='2fa', label=_('Wallet with two-factor authentication')),
ChoiceItem(key='multisig', label=_('Multi-signature wallet')),
ChoiceItem(key='imported', label=_('Import Bitcoin addresses or private keys')),
ChoiceItem(key='imported', label=_('Import Palladium addresses or private keys')),
]
choices = [c for c in wallet_kinds if c.key in wallet_types]
@@ -961,9 +961,9 @@ class WCMultisig(WalletWizardComponent):
class WCImport(WalletWizardComponent):
def __init__(self, parent, wizard):
WalletWizardComponent.__init__(self, parent, wizard, title=_('Import Bitcoin Addresses or Private Keys'))
WalletWizardComponent.__init__(self, parent, wizard, title=_('Import Palladium Addresses or Private Keys'))
message = _(
'Enter a list of Bitcoin addresses (this will create a watching-only wallet), or a list of private keys.')
'Enter a list of Palladium addresses (this will create a watching-only wallet), or a list of private keys.')
header_layout = QHBoxLayout()
label = WWLabel(message)
label.setMinimumWidth(400)