diff --git a/gui/qt/installwizard.py b/gui/qt/installwizard.py index 991addd8..c172a125 100644 --- a/gui/qt/installwizard.py +++ b/gui/qt/installwizard.py @@ -324,7 +324,7 @@ class InstallWizard(QDialog, MessageBoxMixin, BaseWizard): slayout = CreateSeedLayout(seed_text) vbox.addLayout(slayout.layout()) vbox.addStretch(1) - vbox.addWidget(QLabel(''+_('Option') + ':')) + vbox.addWidget(QLabel(_('Option') + ':')) cb_pass = QCheckBox(_('Add a passphrase to this seed')) vbox.addWidget(cb_pass) self.set_main_layout(vbox) diff --git a/gui/qt/seed_dialog.py b/gui/qt/seed_dialog.py index c8d8ee60..926acdcb 100644 --- a/gui/qt/seed_dialog.py +++ b/gui/qt/seed_dialog.py @@ -76,11 +76,11 @@ def seed_warning_msg(seed): _("This seed will allow you to recover your wallet in case " "of computer failure."), "

", - "" + _("WARNING") + ": ", + "" + _("WARNING") + ":", "" ]) % len(seed.split())