From 55d5cfbd3505edaa3bbac3519976b90c71d972cc Mon Sep 17 00:00:00 2001 From: Davide Grilli Date: Fri, 21 Nov 2025 09:20:13 +0100 Subject: [PATCH] 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 --- electrum/gui/qt/wizard/server_connect.py | 2 +- electrum/gui/qt/wizard/wallet.py | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/electrum/gui/qt/wizard/server_connect.py b/electrum/gui/qt/wizard/server_connect.py index c7a5f3d2b..63f025ee4 100644 --- a/electrum/gui/qt/wizard/server_connect.py +++ b/electrum/gui/qt/wizard/server_connect.py @@ -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") + ":") diff --git a/electrum/gui/qt/wizard/wallet.py b/electrum/gui/qt/wizard/wallet.py index 67cc26ffe..8e2129abe 100644 --- a/electrum/gui/qt/wizard/wallet.py +++ b/electrum/gui/qt/wizard/wallet.py @@ -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)