slightly change seed warning

This commit is contained in:
ThomasV 2016-10-01 17:46:26 +02:00
parent fac1c2673b
commit 19cee0e6c0
2 changed files with 3 additions and 3 deletions

View File

@ -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)

View File

@ -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())