From e3c19b12e3f0184160ff51387127e492bea188ca Mon Sep 17 00:00:00 2001 From: rdymac <1rdymac@MacBook-Air-de-Randy.local> Date: Thu, 10 Oct 2013 03:54:13 +0200 Subject: [PATCH] typo typo --- gui/qt/network_dialog.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/qt/network_dialog.py b/gui/qt/network_dialog.py index 7b09a8176..fa0fbaa0c 100644 --- a/gui/qt/network_dialog.py +++ b/gui/qt/network_dialog.py @@ -104,7 +104,7 @@ class NetworkDialog(QDialog): self.autocycle_cb.setChecked(self.config.get('auto_cycle', True)) grid.addWidget(self.autocycle_cb, 0, 1) if not self.config.is_modifiable('auto_cycle'): self.autocycle_cb.setEnabled(False) - msg = _("If auto-connect is enabled, Electrum will always use a server that is on the the longest blockchain.") + " " \ + msg = _("If auto-connect is enabled, Electrum will always use a server that is on the longest blockchain.") + " " \ + _("If it is disabled, Electrum will warn you if your server is lagging.") grid.addWidget(HelpButton(msg), 0, 4)