URI: 
       tenable some translations in base_wizard.py - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit aeee5e907c5252169e621222beb7ace0f980bef7
   DIR parent 6d88eab005c306eb9fda6249cf387656c56a2122
  HTML Author: SomberNight <somber.night@protonmail.com>
       Date:   Fri,  5 Jan 2018 13:42:06 +0100
       
       enable some translations in base_wizard.py
       
       Diffstat:
         M lib/base_wizard.py                  |      10 +++++-----
       
       1 file changed, 5 insertions(+), 5 deletions(-)
       ---
   DIR diff --git a/lib/base_wizard.py b/lib/base_wizard.py
       t@@ -294,7 +294,7 @@ class BaseWizard(object):
                    self.run('create_keystore', seed, '')
                elif self.seed_type == '2fa':
                    if self.is_kivy:
       -                self.show_error('2FA seeds are not supported in this version')
       +                self.show_error(_('2FA seeds are not supported in this version'))
                        self.run('restore_from_seed')
                    else:
                        self.load_2fa()
       t@@ -386,10 +386,10 @@ class BaseWizard(object):
            def choose_seed_type(self):
                title = _('Choose Seed type')
                message = ' '.join([
       -            "The type of addresses used by your wallet will depend on your seed.",
       -            "Segwit wallets use bech32 addresses, defined in BIP173.",
       -            "Please note that websites and other wallets may not support these addresses yet.",
       -            "Thus, you might want to keep using a non-segwit wallet in order to be able to receive bitcoins during the transition period."
       +            _("The type of addresses used by your wallet will depend on your seed."),
       +            _("Segwit wallets use bech32 addresses, defined in BIP173."),
       +            _("Please note that websites and other wallets may not support these addresses yet."),
       +            _("Thus, you might want to keep using a non-segwit wallet in order to be able to receive bitcoins during the transition period.")
                ])
                choices = [
                    ('create_standard_seed', _('Standard')),