[#1193] Restore: update the copy inside the input field

- The input field for the recovery phrase now shows the expected format in the placeholder.
This commit is contained in:
Lukas Korba 2024-04-16 08:57:45 +02:00
parent ecad037103
commit 16d3499c30
3 changed files with 4 additions and 3 deletions

View File

@ -15,6 +15,7 @@ directly impact users rather than highlighting other crucial architectural updat
### Changed
- Zashi requires 1 GB of free space to operate. We have updated the user experience to display a message when this requirement is not met, indicating the actual amount of free space available. From this screen, you can access the settings to obtain the recovery phrase if needed.
- The height of syncing label has been unified to never change the overall component's' height based on different states.
- The input field for the recovery phrase now shows the expected format in the placeholder.
## 1.0.4 build 2 (2024-03-29)

View File

@ -162,8 +162,8 @@ public enum L10n {
/// Enter secret
/// recovery phrase
public static let description = L10n.tr("Localizable", "importWallet.description", fallback: "Enter secret\nrecovery phrase")
/// Enter private seed here
public static let enterPlaceholder = L10n.tr("Localizable", "importWallet.enterPlaceholder", fallback: "Enter private seed here…")
/// privacy dignity freedom ...
public static let enterPlaceholder = L10n.tr("Localizable", "importWallet.enterPlaceholder", fallback: "privacy dignity freedom ...")
/// Enter your 24-word seed phrase to restore the associated wallet.
public static let message = L10n.tr("Localizable", "importWallet.message", fallback: "Enter your 24-word seed phrase to restore the associated wallet.")
/// (optional)

View File

@ -43,7 +43,7 @@
"importWallet.alert.failed.title" = "Failed to restore wallet";
"importWallet.alert.failed.message" = "Error: %@";
"importWallet.optionalBirthday" = "(optional)";
"importWallet.enterPlaceholder" = "Enter private seed here…";
"importWallet.enterPlaceholder" = "privacy dignity freedom ...";
// MARK: - Tabs
"tabs.account" = "Account";