1
0

Trezor: better messages during initialization

This commit is contained in:
Neil Booth
2016-01-22 20:37:49 +09:00
parent 1e030706cb
commit a7cb66d31e
3 changed files with 29 additions and 23 deletions

View File

@@ -61,7 +61,7 @@ class GuiMixin(object):
def callback_WordRequest(self, msg):
self.step += 1
msg = _("Step %d/24. Enter seed word as explained on "
"your %s") % (self.step, self.device)
"your %s:") % (self.step, self.device)
word = self.handler.get_word(msg)
# Unfortunately the device can't handle self.proto.Cancel()
return self.proto.WordAck(word=word)