From 19cee0e6c0cffcb685b84151dcdd675ea3c56c5e Mon Sep 17 00:00:00 2001 From: ThomasV Date: Sat, 1 Oct 2016 17:46:26 +0200 Subject: [PATCH] slightly change seed warning --- gui/qt/installwizard.py | 2 +- gui/qt/seed_dialog.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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())