tinstallwizard: don't repeat same info - electrum - Electrum Bitcoin wallet
HTML git clone https://git.parazyd.org/electrum
DIR Log
DIR Files
DIR Refs
DIR Submodules
---
DIR commit 0eead383322274378ff755cbd4e2e0b2704c9464
DIR parent 8a887273f6654a09347c5aeb2402ee90e89ca881
HTML Author: ThomasV <thomasv@gitorious>
Date: Tue, 17 Dec 2013 07:06:58 +0100
installwizard: don't repeat same info
Diffstat:
M gui/qt/installwizard.py | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
---
DIR diff --git a/gui/qt/installwizard.py b/gui/qt/installwizard.py
t@@ -39,7 +39,8 @@ class InstallWizard(QDialog):
grid = QGridLayout()
grid.setSpacing(5)
- msg = _("Electrum could not find an existing wallet.")+"\n\n"+_("Did you use Electrum before and want to restore a previous wallet or is this your first time and do you want to create a new wallet?")+"\n"
+ msg = _("Electrum could not find an existing wallet.") + "\n\n" \
+ + _("What do you want to do?") + "\n"
label = QLabel(msg)
label.setWordWrap(True)
grid.addWidget(label, 0, 0)
t@@ -51,7 +52,7 @@ class InstallWizard(QDialog):
b1.setChecked(True)
b2 = QRadioButton(gb)
- b2.setText(_("Restore wallet from seed"))
+ b2.setText(_("Restore an existing wallet from its seed"))
b3 = QRadioButton(gb)
b3.setText(_("Create a watching-only version of an existing wallet"))