From 78fbc27ec0835781f91ef9db67ab756ddbe57643 Mon Sep 17 00:00:00 2001 From: Sander van Grieken Date: Fri, 22 Sep 2023 12:13:21 +0200 Subject: [PATCH] qt: remove potentially confusing reference to 'install wizard' in trezor, keepkey, safe_t hww settings dialogs --- electrum/plugins/keepkey/qt.py | 10 +++++----- electrum/plugins/safe_t/qt.py | 10 +++++----- electrum/plugins/trezor/qt.py | 10 +++++----- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/electrum/plugins/keepkey/qt.py b/electrum/plugins/keepkey/qt.py index efeefdc13..014cce74c 100644 --- a/electrum/plugins/keepkey/qt.py +++ b/electrum/plugins/keepkey/qt.py @@ -414,14 +414,14 @@ class SettingsDialog(WindowModalDialog): msg = _("After disabling passphrases, you can only pair this " "Electrum wallet if it had an empty passphrase. " "If its passphrase was not empty, you will need to " - "create a new wallet with the install wizard. You " - "can use this wallet again at any time by re-enabling " - "passphrases and entering its passphrase.") + "create a new wallet. You can use this wallet again " + "at any time by re-enabling passphrases and entering " + "its passphrase.") else: msg = _("Your current Electrum wallet can only be used with " "an empty passphrase. You must create a separate " - "wallet with the install wizard for other passphrases " - "as each one generates a new set of addresses.") + "wallet for other passphrases as each one generates " + "a new set of addresses.") msg += "\n\n" + _("Are you sure you want to proceed?") if not self.question(msg, title=title): return diff --git a/electrum/plugins/safe_t/qt.py b/electrum/plugins/safe_t/qt.py index 1c29f234d..1595d40ad 100644 --- a/electrum/plugins/safe_t/qt.py +++ b/electrum/plugins/safe_t/qt.py @@ -292,14 +292,14 @@ class SettingsDialog(WindowModalDialog): msg = _("After disabling passphrases, you can only pair this " "Electrum wallet if it had an empty passphrase. " "If its passphrase was not empty, you will need to " - "create a new wallet with the install wizard. You " - "can use this wallet again at any time by re-enabling " - "passphrases and entering its passphrase.") + "create a new wallet. You can use this wallet again " + "at any time by re-enabling passphrases and entering " + "its passphrase.") else: msg = _("Your current Electrum wallet can only be used with " "an empty passphrase. You must create a separate " - "wallet with the install wizard for other passphrases " - "as each one generates a new set of addresses.") + "wallet for other passphrases as each one generates " + "a new set of addresses.") msg += "\n\n" + _("Are you sure you want to proceed?") if not self.question(msg, title=title): return diff --git a/electrum/plugins/trezor/qt.py b/electrum/plugins/trezor/qt.py index 9e68b59ec..649b31dae 100644 --- a/electrum/plugins/trezor/qt.py +++ b/electrum/plugins/trezor/qt.py @@ -553,14 +553,14 @@ class SettingsDialog(WindowModalDialog): msg = _("After disabling passphrases, you can only pair this " "Electrum wallet if it had an empty passphrase. " "If its passphrase was not empty, you will need to " - "create a new wallet with the install wizard. You " - "can use this wallet again at any time by re-enabling " - "passphrases and entering its passphrase.") + "create a new wallet. You can use this wallet again " + "at any time by re-enabling passphrases and entering " + "its passphrase.") else: msg = _("Your current Electrum wallet can only be used with " "an empty passphrase. You must create a separate " - "wallet with the install wizard for other passphrases " - "as each one generates a new set of addresses.") + "wallet for other passphrases as each one generates " + "a new set of addresses.") msg += "\n\n" + _("Are you sure you want to proceed?") if not self.question(msg, title=title): return