tslightly change seed warning - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 19cee0e6c0cffcb685b84151dcdd675ea3c56c5e DIR parent fac1c2673b04882ee4c1a6e579536f640eac07a2 HTML Author: ThomasV <thomasv@electrum.org> Date: Sat, 1 Oct 2016 17:46:26 +0200 slightly change seed warning Diffstat: M gui/qt/installwizard.py | 2 +- M gui/qt/seed_dialog.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) --- DIR diff --git a/gui/qt/installwizard.py b/gui/qt/installwizard.py t@@ -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) DIR diff --git a/gui/qt/seed_dialog.py b/gui/qt/seed_dialog.py t@@ -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())