Skip to content

Commit

Permalink
New Crowdin updates (#1276)
Browse files Browse the repository at this point in the history
Co-authored-by: kugel3 <gustaf.kugelberg@rdx.works>
  • Loading branch information
radixbot and kugel3 committed Aug 8, 2024
1 parent 2cd26ed commit 19a6da7
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
16 changes: 16 additions & 0 deletions RadixWallet/Core/Resources/Generated/L10n.generated.swift
Original file line number Diff line number Diff line change
Expand Up @@ -2786,6 +2786,10 @@ public enum L10n {
/// Seed Phrase
public static let headingScan = L10n.tr("Localizable", "seedPhrases_seedPhrase_headingScan", fallback: "Seed Phrase")
/// Connected to %d Accounts
public static func multipleConnectedAccounts(_ p1: Int) -> String {
return L10n.tr("Localizable", "seedPhrases_seedPhrase_multipleConnectedAccounts", p1, fallback: "Connected to %d Accounts")
}
/// Connected to %d Accounts
public static func multipleConnectedAccountsReveal(_ p1: Int) -> String {
return L10n.tr("Localizable", "seedPhrases_seedPhrase_multipleConnectedAccountsReveal", p1, fallback: "Connected to %d Accounts")
}
Expand All @@ -2794,10 +2798,14 @@ public enum L10n {
return L10n.tr("Localizable", "seedPhrases_seedPhrase_multipleConnectedAccountsScan", p1, fallback: "Currently connected to %d Accounts")
}
/// Not connected to any Accounts
public static let noConnectedAccounts = L10n.tr("Localizable", "seedPhrases_seedPhrase_noConnectedAccounts", fallback: "Not connected to any Accounts")
/// Not connected to any Accounts
public static let noConnectedAccountsReveal = L10n.tr("Localizable", "seedPhrases_seedPhrase_noConnectedAccountsReveal", fallback: "Not connected to any Accounts")
/// Not yet connected to any Accounts
public static let noConnectedAccountsScan = L10n.tr("Localizable", "seedPhrases_seedPhrase_noConnectedAccountsScan", fallback: "Not yet connected to any Accounts")
/// Connected to 1 Account
public static let oneConnectedAccount = L10n.tr("Localizable", "seedPhrases_seedPhrase_oneConnectedAccount", fallback: "Connected to 1 Account")
/// Connected to 1 Account
public static let oneConnectedAccountReveal = L10n.tr("Localizable", "seedPhrases_seedPhrase_oneConnectedAccountReveal", fallback: "Connected to 1 Account")
/// Currently connected to 1 Account
public static let oneConnectedAccountScan = L10n.tr("Localizable", "seedPhrases_seedPhrase_oneConnectedAccountScan", fallback: "Currently connected to 1 Account")
Expand Down Expand Up @@ -3090,6 +3098,14 @@ public enum L10n {
/// Review New Deposit Settings
public static let title = L10n.tr("Localizable", "transactionReview_accountDepositSettings_title", fallback: "Review New Deposit Settings")
}
public enum FeePayerValidation {
/// Fee payer account required
public static let feePayerRequired = L10n.tr("Localizable", "transactionReview_feePayerValidation_feePayerRequired", fallback: "Fee payer account required")
/// Not enough XRD for transaction fee
public static let insufficientBalance = L10n.tr("Localizable", "transactionReview_feePayerValidation_insufficientBalance", fallback: "Not enough XRD for transaction fee")
/// Fee payer account required
public static let linksNewAccount = L10n.tr("Localizable", "transactionReview_feePayerValidation_linksNewAccount", fallback: "Fee payer account required")
}
public enum Guarantees {
/// Apply
public static let applyButtonText = L10n.tr("Localizable", "transactionReview_guarantees_applyButtonText", fallback: "Apply")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -434,6 +434,9 @@
"transactionReview_claimFromValidatorsHeading" = "Claim from validators";
"transactionReview_poolContributionHeading" = "Contributing to pools";
"transactionReview_poolRedemptionHeading" = "Redeeming from pools";
"transactionReview_feePayerValidation_insufficientBalance" = "Not enough XRD for transaction fee";
"transactionReview_feePayerValidation_feePayerRequired" = "Fee payer account required";
"transactionReview_feePayerValidation_linksNewAccount" = "Fee payer account required";
"transactionReview_networkFee_heading" = "Transaction Fee";
"transactionReview_networkFee_congestedText" = "The network is currently congested. Add a tip to speed up your transfer.";
"transactionReview_networkFee_customizeButtonTitle" = "Customize";
Expand Down Expand Up @@ -769,6 +772,9 @@ Code: %@";
"seedPhrases_seedPhrase_noConnectedAccountsScan" = "Not yet connected to any Accounts";
"seedPhrases_seedPhrase_oneConnectedAccountScan" = "Currently connected to 1 Account";
"seedPhrases_seedPhrase_multipleConnectedAccountsScan" = "Currently connected to %d Accounts";
"seedPhrases_seedPhrase_noConnectedAccounts" = "Not connected to any Accounts";
"seedPhrases_seedPhrase_oneConnectedAccount" = "Connected to 1 Account";
"seedPhrases_seedPhrase_multipleConnectedAccounts" = "Connected to %d Accounts";
"appSettings_title" = "App Settings";
"appSettings_subtitle" = "Customize your Radix Wallet";
"appSettings_linkedConnectors_title" = "Linked Connectors";
Expand Down

0 comments on commit 19a6da7

Please sign in to comment.