Browse Source

Fix localization related issues with digitalbitbox

3.2.x
Johann Bauer 7 years ago
parent
commit
3c505660a6
  1. 83
      plugins/digitalbitbox/digitalbitbox.py

83
plugins/digitalbitbox/digitalbitbox.py

@ -106,7 +106,7 @@ class DigitalBitbox_Client():
def dbb_has_password(self): def dbb_has_password(self):
reply = self.hid_send_plain(b'{"ping":""}') reply = self.hid_send_plain(b'{"ping":""}')
if 'ping' not in reply: if 'ping' not in reply:
raise Exception('Device communication error. Please unplug and replug your Digital Bitbox.') raise Exception(_('Device communication error. Please unplug and replug your Digital Bitbox.'))
if reply['ping'] == 'password': if reply['ping'] == 'password':
return True return True
return False return False
@ -124,9 +124,11 @@ class DigitalBitbox_Client():
if password is None: if password is None:
return None return None
if len(password) < 4: if len(password) < 4:
msg = _("Password must have at least 4 characters.\r\n\r\nEnter password:") msg = _("Password must have at least 4 characters.") \
+ "\n\n" + _("Enter password:")
elif len(password) > 64: elif len(password) > 64:
msg = _("Password must have less than 64 characters.\r\n\r\nEnter password:") msg = _("Password must have less than 64 characters.") \
+ "\n\n" + _("Enter password:")
else: else:
return password.encode('utf8') return password.encode('utf8')
@ -137,9 +139,11 @@ class DigitalBitbox_Client():
if password is None: if password is None:
return False return False
if len(password) < 4: if len(password) < 4:
msg = _("Password must have at least 4 characters.\r\n\r\nEnter password:") msg = _("Password must have at least 4 characters.") + \
"\n\n" + _("Enter password:")
elif len(password) > 64: elif len(password) > 64:
msg = _("Password must have less than 64 characters.\r\n\r\nEnter password:") msg = _("Password must have less than 64 characters.") + \
"\n\n" + _("Enter password:")
else: else:
self.password = password.encode('utf8') self.password = password.encode('utf8')
return True return True
@ -150,10 +154,11 @@ class DigitalBitbox_Client():
if self.password is None and not self.dbb_has_password(): if self.password is None and not self.dbb_has_password():
if not self.setupRunning: if not self.setupRunning:
return False # A fresh device cannot connect to an existing wallet return False # A fresh device cannot connect to an existing wallet
msg = _("An uninitialized Digital Bitbox is detected. " \ msg = _("An uninitialized Digital Bitbox is detected.") + " " + \
"Enter a new password below.\r\n\r\n REMEMBER THE PASSWORD!\r\n\r\n" \ _("Enter a new password below.") + "\n\n" + \
"You cannot access your coins or a backup without the password.\r\n" \ _("REMEMBER THE PASSWORD!") + "\n\n" + \
"A backup is saved automatically when generating a new wallet.") _("You cannot access your coins or a backup without the password.") + "\n" + \
_("A backup is saved automatically when generating a new wallet.")
if self.password_dialog(msg): if self.password_dialog(msg):
reply = self.hid_send_plain(b'{"password":"' + self.password + b'"}') reply = self.hid_send_plain(b'{"password":"' + self.password + b'"}')
else: else:
@ -168,14 +173,14 @@ class DigitalBitbox_Client():
if 'error' in reply: if 'error' in reply:
self.password = None self.password = None
if reply['error']['code'] == 109: if reply['error']['code'] == 109:
msg = _("Incorrect password entered.\r\n\r\n" \ msg = _("Incorrect password entered.") + "\n\n" + \
+ reply['error']['message'] + "\r\n\r\n" \ + reply['error']['message'] + "\n\n" + \
"Enter your Digital Bitbox password:") _("Enter your Digital Bitbox password:")
else: else:
# Should never occur # Should never occur
msg = _("Unexpected error occurred.\r\n\r\n" \ msg = _("Unexpected error occurred.") + "\n\n" + \
+ reply['error']['message'] + "\r\n\r\n" \ + reply['error']['message'] + "\n\n" + \
"Enter your Digital Bitbox password:") _("Enter your Digital Bitbox password:")
# Initialize device if not yet initialized # Initialize device if not yet initialized
if not self.setupRunning: if not self.setupRunning:
@ -191,7 +196,7 @@ class DigitalBitbox_Client():
def recover_or_erase_dialog(self): def recover_or_erase_dialog(self):
msg = _("The Digital Bitbox is already seeded. Choose an option:\n") msg = _("The Digital Bitbox is already seeded. Choose an option:") + "\n"
choices = [ choices = [
(_("Create a wallet using the current seed")), (_("Create a wallet using the current seed")),
(_("Load a wallet from the micro SD card (the current seed is overwritten)")), (_("Load a wallet from the micro SD card (the current seed is overwritten)")),
@ -208,13 +213,13 @@ class DigitalBitbox_Client():
return return
else: else:
if self.hid_send_encrypt(b'{"device":"info"}')['device']['lock']: if self.hid_send_encrypt(b'{"device":"info"}')['device']['lock']:
raise Exception("Full 2FA enabled. This is not supported yet.") raise Exception(_("Full 2FA enabled. This is not supported yet."))
# Use existing seed # Use existing seed
self.isInitialized = True self.isInitialized = True
def seed_device_dialog(self): def seed_device_dialog(self):
msg = _("Choose how to initialize your Digital Bitbox:\n") msg = _("Choose how to initialize your Digital Bitbox:") + "\n"
choices = [ choices = [
(_("Generate a new random wallet")), (_("Generate a new random wallet")),
(_("Load a wallet from the micro SD card")) (_("Load a wallet from the micro SD card"))
@ -280,9 +285,9 @@ class DigitalBitbox_Client():
def dbb_erase(self): def dbb_erase(self):
self.handler.show_message(_("Are you sure you want to erase the Digital Bitbox?\r\n\r\n" \ self.handler.show_message(_("Are you sure you want to erase the Digital Bitbox?") + "\n\n" +
"To continue, touch the Digital Bitbox's light for 3 seconds.\r\n\r\n" \ _("To continue, touch the Digital Bitbox's light for 3 seconds.") + "\n\n" +
"To cancel, briefly touch the light or wait for the timeout.")) _("To cancel, briefly touch the light or wait for the timeout."))
hid_reply = self.hid_send_encrypt(b'{"reset":"__ERASE__"}') hid_reply = self.hid_send_encrypt(b'{"reset":"__ERASE__"}')
self.handler.finished() self.handler.finished()
if 'error' in hid_reply: if 'error' in hid_reply:
@ -305,9 +310,9 @@ class DigitalBitbox_Client():
raise Exception('Canceled by user') raise Exception('Canceled by user')
key = self.stretch_key(key) key = self.stretch_key(key)
if show_msg: if show_msg:
self.handler.show_message(_("Loading backup...\r\n\r\n" \ self.handler.show_message(_("Loading backup...") + "\n\n" +
"To continue, touch the Digital Bitbox's light for 3 seconds.\r\n\r\n" \ _("To continue, touch the Digital Bitbox's light for 3 seconds.") + "\n\n" +
"To cancel, briefly touch the light or wait for the timeout.")) _("To cancel, briefly touch the light or wait for the timeout."))
msg = b'{"seed":{"source": "backup", "key": "%s", "filename": "%s"}}' % (key, backups['backup'][f].encode('utf8')) msg = b'{"seed":{"source": "backup", "key": "%s", "filename": "%s"}}' % (key, backups['backup'][f].encode('utf8'))
hid_reply = self.hid_send_encrypt(msg) hid_reply = self.hid_send_encrypt(msg)
self.handler.finished() self.handler.finished()
@ -365,7 +370,7 @@ class DigitalBitbox_Client():
else: else:
self.hid_send_frame(msg) self.hid_send_frame(msg)
r = self.hid_read_frame() r = self.hid_read_frame()
r = r.rstrip(b' \t\r\n\0') r = r.rstrip(b' \t\n\0')
r = r.replace(b"\0", b'') r = r.replace(b"\0", b'')
r = to_string(r, 'utf8') r = to_string(r, 'utf8')
reply = json.loads(r) reply = json.loads(r)
@ -441,12 +446,12 @@ class DigitalBitbox_KeyStore(Hardware_KeyStore):
dbb_client = self.plugin.get_client(self) dbb_client = self.plugin.get_client(self)
if not dbb_client.is_paired(): if not dbb_client.is_paired():
raise Exception("Could not sign message.") raise Exception(_("Could not sign message."))
reply = dbb_client.hid_send_encrypt(msg) reply = dbb_client.hid_send_encrypt(msg)
self.handler.show_message(_("Signing message ...\r\n\r\n" \ self.handler.show_message(_("Signing message ...") + "\n\n" +
"To continue, touch the Digital Bitbox's blinking light for 3 seconds.\r\n\r\n" \ _("To continue, touch the Digital Bitbox's blinking light for 3 seconds.") + "\n\n" +
"To cancel, briefly touch the blinking light or wait for the timeout.")) _("To cancel, briefly touch the blinking light or wait for the timeout."))
reply = dbb_client.hid_send_encrypt(msg) # Send twice, first returns an echo for smart verification (not implemented) reply = dbb_client.hid_send_encrypt(msg) # Send twice, first returns an echo for smart verification (not implemented)
self.handler.finished() self.handler.finished()
@ -454,7 +459,7 @@ class DigitalBitbox_KeyStore(Hardware_KeyStore):
raise Exception(reply['error']['message']) raise Exception(reply['error']['message'])
if 'sign' not in reply: if 'sign' not in reply:
raise Exception("Could not sign message.") raise Exception(_("Could not sign message."))
if 'recid' in reply['sign'][0]: if 'recid' in reply['sign'][0]:
# firmware > v2.1.1 # firmware > v2.1.1
@ -463,7 +468,7 @@ class DigitalBitbox_KeyStore(Hardware_KeyStore):
pk = point_to_ser(pk.pubkey.point, compressed) pk = point_to_ser(pk.pubkey.point, compressed)
addr = public_key_to_p2pkh(pk) addr = public_key_to_p2pkh(pk)
if verify_message(addr, sig, message) is False: if verify_message(addr, sig, message) is False:
raise Exception("Could not sign message") raise Exception(_("Could not sign message"))
elif 'pubkey' in reply['sign'][0]: elif 'pubkey' in reply['sign'][0]:
# firmware <= v2.1.1 # firmware <= v2.1.1
for i in range(4): for i in range(4):
@ -475,7 +480,7 @@ class DigitalBitbox_KeyStore(Hardware_KeyStore):
except Exception: except Exception:
continue continue
else: else:
raise Exception("Could not sign message") raise Exception(_("Could not sign message"))
except BaseException as e: except BaseException as e:
@ -576,14 +581,14 @@ class DigitalBitbox_KeyStore(Hardware_KeyStore):
self.plugin.comserver_post_notification(reply) self.plugin.comserver_post_notification(reply)
if steps > 1: if steps > 1:
self.handler.show_message(_("Signing large transaction. Please be patient ...\r\n\r\n" \ self.handler.show_message(_("Signing large transaction. Please be patient ...") + "\n\n" +
"To continue, touch the Digital Bitbox's blinking light for 3 seconds. " \ _("To continue, touch the Digital Bitbox's blinking light for 3 seconds.") + " " +
"(Touch " + str(step + 1) + " of " + str(int(steps)) + ")\r\n\r\n" \ _("(Touch {} of {})").format((step + 1), steps) + "\n\n" +
"To cancel, briefly touch the blinking light or wait for the timeout.\r\n\r\n")) _("To cancel, briefly touch the blinking light or wait for the timeout.") + "\n\n")
else: else:
self.handler.show_message(_("Signing transaction ...\r\n\r\n" \ self.handler.show_message(_("Signing transaction...") + "\n\n" +
"To continue, touch the Digital Bitbox's blinking light for 3 seconds.\r\n\r\n" \ _("To continue, touch the Digital Bitbox's blinking light for 3 seconds.") + "\n\n" +
"To cancel, briefly touch the blinking light or wait for the timeout.")) _("To cancel, briefly touch the blinking light or wait for the timeout."))
# Send twice, first returns an echo for smart verification # Send twice, first returns an echo for smart verification
reply = dbb_client.hid_send_encrypt(msg) reply = dbb_client.hid_send_encrypt(msg)

Loading…
Cancel
Save