From 2882c4be46bcb1b229d942071c63a38c9af3fb3f Mon Sep 17 00:00:00 2001 From: Sander van Grieken Date: Tue, 6 Feb 2024 10:59:59 +0100 Subject: [PATCH] qt: consistency HWW wizard page translations --- electrum/plugins/keepkey/qt.py | 6 +++--- electrum/plugins/safe_t/qt.py | 6 +++--- electrum/plugins/trezor/qt.py | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/electrum/plugins/keepkey/qt.py b/electrum/plugins/keepkey/qt.py index 014cce74c..198b2375c 100644 --- a/electrum/plugins/keepkey/qt.py +++ b/electrum/plugins/keepkey/qt.py @@ -604,7 +604,7 @@ class SettingsDialog(WindowModalDialog): class WCKeepkeyInitMethod(WizardComponent): def __init__(self, parent, wizard): - WizardComponent.__init__(self, parent, wizard, title=_('HW Setup')) + WizardComponent.__init__(self, parent, wizard, title=_('KeepKey Setup')) def on_ready(self): _name, _info = self.wizard_data['hardware_device'] @@ -635,7 +635,7 @@ class WCKeepkeyInitMethod(WizardComponent): class WCKeepkeyInitParams(WizardComponent): def __init__(self, parent, wizard): - WizardComponent.__init__(self, parent, wizard, title=_('Set-up keepkey')) + WizardComponent.__init__(self, parent, wizard, title=_('KeepKey Setup')) self.plugins = wizard.plugins self._busy = True @@ -658,7 +658,7 @@ class WCKeepkeyInitParams(WizardComponent): class WCKeepkeyInit(WizardComponent, Logger): def __init__(self, parent, wizard): - WizardComponent.__init__(self, parent, wizard, title=_('Set-up Keepkey')) + WizardComponent.__init__(self, parent, wizard, title=_('KeepKey Setup')) Logger.__init__(self) self.plugins = wizard.plugins self.plugin = self.plugins.get_plugin('keepkey') diff --git a/electrum/plugins/safe_t/qt.py b/electrum/plugins/safe_t/qt.py index 08142476a..40f778989 100644 --- a/electrum/plugins/safe_t/qt.py +++ b/electrum/plugins/safe_t/qt.py @@ -536,7 +536,7 @@ class SettingsDialog(WindowModalDialog): class WCSafeTInitMethod(WizardComponent): def __init__(self, parent, wizard): - WizardComponent.__init__(self, parent, wizard, title=_('HW Setup')) + WizardComponent.__init__(self, parent, wizard, title=_('Safe-T Setup')) def on_ready(self): _name, _info = self.wizard_data['hardware_device'] @@ -567,7 +567,7 @@ class WCSafeTInitMethod(WizardComponent): class WCSafeTInitParams(WizardComponent): def __init__(self, parent, wizard): - WizardComponent.__init__(self, parent, wizard, title=_('Set-up safe-t')) + WizardComponent.__init__(self, parent, wizard, title=_('Safe-T Setup')) self.plugins = wizard.plugins self._busy = True @@ -590,7 +590,7 @@ class WCSafeTInitParams(WizardComponent): class WCSafeTInit(WizardComponent, Logger): def __init__(self, parent, wizard): - WizardComponent.__init__(self, parent, wizard, title=_('Set-up safe-t')) + WizardComponent.__init__(self, parent, wizard, title=_('Safe-T Setup')) Logger.__init__(self) self.plugins = wizard.plugins self.plugin = self.plugins.get_plugin('safe_t') diff --git a/electrum/plugins/trezor/qt.py b/electrum/plugins/trezor/qt.py index 43dfe8a01..cd8c81c27 100644 --- a/electrum/plugins/trezor/qt.py +++ b/electrum/plugins/trezor/qt.py @@ -813,7 +813,7 @@ class WCTrezorXPub(WCHWXPub): class WCTrezorInitMethod(WizardComponent, Logger): def __init__(self, parent, wizard): - WizardComponent.__init__(self, parent, wizard, title=_('HW Setup')) + WizardComponent.__init__(self, parent, wizard, title=_('Trezor Setup')) Logger.__init__(self) self.plugins = wizard.plugins self.plugin = None @@ -848,7 +848,7 @@ class WCTrezorInitMethod(WizardComponent, Logger): class WCTrezorInitParams(WizardComponent): def __init__(self, parent, wizard): - WizardComponent.__init__(self, parent, wizard, title=_('Set-up trezor')) + WizardComponent.__init__(self, parent, wizard, title=_('Trezor Setup')) self.plugins = wizard.plugins self._busy = True @@ -867,7 +867,7 @@ class WCTrezorInitParams(WizardComponent): class WCTrezorInit(WizardComponent, Logger): def __init__(self, parent, wizard): - WizardComponent.__init__(self, parent, wizard, title=_('Set-up trezor')) + WizardComponent.__init__(self, parent, wizard, title=_('Trezor Setup')) Logger.__init__(self) self.plugins = wizard.plugins self.plugin = self.plugins.get_plugin('trezor')