Updated on 2026-08-14

This commit is contained in:
Tangem 2023-04-20 11:41:10 +04:00
commit f58f67b7ff
19 changed files with 1659 additions and 1261 deletions

View file

@ -12,6 +12,7 @@ import com.tangem.tap.common.redux.navigation.FragmentShareTransition
import com.tangem.tap.features.addCustomToken.AddCustomTokenFragment
import com.tangem.tap.features.details.ui.appsettings.AppSettingsFragment
import com.tangem.tap.features.details.ui.cardsettings.CardSettingsFragment
import com.tangem.tap.features.details.ui.cardsettings.coderecovery.AccessCodeRecoveryFragment
import com.tangem.tap.features.details.ui.details.DetailsFragment
import com.tangem.tap.features.details.ui.resetcard.ResetCardFragment
import com.tangem.tap.features.details.ui.securitymode.SecurityModeFragment
@ -109,6 +110,7 @@ private fun fragmentFactory(screen: AppScreen): Fragment {
AppScreen.CardSettings -> CardSettingsFragment()
AppScreen.AppSettings -> AppSettingsFragment()
AppScreen.ResetToFactory -> ResetCardFragment()
AppScreen.AccessCodeRecovery -> AccessCodeRecoveryFragment()
AppScreen.Disclaimer -> DisclaimerFragment()
AppScreen.AddTokens -> {
val featureToggles = store.state.daggerGraphState.get(

View file

@ -18,7 +18,7 @@ enum class AppScreen(
OnboardingNote, OnboardingWallet, OnboardingTwins, OnboardingOther,
Wallet, WalletDetails,
Send,
Details, DetailsSecurity, CardSettings, AppSettings, ResetToFactory,
Details, DetailsSecurity, CardSettings, AppSettings, ResetToFactory, AccessCodeRecovery,
AddTokens, AddCustomToken,
WalletConnectSessions,
QrScan,

View file

@ -425,7 +425,7 @@ class DetailsMiddleware {
fun handle(state: DetailsState, action: DetailsAction.AccessCodeRecovery) {
when (action) {
is DetailsAction.AccessCodeRecovery.Open -> {
// store.dispatch(NavigationAction.NavigateTo(AppScreen.AccessCodeRecovery)) Todo: next PR
store.dispatch(NavigationAction.NavigateTo(AppScreen.AccessCodeRecovery))
}
is DetailsAction.AccessCodeRecovery.SaveChanges -> {
scope.launch {

View file

@ -120,6 +120,7 @@ fun CardSettings(state: CardSettingsScreenState) {
is CardInfo.SignedHashes -> 14.dp
is CardInfo.SecurityMode -> 16.dp
is CardInfo.ChangeAccessCode -> 16.dp
is CardInfo.AccessCodeRecovery -> 16.dp
is CardInfo.ResetToFactorySettings -> 28.dp
}
val paddingTop = when (it) {
@ -128,6 +129,7 @@ fun CardSettings(state: CardSettingsScreenState) {
is CardInfo.SignedHashes -> 12.dp
is CardInfo.SecurityMode -> 14.dp
is CardInfo.ChangeAccessCode -> 16.dp
is CardInfo.AccessCodeRecovery -> 16.dp
is CardInfo.ResetToFactorySettings -> 16.dp
}
Column(

View file

@ -4,6 +4,7 @@ import androidx.annotation.StringRes
import androidx.compose.runtime.Composable
import androidx.compose.runtime.ReadOnlyComposable
import androidx.compose.ui.res.stringResource
import com.tangem.tap.features.details.redux.AccessCodeRecoveryState
import com.tangem.tap.features.details.redux.SecurityOption
import com.tangem.tap.features.details.ui.securitymode.toTitleRes
import com.tangem.tap.features.details.ui.utils.toResetCardDescriptionText
@ -12,6 +13,7 @@ import com.tangem.tap.features.details.redux.CardInfo as ReduxCardInfo
data class CardSettingsScreenState(
val cardDetails: List<CardInfo>? = null,
val accessCodeRecoveryState: AccessCodeRecoveryState? = null,
val onScanCardClick: () -> Unit,
val onElementClick: (CardInfo) -> Unit,
)
@ -48,6 +50,16 @@ sealed class CardInfo(
clickable = true,
)
class AccessCodeRecovery(val enabled: Boolean) : CardInfo(
titleRes = TextReference.Res(R.string.card_settings_access_code_recovery_title),
subtitle = if (enabled) {
TextReference.Res(R.string.common_enabled)
} else {
TextReference.Res(R.string.common_disabled)
},
clickable = true,
)
class ResetToFactorySettings(cardInfo: ReduxCardInfo) : CardInfo(
titleRes = TextReference.Res(R.string.card_settings_reset_card_to_factory),
subtitle = cardInfo.toResetCardDescriptionText(),

View file

@ -16,6 +16,7 @@ class CardSettingsViewModel(private val store: Store<AppState>) {
return if (state?.manageSecurityState == null) {
CardSettingsScreenState(
cardDetails = null,
accessCodeRecoveryState = null,
onElementClick = {},
onScanCardClick = {
store.dispatch(DetailsAction.ScanCard)
@ -44,12 +45,15 @@ class CardSettingsViewModel(private val store: Store<AppState>) {
if (state.card.backupStatus?.isActive == true && state.card.isAccessCodeSet) {
cardDetails.add(CardInfo.ChangeAccessCode)
}
if (state.accessCodeRecovery != null) {
cardDetails.add(CardInfo.AccessCodeRecovery(state.accessCodeRecovery.enabledOnCard))
}
if (state.resetCardAllowed) {
cardDetails.add(CardInfo.ResetToFactorySettings(state.cardInfo))
}
CardSettingsScreenState(
cardDetails = cardDetails,
accessCodeRecoveryState = state.accessCodeRecovery,
onScanCardClick = { },
onElementClick = {
handleClickingItem(it)
@ -72,6 +76,9 @@ class CardSettingsViewModel(private val store: Store<AppState>) {
Analytics.send(Settings.CardSettings.ButtonChangeSecurityMode())
store.dispatch(DetailsAction.ManageSecurity.OpenSecurity)
}
is CardInfo.AccessCodeRecovery -> {
store.dispatch(DetailsAction.AccessCodeRecovery.Open)
}
else -> {}
}
}

View file

@ -0,0 +1,67 @@
package com.tangem.tap.features.details.ui.cardsettings.coderecovery
import android.os.Bundle
import android.view.LayoutInflater
import android.view.View
import android.view.ViewGroup
import androidx.compose.runtime.MutableState
import androidx.compose.runtime.mutableStateOf
import androidx.compose.ui.platform.ComposeView
import androidx.fragment.app.Fragment
import androidx.transition.TransitionInflater
import com.tangem.core.ui.res.TangemTheme
import com.tangem.tap.common.redux.navigation.NavigationAction
import com.tangem.tap.features.details.redux.DetailsState
import com.tangem.tap.store
import com.tangem.wallet.R
import org.rekotlin.StoreSubscriber
class AccessCodeRecoveryFragment : Fragment(), StoreSubscriber<DetailsState> {
private val viewModel = AccessCodeRecoveryViewModel(store)
private var screenState: MutableState<AccessCodeRecoveryScreenState> =
mutableStateOf(viewModel.updateState(store.state.detailsState.cardSettingsState?.accessCodeRecovery))
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
val inflater = TransitionInflater.from(requireContext())
enterTransition = inflater.inflateTransition(R.transition.fade)
exitTransition = inflater.inflateTransition(R.transition.fade)
}
override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?): View {
return ComposeView(requireContext()).apply {
setContent {
isTransitionGroup = true
TangemTheme {
AccessCodeRecoveryScreen(
state = screenState.value,
onBackClick = { store.dispatch(NavigationAction.PopBackTo()) },
)
}
}
}
}
override fun onStart() {
super.onStart()
store.subscribe(this) { state ->
state.skipRepeats { oldState, newState ->
oldState.detailsState == newState.detailsState
}.select { it.detailsState }
}
}
override fun onStop() {
super.onStop()
store.unsubscribe(this)
}
override fun newState(state: DetailsState) {
if (activity == null || view == null) return
screenState.value =
viewModel.updateState(store.state.detailsState.cardSettingsState?.accessCodeRecovery)
}
}

View file

@ -0,0 +1,64 @@
package com.tangem.tap.features.details.ui.cardsettings.coderecovery
import androidx.compose.foundation.layout.Arrangement
import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.Spacer
import androidx.compose.foundation.layout.fillMaxSize
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.rememberScrollState
import androidx.compose.foundation.verticalScroll
import androidx.compose.runtime.Composable
import androidx.compose.ui.Modifier
import androidx.compose.ui.res.stringResource
import com.tangem.core.ui.res.TangemTheme
import com.tangem.tap.features.details.ui.common.DetailsMainButton
import com.tangem.tap.features.details.ui.common.DetailsRadioButtonElement
import com.tangem.tap.features.details.ui.common.ScreenTitle
import com.tangem.tap.features.details.ui.common.SettingsScreensScaffold
import com.tangem.wallet.R
@Composable
fun AccessCodeRecoveryScreen(state: AccessCodeRecoveryScreenState, onBackClick: () -> Unit) {
SettingsScreensScaffold(
content = { AccessCodeRecoveryOptions(state = state) },
onBackClick = onBackClick,
)
}
@Composable
fun AccessCodeRecoveryOptions(state: AccessCodeRecoveryScreenState) {
Column(
modifier = Modifier
.fillMaxSize()
.verticalScroll(rememberScrollState())
.padding(bottom = TangemTheme.dimens.spacing28),
verticalArrangement = Arrangement.SpaceBetween,
) {
ScreenTitle(
titleRes = R.string.card_settings_access_code_recovery_title,
Modifier.padding(bottom = TangemTheme.dimens.spacing36),
)
DetailsRadioButtonElement(
title = stringResource(id = R.string.common_enabled),
subtitle = stringResource(id = R.string.card_settings_access_code_recovery_enabled_description),
selected = state.enabledSelection,
onClick = { state.onOptionClick(true) },
)
DetailsRadioButtonElement(
title = stringResource(id = R.string.common_disabled),
subtitle = stringResource(id = R.string.card_settings_access_code_recovery_disabled_description),
selected = !state.enabledSelection,
onClick = { state.onOptionClick(false) },
)
Spacer(modifier = Modifier.weight(1f))
DetailsMainButton(
title = stringResource(id = R.string.common_save_changes),
enabled = state.isSaveChangesEnabled,
onClick = { state.onSaveChangesClick(state.enabledSelection) },
modifier = Modifier.padding(horizontal = TangemTheme.dimens.spacing20),
)
}
}

View file

@ -0,0 +1,16 @@
package com.tangem.tap.features.details.ui.cardsettings.coderecovery
/**
* @property enabledOnCard Indicates whether access code recovery is enabled on the card
* @property enabledSelection Represents the currently selected option in the app (not yet saved on the card)
* @property isSaveChangesEnabled Determines if the user is allowed to save their selection to the card
* @property onSaveChangesClick Callback function called when the user wants to apply the selected option
* @property onOptionClick Callback function called when the user selects an option
* */
data class AccessCodeRecoveryScreenState(
val enabledOnCard: Boolean,
val enabledSelection: Boolean,
val isSaveChangesEnabled: Boolean,
val onSaveChangesClick: (Boolean) -> Unit,
val onOptionClick: (Boolean) -> Unit,
)

View file

@ -0,0 +1,30 @@
package com.tangem.tap.features.details.ui.cardsettings.coderecovery
import com.tangem.tap.common.redux.AppState
import com.tangem.tap.features.details.redux.AccessCodeRecoveryState
import com.tangem.tap.features.details.redux.DetailsAction
import org.rekotlin.Store
class AccessCodeRecoveryViewModel(val store: Store<AppState>) {
fun updateState(state: AccessCodeRecoveryState?): AccessCodeRecoveryScreenState {
// We shouldn't get to this screen here when this state is null
return if (state == null) {
AccessCodeRecoveryScreenState(
enabledOnCard = false,
enabledSelection = false,
isSaveChangesEnabled = false,
onSaveChangesClick = {},
onOptionClick = {},
)
} else {
AccessCodeRecoveryScreenState(
enabledOnCard = state.enabledOnCard,
enabledSelection = state.enabledSelection,
isSaveChangesEnabled = state.enabledOnCard != state.enabledSelection,
onSaveChangesClick = { store.dispatch(DetailsAction.AccessCodeRecovery.SaveChanges(it)) },
onOptionClick = { store.dispatch(DetailsAction.AccessCodeRecovery.SelectOption(it)) },
)
}
}
}

View file

@ -3,18 +3,18 @@ package com.tangem.tap.features.details.ui.common
import androidx.activity.compose.BackHandler
import androidx.compose.foundation.layout.Box
import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.Row
import androidx.compose.foundation.layout.Spacer
import androidx.compose.foundation.layout.fillMaxSize
import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.heightIn
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.layout.size
import androidx.compose.foundation.layout.systemBarsPadding
import androidx.compose.foundation.shape.RoundedCornerShape
import androidx.compose.material.Button
import androidx.compose.material.ButtonDefaults
import androidx.compose.foundation.selection.selectable
import androidx.compose.material.Icon
import androidx.compose.material.IconButton
import androidx.compose.material.RadioButton
import androidx.compose.material.RadioButtonDefaults
import androidx.compose.material.Scaffold
import androidx.compose.material.Text
import androidx.compose.material.TopAppBar
@ -25,7 +25,9 @@ import androidx.compose.ui.res.colorResource
import androidx.compose.ui.res.painterResource
import androidx.compose.ui.res.stringResource
import androidx.compose.ui.unit.dp
import com.tangem.core.ui.components.PrimaryButtonIconRight
import com.tangem.core.ui.res.TangemTheme
import com.tangem.tap.common.compose.TangemTypography
import com.tangem.wallet.R
@Composable
@ -109,26 +111,49 @@ fun EmptyTopBarWithNavigation(
@Composable
fun DetailsMainButton(title: String, onClick: () -> Unit, modifier: Modifier = Modifier, enabled: Boolean = true) {
Button(
PrimaryButtonIconRight(
text = title,
enabled = enabled,
onClick = onClick,
modifier = modifier
.fillMaxWidth(),
icon = painterResource(id = R.drawable.ic_tangem_24),
)
}
@Composable
fun DetailsRadioButtonElement(title: String, subtitle: String, selected: Boolean, onClick: () -> Unit) {
Row(
modifier = Modifier
.fillMaxWidth()
.heightIn(48.dp),
shape = RoundedCornerShape(12.dp),
enabled = enabled,
colors = ButtonDefaults.buttonColors(
backgroundColor = colorResource(R.color.button_primary),
contentColor = colorResource(R.color.text_primary_2),
disabledBackgroundColor = colorResource(R.color.button_disabled),
disabledContentColor = colorResource(R.color.text_disabled),
),
.selectable(
selected = selected,
onClick = { onClick() },
)
.padding(start = 20.dp, end = 20.dp, top = 16.dp, bottom = 16.dp),
) {
Text(text = title)
Spacer(
modifier = Modifier
.padding(start = 20.dp, end = 20.dp)
.size(8.dp),
RadioButton(
selected = selected,
onClick = null,
modifier = Modifier.padding(end = 20.dp),
colors = RadioButtonDefaults.colors(
unselectedColor = colorResource(id = R.color.icon_secondary),
selectedColor = colorResource(id = R.color.icon_accent),
),
)
Icon(painter = painterResource(id = R.drawable.ic_tangem_24), contentDescription = "")
Column {
Text(
text = title,
style = TangemTypography.subtitle1,
color = colorResource(id = R.color.text_primary_1),
)
Spacer(modifier = Modifier.size(4.dp))
Text(
text = subtitle,
style = TangemTypography.body2,
color = colorResource(id = R.color.text_secondary),
)
}
}
}

View file

@ -2,27 +2,19 @@ package com.tangem.tap.features.details.ui.securitymode
import androidx.compose.foundation.layout.Arrangement
import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.Row
import androidx.compose.foundation.layout.Spacer
import androidx.compose.foundation.layout.fillMaxSize
import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.layout.size
import androidx.compose.foundation.rememberScrollState
import androidx.compose.foundation.selection.selectable
import androidx.compose.foundation.verticalScroll
import androidx.compose.material.RadioButton
import androidx.compose.material.RadioButtonDefaults
import androidx.compose.material.Text
import androidx.compose.runtime.Composable
import androidx.compose.ui.Modifier
import androidx.compose.ui.res.colorResource
import androidx.compose.ui.res.stringResource
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
import com.tangem.tap.common.compose.TangemTypography
import com.tangem.tap.features.details.redux.SecurityOption
import com.tangem.tap.features.details.ui.common.DetailsMainButton
import com.tangem.tap.features.details.ui.common.DetailsRadioButtonElement
import com.tangem.tap.features.details.ui.common.ScreenTitle
import com.tangem.tap.features.details.ui.common.SettingsScreensScaffold
import com.tangem.wallet.R
@ -74,39 +66,12 @@ fun SecurityOption(option: SecurityOption, state: SecurityModeScreenState) {
SecurityOption.AccessCode -> R.string.details_manage_security_access_code_description
}
Row(
modifier = Modifier
.fillMaxWidth()
.selectable(
selected = selected,
onClick = { state.onNewModeSelected(option) },
)
.padding(start = 20.dp, end = 20.dp, top = 16.dp, bottom = 16.dp),
) {
RadioButton(
selected = selected,
onClick = null,
modifier = Modifier.padding(end = 20.dp),
colors = RadioButtonDefaults.colors(
unselectedColor = colorResource(id = R.color.icon_secondary),
selectedColor = colorResource(id = R.color.icon_accent),
),
)
Column {
Text(
text = stringResource(id = title),
style = TangemTypography.subtitle1,
color = colorResource(id = R.color.text_primary_1),
)
Spacer(modifier = Modifier.size(4.dp))
Text(
text = stringResource(id = subtitle),
style = TangemTypography.body2,
color = colorResource(id = R.color.text_secondary),
)
}
}
DetailsRadioButtonElement(
title = stringResource(id = title),
subtitle = stringResource(id = subtitle),
selected = selected,
onClick = { state.onNewModeSelected(option) },
)
}
@Preview

View file

@ -1,283 +1,313 @@
<?xml version="1.0" encoding="UTF-8"?>
<resources>
<string name="add_custom_token_title">Add custom token</string>
<string name="address_qr_code_message_format">Send only %1$s (%2$s) from %3$s network to this address. Using other tokens and networks may result in loss of funds.</string>
<string name="alert_button_request_support">Request support</string>
<string name="alert_button_send_feedback">Send feedback</string>
<string name="add_custom_token_title"></string>
<string name="address_qr_code_message_format"></string>
<string name="alert_button_request_support"></string>
<string name="alert_button_send_feedback"></string>
<string name="alert_card_signed_transactions">Diese Karte wurde früher bereits aufgeladen und Transaktionen wurden damit signiert. Ziehen Sie eine sofortige Auszahlung aller Beträge in Betracht, wenn Sie diese Karte von einer nicht vertrauenswürdigen Quelle erhalten haben.</string>
<string name="alert_demo_feature_disabled">This feature is disabled in Demo mode</string>
<string name="alert_demo_message">You are currently running in Demo mode. All funds are not real.</string>
<string name="alert_demo_feature_disabled"></string>
<string name="alert_demo_message"></string>
<string name="alert_developer_card">Die von Ihnen gescannte Karte ist eine Entwicklungskarte. Akzeptieren Sie sie nicht als Zahlungsmittel.</string>
<string name="alert_failed_to_send_transaction_message">Reason: %s</string>
<string name="alert_failed_to_send_transaction_title">Can\'t send a transaction</string>
<string name="alert_manage_tokens_addresses_message">Note that tokens on different networks have different addresses. Double check that your address matches the network when you transfer funds.</string>
<string name="alert_manage_tokens_unsupported_message">Tokens in Solana network are not supported by this card due to firmware limitation.</string>
<string name="alert_signed_hashes_message">This card is not a bearer note. We can\'t currently match the signature count on the card with the information on the blockchain. This is normal but in rare cases can mean a previous holder is holding back an offline signature, which is a security concern.\nDo not accept this card as physical payment from someone you don\'t trust.\nIt\'s perfectly safe in all other respects.\nTangem is the only hardware wallet to offer signature count protection.</string>
<string name="alert_troubleshooting_scan_card_title">Are you having difficulty scanning your card?</string>
<string name="alert_failed_to_send_transaction_message"></string>
<string name="alert_failed_to_send_transaction_title"></string>
<string name="alert_manage_tokens_addresses_message"></string>
<string name="alert_manage_tokens_unsupported_message"></string>
<string name="alert_signed_hashes_message"></string>
<string name="alert_troubleshooting_scan_card_title"></string>
<string name="alert_unsupported_card">Diese Karte ist für die Zusammenarbeit mit Tangem nicht geeignet</string>
<string name="app_settings_enable_biometrics_description">Go to settings to enable biometric authentication in the Tangem App</string>
<string name="app_settings_enable_biometrics_title">Enable biometric authentication</string>
<string name="app_settings_off_saved_access_code_alert_message">This will delete all the saved wallet access codes. Any further operation with the wallet will require submitting the access code.</string>
<string name="app_settings_off_saved_wallet_alert_message">Removing the saved card deletes all the saved wallets and their access codes from the app.</string>
<string name="app_settings_saved_access_codes">Save Access Code</string>
<string name="app_settings_saved_access_codes_footer">Biometric authentication will be requested instead of the access code for interactions with your card.</string>
<string name="app_settings_saved_wallet">Keep the wallet in the app</string>
<string name="app_settings_saved_wallet_footer">Enable to link all the wallets to Tangem app. Biometric authentication will be required for unlocking the app. Transaction signing requires tapping your Tangem card.</string>
<string name="app_settings_title">App Settings</string>
<string name="biometric_lockout_permanent_warning_description">Please scan the card</string>
<string name="biometric_lockout_warning_description">Please try again in 30 seconds or scan the card</string>
<string name="biometric_lockout_warning_title">Too many attempts</string>
<string name="card_settings_action_sheet_reset">Reset</string>
<string name="card_settings_action_sheet_title">Are you sure you want to do this?</string>
<string name="card_settings_change_access_code">Change Access Code</string>
<string name="card_settings_change_access_code_footer">Access code will be changed on this card only</string>
<string name="card_settings_reset_card_to_factory">Reset to Factory Settings</string>
<string name="card_settings_security_mode">Security Mode</string>
<string name="card_settings_title">Card Settings</string>
<string name="app_settings_enable_biometrics_description"></string>
<string name="app_settings_enable_biometrics_title"></string>
<string name="app_settings_off_saved_access_code_alert_message"></string>
<string name="app_settings_off_saved_wallet_alert_message"></string>
<string name="app_settings_saved_access_codes"></string>
<string name="app_settings_saved_access_codes_footer"></string>
<string name="app_settings_saved_wallet"></string>
<string name="app_settings_saved_wallet_footer"></string>
<string name="app_settings_title"></string>
<string name="biometric_lockout_permanent_warning_description"></string>
<string name="biometric_lockout_warning_description"></string>
<string name="biometric_lockout_warning_title"></string>
<string name="card_settings_access_code_recovery_disabled_description"></string>
<string name="card_settings_access_code_recovery_enabled_description"></string>
<string name="card_settings_access_code_recovery_footer"></string>
<string name="card_settings_access_code_recovery_title"></string>
<string name="card_settings_action_sheet_reset"></string>
<string name="card_settings_action_sheet_title"></string>
<string name="card_settings_change_access_code"></string>
<string name="card_settings_change_access_code_footer"></string>
<string name="card_settings_reset_card_to_factory"></string>
<string name="card_settings_security_mode"></string>
<string name="card_settings_title"></string>
<string name="chat_bot_name">Tangem Bot</string>
<string name="chat_button_title">Support</string>
<string name="chat_button_title"></string>
<string name="chat_user_action_rate_user"></string>
<string name="chat_user_action_send_log"></string>
<string name="chat_user_actions_title"></string>
<string name="chat_user_rate_operator_title"></string>
<string name="common_accept">Akzeptieren</string>
<string name="common_add">Add</string>
<string name="common_attention">Attention</string>
<string name="common_add"></string>
<string name="common_attention"></string>
<string name="common_balance">Bilanz: %s</string>
<string name="common_biometric_authentication">biometric authentication</string>
<string name="common_biometrics">biometrics</string>
<string name="common_biometric_authentication"></string>
<string name="common_biometrics"></string>
<string name="common_camera_denied_alert_message">Sie haben keinen Zugang zur Kamera erteilt, bitte passen Sie Ihre Datenschutzeinstellungen an</string>
<string name="common_cancel">Abbrechen</string>
<string name="common_close">Close</string>
<string name="common_continue">Continue</string>
<string name="common_copy">Copy</string>
<string name="common_create">Create</string>
<string name="common_close"></string>
<string name="common_continue"></string>
<string name="common_copy"></string>
<string name="common_create"></string>
<string name="common_delete">Entfernen</string>
<string name="common_disconnect">Disconnect</string>
<string name="common_disabled"></string>
<string name="common_disconnect"></string>
<string name="common_done">Erledigt</string>
<string name="common_enable">Enable</string>
<string name="common_enable"></string>
<string name="common_enabled"></string>
<string name="common_error">Fehler</string>
<string name="common_no">No</string>
<string name="common_import"></string>
<string name="common_no"></string>
<string name="common_ok">OK</string>
<string name="common_origin_card">Primary Card</string>
<string name="common_reject">Reject</string>
<string name="common_retry">Retry</string>
<string name="common_origin_card"></string>
<string name="common_reject"></string>
<string name="common_retry"></string>
<string name="common_save_changes">Änderungen speichern</string>
<string name="common_search">Search</string>
<string name="common_server_unavailable">The server is not available, please try again later</string>
<string name="common_share">Share</string>
<string name="common_sign">Sign</string>
<string name="common_sign_and_send">Sign and send</string>
<string name="common_start">Start</string>
<string name="common_submit">Submit</string>
<string name="common_search"></string>
<string name="common_server_unavailable"></string>
<string name="common_share"></string>
<string name="common_sign"></string>
<string name="common_sign_and_send"></string>
<string name="common_start"></string>
<string name="common_submit"></string>
<string name="common_success">Erfolg</string>
<string name="common_terms_and_conditions">terms and conditions</string>
<string name="common_understand">I understand</string>
<string name="common_terms_and_conditions"></string>
<string name="common_understand"></string>
<string name="common_warning">Warnung</string>
<string name="common_yes">Yes</string>
<string name="contract_address_copied_message">Contract address copied!</string>
<string name="currency_subtitle_expanded">Available networks</string>
<string name="custom_token_contract_address_input_title">Contract address</string>
<string name="custom_token_creation_error_invalid_contract_address">Contract address is invalid</string>
<string name="custom_token_creation_error_invalid_derivation_path">Derivation path is invalid</string>
<string name="custom_token_creation_error_network_not_selected">Please select the network</string>
<string name="custom_token_creation_error_required_field">Required field</string>
<string name="custom_token_creation_error_wrong_decimals">Decimal number must be a valid integer, no higher than %d</string>
<string name="custom_token_decimals_input_title">Decimals</string>
<string name="custom_token_derivation_path_default">Default</string>
<string name="custom_token_derivation_path_input_title">BIP44 coin type</string>
<string name="custom_token_name_input_placeholder">E.g. USD Coin</string>
<string name="custom_token_name_input_title">Name</string>
<string name="custom_token_network_input_not_selected">Not selected</string>
<string name="custom_token_network_input_title">Network</string>
<string name="custom_token_token_symbol_input_placeholder">E.g. USDC</string>
<string name="custom_token_token_symbol_input_title">Token symbol</string>
<string name="custom_token_validation_error_already_added">This token/network has already been added to your list</string>
<string name="custom_token_validation_error_not_found">Note that tokens can be created by anyone. Be aware of adding scam tokens, they can cost nothing.</string>
<string name="details_chat">Chat</string>
<string name="common_yes"></string>
<string name="contract_address_copied_message"></string>
<string name="currency_subtitle_expanded"></string>
<string name="custom_token_contract_address_input_title"></string>
<string name="custom_token_creation_error_invalid_contract_address"></string>
<string name="custom_token_creation_error_invalid_derivation_path"></string>
<string name="custom_token_creation_error_network_not_selected"></string>
<string name="custom_token_creation_error_required_field"></string>
<string name="custom_token_creation_error_wrong_decimals"></string>
<string name="custom_token_decimals_input_title"></string>
<string name="custom_token_derivation_path_default"></string>
<string name="custom_token_derivation_path_input_title"></string>
<string name="custom_token_name_input_placeholder"></string>
<string name="custom_token_name_input_title"></string>
<string name="custom_token_network_input_not_selected"></string>
<string name="custom_token_network_input_title"></string>
<string name="custom_token_token_symbol_input_placeholder"></string>
<string name="custom_token_token_symbol_input_title"></string>
<string name="custom_token_validation_error_already_added"></string>
<string name="custom_token_validation_error_not_found"></string>
<string name="details_chat"></string>
<string name="details_manage_security_access_code">Zugangscode</string>
<string name="details_manage_security_access_code_description">Sie müssen den richtigen Zugangscode eingeben, bevor Sie die Karte scannen.</string>
<string name="details_manage_security_long_tap">Langes Tippen</string>
<string name="details_manage_security_long_tap_description">Dieser Mechanismus schützt vor Annäherungsangriffen auf eine Karte. Es wird eine Verzögerung zwischen dem Empfang und der Ausführung eines Befehls erzwungen. Nach der ersten signierten Transaktion wird dieses Telefon mit der Karte verknüpft und die Transaktionen werden sofort signiert</string>
<string name="details_manage_security_passcode">Passcode</string>
<string name="details_manage_security_passcode_description">Bevor Sie einen Befehl ausführen, der eine Änderung des Kartenstatus zur Folge hat, müssen Sie den Passcode eingeben.</string>
<string name="details_referral_title">Referral program</string>
<string name="details_row_privacy_policy">Privacy policy</string>
<string name="details_referral_title"></string>
<string name="details_row_privacy_policy"></string>
<string name="details_row_subtitle_signed_hashes_format">%s Hasch</string>
<string name="details_row_title_card_tou">Card terms of use</string>
<string name="details_row_title_card_tou"></string>
<string name="details_row_title_cid">KartenID</string>
<string name="details_row_title_create_backup">Link More Cards</string>
<string name="details_row_title_create_backup"></string>
<string name="details_row_title_currency">App Währung</string>
<string name="details_row_title_issuer">Emittent</string>
<string name="details_row_title_send_feedback">Send Feedback</string>
<string name="details_row_title_send_feedback"></string>
<string name="details_row_title_signed_hashes">Signiert</string>
<string name="details_title">Details</string>
<string name="disclaimer_error_loading">Check your internet connection or switch to a different network</string>
<string name="disclaimer_error_loading"></string>
<string name="disclaimer_title">Nutzungsbedingungen</string>
<string name="error_update_app">Oops, the current version of the application is not ready to work with this card, please check for updates.</string>
<string name="error_wrong_wallet_tapped">You have used a card from another wallet. Tap the card associated with this wallet</string>
<string name="exchange_receive_view_header">You Receive</string>
<string name="exchange_send_view_header">You Send</string>
<string name="feedback_data_collection_message">The following information is optional. You can erase it if you don\'t want to share it.</string>
<string name="feedback_preface_rate_negative">Tell us what functions you are missing, and we will try to help you.</string>
<string name="feedback_preface_scan_failed">Please tell us what card do you have</string>
<string name="feedback_preface_support">Hi support team,</string>
<string name="feedback_preface_tx_failed">Please tell us more about your issue. Every small detail can help.</string>
<string name="feedback_subject_rate_negative">My suggestions</string>
<string name="feedback_subject_scan_failed">Can\'t scan a card</string>
<string name="feedback_subject_support">Feedback</string>
<string name="feedback_subject_support_tangem">Tangem feedback</string>
<string name="feedback_subject_tx_failed">Can\'t send a transaction</string>
<string name="home_button_order">Order</string>
<string name="error_update_app"></string>
<string name="error_wrong_wallet_tapped"></string>
<string name="exchange_receive_view_header"></string>
<string name="exchange_send_view_header"></string>
<string name="feedback_data_collection_message"></string>
<string name="feedback_preface_rate_negative"></string>
<string name="feedback_preface_scan_failed"></string>
<string name="feedback_preface_support"></string>
<string name="feedback_preface_tx_failed"></string>
<string name="feedback_subject_rate_negative"></string>
<string name="feedback_subject_scan_failed"></string>
<string name="feedback_subject_support"></string>
<string name="feedback_subject_support_tangem"></string>
<string name="feedback_subject_tx_failed"></string>
<string name="home_button_order"></string>
<string name="initial_message_change_access_code_body">Tippen Sie um den Zugangscode zu ändern</string>
<string name="initial_message_change_passcode_body">Tippen Sie um den Passcode zu ändern</string>
<string name="initial_message_create_wallet_body">To create the wallet tap the card as shown above and do not remove until the end of the operation</string>
<string name="initial_message_create_wallet_body"></string>
<string name="initial_message_scan_header">Legen Sie die Karte zum Scannen an</string>
<string name="initial_message_sign_header">Tippen um zu signieren</string>
<string name="initial_message_tap_header">Legen Sie die Karte an</string>
<string name="internal_error_wallet_manager_not_found">Internal error: wallet manager not found</string>
<string name="main_manage_tokens">Manage tokens</string>
<string name="main_no_backup_warning_subtitle">To protect your assets, we advise you to carry out this procedure</string>
<string name="main_no_backup_warning_title">Your wallet has not been backed up</string>
<string name="main_page_balance">Total balance</string>
<string name="main_processing_full_amount">The amount does not include some of your funds</string>
<string name="main_scan_card_warning_view_subtitle">To access all the networks you need to scan the card</string>
<string name="main_scan_card_warning_view_title">Scan your card</string>
<string name="main_tokens">Tokens</string>
<string name="onboarding_access_code_feature_1_description">You have to set up a single access code to protect all your wallets</string>
<string name="onboarding_access_code_feature_1_title">Protect</string>
<string name="onboarding_access_code_feature_2_description">You can set up an individual access code on each card later</string>
<string name="onboarding_access_code_feature_2_title">Personalize</string>
<string name="onboarding_access_code_feature_3_description">The access code can be restored with a linked card, don\'t keep all cards in one place</string>
<string name="onboarding_access_code_feature_3_title">Restore</string>
<string name="onboarding_access_code_hint">Choose any word, phrase, or number you want as your access code</string>
<string name="onboarding_access_code_intro_title">Create Access Code</string>
<string name="onboarding_access_code_repeat_code_title">Re-enter your Access Code</string>
<string name="onboarding_access_code_too_short">Access code must be at least 4 characters long</string>
<string name="onboarding_access_codes_doesnt_match">Entered access code didn\'t match the initial access code</string>
<string name="onboarding_alert_message_not_max_backup_cards_added">You\'ve added one backup card. When backup process is finished you can\'t add more backup cards. If you have one more card, add it to backup. Do you like to continue the backup process?</string>
<string name="onboarding_backup_exit_warning">The backup process is partly complete. You can\'t exit it now.</string>
<string name="onboarding_balance_title">Balance</string>
<string name="onboarding_button_add_backup_card">Add a backup card</string>
<string name="onboarding_button_backup_card_format">Scan the card #%d</string>
<string name="onboarding_button_backup_now">Backup now</string>
<string name="onboarding_button_backup_origin">Scan the primary card</string>
<string name="onboarding_button_claim">Claim</string>
<string name="onboarding_button_continue_wallet">Continue to my wallet</string>
<string name="onboarding_button_finalize_backup">Finalize the backup process</string>
<string name="onboarding_button_kyc_start">Verify via Utorg</string>
<string name="onboarding_button_kyc_waiting">Refresh</string>
<string name="onboarding_button_pin">Set PIN code</string>
<string name="onboarding_button_receive_crypto">Receive crypto</string>
<string name="onboarding_button_register_wallet">Register</string>
<string name="onboarding_button_scan_origin_card">Scan primary card</string>
<string name="onboarding_button_skip_backup">Skip for later</string>
<string name="onboarding_button_what_does_it_mean">How does it work?</string>
<string name="onboarding_create_wallet_body">Let\'s generate all the keys on your card and create a secure wallet</string>
<string name="onboarding_create_wallet_button_create_wallet">Create wallet</string>
<string name="onboarding_create_wallet_header">Create a wallet</string>
<string name="onboarding_done_body">Your card is activated and ready to be used</string>
<string name="onboarding_done_header">Success!</string>
<string name="onboarding_exit_alert_message">In this case, you will need to start from the beginning.</string>
<string name="onboarding_exit_alert_title">Do you want to exit the activation process?</string>
<string name="onboarding_getting_started">Getting started</string>
<string name="onboarding_navbar_kyc_progress">Verify your identity</string>
<string name="onboarding_navbar_kyc_start">KYC</string>
<string name="onboarding_navbar_pin">Pin code</string>
<string name="onboarding_navbar_register_wallet">Connect</string>
<string name="onboarding_navbar_title_creating_backup">Creating a backup</string>
<string name="onboarding_saltpay_button_backup_origin">Tap the SaltPay card</string>
<string name="onboarding_saltpay_subtitle_no_backup_cards">To start the backup process you have to add the Tangem card as your backup</string>
<string name="onboarding_saltpay_subtitle_one_backup_card">Finalize the backup process by creating an access code</string>
<string name="onboarding_saltpay_title_backup_card">Tap the Tangem card</string>
<string name="onboarding_saltpay_title_no_backup_card">No backup card</string>
<string name="onboarding_saltpay_title_one_backup_card">Backup card ready</string>
<string name="onboarding_saltpay_title_prepare_origin">Prepare the SaltPay card</string>
<string name="onboarding_subtitle_claim">To get started, simply claim wxDAI to your wallet</string>
<string name="onboarding_subtitle_claim_progress">It will take a few seconds</string>
<string name="onboarding_subtitle_kyc_retry">Please check your email for further instructions</string>
<string name="onboarding_subtitle_kyc_start">To start using your card you have to pass the KYC process</string>
<string name="onboarding_subtitle_kyc_waiting">Please wait until the verification is completed. You\'ll be notified via email. Usually it takes up to 1 hour. You can close the app and come back later.</string>
<string name="onboarding_subtitle_no_backup_cards">To start the backup process add up to two backup cards.</string>
<string name="onboarding_subtitle_one_backup_card">You can add one more card or finalize the backup process</string>
<string name="onboarding_subtitle_pin">Set up a 4-digit code.\nIt will be used for payments.</string>
<string name="onboarding_subtitle_register_wallet">Connect your card to the decentralized payment system</string>
<string name="onboarding_subtitle_scan_backup_card_format">Prepare the backup card with number %s</string>
<string name="onboarding_subtitle_scan_origin_card">Prepare the primary card</string>
<string name="onboarding_subtitle_scan_primary_card_format">Prepare the primary card with number %s</string>
<string name="onboarding_subtitle_success_claim">Congratulations! Your first payment crypto card has been activated!</string>
<string name="onboarding_subtitle_success_tangem_wallet_onboarding">Your wallet card is configured and ready for use.</string>
<string name="onboarding_subtitle_two_backup_cards">Max number of cards added. Finalize the backup process.</string>
<string name="onboarding_title">Activating card</string>
<string name="onboarding_title_backup_card_format">Backup card #%d</string>
<string name="onboarding_title_claim">Claim %s</string>
<string name="onboarding_title_claim_progress">Claiming</string>
<string name="onboarding_title_kyc_retry">Something went wrong</string>
<string name="onboarding_title_kyc_start">Verify your identity</string>
<string name="onboarding_title_kyc_waiting">KYC is in progress</string>
<string name="onboarding_title_no_backup_cards">No backup cards</string>
<string name="onboarding_title_one_backup_card">One backup card added</string>
<string name="onboarding_title_pin">PIN Code</string>
<string name="onboarding_title_register_wallet">Connect your card</string>
<string name="onboarding_title_scan_origin_card">Prepare your card</string>
<string name="onboarding_title_two_backup_cards">Two backup cards added</string>
<string name="onboarding_top_up_body">To get started, simply top up the wallet with any amount</string>
<string name="onboarding_top_up_body_no_account_error">To get started, simply top up the wallet with more than %1$s %2$s</string>
<string name="onboarding_top_up_button_but_crypto">Buy crypto</string>
<string name="onboarding_top_up_button_show_wallet_address">Show the wallet\'s address</string>
<string name="onboarding_top_up_header">Top up your wallet</string>
<string name="onboarding_twin_exit_warning">The twinning process is partly complete. You can\'t exit it now.</string>
<string name="onboarding_twins_interrupt_warning">If the process of creating the wallet gets interrupted in any way, you\'ll have to start over</string>
<string name="onboarding_wallet_info_subtitle_first">You can backup your keys up to two other blank Tangem Wallet cards.</string>
<string name="onboarding_wallet_info_subtitle_fourth">Access code can be restored with one of backup cards.</string>
<string name="onboarding_wallet_info_subtitle_second">All the backup cards can be used as full-functional with the identical keys.</string>
<string name="onboarding_wallet_info_subtitle_third">You will be able to set an access code to protect your wallets.</string>
<string name="onboarding_wallet_info_title_first">Backup wallet</string>
<string name="onboarding_wallet_info_title_fourth">Access code restore</string>
<string name="onboarding_wallet_info_title_second">Identical cards</string>
<string name="onboarding_wallet_info_title_third">Access code</string>
<string name="referral_button_participate">Participate</string>
<string name="referral_error_failed_to_load_info">Failed to load the information about the referral program. Please try again later.</string>
<string name="referral_error_failed_to_load_info_with_reason">Failed to load the information about the referral program. Error code: %s. Please try again later.</string>
<string name="referral_error_failed_to_participate">Your participation request could not be processed. Error code: %s. Please try again later. If the problem persists — feel free to contact our support.</string>
<string name="referral_friends_bought_title">Your friends bought</string>
<string name="referral_point_currencies_description_prefix">Will get</string>
<string name="referral_point_currencies_description_suffix">for each wallet bought by your friend on your %1$s network address%2$s</string>
<string name="referral_point_currencies_title">You</string>
<string name="referral_point_discount_description_prefix">Will get a</string>
<string name="referral_point_discount_description_suffix">when buying a card on tangem.com</string>
<string name="referral_point_discount_description_value">%s discount</string>
<string name="referral_point_discount_title">Your friend</string>
<string name="referral_promo_code_copied">Personal code copied!</string>
<string name="referral_promo_code_title">Your personal code</string>
<string name="referral_share_link">Buy Tangem Wallet with discount!\n%s</string>
<string name="referral_title">Refer your friends to Tangem</string>
<string name="referral_tos_enroled_prefix">You\'ve accepted</string>
<string name="referral_tos_not_enroled_prefix">By tapping this button you accept</string>
<string name="referral_tos_suffix">of the referral program</string>
<string name="registration_task_alert_message">Please hold the card until the operation complete</string>
<string name="reset_card_to_factory_button_title">Reset the Card</string>
<string name="reset_card_to_factory_warning_message">I understand that after performing this action, I will no longer have access to the current wallet</string>
<string name="reset_card_with_backup_to_factory_message">Factory Reset will completely delete the wallet from the selected card. You will not be able to restore the current wallet or use the card to recover the access code.</string>
<string name="reset_card_without_backup_to_factory_message">Factory Reset will completely delete the wallet from the selected card and remove it from the app. You will not be able to restore the current wallet.</string>
<string name="russian_bank_card_warning_subtitle">Do you have a bank card of another country or a UnionPay card?</string>
<string name="russian_bank_card_warning_title">Russian bank cards are not accepted at the moment</string>
<string name="saltpay_error_empty_backup_message">Tap the card with the visa logo</string>
<string name="saltpay_error_empty_backup_title">Attention</string>
<string name="saltpay_error_no_gas_message">Please contact support</string>
<string name="saltpay_error_no_gas_title">No funds for activation</string>
<string name="saltpay_error_pin_weak_message">Such a PIN can be brute-forced easily</string>
<string name="saltpay_error_pin_weak_title">Four identical digits isn\'t safe</string>
<string name="save_user_wallet_agreement_access_description">Log into the app and check your balance without scanning the card</string>
<string name="save_user_wallet_agreement_access_title">Access the app</string>
<string name="save_user_wallet_agreement_allow_biometrics">Allow to use biometrics</string>
<string name="save_user_wallet_agreement_code_description_biometrics">Biometrics will be requested instead of the access code for interactions with your wallet</string>
<string name="save_user_wallet_agreement_code_title">Access code</string>
<string name="save_user_wallet_agreement_enroll_biometrics_description">It looks like you have biometric authentication disabled, it is necessary to save wallets</string>
<string name="save_user_wallet_agreement_enroll_biometrics_title">Enable biometric authorization</string>
<string name="save_user_wallet_agreement_header_biometrics">Would you like to use biometrics?</string>
<string name="save_user_wallet_agreement_notice">Note that making a transaction with your funds will still require your card</string>
<string name="scan_card_error">Scan card failed. Try again</string>
<string name="scan_card_settings_button">Scan Card</string>
<string name="scan_card_settings_message">Scan the card to change its settings. The changes will impact only the card you\'ve scanned and will not affect other cards tied to your wallet.</string>
<string name="scan_card_settings_title">Get your card ready!</string>
<string name="search_tokens_title">Search tokens</string>
<string name="internal_error_wallet_manager_not_found"></string>
<string name="key_invalidated_warning_description"></string>
<string name="main_manage_tokens"></string>
<string name="main_no_backup_warning_subtitle"></string>
<string name="main_no_backup_warning_title"></string>
<string name="main_page_balance"></string>
<string name="main_processing_full_amount"></string>
<string name="main_scan_card_warning_view_subtitle"></string>
<string name="main_scan_card_warning_view_title"></string>
<string name="main_tokens"></string>
<string name="onboarding_access_code_feature_1_description"></string>
<string name="onboarding_access_code_feature_1_title"></string>
<string name="onboarding_access_code_feature_2_description"></string>
<string name="onboarding_access_code_feature_2_title"></string>
<string name="onboarding_access_code_feature_3_description"></string>
<string name="onboarding_access_code_feature_3_title"></string>
<string name="onboarding_access_code_hint"></string>
<string name="onboarding_access_code_intro_title"></string>
<string name="onboarding_access_code_repeat_code_title"></string>
<string name="onboarding_access_code_too_short"></string>
<string name="onboarding_access_codes_doesnt_match"></string>
<string name="onboarding_alert_message_not_max_backup_cards_added"></string>
<string name="onboarding_backup_exit_warning"></string>
<string name="onboarding_balance_title"></string>
<string name="onboarding_button_add_backup_card"></string>
<string name="onboarding_button_backup_card_format"></string>
<string name="onboarding_button_backup_now"></string>
<string name="onboarding_button_backup_origin"></string>
<string name="onboarding_button_claim"></string>
<string name="onboarding_button_continue_wallet"></string>
<string name="onboarding_button_finalize_backup"></string>
<string name="onboarding_button_kyc_start"></string>
<string name="onboarding_button_kyc_waiting"></string>
<string name="onboarding_button_pin"></string>
<string name="onboarding_button_receive_crypto"></string>
<string name="onboarding_button_register_wallet"></string>
<string name="onboarding_button_scan_origin_card"></string>
<string name="onboarding_button_skip_backup"></string>
<string name="onboarding_button_what_does_it_mean"></string>
<string name="onboarding_create_wallet_body"></string>
<string name="onboarding_create_wallet_button_create_wallet"></string>
<string name="onboarding_create_wallet_header"></string>
<string name="onboarding_create_wallet_options_button_options"></string>
<string name="onboarding_create_wallet_options_message"></string>
<string name="onboarding_create_wallet_options_title"></string>
<string name="onboarding_done_body"></string>
<string name="onboarding_done_header"></string>
<string name="onboarding_exit_alert_message"></string>
<string name="onboarding_exit_alert_title"></string>
<string name="onboarding_getting_started"></string>
<string name="onboarding_linking_error_card_with_wallets"></string>
<string name="onboarding_navbar_kyc_progress"></string>
<string name="onboarding_navbar_kyc_start"></string>
<string name="onboarding_navbar_pin"></string>
<string name="onboarding_navbar_register_wallet"></string>
<string name="onboarding_navbar_title_creating_backup"></string>
<string name="onboarding_saltpay_button_backup_origin"></string>
<string name="onboarding_saltpay_subtitle_no_backup_cards"></string>
<string name="onboarding_saltpay_subtitle_one_backup_card"></string>
<string name="onboarding_saltpay_title_backup_card"></string>
<string name="onboarding_saltpay_title_no_backup_card"></string>
<string name="onboarding_saltpay_title_one_backup_card"></string>
<string name="onboarding_saltpay_title_prepare_origin"></string>
<string name="onboarding_seed_button_read_more"></string>
<string name="onboarding_seed_generate_message"></string>
<string name="onboarding_seed_generate_title"></string>
<string name="onboarding_seed_import_message"></string>
<string name="onboarding_seed_intro_button_generate"></string>
<string name="onboarding_seed_intro_button_import"></string>
<string name="onboarding_seed_intro_message"></string>
<string name="onboarding_seed_intro_title"></string>
<string name="onboarding_seed_mnemonic_invalid_checksum"></string>
<string name="onboarding_seed_mnemonic_wrong_words"></string>
<string name="onboarding_seed_phrase_intro_legacy"></string>
<string name="onboarding_seed_screenshot_alert"></string>
<string name="onboarding_seed_user_validation_message"></string>
<string name="onboarding_seed_user_validation_title"></string>
<string name="onboarding_subtitle_claim"></string>
<string name="onboarding_subtitle_claim_progress"></string>
<string name="onboarding_subtitle_kyc_retry"></string>
<string name="onboarding_subtitle_kyc_start"></string>
<string name="onboarding_subtitle_kyc_waiting"></string>
<string name="onboarding_subtitle_no_backup_cards"></string>
<string name="onboarding_subtitle_one_backup_card"></string>
<string name="onboarding_subtitle_pin"></string>
<string name="onboarding_subtitle_register_wallet"></string>
<string name="onboarding_subtitle_scan_backup_card_format"></string>
<string name="onboarding_subtitle_scan_origin_card"></string>
<string name="onboarding_subtitle_scan_primary_card_format"></string>
<string name="onboarding_subtitle_success_claim"></string>
<string name="onboarding_subtitle_success_tangem_wallet_onboarding"></string>
<string name="onboarding_subtitle_two_backup_cards"></string>
<string name="onboarding_title"></string>
<string name="onboarding_title_backup_card_format"></string>
<string name="onboarding_title_claim"></string>
<string name="onboarding_title_claim_progress"></string>
<string name="onboarding_title_kyc_retry"></string>
<string name="onboarding_title_kyc_start"></string>
<string name="onboarding_title_kyc_waiting"></string>
<string name="onboarding_title_no_backup_cards"></string>
<string name="onboarding_title_one_backup_card"></string>
<string name="onboarding_title_pin"></string>
<string name="onboarding_title_register_wallet"></string>
<string name="onboarding_title_scan_origin_card"></string>
<string name="onboarding_title_two_backup_cards"></string>
<string name="onboarding_top_up_body"></string>
<string name="onboarding_top_up_body_no_account_error"></string>
<string name="onboarding_top_up_button_but_crypto"></string>
<string name="onboarding_top_up_button_show_wallet_address"></string>
<string name="onboarding_top_up_header"></string>
<string name="onboarding_twin_exit_warning"></string>
<string name="onboarding_twins_interrupt_warning"></string>
<string name="onboarding_wallet_info_subtitle_first"></string>
<string name="onboarding_wallet_info_subtitle_fourth"></string>
<string name="onboarding_wallet_info_subtitle_second"></string>
<string name="onboarding_wallet_info_subtitle_third"></string>
<string name="onboarding_wallet_info_title_first"></string>
<string name="onboarding_wallet_info_title_fourth"></string>
<string name="onboarding_wallet_info_title_second"></string>
<string name="onboarding_wallet_info_title_third"></string>
<string name="referral_button_participate"></string>
<string name="referral_error_failed_to_load_info"></string>
<string name="referral_error_failed_to_load_info_with_reason"></string>
<string name="referral_error_failed_to_participate"></string>
<string name="referral_friends_bought_title"></string>
<string name="referral_point_currencies_description_prefix"></string>
<string name="referral_point_currencies_description_suffix"></string>
<string name="referral_point_currencies_title"></string>
<string name="referral_point_discount_description_prefix"></string>
<string name="referral_point_discount_description_suffix"></string>
<string name="referral_point_discount_description_value"></string>
<string name="referral_point_discount_title"></string>
<string name="referral_promo_code_copied"></string>
<string name="referral_promo_code_title"></string>
<string name="referral_share_link"></string>
<string name="referral_title"></string>
<string name="referral_tos_enroled_prefix"></string>
<string name="referral_tos_not_enroled_prefix"></string>
<string name="referral_tos_suffix"></string>
<string name="registration_task_alert_message"></string>
<string name="reset_card_to_factory_button_title"></string>
<string name="reset_card_to_factory_warning_message"></string>
<string name="reset_card_with_backup_to_factory_message"></string>
<string name="reset_card_without_backup_to_factory_message"></string>
<string name="russian_bank_card_warning_subtitle"></string>
<string name="russian_bank_card_warning_title"></string>
<string name="saltpay_error_empty_backup_message"></string>
<string name="saltpay_error_empty_backup_title"></string>
<string name="saltpay_error_no_gas_message"></string>
<string name="saltpay_error_no_gas_title"></string>
<string name="saltpay_error_pin_weak_message"></string>
<string name="saltpay_error_pin_weak_title"></string>
<string name="save_user_wallet_agreement_access_description"></string>
<string name="save_user_wallet_agreement_access_title"></string>
<string name="save_user_wallet_agreement_allow_biometrics"></string>
<string name="save_user_wallet_agreement_code_description_biometrics"></string>
<string name="save_user_wallet_agreement_code_title"></string>
<string name="save_user_wallet_agreement_enroll_biometrics_description"></string>
<string name="save_user_wallet_agreement_enroll_biometrics_title"></string>
<string name="save_user_wallet_agreement_header_biometrics"></string>
<string name="save_user_wallet_agreement_notice"></string>
<string name="scan_card_error"></string>
<string name="scan_card_settings_button"></string>
<string name="scan_card_settings_message"></string>
<string name="scan_card_settings_title"></string>
<string name="search_tokens_title"></string>
<string name="send_amount_label">Betrag</string>
<string name="send_destination_hint_address">Adresse</string>
<string name="send_destination_hint_address_payid">Adresse oder PayString</string>
@ -285,8 +315,8 @@
<string name="send_error_payid_not_registered">PayString ist nicht registriert</string>
<string name="send_error_payid_request_failed">PayString-Anfrage ist fehlgeschlagen</string>
<string name="send_error_payid_unsupported_by_blockchain">PayString wird von der Blockchain nicht unterstützt</string>
<string name="send_extras_error_invalid_destination_tag">Invalid Tag. It won\'t be added to the transaction.</string>
<string name="send_extras_error_invalid_memo">Invalid Memo. It won\'t be added to the transaction.</string>
<string name="send_extras_error_invalid_destination_tag"></string>
<string name="send_extras_error_invalid_memo"></string>
<string name="send_extras_hint_destination_tag">Tag</string>
<string name="send_extras_hint_memo">Memo</string>
<string name="send_fee_include_description">inkl. Gebühr</string>
@ -297,141 +327,146 @@
<string name="send_max_amount_label">Höchstbetrag</string>
<string name="send_network_fee_title">Netzgebühr</string>
<string name="send_title">Absenden</string>
<string name="send_title_currency_format">Sending %s</string>
<string name="send_title_currency_format"></string>
<string name="send_total_label">Gesamt</string>
<string name="send_total_subtitle_asset_format">%1$s und %2$s werden gesendet</string>
<string name="send_total_subtitle_fiat_format">≈ %1$s (inkl. Gebühr: %2$s)</string>
<string name="send_total_subtitle_format">%s wird gesendet</string>
<string name="send_transaction_success">Die Transaktion wurde erfolgreich signiert und an den Blockchain-Knoten gesendet. Die Walletbilanz wird aktualisiert</string>
<string name="send_validation_invalid_address">Ungültige Adresse</string>
<string name="shop_buy_now">Buy now</string>
<string name="shop_free">Free</string>
<string name="shop_i_have_a_promo_code">I have a promo code…</string>
<string name="shop_buy_now"></string>
<string name="shop_free"></string>
<string name="shop_i_have_a_promo_code"></string>
<string name="shop_one_wallet">Tangem Wallet</string>
<string name="shop_other_payment_methods">Other payment methods</string>
<string name="shop_shipping">Shipping</string>
<string name="shop_total">Total</string>
<string name="solana_rent_warning">Solana network charges a rent of %1$s every 2 days. Accounts that can\'t afford the rent are purged from the network. Deposit your account with more than %2$s to use it for free.</string>
<string name="story_awe_description">Store your crypto assets secure while keeping private keys contained in your card</string>
<string name="story_awe_title">Revolutionary Hardware Wallet</string>
<string name="story_backup_description_1">Up to</string>
<string name="story_backup_description_2_bold">3 physical cards</string>
<string name="story_backup_description_3">to one wallet</string>
<string name="story_backup_title">Ultra Secure Backup</string>
<string name="story_currencies_description">A hardware wallet for your Bitcoin, Ethereum and many more currencies simultaneously all in one card</string>
<string name="story_currencies_title">Thousands of Currencies</string>
<string name="story_finish_description">Use it on the go, anywhere, anytime. No wires or batteries. Just tap the card to your phone when you need your crypto.</string>
<string name="story_finish_title">The Wallet for Everyone</string>
<string name="story_meet_borrow">Borrow</string>
<string name="story_meet_buy">Buy</string>
<string name="story_meet_exchange">Exchange</string>
<string name="story_meet_lend">Lend</string>
<string name="story_meet_pay">Pay</string>
<string name="story_meet_send">Send</string>
<string name="story_meet_store">Store</string>
<string name="story_meet_title">Meet\nTangem</string>
<string name="story_web3_description">Exchange, buy NFT\'s, make loans and deposits in more than 100 different decentralized services</string>
<string name="story_web3_title">DeFi Compatible</string>
<string name="swapping_error_wrapper">Error: %s</string>
<string name="swapping_generic_error">There was an error. Please try again.</string>
<string name="swapping_give_permission">Give Permission</string>
<string name="swapping_high_price_impact">High price impact!</string>
<string name="swapping_high_price_impact_description">Swapping this amount of selected tokens will cause a significant price impact and reduce your outcome.</string>
<string name="swapping_insufficient_funds">Insufficient funds</string>
<string name="swapping_not_enough_funds_for_fee">Not enough funds for fee in your %1$s wallet to create a transaction. Top up your %2$s wallet first.</string>
<string name="swapping_pending_transaction_subtitle">Transaction in progress…</string>
<string name="swapping_pending_transaction_title">Waiting</string>
<string name="swapping_permission_buttons_approve">Approve</string>
<string name="swapping_permission_header">Give Permission</string>
<string name="swapping_permission_rows_amount">Amount %s</string>
<string name="swapping_permission_rows_spender">Spender</string>
<string name="swapping_permission_rows_your_wallet">Your Wallet</string>
<string name="swapping_permission_subheader">To continue you need to allow 1inch smart contracts to use your %s</string>
<string name="swapping_permit_and_swap">Permit and Swap</string>
<string name="swapping_success_view_explorer_button_title">View in Explorer</string>
<string name="swapping_success_view_title">In progress</string>
<string name="swapping_swap">Swap</string>
<string name="swapping_swap_action">Swap</string>
<string name="swapping_swap_of_to">Swap of %s to</string>
<string name="swapping_tangem_fee_disclaimer">Quotes include an additional Tangem commission of %s. This helps us deliver a top-of-the-line product.</string>
<string name="swapping_token_list_other_tokens">Other tokens</string>
<string name="swapping_token_list_title">Choose token</string>
<string name="swapping_token_list_your_tokens">Your tokens</string>
<string name="swapping_token_not_available">not available</string>
<string name="token_details_hide_alert_hide">Hide</string>
<string name="token_details_hide_alert_message">You are about to hide this token from the main screen. You can add it back anytime through the manage tokens page.</string>
<string name="token_details_hide_alert_title">Hide %s</string>
<string name="token_details_hide_token">Hide token</string>
<string name="token_details_send_blocked_fee_format">%1$s is a token in the %2$s network. To make a %3$s transaction you need to deposit some %4$s (%5$s) to cover the network fee.</string>
<string name="token_details_send_blocked_tx_format">Please wait for %s transaction to complete to be able to send funds</string>
<string name="token_details_unable_hide_alert_message">The %1$s token is the main currency on the %2$s network and cannot be hidden as long as you have other tokens on this network in the list.</string>
<string name="token_details_unable_hide_alert_title">Unable to hide %s</string>
<string name="token_item_no_rate">No rate</string>
<string name="transaction_history_empty_transactions">You don\'t have any transactions yet</string>
<string name="transaction_history_error_failed_to_load">Failed to load transactions</string>
<string name="transaction_history_title">Transactions</string>
<string name="transaction_history_tx_in_progress">In progress…</string>
<string name="twin_error_same_card">You\'ve scanned the same card. To create a twin wallet you need to scan the card with number %d</string>
<string name="twins_onboarding_description_format">This one that you are holding in your hands and the other one with number %s.\n\nBoth cards can be used to extract funds from this wallet.</string>
<string name="twins_onboarding_subtitle">One wallet. Two cards.</string>
<string name="twins_recreate_button_format">Scan the card #%s</string>
<string name="twins_recreate_title_creating_wallet">Creating wallet</string>
<string name="twins_recreate_title_format">Scan the #%s twin card</string>
<string name="twins_recreate_title_preparing">Preparing card</string>
<string name="shop_other_payment_methods"></string>
<string name="shop_shipping"></string>
<string name="shop_total"></string>
<string name="solana_rent_warning"></string>
<string name="story_awe_description"></string>
<string name="story_awe_title"></string>
<string name="story_backup_description_1"></string>
<string name="story_backup_description_2_bold"></string>
<string name="story_backup_description_3"></string>
<string name="story_backup_title"></string>
<string name="story_currencies_description"></string>
<string name="story_currencies_title"></string>
<string name="story_finish_description"></string>
<string name="story_finish_title"></string>
<string name="story_meet_borrow"></string>
<string name="story_meet_buy"></string>
<string name="story_meet_exchange"></string>
<string name="story_meet_lend"></string>
<string name="story_meet_pay"></string>
<string name="story_meet_send"></string>
<string name="story_meet_store"></string>
<string name="story_meet_title"></string>
<string name="story_web3_description"></string>
<string name="story_web3_title"></string>
<string name="swapping_error_wrapper"></string>
<string name="swapping_generic_error"></string>
<string name="swapping_give_permission"></string>
<string name="swapping_high_price_impact"></string>
<string name="swapping_high_price_impact_description"></string>
<string name="swapping_insufficient_funds"></string>
<string name="swapping_not_enough_funds_for_fee"></string>
<string name="swapping_pending_transaction_subtitle"></string>
<string name="swapping_pending_transaction_title"></string>
<string name="swapping_permission_buttons_approve"></string>
<string name="swapping_permission_header"></string>
<string name="swapping_permission_rows_amount"></string>
<string name="swapping_permission_rows_spender"></string>
<string name="swapping_permission_rows_your_wallet"></string>
<string name="swapping_permission_subheader"></string>
<string name="swapping_permit_and_swap"></string>
<string name="swapping_success_view_explorer_button_title"></string>
<string name="swapping_success_view_title"></string>
<string name="swapping_swap"></string>
<string name="swapping_swap_action"></string>
<string name="swapping_swap_of_to"></string>
<string name="swapping_tangem_fee_disclaimer"></string>
<string name="swapping_token_list_other_tokens"></string>
<string name="swapping_token_list_title"></string>
<string name="swapping_token_list_your_tokens"></string>
<string name="swapping_token_not_available"></string>
<plurals name="token_count">
<item quantity="one"></item>
<item quantity="other"></item>
</plurals>
<string name="token_details_hide_alert_hide"></string>
<string name="token_details_hide_alert_message"></string>
<string name="token_details_hide_alert_title"></string>
<string name="token_details_hide_token"></string>
<string name="token_details_send_blocked_fee_format"></string>
<string name="token_details_send_blocked_tx_format"></string>
<string name="token_details_unable_hide_alert_message"></string>
<string name="token_details_unable_hide_alert_title"></string>
<string name="token_item_no_rate"></string>
<string name="transaction_history_empty_transactions"></string>
<string name="transaction_history_error_failed_to_load"></string>
<string name="transaction_history_title"></string>
<string name="transaction_history_tx_in_progress"></string>
<string name="twin_error_same_card"></string>
<string name="twins_onboarding_description_format"></string>
<string name="twins_onboarding_subtitle"></string>
<string name="twins_recreate_button_format"></string>
<string name="twins_recreate_title_creating_wallet"></string>
<string name="twins_recreate_title_format"></string>
<string name="twins_recreate_title_preparing"></string>
<string name="twins_recreate_toolbar">Tangem Twin</string>
<string name="twins_recreate_warning">This action is irreversible. You will not have access to the old wallet.</string>
<string name="user_wallet_list_add_button">Add new wallet</string>
<string name="user_wallet_list_delete_prompt">Are you sure you want to delete this wallet?</string>
<string name="user_wallet_list_editing_count">%d selected</string>
<string name="user_wallet_list_error_unable_to_unlock">An error has occurred, please scan your card to log in</string>
<string name="user_wallet_list_error_wallet_already_saved">This wallet has already been saved, you can add another one</string>
<string name="user_wallet_list_multi_header">Multi-currency</string>
<string name="user_wallet_list_rename_popup_placeholder">Wallet name</string>
<string name="user_wallet_list_rename_popup_title">Rename Wallet</string>
<string name="user_wallet_list_single_header">Single-currency</string>
<string name="user_wallet_list_title">My Wallets</string>
<string name="user_wallet_list_unlock_all">Unlock all with %s</string>
<string name="twins_recreate_warning"></string>
<string name="user_wallet_list_add_button"></string>
<string name="user_wallet_list_delete_prompt"></string>
<string name="user_wallet_list_editing_count"></string>
<string name="user_wallet_list_error_unable_to_unlock"></string>
<string name="user_wallet_list_error_wallet_already_saved"></string>
<string name="user_wallet_list_multi_header"></string>
<string name="user_wallet_list_rename_popup_placeholder"></string>
<string name="user_wallet_list_rename_popup_title"></string>
<string name="user_wallet_list_single_header"></string>
<string name="user_wallet_list_title"></string>
<string name="user_wallet_list_unlock_all"></string>
<string name="wallet_address_button_create_payid">PayString erstellen</string>
<string name="wallet_address_button_explore">Adresse erkunden</string>
<string name="wallet_balance_blockchain_unreachable">Network is unreachable</string>
<string name="wallet_balance_blockchain_unreachable_try_later">Blockchain is unreachable. Try later</string>
<string name="wallet_address_button_explore"></string>
<string name="wallet_balance_blockchain_unreachable"></string>
<string name="wallet_balance_blockchain_unreachable_try_later"></string>
<string name="wallet_balance_loading">Die Bilanz wird aufgeladen…</string>
<string name="wallet_balance_missing_derivation">Scan the card</string>
<string name="wallet_balance_missing_derivation"></string>
<string name="wallet_balance_tx_in_progress">Die Transaktion läuft…</string>
<string name="wallet_balance_verified">Verifizierte Bilanz</string>
<string name="wallet_button_actions">Actions</string>
<string name="wallet_button_buy">Buy</string>
<string name="wallet_button_actions"></string>
<string name="wallet_button_buy"></string>
<string name="wallet_button_create_wallet">ein Wallet erstellen</string>
<string name="wallet_button_sell">Sell</string>
<string name="wallet_button_sell"></string>
<string name="wallet_button_send">Absenden</string>
<string name="wallet_button_trade">Exchange</string>
<string name="wallet_choose_trade_action">Do you want to buy or sell crypto?</string>
<string name="wallet_connect_alert_sign_message">Requesting to sign a message.\n\n%s</string>
<string name="wallet_connect_bnb_sign_message">Dapp %1$s, requesting to\nsign BNB transaction.\n\n%2$s</string>
<string name="wallet_connect_bnb_trade_order_message">Trade order for %1$s\nPrice: %2$s\nAmount to receive: %3$s\nAmount to pay: %4$s</string>
<string name="wallet_connect_bnb_transaction_message">Transaction details:\nFrom: %1$s\nTo: %2$s\nAmount: %3$s</string>
<string name="wallet_connect_clipboard_alert">Clipboard contain WalletConnect code. Use copied value or scan QR-code</string>
<string name="wallet_connect_create_tx_message">Request to create transaction for %1$s\n%2$s\n\nAmount: %3$s\nFee: %4$s\nTotal: %5$s\nBalance: %6$s</string>
<string name="wallet_connect_create_tx_not_enough_funds">Can\'t send transaction. Not enough funds.</string>
<string name="wallet_connect_error_failed_to_connect">Failed to establish WalletConnect session. Please, try again later.</string>
<string name="wallet_connect_error_missing_blockchains">Not all tokens were added to your list. Please add them first and try again. Missing tokens:\n</string>
<string name="wallet_connect_error_timeout">Failed to establish WalletConnect session: timeout error. Please, try again later.</string>
<string name="wallet_connect_error_unsupported_blockchains">Session request contains unsupported blockchains for WalletConnect connection. Unsupported blockchains:\n</string>
<string name="wallet_connect_error_unsupported_dapp">Connection with this Dapp cannot be established due to its technical implementation.</string>
<string name="wallet_connect_generic_error_with_code">We\'ve encountered unknown error. Error code: %d. If the problem persists — feel free to contact our support</string>
<string name="wallet_connect_network_not_found_format">%s network not found. Please, add it first and try again.</string>
<string name="wallet_connect_no_sessions_message">No opened WalletConnect sessions</string>
<string name="wallet_connect_no_sessions_title">Ooops. No Sessions.</string>
<string name="wallet_connect_open_session">Open session</string>
<string name="wallet_connect_paste_from_clipboard">Paste from clipboard</string>
<string name="wallet_connect_request_session_start">Request to start a session for\n%1$s\n\nNETWORK: %2$s\n\nURL: %3$s</string>
<string name="wallet_connect_same_wcuri">The operation couldn\'t be completed.\n\nYou have already established a WalletConnect session with this parameters.</string>
<string name="wallet_connect_scan_new_code">Scan new code</string>
<string name="wallet_connect_scanner_error_not_valid_card">This card can\'t be used to establish WalletConnect session</string>
<string name="wallet_connect_scanner_error_unsupported_network">This network is not supported. Please select another network.</string>
<string name="wallet_connect_select_network">Select network</string>
<string name="wallet_connect_sessions_title">WalletConnect Sessions</string>
<string name="wallet_connect_subtitle">Connect to Dapps</string>
<string name="wallet_button_trade"></string>
<string name="wallet_choose_trade_action"></string>
<string name="wallet_connect_alert_sign_message"></string>
<string name="wallet_connect_bnb_sign_message"></string>
<string name="wallet_connect_bnb_trade_order_message"></string>
<string name="wallet_connect_bnb_transaction_message"></string>
<string name="wallet_connect_clipboard_alert"></string>
<string name="wallet_connect_create_tx_message"></string>
<string name="wallet_connect_create_tx_not_enough_funds"></string>
<string name="wallet_connect_error_failed_to_connect"></string>
<string name="wallet_connect_error_missing_blockchains"></string>
<string name="wallet_connect_error_timeout"></string>
<string name="wallet_connect_error_unsupported_blockchains"></string>
<string name="wallet_connect_error_unsupported_dapp"></string>
<string name="wallet_connect_error_wrong_card_selected"></string>
<string name="wallet_connect_generic_error_with_code"></string>
<string name="wallet_connect_network_not_found_format"></string>
<string name="wallet_connect_no_sessions_message"></string>
<string name="wallet_connect_no_sessions_title"></string>
<string name="wallet_connect_open_session"></string>
<string name="wallet_connect_paste_from_clipboard"></string>
<string name="wallet_connect_request_session_start"></string>
<string name="wallet_connect_same_wcuri"></string>
<string name="wallet_connect_scan_new_code"></string>
<string name="wallet_connect_scanner_error_not_valid_card"></string>
<string name="wallet_connect_scanner_error_unsupported_network"></string>
<string name="wallet_connect_select_network"></string>
<string name="wallet_connect_sessions_title"></string>
<string name="wallet_connect_subtitle"></string>
<string name="wallet_connect_title">WalletConnect</string>
<string name="wallet_create_payid">PayString erstellen</string>
<string name="wallet_create_payid_domain">$payid.tangem.com</string>
@ -440,11 +475,11 @@
<string name="wallet_create_payid_error_message">Fehlerantwort beim Erstellen der PayString</string>
<string name="wallet_create_payid_hint">PayString Name</string>
<string name="wallet_create_payid_info">PayString sind Ihre einzigartigen Identifikationsdaten wie Telefonnummer, E-Mail-Adresse oder ABN.</string>
<string name="wallet_currency_subtitle">%s network</string>
<string name="wallet_currency_subtitle"></string>
<string name="wallet_error_empty_card">Leere Karte</string>
<string name="wallet_error_empty_card_subtitle">Erstellen Sie ein Wallet um die Tangem-Karte verwenden zu können</string>
<string name="wallet_error_empty_twin_card">Create twin wallet</string>
<string name="wallet_error_empty_twin_card_subtitle">Generate wallet keys on both cards to start using your Twins</string>
<string name="wallet_error_empty_twin_card"></string>
<string name="wallet_error_empty_twin_card_subtitle"></string>
<string name="wallet_error_no_account">Das Konto ist nicht erstellt</string>
<string name="wallet_error_unsupported_blockchain">Diese Karte wird nicht unterstützt</string>
<string name="wallet_error_unsupported_blockchain_subtitle">Ihre Tangem-Karte wurde für die Arbeit mit einer anderen App ausgestellt. Bitte sehen Sie sich den Namen und die Anleitung auf Ihrer Karte an und installieren Sie eine korrekte App</string>
@ -455,28 +490,28 @@
<string name="wallet_pending_tx_sending">Senden</string>
<string name="wallet_pending_tx_sending_address_format">an %s</string>
<string name="wallet_title">Tangem</string>
<string name="warning_button_can_be_better">Can be better</string>
<string name="warning_button_learn_more">Learn more</string>
<string name="warning_button_can_be_better"></string>
<string name="warning_button_learn_more"></string>
<string name="warning_button_ok">OK, ich hab\'s!</string>
<string name="warning_button_really_cool">Really cool!</string>
<string name="warning_existential_deposit_message">%1$s network has a concept of Existential Deposit. If your account drops below %2$s it will be deactivated and any remaining funds will be destroyed.</string>
<string name="warning_failed_to_verify_card_message">This card might be a production sample or counterfeit</string>
<string name="warning_failed_to_verify_card_title">Authenticity check failed</string>
<string name="warning_important_security_info">Important security information %s</string>
<string name="warning_low_signatures_format">There are only %s signatures available on this card. You must withdraw all of your funds.</string>
<string name="warning_rate_app_message">How do you like Tangem?</string>
<string name="warning_rate_app_title">One question</string>
<string name="warning_signed_tx_previously">This card has signed transactions in the past</string>
<string name="warning_testnet_card_message">This is a Testnet card. Don\'t accept it as a payment. This card must only be used for testing and development purposes.</string>
<string name="welcome_interrupted_backup_alert_discard">Discard</string>
<string name="welcome_interrupted_backup_alert_message">You have an interrupted backup. Do you want to resume?</string>
<string name="welcome_interrupted_backup_alert_resume">Yes, resume</string>
<string name="welcome_interrupted_backup_discard_discard">Discard</string>
<string name="welcome_interrupted_backup_discard_message">If you will discard the backup now, then you will have to reset the cards to factory settings to start over again</string>
<string name="welcome_interrupted_backup_discard_resume">Resume backup</string>
<string name="welcome_interrupted_backup_discard_title">This is an irreversible action</string>
<string name="welcome_unlock">Log in with %s</string>
<string name="welcome_unlock_card">Scan card</string>
<string name="welcome_unlock_description">Use %s or scan a card to access the app</string>
<string name="welcome_unlock_title">Welcome back!</string>
<string name="warning_button_really_cool"></string>
<string name="warning_existential_deposit_message"></string>
<string name="warning_failed_to_verify_card_message"></string>
<string name="warning_failed_to_verify_card_title"></string>
<string name="warning_important_security_info"></string>
<string name="warning_low_signatures_format"></string>
<string name="warning_rate_app_message"></string>
<string name="warning_rate_app_title"></string>
<string name="warning_signed_tx_previously"></string>
<string name="warning_testnet_card_message"></string>
<string name="welcome_interrupted_backup_alert_discard"></string>
<string name="welcome_interrupted_backup_alert_message"></string>
<string name="welcome_interrupted_backup_alert_resume"></string>
<string name="welcome_interrupted_backup_discard_discard"></string>
<string name="welcome_interrupted_backup_discard_message"></string>
<string name="welcome_interrupted_backup_discard_resume"></string>
<string name="welcome_interrupted_backup_discard_title"></string>
<string name="welcome_unlock"></string>
<string name="welcome_unlock_card"></string>
<string name="welcome_unlock_description"></string>
<string name="welcome_unlock_title"></string>
</resources>

View file

@ -1,283 +1,313 @@
<?xml version="1.0" encoding="UTF-8"?>
<resources>
<string name="add_custom_token_title">Add custom token</string>
<string name="address_qr_code_message_format">Send only %1$s (%2$s) from %3$s network to this address. Using other tokens and networks may result in loss of funds.</string>
<string name="alert_button_request_support">Request support</string>
<string name="alert_button_send_feedback">Send feedback</string>
<string name="add_custom_token_title"></string>
<string name="address_qr_code_message_format"></string>
<string name="alert_button_request_support"></string>
<string name="alert_button_send_feedback"></string>
<string name="alert_card_signed_transactions">Cette carte a déjà été rechargée et a signé des transactions avant. Envisagez la possibilité de retirer tous les fonds immédiatement si vous avez reçu cette carte d\'une source non fiable.</string>
<string name="alert_demo_feature_disabled">This feature is disabled in Demo mode</string>
<string name="alert_demo_message">You are currently running in Demo mode. All funds are not real.</string>
<string name="alert_demo_feature_disabled"></string>
<string name="alert_demo_message"></string>
<string name="alert_developer_card">La carte que vous avez scannée est une carte de développement. Ne l\'acceptez pas comme paiement.</string>
<string name="alert_failed_to_send_transaction_message">Reason: %s</string>
<string name="alert_failed_to_send_transaction_title">Can\'t send a transaction</string>
<string name="alert_manage_tokens_addresses_message">Note that tokens on different networks have different addresses. Double check that your address matches the network when you transfer funds.</string>
<string name="alert_manage_tokens_unsupported_message">Tokens in Solana network are not supported by this card due to firmware limitation.</string>
<string name="alert_signed_hashes_message">This card is not a bearer note. We can\'t currently match the signature count on the card with the information on the blockchain. This is normal but in rare cases can mean a previous holder is holding back an offline signature, which is a security concern.\nDo not accept this card as physical payment from someone you don\'t trust.\nIt\'s perfectly safe in all other respects.\nTangem is the only hardware wallet to offer signature count protection.</string>
<string name="alert_troubleshooting_scan_card_title">Are you having difficulty scanning your card?</string>
<string name="alert_failed_to_send_transaction_message"></string>
<string name="alert_failed_to_send_transaction_title"></string>
<string name="alert_manage_tokens_addresses_message"></string>
<string name="alert_manage_tokens_unsupported_message"></string>
<string name="alert_signed_hashes_message"></string>
<string name="alert_troubleshooting_scan_card_title"></string>
<string name="alert_unsupported_card">Cette carte n\'est pas conçue pour fonctionner avec Tangem</string>
<string name="app_settings_enable_biometrics_description">Go to settings to enable biometric authentication in the Tangem App</string>
<string name="app_settings_enable_biometrics_title">Enable biometric authentication</string>
<string name="app_settings_off_saved_access_code_alert_message">This will delete all the saved wallet access codes. Any further operation with the wallet will require submitting the access code.</string>
<string name="app_settings_off_saved_wallet_alert_message">Removing the saved card deletes all the saved wallets and their access codes from the app.</string>
<string name="app_settings_saved_access_codes">Save Access Code</string>
<string name="app_settings_saved_access_codes_footer">Biometric authentication will be requested instead of the access code for interactions with your card.</string>
<string name="app_settings_saved_wallet">Keep the wallet in the app</string>
<string name="app_settings_saved_wallet_footer">Enable to link all the wallets to Tangem app. Biometric authentication will be required for unlocking the app. Transaction signing requires tapping your Tangem card.</string>
<string name="app_settings_title">App Settings</string>
<string name="biometric_lockout_permanent_warning_description">Please scan the card</string>
<string name="biometric_lockout_warning_description">Please try again in 30 seconds or scan the card</string>
<string name="biometric_lockout_warning_title">Too many attempts</string>
<string name="card_settings_action_sheet_reset">Reset</string>
<string name="card_settings_action_sheet_title">Are you sure you want to do this?</string>
<string name="card_settings_change_access_code">Change Access Code</string>
<string name="card_settings_change_access_code_footer">Access code will be changed on this card only</string>
<string name="card_settings_reset_card_to_factory">Reset to Factory Settings</string>
<string name="card_settings_security_mode">Security Mode</string>
<string name="card_settings_title">Card Settings</string>
<string name="app_settings_enable_biometrics_description"></string>
<string name="app_settings_enable_biometrics_title"></string>
<string name="app_settings_off_saved_access_code_alert_message"></string>
<string name="app_settings_off_saved_wallet_alert_message"></string>
<string name="app_settings_saved_access_codes"></string>
<string name="app_settings_saved_access_codes_footer"></string>
<string name="app_settings_saved_wallet"></string>
<string name="app_settings_saved_wallet_footer"></string>
<string name="app_settings_title"></string>
<string name="biometric_lockout_permanent_warning_description"></string>
<string name="biometric_lockout_warning_description"></string>
<string name="biometric_lockout_warning_title"></string>
<string name="card_settings_access_code_recovery_disabled_description"></string>
<string name="card_settings_access_code_recovery_enabled_description"></string>
<string name="card_settings_access_code_recovery_footer"></string>
<string name="card_settings_access_code_recovery_title"></string>
<string name="card_settings_action_sheet_reset"></string>
<string name="card_settings_action_sheet_title"></string>
<string name="card_settings_change_access_code"></string>
<string name="card_settings_change_access_code_footer"></string>
<string name="card_settings_reset_card_to_factory"></string>
<string name="card_settings_security_mode"></string>
<string name="card_settings_title"></string>
<string name="chat_bot_name">Tangem Bot</string>
<string name="chat_button_title">Support</string>
<string name="chat_button_title"></string>
<string name="chat_user_action_rate_user"></string>
<string name="chat_user_action_send_log"></string>
<string name="chat_user_actions_title"></string>
<string name="chat_user_rate_operator_title"></string>
<string name="common_accept">J\'accepte</string>
<string name="common_add">Add</string>
<string name="common_attention">Attention</string>
<string name="common_add"></string>
<string name="common_attention"></string>
<string name="common_balance">Solde : %s</string>
<string name="common_biometric_authentication">biometric authentication</string>
<string name="common_biometrics">biometrics</string>
<string name="common_biometric_authentication"></string>
<string name="common_biometrics"></string>
<string name="common_camera_denied_alert_message">Vous n\'avez pas octroyé l\'accès à votre caméra, veuillez modifier vos paramètres de confidentialité</string>
<string name="common_cancel">Annuler</string>
<string name="common_close">Close</string>
<string name="common_continue">Continue</string>
<string name="common_copy">Copy</string>
<string name="common_create">Create</string>
<string name="common_close"></string>
<string name="common_continue"></string>
<string name="common_copy"></string>
<string name="common_create"></string>
<string name="common_delete">Supprimer</string>
<string name="common_disconnect">Disconnect</string>
<string name="common_disabled"></string>
<string name="common_disconnect"></string>
<string name="common_done">Exécuté</string>
<string name="common_enable">Enable</string>
<string name="common_enable"></string>
<string name="common_enabled"></string>
<string name="common_error">Erreur</string>
<string name="common_no">No</string>
<string name="common_import"></string>
<string name="common_no"></string>
<string name="common_ok">OK</string>
<string name="common_origin_card">Primary Card</string>
<string name="common_reject">Reject</string>
<string name="common_retry">Retry</string>
<string name="common_origin_card"></string>
<string name="common_reject"></string>
<string name="common_retry"></string>
<string name="common_save_changes">Sauvegarder les modifications</string>
<string name="common_search">Search</string>
<string name="common_server_unavailable">The server is not available, please try again later</string>
<string name="common_share">Share</string>
<string name="common_sign">Sign</string>
<string name="common_sign_and_send">Sign and send</string>
<string name="common_start">Start</string>
<string name="common_submit">Submit</string>
<string name="common_search"></string>
<string name="common_server_unavailable"></string>
<string name="common_share"></string>
<string name="common_sign"></string>
<string name="common_sign_and_send"></string>
<string name="common_start"></string>
<string name="common_submit"></string>
<string name="common_success">Avec succès</string>
<string name="common_terms_and_conditions">terms and conditions</string>
<string name="common_understand">I understand</string>
<string name="common_terms_and_conditions"></string>
<string name="common_understand"></string>
<string name="common_warning">Alerte</string>
<string name="common_yes">Yes</string>
<string name="contract_address_copied_message">Contract address copied!</string>
<string name="currency_subtitle_expanded">Available networks</string>
<string name="custom_token_contract_address_input_title">Contract address</string>
<string name="custom_token_creation_error_invalid_contract_address">Contract address is invalid</string>
<string name="custom_token_creation_error_invalid_derivation_path">Derivation path is invalid</string>
<string name="custom_token_creation_error_network_not_selected">Please select the network</string>
<string name="custom_token_creation_error_required_field">Required field</string>
<string name="custom_token_creation_error_wrong_decimals">Decimal number must be a valid integer, no higher than %d</string>
<string name="custom_token_decimals_input_title">Decimals</string>
<string name="custom_token_derivation_path_default">Default</string>
<string name="custom_token_derivation_path_input_title">BIP44 coin type</string>
<string name="custom_token_name_input_placeholder">E.g. USD Coin</string>
<string name="custom_token_name_input_title">Name</string>
<string name="custom_token_network_input_not_selected">Not selected</string>
<string name="custom_token_network_input_title">Network</string>
<string name="custom_token_token_symbol_input_placeholder">E.g. USDC</string>
<string name="custom_token_token_symbol_input_title">Token symbol</string>
<string name="custom_token_validation_error_already_added">This token/network has already been added to your list</string>
<string name="custom_token_validation_error_not_found">Note that tokens can be created by anyone. Be aware of adding scam tokens, they can cost nothing.</string>
<string name="details_chat">Chat</string>
<string name="common_yes"></string>
<string name="contract_address_copied_message"></string>
<string name="currency_subtitle_expanded"></string>
<string name="custom_token_contract_address_input_title"></string>
<string name="custom_token_creation_error_invalid_contract_address"></string>
<string name="custom_token_creation_error_invalid_derivation_path"></string>
<string name="custom_token_creation_error_network_not_selected"></string>
<string name="custom_token_creation_error_required_field"></string>
<string name="custom_token_creation_error_wrong_decimals"></string>
<string name="custom_token_decimals_input_title"></string>
<string name="custom_token_derivation_path_default"></string>
<string name="custom_token_derivation_path_input_title"></string>
<string name="custom_token_name_input_placeholder"></string>
<string name="custom_token_name_input_title"></string>
<string name="custom_token_network_input_not_selected"></string>
<string name="custom_token_network_input_title"></string>
<string name="custom_token_token_symbol_input_placeholder"></string>
<string name="custom_token_token_symbol_input_title"></string>
<string name="custom_token_validation_error_already_added"></string>
<string name="custom_token_validation_error_not_found"></string>
<string name="details_chat"></string>
<string name="details_manage_security_access_code">Code d\'accès</string>
<string name="details_manage_security_access_code_description">Vous devrez entrer le mot de passe correct avant de scanner la carte</string>
<string name="details_manage_security_long_tap">Tenez la carte fermement</string>
<string name="details_manage_security_long_tap_description">Ce mécanisme protège contre les attaques sans contact sur la carte. Il y a un délai entre la réception et l\'exécution de la commande. Après la première transaction signée, ce téléphone sera associé à la carte et les transactions seront signées immédiatement.</string>
<string name="details_manage_security_passcode">Mot de passe</string>
<string name="details_manage_security_passcode_description">Avant d\'exécuter une commande qui modifie l\'état de la carte, vous devrez entrer un mot de passe.</string>
<string name="details_referral_title">Referral program</string>
<string name="details_row_privacy_policy">Privacy policy</string>
<string name="details_referral_title"></string>
<string name="details_row_privacy_policy"></string>
<string name="details_row_subtitle_signed_hashes_format">%s hashes</string>
<string name="details_row_title_card_tou">Card terms of use</string>
<string name="details_row_title_card_tou"></string>
<string name="details_row_title_cid">ID de la carte</string>
<string name="details_row_title_create_backup">Link More Cards</string>
<string name="details_row_title_create_backup"></string>
<string name="details_row_title_currency">Monnaie de l\'application</string>
<string name="details_row_title_issuer">Emetteur</string>
<string name="details_row_title_send_feedback">Send Feedback</string>
<string name="details_row_title_send_feedback"></string>
<string name="details_row_title_signed_hashes">Signé</string>
<string name="details_title">Référénces</string>
<string name="disclaimer_error_loading">Check your internet connection or switch to a different network</string>
<string name="disclaimer_error_loading"></string>
<string name="disclaimer_title">Conditions d\'utilisation</string>
<string name="error_update_app">Oops, the current version of the application is not ready to work with this card, please check for updates.</string>
<string name="error_wrong_wallet_tapped">You have used a card from another wallet. Tap the card associated with this wallet</string>
<string name="exchange_receive_view_header">You Receive</string>
<string name="exchange_send_view_header">You Send</string>
<string name="feedback_data_collection_message">The following information is optional. You can erase it if you don\'t want to share it.</string>
<string name="feedback_preface_rate_negative">Tell us what functions you are missing, and we will try to help you.</string>
<string name="feedback_preface_scan_failed">Please tell us what card do you have</string>
<string name="feedback_preface_support">Hi support team,</string>
<string name="feedback_preface_tx_failed">Please tell us more about your issue. Every small detail can help.</string>
<string name="feedback_subject_rate_negative">My suggestions</string>
<string name="feedback_subject_scan_failed">Can\'t scan a card</string>
<string name="feedback_subject_support">Feedback</string>
<string name="feedback_subject_support_tangem">Tangem feedback</string>
<string name="feedback_subject_tx_failed">Can\'t send a transaction</string>
<string name="home_button_order">Order</string>
<string name="error_update_app"></string>
<string name="error_wrong_wallet_tapped"></string>
<string name="exchange_receive_view_header"></string>
<string name="exchange_send_view_header"></string>
<string name="feedback_data_collection_message"></string>
<string name="feedback_preface_rate_negative"></string>
<string name="feedback_preface_scan_failed"></string>
<string name="feedback_preface_support"></string>
<string name="feedback_preface_tx_failed"></string>
<string name="feedback_subject_rate_negative"></string>
<string name="feedback_subject_scan_failed"></string>
<string name="feedback_subject_support"></string>
<string name="feedback_subject_support_tangem"></string>
<string name="feedback_subject_tx_failed"></string>
<string name="home_button_order"></string>
<string name="initial_message_change_access_code_body">Touchez, pour modifier le code d\'accès</string>
<string name="initial_message_change_passcode_body">Touchez, pour modifier le mot de passe</string>
<string name="initial_message_create_wallet_body">To create the wallet tap the card as shown above and do not remove until the end of the operation</string>
<string name="initial_message_create_wallet_body"></string>
<string name="initial_message_scan_header">Posez pour scanner</string>
<string name="initial_message_sign_header">Touchez pour signer</string>
<string name="initial_message_tap_header">Posez la carte</string>
<string name="internal_error_wallet_manager_not_found">Internal error: wallet manager not found</string>
<string name="main_manage_tokens">Manage tokens</string>
<string name="main_no_backup_warning_subtitle">To protect your assets, we advise you to carry out this procedure</string>
<string name="main_no_backup_warning_title">Your wallet has not been backed up</string>
<string name="main_page_balance">Total balance</string>
<string name="main_processing_full_amount">The amount does not include some of your funds</string>
<string name="main_scan_card_warning_view_subtitle">To access all the networks you need to scan the card</string>
<string name="main_scan_card_warning_view_title">Scan your card</string>
<string name="main_tokens">Tokens</string>
<string name="onboarding_access_code_feature_1_description">You have to set up a single access code to protect all your wallets</string>
<string name="onboarding_access_code_feature_1_title">Protect</string>
<string name="onboarding_access_code_feature_2_description">You can set up an individual access code on each card later</string>
<string name="onboarding_access_code_feature_2_title">Personalize</string>
<string name="onboarding_access_code_feature_3_description">The access code can be restored with a linked card, don\'t keep all cards in one place</string>
<string name="onboarding_access_code_feature_3_title">Restore</string>
<string name="onboarding_access_code_hint">Choose any word, phrase, or number you want as your access code</string>
<string name="onboarding_access_code_intro_title">Create Access Code</string>
<string name="onboarding_access_code_repeat_code_title">Re-enter your Access Code</string>
<string name="onboarding_access_code_too_short">Access code must be at least 4 characters long</string>
<string name="onboarding_access_codes_doesnt_match">Entered access code didn\'t match the initial access code</string>
<string name="onboarding_alert_message_not_max_backup_cards_added">You\'ve added one backup card. When backup process is finished you can\'t add more backup cards. If you have one more card, add it to backup. Do you like to continue the backup process?</string>
<string name="onboarding_backup_exit_warning">The backup process is partly complete. You can\'t exit it now.</string>
<string name="onboarding_balance_title">Balance</string>
<string name="onboarding_button_add_backup_card">Add a backup card</string>
<string name="onboarding_button_backup_card_format">Scan the card #%d</string>
<string name="onboarding_button_backup_now">Backup now</string>
<string name="onboarding_button_backup_origin">Scan the primary card</string>
<string name="onboarding_button_claim">Claim</string>
<string name="onboarding_button_continue_wallet">Continue to my wallet</string>
<string name="onboarding_button_finalize_backup">Finalize the backup process</string>
<string name="onboarding_button_kyc_start">Verify via Utorg</string>
<string name="onboarding_button_kyc_waiting">Refresh</string>
<string name="onboarding_button_pin">Set PIN code</string>
<string name="onboarding_button_receive_crypto">Receive crypto</string>
<string name="onboarding_button_register_wallet">Register</string>
<string name="onboarding_button_scan_origin_card">Scan primary card</string>
<string name="onboarding_button_skip_backup">Skip for later</string>
<string name="onboarding_button_what_does_it_mean">How does it work?</string>
<string name="onboarding_create_wallet_body">Let\'s generate all the keys on your card and create a secure wallet</string>
<string name="onboarding_create_wallet_button_create_wallet">Create wallet</string>
<string name="onboarding_create_wallet_header">Create a wallet</string>
<string name="onboarding_done_body">Your card is activated and ready to be used</string>
<string name="onboarding_done_header">Success!</string>
<string name="onboarding_exit_alert_message">In this case, you will need to start from the beginning.</string>
<string name="onboarding_exit_alert_title">Do you want to exit the activation process?</string>
<string name="onboarding_getting_started">Getting started</string>
<string name="onboarding_navbar_kyc_progress">Verify your identity</string>
<string name="onboarding_navbar_kyc_start">KYC</string>
<string name="onboarding_navbar_pin">Pin code</string>
<string name="onboarding_navbar_register_wallet">Connect</string>
<string name="onboarding_navbar_title_creating_backup">Creating a backup</string>
<string name="onboarding_saltpay_button_backup_origin">Tap the SaltPay card</string>
<string name="onboarding_saltpay_subtitle_no_backup_cards">To start the backup process you have to add the Tangem card as your backup</string>
<string name="onboarding_saltpay_subtitle_one_backup_card">Finalize the backup process by creating an access code</string>
<string name="onboarding_saltpay_title_backup_card">Tap the Tangem card</string>
<string name="onboarding_saltpay_title_no_backup_card">No backup card</string>
<string name="onboarding_saltpay_title_one_backup_card">Backup card ready</string>
<string name="onboarding_saltpay_title_prepare_origin">Prepare the SaltPay card</string>
<string name="onboarding_subtitle_claim">To get started, simply claim wxDAI to your wallet</string>
<string name="onboarding_subtitle_claim_progress">It will take a few seconds</string>
<string name="onboarding_subtitle_kyc_retry">Please check your email for further instructions</string>
<string name="onboarding_subtitle_kyc_start">To start using your card you have to pass the KYC process</string>
<string name="onboarding_subtitle_kyc_waiting">Please wait until the verification is completed. You\'ll be notified via email. Usually it takes up to 1 hour. You can close the app and come back later.</string>
<string name="onboarding_subtitle_no_backup_cards">To start the backup process add up to two backup cards.</string>
<string name="onboarding_subtitle_one_backup_card">You can add one more card or finalize the backup process</string>
<string name="onboarding_subtitle_pin">Set up a 4-digit code.\nIt will be used for payments.</string>
<string name="onboarding_subtitle_register_wallet">Connect your card to the decentralized payment system</string>
<string name="onboarding_subtitle_scan_backup_card_format">Prepare the backup card with number %s</string>
<string name="onboarding_subtitle_scan_origin_card">Prepare the primary card</string>
<string name="onboarding_subtitle_scan_primary_card_format">Prepare the primary card with number %s</string>
<string name="onboarding_subtitle_success_claim">Congratulations! Your first payment crypto card has been activated!</string>
<string name="onboarding_subtitle_success_tangem_wallet_onboarding">Your wallet card is configured and ready for use.</string>
<string name="onboarding_subtitle_two_backup_cards">Max number of cards added. Finalize the backup process.</string>
<string name="onboarding_title">Activating card</string>
<string name="onboarding_title_backup_card_format">Backup card #%d</string>
<string name="onboarding_title_claim">Claim %s</string>
<string name="onboarding_title_claim_progress">Claiming</string>
<string name="onboarding_title_kyc_retry">Something went wrong</string>
<string name="onboarding_title_kyc_start">Verify your identity</string>
<string name="onboarding_title_kyc_waiting">KYC is in progress</string>
<string name="onboarding_title_no_backup_cards">No backup cards</string>
<string name="onboarding_title_one_backup_card">One backup card added</string>
<string name="onboarding_title_pin">PIN Code</string>
<string name="onboarding_title_register_wallet">Connect your card</string>
<string name="onboarding_title_scan_origin_card">Prepare your card</string>
<string name="onboarding_title_two_backup_cards">Two backup cards added</string>
<string name="onboarding_top_up_body">To get started, simply top up the wallet with any amount</string>
<string name="onboarding_top_up_body_no_account_error">To get started, simply top up the wallet with more than %1$s %2$s</string>
<string name="onboarding_top_up_button_but_crypto">Buy crypto</string>
<string name="onboarding_top_up_button_show_wallet_address">Show the wallet\'s address</string>
<string name="onboarding_top_up_header">Top up your wallet</string>
<string name="onboarding_twin_exit_warning">The twinning process is partly complete. You can\'t exit it now.</string>
<string name="onboarding_twins_interrupt_warning">If the process of creating the wallet gets interrupted in any way, you\'ll have to start over</string>
<string name="onboarding_wallet_info_subtitle_first">You can backup your keys up to two other blank Tangem Wallet cards.</string>
<string name="onboarding_wallet_info_subtitle_fourth">Access code can be restored with one of backup cards.</string>
<string name="onboarding_wallet_info_subtitle_second">All the backup cards can be used as full-functional with the identical keys.</string>
<string name="onboarding_wallet_info_subtitle_third">You will be able to set an access code to protect your wallets.</string>
<string name="onboarding_wallet_info_title_first">Backup wallet</string>
<string name="onboarding_wallet_info_title_fourth">Access code restore</string>
<string name="onboarding_wallet_info_title_second">Identical cards</string>
<string name="onboarding_wallet_info_title_third">Access code</string>
<string name="referral_button_participate">Participate</string>
<string name="referral_error_failed_to_load_info">Failed to load the information about the referral program. Please try again later.</string>
<string name="referral_error_failed_to_load_info_with_reason">Failed to load the information about the referral program. Error code: %s. Please try again later.</string>
<string name="referral_error_failed_to_participate">Your participation request could not be processed. Error code: %s. Please try again later. If the problem persists — feel free to contact our support.</string>
<string name="referral_friends_bought_title">Your friends bought</string>
<string name="referral_point_currencies_description_prefix">Will get</string>
<string name="referral_point_currencies_description_suffix">for each wallet bought by your friend on your %1$s network address%2$s</string>
<string name="referral_point_currencies_title">You</string>
<string name="referral_point_discount_description_prefix">Will get a</string>
<string name="referral_point_discount_description_suffix">when buying a card on tangem.com</string>
<string name="referral_point_discount_description_value">%s discount</string>
<string name="referral_point_discount_title">Your friend</string>
<string name="referral_promo_code_copied">Personal code copied!</string>
<string name="referral_promo_code_title">Your personal code</string>
<string name="referral_share_link">Buy Tangem Wallet with discount!\n%s</string>
<string name="referral_title">Refer your friends to Tangem</string>
<string name="referral_tos_enroled_prefix">You\'ve accepted</string>
<string name="referral_tos_not_enroled_prefix">By tapping this button you accept</string>
<string name="referral_tos_suffix">of the referral program</string>
<string name="registration_task_alert_message">Please hold the card until the operation complete</string>
<string name="reset_card_to_factory_button_title">Reset the Card</string>
<string name="reset_card_to_factory_warning_message">I understand that after performing this action, I will no longer have access to the current wallet</string>
<string name="reset_card_with_backup_to_factory_message">Factory Reset will completely delete the wallet from the selected card. You will not be able to restore the current wallet or use the card to recover the access code.</string>
<string name="reset_card_without_backup_to_factory_message">Factory Reset will completely delete the wallet from the selected card and remove it from the app. You will not be able to restore the current wallet.</string>
<string name="russian_bank_card_warning_subtitle">Do you have a bank card of another country or a UnionPay card?</string>
<string name="russian_bank_card_warning_title">Russian bank cards are not accepted at the moment</string>
<string name="saltpay_error_empty_backup_message">Tap the card with the visa logo</string>
<string name="saltpay_error_empty_backup_title">Attention</string>
<string name="saltpay_error_no_gas_message">Please contact support</string>
<string name="saltpay_error_no_gas_title">No funds for activation</string>
<string name="saltpay_error_pin_weak_message">Such a PIN can be brute-forced easily</string>
<string name="saltpay_error_pin_weak_title">Four identical digits isn\'t safe</string>
<string name="save_user_wallet_agreement_access_description">Log into the app and check your balance without scanning the card</string>
<string name="save_user_wallet_agreement_access_title">Access the app</string>
<string name="save_user_wallet_agreement_allow_biometrics">Allow to use biometrics</string>
<string name="save_user_wallet_agreement_code_description_biometrics">Biometrics will be requested instead of the access code for interactions with your wallet</string>
<string name="save_user_wallet_agreement_code_title">Access code</string>
<string name="save_user_wallet_agreement_enroll_biometrics_description">It looks like you have biometric authentication disabled, it is necessary to save wallets</string>
<string name="save_user_wallet_agreement_enroll_biometrics_title">Enable biometric authorization</string>
<string name="save_user_wallet_agreement_header_biometrics">Would you like to use biometrics?</string>
<string name="save_user_wallet_agreement_notice">Note that making a transaction with your funds will still require your card</string>
<string name="scan_card_error">Scan card failed. Try again</string>
<string name="scan_card_settings_button">Scan Card</string>
<string name="scan_card_settings_message">Scan the card to change its settings. The changes will impact only the card you\'ve scanned and will not affect other cards tied to your wallet.</string>
<string name="scan_card_settings_title">Get your card ready!</string>
<string name="search_tokens_title">Search tokens</string>
<string name="internal_error_wallet_manager_not_found"></string>
<string name="key_invalidated_warning_description"></string>
<string name="main_manage_tokens"></string>
<string name="main_no_backup_warning_subtitle"></string>
<string name="main_no_backup_warning_title"></string>
<string name="main_page_balance"></string>
<string name="main_processing_full_amount"></string>
<string name="main_scan_card_warning_view_subtitle"></string>
<string name="main_scan_card_warning_view_title"></string>
<string name="main_tokens"></string>
<string name="onboarding_access_code_feature_1_description"></string>
<string name="onboarding_access_code_feature_1_title"></string>
<string name="onboarding_access_code_feature_2_description"></string>
<string name="onboarding_access_code_feature_2_title"></string>
<string name="onboarding_access_code_feature_3_description"></string>
<string name="onboarding_access_code_feature_3_title"></string>
<string name="onboarding_access_code_hint"></string>
<string name="onboarding_access_code_intro_title"></string>
<string name="onboarding_access_code_repeat_code_title"></string>
<string name="onboarding_access_code_too_short"></string>
<string name="onboarding_access_codes_doesnt_match"></string>
<string name="onboarding_alert_message_not_max_backup_cards_added"></string>
<string name="onboarding_backup_exit_warning"></string>
<string name="onboarding_balance_title"></string>
<string name="onboarding_button_add_backup_card"></string>
<string name="onboarding_button_backup_card_format"></string>
<string name="onboarding_button_backup_now"></string>
<string name="onboarding_button_backup_origin"></string>
<string name="onboarding_button_claim"></string>
<string name="onboarding_button_continue_wallet"></string>
<string name="onboarding_button_finalize_backup"></string>
<string name="onboarding_button_kyc_start"></string>
<string name="onboarding_button_kyc_waiting"></string>
<string name="onboarding_button_pin"></string>
<string name="onboarding_button_receive_crypto"></string>
<string name="onboarding_button_register_wallet"></string>
<string name="onboarding_button_scan_origin_card"></string>
<string name="onboarding_button_skip_backup"></string>
<string name="onboarding_button_what_does_it_mean"></string>
<string name="onboarding_create_wallet_body"></string>
<string name="onboarding_create_wallet_button_create_wallet"></string>
<string name="onboarding_create_wallet_header"></string>
<string name="onboarding_create_wallet_options_button_options"></string>
<string name="onboarding_create_wallet_options_message"></string>
<string name="onboarding_create_wallet_options_title"></string>
<string name="onboarding_done_body"></string>
<string name="onboarding_done_header"></string>
<string name="onboarding_exit_alert_message"></string>
<string name="onboarding_exit_alert_title"></string>
<string name="onboarding_getting_started"></string>
<string name="onboarding_linking_error_card_with_wallets"></string>
<string name="onboarding_navbar_kyc_progress"></string>
<string name="onboarding_navbar_kyc_start"></string>
<string name="onboarding_navbar_pin"></string>
<string name="onboarding_navbar_register_wallet"></string>
<string name="onboarding_navbar_title_creating_backup"></string>
<string name="onboarding_saltpay_button_backup_origin"></string>
<string name="onboarding_saltpay_subtitle_no_backup_cards"></string>
<string name="onboarding_saltpay_subtitle_one_backup_card"></string>
<string name="onboarding_saltpay_title_backup_card"></string>
<string name="onboarding_saltpay_title_no_backup_card"></string>
<string name="onboarding_saltpay_title_one_backup_card"></string>
<string name="onboarding_saltpay_title_prepare_origin"></string>
<string name="onboarding_seed_button_read_more"></string>
<string name="onboarding_seed_generate_message"></string>
<string name="onboarding_seed_generate_title"></string>
<string name="onboarding_seed_import_message"></string>
<string name="onboarding_seed_intro_button_generate"></string>
<string name="onboarding_seed_intro_button_import"></string>
<string name="onboarding_seed_intro_message"></string>
<string name="onboarding_seed_intro_title"></string>
<string name="onboarding_seed_mnemonic_invalid_checksum"></string>
<string name="onboarding_seed_mnemonic_wrong_words"></string>
<string name="onboarding_seed_phrase_intro_legacy"></string>
<string name="onboarding_seed_screenshot_alert"></string>
<string name="onboarding_seed_user_validation_message"></string>
<string name="onboarding_seed_user_validation_title"></string>
<string name="onboarding_subtitle_claim"></string>
<string name="onboarding_subtitle_claim_progress"></string>
<string name="onboarding_subtitle_kyc_retry"></string>
<string name="onboarding_subtitle_kyc_start"></string>
<string name="onboarding_subtitle_kyc_waiting"></string>
<string name="onboarding_subtitle_no_backup_cards"></string>
<string name="onboarding_subtitle_one_backup_card"></string>
<string name="onboarding_subtitle_pin"></string>
<string name="onboarding_subtitle_register_wallet"></string>
<string name="onboarding_subtitle_scan_backup_card_format"></string>
<string name="onboarding_subtitle_scan_origin_card"></string>
<string name="onboarding_subtitle_scan_primary_card_format"></string>
<string name="onboarding_subtitle_success_claim"></string>
<string name="onboarding_subtitle_success_tangem_wallet_onboarding"></string>
<string name="onboarding_subtitle_two_backup_cards"></string>
<string name="onboarding_title"></string>
<string name="onboarding_title_backup_card_format"></string>
<string name="onboarding_title_claim"></string>
<string name="onboarding_title_claim_progress"></string>
<string name="onboarding_title_kyc_retry"></string>
<string name="onboarding_title_kyc_start"></string>
<string name="onboarding_title_kyc_waiting"></string>
<string name="onboarding_title_no_backup_cards"></string>
<string name="onboarding_title_one_backup_card"></string>
<string name="onboarding_title_pin"></string>
<string name="onboarding_title_register_wallet"></string>
<string name="onboarding_title_scan_origin_card"></string>
<string name="onboarding_title_two_backup_cards"></string>
<string name="onboarding_top_up_body"></string>
<string name="onboarding_top_up_body_no_account_error"></string>
<string name="onboarding_top_up_button_but_crypto"></string>
<string name="onboarding_top_up_button_show_wallet_address"></string>
<string name="onboarding_top_up_header"></string>
<string name="onboarding_twin_exit_warning"></string>
<string name="onboarding_twins_interrupt_warning"></string>
<string name="onboarding_wallet_info_subtitle_first"></string>
<string name="onboarding_wallet_info_subtitle_fourth"></string>
<string name="onboarding_wallet_info_subtitle_second"></string>
<string name="onboarding_wallet_info_subtitle_third"></string>
<string name="onboarding_wallet_info_title_first"></string>
<string name="onboarding_wallet_info_title_fourth"></string>
<string name="onboarding_wallet_info_title_second"></string>
<string name="onboarding_wallet_info_title_third"></string>
<string name="referral_button_participate"></string>
<string name="referral_error_failed_to_load_info"></string>
<string name="referral_error_failed_to_load_info_with_reason"></string>
<string name="referral_error_failed_to_participate"></string>
<string name="referral_friends_bought_title"></string>
<string name="referral_point_currencies_description_prefix"></string>
<string name="referral_point_currencies_description_suffix"></string>
<string name="referral_point_currencies_title"></string>
<string name="referral_point_discount_description_prefix"></string>
<string name="referral_point_discount_description_suffix"></string>
<string name="referral_point_discount_description_value"></string>
<string name="referral_point_discount_title"></string>
<string name="referral_promo_code_copied"></string>
<string name="referral_promo_code_title"></string>
<string name="referral_share_link"></string>
<string name="referral_title"></string>
<string name="referral_tos_enroled_prefix"></string>
<string name="referral_tos_not_enroled_prefix"></string>
<string name="referral_tos_suffix"></string>
<string name="registration_task_alert_message"></string>
<string name="reset_card_to_factory_button_title"></string>
<string name="reset_card_to_factory_warning_message"></string>
<string name="reset_card_with_backup_to_factory_message"></string>
<string name="reset_card_without_backup_to_factory_message"></string>
<string name="russian_bank_card_warning_subtitle"></string>
<string name="russian_bank_card_warning_title"></string>
<string name="saltpay_error_empty_backup_message"></string>
<string name="saltpay_error_empty_backup_title"></string>
<string name="saltpay_error_no_gas_message"></string>
<string name="saltpay_error_no_gas_title"></string>
<string name="saltpay_error_pin_weak_message"></string>
<string name="saltpay_error_pin_weak_title"></string>
<string name="save_user_wallet_agreement_access_description"></string>
<string name="save_user_wallet_agreement_access_title"></string>
<string name="save_user_wallet_agreement_allow_biometrics"></string>
<string name="save_user_wallet_agreement_code_description_biometrics"></string>
<string name="save_user_wallet_agreement_code_title"></string>
<string name="save_user_wallet_agreement_enroll_biometrics_description"></string>
<string name="save_user_wallet_agreement_enroll_biometrics_title"></string>
<string name="save_user_wallet_agreement_header_biometrics"></string>
<string name="save_user_wallet_agreement_notice"></string>
<string name="scan_card_error"></string>
<string name="scan_card_settings_button"></string>
<string name="scan_card_settings_message"></string>
<string name="scan_card_settings_title"></string>
<string name="search_tokens_title"></string>
<string name="send_amount_label">Somme</string>
<string name="send_destination_hint_address">Adresse</string>
<string name="send_destination_hint_address_payid">Adresse ou PayString</string>
@ -285,8 +315,8 @@
<string name="send_error_payid_not_registered">PayString non enregistré</string>
<string name="send_error_payid_request_failed">La demande de PayString a échoué</string>
<string name="send_error_payid_unsupported_by_blockchain">PayString non pris en charge par la blockchain</string>
<string name="send_extras_error_invalid_destination_tag">Invalid Tag. It won\'t be added to the transaction.</string>
<string name="send_extras_error_invalid_memo">Invalid Memo. It won\'t be added to the transaction.</string>
<string name="send_extras_error_invalid_destination_tag"></string>
<string name="send_extras_error_invalid_memo"></string>
<string name="send_extras_hint_destination_tag">Tag</string>
<string name="send_extras_hint_memo">Memo</string>
<string name="send_fee_include_description">Inclure les commissions</string>
@ -297,141 +327,146 @@
<string name="send_max_amount_label">Somme maximale</string>
<string name="send_network_fee_title">Commissions du réseau</string>
<string name="send_title">Envoyer</string>
<string name="send_title_currency_format">Sending %s</string>
<string name="send_title_currency_format"></string>
<string name="send_total_label">Total</string>
<string name="send_total_subtitle_asset_format">Sera envoyé %1$s et %2$s</string>
<string name="send_total_subtitle_fiat_format">≈ %1$s (incl. les commissions : %2$s)</string>
<string name="send_total_subtitle_format">Sera envoyé %s</string>
<string name="send_transaction_success">La transaction a été signée avec succès et envoyée au nœud de blockchain. Le solde du portefeuille sera mis à jour après un certain temps</string>
<string name="send_validation_invalid_address">Adresse incorrecte</string>
<string name="shop_buy_now">Buy now</string>
<string name="shop_free">Free</string>
<string name="shop_i_have_a_promo_code">I have a promo code…</string>
<string name="shop_buy_now"></string>
<string name="shop_free"></string>
<string name="shop_i_have_a_promo_code"></string>
<string name="shop_one_wallet">Tangem Wallet</string>
<string name="shop_other_payment_methods">Other payment methods</string>
<string name="shop_shipping">Shipping</string>
<string name="shop_total">Total</string>
<string name="solana_rent_warning">Solana network charges a rent of %1$s every 2 days. Accounts that can\'t afford the rent are purged from the network. Deposit your account with more than %2$s to use it for free.</string>
<string name="story_awe_description">Store your crypto assets secure while keeping private keys contained in your card</string>
<string name="story_awe_title">Revolutionary Hardware Wallet</string>
<string name="story_backup_description_1">Up to</string>
<string name="story_backup_description_2_bold">3 physical cards</string>
<string name="story_backup_description_3">to one wallet</string>
<string name="story_backup_title">Ultra Secure Backup</string>
<string name="story_currencies_description">A hardware wallet for your Bitcoin, Ethereum and many more currencies simultaneously all in one card</string>
<string name="story_currencies_title">Thousands of Currencies</string>
<string name="story_finish_description">Use it on the go, anywhere, anytime. No wires or batteries. Just tap the card to your phone when you need your crypto.</string>
<string name="story_finish_title">The Wallet for Everyone</string>
<string name="story_meet_borrow">Borrow</string>
<string name="story_meet_buy">Buy</string>
<string name="story_meet_exchange">Exchange</string>
<string name="story_meet_lend">Lend</string>
<string name="story_meet_pay">Pay</string>
<string name="story_meet_send">Send</string>
<string name="story_meet_store">Store</string>
<string name="story_meet_title">Meet\nTangem</string>
<string name="story_web3_description">Exchange, buy NFT\'s, make loans and deposits in more than 100 different decentralized services</string>
<string name="story_web3_title">DeFi Compatible</string>
<string name="swapping_error_wrapper">Error: %s</string>
<string name="swapping_generic_error">There was an error. Please try again.</string>
<string name="swapping_give_permission">Give Permission</string>
<string name="swapping_high_price_impact">High price impact!</string>
<string name="swapping_high_price_impact_description">Swapping this amount of selected tokens will cause a significant price impact and reduce your outcome.</string>
<string name="swapping_insufficient_funds">Insufficient funds</string>
<string name="swapping_not_enough_funds_for_fee">Not enough funds for fee in your %1$s wallet to create a transaction. Top up your %2$s wallet first.</string>
<string name="swapping_pending_transaction_subtitle">Transaction in progress…</string>
<string name="swapping_pending_transaction_title">Waiting</string>
<string name="swapping_permission_buttons_approve">Approve</string>
<string name="swapping_permission_header">Give Permission</string>
<string name="swapping_permission_rows_amount">Amount %s</string>
<string name="swapping_permission_rows_spender">Spender</string>
<string name="swapping_permission_rows_your_wallet">Your Wallet</string>
<string name="swapping_permission_subheader">To continue you need to allow 1inch smart contracts to use your %s</string>
<string name="swapping_permit_and_swap">Permit and Swap</string>
<string name="swapping_success_view_explorer_button_title">View in Explorer</string>
<string name="swapping_success_view_title">In progress</string>
<string name="swapping_swap">Swap</string>
<string name="swapping_swap_action">Swap</string>
<string name="swapping_swap_of_to">Swap of %s to</string>
<string name="swapping_tangem_fee_disclaimer">Quotes include an additional Tangem commission of %s. This helps us deliver a top-of-the-line product.</string>
<string name="swapping_token_list_other_tokens">Other tokens</string>
<string name="swapping_token_list_title">Choose token</string>
<string name="swapping_token_list_your_tokens">Your tokens</string>
<string name="swapping_token_not_available">not available</string>
<string name="token_details_hide_alert_hide">Hide</string>
<string name="token_details_hide_alert_message">You are about to hide this token from the main screen. You can add it back anytime through the manage tokens page.</string>
<string name="token_details_hide_alert_title">Hide %s</string>
<string name="token_details_hide_token">Hide token</string>
<string name="token_details_send_blocked_fee_format">%1$s is a token in the %2$s network. To make a %3$s transaction you need to deposit some %4$s (%5$s) to cover the network fee.</string>
<string name="token_details_send_blocked_tx_format">Please wait for %s transaction to complete to be able to send funds</string>
<string name="token_details_unable_hide_alert_message">The %1$s token is the main currency on the %2$s network and cannot be hidden as long as you have other tokens on this network in the list.</string>
<string name="token_details_unable_hide_alert_title">Unable to hide %s</string>
<string name="token_item_no_rate">No rate</string>
<string name="transaction_history_empty_transactions">You don\'t have any transactions yet</string>
<string name="transaction_history_error_failed_to_load">Failed to load transactions</string>
<string name="transaction_history_title">Transactions</string>
<string name="transaction_history_tx_in_progress">In progress…</string>
<string name="twin_error_same_card">You\'ve scanned the same card. To create a twin wallet you need to scan the card with number %d</string>
<string name="twins_onboarding_description_format">This one that you are holding in your hands and the other one with number %s.\n\nBoth cards can be used to extract funds from this wallet.</string>
<string name="twins_onboarding_subtitle">One wallet. Two cards.</string>
<string name="twins_recreate_button_format">Scan the card #%s</string>
<string name="twins_recreate_title_creating_wallet">Creating wallet</string>
<string name="twins_recreate_title_format">Scan the #%s twin card</string>
<string name="twins_recreate_title_preparing">Preparing card</string>
<string name="shop_other_payment_methods"></string>
<string name="shop_shipping"></string>
<string name="shop_total"></string>
<string name="solana_rent_warning"></string>
<string name="story_awe_description"></string>
<string name="story_awe_title"></string>
<string name="story_backup_description_1"></string>
<string name="story_backup_description_2_bold"></string>
<string name="story_backup_description_3"></string>
<string name="story_backup_title"></string>
<string name="story_currencies_description"></string>
<string name="story_currencies_title"></string>
<string name="story_finish_description"></string>
<string name="story_finish_title"></string>
<string name="story_meet_borrow"></string>
<string name="story_meet_buy"></string>
<string name="story_meet_exchange"></string>
<string name="story_meet_lend"></string>
<string name="story_meet_pay"></string>
<string name="story_meet_send"></string>
<string name="story_meet_store"></string>
<string name="story_meet_title"></string>
<string name="story_web3_description"></string>
<string name="story_web3_title"></string>
<string name="swapping_error_wrapper"></string>
<string name="swapping_generic_error"></string>
<string name="swapping_give_permission"></string>
<string name="swapping_high_price_impact"></string>
<string name="swapping_high_price_impact_description"></string>
<string name="swapping_insufficient_funds"></string>
<string name="swapping_not_enough_funds_for_fee"></string>
<string name="swapping_pending_transaction_subtitle"></string>
<string name="swapping_pending_transaction_title"></string>
<string name="swapping_permission_buttons_approve"></string>
<string name="swapping_permission_header"></string>
<string name="swapping_permission_rows_amount"></string>
<string name="swapping_permission_rows_spender"></string>
<string name="swapping_permission_rows_your_wallet"></string>
<string name="swapping_permission_subheader"></string>
<string name="swapping_permit_and_swap"></string>
<string name="swapping_success_view_explorer_button_title"></string>
<string name="swapping_success_view_title"></string>
<string name="swapping_swap"></string>
<string name="swapping_swap_action"></string>
<string name="swapping_swap_of_to"></string>
<string name="swapping_tangem_fee_disclaimer"></string>
<string name="swapping_token_list_other_tokens"></string>
<string name="swapping_token_list_title"></string>
<string name="swapping_token_list_your_tokens"></string>
<string name="swapping_token_not_available"></string>
<plurals name="token_count">
<item quantity="one"></item>
<item quantity="other"></item>
</plurals>
<string name="token_details_hide_alert_hide"></string>
<string name="token_details_hide_alert_message"></string>
<string name="token_details_hide_alert_title"></string>
<string name="token_details_hide_token"></string>
<string name="token_details_send_blocked_fee_format"></string>
<string name="token_details_send_blocked_tx_format"></string>
<string name="token_details_unable_hide_alert_message"></string>
<string name="token_details_unable_hide_alert_title"></string>
<string name="token_item_no_rate"></string>
<string name="transaction_history_empty_transactions"></string>
<string name="transaction_history_error_failed_to_load"></string>
<string name="transaction_history_title"></string>
<string name="transaction_history_tx_in_progress"></string>
<string name="twin_error_same_card"></string>
<string name="twins_onboarding_description_format"></string>
<string name="twins_onboarding_subtitle"></string>
<string name="twins_recreate_button_format"></string>
<string name="twins_recreate_title_creating_wallet"></string>
<string name="twins_recreate_title_format"></string>
<string name="twins_recreate_title_preparing"></string>
<string name="twins_recreate_toolbar">Tangem Twin</string>
<string name="twins_recreate_warning">This action is irreversible. You will not have access to the old wallet.</string>
<string name="user_wallet_list_add_button">Add new wallet</string>
<string name="user_wallet_list_delete_prompt">Are you sure you want to delete this wallet?</string>
<string name="user_wallet_list_editing_count">%d selected</string>
<string name="user_wallet_list_error_unable_to_unlock">An error has occurred, please scan your card to log in</string>
<string name="user_wallet_list_error_wallet_already_saved">This wallet has already been saved, you can add another one</string>
<string name="user_wallet_list_multi_header">Multi-currency</string>
<string name="user_wallet_list_rename_popup_placeholder">Wallet name</string>
<string name="user_wallet_list_rename_popup_title">Rename Wallet</string>
<string name="user_wallet_list_single_header">Single-currency</string>
<string name="user_wallet_list_title">My Wallets</string>
<string name="user_wallet_list_unlock_all">Unlock all with %s</string>
<string name="twins_recreate_warning"></string>
<string name="user_wallet_list_add_button"></string>
<string name="user_wallet_list_delete_prompt"></string>
<string name="user_wallet_list_editing_count"></string>
<string name="user_wallet_list_error_unable_to_unlock"></string>
<string name="user_wallet_list_error_wallet_already_saved"></string>
<string name="user_wallet_list_multi_header"></string>
<string name="user_wallet_list_rename_popup_placeholder"></string>
<string name="user_wallet_list_rename_popup_title"></string>
<string name="user_wallet_list_single_header"></string>
<string name="user_wallet_list_title"></string>
<string name="user_wallet_list_unlock_all"></string>
<string name="wallet_address_button_create_payid">Créer PayString</string>
<string name="wallet_address_button_explore">Explorer l\'adresse</string>
<string name="wallet_balance_blockchain_unreachable">Network is unreachable</string>
<string name="wallet_balance_blockchain_unreachable_try_later">Blockchain is unreachable. Try later</string>
<string name="wallet_address_button_explore"></string>
<string name="wallet_balance_blockchain_unreachable"></string>
<string name="wallet_balance_blockchain_unreachable_try_later"></string>
<string name="wallet_balance_loading">Solde est en cours de téléchargement…</string>
<string name="wallet_balance_missing_derivation">Scan the card</string>
<string name="wallet_balance_missing_derivation"></string>
<string name="wallet_balance_tx_in_progress">Transaction en cours…</string>
<string name="wallet_balance_verified">Solde confirmé</string>
<string name="wallet_button_actions">Actions</string>
<string name="wallet_button_buy">Buy</string>
<string name="wallet_button_actions"></string>
<string name="wallet_button_buy"></string>
<string name="wallet_button_create_wallet">Créer un portefeuille</string>
<string name="wallet_button_sell">Sell</string>
<string name="wallet_button_sell"></string>
<string name="wallet_button_send">Envoyer</string>
<string name="wallet_button_trade">Exchange</string>
<string name="wallet_choose_trade_action">Do you want to buy or sell crypto?</string>
<string name="wallet_connect_alert_sign_message">Requesting to sign a message.\n\n%s</string>
<string name="wallet_connect_bnb_sign_message">Dapp %1$s, requesting to\nsign BNB transaction.\n\n%2$s</string>
<string name="wallet_connect_bnb_trade_order_message">Trade order for %1$s\nPrice: %2$s\nAmount to receive: %3$s\nAmount to pay: %4$s</string>
<string name="wallet_connect_bnb_transaction_message">Transaction details:\nFrom: %1$s\nTo: %2$s\nAmount: %3$s</string>
<string name="wallet_connect_clipboard_alert">Clipboard contain WalletConnect code. Use copied value or scan QR-code</string>
<string name="wallet_connect_create_tx_message">Request to create transaction for %1$s\n%2$s\n\nAmount: %3$s\nFee: %4$s\nTotal: %5$s\nBalance: %6$s</string>
<string name="wallet_connect_create_tx_not_enough_funds">Can\'t send transaction. Not enough funds.</string>
<string name="wallet_connect_error_failed_to_connect">Failed to establish WalletConnect session. Please, try again later.</string>
<string name="wallet_connect_error_missing_blockchains">Not all tokens were added to your list. Please add them first and try again. Missing tokens:\n</string>
<string name="wallet_connect_error_timeout">Failed to establish WalletConnect session: timeout error. Please, try again later.</string>
<string name="wallet_connect_error_unsupported_blockchains">Session request contains unsupported blockchains for WalletConnect connection. Unsupported blockchains:\n</string>
<string name="wallet_connect_error_unsupported_dapp">Connection with this Dapp cannot be established due to its technical implementation.</string>
<string name="wallet_connect_generic_error_with_code">We\'ve encountered unknown error. Error code: %d. If the problem persists — feel free to contact our support</string>
<string name="wallet_connect_network_not_found_format">%s network not found. Please, add it first and try again.</string>
<string name="wallet_connect_no_sessions_message">No opened WalletConnect sessions</string>
<string name="wallet_connect_no_sessions_title">Ooops. No Sessions.</string>
<string name="wallet_connect_open_session">Open session</string>
<string name="wallet_connect_paste_from_clipboard">Paste from clipboard</string>
<string name="wallet_connect_request_session_start">Request to start a session for\n%1$s\n\nNETWORK: %2$s\n\nURL: %3$s</string>
<string name="wallet_connect_same_wcuri">The operation couldn\'t be completed.\n\nYou have already established a WalletConnect session with this parameters.</string>
<string name="wallet_connect_scan_new_code">Scan new code</string>
<string name="wallet_connect_scanner_error_not_valid_card">This card can\'t be used to establish WalletConnect session</string>
<string name="wallet_connect_scanner_error_unsupported_network">This network is not supported. Please select another network.</string>
<string name="wallet_connect_select_network">Select network</string>
<string name="wallet_connect_sessions_title">WalletConnect Sessions</string>
<string name="wallet_connect_subtitle">Connect to Dapps</string>
<string name="wallet_button_trade"></string>
<string name="wallet_choose_trade_action"></string>
<string name="wallet_connect_alert_sign_message"></string>
<string name="wallet_connect_bnb_sign_message"></string>
<string name="wallet_connect_bnb_trade_order_message"></string>
<string name="wallet_connect_bnb_transaction_message"></string>
<string name="wallet_connect_clipboard_alert"></string>
<string name="wallet_connect_create_tx_message"></string>
<string name="wallet_connect_create_tx_not_enough_funds"></string>
<string name="wallet_connect_error_failed_to_connect"></string>
<string name="wallet_connect_error_missing_blockchains"></string>
<string name="wallet_connect_error_timeout"></string>
<string name="wallet_connect_error_unsupported_blockchains"></string>
<string name="wallet_connect_error_unsupported_dapp"></string>
<string name="wallet_connect_error_wrong_card_selected"></string>
<string name="wallet_connect_generic_error_with_code"></string>
<string name="wallet_connect_network_not_found_format"></string>
<string name="wallet_connect_no_sessions_message"></string>
<string name="wallet_connect_no_sessions_title"></string>
<string name="wallet_connect_open_session"></string>
<string name="wallet_connect_paste_from_clipboard"></string>
<string name="wallet_connect_request_session_start"></string>
<string name="wallet_connect_same_wcuri"></string>
<string name="wallet_connect_scan_new_code"></string>
<string name="wallet_connect_scanner_error_not_valid_card"></string>
<string name="wallet_connect_scanner_error_unsupported_network"></string>
<string name="wallet_connect_select_network"></string>
<string name="wallet_connect_sessions_title"></string>
<string name="wallet_connect_subtitle"></string>
<string name="wallet_connect_title">WalletConnect</string>
<string name="wallet_create_payid">Créer PayString</string>
<string name="wallet_create_payid_domain">$payid.tangem.com</string>
@ -440,11 +475,11 @@
<string name="wallet_create_payid_error_message">Mauvaise réponse lors de la création de PayString</string>
<string name="wallet_create_payid_hint">Dénomination PayString</string>
<string name="wallet_create_payid_info">Votre PayString est une information qui vous est propre, comme un numéro de téléphone, une adresse du courrier électronique ou un ABN.</string>
<string name="wallet_currency_subtitle">%s network</string>
<string name="wallet_currency_subtitle"></string>
<string name="wallet_error_empty_card">Carte vide</string>
<string name="wallet_error_empty_card_subtitle">Créez un portefeuille pour commencer à utiliser votre carte Tangem</string>
<string name="wallet_error_empty_twin_card">Create twin wallet</string>
<string name="wallet_error_empty_twin_card_subtitle">Generate wallet keys on both cards to start using your Twins</string>
<string name="wallet_error_empty_twin_card"></string>
<string name="wallet_error_empty_twin_card_subtitle"></string>
<string name="wallet_error_no_account">Compte n\'est pas créé</string>
<string name="wallet_error_unsupported_blockchain">Cette carte n\'est pas prise en charge</string>
<string name="wallet_error_unsupported_blockchain_subtitle">Votre carte Tangem a été créée pour fonctionner avec une autre application. Regardez le nom et les instructions sur votre carte et installez l\'application pertinente</string>
@ -455,28 +490,28 @@
<string name="wallet_pending_tx_sending">Envoi</string>
<string name="wallet_pending_tx_sending_address_format">jusqu\'à %s</string>
<string name="wallet_title">Tangem</string>
<string name="warning_button_can_be_better">Can be better</string>
<string name="warning_button_learn_more">Learn more</string>
<string name="warning_button_can_be_better"></string>
<string name="warning_button_learn_more"></string>
<string name="warning_button_ok">Ok, je l\'ai!</string>
<string name="warning_button_really_cool">Really cool!</string>
<string name="warning_existential_deposit_message">%1$s network has a concept of Existential Deposit. If your account drops below %2$s it will be deactivated and any remaining funds will be destroyed.</string>
<string name="warning_failed_to_verify_card_message">This card might be a production sample or counterfeit</string>
<string name="warning_failed_to_verify_card_title">Authenticity check failed</string>
<string name="warning_important_security_info">Important security information %s</string>
<string name="warning_low_signatures_format">There are only %s signatures available on this card. You must withdraw all of your funds.</string>
<string name="warning_rate_app_message">How do you like Tangem?</string>
<string name="warning_rate_app_title">One question</string>
<string name="warning_signed_tx_previously">This card has signed transactions in the past</string>
<string name="warning_testnet_card_message">This is a Testnet card. Don\'t accept it as a payment. This card must only be used for testing and development purposes.</string>
<string name="welcome_interrupted_backup_alert_discard">Discard</string>
<string name="welcome_interrupted_backup_alert_message">You have an interrupted backup. Do you want to resume?</string>
<string name="welcome_interrupted_backup_alert_resume">Yes, resume</string>
<string name="welcome_interrupted_backup_discard_discard">Discard</string>
<string name="welcome_interrupted_backup_discard_message">If you will discard the backup now, then you will have to reset the cards to factory settings to start over again</string>
<string name="welcome_interrupted_backup_discard_resume">Resume backup</string>
<string name="welcome_interrupted_backup_discard_title">This is an irreversible action</string>
<string name="welcome_unlock">Log in with %s</string>
<string name="welcome_unlock_card">Scan card</string>
<string name="welcome_unlock_description">Use %s or scan a card to access the app</string>
<string name="welcome_unlock_title">Welcome back!</string>
<string name="warning_button_really_cool"></string>
<string name="warning_existential_deposit_message"></string>
<string name="warning_failed_to_verify_card_message"></string>
<string name="warning_failed_to_verify_card_title"></string>
<string name="warning_important_security_info"></string>
<string name="warning_low_signatures_format"></string>
<string name="warning_rate_app_message"></string>
<string name="warning_rate_app_title"></string>
<string name="warning_signed_tx_previously"></string>
<string name="warning_testnet_card_message"></string>
<string name="welcome_interrupted_backup_alert_discard"></string>
<string name="welcome_interrupted_backup_alert_message"></string>
<string name="welcome_interrupted_backup_alert_resume"></string>
<string name="welcome_interrupted_backup_discard_discard"></string>
<string name="welcome_interrupted_backup_discard_message"></string>
<string name="welcome_interrupted_backup_discard_resume"></string>
<string name="welcome_interrupted_backup_discard_title"></string>
<string name="welcome_unlock"></string>
<string name="welcome_unlock_card"></string>
<string name="welcome_unlock_description"></string>
<string name="welcome_unlock_title"></string>
</resources>

View file

@ -1,283 +1,313 @@
<?xml version="1.0" encoding="UTF-8"?>
<resources>
<string name="add_custom_token_title">Add custom token</string>
<string name="address_qr_code_message_format">Send only %1$s (%2$s) from %3$s network to this address. Using other tokens and networks may result in loss of funds.</string>
<string name="alert_button_request_support">Request support</string>
<string name="alert_button_send_feedback">Send feedback</string>
<string name="add_custom_token_title"></string>
<string name="address_qr_code_message_format"></string>
<string name="alert_button_request_support"></string>
<string name="alert_button_send_feedback"></string>
<string name="alert_card_signed_transactions">Questa carta è già stata ricaricata e ha firmato transazioni in passato. Valuta la possibilità di prelevare immediatamente tutti i fondi se hai ricevuto questa carta da una fonte inaffidabile.</string>
<string name="alert_demo_feature_disabled">This feature is disabled in Demo mode</string>
<string name="alert_demo_message">You are currently running in Demo mode. All funds are not real.</string>
<string name="alert_demo_feature_disabled"></string>
<string name="alert_demo_message"></string>
<string name="alert_developer_card">La carta che hai scansionato è una carta di sviluppo. Non utilizzarla come strumento di pagamento</string>
<string name="alert_failed_to_send_transaction_message">Reason: %s</string>
<string name="alert_failed_to_send_transaction_title">Can\'t send a transaction</string>
<string name="alert_manage_tokens_addresses_message">Note that tokens on different networks have different addresses. Double check that your address matches the network when you transfer funds.</string>
<string name="alert_manage_tokens_unsupported_message">Tokens in Solana network are not supported by this card due to firmware limitation.</string>
<string name="alert_signed_hashes_message">This card is not a bearer note. We can\'t currently match the signature count on the card with the information on the blockchain. This is normal but in rare cases can mean a previous holder is holding back an offline signature, which is a security concern.\nDo not accept this card as physical payment from someone you don\'t trust.\nIt\'s perfectly safe in all other respects.\nTangem is the only hardware wallet to offer signature count protection.</string>
<string name="alert_troubleshooting_scan_card_title">Are you having difficulty scanning your card?</string>
<string name="alert_failed_to_send_transaction_message"></string>
<string name="alert_failed_to_send_transaction_title"></string>
<string name="alert_manage_tokens_addresses_message"></string>
<string name="alert_manage_tokens_unsupported_message"></string>
<string name="alert_signed_hashes_message"></string>
<string name="alert_troubleshooting_scan_card_title"></string>
<string name="alert_unsupported_card">Questa carta non è progettata per funzionare con Tangem</string>
<string name="app_settings_enable_biometrics_description">Go to settings to enable biometric authentication in the Tangem App</string>
<string name="app_settings_enable_biometrics_title">Enable biometric authentication</string>
<string name="app_settings_off_saved_access_code_alert_message">This will delete all the saved wallet access codes. Any further operation with the wallet will require submitting the access code.</string>
<string name="app_settings_off_saved_wallet_alert_message">Removing the saved card deletes all the saved wallets and their access codes from the app.</string>
<string name="app_settings_saved_access_codes">Save Access Code</string>
<string name="app_settings_saved_access_codes_footer">Biometric authentication will be requested instead of the access code for interactions with your card.</string>
<string name="app_settings_saved_wallet">Keep the wallet in the app</string>
<string name="app_settings_saved_wallet_footer">Enable to link all the wallets to Tangem app. Biometric authentication will be required for unlocking the app. Transaction signing requires tapping your Tangem card.</string>
<string name="app_settings_title">App Settings</string>
<string name="biometric_lockout_permanent_warning_description">Please scan the card</string>
<string name="biometric_lockout_warning_description">Please try again in 30 seconds or scan the card</string>
<string name="biometric_lockout_warning_title">Too many attempts</string>
<string name="card_settings_action_sheet_reset">Reset</string>
<string name="card_settings_action_sheet_title">Are you sure you want to do this?</string>
<string name="card_settings_change_access_code">Change Access Code</string>
<string name="card_settings_change_access_code_footer">Access code will be changed on this card only</string>
<string name="card_settings_reset_card_to_factory">Reset to Factory Settings</string>
<string name="card_settings_security_mode">Security Mode</string>
<string name="card_settings_title">Card Settings</string>
<string name="app_settings_enable_biometrics_description"></string>
<string name="app_settings_enable_biometrics_title"></string>
<string name="app_settings_off_saved_access_code_alert_message"></string>
<string name="app_settings_off_saved_wallet_alert_message"></string>
<string name="app_settings_saved_access_codes"></string>
<string name="app_settings_saved_access_codes_footer"></string>
<string name="app_settings_saved_wallet"></string>
<string name="app_settings_saved_wallet_footer"></string>
<string name="app_settings_title"></string>
<string name="biometric_lockout_permanent_warning_description"></string>
<string name="biometric_lockout_warning_description"></string>
<string name="biometric_lockout_warning_title"></string>
<string name="card_settings_access_code_recovery_disabled_description"></string>
<string name="card_settings_access_code_recovery_enabled_description"></string>
<string name="card_settings_access_code_recovery_footer"></string>
<string name="card_settings_access_code_recovery_title"></string>
<string name="card_settings_action_sheet_reset"></string>
<string name="card_settings_action_sheet_title"></string>
<string name="card_settings_change_access_code"></string>
<string name="card_settings_change_access_code_footer"></string>
<string name="card_settings_reset_card_to_factory"></string>
<string name="card_settings_security_mode"></string>
<string name="card_settings_title"></string>
<string name="chat_bot_name">Tangem Bot</string>
<string name="chat_button_title">Support</string>
<string name="chat_button_title"></string>
<string name="chat_user_action_rate_user"></string>
<string name="chat_user_action_send_log"></string>
<string name="chat_user_actions_title"></string>
<string name="chat_user_rate_operator_title"></string>
<string name="common_accept">Accetta</string>
<string name="common_add">Add</string>
<string name="common_attention">Attention</string>
<string name="common_add"></string>
<string name="common_attention"></string>
<string name="common_balance">Saldo: %s</string>
<string name="common_biometric_authentication">biometric authentication</string>
<string name="common_biometrics">biometrics</string>
<string name="common_biometric_authentication"></string>
<string name="common_biometrics"></string>
<string name="common_camera_denied_alert_message">Non hai fornito l\'accesso alla tua videocamera, modifica le tue impostazioni sulla privacy</string>
<string name="common_cancel">Annulla</string>
<string name="common_close">Close</string>
<string name="common_continue">Continue</string>
<string name="common_copy">Copy</string>
<string name="common_create">Create</string>
<string name="common_close"></string>
<string name="common_continue"></string>
<string name="common_copy"></string>
<string name="common_create"></string>
<string name="common_delete">Rimuovere</string>
<string name="common_disconnect">Disconnect</string>
<string name="common_disabled"></string>
<string name="common_disconnect"></string>
<string name="common_done">Fatto</string>
<string name="common_enable">Enable</string>
<string name="common_enable"></string>
<string name="common_enabled"></string>
<string name="common_error">Errore</string>
<string name="common_no">No</string>
<string name="common_import"></string>
<string name="common_no"></string>
<string name="common_ok">OK</string>
<string name="common_origin_card">Primary Card</string>
<string name="common_reject">Reject</string>
<string name="common_retry">Retry</string>
<string name="common_origin_card"></string>
<string name="common_reject"></string>
<string name="common_retry"></string>
<string name="common_save_changes">Mantieni le modifiche</string>
<string name="common_search">Search</string>
<string name="common_server_unavailable">The server is not available, please try again later</string>
<string name="common_share">Share</string>
<string name="common_sign">Sign</string>
<string name="common_sign_and_send">Sign and send</string>
<string name="common_start">Start</string>
<string name="common_submit">Submit</string>
<string name="common_search"></string>
<string name="common_server_unavailable"></string>
<string name="common_share"></string>
<string name="common_sign"></string>
<string name="common_sign_and_send"></string>
<string name="common_start"></string>
<string name="common_submit"></string>
<string name="common_success">Con successo</string>
<string name="common_terms_and_conditions">terms and conditions</string>
<string name="common_understand">I understand</string>
<string name="common_terms_and_conditions"></string>
<string name="common_understand"></string>
<string name="common_warning">Avviso</string>
<string name="common_yes">Yes</string>
<string name="contract_address_copied_message">Contract address copied!</string>
<string name="currency_subtitle_expanded">Available networks</string>
<string name="custom_token_contract_address_input_title">Contract address</string>
<string name="custom_token_creation_error_invalid_contract_address">Contract address is invalid</string>
<string name="custom_token_creation_error_invalid_derivation_path">Derivation path is invalid</string>
<string name="custom_token_creation_error_network_not_selected">Please select the network</string>
<string name="custom_token_creation_error_required_field">Required field</string>
<string name="custom_token_creation_error_wrong_decimals">Decimal number must be a valid integer, no higher than %d</string>
<string name="custom_token_decimals_input_title">Decimals</string>
<string name="custom_token_derivation_path_default">Default</string>
<string name="custom_token_derivation_path_input_title">BIP44 coin type</string>
<string name="custom_token_name_input_placeholder">E.g. USD Coin</string>
<string name="custom_token_name_input_title">Name</string>
<string name="custom_token_network_input_not_selected">Not selected</string>
<string name="custom_token_network_input_title">Network</string>
<string name="custom_token_token_symbol_input_placeholder">E.g. USDC</string>
<string name="custom_token_token_symbol_input_title">Token symbol</string>
<string name="custom_token_validation_error_already_added">This token/network has already been added to your list</string>
<string name="custom_token_validation_error_not_found">Note that tokens can be created by anyone. Be aware of adding scam tokens, they can cost nothing.</string>
<string name="details_chat">Chat</string>
<string name="common_yes"></string>
<string name="contract_address_copied_message"></string>
<string name="currency_subtitle_expanded"></string>
<string name="custom_token_contract_address_input_title"></string>
<string name="custom_token_creation_error_invalid_contract_address"></string>
<string name="custom_token_creation_error_invalid_derivation_path"></string>
<string name="custom_token_creation_error_network_not_selected"></string>
<string name="custom_token_creation_error_required_field"></string>
<string name="custom_token_creation_error_wrong_decimals"></string>
<string name="custom_token_decimals_input_title"></string>
<string name="custom_token_derivation_path_default"></string>
<string name="custom_token_derivation_path_input_title"></string>
<string name="custom_token_name_input_placeholder"></string>
<string name="custom_token_name_input_title"></string>
<string name="custom_token_network_input_not_selected"></string>
<string name="custom_token_network_input_title"></string>
<string name="custom_token_token_symbol_input_placeholder"></string>
<string name="custom_token_token_symbol_input_title"></string>
<string name="custom_token_validation_error_already_added"></string>
<string name="custom_token_validation_error_not_found"></string>
<string name="details_chat"></string>
<string name="details_manage_security_access_code">Codice di accesso</string>
<string name="details_manage_security_access_code_description">Prima di scansionare la carta sarà necessario inserire il codice di accesso corretto</string>
<string name="details_manage_security_long_tap">Mantenimento della carta</string>
<string name="details_manage_security_long_tap_description">Questo meccanismo protegge dagli avvicinamenti senza contatto sulla carta. Attiva un ritardo tra la ricezione e l\'esecuzione di un comando. Dopo la prima transazione firmata, questo telefono verrà associato alla carta e le transazioni verranno firmate immediatamente.</string>
<string name="details_manage_security_passcode">Password</string>
<string name="details_manage_security_passcode_description">Dovrai inserire una password prima di eseguire qualsiasi comando che modifichi lo stato della carta.</string>
<string name="details_referral_title">Referral program</string>
<string name="details_row_privacy_policy">Privacy policy</string>
<string name="details_referral_title"></string>
<string name="details_row_privacy_policy"></string>
<string name="details_row_subtitle_signed_hashes_format">Hash %s</string>
<string name="details_row_title_card_tou">Card terms of use</string>
<string name="details_row_title_card_tou"></string>
<string name="details_row_title_cid">ID carta</string>
<string name="details_row_title_create_backup">Link More Cards</string>
<string name="details_row_title_create_backup"></string>
<string name="details_row_title_currency">Valuta dell\'applicazione</string>
<string name="details_row_title_issuer">Emittente</string>
<string name="details_row_title_send_feedback">Send Feedback</string>
<string name="details_row_title_send_feedback"></string>
<string name="details_row_title_signed_hashes">Firmato</string>
<string name="details_title">Requisiti</string>
<string name="disclaimer_error_loading">Check your internet connection or switch to a different network</string>
<string name="disclaimer_error_loading"></string>
<string name="disclaimer_title">Termini del servizio</string>
<string name="error_update_app">Oops, the current version of the application is not ready to work with this card, please check for updates.</string>
<string name="error_wrong_wallet_tapped">You have used a card from another wallet. Tap the card associated with this wallet</string>
<string name="exchange_receive_view_header">You Receive</string>
<string name="exchange_send_view_header">You Send</string>
<string name="feedback_data_collection_message">The following information is optional. You can erase it if you don\'t want to share it.</string>
<string name="feedback_preface_rate_negative">Tell us what functions you are missing, and we will try to help you.</string>
<string name="feedback_preface_scan_failed">Please tell us what card do you have</string>
<string name="feedback_preface_support">Hi support team,</string>
<string name="feedback_preface_tx_failed">Please tell us more about your issue. Every small detail can help.</string>
<string name="feedback_subject_rate_negative">My suggestions</string>
<string name="feedback_subject_scan_failed">Can\'t scan a card</string>
<string name="feedback_subject_support">Feedback</string>
<string name="feedback_subject_support_tangem">Tangem feedback</string>
<string name="feedback_subject_tx_failed">Can\'t send a transaction</string>
<string name="home_button_order">Order</string>
<string name="error_update_app"></string>
<string name="error_wrong_wallet_tapped"></string>
<string name="exchange_receive_view_header"></string>
<string name="exchange_send_view_header"></string>
<string name="feedback_data_collection_message"></string>
<string name="feedback_preface_rate_negative"></string>
<string name="feedback_preface_scan_failed"></string>
<string name="feedback_preface_support"></string>
<string name="feedback_preface_tx_failed"></string>
<string name="feedback_subject_rate_negative"></string>
<string name="feedback_subject_scan_failed"></string>
<string name="feedback_subject_support"></string>
<string name="feedback_subject_support_tangem"></string>
<string name="feedback_subject_tx_failed"></string>
<string name="home_button_order"></string>
<string name="initial_message_change_access_code_body">Avvicina per modificare il codice di accesso</string>
<string name="initial_message_change_passcode_body">Avvicina per modificare la password</string>
<string name="initial_message_create_wallet_body">To create the wallet tap the card as shown above and do not remove until the end of the operation</string>
<string name="initial_message_create_wallet_body"></string>
<string name="initial_message_scan_header">Avvicina per scansionare</string>
<string name="initial_message_sign_header">Avvicina per firmare</string>
<string name="initial_message_tap_header">Avvicina la carta</string>
<string name="internal_error_wallet_manager_not_found">Internal error: wallet manager not found</string>
<string name="main_manage_tokens">Manage tokens</string>
<string name="main_no_backup_warning_subtitle">To protect your assets, we advise you to carry out this procedure</string>
<string name="main_no_backup_warning_title">Your wallet has not been backed up</string>
<string name="main_page_balance">Total balance</string>
<string name="main_processing_full_amount">The amount does not include some of your funds</string>
<string name="main_scan_card_warning_view_subtitle">To access all the networks you need to scan the card</string>
<string name="main_scan_card_warning_view_title">Scan your card</string>
<string name="main_tokens">Tokens</string>
<string name="onboarding_access_code_feature_1_description">You have to set up a single access code to protect all your wallets</string>
<string name="onboarding_access_code_feature_1_title">Protect</string>
<string name="onboarding_access_code_feature_2_description">You can set up an individual access code on each card later</string>
<string name="onboarding_access_code_feature_2_title">Personalize</string>
<string name="onboarding_access_code_feature_3_description">The access code can be restored with a linked card, don\'t keep all cards in one place</string>
<string name="onboarding_access_code_feature_3_title">Restore</string>
<string name="onboarding_access_code_hint">Choose any word, phrase, or number you want as your access code</string>
<string name="onboarding_access_code_intro_title">Create Access Code</string>
<string name="onboarding_access_code_repeat_code_title">Re-enter your Access Code</string>
<string name="onboarding_access_code_too_short">Access code must be at least 4 characters long</string>
<string name="onboarding_access_codes_doesnt_match">Entered access code didn\'t match the initial access code</string>
<string name="onboarding_alert_message_not_max_backup_cards_added">You\'ve added one backup card. When backup process is finished you can\'t add more backup cards. If you have one more card, add it to backup. Do you like to continue the backup process?</string>
<string name="onboarding_backup_exit_warning">The backup process is partly complete. You can\'t exit it now.</string>
<string name="onboarding_balance_title">Balance</string>
<string name="onboarding_button_add_backup_card">Add a backup card</string>
<string name="onboarding_button_backup_card_format">Scan the card #%d</string>
<string name="onboarding_button_backup_now">Backup now</string>
<string name="onboarding_button_backup_origin">Scan the primary card</string>
<string name="onboarding_button_claim">Claim</string>
<string name="onboarding_button_continue_wallet">Continue to my wallet</string>
<string name="onboarding_button_finalize_backup">Finalize the backup process</string>
<string name="onboarding_button_kyc_start">Verify via Utorg</string>
<string name="onboarding_button_kyc_waiting">Refresh</string>
<string name="onboarding_button_pin">Set PIN code</string>
<string name="onboarding_button_receive_crypto">Receive crypto</string>
<string name="onboarding_button_register_wallet">Register</string>
<string name="onboarding_button_scan_origin_card">Scan primary card</string>
<string name="onboarding_button_skip_backup">Skip for later</string>
<string name="onboarding_button_what_does_it_mean">How does it work?</string>
<string name="onboarding_create_wallet_body">Let\'s generate all the keys on your card and create a secure wallet</string>
<string name="onboarding_create_wallet_button_create_wallet">Create wallet</string>
<string name="onboarding_create_wallet_header">Create a wallet</string>
<string name="onboarding_done_body">Your card is activated and ready to be used</string>
<string name="onboarding_done_header">Success!</string>
<string name="onboarding_exit_alert_message">In this case, you will need to start from the beginning.</string>
<string name="onboarding_exit_alert_title">Do you want to exit the activation process?</string>
<string name="onboarding_getting_started">Getting started</string>
<string name="onboarding_navbar_kyc_progress">Verify your identity</string>
<string name="onboarding_navbar_kyc_start">KYC</string>
<string name="onboarding_navbar_pin">Pin code</string>
<string name="onboarding_navbar_register_wallet">Connect</string>
<string name="onboarding_navbar_title_creating_backup">Creating a backup</string>
<string name="onboarding_saltpay_button_backup_origin">Tap the SaltPay card</string>
<string name="onboarding_saltpay_subtitle_no_backup_cards">To start the backup process you have to add the Tangem card as your backup</string>
<string name="onboarding_saltpay_subtitle_one_backup_card">Finalize the backup process by creating an access code</string>
<string name="onboarding_saltpay_title_backup_card">Tap the Tangem card</string>
<string name="onboarding_saltpay_title_no_backup_card">No backup card</string>
<string name="onboarding_saltpay_title_one_backup_card">Backup card ready</string>
<string name="onboarding_saltpay_title_prepare_origin">Prepare the SaltPay card</string>
<string name="onboarding_subtitle_claim">To get started, simply claim wxDAI to your wallet</string>
<string name="onboarding_subtitle_claim_progress">It will take a few seconds</string>
<string name="onboarding_subtitle_kyc_retry">Please check your email for further instructions</string>
<string name="onboarding_subtitle_kyc_start">To start using your card you have to pass the KYC process</string>
<string name="onboarding_subtitle_kyc_waiting">Please wait until the verification is completed. You\'ll be notified via email. Usually it takes up to 1 hour. You can close the app and come back later.</string>
<string name="onboarding_subtitle_no_backup_cards">To start the backup process add up to two backup cards.</string>
<string name="onboarding_subtitle_one_backup_card">You can add one more card or finalize the backup process</string>
<string name="onboarding_subtitle_pin">Set up a 4-digit code.\nIt will be used for payments.</string>
<string name="onboarding_subtitle_register_wallet">Connect your card to the decentralized payment system</string>
<string name="onboarding_subtitle_scan_backup_card_format">Prepare the backup card with number %s</string>
<string name="onboarding_subtitle_scan_origin_card">Prepare the primary card</string>
<string name="onboarding_subtitle_scan_primary_card_format">Prepare the primary card with number %s</string>
<string name="onboarding_subtitle_success_claim">Congratulations! Your first payment crypto card has been activated!</string>
<string name="onboarding_subtitle_success_tangem_wallet_onboarding">Your wallet card is configured and ready for use.</string>
<string name="onboarding_subtitle_two_backup_cards">Max number of cards added. Finalize the backup process.</string>
<string name="onboarding_title">Activating card</string>
<string name="onboarding_title_backup_card_format">Backup card #%d</string>
<string name="onboarding_title_claim">Claim %s</string>
<string name="onboarding_title_claim_progress">Claiming</string>
<string name="onboarding_title_kyc_retry">Something went wrong</string>
<string name="onboarding_title_kyc_start">Verify your identity</string>
<string name="onboarding_title_kyc_waiting">KYC is in progress</string>
<string name="onboarding_title_no_backup_cards">No backup cards</string>
<string name="onboarding_title_one_backup_card">One backup card added</string>
<string name="onboarding_title_pin">PIN Code</string>
<string name="onboarding_title_register_wallet">Connect your card</string>
<string name="onboarding_title_scan_origin_card">Prepare your card</string>
<string name="onboarding_title_two_backup_cards">Two backup cards added</string>
<string name="onboarding_top_up_body">To get started, simply top up the wallet with any amount</string>
<string name="onboarding_top_up_body_no_account_error">To get started, simply top up the wallet with more than %1$s %2$s</string>
<string name="onboarding_top_up_button_but_crypto">Buy crypto</string>
<string name="onboarding_top_up_button_show_wallet_address">Show the wallet\'s address</string>
<string name="onboarding_top_up_header">Top up your wallet</string>
<string name="onboarding_twin_exit_warning">The twinning process is partly complete. You can\'t exit it now.</string>
<string name="onboarding_twins_interrupt_warning">If the process of creating the wallet gets interrupted in any way, you\'ll have to start over</string>
<string name="onboarding_wallet_info_subtitle_first">You can backup your keys up to two other blank Tangem Wallet cards.</string>
<string name="onboarding_wallet_info_subtitle_fourth">Access code can be restored with one of backup cards.</string>
<string name="onboarding_wallet_info_subtitle_second">All the backup cards can be used as full-functional with the identical keys.</string>
<string name="onboarding_wallet_info_subtitle_third">You will be able to set an access code to protect your wallets.</string>
<string name="onboarding_wallet_info_title_first">Backup wallet</string>
<string name="onboarding_wallet_info_title_fourth">Access code restore</string>
<string name="onboarding_wallet_info_title_second">Identical cards</string>
<string name="onboarding_wallet_info_title_third">Access code</string>
<string name="referral_button_participate">Participate</string>
<string name="referral_error_failed_to_load_info">Failed to load the information about the referral program. Please try again later.</string>
<string name="referral_error_failed_to_load_info_with_reason">Failed to load the information about the referral program. Error code: %s. Please try again later.</string>
<string name="referral_error_failed_to_participate">Your participation request could not be processed. Error code: %s. Please try again later. If the problem persists — feel free to contact our support.</string>
<string name="referral_friends_bought_title">Your friends bought</string>
<string name="referral_point_currencies_description_prefix">Will get</string>
<string name="referral_point_currencies_description_suffix">for each wallet bought by your friend on your %1$s network address%2$s</string>
<string name="referral_point_currencies_title">You</string>
<string name="referral_point_discount_description_prefix">Will get a</string>
<string name="referral_point_discount_description_suffix">when buying a card on tangem.com</string>
<string name="referral_point_discount_description_value">%s discount</string>
<string name="referral_point_discount_title">Your friend</string>
<string name="referral_promo_code_copied">Personal code copied!</string>
<string name="referral_promo_code_title">Your personal code</string>
<string name="referral_share_link">Buy Tangem Wallet with discount!\n%s</string>
<string name="referral_title">Refer your friends to Tangem</string>
<string name="referral_tos_enroled_prefix">You\'ve accepted</string>
<string name="referral_tos_not_enroled_prefix">By tapping this button you accept</string>
<string name="referral_tos_suffix">of the referral program</string>
<string name="registration_task_alert_message">Please hold the card until the operation complete</string>
<string name="reset_card_to_factory_button_title">Reset the Card</string>
<string name="reset_card_to_factory_warning_message">I understand that after performing this action, I will no longer have access to the current wallet</string>
<string name="reset_card_with_backup_to_factory_message">Factory Reset will completely delete the wallet from the selected card. You will not be able to restore the current wallet or use the card to recover the access code.</string>
<string name="reset_card_without_backup_to_factory_message">Factory Reset will completely delete the wallet from the selected card and remove it from the app. You will not be able to restore the current wallet.</string>
<string name="russian_bank_card_warning_subtitle">Do you have a bank card of another country or a UnionPay card?</string>
<string name="russian_bank_card_warning_title">Russian bank cards are not accepted at the moment</string>
<string name="saltpay_error_empty_backup_message">Tap the card with the visa logo</string>
<string name="saltpay_error_empty_backup_title">Attention</string>
<string name="saltpay_error_no_gas_message">Please contact support</string>
<string name="saltpay_error_no_gas_title">No funds for activation</string>
<string name="saltpay_error_pin_weak_message">Such a PIN can be brute-forced easily</string>
<string name="saltpay_error_pin_weak_title">Four identical digits isn\'t safe</string>
<string name="save_user_wallet_agreement_access_description">Log into the app and check your balance without scanning the card</string>
<string name="save_user_wallet_agreement_access_title">Access the app</string>
<string name="save_user_wallet_agreement_allow_biometrics">Allow to use biometrics</string>
<string name="save_user_wallet_agreement_code_description_biometrics">Biometrics will be requested instead of the access code for interactions with your wallet</string>
<string name="save_user_wallet_agreement_code_title">Access code</string>
<string name="save_user_wallet_agreement_enroll_biometrics_description">It looks like you have biometric authentication disabled, it is necessary to save wallets</string>
<string name="save_user_wallet_agreement_enroll_biometrics_title">Enable biometric authorization</string>
<string name="save_user_wallet_agreement_header_biometrics">Would you like to use biometrics?</string>
<string name="save_user_wallet_agreement_notice">Note that making a transaction with your funds will still require your card</string>
<string name="scan_card_error">Scan card failed. Try again</string>
<string name="scan_card_settings_button">Scan Card</string>
<string name="scan_card_settings_message">Scan the card to change its settings. The changes will impact only the card you\'ve scanned and will not affect other cards tied to your wallet.</string>
<string name="scan_card_settings_title">Get your card ready!</string>
<string name="search_tokens_title">Search tokens</string>
<string name="internal_error_wallet_manager_not_found"></string>
<string name="key_invalidated_warning_description"></string>
<string name="main_manage_tokens"></string>
<string name="main_no_backup_warning_subtitle"></string>
<string name="main_no_backup_warning_title"></string>
<string name="main_page_balance"></string>
<string name="main_processing_full_amount"></string>
<string name="main_scan_card_warning_view_subtitle"></string>
<string name="main_scan_card_warning_view_title"></string>
<string name="main_tokens"></string>
<string name="onboarding_access_code_feature_1_description"></string>
<string name="onboarding_access_code_feature_1_title"></string>
<string name="onboarding_access_code_feature_2_description"></string>
<string name="onboarding_access_code_feature_2_title"></string>
<string name="onboarding_access_code_feature_3_description"></string>
<string name="onboarding_access_code_feature_3_title"></string>
<string name="onboarding_access_code_hint"></string>
<string name="onboarding_access_code_intro_title"></string>
<string name="onboarding_access_code_repeat_code_title"></string>
<string name="onboarding_access_code_too_short"></string>
<string name="onboarding_access_codes_doesnt_match"></string>
<string name="onboarding_alert_message_not_max_backup_cards_added"></string>
<string name="onboarding_backup_exit_warning"></string>
<string name="onboarding_balance_title"></string>
<string name="onboarding_button_add_backup_card"></string>
<string name="onboarding_button_backup_card_format"></string>
<string name="onboarding_button_backup_now"></string>
<string name="onboarding_button_backup_origin"></string>
<string name="onboarding_button_claim"></string>
<string name="onboarding_button_continue_wallet"></string>
<string name="onboarding_button_finalize_backup"></string>
<string name="onboarding_button_kyc_start"></string>
<string name="onboarding_button_kyc_waiting"></string>
<string name="onboarding_button_pin"></string>
<string name="onboarding_button_receive_crypto"></string>
<string name="onboarding_button_register_wallet"></string>
<string name="onboarding_button_scan_origin_card"></string>
<string name="onboarding_button_skip_backup"></string>
<string name="onboarding_button_what_does_it_mean"></string>
<string name="onboarding_create_wallet_body"></string>
<string name="onboarding_create_wallet_button_create_wallet"></string>
<string name="onboarding_create_wallet_header"></string>
<string name="onboarding_create_wallet_options_button_options"></string>
<string name="onboarding_create_wallet_options_message"></string>
<string name="onboarding_create_wallet_options_title"></string>
<string name="onboarding_done_body"></string>
<string name="onboarding_done_header"></string>
<string name="onboarding_exit_alert_message"></string>
<string name="onboarding_exit_alert_title"></string>
<string name="onboarding_getting_started"></string>
<string name="onboarding_linking_error_card_with_wallets"></string>
<string name="onboarding_navbar_kyc_progress"></string>
<string name="onboarding_navbar_kyc_start"></string>
<string name="onboarding_navbar_pin"></string>
<string name="onboarding_navbar_register_wallet"></string>
<string name="onboarding_navbar_title_creating_backup"></string>
<string name="onboarding_saltpay_button_backup_origin"></string>
<string name="onboarding_saltpay_subtitle_no_backup_cards"></string>
<string name="onboarding_saltpay_subtitle_one_backup_card"></string>
<string name="onboarding_saltpay_title_backup_card"></string>
<string name="onboarding_saltpay_title_no_backup_card"></string>
<string name="onboarding_saltpay_title_one_backup_card"></string>
<string name="onboarding_saltpay_title_prepare_origin"></string>
<string name="onboarding_seed_button_read_more"></string>
<string name="onboarding_seed_generate_message"></string>
<string name="onboarding_seed_generate_title"></string>
<string name="onboarding_seed_import_message"></string>
<string name="onboarding_seed_intro_button_generate"></string>
<string name="onboarding_seed_intro_button_import"></string>
<string name="onboarding_seed_intro_message"></string>
<string name="onboarding_seed_intro_title"></string>
<string name="onboarding_seed_mnemonic_invalid_checksum"></string>
<string name="onboarding_seed_mnemonic_wrong_words"></string>
<string name="onboarding_seed_phrase_intro_legacy"></string>
<string name="onboarding_seed_screenshot_alert"></string>
<string name="onboarding_seed_user_validation_message"></string>
<string name="onboarding_seed_user_validation_title"></string>
<string name="onboarding_subtitle_claim"></string>
<string name="onboarding_subtitle_claim_progress"></string>
<string name="onboarding_subtitle_kyc_retry"></string>
<string name="onboarding_subtitle_kyc_start"></string>
<string name="onboarding_subtitle_kyc_waiting"></string>
<string name="onboarding_subtitle_no_backup_cards"></string>
<string name="onboarding_subtitle_one_backup_card"></string>
<string name="onboarding_subtitle_pin"></string>
<string name="onboarding_subtitle_register_wallet"></string>
<string name="onboarding_subtitle_scan_backup_card_format"></string>
<string name="onboarding_subtitle_scan_origin_card"></string>
<string name="onboarding_subtitle_scan_primary_card_format"></string>
<string name="onboarding_subtitle_success_claim"></string>
<string name="onboarding_subtitle_success_tangem_wallet_onboarding"></string>
<string name="onboarding_subtitle_two_backup_cards"></string>
<string name="onboarding_title"></string>
<string name="onboarding_title_backup_card_format"></string>
<string name="onboarding_title_claim"></string>
<string name="onboarding_title_claim_progress"></string>
<string name="onboarding_title_kyc_retry"></string>
<string name="onboarding_title_kyc_start"></string>
<string name="onboarding_title_kyc_waiting"></string>
<string name="onboarding_title_no_backup_cards"></string>
<string name="onboarding_title_one_backup_card"></string>
<string name="onboarding_title_pin"></string>
<string name="onboarding_title_register_wallet"></string>
<string name="onboarding_title_scan_origin_card"></string>
<string name="onboarding_title_two_backup_cards"></string>
<string name="onboarding_top_up_body"></string>
<string name="onboarding_top_up_body_no_account_error"></string>
<string name="onboarding_top_up_button_but_crypto"></string>
<string name="onboarding_top_up_button_show_wallet_address"></string>
<string name="onboarding_top_up_header"></string>
<string name="onboarding_twin_exit_warning"></string>
<string name="onboarding_twins_interrupt_warning"></string>
<string name="onboarding_wallet_info_subtitle_first"></string>
<string name="onboarding_wallet_info_subtitle_fourth"></string>
<string name="onboarding_wallet_info_subtitle_second"></string>
<string name="onboarding_wallet_info_subtitle_third"></string>
<string name="onboarding_wallet_info_title_first"></string>
<string name="onboarding_wallet_info_title_fourth"></string>
<string name="onboarding_wallet_info_title_second"></string>
<string name="onboarding_wallet_info_title_third"></string>
<string name="referral_button_participate"></string>
<string name="referral_error_failed_to_load_info"></string>
<string name="referral_error_failed_to_load_info_with_reason"></string>
<string name="referral_error_failed_to_participate"></string>
<string name="referral_friends_bought_title"></string>
<string name="referral_point_currencies_description_prefix"></string>
<string name="referral_point_currencies_description_suffix"></string>
<string name="referral_point_currencies_title"></string>
<string name="referral_point_discount_description_prefix"></string>
<string name="referral_point_discount_description_suffix"></string>
<string name="referral_point_discount_description_value"></string>
<string name="referral_point_discount_title"></string>
<string name="referral_promo_code_copied"></string>
<string name="referral_promo_code_title"></string>
<string name="referral_share_link"></string>
<string name="referral_title"></string>
<string name="referral_tos_enroled_prefix"></string>
<string name="referral_tos_not_enroled_prefix"></string>
<string name="referral_tos_suffix"></string>
<string name="registration_task_alert_message"></string>
<string name="reset_card_to_factory_button_title"></string>
<string name="reset_card_to_factory_warning_message"></string>
<string name="reset_card_with_backup_to_factory_message"></string>
<string name="reset_card_without_backup_to_factory_message"></string>
<string name="russian_bank_card_warning_subtitle"></string>
<string name="russian_bank_card_warning_title"></string>
<string name="saltpay_error_empty_backup_message"></string>
<string name="saltpay_error_empty_backup_title"></string>
<string name="saltpay_error_no_gas_message"></string>
<string name="saltpay_error_no_gas_title"></string>
<string name="saltpay_error_pin_weak_message"></string>
<string name="saltpay_error_pin_weak_title"></string>
<string name="save_user_wallet_agreement_access_description"></string>
<string name="save_user_wallet_agreement_access_title"></string>
<string name="save_user_wallet_agreement_allow_biometrics"></string>
<string name="save_user_wallet_agreement_code_description_biometrics"></string>
<string name="save_user_wallet_agreement_code_title"></string>
<string name="save_user_wallet_agreement_enroll_biometrics_description"></string>
<string name="save_user_wallet_agreement_enroll_biometrics_title"></string>
<string name="save_user_wallet_agreement_header_biometrics"></string>
<string name="save_user_wallet_agreement_notice"></string>
<string name="scan_card_error"></string>
<string name="scan_card_settings_button"></string>
<string name="scan_card_settings_message"></string>
<string name="scan_card_settings_title"></string>
<string name="search_tokens_title"></string>
<string name="send_amount_label">Importo</string>
<string name="send_destination_hint_address">Indirizzo</string>
<string name="send_destination_hint_address_payid">Indirizzo o PayString</string>
@ -285,8 +315,8 @@
<string name="send_error_payid_not_registered">PayString non registrato</string>
<string name="send_error_payid_request_failed">Richiesta PayString fallita</string>
<string name="send_error_payid_unsupported_by_blockchain">PayString non supportato dalla blockchain</string>
<string name="send_extras_error_invalid_destination_tag">Invalid Tag. It won\'t be added to the transaction.</string>
<string name="send_extras_error_invalid_memo">Invalid Memo. It won\'t be added to the transaction.</string>
<string name="send_extras_error_invalid_destination_tag"></string>
<string name="send_extras_error_invalid_memo"></string>
<string name="send_extras_hint_destination_tag">Tag</string>
<string name="send_extras_hint_memo">Memo</string>
<string name="send_fee_include_description">Includi commissione</string>
@ -297,141 +327,146 @@
<string name="send_max_amount_label">Importo totale</string>
<string name="send_network_fee_title">Costi della rete</string>
<string name="send_title">Invia</string>
<string name="send_title_currency_format">Sending %s</string>
<string name="send_title_currency_format"></string>
<string name="send_total_label">Totale</string>
<string name="send_total_subtitle_asset_format">Sarà inviato %1$s e %2$s</string>
<string name="send_total_subtitle_fiat_format">≈ %1$s (inc. commissione: %2$s)</string>
<string name="send_total_subtitle_format">Sarà inviato %s</string>
<string name="send_transaction_success">La transazione è stata firmata con successo e inviata al nodo blockchain. Il saldo del portafoglio verrà aggiornato dopo un po\' di tempo</string>
<string name="send_validation_invalid_address">Indirizzo non valido</string>
<string name="shop_buy_now">Buy now</string>
<string name="shop_free">Free</string>
<string name="shop_i_have_a_promo_code">I have a promo code…</string>
<string name="shop_buy_now"></string>
<string name="shop_free"></string>
<string name="shop_i_have_a_promo_code"></string>
<string name="shop_one_wallet">Tangem Wallet</string>
<string name="shop_other_payment_methods">Other payment methods</string>
<string name="shop_shipping">Shipping</string>
<string name="shop_total">Total</string>
<string name="solana_rent_warning">Solana network charges a rent of %1$s every 2 days. Accounts that can\'t afford the rent are purged from the network. Deposit your account with more than %2$s to use it for free.</string>
<string name="story_awe_description">Store your crypto assets secure while keeping private keys contained in your card</string>
<string name="story_awe_title">Revolutionary Hardware Wallet</string>
<string name="story_backup_description_1">Up to</string>
<string name="story_backup_description_2_bold">3 physical cards</string>
<string name="story_backup_description_3">to one wallet</string>
<string name="story_backup_title">Ultra Secure Backup</string>
<string name="story_currencies_description">A hardware wallet for your Bitcoin, Ethereum and many more currencies simultaneously all in one card</string>
<string name="story_currencies_title">Thousands of Currencies</string>
<string name="story_finish_description">Use it on the go, anywhere, anytime. No wires or batteries. Just tap the card to your phone when you need your crypto.</string>
<string name="story_finish_title">The Wallet for Everyone</string>
<string name="story_meet_borrow">Borrow</string>
<string name="story_meet_buy">Buy</string>
<string name="story_meet_exchange">Exchange</string>
<string name="story_meet_lend">Lend</string>
<string name="story_meet_pay">Pay</string>
<string name="story_meet_send">Send</string>
<string name="story_meet_store">Store</string>
<string name="story_meet_title">Meet\nTangem</string>
<string name="story_web3_description">Exchange, buy NFT\'s, make loans and deposits in more than 100 different decentralized services</string>
<string name="story_web3_title">DeFi Compatible</string>
<string name="swapping_error_wrapper">Error: %s</string>
<string name="swapping_generic_error">There was an error. Please try again.</string>
<string name="swapping_give_permission">Give Permission</string>
<string name="swapping_high_price_impact">High price impact!</string>
<string name="swapping_high_price_impact_description">Swapping this amount of selected tokens will cause a significant price impact and reduce your outcome.</string>
<string name="swapping_insufficient_funds">Insufficient funds</string>
<string name="swapping_not_enough_funds_for_fee">Not enough funds for fee in your %1$s wallet to create a transaction. Top up your %2$s wallet first.</string>
<string name="swapping_pending_transaction_subtitle">Transaction in progress…</string>
<string name="swapping_pending_transaction_title">Waiting</string>
<string name="swapping_permission_buttons_approve">Approve</string>
<string name="swapping_permission_header">Give Permission</string>
<string name="swapping_permission_rows_amount">Amount %s</string>
<string name="swapping_permission_rows_spender">Spender</string>
<string name="swapping_permission_rows_your_wallet">Your Wallet</string>
<string name="swapping_permission_subheader">To continue you need to allow 1inch smart contracts to use your %s</string>
<string name="swapping_permit_and_swap">Permit and Swap</string>
<string name="swapping_success_view_explorer_button_title">View in Explorer</string>
<string name="swapping_success_view_title">In progress</string>
<string name="swapping_swap">Swap</string>
<string name="swapping_swap_action">Swap</string>
<string name="swapping_swap_of_to">Swap of %s to</string>
<string name="swapping_tangem_fee_disclaimer">Quotes include an additional Tangem commission of %s. This helps us deliver a top-of-the-line product.</string>
<string name="swapping_token_list_other_tokens">Other tokens</string>
<string name="swapping_token_list_title">Choose token</string>
<string name="swapping_token_list_your_tokens">Your tokens</string>
<string name="swapping_token_not_available">not available</string>
<string name="token_details_hide_alert_hide">Hide</string>
<string name="token_details_hide_alert_message">You are about to hide this token from the main screen. You can add it back anytime through the manage tokens page.</string>
<string name="token_details_hide_alert_title">Hide %s</string>
<string name="token_details_hide_token">Hide token</string>
<string name="token_details_send_blocked_fee_format">%1$s is a token in the %2$s network. To make a %3$s transaction you need to deposit some %4$s (%5$s) to cover the network fee.</string>
<string name="token_details_send_blocked_tx_format">Please wait for %s transaction to complete to be able to send funds</string>
<string name="token_details_unable_hide_alert_message">The %1$s token is the main currency on the %2$s network and cannot be hidden as long as you have other tokens on this network in the list.</string>
<string name="token_details_unable_hide_alert_title">Unable to hide %s</string>
<string name="token_item_no_rate">No rate</string>
<string name="transaction_history_empty_transactions">You don\'t have any transactions yet</string>
<string name="transaction_history_error_failed_to_load">Failed to load transactions</string>
<string name="transaction_history_title">Transactions</string>
<string name="transaction_history_tx_in_progress">In progress…</string>
<string name="twin_error_same_card">You\'ve scanned the same card. To create a twin wallet you need to scan the card with number %d</string>
<string name="twins_onboarding_description_format">This one that you are holding in your hands and the other one with number %s.\n\nBoth cards can be used to extract funds from this wallet.</string>
<string name="twins_onboarding_subtitle">One wallet. Two cards.</string>
<string name="twins_recreate_button_format">Scan the card #%s</string>
<string name="twins_recreate_title_creating_wallet">Creating wallet</string>
<string name="twins_recreate_title_format">Scan the #%s twin card</string>
<string name="twins_recreate_title_preparing">Preparing card</string>
<string name="shop_other_payment_methods"></string>
<string name="shop_shipping"></string>
<string name="shop_total"></string>
<string name="solana_rent_warning"></string>
<string name="story_awe_description"></string>
<string name="story_awe_title"></string>
<string name="story_backup_description_1"></string>
<string name="story_backup_description_2_bold"></string>
<string name="story_backup_description_3"></string>
<string name="story_backup_title"></string>
<string name="story_currencies_description"></string>
<string name="story_currencies_title"></string>
<string name="story_finish_description"></string>
<string name="story_finish_title"></string>
<string name="story_meet_borrow"></string>
<string name="story_meet_buy"></string>
<string name="story_meet_exchange"></string>
<string name="story_meet_lend"></string>
<string name="story_meet_pay"></string>
<string name="story_meet_send"></string>
<string name="story_meet_store"></string>
<string name="story_meet_title"></string>
<string name="story_web3_description"></string>
<string name="story_web3_title"></string>
<string name="swapping_error_wrapper"></string>
<string name="swapping_generic_error"></string>
<string name="swapping_give_permission"></string>
<string name="swapping_high_price_impact"></string>
<string name="swapping_high_price_impact_description"></string>
<string name="swapping_insufficient_funds"></string>
<string name="swapping_not_enough_funds_for_fee"></string>
<string name="swapping_pending_transaction_subtitle"></string>
<string name="swapping_pending_transaction_title"></string>
<string name="swapping_permission_buttons_approve"></string>
<string name="swapping_permission_header"></string>
<string name="swapping_permission_rows_amount"></string>
<string name="swapping_permission_rows_spender"></string>
<string name="swapping_permission_rows_your_wallet"></string>
<string name="swapping_permission_subheader"></string>
<string name="swapping_permit_and_swap"></string>
<string name="swapping_success_view_explorer_button_title"></string>
<string name="swapping_success_view_title"></string>
<string name="swapping_swap"></string>
<string name="swapping_swap_action"></string>
<string name="swapping_swap_of_to"></string>
<string name="swapping_tangem_fee_disclaimer"></string>
<string name="swapping_token_list_other_tokens"></string>
<string name="swapping_token_list_title"></string>
<string name="swapping_token_list_your_tokens"></string>
<string name="swapping_token_not_available"></string>
<plurals name="token_count">
<item quantity="one"></item>
<item quantity="other"></item>
</plurals>
<string name="token_details_hide_alert_hide"></string>
<string name="token_details_hide_alert_message"></string>
<string name="token_details_hide_alert_title"></string>
<string name="token_details_hide_token"></string>
<string name="token_details_send_blocked_fee_format"></string>
<string name="token_details_send_blocked_tx_format"></string>
<string name="token_details_unable_hide_alert_message"></string>
<string name="token_details_unable_hide_alert_title"></string>
<string name="token_item_no_rate"></string>
<string name="transaction_history_empty_transactions"></string>
<string name="transaction_history_error_failed_to_load"></string>
<string name="transaction_history_title"></string>
<string name="transaction_history_tx_in_progress"></string>
<string name="twin_error_same_card"></string>
<string name="twins_onboarding_description_format"></string>
<string name="twins_onboarding_subtitle"></string>
<string name="twins_recreate_button_format"></string>
<string name="twins_recreate_title_creating_wallet"></string>
<string name="twins_recreate_title_format"></string>
<string name="twins_recreate_title_preparing"></string>
<string name="twins_recreate_toolbar">Tangem Twin</string>
<string name="twins_recreate_warning">This action is irreversible. You will not have access to the old wallet.</string>
<string name="user_wallet_list_add_button">Add new wallet</string>
<string name="user_wallet_list_delete_prompt">Are you sure you want to delete this wallet?</string>
<string name="user_wallet_list_editing_count">%d selected</string>
<string name="user_wallet_list_error_unable_to_unlock">An error has occurred, please scan your card to log in</string>
<string name="user_wallet_list_error_wallet_already_saved">This wallet has already been saved, you can add another one</string>
<string name="user_wallet_list_multi_header">Multi-currency</string>
<string name="user_wallet_list_rename_popup_placeholder">Wallet name</string>
<string name="user_wallet_list_rename_popup_title">Rename Wallet</string>
<string name="user_wallet_list_single_header">Single-currency</string>
<string name="user_wallet_list_title">My Wallets</string>
<string name="user_wallet_list_unlock_all">Unlock all with %s</string>
<string name="twins_recreate_warning"></string>
<string name="user_wallet_list_add_button"></string>
<string name="user_wallet_list_delete_prompt"></string>
<string name="user_wallet_list_editing_count"></string>
<string name="user_wallet_list_error_unable_to_unlock"></string>
<string name="user_wallet_list_error_wallet_already_saved"></string>
<string name="user_wallet_list_multi_header"></string>
<string name="user_wallet_list_rename_popup_placeholder"></string>
<string name="user_wallet_list_rename_popup_title"></string>
<string name="user_wallet_list_single_header"></string>
<string name="user_wallet_list_title"></string>
<string name="user_wallet_list_unlock_all"></string>
<string name="wallet_address_button_create_payid">Crea PayString</string>
<string name="wallet_address_button_explore">Cerca indirizzo</string>
<string name="wallet_balance_blockchain_unreachable">Network is unreachable</string>
<string name="wallet_balance_blockchain_unreachable_try_later">Blockchain is unreachable. Try later</string>
<string name="wallet_address_button_explore"></string>
<string name="wallet_balance_blockchain_unreachable"></string>
<string name="wallet_balance_blockchain_unreachable_try_later"></string>
<string name="wallet_balance_loading">Il saldo sta per essere caricato…</string>
<string name="wallet_balance_missing_derivation">Scan the card</string>
<string name="wallet_balance_missing_derivation"></string>
<string name="wallet_balance_tx_in_progress">Transazione in corso…</string>
<string name="wallet_balance_verified">Saldo verificato</string>
<string name="wallet_button_actions">Actions</string>
<string name="wallet_button_buy">Buy</string>
<string name="wallet_button_actions"></string>
<string name="wallet_button_buy"></string>
<string name="wallet_button_create_wallet">Crea portafoglio</string>
<string name="wallet_button_sell">Sell</string>
<string name="wallet_button_sell"></string>
<string name="wallet_button_send">Invia</string>
<string name="wallet_button_trade">Exchange</string>
<string name="wallet_choose_trade_action">Do you want to buy or sell crypto?</string>
<string name="wallet_connect_alert_sign_message">Requesting to sign a message.\n\n%s</string>
<string name="wallet_connect_bnb_sign_message">Dapp %1$s, requesting to\nsign BNB transaction.\n\n%2$s</string>
<string name="wallet_connect_bnb_trade_order_message">Trade order for %1$s\nPrice: %2$s\nAmount to receive: %3$s\nAmount to pay: %4$s</string>
<string name="wallet_connect_bnb_transaction_message">Transaction details:\nFrom: %1$s\nTo: %2$s\nAmount: %3$s</string>
<string name="wallet_connect_clipboard_alert">Clipboard contain WalletConnect code. Use copied value or scan QR-code</string>
<string name="wallet_connect_create_tx_message">Request to create transaction for %1$s\n%2$s\n\nAmount: %3$s\nFee: %4$s\nTotal: %5$s\nBalance: %6$s</string>
<string name="wallet_connect_create_tx_not_enough_funds">Can\'t send transaction. Not enough funds.</string>
<string name="wallet_connect_error_failed_to_connect">Failed to establish WalletConnect session. Please, try again later.</string>
<string name="wallet_connect_error_missing_blockchains">Not all tokens were added to your list. Please add them first and try again. Missing tokens:\n</string>
<string name="wallet_connect_error_timeout">Failed to establish WalletConnect session: timeout error. Please, try again later.</string>
<string name="wallet_connect_error_unsupported_blockchains">Session request contains unsupported blockchains for WalletConnect connection. Unsupported blockchains:\n</string>
<string name="wallet_connect_error_unsupported_dapp">Connection with this Dapp cannot be established due to its technical implementation.</string>
<string name="wallet_connect_generic_error_with_code">We\'ve encountered unknown error. Error code: %d. If the problem persists — feel free to contact our support</string>
<string name="wallet_connect_network_not_found_format">%s network not found. Please, add it first and try again.</string>
<string name="wallet_connect_no_sessions_message">No opened WalletConnect sessions</string>
<string name="wallet_connect_no_sessions_title">Ooops. No Sessions.</string>
<string name="wallet_connect_open_session">Open session</string>
<string name="wallet_connect_paste_from_clipboard">Paste from clipboard</string>
<string name="wallet_connect_request_session_start">Request to start a session for\n%1$s\n\nNETWORK: %2$s\n\nURL: %3$s</string>
<string name="wallet_connect_same_wcuri">The operation couldn\'t be completed.\n\nYou have already established a WalletConnect session with this parameters.</string>
<string name="wallet_connect_scan_new_code">Scan new code</string>
<string name="wallet_connect_scanner_error_not_valid_card">This card can\'t be used to establish WalletConnect session</string>
<string name="wallet_connect_scanner_error_unsupported_network">This network is not supported. Please select another network.</string>
<string name="wallet_connect_select_network">Select network</string>
<string name="wallet_connect_sessions_title">WalletConnect Sessions</string>
<string name="wallet_connect_subtitle">Connect to Dapps</string>
<string name="wallet_button_trade"></string>
<string name="wallet_choose_trade_action"></string>
<string name="wallet_connect_alert_sign_message"></string>
<string name="wallet_connect_bnb_sign_message"></string>
<string name="wallet_connect_bnb_trade_order_message"></string>
<string name="wallet_connect_bnb_transaction_message"></string>
<string name="wallet_connect_clipboard_alert"></string>
<string name="wallet_connect_create_tx_message"></string>
<string name="wallet_connect_create_tx_not_enough_funds"></string>
<string name="wallet_connect_error_failed_to_connect"></string>
<string name="wallet_connect_error_missing_blockchains"></string>
<string name="wallet_connect_error_timeout"></string>
<string name="wallet_connect_error_unsupported_blockchains"></string>
<string name="wallet_connect_error_unsupported_dapp"></string>
<string name="wallet_connect_error_wrong_card_selected"></string>
<string name="wallet_connect_generic_error_with_code"></string>
<string name="wallet_connect_network_not_found_format"></string>
<string name="wallet_connect_no_sessions_message"></string>
<string name="wallet_connect_no_sessions_title"></string>
<string name="wallet_connect_open_session"></string>
<string name="wallet_connect_paste_from_clipboard"></string>
<string name="wallet_connect_request_session_start"></string>
<string name="wallet_connect_same_wcuri"></string>
<string name="wallet_connect_scan_new_code"></string>
<string name="wallet_connect_scanner_error_not_valid_card"></string>
<string name="wallet_connect_scanner_error_unsupported_network"></string>
<string name="wallet_connect_select_network"></string>
<string name="wallet_connect_sessions_title"></string>
<string name="wallet_connect_subtitle"></string>
<string name="wallet_connect_title">WalletConnect</string>
<string name="wallet_create_payid">Crea PayString</string>
<string name="wallet_create_payid_domain">$payid.tangem.com</string>
@ -440,11 +475,11 @@
<string name="wallet_create_payid_error_message">Errore di risposta durante la creazione del PayString</string>
<string name="wallet_create_payid_hint">Nome PayString</string>
<string name="wallet_create_payid_info">Il tuo PayString informazioni per te uniche, come il tuo numero di telefono, indirizzo email o ABN.</string>
<string name="wallet_currency_subtitle">%s network</string>
<string name="wallet_currency_subtitle"></string>
<string name="wallet_error_empty_card">Carta vuota</string>
<string name="wallet_error_empty_card_subtitle">Crea un portafoglio per iniziare ad utilizzare la tua carta Tangem</string>
<string name="wallet_error_empty_twin_card">Create twin wallet</string>
<string name="wallet_error_empty_twin_card_subtitle">Generate wallet keys on both cards to start using your Twins</string>
<string name="wallet_error_empty_twin_card"></string>
<string name="wallet_error_empty_twin_card_subtitle"></string>
<string name="wallet_error_no_account">Conto non creato</string>
<string name="wallet_error_unsupported_blockchain">Questa carta non è supportata</string>
<string name="wallet_error_unsupported_blockchain_subtitle">La tua carta Tangem è stata creata per funzionare con un\'altra applicazione. Leggere il nome e le istruzioni sulla carta e installare l\'applicazione corretta</string>
@ -455,28 +490,28 @@
<string name="wallet_pending_tx_sending">Inviau</string>
<string name="wallet_pending_tx_sending_address_format">su %s</string>
<string name="wallet_title">Tangem</string>
<string name="warning_button_can_be_better">Can be better</string>
<string name="warning_button_learn_more">Learn more</string>
<string name="warning_button_can_be_better"></string>
<string name="warning_button_learn_more"></string>
<string name="warning_button_ok">Ok, ho capito!</string>
<string name="warning_button_really_cool">Really cool!</string>
<string name="warning_existential_deposit_message">%1$s network has a concept of Existential Deposit. If your account drops below %2$s it will be deactivated and any remaining funds will be destroyed.</string>
<string name="warning_failed_to_verify_card_message">This card might be a production sample or counterfeit</string>
<string name="warning_failed_to_verify_card_title">Authenticity check failed</string>
<string name="warning_important_security_info">Important security information %s</string>
<string name="warning_low_signatures_format">There are only %s signatures available on this card. You must withdraw all of your funds.</string>
<string name="warning_rate_app_message">How do you like Tangem?</string>
<string name="warning_rate_app_title">One question</string>
<string name="warning_signed_tx_previously">This card has signed transactions in the past</string>
<string name="warning_testnet_card_message">This is a Testnet card. Don\'t accept it as a payment. This card must only be used for testing and development purposes.</string>
<string name="welcome_interrupted_backup_alert_discard">Discard</string>
<string name="welcome_interrupted_backup_alert_message">You have an interrupted backup. Do you want to resume?</string>
<string name="welcome_interrupted_backup_alert_resume">Yes, resume</string>
<string name="welcome_interrupted_backup_discard_discard">Discard</string>
<string name="welcome_interrupted_backup_discard_message">If you will discard the backup now, then you will have to reset the cards to factory settings to start over again</string>
<string name="welcome_interrupted_backup_discard_resume">Resume backup</string>
<string name="welcome_interrupted_backup_discard_title">This is an irreversible action</string>
<string name="welcome_unlock">Log in with %s</string>
<string name="welcome_unlock_card">Scan card</string>
<string name="welcome_unlock_description">Use %s or scan a card to access the app</string>
<string name="welcome_unlock_title">Welcome back!</string>
<string name="warning_button_really_cool"></string>
<string name="warning_existential_deposit_message"></string>
<string name="warning_failed_to_verify_card_message"></string>
<string name="warning_failed_to_verify_card_title"></string>
<string name="warning_important_security_info"></string>
<string name="warning_low_signatures_format"></string>
<string name="warning_rate_app_message"></string>
<string name="warning_rate_app_title"></string>
<string name="warning_signed_tx_previously"></string>
<string name="warning_testnet_card_message"></string>
<string name="welcome_interrupted_backup_alert_discard"></string>
<string name="welcome_interrupted_backup_alert_message"></string>
<string name="welcome_interrupted_backup_alert_resume"></string>
<string name="welcome_interrupted_backup_discard_discard"></string>
<string name="welcome_interrupted_backup_discard_message"></string>
<string name="welcome_interrupted_backup_discard_resume"></string>
<string name="welcome_interrupted_backup_discard_title"></string>
<string name="welcome_unlock"></string>
<string name="welcome_unlock_card"></string>
<string name="welcome_unlock_description"></string>
<string name="welcome_unlock_title"></string>
</resources>

View file

@ -27,6 +27,10 @@
<string name="biometric_lockout_permanent_warning_description">Пожалуйста, отсканируйте карту</string>
<string name="biometric_lockout_warning_description">Пожалуйста, попробуйте снова через 30 секунд или отсканируйте карту</string>
<string name="biometric_lockout_warning_title">Слишком много попыток</string>
<string name="card_settings_access_code_recovery_disabled_description">Отключите эту опцию, если не хотите, чтобы эта карта использовалась для сброса кодов доступа на другие карты этого кошелька. Обратите внимание, сброс кода также не будет доступен на этой карте.</string>
<string name="card_settings_access_code_recovery_enabled_description">Использовать эту карту для сброса кода доступа на других картах в этом кошельке</string>
<string name="card_settings_access_code_recovery_footer">Отключить возможность сброса кода доступа на этой карте или других картах этого кошелька</string>
<string name="card_settings_access_code_recovery_title">Восстановление кода доступа</string>
<string name="card_settings_action_sheet_reset">Сбросить</string>
<string name="card_settings_action_sheet_title">Вы уверены, что хотите это сделать?</string>
<string name="card_settings_change_access_code">Смена кода доступа</string>
@ -36,6 +40,10 @@
<string name="card_settings_title">Настройки карты</string>
<string name="chat_bot_name">Tangem Bot</string>
<string name="chat_button_title">Чат</string>
<string name="chat_user_action_rate_user">Оценить оператора</string>
<string name="chat_user_action_send_log">Отправить логи</string>
<string name="chat_user_actions_title">Пожалуйста, выберите действие</string>
<string name="chat_user_rate_operator_title">Пожалуйста, оцените работу оператора</string>
<string name="common_accept">Принять</string>
<string name="common_add">Добавить</string>
<string name="common_attention">Внимание</string>
@ -49,10 +57,13 @@
<string name="common_copy">Копировать</string>
<string name="common_create">Создать</string>
<string name="common_delete">Удалить</string>
<string name="common_disabled">Отключено</string>
<string name="common_disconnect">Отключить</string>
<string name="common_done">Готово</string>
<string name="common_enable">Включить</string>
<string name="common_enabled">Включено</string>
<string name="common_error">Ошибка</string>
<string name="common_import">Импортировать</string>
<string name="common_no">Нет</string>
<string name="common_ok">Ок</string>
<string name="common_origin_card">Основная карта</string>
@ -173,11 +184,15 @@
<string name="onboarding_create_wallet_body">Давайте сгенерируем все ключи на вашей карте и создадим безопасный кошелек</string>
<string name="onboarding_create_wallet_button_create_wallet">Создать кошелек</string>
<string name="onboarding_create_wallet_header">Создать кошелек</string>
<string name="onboarding_create_wallet_options_button_options">Другие опции</string>
<string name="onboarding_create_wallet_options_message">Ваши ключи будут надежно сгенерированы внутри карты. Никакой seed-фразы, а это значит, что никто не может экспортировать или украсть ее.</string>
<string name="onboarding_create_wallet_options_title">Cоздавайте ключи приватно</string>
<string name="onboarding_done_body">Ваша карта активирована и готова к использованию</string>
<string name="onboarding_done_header">Успешно!</string>
<string name="onboarding_exit_alert_message">В этом случае вам будет необходимо начать процесс заново.</string>
<string name="onboarding_exit_alert_title">Вы хотите выйти из процесса активации?</string>
<string name="onboarding_getting_started">Подготовка</string>
<string name="onboarding_linking_error_card_with_wallets">Другой кошелек уже был создан на карте, которую вы пытаетесь добавить. Хотите сбросить его и использовать карту для бэкапа?</string>
<string name="onboarding_navbar_kyc_progress">Подтвердите свою личность</string>
<string name="onboarding_navbar_kyc_start">Верификация клиента</string>
<string name="onboarding_navbar_pin">Код доступа</string>
@ -190,6 +205,20 @@
<string name="onboarding_saltpay_title_no_backup_card">Бэкап карта не добавлена</string>
<string name="onboarding_saltpay_title_one_backup_card">Бэкап карта создана</string>
<string name="onboarding_saltpay_title_prepare_origin">Приготовьте SaltPay карту</string>
<string name="onboarding_seed_button_read_more">Читать про секретную фразу</string>
<string name="onboarding_seed_generate_message">Запишите эти 12 слов в порядке, указанном ниже, и сохраните их в надежном месте.</string>
<string name="onboarding_seed_generate_title">Ваша секретная фраза</string>
<string name="onboarding_seed_import_message">Чтобы импортировать кошелек, введите секретную фразу в поле ниже</string>
<string name="onboarding_seed_intro_button_generate">Cоздать секретную фразу</string>
<string name="onboarding_seed_intro_button_import">Импорт кошелька</string>
<string name="onboarding_seed_intro_message">Секретная фраза — это набор слов, который дает возможность восстановить кошелек. В отличие от ключей, сгенерированных картой, seed-фраза не защищена и может быть скопирована и украдена. Используйте этот вариант на свой страх и риск.</string>
<string name="onboarding_seed_intro_title">Использовать секретную фразу</string>
<string name="onboarding_seed_mnemonic_invalid_checksum">Неверная секретная фраза. Пожалуйста, проверьте порядок слов.</string>
<string name="onboarding_seed_mnemonic_wrong_words">Неверная секретная фраза. Пожалуйста, проверьте орфографию.</string>
<string name="onboarding_seed_phrase_intro_legacy">Устаревший</string>
<string name="onboarding_seed_screenshot_alert">Мы не рекомендуем хранить секретную фразу в виде скриншота из-за высокого риска утери или взлома</string>
<string name="onboarding_seed_user_validation_message">Чтобы проверить, правильно ли вы записали секретную фразу, введите 2-е, 7-е и 11-е слова</string>
<string name="onboarding_seed_user_validation_title">Итак, проверим</string>
<string name="onboarding_subtitle_claim">Для начала работы просто запросите начисление wxDAI на свой кошелек</string>
<string name="onboarding_subtitle_claim_progress">Это займет несколько секунд</string>
<string name="onboarding_subtitle_kyc_retry">Более подробная информация отправлена на ваш адрес электронной почты.</string>
@ -359,6 +388,12 @@
<string name="swapping_token_list_title">Выберите токен</string>
<string name="swapping_token_list_your_tokens">Ваши токены</string>
<string name="swapping_token_not_available">не доступен</string>
<plurals name="token_count">
<item quantity="one">%d токен</item>
<item quantity="few">%d токена</item>
<item quantity="many">%d токенов</item>
<item quantity="other">%d токенов</item>
</plurals>
<string name="token_details_hide_alert_hide">Скрыть</string>
<string name="token_details_hide_alert_message">Вы скрываете токен с главного экрана, но в любой момент сможете добавить его обратно через страницу управления токенами.</string>
<string name="token_details_hide_alert_title">Скрыть %s</string>

View file

@ -27,6 +27,10 @@
<string name="biometric_lockout_permanent_warning_description">請掃描卡片</string>
<string name="biometric_lockout_warning_description">請30秒後重試或刷卡</string>
<string name="biometric_lockout_warning_title">嘗試次數過多</string>
<string name="card_settings_access_code_recovery_disabled_description">您將無法使用此卡重置訪問密碼</string>
<string name="card_settings_access_code_recovery_enabled_description">您將能夠使用此卡重置訪問密碼</string>
<string name="card_settings_access_code_recovery_footer">啟用使用此卡重置您的錢包訪問密碼</string>
<string name="card_settings_access_code_recovery_title">恢復訪問密碼</string>
<string name="card_settings_action_sheet_reset">重置</string>
<string name="card_settings_action_sheet_title">您確定要這麼做嗎?</string>
<string name="card_settings_change_access_code">更改訪問密碼</string>
@ -36,6 +40,10 @@
<string name="card_settings_title">卡片設置</string>
<string name="chat_bot_name">Tangem 機器人</string>
<string name="chat_button_title">支援</string>
<string name="chat_user_action_rate_user"></string>
<string name="chat_user_action_send_log"></string>
<string name="chat_user_actions_title"></string>
<string name="chat_user_rate_operator_title"></string>
<string name="common_accept">接受</string>
<string name="common_add">添加</string>
<string name="common_attention">注意</string>
@ -49,10 +57,13 @@
<string name="common_copy">複製</string>
<string name="common_create">創造</string>
<string name="common_delete">刪除</string>
<string name="common_disabled">禁用</string>
<string name="common_disconnect">斷開連接</string>
<string name="common_done">完成</string>
<string name="common_enable">允許</string>
<string name="common_enabled">啟用</string>
<string name="common_error">錯誤</string>
<string name="common_import">導入</string>
<string name="common_no"></string>
<string name="common_ok">OK</string>
<string name="common_origin_card">主卡片</string>
@ -107,7 +118,7 @@
<string name="details_row_title_issuer">發行人</string>
<string name="details_row_title_send_feedback">發送反饋</string>
<string name="details_row_title_signed_hashes">簽署</string>
<string name="details_title">細節</string>
<string name="details_title">更多</string>
<string name="disclaimer_error_loading">檢查您的網路連接或切換到其他網絡</string>
<string name="disclaimer_title">服務條款</string>
<string name="error_update_app">糟糕,當前版本的應用程序無法使用此卡,請檢查更新</string>
@ -118,7 +129,7 @@
<string name="feedback_preface_rate_negative">告訴我們您缺少哪些功能,我們會盡力幫助您</string>
<string name="feedback_preface_scan_failed">請告訴我們你有什麼卡</string>
<string name="feedback_preface_support">嗨! 幫助團隊,</string>
<string name="feedback_preface_tx_failed">請告訴我們更多有關您的問題的信息。提供任何細節都會帶來幫助</string>
<string name="feedback_preface_tx_failed">請告訴我們更多有關您的問題。提供任何細節都會帶來幫助</string>
<string name="feedback_subject_rate_negative">我的建議</string>
<string name="feedback_subject_scan_failed">無法掃卡</string>
<string name="feedback_subject_support">反饋</string>
@ -132,6 +143,7 @@
<string name="initial_message_sign_header">點擊簽名</string>
<string name="initial_message_tap_header">點按卡片</string>
<string name="internal_error_wallet_manager_not_found">內部錯誤:找不到錢包管理器</string>
<string name="key_invalidated_warning_description">您已更新生物識別登入,掃描您的卡進入</string>
<string name="main_manage_tokens">管理代幣</string>
<string name="main_no_backup_warning_subtitle">為了保護您的資產,我們建議您執行此程序</string>
<string name="main_no_backup_warning_title">您的錢包尚未備份</string>
@ -172,11 +184,15 @@
<string name="onboarding_create_wallet_body">讓我們生成您卡上的所有密鑰並創建一個安全的錢包</string>
<string name="onboarding_create_wallet_button_create_wallet">創建錢包</string>
<string name="onboarding_create_wallet_header">創造錢包</string>
<string name="onboarding_create_wallet_options_button_options">其他選項</string>
<string name="onboarding_create_wallet_options_message">您的密鑰將在卡內安全生成。沒有種子短語,這意味著沒有人可以導出或竊取它。</string>
<string name="onboarding_create_wallet_options_title">私下生成密鑰</string>
<string name="onboarding_done_body">您的卡已激活並可以使用</string>
<string name="onboarding_done_header">成功!</string>
<string name="onboarding_exit_alert_message">這此情況,您必須要重新開始</string>
<string name="onboarding_exit_alert_title">您想要離開啟用程序嗎?</string>
<string name="onboarding_getting_started">開始</string>
<string name="onboarding_linking_error_card_with_wallets"></string>
<string name="onboarding_navbar_kyc_progress">驗證身分</string>
<string name="onboarding_navbar_kyc_start">KYC</string>
<string name="onboarding_navbar_pin">PIN 碼</string>
@ -189,6 +205,20 @@
<string name="onboarding_saltpay_title_no_backup_card">沒有備份卡片</string>
<string name="onboarding_saltpay_title_one_backup_card">備份卡片已準備完成</string>
<string name="onboarding_saltpay_title_prepare_origin">準備SaltPay卡</string>
<string name="onboarding_seed_button_read_more">閱讀更多關於助記詞的訊息</string>
<string name="onboarding_seed_generate_message">按照下面給出的順序寫下這 12 個單詞,並將它們存放在一個隱密、安全的地方</string>
<string name="onboarding_seed_generate_title">您的助記詞</string>
<string name="onboarding_seed_import_message">要導入您的錢包,請在下面的字段中輸入您的秘密助記詞</string>
<string name="onboarding_seed_intro_button_generate">生成助記詞</string>
<string name="onboarding_seed_intro_button_import">導入錢包</string>
<string name="onboarding_seed_intro_message">註記詞是一系列能夠恢復錢包的單詞。與卡片生成的密鑰不同,助記詞不受保護,可以被複製和竊取。使用此選項需要您自擔風險。</string>
<string name="onboarding_seed_intro_title">使用助記詞</string>
<string name="onboarding_seed_mnemonic_invalid_checksum">無效的助記詞。請檢查單詞順序。</string>
<string name="onboarding_seed_mnemonic_wrong_words">無效的助記詞。請檢查您的拼寫。</string>
<string name="onboarding_seed_phrase_intro_legacy">Legacy</string>
<string name="onboarding_seed_screenshot_alert">由於丟失或被駭客入侵的風險很高,我們不建議將密碼截圖</string>
<string name="onboarding_seed_user_validation_message">為了檢查您是否正確輸入了助記詞,請輸入第 2、7 和 11 個單詞</string>
<string name="onboarding_seed_user_validation_title">那麼,讓我們檢查一下</string>
<string name="onboarding_subtitle_claim">要開始,只需將 wxDAI 獲取到您的錢包</string>
<string name="onboarding_subtitle_claim_progress">這會花上幾秒</string>
<string name="onboarding_subtitle_kyc_retry">請查看Email已獲得更多指示</string>
@ -224,9 +254,9 @@
<string name="onboarding_top_up_header">充值你的錢包</string>
<string name="onboarding_twin_exit_warning">結對過程已部分完成。你現在不能退出</string>
<string name="onboarding_twins_interrupt_warning">如果創建錢包的過程以任何方式中斷,您將得重新開始</string>
<string name="onboarding_wallet_info_subtitle_first">您最多可以備份另外兩張空白的 Tangem 錢包卡。</string>
<string name="onboarding_wallet_info_subtitle_first">您最多可以額外備份兩張空白的 Tangem冷錢包</string>
<string name="onboarding_wallet_info_subtitle_fourth">可以使用其中一張備用卡恢復訪問密碼</string>
<string name="onboarding_wallet_info_subtitle_second">所有備用卡都可以使用相同的密鑰作為全功能使用</string>
<string name="onboarding_wallet_info_subtitle_second">所有備用卡都可以使用相同的密鑰作為全功能使用</string>
<string name="onboarding_wallet_info_subtitle_third">您將能夠設置訪問密碼來保護您的錢包</string>
<string name="onboarding_wallet_info_title_first">備援錢包</string>
<string name="onboarding_wallet_info_title_fourth">訪問密碼還原</string>
@ -238,7 +268,7 @@
<string name="referral_error_failed_to_participate">無法處理您的請求。原因:%s。請稍後再試。無如果問題仍然存在—請隨時聯繫服務人員</string>
<string name="referral_friends_bought_title">您的朋友買</string>
<string name="referral_point_currencies_description_prefix">會得到</string>
<string name="referral_point_currencies_description_suffix">對於你的朋友在你的 %1$s 網絡地址%2$s 上購買的每個錢包</string>
<string name="referral_point_currencies_description_suffix">對於你的朋友在你的 %1$s 網絡地址%2$s上購買的每個錢包</string>
<string name="referral_point_currencies_title"></string>
<string name="referral_point_discount_description_prefix">得到</string>
<string name="referral_point_discount_description_suffix">當在 tangem.com購買卡片</string>
@ -335,11 +365,11 @@
<string name="swapping_error_wrapper">錯誤: %s</string>
<string name="swapping_generic_error">有錯誤。請再試一遍</string>
<string name="swapping_give_permission">賦予權限</string>
<string name="swapping_high_price_impact">High price impact!</string>
<string name="swapping_high_price_impact_description">Swapping this amount of selected tokens will cause a significant price impact and reduce your outcome.</string>
<string name="swapping_high_price_impact">價格影響高!</string>
<string name="swapping_high_price_impact_description">在此代幣交換的數量將對價格產生重大影響,並降低您收到的數量</string>
<string name="swapping_insufficient_funds">餘額不足</string>
<string name="swapping_not_enough_funds_for_fee">您的 %1$s 錢包中沒有足夠的資金來創建交易。首先為您的 %2$s 錢包充值</string>
<string name="swapping_pending_transaction_subtitle">交易進行中</string>
<string name="swapping_pending_transaction_subtitle">交易進行中...</string>
<string name="swapping_pending_transaction_title">等待中</string>
<string name="swapping_permission_buttons_approve">允許</string>
<string name="swapping_permission_header">賦予權限</string>
@ -351,13 +381,16 @@
<string name="swapping_success_view_explorer_button_title">在瀏覽器中查看</string>
<string name="swapping_success_view_title">進行中</string>
<string name="swapping_swap">交換</string>
<string name="swapping_swap_action">Swap</string>
<string name="swapping_swap_action">交易</string>
<string name="swapping_swap_of_to">交易 %s 至</string>
<string name="swapping_tangem_fee_disclaimer">Quotes include an additional Tangem commission of %s. This helps us deliver a top-of-the-line product.</string>
<string name="swapping_tangem_fee_disclaimer">此外,報價包括%s的 Tangem 費用。這有助於我們提供一流的產品</string>
<string name="swapping_token_list_other_tokens">其他代幣</string>
<string name="swapping_token_list_title">選擇代幣</string>
<string name="swapping_token_list_your_tokens">您的代幣</string>
<string name="swapping_token_not_available">無法使用</string>
<plurals name="token_count">
<item quantity="other">%d 代幣</item>
</plurals>
<string name="token_details_hide_alert_hide">隱藏</string>
<string name="token_details_hide_alert_message">您即將在主屏幕上隱藏此代幣。您可以隨時通過管理代幣頁面將其添加回來。</string>
<string name="token_details_hide_alert_title">隱藏 %s</string>
@ -383,7 +416,7 @@
<string name="user_wallet_list_add_button">添加新錢包</string>
<string name="user_wallet_list_delete_prompt">您確定要刪除此錢包?</string>
<string name="user_wallet_list_editing_count">已選擇 %d</string>
<string name="user_wallet_list_error_unable_to_unlock">An error has occurred, please scan your card to log in</string>
<string name="user_wallet_list_error_unable_to_unlock">發生錯誤,請掃卡登錄</string>
<string name="user_wallet_list_error_wallet_already_saved">此錢包已保存,您可以再添加一個</string>
<string name="user_wallet_list_multi_header">多幣種</string>
<string name="user_wallet_list_rename_popup_placeholder">錢包名稱</string>
@ -418,9 +451,10 @@
<string name="wallet_connect_error_timeout">無法建立 WalletConnect 連接:超時錯誤。請稍後再試</string>
<string name="wallet_connect_error_unsupported_blockchains">會話請求包含不支持 WalletConnect 連接的區塊鏈。不支持的區塊鏈:\n</string>
<string name="wallet_connect_error_unsupported_dapp">由於技術問題,無法與此 Dapp 建立連接</string>
<string name="wallet_connect_error_wrong_card_selected">在 Tangem App 中選擇了錯誤的卡</string>
<string name="wallet_connect_generic_error_with_code">我們遇到了未知錯誤。錯誤代碼:%d。如果問題仍然存在-請隨時聯繫我們的支持人員</string>
<string name="wallet_connect_network_not_found_format">沒有 %s 網路,請先加入後再試一次</string>
<string name="wallet_connect_no_sessions_message">沒有打開中的WalletConnect連接</string>
<string name="wallet_connect_no_sessions_message">沒有已連結的WalletConnect</string>
<string name="wallet_connect_no_sessions_title">Ooops, 沒有連接</string>
<string name="wallet_connect_open_session">打開連接</string>
<string name="wallet_connect_paste_from_clipboard">從剪貼板貼上</string>
@ -462,7 +496,7 @@
<string name="warning_existential_deposit_message">%1$s 網絡有一個 Existential Deposit 的概念。如果您的帳戶低於 %2$s它將被停用所有剩餘資金將被銷毀</string>
<string name="warning_failed_to_verify_card_message">此卡可能是生產樣本或偽造品</string>
<string name="warning_failed_to_verify_card_title">認證檢查失敗</string>
<string name="warning_important_security_info">重要安全信息%s</string>
<string name="warning_important_security_info">重要安全信息 %s</string>
<string name="warning_low_signatures_format">此卡上只有 %s 個簽名可用。您必須提取所有資金</string>
<string name="warning_rate_app_message">你喜歡 Tangem 嗎?</string>
<string name="warning_rate_app_title">一個問題</string>

View file

@ -27,6 +27,10 @@
<string name="biometric_lockout_permanent_warning_description">Please scan the card</string>
<string name="biometric_lockout_warning_description">Please try again in 30 seconds or scan the card</string>
<string name="biometric_lockout_warning_title">Too many attempts</string>
<string name="card_settings_access_code_recovery_disabled_description">Disable this option if you don\'t want this card to be used to reset access codes on other cards of this wallet. Note that you will not be able to reset access code on this card as well.</string>
<string name="card_settings_access_code_recovery_enabled_description">Allows you to use this card to reset access code on other cards in this wallet</string>
<string name="card_settings_access_code_recovery_footer">Disable the ability to reset access code on this card or other cards in this wallet</string>
<string name="card_settings_access_code_recovery_title">Access code recovery</string>
<string name="card_settings_action_sheet_reset">Reset</string>
<string name="card_settings_action_sheet_title">Are you sure you want to do this?</string>
<string name="card_settings_change_access_code">Change Access Code</string>
@ -36,6 +40,10 @@
<string name="card_settings_title">Card Settings</string>
<string name="chat_bot_name">Tangem Bot</string>
<string name="chat_button_title">Support</string>
<string name="chat_user_action_rate_user">Rate operator</string>
<string name="chat_user_action_send_log">Send logs</string>
<string name="chat_user_actions_title">Please select an action</string>
<string name="chat_user_rate_operator_title">Please, rate the work of the operator</string>
<string name="common_accept">Accept</string>
<string name="common_add">Add</string>
<string name="common_attention">Attention</string>
@ -49,10 +57,13 @@
<string name="common_copy">Copy</string>
<string name="common_create">Create</string>
<string name="common_delete">Delete</string>
<string name="common_disabled">Disabled</string>
<string name="common_disconnect">Disconnect</string>
<string name="common_done">Done</string>
<string name="common_enable">Enable</string>
<string name="common_enabled">Enabled</string>
<string name="common_error">Error</string>
<string name="common_import">Import</string>
<string name="common_no">No</string>
<string name="common_ok">OK</string>
<string name="common_origin_card">Primary Card</string>
@ -173,11 +184,15 @@
<string name="onboarding_create_wallet_body">Let\'s generate all the keys on your card and create a secure wallet</string>
<string name="onboarding_create_wallet_button_create_wallet">Create wallet</string>
<string name="onboarding_create_wallet_header">Create a wallet</string>
<string name="onboarding_create_wallet_options_button_options">Other options</string>
<string name="onboarding_create_wallet_options_message">Your keys will be securely generated inside the card. There is no seed phrase, which means nobody can export or steal it.</string>
<string name="onboarding_create_wallet_options_title">Generate keys privately</string>
<string name="onboarding_done_body">Your card is activated and ready to be used</string>
<string name="onboarding_done_header">Success!</string>
<string name="onboarding_exit_alert_message">In this case, you will need to start from the beginning.</string>
<string name="onboarding_exit_alert_title">Do you want to exit the activation process?</string>
<string name="onboarding_getting_started">Getting started</string>
<string name="onboarding_linking_error_card_with_wallets">Another wallet has already been created on the card you\'re trying to add. Do you want to reset it and use the card for a new wallet?</string>
<string name="onboarding_navbar_kyc_progress">Verify your identity</string>
<string name="onboarding_navbar_kyc_start">KYC</string>
<string name="onboarding_navbar_pin">Pin code</string>
@ -190,6 +205,20 @@
<string name="onboarding_saltpay_title_no_backup_card">No backup card</string>
<string name="onboarding_saltpay_title_one_backup_card">Backup card ready</string>
<string name="onboarding_saltpay_title_prepare_origin">Prepare the SaltPay card</string>
<string name="onboarding_seed_button_read_more">Read more about seed phrases</string>
<string name="onboarding_seed_generate_message">Write these 12 words down in the order given below and store them in a safe and secret place.</string>
<string name="onboarding_seed_generate_title">Your secret phrase</string>
<string name="onboarding_seed_import_message">To import your wallet, enter your secret phrase in the field below</string>
<string name="onboarding_seed_intro_button_generate">Generate seed phrase</string>
<string name="onboarding_seed_intro_button_import">Import wallet</string>
<string name="onboarding_seed_intro_message">A secret phrase is a series of words that allows you to recover your wallet. Unlike the keys generated by the card, secret phrases are unprotected and can be copied and stolen. Use this option at your own risk.</string>
<string name="onboarding_seed_intro_title">Use seed phrase</string>
<string name="onboarding_seed_mnemonic_invalid_checksum">Invalid secret phrase. Please check words order.</string>
<string name="onboarding_seed_mnemonic_wrong_words">Invalid secret phrase. Please check your spelling.</string>
<string name="onboarding_seed_phrase_intro_legacy">Legacy</string>
<string name="onboarding_seed_screenshot_alert">We do not recommend storing the passphrase as a screenshot due to the high risk of loss or hacking</string>
<string name="onboarding_seed_user_validation_message">To check whether youve written down your secret phrase correctly, please enter the 2nd, 7th and 11th words</string>
<string name="onboarding_seed_user_validation_title">So, lets check</string>
<string name="onboarding_subtitle_claim">To get started, simply claim wxDAI to your wallet</string>
<string name="onboarding_subtitle_claim_progress">It will take a few seconds</string>
<string name="onboarding_subtitle_kyc_retry">Please check your email for further instructions</string>
@ -354,11 +383,15 @@
<string name="swapping_swap">Swap</string>
<string name="swapping_swap_action">Swap</string>
<string name="swapping_swap_of_to">Swap of %s to</string>
<string name="swapping_tangem_fee_disclaimer">Quotes include an additional Tangem commission of %s. This helps us deliver a top-of-the-line product.</string>
<string name="swapping_tangem_fee_disclaimer">Quotes include an additional Tangem commission of %s. This helps us deliver a top-of-the-line product</string>
<string name="swapping_token_list_other_tokens">Other tokens</string>
<string name="swapping_token_list_title">Choose token</string>
<string name="swapping_token_list_your_tokens">Your tokens</string>
<string name="swapping_token_not_available">not available</string>
<plurals name="token_count">
<item quantity="one">%d token</item>
<item quantity="other">%d tokens</item>
</plurals>
<string name="token_details_hide_alert_hide">Hide</string>
<string name="token_details_hide_alert_message">You are about to hide this token from the main screen. You can add it back anytime through the manage tokens page.</string>
<string name="token_details_hide_alert_title">Hide %s</string>

View file

@ -85,6 +85,7 @@ data class TangemDimens internal constructor(
val spacing28: Dp = 28.dp,
val spacing32: Dp = 32.dp,
val spacing34: Dp = 34.dp,
val spacing36: Dp = 34.dp,
val spacing38: Dp = 38.dp,
val spacing44: Dp = 44.dp,
val spacing50: Dp = 50.dp,