From f537f02e1f9ea7b1ea1e505f08e49b25a7bd7b9d Mon Sep 17 00:00:00 2001 From: ecdsa Date: Wed, 13 Mar 2013 21:00:29 +0100 Subject: [PATCH] better seed dialog --- gui/gui_classic.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/gui/gui_classic.py b/gui/gui_classic.py index a56df6e6f..8f0477af1 100644 --- a/gui/gui_classic.py +++ b/gui/gui_classic.py @@ -1606,20 +1606,22 @@ class ElectrumWindow(QMainWindow): d.setModal(1) vbox = QVBoxLayout() - msg = _("Please enter your wallet seed or the corresponding mnemonic list of words, and the gap limit of your wallet.") + msg = _("Please enter your wallet seed (or your master public key if you want to create a watching-only wallet)." + '\n') vbox.addWidget(QLabel(msg)) grid = QGridLayout() grid.setSpacing(8) seed_e = QLineEdit() - grid.addWidget(QLabel(_('Seed or mnemonic')), 1, 0) + grid.addWidget(QLabel(_('Seed or master public key')), 1, 0) grid.addWidget(seed_e, 1, 1) + grid.addWidget(HelpButton(_("Your seed can be entered as a mnemonic (sequence of words), or as a hexadecimal string.")), 1, 3) gap_e = QLineEdit() gap_e.setText("5") grid.addWidget(QLabel(_('Gap limit')), 2, 0) grid.addWidget(gap_e, 2, 1) + grid.addWidget(HelpButton(_('Keep the default value unless you modified this parameter in your wallet.')), 2, 3) gap_e.textChanged.connect(lambda: numbify(gap_e,True)) vbox.addLayout(grid)