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 #1185

Merged
merged 5 commits into from
Jun 27, 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
28 changes: 28 additions & 0 deletions RadixWallet/Core/Resources/Generated/L10n.generated.swift
Original file line number Diff line number Diff line change
Expand Up @@ -529,6 +529,8 @@ public enum L10n {
public static let behavior = L10n.tr("Localizable", "assetDetails_behavior", fallback: "Behavior")
/// Current Supply
public static let currentSupply = L10n.tr("Localizable", "assetDetails_currentSupply", fallback: "Current Supply")
/// For more info
public static let moreInfo = L10n.tr("Localizable", "assetDetails_moreInfo", fallback: "For more info")
/// Name
public static let name = L10n.tr("Localizable", "assetDetails_name", fallback: "Name")
/// Address
Expand Down Expand Up @@ -624,6 +626,12 @@ public enum L10n {
public static let whatArePoolUnits = L10n.tr("Localizable", "assetDetails_poolUnitDetails_whatArePoolUnits", fallback: "What are Pool units?")
}
public enum Staking {
/// Ready to Claim in
public static let readyToClaim = L10n.tr("Localizable", "assetDetails_staking_readyToClaim", fallback: "Ready to Claim in")
/// %d minutes or less
public static func readyToClaimMinutes(_ p1: Int) -> String {
return L10n.tr("Localizable", "assetDetails_staking_readyToClaimMinutes", p1, fallback: "%d minutes or less")
}
/// Ready to claim in about %d minutes or less.
public static func unstaking(_ p1: Int) -> String {
return L10n.tr("Localizable", "assetDetails_staking_unstaking", p1, fallback: "Ready to claim in about %d minutes or less.")
Expand Down Expand Up @@ -2197,6 +2205,26 @@ public enum L10n {
public static let vectorImageFailure = L10n.tr("Localizable", "misc_remoteThumbnails_vectorImageFailure", fallback: "Can't displays image of vector type")
}
}
public enum MobileConnect {
/// Switch back to your browser to continue
public static let interactionSuccess = L10n.tr("Localizable", "mobileConnect_interactionSuccess", fallback: "Switch back to your browser to continue")
/// Does the website address match what you’re expecting?
public static let linkBody1 = L10n.tr("Localizable", "mobileConnect_linkBody1", fallback: "Does the website address match what you’re expecting?")
/// If you came from a social media ad, is the website legitimate?
public static let linkBody2 = L10n.tr("Localizable", "mobileConnect_linkBody2", fallback: "If you came from a social media ad, is the website legitimate?")
/// Before you connect to %@, you might want to check:
public static func linkSubtitle(_ p1: Any) -> String {
return L10n.tr("Localizable", "mobileConnect_linkSubtitle", String(describing: p1), fallback: "Before you connect to %@, you might want to check:")
}
/// Have you come from a genuine website?
public static let linkTitle = L10n.tr("Localizable", "mobileConnect_linkTitle", fallback: "Have you come from a genuine website?")
public enum NoProfileDialog {
/// You can proceed with this request after you create or restore your Radix Wallet.
public static let subtitle = L10n.tr("Localizable", "mobileConnect_noProfileDialog_subtitle", fallback: "You can proceed with this request after you create or restore your Radix Wallet.")
/// dApp Request
public static let title = L10n.tr("Localizable", "mobileConnect_noProfileDialog_title", fallback: "dApp Request")
}
}
public enum Onboarding {
/// I'm a New Radix Wallet User
public static let newUser = L10n.tr("Localizable", "onboarding_newUser", fallback: "I'm a New Radix Wallet User")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,12 @@
"assetDetails_validator" = "Validator";
"assetDetails_name" = "Name";
"assetDetails_currentSupply" = "Current Supply";
"assetDetails_moreInfo" = "For more info";
"assetDetails_supplyUnkown" = "Unknown";
"assetDetails_behavior" = "Behavior";
"assetDetails_staking_unstaking" = "Ready to claim in about %d minutes or less.";
"assetDetails_staking_readyToClaim" = "Ready to Claim in";
"assetDetails_staking_readyToClaimMinutes" = "%d minutes or less";
"assetDetails_tags" = "Tags";
"assetDetails_tags_officialRadix" = "Official Radix";
"assetDetails_associatedDapps" = "Associated dApps";
Expand Down Expand Up @@ -1201,4 +1204,11 @@ Code: %@";
"securityProblems_common_accountSingular" = "1 account";
"securityProblems_common_accountPlural" = "%d accounts";
"securityProblems_common_personaSingular" = "1 persona";
"securityProblems_common_personaPlural" = "%d personas";
"securityProblems_common_personaPlural" = "%d personas";
"mobileConnect_noProfileDialog_title" = "dApp Request";
"mobileConnect_noProfileDialog_subtitle" = "You can proceed with this request after you create or restore your Radix Wallet.";
"mobileConnect_linkTitle" = "Have you come from a genuine website?";
"mobileConnect_linkSubtitle" = "Before you connect to %@, you might want to check:";
"mobileConnect_linkBody1" = "Does the website address match what you’re expecting?";
"mobileConnect_linkBody2" = "If you came from a social media ad, is the website legitimate?";
"mobileConnect_interactionSuccess" = "Switch back to your browser to continue";
Loading