commit 19cee0e6c0cffcb685b84151dcdd675ea3c56c5e
parent fac1c2673b04882ee4c1a6e579536f640eac07a2
Author: ThomasV <thomasv@electrum.org>
Date: Sat, 1 Oct 2016 17:46:26 +0200
slightly change seed warning
Diffstat:
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git 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('<b>'+_('Option') + '</b>:'))
+ 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
@@ -76,11 +76,11 @@ def seed_warning_msg(seed):
_("This seed will allow you to recover your wallet in case "
"of computer failure."),
"</p>",
- "<b>" + _("WARNING") + ":</b> ",
+ "<b>" + _("WARNING") + ":</b>",
"<ul>",
"<li>" + _("Never disclose your seed.") + "</li>",
"<li>" + _("Never type it on a website.") + "</li>",
- "<li>" + _("Do not send your seed to a printer.") + "</li>",
+ "<li>" + _("Do not store it electronically.") + "</li>",
"</ul>"
]) % len(seed.split())