From 672ad209b1624669ba65e81c02b7ddedd131e8fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Buczek?= Date: Sat, 26 Feb 2022 00:44:49 +0100 Subject: [PATCH] Ref #5023: Add copy for ticket #5023. This is so we can order translations before code for #5023 is ready. --- BraveWallet/WalletStrings.swift | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/BraveWallet/WalletStrings.swift b/BraveWallet/WalletStrings.swift index cc7e3b3e7a0..3971cc9d675 100644 --- a/BraveWallet/WalletStrings.swift +++ b/BraveWallet/WalletStrings.swift @@ -1779,5 +1779,33 @@ extension Strings { value: "No Networks Added", comment: "The empty state displayed when the user has not yet added any custom networks." ) + public static let transactionBacklogTitle = NSLocalizedString( + "wallet.transactionBacklogTitle", + tableName: "BraveWallet", + bundle: .braveWallet, + value: "Transaction backlog", + comment: "Title of confirmation prompt when there's a backlog of wallet transactions" + ) + public static let transactionBacklogBody = NSLocalizedString( + "wallet.transactionBacklogBody", + tableName: "BraveWallet", + bundle: .braveWallet, + value: "You're attempting to start a new transaction while you have previously submitted transactions that have not been confirmed. This will block any new ones from being submitted.", + comment: "Text body of confirmation prompt when there's a backlog of wallet transactions" + ) + public static let transactionBacklogAcknowledgement = NSLocalizedString( + "wallet.transactionBacklogAcknowledgement", + tableName: "BraveWallet", + bundle: .braveWallet, + value: "Clear & replace the incomplete transaction(s)", + comment: "Text of checkbox for a confirmation prompt when there's a backlog of wallet transactions" + ) + public static let transactionBacklogLearnMoreButton = NSLocalizedString( + "wallet.transactionBacklogLearnMoreButton", + tableName: "BraveWallet", + bundle: .braveWallet, + value: "Learn More.", + comment: "Button to learn more about incomplete/pending wallet transactions." + ) } }