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

View file

@ -535,7 +535,7 @@ class _RestoreOptionsViewState extends ConsumerState<RestoreOptionsView> {
enableSuggestions: false,
autocorrect: false,
decoration: standardInputDecoration(
"Recovery phrase password",
"BIP39 passphrase",
passwordFocusNode,
context,
).copyWith(
@ -586,7 +586,9 @@ class _RestoreOptionsViewState extends ConsumerState<RestoreOptionsView> {
RoundedWhiteContainer(
child: Center(
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
? STextStyles.desktopTextExtraSmall(context)
.copyWith(

View file

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