URI: 
       ttrezor: add msg text for passphrase type request - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 811eea0b6bfd1429396eee3b36ce680b3c1e2df2
   DIR parent c03d68d758f8ee40d3b61a64605ead779e6f5eb3
  HTML Author: SomberNight <somber.night@protonmail.com>
       Date:   Sat,  5 May 2018 18:05:27 +0200
       
       ttrezor: add msg text for passphrase type request
       
       Diffstat:
         M plugins/trezor/clientbase.py        |       2 ++
       
       1 file changed, 2 insertions(+), 0 deletions(-)
       ---
   DIR diff --git a/plugins/trezor/clientbase.py b/plugins/trezor/clientbase.py
       t@@ -10,6 +10,7 @@ from electrum.bitcoin import serialize_xpub
        class GuiMixin(object):
            # Requires: self.proto, self.device
        
       +    # ref: https://github.com/trezor/trezor-common/blob/44dfb07cfaafffada4b2ce0d15ba1d90d17cf35e/protob/types.proto#L89
            messages = {
                3: _("Confirm the transaction output on your {} device"),
                4: _("Confirm internal entropy on your {} device to begin"),
       t@@ -19,6 +20,7 @@ class GuiMixin(object):
                8: _("Confirm the total amount spent and the transaction fee on your "
                     "{} device"),
                10: _("Confirm wallet address on your {} device"),
       +        14: _("Choose on your {} device where to enter your passphrase"),
                'default': _("Check your {} device to continue"),
            }