[#1053] Improve successful restore message

- text has been updated
This commit is contained in:
Lukas Korba 2024-02-15 13:13:29 +01:00
parent 10eb66f1a2
commit 4639e4fc84
2 changed files with 3 additions and 3 deletions

View File

@ -198,8 +198,8 @@ public enum L10n {
public static let title = L10n.tr("Localizable", "importWallet.alert.failed.title", fallback: "Failed to restore wallet") public static let title = L10n.tr("Localizable", "importWallet.alert.failed.title", fallback: "Failed to restore wallet")
} }
public enum Success { public enum Success {
/// The wallet has been successfully recovered. /// Your wallet has been successfully restored! During the initial sync, your funds cannot be spent or sent. Depending on the age of your wallet, it may take a few hours to fully sync.
public static let message = L10n.tr("Localizable", "importWallet.alert.success.message", fallback: "The wallet has been successfully recovered.") public static let message = L10n.tr("Localizable", "importWallet.alert.success.message", fallback: "Your wallet has been successfully restored! During the initial sync, your funds cannot be spent or sent. Depending on the age of your wallet, it may take a few hours to fully sync.")
/// Success /// Success
public static let title = L10n.tr("Localizable", "importWallet.alert.success.title", fallback: "Success") public static let title = L10n.tr("Localizable", "importWallet.alert.success.title", fallback: "Success")
} }

View File

@ -75,7 +75,7 @@
"importWallet.birthday.title" = "Wallet birthday height"; "importWallet.birthday.title" = "Wallet birthday height";
"importWallet.seed.valid" = "VALID SEED PHRASE"; "importWallet.seed.valid" = "VALID SEED PHRASE";
"importWallet.alert.success.title" = "Success"; "importWallet.alert.success.title" = "Success";
"importWallet.alert.success.message" = "The wallet has been successfully recovered."; "importWallet.alert.success.message" = "Your wallet has been successfully restored! During the initial sync, your funds cannot be spent or sent. Depending on the age of your wallet, it may take a few hours to fully sync.";
"importWallet.alert.failed.title" = "Failed to restore wallet"; "importWallet.alert.failed.title" = "Failed to restore wallet";
"importWallet.alert.failed.message" = "Error: %@ (code: %@)"; "importWallet.alert.failed.message" = "Error: %@ (code: %@)";
"importWallet.optionalBirthday" = "(optional)"; "importWallet.optionalBirthday" = "(optional)";