From 9ebcaa41f4e229cac69269d96f3ddecd3b7da6aa Mon Sep 17 00:00:00 2001 From: ecdsa Date: Sat, 16 Mar 2013 12:02:34 +0100 Subject: [PATCH] modify warning displayed when keys are imported --- gui/gui_classic.py | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/gui/gui_classic.py b/gui/gui_classic.py index 14b75c4..2ac67c5 100644 --- a/gui/gui_classic.py +++ b/gui/gui_classic.py @@ -1813,8 +1813,9 @@ class ElectrumWindow(QMainWindow): @protected def do_import_privkey(self, password): if not self.wallet.imported_keys: - r = QMessageBox.question(None, _('Warning'), _('Warning: Imported keys are not recoverable from seed.') + ' ' \ - + _('If you ever need to restore your wallet from its seed, these keys will be lost.') + '\n\n' \ + r = QMessageBox.question(None, _('Warning'), ''+_('Warning') +':\n
'+ _('Imported keys are not recoverable from seed.') + ' ' \ + + _('If you ever need to restore your wallet from its seed, these keys will be lost.') + '

' \ + + _('In addition, when you send bitcoins from one of your imported addresses, the "change" will be sent to an address derived from your seed, unless you disabled this option.') + '

' \ + _('Are you sure you understand what you are doing?'), 3, 4) if r == 4: return -- 1.7.1