From e802eb088e3a9c41e5c5f668619bb82cd606fc2a Mon Sep 17 00:00:00 2001 From: Davide Grilli Date: Wed, 26 Nov 2025 16:04:13 +0100 Subject: [PATCH] Update warning message for watch-only wallets to reference Palladium --- electrum/gui/qt/main_window.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/electrum/gui/qt/main_window.py b/electrum/gui/qt/main_window.py index 93afde394..176754b8b 100644 --- a/electrum/gui/qt/main_window.py +++ b/electrum/gui/qt/main_window.py @@ -645,8 +645,8 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, Logger, QtEventListener): if self.wallet.is_watching_only(): msg = ' '.join([ _("This wallet is watching-only."), - _("This means you will not be able to spend Bitcoins with it."), - _("Make sure you own the seed phrase or the private keys, before you request Bitcoins to be sent to this wallet.") + _("This means you will not be able to spend Palladium with it."), + _("Make sure you own the seed phrase or the private keys, before you request Palladium to be sent to this wallet.") ]) self.show_warning(msg, title=_('Watch-only wallet'))