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

ABW-1705 Max button and fee selection #566

Merged
merged 4 commits into from
Jun 8, 2023
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
38 changes: 18 additions & 20 deletions Sources/Core/Resources/Generated/L10n.generated.swift
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ public enum L10n {
public static let accountSecurity = L10n.tr("Localizable", "accountSettings_accountSecurity", fallback: "Account Security")
/// Set how you want this Account to work
public static let accountSecuritySubtitle = L10n.tr("Localizable", "accountSettings_accountSecuritySubtitle", fallback: "Set how you want this Account to work")
/// Get RCnet XRD Test Tokens
public static let getXrdTestTokens = L10n.tr("Localizable", "accountSettings_getXrdTestTokens", fallback: "Get RCnet XRD Test Tokens")
/// Get XRD Test Tokens
public static let getXrdTestTokens = L10n.tr("Localizable", "accountSettings_getXrdTestTokens", fallback: "Get XRD Test Tokens")
/// Hide Account
public static let hideAccount = L10n.tr("Localizable", "accountSettings_hideAccount", fallback: "Hide Account")
/// This may take several seconds, please wait for completion
Expand All @@ -47,8 +47,8 @@ public enum L10n {
public static let showAssets = L10n.tr("Localizable", "accountSettings_showAssets", fallback: "Show Assets with Tags")
/// Select which tags to show for assets in this Account
public static let showAssetsSubtitle = L10n.tr("Localizable", "accountSettings_showAssetsSubtitle", fallback: "Select which tags to show for assets in this Account")
/// Show QR Code
public static let showQR = L10n.tr("Localizable", "accountSettings_showQR", fallback: "Show QR Code")
/// Show Account QR Code
public static let showQR = L10n.tr("Localizable", "accountSettings_showQR", fallback: "Show Account QR Code")
/// Third-party Deposits
public static let thirdPartyDeposits = L10n.tr("Localizable", "accountSettings_thirdPartyDeposits", fallback: "Third-party Deposits")
/// Account Settings
Expand Down Expand Up @@ -410,8 +410,8 @@ public enum L10n {
/// Open System Backup Settings
public static let openSystemBackupSettings = L10n.tr("Localizable", "backup_openSystemBackupSettings", fallback: "Open System Backup Settings")
public enum BackupWalletData {
/// Warning: If disabled, you might lose access to Accounts/Personas.
public static let message = L10n.tr("Localizable", "backup_backupWalletData_message", fallback: "Warning: If disabled, you might lose access to Accounts/Personas.")
/// Warning: If disabled you might lose access to your Accounts and Personas.
public static let message = L10n.tr("Localizable", "backup_backupWalletData_message", fallback: "Warning: If disabled you might lose access to your Accounts and Personas.")
/// Backup Wallet Data
public static let title = L10n.tr("Localizable", "backup_backupWalletData_title", fallback: "Backup Wallet Data")
}
Expand Down Expand Up @@ -954,8 +954,8 @@ public enum L10n {
public static let title = L10n.tr("Localizable", "generalSettings_developerMode_title", fallback: "Developer Mode")
}
public enum ProfileSync {
/// Warning: If disabled you might lose access to accounts/personas.
public static let subtitle = L10n.tr("Localizable", "generalSettings_profileSync_subtitle", fallback: "Warning: If disabled you might lose access to accounts/personas.")
/// Warning: If disabled you might lose access to your Accounts and Personas.
public static let subtitle = L10n.tr("Localizable", "generalSettings_profileSync_subtitle", fallback: "Warning: If disabled you might lose access to your Accounts and Personas.")
/// Sync Wallet Data to iCloud
public static let title = L10n.tr("Localizable", "generalSettings_profileSync_title", fallback: "Sync Wallet Data to iCloud")
}
Expand Down Expand Up @@ -1243,8 +1243,8 @@ public enum L10n {
}
}
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")
/// I'm a New Radix Wallet User
public static let newUser = L10n.tr("Localizable", "onboarding_newUser", fallback: "I'm a New Radix Wallet User")
/// Restore Wallet from Backup
public static let restoreFromBackup = L10n.tr("Localizable", "onboarding_restoreFromBackup", fallback: "Restore Wallet from Backup")
public enum Step1 {
Expand Down Expand Up @@ -1492,16 +1492,14 @@ public enum L10n {
public static let navigationTitle = L10n.tr("Localizable", "transactionReview_prepareForSigning_navigationTitle", fallback: "Preparing Transaction")
}
public enum SelectFeePayer {
/// The transaction you are about to sign does not involve any of your accounts so you must choose an account to pay the transaction fee with.
public static let body = L10n.tr("Localizable", "transactionReview_selectFeePayer_body", fallback: "The transaction you are about to sign does not involve any of your accounts so you must choose an account to pay the transaction fee with.")
/// Confirm Fee Payer
public static let confirmButton = L10n.tr("Localizable", "transactionReview_selectFeePayer_confirmButton", fallback: "Confirm Fee Payer")
/// Select Fee Payer
public static let navigationTitle = L10n.tr("Localizable", "transactionReview_selectFeePayer_navigationTitle", fallback: "Select Fee Payer")
/// Select account to pay %@ tx fee with
public static func selectAccount(_ p1: Any) -> String {
return L10n.tr("Localizable", "transactionReview_selectFeePayer_selectAccount", String(describing: p1), fallback: "Select account to pay %@ tx fee with")
}
/// Please select an Account with enough XRD to pay 10 XRD fee for this transaction.
public static let body = L10n.tr("Localizable", "transactionReview_selectFeePayer_body", fallback: "Please select an Account with enough XRD to pay 10 XRD fee for this transaction.")
/// Continue
public static let confirmButton = L10n.tr("Localizable", "transactionReview_selectFeePayer_confirmButton", fallback: "Continue")
/// Select Fee Account
public static let navigationTitle = L10n.tr("Localizable", "transactionReview_selectFeePayer_navigationTitle", fallback: "Select Fee Account")
/// Select Account:
public static let selectAccount = L10n.tr("Localizable", "transactionReview_selectFeePayer_selectAccount", fallback: "Select Account:")
}
public enum SubmitTransaction {
/// Successfully committed
Expand Down
Loading