tadd help message for hrdware devices on windows - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 33a32be576002de26808a1b5878d41924e982dc8 DIR parent c2142ebf262650ebe585c74553094d76594efe21 HTML Author: ThomasV <thomasv@electrum.org> Date: Tue, 21 Mar 2017 10:07:31 +0100 add help message for hrdware devices on windows Diffstat: M lib/base_wizard.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) --- DIR diff --git a/lib/base_wizard.py b/lib/base_wizard.py t@@ -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