electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit 33a32be576002de26808a1b5878d41924e982dc8
parent c2142ebf262650ebe585c74553094d76594efe21
Author: ThomasV <thomasv@electrum.org>
Date:   Tue, 21 Mar 2017 10:07:31 +0100

add help message for hrdware devices on windows

Diffstat:
Mlib/base_wizard.py | 8+++++---
1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/lib/base_wizard.py b/lib/base_wizard.py @@ -190,9 +190,11 @@ class BaseWizard(object): continue devices += map(lambda x: (name, x), u) if not devices: - msg = '\n'.join([ - _('No hardware device detected.'), - _('To trigger a rescan, press \'next\'.'), + msg = ''.join([ + _('No hardware device detected.') + '\n', + _('To trigger a rescan, press \'Next\'.') + '\n\n', + _('If your device is not detected on Windows, go to "Settings", "Devices", "Connected devices", and do "Remove device". Then, plug your device again.') + ' ', + _('On Linux, you might have to add a new permission to your udev rules.'), ]) self.confirm_dialog(title=title, message=msg, run_next= lambda x: self.choose_hw_device()) return