tmore help - electrum - Electrum Bitcoin wallet
HTML git clone https://git.parazyd.org/electrum
DIR Log
DIR Files
DIR Refs
DIR Submodules
---
DIR commit 22eaff950889c4b4dcf538168b2848828512522f
DIR parent ba17188d609eff9a55e133fdfdab65fb9bbed465
HTML Author: thomasv <thomasv@gitorious>
Date: Sun, 15 Sep 2013 12:41:02 +0200
more help
Diffstat:
M gui/gui_classic/main_window.py | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
---
DIR diff --git a/gui/gui_classic/main_window.py b/gui/gui_classic/main_window.py
t@@ -1369,7 +1369,11 @@ class ElectrumWindow(QMainWindow):
addr = self.wallet.new_account_address()
vbox = QVBoxLayout()
- vbox.addWidget(QLabel(_("Electrum considers that an account exists only if it contains bitcoins.") + '\n' + _("To create a new account, please send coins to the first address of that account:")))
+ msg = _("Electrum considers that an account exists only if it contains bitcoins.") + '\n' \
+ + _("To create a new account, please send coins to the first address of that account.") + '\n' \
+ + _("Note: you will need to wait for 2 confirmations before the account is created.")
+ vbox.addWidget(QLabel(msg))
+ vbox.addWidget(QLabel(_('Address')+':'))
e = QLineEdit(addr)
e.setReadOnly(True)
vbox.addWidget(e)