bip39 passphrase wording changes to be more specific

This commit is contained in:
julian 2023-08-22 18:22:46 -06:00
parent 4f7f7d5797
commit 412fb73066
3 changed files with 9 additions and 8 deletions

View file

@ -288,9 +288,8 @@ class _NewWalletOptionsViewState extends ConsumerState<NewWalletOptionsView> {
RoundedWhiteContainer( RoundedWhiteContainer(
child: Center( child: Center(
child: Text( child: Text(
"You may protect the wallet seed with an optional passphrase. " "You may add a BIP39 passphrase. This is optional. "
"If you lose this passphrase you will not be able " "You will need BOTH you seed and your passphrase to recover the wallet.",
"to restore using just your seed words.",
style: Util.isDesktop style: Util.isDesktop
? STextStyles.desktopTextExtraSmall(context) ? STextStyles.desktopTextExtraSmall(context)
.copyWith( .copyWith(
@ -322,7 +321,7 @@ class _NewWalletOptionsViewState extends ConsumerState<NewWalletOptionsView> {
enableSuggestions: false, enableSuggestions: false,
autocorrect: false, autocorrect: false,
decoration: standardInputDecoration( decoration: standardInputDecoration(
"Recovery phrase password", "BIP39 passphrase",
passwordFocusNode, passwordFocusNode,
context, context,
).copyWith( ).copyWith(

View file

@ -535,7 +535,7 @@ class _RestoreOptionsViewState extends ConsumerState<RestoreOptionsView> {
enableSuggestions: false, enableSuggestions: false,
autocorrect: false, autocorrect: false,
decoration: standardInputDecoration( decoration: standardInputDecoration(
"Recovery phrase password", "BIP39 passphrase",
passwordFocusNode, passwordFocusNode,
context, context,
).copyWith( ).copyWith(
@ -586,7 +586,9 @@ class _RestoreOptionsViewState extends ConsumerState<RestoreOptionsView> {
RoundedWhiteContainer( RoundedWhiteContainer(
child: Center( child: Center(
child: Text( child: Text(
"If the recovery phrase you are about to restore was created with an optional passphrase you can enter it here.", "If the recovery phrase you are about to restore "
"was created with an optional BIP39 passphrase "
"you can enter it here.",
style: isDesktop style: isDesktop
? STextStyles.desktopTextExtraSmall(context) ? STextStyles.desktopTextExtraSmall(context)
.copyWith( .copyWith(

View file

@ -113,7 +113,7 @@ class _VerifyMnemonicPassphraseDialogState
children: [ children: [
if (!Util.isDesktop) if (!Util.isDesktop)
Text( Text(
"Verify mnemonic passphrase", "Verify BIP39 passphrase",
style: STextStyles.pageTitleH2(context), style: STextStyles.pageTitleH2(context),
), ),
const SizedBox( const SizedBox(
@ -136,7 +136,7 @@ class _VerifyMnemonicPassphraseDialogState
enableSuggestions: false, enableSuggestions: false,
autocorrect: false, autocorrect: false,
decoration: standardInputDecoration( decoration: standardInputDecoration(
"Recovery phrase password", "Enter your BIP39 passphrase",
passwordFocusNode, passwordFocusNode,
context, context,
).copyWith( ).copyWith(