From c479261043f566b72e9f3a5e388f236f94d1652c Mon Sep 17 00:00:00 2001 From: thomasv Date: Tue, 2 Oct 2012 13:41:38 +0200 Subject: [PATCH] restored initial text (users should know what seed means), and added a warning against phishing --- lib/gui_qt.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/lib/gui_qt.py b/lib/gui_qt.py index 2207a6e1..a21209cf 100644 --- a/lib/gui_qt.py +++ b/lib/gui_qt.py @@ -926,9 +926,11 @@ class ElectrumWindow(QMainWindow): brainwallet = ' '.join(mnemonic.mn_encode(seed)) - msg = _('

"%s"

' - "

If you memorise or write down these 12 words, you will always be able to recover your wallet.

" - "

This is called a 'BrainWallet'. The order of words is important. Case does not matter (capitals or lowercase).

") % brainwallet + msg = _("Your wallet generation seed is") +":

\"" + brainwallet + "\"

" \ + + _("Please write down or memorize these 12 words (order is important).") + " " \ + + _("This seed will allow you to recover your wallet in case of computer failure.") + "

" \ + + _("WARNING: Never disclose your seed. Never type it on a website.") + "

" + main_text = QLabel(msg) main_text.setWordWrap(True)