1
0

use the word 'extension' instead of 'passphrase'

This commit is contained in:
ThomasV
2016-10-10 17:11:46 +02:00
parent 49df834974
commit d12661a385
3 changed files with 9 additions and 9 deletions

View File

@@ -256,7 +256,7 @@ class InstallWizard(QDialog, MessageBoxMixin, BaseWizard):
vbox.addStretch(1)
vbox.addWidget(QLabel(_('Options') + ':'))
if self.opt_ext:
cb_pass = QCheckBox(_('Add a passphrase to this seed'))
cb_pass = QCheckBox(_('Add an extension to this seed'))
vbox.addWidget(cb_pass)
if self.opt_bip39:
def f(b):
@@ -325,7 +325,7 @@ class InstallWizard(QDialog, MessageBoxMixin, BaseWizard):
vbox.addLayout(slayout.layout())
vbox.addStretch(1)
vbox.addWidget(QLabel(_('Option') + ':'))
cb_pass = QCheckBox(_('Add a passphrase to this seed'))
cb_pass = QCheckBox(_('Add an extension to this seed'))
vbox.addWidget(cb_pass)
self.set_main_layout(vbox)
return cb_pass.isChecked()

View File

@@ -152,7 +152,7 @@ class ShowSeedLayout(SeedLayoutBase):
passphrase_e = QLineEdit()
passphrase_e.setText(passphrase)
passphrase_e.setReadOnly(True)
hbox.addWidget(QLabel('Your seed passphrase is'))
hbox.addWidget(QLabel('Your seed extension is') + ':')
hbox.addWidget(passphrase_e)
vbox.addLayout(hbox)
msg = seed_warning_msg(seed)