Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New Crowdin updates #1279

Merged
merged 4 commits into from
Aug 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions RadixWallet/Core/Resources/Generated/L10n.generated.swift
Original file line number Diff line number Diff line change
Expand Up @@ -721,6 +721,12 @@ public enum L10n {
/// Scan Account QR Code
public static let scanQRNavigationTitle = L10n.tr("Localizable", "assetTransfer_chooseReceivingAccount_scanQRNavigationTitle", fallback: "Scan Account QR Code")
}
public enum DepositStatus {
/// Recipient does not accept these tokens
public static let denied = L10n.tr("Localizable", "assetTransfer_depositStatus_denied", fallback: "Recipient does not accept these tokens")
/// Additional signature required to deposit
public static let signatureRequired = L10n.tr("Localizable", "assetTransfer_depositStatus_signatureRequired", fallback: "Additional signature required to deposit")
}
public enum Error {
/// Total amount exceeds your current balance
public static let insufficientBalance = L10n.tr("Localizable", "assetTransfer_error_insufficientBalance", fallback: "Total amount exceeds your current balance")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -710,6 +710,8 @@ Code: %@";
"assetTransfer_maxAmountDialog_sendAllButton" = "%@ (send all XRD)";
"assetTransfer_maxAmountDialog_saveXrdForFeeButton" = "%@ (save 1 XRD for fee)";
"assetTransfer_extraSignature_label" = "You will be asked for an extra signature";
"assetTransfer_depositStatus_signatureRequired" = "Additional signature required to deposit";
"assetTransfer_depositStatus_denied" = "Recipient does not accept these tokens";
"importOlympiaLedgerAccounts_title" = "Verify With Ledger Device";
"importOlympiaLedgerAccounts_subtitle" = "You are attempting to import one or more Olympia accounts that must be verified with a Ledger hardware wallet device.";
"importOlympiaLedgerAccounts_listHeading" = "Already verified Ledger devices:";
Expand Down
Loading