timproved help text - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 12c08f4f8c673d45cbf4f51267f80914a7e0cd4f DIR parent 30f592864b5b553d3ea36a3217035416d6881d2a HTML Author: ThomasV <thomasv@gitorious> Date: Sat, 5 Oct 2013 12:16:44 +0200 improved help text Diffstat: M gui/qt/network_dialog.py | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) --- DIR diff --git a/gui/qt/network_dialog.py b/gui/qt/network_dialog.py t@@ -51,9 +51,9 @@ class NetworkDialog(QDialog): status = _("Not connected") if network.is_connected(): - status += "\n" + _("Electrum server:") + " %s"%(interface.host) + status += "\n" + _("Server:") + " %s"%(interface.host) else: - status += "\n" + _("Disconnected from history server") + status += "\n" + _("Disconnected from server") else: import random t@@ -73,7 +73,10 @@ class NetworkDialog(QDialog): hbox.addWidget(l) hbox.addWidget(QLabel(status)) hbox.addStretch(50) - hbox.addWidget(HelpButton(_("Electrum connects to several servers in order to download block headers and find out the longest blockchain. However, your wallet addresses are sent to a single server, in order to receive your transaction history."))) + msg = _("Electrum sends your wallet addresses to a single server, in order to receive your transaction history.") + "\n\n" \ + + _("In addition, Electrum connects to several nodes in order to download block headers and find out the longest blockchain.") + " " \ + + _("This blockchain is used to verify your transactions.") + hbox.addWidget(HelpButton(msg)) vbox.addLayout(hbox) # grid layout t@@ -102,8 +105,9 @@ class NetworkDialog(QDialog): self.autocycle_cb.setChecked(self.config.get('auto_cycle', True)) grid.addWidget(self.autocycle_cb, 1, 1, 1, 2) if not self.config.is_modifiable('auto_cycle'): self.autocycle_cb.setEnabled(False) - grid.addWidget(HelpButton(_("If this is enabled, Electrum will always use a server that is on the the longest blockchain.")), 1, 3) - + msg = _("If this option is enabled, Electrum will always use a server that is on the the longest blockchain.") + " " \ + + _("If it is disabled, Electrum will warn you if your server is lagging.") + grid.addWidget(HelpButton(msg), 1, 3) grid.addWidget(self.server_host, 2, 1, 1, 2) grid.addWidget(self.server_port, 2, 3)