diff --git a/gui/qt/installwizard.py b/gui/qt/installwizard.py index 1c72e347..72a6e9b5 100644 --- a/gui/qt/installwizard.py +++ b/gui/qt/installwizard.py @@ -288,8 +288,8 @@ class InstallWizard(QDialog, MessageBoxMixin, BaseWizard): def add_cosigner_dialog(self, run_next, index, is_valid): title = _("Add Cosigner") + " %d"%index message = ' '.join([ - _('Please enter the master public key of your cosigner.'), - _('Enter their seed or master private key if you want to be able to sign for them.') + _('Please enter the master public key (xpub) of your cosigner.'), + _('Enter their master private key (xprv) if you want to be able to sign for them.') ]) return self.text_input(title, message, is_valid) diff --git a/lib/base_wizard.py b/lib/base_wizard.py index 60167f67..0b7b80b9 100644 --- a/lib/base_wizard.py +++ b/lib/base_wizard.py @@ -129,6 +129,7 @@ class BaseWizard(object): message = _('Add a cosigner to your multi-sig wallet') choices = [ ('restore_from_key', _('Enter cosigner key')), + ('restore_from_seed', _('Enter cosigner seed')), ] if not self.is_kivy: choices.append(('choose_hw_device', _('Cosign with hardware device')))