slightly change seed warning
This commit is contained in:
@@ -324,7 +324,7 @@ class InstallWizard(QDialog, MessageBoxMixin, BaseWizard):
|
|||||||
slayout = CreateSeedLayout(seed_text)
|
slayout = CreateSeedLayout(seed_text)
|
||||||
vbox.addLayout(slayout.layout())
|
vbox.addLayout(slayout.layout())
|
||||||
vbox.addStretch(1)
|
vbox.addStretch(1)
|
||||||
vbox.addWidget(QLabel('<b>'+_('Option') + '</b>:'))
|
vbox.addWidget(QLabel(_('Option') + ':'))
|
||||||
cb_pass = QCheckBox(_('Add a passphrase to this seed'))
|
cb_pass = QCheckBox(_('Add a passphrase to this seed'))
|
||||||
vbox.addWidget(cb_pass)
|
vbox.addWidget(cb_pass)
|
||||||
self.set_main_layout(vbox)
|
self.set_main_layout(vbox)
|
||||||
|
|||||||
@@ -76,11 +76,11 @@ def seed_warning_msg(seed):
|
|||||||
_("This seed will allow you to recover your wallet in case "
|
_("This seed will allow you to recover your wallet in case "
|
||||||
"of computer failure."),
|
"of computer failure."),
|
||||||
"</p>",
|
"</p>",
|
||||||
"<b>" + _("WARNING") + ":</b> ",
|
"<b>" + _("WARNING") + ":</b>",
|
||||||
"<ul>",
|
"<ul>",
|
||||||
"<li>" + _("Never disclose your seed.") + "</li>",
|
"<li>" + _("Never disclose your seed.") + "</li>",
|
||||||
"<li>" + _("Never type it on a website.") + "</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>"
|
"</ul>"
|
||||||
]) % len(seed.split())
|
]) % len(seed.split())
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user