restored initial text (users should know what seed means), and added a warning agains...
authorthomasv <thomasv@gitorious>
Tue, 2 Oct 2012 11:41:38 +0000 (13:41 +0200)
committerthomasv <thomasv@gitorious>
Tue, 2 Oct 2012 11:41:38 +0000 (13:41 +0200)
lib/gui_qt.py

index 2207a6e..a21209c 100644 (file)
@@ -926,9 +926,11 @@ class ElectrumWindow(QMainWindow):
 
         brainwallet = ' '.join(mnemonic.mn_encode(seed))
 
-        msg = _('<p>"%s"</p>'
-                "<p>If you memorise or write down these 12 words, you will always be able to recover your wallet.</p>"
-                "<p>This is called a 'BrainWallet'. The order of words is important. Case does not matter (capitals or lowercase).</p>") % brainwallet
+        msg =   _("Your wallet generation seed is") +":<p>\"" + brainwallet + "\"<p>" \
+              + _("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.") + "<p>" \
+              + _("WARNING: Never disclose your seed. Never type it on a website.") + "<p>"
+
         main_text = QLabel(msg)
         main_text.setWordWrap(True)