diff --git a/app/src/main/java/com/tangem/tap/common/extensions/Navigation.kt b/app/src/main/java/com/tangem/tap/common/extensions/Navigation.kt index 7ad24431c6..42d6017a42 100644 --- a/app/src/main/java/com/tangem/tap/common/extensions/Navigation.kt +++ b/app/src/main/java/com/tangem/tap/common/extensions/Navigation.kt @@ -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( diff --git a/app/src/main/java/com/tangem/tap/common/redux/navigation/NavigationState.kt b/app/src/main/java/com/tangem/tap/common/redux/navigation/NavigationState.kt index 0b40b7bd8e..861a0a0fb9 100644 --- a/app/src/main/java/com/tangem/tap/common/redux/navigation/NavigationState.kt +++ b/app/src/main/java/com/tangem/tap/common/redux/navigation/NavigationState.kt @@ -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, diff --git a/app/src/main/java/com/tangem/tap/features/details/redux/DetailsMiddleware.kt b/app/src/main/java/com/tangem/tap/features/details/redux/DetailsMiddleware.kt index de6be315af..fb04d4aa57 100644 --- a/app/src/main/java/com/tangem/tap/features/details/redux/DetailsMiddleware.kt +++ b/app/src/main/java/com/tangem/tap/features/details/redux/DetailsMiddleware.kt @@ -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 { diff --git a/app/src/main/java/com/tangem/tap/features/details/ui/cardsettings/CardSettingsScreen.kt b/app/src/main/java/com/tangem/tap/features/details/ui/cardsettings/CardSettingsScreen.kt index be54f4a52f..44b2a45efe 100644 --- a/app/src/main/java/com/tangem/tap/features/details/ui/cardsettings/CardSettingsScreen.kt +++ b/app/src/main/java/com/tangem/tap/features/details/ui/cardsettings/CardSettingsScreen.kt @@ -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( diff --git a/app/src/main/java/com/tangem/tap/features/details/ui/cardsettings/CardSettingsScreenState.kt b/app/src/main/java/com/tangem/tap/features/details/ui/cardsettings/CardSettingsScreenState.kt index 5ae42a55a9..9bb98f9e01 100644 --- a/app/src/main/java/com/tangem/tap/features/details/ui/cardsettings/CardSettingsScreenState.kt +++ b/app/src/main/java/com/tangem/tap/features/details/ui/cardsettings/CardSettingsScreenState.kt @@ -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? = 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(), diff --git a/app/src/main/java/com/tangem/tap/features/details/ui/cardsettings/CardSettingsViewModel.kt b/app/src/main/java/com/tangem/tap/features/details/ui/cardsettings/CardSettingsViewModel.kt index 16b9836764..805f373605 100644 --- a/app/src/main/java/com/tangem/tap/features/details/ui/cardsettings/CardSettingsViewModel.kt +++ b/app/src/main/java/com/tangem/tap/features/details/ui/cardsettings/CardSettingsViewModel.kt @@ -16,6 +16,7 @@ class CardSettingsViewModel(private val store: Store) { 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) { 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) { Analytics.send(Settings.CardSettings.ButtonChangeSecurityMode()) store.dispatch(DetailsAction.ManageSecurity.OpenSecurity) } + is CardInfo.AccessCodeRecovery -> { + store.dispatch(DetailsAction.AccessCodeRecovery.Open) + } else -> {} } } diff --git a/app/src/main/java/com/tangem/tap/features/details/ui/cardsettings/coderecovery/AccessCodeRecoveryFragment.kt b/app/src/main/java/com/tangem/tap/features/details/ui/cardsettings/coderecovery/AccessCodeRecoveryFragment.kt new file mode 100644 index 0000000000..370d333d31 --- /dev/null +++ b/app/src/main/java/com/tangem/tap/features/details/ui/cardsettings/coderecovery/AccessCodeRecoveryFragment.kt @@ -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 { + + private val viewModel = AccessCodeRecoveryViewModel(store) + + private var screenState: MutableState = + 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) + } +} \ No newline at end of file diff --git a/app/src/main/java/com/tangem/tap/features/details/ui/cardsettings/coderecovery/AccessCodeRecoveryScreen.kt b/app/src/main/java/com/tangem/tap/features/details/ui/cardsettings/coderecovery/AccessCodeRecoveryScreen.kt new file mode 100644 index 0000000000..12edf5a47e --- /dev/null +++ b/app/src/main/java/com/tangem/tap/features/details/ui/cardsettings/coderecovery/AccessCodeRecoveryScreen.kt @@ -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), + ) + } +} \ No newline at end of file diff --git a/app/src/main/java/com/tangem/tap/features/details/ui/cardsettings/coderecovery/AccessCodeRecoveryScreenState.kt b/app/src/main/java/com/tangem/tap/features/details/ui/cardsettings/coderecovery/AccessCodeRecoveryScreenState.kt new file mode 100644 index 0000000000..f1a825067a --- /dev/null +++ b/app/src/main/java/com/tangem/tap/features/details/ui/cardsettings/coderecovery/AccessCodeRecoveryScreenState.kt @@ -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, +) \ No newline at end of file diff --git a/app/src/main/java/com/tangem/tap/features/details/ui/cardsettings/coderecovery/AccessCodeRecoveryViewModel.kt b/app/src/main/java/com/tangem/tap/features/details/ui/cardsettings/coderecovery/AccessCodeRecoveryViewModel.kt new file mode 100644 index 0000000000..a2948075f8 --- /dev/null +++ b/app/src/main/java/com/tangem/tap/features/details/ui/cardsettings/coderecovery/AccessCodeRecoveryViewModel.kt @@ -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) { + + 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)) }, + ) + } + } +} \ No newline at end of file diff --git a/app/src/main/java/com/tangem/tap/features/details/ui/common/DetailsComposeElements.kt b/app/src/main/java/com/tangem/tap/features/details/ui/common/DetailsComposeElements.kt index 616fbaafc9..c65fe7128b 100644 --- a/app/src/main/java/com/tangem/tap/features/details/ui/common/DetailsComposeElements.kt +++ b/app/src/main/java/com/tangem/tap/features/details/ui/common/DetailsComposeElements.kt @@ -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), + ) + } } } \ No newline at end of file diff --git a/app/src/main/java/com/tangem/tap/features/details/ui/securitymode/SecurityModeScreen.kt b/app/src/main/java/com/tangem/tap/features/details/ui/securitymode/SecurityModeScreen.kt index 383fa7b498..ba9c01e84d 100644 --- a/app/src/main/java/com/tangem/tap/features/details/ui/securitymode/SecurityModeScreen.kt +++ b/app/src/main/java/com/tangem/tap/features/details/ui/securitymode/SecurityModeScreen.kt @@ -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 diff --git a/core/res/src/main/res/values-de/strings.xml b/core/res/src/main/res/values-de/strings.xml index f4ba8d958a..71e94a8a0c 100644 --- a/core/res/src/main/res/values-de/strings.xml +++ b/core/res/src/main/res/values-de/strings.xml @@ -1,283 +1,313 @@ - Add custom token - Send only %1$s (%2$s) from %3$s network to this address. Using other tokens and networks may result in loss of funds. - Request support - Send feedback + + + + 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. - This feature is disabled in Demo mode - You are currently running in Demo mode. All funds are not real. + + Die von Ihnen gescannte Karte ist eine Entwicklungskarte. Akzeptieren Sie sie nicht als Zahlungsmittel. - Reason: %s - Can\'t send a transaction - Note that tokens on different networks have different addresses. Double check that your address matches the network when you transfer funds. - Tokens in Solana network are not supported by this card due to firmware limitation. - 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. - Are you having difficulty scanning your card? + + + + + + Diese Karte ist für die Zusammenarbeit mit Tangem nicht geeignet - Go to settings to enable biometric authentication in the Tangem App - Enable biometric authentication - This will delete all the saved wallet access codes. Any further operation with the wallet will require submitting the access code. - Removing the saved card deletes all the saved wallets and their access codes from the app. - Save Access Code - Biometric authentication will be requested instead of the access code for interactions with your card. - Keep the wallet in the app - 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. - App Settings - Please scan the card - Please try again in 30 seconds or scan the card - Too many attempts - Reset - Are you sure you want to do this? - Change Access Code - Access code will be changed on this card only - Reset to Factory Settings - Security Mode - Card Settings + + + + + + + + + + + + + + + + + + + + + + + Tangem Bot - Support + + + + + Akzeptieren - Add - Attention + + Bilanz: %s - biometric authentication - biometrics + + Sie haben keinen Zugang zur Kamera erteilt, bitte passen Sie Ihre Datenschutzeinstellungen an Abbrechen - Close - Continue - Copy - Create + + + + Entfernen - Disconnect + + Erledigt - Enable + + Fehler - No + + OK - Primary Card - Reject - Retry + + + Änderungen speichern - Search - The server is not available, please try again later - Share - Sign - Sign and send - Start - Submit + + + + + + + Erfolg - terms and conditions - I understand + + Warnung - Yes - Contract address copied! - Available networks - Contract address - Contract address is invalid - Derivation path is invalid - Please select the network - Required field - Decimal number must be a valid integer, no higher than %d - Decimals - Default - BIP44 coin type - E.g. USD Coin - Name - Not selected - Network - E.g. USDC - Token symbol - This token/network has already been added to your list - Note that tokens can be created by anyone. Be aware of adding scam tokens, they can cost nothing. - Chat + + + + + + + + + + + + + + + + + + + + + Zugangscode Sie müssen den richtigen Zugangscode eingeben, bevor Sie die Karte scannen. Langes Tippen 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 Passcode Bevor Sie einen Befehl ausführen, der eine Änderung des Kartenstatus zur Folge hat, müssen Sie den Passcode eingeben. - Referral program - Privacy policy + + %s Hasch - Card terms of use + KartenID - Link More Cards + App Währung Emittent - Send Feedback + Signiert Details - Check your internet connection or switch to a different network + Nutzungsbedingungen - Oops, the current version of the application is not ready to work with this card, please check for updates. - You have used a card from another wallet. Tap the card associated with this wallet - You Receive - You Send - The following information is optional. You can erase it if you don\'t want to share it. - Tell us what functions you are missing, and we will try to help you. - Please tell us what card do you have - Hi support team, - Please tell us more about your issue. Every small detail can help. - My suggestions - Can\'t scan a card - Feedback - Tangem feedback - Can\'t send a transaction - Order + + + + + + + + + + + + + + + Tippen Sie um den Zugangscode zu ändern Tippen Sie um den Passcode zu ändern - To create the wallet tap the card as shown above and do not remove until the end of the operation + Legen Sie die Karte zum Scannen an Tippen um zu signieren Legen Sie die Karte an - Internal error: wallet manager not found - Manage tokens - To protect your assets, we advise you to carry out this procedure - Your wallet has not been backed up - Total balance - The amount does not include some of your funds - To access all the networks you need to scan the card - Scan your card - Tokens - You have to set up a single access code to protect all your wallets - Protect - You can set up an individual access code on each card later - Personalize - The access code can be restored with a linked card, don\'t keep all cards in one place - Restore - Choose any word, phrase, or number you want as your access code - Create Access Code - Re-enter your Access Code - Access code must be at least 4 characters long - Entered access code didn\'t match the initial access code - 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? - The backup process is partly complete. You can\'t exit it now. - Balance - Add a backup card - Scan the card #%d - Backup now - Scan the primary card - Claim - Continue to my wallet - Finalize the backup process - Verify via Utorg - Refresh - Set PIN code - Receive crypto - Register - Scan primary card - Skip for later - How does it work? - Let\'s generate all the keys on your card and create a secure wallet - Create wallet - Create a wallet - Your card is activated and ready to be used - Success! - In this case, you will need to start from the beginning. - Do you want to exit the activation process? - Getting started - Verify your identity - KYC - Pin code - Connect - Creating a backup - Tap the SaltPay card - To start the backup process you have to add the Tangem card as your backup - Finalize the backup process by creating an access code - Tap the Tangem card - No backup card - Backup card ready - Prepare the SaltPay card - To get started, simply claim wxDAI to your wallet - It will take a few seconds - Please check your email for further instructions - To start using your card you have to pass the KYC process - 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. - To start the backup process add up to two backup cards. - You can add one more card or finalize the backup process - Set up a 4-digit code.\nIt will be used for payments. - Connect your card to the decentralized payment system - Prepare the backup card with number %s - Prepare the primary card - Prepare the primary card with number %s - Congratulations! Your first payment crypto card has been activated! - Your wallet card is configured and ready for use. - Max number of cards added. Finalize the backup process. - Activating card - Backup card #%d - Claim %s - Claiming - Something went wrong - Verify your identity - KYC is in progress - No backup cards - One backup card added - PIN Code - Connect your card - Prepare your card - Two backup cards added - To get started, simply top up the wallet with any amount - To get started, simply top up the wallet with more than %1$s %2$s - Buy crypto - Show the wallet\'s address - Top up your wallet - The twinning process is partly complete. You can\'t exit it now. - If the process of creating the wallet gets interrupted in any way, you\'ll have to start over - You can backup your keys up to two other blank Tangem Wallet cards. - Access code can be restored with one of backup cards. - All the backup cards can be used as full-functional with the identical keys. - You will be able to set an access code to protect your wallets. - Backup wallet - Access code restore - Identical cards - Access code - Participate - Failed to load the information about the referral program. Please try again later. - Failed to load the information about the referral program. Error code: %s. Please try again later. - Your participation request could not be processed. Error code: %s. Please try again later. If the problem persists — feel free to contact our support. - Your friends bought - Will get - for each wallet bought by your friend on your %1$s network address%2$s - You - Will get a - when buying a card on tangem.com - %s discount - Your friend - Personal code copied! - Your personal code - Buy Tangem Wallet with discount!\n%s - Refer your friends to Tangem - You\'ve accepted - By tapping this button you accept - of the referral program - Please hold the card until the operation complete - Reset the Card - I understand that after performing this action, I will no longer have access to the current wallet - 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. - 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. - Do you have a bank card of another country or a UnionPay card? - Russian bank cards are not accepted at the moment - Tap the card with the visa logo - Attention - Please contact support - No funds for activation - Such a PIN can be brute-forced easily - Four identical digits isn\'t safe - Log into the app and check your balance without scanning the card - Access the app - Allow to use biometrics - Biometrics will be requested instead of the access code for interactions with your wallet - Access code - It looks like you have biometric authentication disabled, it is necessary to save wallets - Enable biometric authorization - Would you like to use biometrics? - Note that making a transaction with your funds will still require your card - Scan card failed. Try again - Scan Card - 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. - Get your card ready! - Search tokens + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Betrag Adresse Adresse oder PayString @@ -285,8 +315,8 @@ PayString ist nicht registriert PayString-Anfrage ist fehlgeschlagen PayString wird von der Blockchain nicht unterstützt - Invalid Tag. It won\'t be added to the transaction. - Invalid Memo. It won\'t be added to the transaction. + + Tag Memo inkl. Gebühr @@ -297,141 +327,146 @@ Höchstbetrag Netzgebühr Absenden - Sending %s + Gesamt %1$s und %2$s werden gesendet ≈ %1$s (inkl. Gebühr: %2$s) %s wird gesendet Die Transaktion wurde erfolgreich signiert und an den Blockchain-Knoten gesendet. Die Walletbilanz wird aktualisiert Ungültige Adresse - Buy now - Free - I have a promo code… + + + Tangem Wallet - Other payment methods - Shipping - Total - 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. - Store your crypto assets secure while keeping private keys contained in your card - Revolutionary Hardware Wallet - Up to - 3 physical cards - to one wallet - Ultra Secure Backup - A hardware wallet for your Bitcoin, Ethereum and many more currencies simultaneously – all in one card - Thousands of Currencies - Use it on the go, anywhere, anytime. No wires or batteries. Just tap the card to your phone when you need your crypto. - The Wallet for Everyone - Borrow - Buy - Exchange - Lend - Pay - Send - Store - Meet\nTangem - Exchange, buy NFT\'s, make loans and deposits in more than 100 different decentralized services - DeFi Compatible - Error: %s - There was an error. Please try again. - Give Permission - High price impact! - Swapping this amount of selected tokens will cause a significant price impact and reduce your outcome. - Insufficient funds - Not enough funds for fee in your %1$s wallet to create a transaction. Top up your %2$s wallet first. - Transaction in progress… - Waiting - Approve - Give Permission - Amount %s - Spender - Your Wallet - To continue you need to allow 1inch smart contracts to use your %s - Permit and Swap - View in Explorer - In progress - Swap - Swap - Swap of %s to - Quotes include an additional Tangem commission of %s. This helps us deliver a top-of-the-line product. - Other tokens - Choose token - Your tokens - not available - Hide - You are about to hide this token from the main screen. You can add it back anytime through the manage tokens page. - Hide %s - Hide token - %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. - Please wait for %s transaction to complete to be able to send funds - 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. - Unable to hide %s - No rate - You don\'t have any transactions yet - Failed to load transactions - Transactions - In progress… - You\'ve scanned the same card. To create a twin wallet you need to scan the card with number %d - 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. - One wallet. Two cards. - Scan the card #%s - Creating wallet - Scan the #%s twin card - Preparing card + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Tangem Twin - This action is irreversible. You will not have access to the old wallet. - Add new wallet - Are you sure you want to delete this wallet? - %d selected - An error has occurred, please scan your card to log in - This wallet has already been saved, you can add another one - Multi-currency - Wallet name - Rename Wallet - Single-currency - My Wallets - Unlock all with %s + + + + + + + + + + + + PayString erstellen - Adresse erkunden - Network is unreachable - Blockchain is unreachable. Try later + + + Die Bilanz wird aufgeladen… - Scan the card + Die Transaktion läuft… Verifizierte Bilanz - Actions - Buy + + ein Wallet erstellen - Sell + Absenden - Exchange - Do you want to buy or sell crypto? - Requesting to sign a message.\n\n%s - Dapp %1$s, requesting to\nsign BNB transaction.\n\n%2$s - Trade order for %1$s\nPrice: %2$s\nAmount to receive: %3$s\nAmount to pay: %4$s - Transaction details:\nFrom: %1$s\nTo: %2$s\nAmount: %3$s - Clipboard contain WalletConnect code. Use copied value or scan QR-code - Request to create transaction for %1$s\n%2$s\n\nAmount: %3$s\nFee: %4$s\nTotal: %5$s\nBalance: %6$s - Can\'t send transaction. Not enough funds. - Failed to establish WalletConnect session. Please, try again later. - Not all tokens were added to your list. Please add them first and try again. Missing tokens:\n - Failed to establish WalletConnect session: timeout error. Please, try again later. - Session request contains unsupported blockchains for WalletConnect connection. Unsupported blockchains:\n - Connection with this Dapp cannot be established due to its technical implementation. - We\'ve encountered unknown error. Error code: %d. If the problem persists — feel free to contact our support - %s network not found. Please, add it first and try again. - No opened WalletConnect sessions - Ooops. No Sessions. - Open session - Paste from clipboard - Request to start a session for\n%1$s\n\nNETWORK: %2$s\n\nURL: %3$s - The operation couldn\'t be completed.\n\nYou have already established a WalletConnect session with this parameters. - Scan new code - This card can\'t be used to establish WalletConnect session - This network is not supported. Please select another network. - Select network - WalletConnect Sessions - Connect to Dapps + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WalletConnect PayString erstellen $payid.tangem.com @@ -440,11 +475,11 @@ Fehlerantwort beim Erstellen der PayString PayString Name PayString sind Ihre einzigartigen Identifikationsdaten wie Telefonnummer, E-Mail-Adresse oder ABN. - %s network + Leere Karte Erstellen Sie ein Wallet um die Tangem-Karte verwenden zu können - Create twin wallet - Generate wallet keys on both cards to start using your Twins + + Das Konto ist nicht erstellt Diese Karte wird nicht unterstützt 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 @@ -455,28 +490,28 @@ Senden an %s Tangem - Can be better - Learn more + + OK, ich hab\'s! - Really cool! - %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. - This card might be a production sample or counterfeit - Authenticity check failed - Important security information %s - There are only %s signatures available on this card. You must withdraw all of your funds. - How do you like Tangem? - One question - This card has signed transactions in the past - This is a Testnet card. Don\'t accept it as a payment. This card must only be used for testing and development purposes. - Discard - You have an interrupted backup. Do you want to resume? - Yes, resume - Discard - If you will discard the backup now, then you will have to reset the cards to factory settings to start over again - Resume backup - This is an irreversible action - Log in with %s - Scan card - Use %s or scan a card to access the app - Welcome back! + + + + + + + + + + + + + + + + + + + + + diff --git a/core/res/src/main/res/values-fr/strings.xml b/core/res/src/main/res/values-fr/strings.xml index 8c367d88a4..a82b4bb258 100644 --- a/core/res/src/main/res/values-fr/strings.xml +++ b/core/res/src/main/res/values-fr/strings.xml @@ -1,283 +1,313 @@ - Add custom token - Send only %1$s (%2$s) from %3$s network to this address. Using other tokens and networks may result in loss of funds. - Request support - Send feedback + + + + 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. - This feature is disabled in Demo mode - You are currently running in Demo mode. All funds are not real. + + La carte que vous avez scannée est une carte de développement. Ne l\'acceptez pas comme paiement. - Reason: %s - Can\'t send a transaction - Note that tokens on different networks have different addresses. Double check that your address matches the network when you transfer funds. - Tokens in Solana network are not supported by this card due to firmware limitation. - 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. - Are you having difficulty scanning your card? + + + + + + Cette carte n\'est pas conçue pour fonctionner avec Tangem - Go to settings to enable biometric authentication in the Tangem App - Enable biometric authentication - This will delete all the saved wallet access codes. Any further operation with the wallet will require submitting the access code. - Removing the saved card deletes all the saved wallets and their access codes from the app. - Save Access Code - Biometric authentication will be requested instead of the access code for interactions with your card. - Keep the wallet in the app - 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. - App Settings - Please scan the card - Please try again in 30 seconds or scan the card - Too many attempts - Reset - Are you sure you want to do this? - Change Access Code - Access code will be changed on this card only - Reset to Factory Settings - Security Mode - Card Settings + + + + + + + + + + + + + + + + + + + + + + + Tangem Bot - Support + + + + + J\'accepte - Add - Attention + + Solde : %s - biometric authentication - biometrics + + Vous n\'avez pas octroyé l\'accès à votre caméra, veuillez modifier vos paramètres de confidentialité Annuler - Close - Continue - Copy - Create + + + + Supprimer - Disconnect + + Exécuté - Enable + + Erreur - No + + OK - Primary Card - Reject - Retry + + + Sauvegarder les modifications - Search - The server is not available, please try again later - Share - Sign - Sign and send - Start - Submit + + + + + + + Avec succès - terms and conditions - I understand + + Alerte - Yes - Contract address copied! - Available networks - Contract address - Contract address is invalid - Derivation path is invalid - Please select the network - Required field - Decimal number must be a valid integer, no higher than %d - Decimals - Default - BIP44 coin type - E.g. USD Coin - Name - Not selected - Network - E.g. USDC - Token symbol - This token/network has already been added to your list - Note that tokens can be created by anyone. Be aware of adding scam tokens, they can cost nothing. - Chat + + + + + + + + + + + + + + + + + + + + + Code d\'accès Vous devrez entrer le mot de passe correct avant de scanner la carte Tenez la carte fermement 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. Mot de passe Avant d\'exécuter une commande qui modifie l\'état de la carte, vous devrez entrer un mot de passe. - Referral program - Privacy policy + + %s hashes - Card terms of use + ID de la carte - Link More Cards + Monnaie de l\'application Emetteur - Send Feedback + Signé Référénces - Check your internet connection or switch to a different network + Conditions d\'utilisation - Oops, the current version of the application is not ready to work with this card, please check for updates. - You have used a card from another wallet. Tap the card associated with this wallet - You Receive - You Send - The following information is optional. You can erase it if you don\'t want to share it. - Tell us what functions you are missing, and we will try to help you. - Please tell us what card do you have - Hi support team, - Please tell us more about your issue. Every small detail can help. - My suggestions - Can\'t scan a card - Feedback - Tangem feedback - Can\'t send a transaction - Order + + + + + + + + + + + + + + + Touchez, pour modifier le code d\'accès Touchez, pour modifier le mot de passe - To create the wallet tap the card as shown above and do not remove until the end of the operation + Posez pour scanner Touchez pour signer Posez la carte - Internal error: wallet manager not found - Manage tokens - To protect your assets, we advise you to carry out this procedure - Your wallet has not been backed up - Total balance - The amount does not include some of your funds - To access all the networks you need to scan the card - Scan your card - Tokens - You have to set up a single access code to protect all your wallets - Protect - You can set up an individual access code on each card later - Personalize - The access code can be restored with a linked card, don\'t keep all cards in one place - Restore - Choose any word, phrase, or number you want as your access code - Create Access Code - Re-enter your Access Code - Access code must be at least 4 characters long - Entered access code didn\'t match the initial access code - 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? - The backup process is partly complete. You can\'t exit it now. - Balance - Add a backup card - Scan the card #%d - Backup now - Scan the primary card - Claim - Continue to my wallet - Finalize the backup process - Verify via Utorg - Refresh - Set PIN code - Receive crypto - Register - Scan primary card - Skip for later - How does it work? - Let\'s generate all the keys on your card and create a secure wallet - Create wallet - Create a wallet - Your card is activated and ready to be used - Success! - In this case, you will need to start from the beginning. - Do you want to exit the activation process? - Getting started - Verify your identity - KYC - Pin code - Connect - Creating a backup - Tap the SaltPay card - To start the backup process you have to add the Tangem card as your backup - Finalize the backup process by creating an access code - Tap the Tangem card - No backup card - Backup card ready - Prepare the SaltPay card - To get started, simply claim wxDAI to your wallet - It will take a few seconds - Please check your email for further instructions - To start using your card you have to pass the KYC process - 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. - To start the backup process add up to two backup cards. - You can add one more card or finalize the backup process - Set up a 4-digit code.\nIt will be used for payments. - Connect your card to the decentralized payment system - Prepare the backup card with number %s - Prepare the primary card - Prepare the primary card with number %s - Congratulations! Your first payment crypto card has been activated! - Your wallet card is configured and ready for use. - Max number of cards added. Finalize the backup process. - Activating card - Backup card #%d - Claim %s - Claiming - Something went wrong - Verify your identity - KYC is in progress - No backup cards - One backup card added - PIN Code - Connect your card - Prepare your card - Two backup cards added - To get started, simply top up the wallet with any amount - To get started, simply top up the wallet with more than %1$s %2$s - Buy crypto - Show the wallet\'s address - Top up your wallet - The twinning process is partly complete. You can\'t exit it now. - If the process of creating the wallet gets interrupted in any way, you\'ll have to start over - You can backup your keys up to two other blank Tangem Wallet cards. - Access code can be restored with one of backup cards. - All the backup cards can be used as full-functional with the identical keys. - You will be able to set an access code to protect your wallets. - Backup wallet - Access code restore - Identical cards - Access code - Participate - Failed to load the information about the referral program. Please try again later. - Failed to load the information about the referral program. Error code: %s. Please try again later. - Your participation request could not be processed. Error code: %s. Please try again later. If the problem persists — feel free to contact our support. - Your friends bought - Will get - for each wallet bought by your friend on your %1$s network address%2$s - You - Will get a - when buying a card on tangem.com - %s discount - Your friend - Personal code copied! - Your personal code - Buy Tangem Wallet with discount!\n%s - Refer your friends to Tangem - You\'ve accepted - By tapping this button you accept - of the referral program - Please hold the card until the operation complete - Reset the Card - I understand that after performing this action, I will no longer have access to the current wallet - 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. - 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. - Do you have a bank card of another country or a UnionPay card? - Russian bank cards are not accepted at the moment - Tap the card with the visa logo - Attention - Please contact support - No funds for activation - Such a PIN can be brute-forced easily - Four identical digits isn\'t safe - Log into the app and check your balance without scanning the card - Access the app - Allow to use biometrics - Biometrics will be requested instead of the access code for interactions with your wallet - Access code - It looks like you have biometric authentication disabled, it is necessary to save wallets - Enable biometric authorization - Would you like to use biometrics? - Note that making a transaction with your funds will still require your card - Scan card failed. Try again - Scan Card - 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. - Get your card ready! - Search tokens + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Somme Adresse Adresse ou PayString @@ -285,8 +315,8 @@ PayString non enregistré La demande de PayString a échoué PayString non pris en charge par la blockchain - Invalid Tag. It won\'t be added to the transaction. - Invalid Memo. It won\'t be added to the transaction. + + Tag Memo Inclure les commissions @@ -297,141 +327,146 @@ Somme maximale Commissions du réseau Envoyer - Sending %s + Total Sera envoyé %1$s et %2$s ≈ %1$s (incl. les commissions : %2$s) Sera envoyé %s 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 Adresse incorrecte - Buy now - Free - I have a promo code… + + + Tangem Wallet - Other payment methods - Shipping - Total - 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. - Store your crypto assets secure while keeping private keys contained in your card - Revolutionary Hardware Wallet - Up to - 3 physical cards - to one wallet - Ultra Secure Backup - A hardware wallet for your Bitcoin, Ethereum and many more currencies simultaneously – all in one card - Thousands of Currencies - Use it on the go, anywhere, anytime. No wires or batteries. Just tap the card to your phone when you need your crypto. - The Wallet for Everyone - Borrow - Buy - Exchange - Lend - Pay - Send - Store - Meet\nTangem - Exchange, buy NFT\'s, make loans and deposits in more than 100 different decentralized services - DeFi Compatible - Error: %s - There was an error. Please try again. - Give Permission - High price impact! - Swapping this amount of selected tokens will cause a significant price impact and reduce your outcome. - Insufficient funds - Not enough funds for fee in your %1$s wallet to create a transaction. Top up your %2$s wallet first. - Transaction in progress… - Waiting - Approve - Give Permission - Amount %s - Spender - Your Wallet - To continue you need to allow 1inch smart contracts to use your %s - Permit and Swap - View in Explorer - In progress - Swap - Swap - Swap of %s to - Quotes include an additional Tangem commission of %s. This helps us deliver a top-of-the-line product. - Other tokens - Choose token - Your tokens - not available - Hide - You are about to hide this token from the main screen. You can add it back anytime through the manage tokens page. - Hide %s - Hide token - %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. - Please wait for %s transaction to complete to be able to send funds - 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. - Unable to hide %s - No rate - You don\'t have any transactions yet - Failed to load transactions - Transactions - In progress… - You\'ve scanned the same card. To create a twin wallet you need to scan the card with number %d - 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. - One wallet. Two cards. - Scan the card #%s - Creating wallet - Scan the #%s twin card - Preparing card + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Tangem Twin - This action is irreversible. You will not have access to the old wallet. - Add new wallet - Are you sure you want to delete this wallet? - %d selected - An error has occurred, please scan your card to log in - This wallet has already been saved, you can add another one - Multi-currency - Wallet name - Rename Wallet - Single-currency - My Wallets - Unlock all with %s + + + + + + + + + + + + Créer PayString - Explorer l\'adresse - Network is unreachable - Blockchain is unreachable. Try later + + + Solde est en cours de téléchargement… - Scan the card + Transaction en cours… Solde confirmé - Actions - Buy + + Créer un portefeuille - Sell + Envoyer - Exchange - Do you want to buy or sell crypto? - Requesting to sign a message.\n\n%s - Dapp %1$s, requesting to\nsign BNB transaction.\n\n%2$s - Trade order for %1$s\nPrice: %2$s\nAmount to receive: %3$s\nAmount to pay: %4$s - Transaction details:\nFrom: %1$s\nTo: %2$s\nAmount: %3$s - Clipboard contain WalletConnect code. Use copied value or scan QR-code - Request to create transaction for %1$s\n%2$s\n\nAmount: %3$s\nFee: %4$s\nTotal: %5$s\nBalance: %6$s - Can\'t send transaction. Not enough funds. - Failed to establish WalletConnect session. Please, try again later. - Not all tokens were added to your list. Please add them first and try again. Missing tokens:\n - Failed to establish WalletConnect session: timeout error. Please, try again later. - Session request contains unsupported blockchains for WalletConnect connection. Unsupported blockchains:\n - Connection with this Dapp cannot be established due to its technical implementation. - We\'ve encountered unknown error. Error code: %d. If the problem persists — feel free to contact our support - %s network not found. Please, add it first and try again. - No opened WalletConnect sessions - Ooops. No Sessions. - Open session - Paste from clipboard - Request to start a session for\n%1$s\n\nNETWORK: %2$s\n\nURL: %3$s - The operation couldn\'t be completed.\n\nYou have already established a WalletConnect session with this parameters. - Scan new code - This card can\'t be used to establish WalletConnect session - This network is not supported. Please select another network. - Select network - WalletConnect Sessions - Connect to Dapps + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WalletConnect Créer PayString $payid.tangem.com @@ -440,11 +475,11 @@ Mauvaise réponse lors de la création de PayString Dénomination PayString 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. - %s network + Carte vide Créez un portefeuille pour commencer à utiliser votre carte Tangem - Create twin wallet - Generate wallet keys on both cards to start using your Twins + + Compte n\'est pas créé Cette carte n\'est pas prise en charge 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 @@ -455,28 +490,28 @@ Envoi jusqu\'à %s Tangem - Can be better - Learn more + + Ok, je l\'ai! - Really cool! - %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. - This card might be a production sample or counterfeit - Authenticity check failed - Important security information %s - There are only %s signatures available on this card. You must withdraw all of your funds. - How do you like Tangem? - One question - This card has signed transactions in the past - This is a Testnet card. Don\'t accept it as a payment. This card must only be used for testing and development purposes. - Discard - You have an interrupted backup. Do you want to resume? - Yes, resume - Discard - If you will discard the backup now, then you will have to reset the cards to factory settings to start over again - Resume backup - This is an irreversible action - Log in with %s - Scan card - Use %s or scan a card to access the app - Welcome back! + + + + + + + + + + + + + + + + + + + + + diff --git a/core/res/src/main/res/values-it/strings.xml b/core/res/src/main/res/values-it/strings.xml index 53671cbc35..9c509aec19 100644 --- a/core/res/src/main/res/values-it/strings.xml +++ b/core/res/src/main/res/values-it/strings.xml @@ -1,283 +1,313 @@ - Add custom token - Send only %1$s (%2$s) from %3$s network to this address. Using other tokens and networks may result in loss of funds. - Request support - Send feedback + + + + 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. - This feature is disabled in Demo mode - You are currently running in Demo mode. All funds are not real. + + La carta che hai scansionato è una carta di sviluppo. Non utilizzarla come strumento di pagamento - Reason: %s - Can\'t send a transaction - Note that tokens on different networks have different addresses. Double check that your address matches the network when you transfer funds. - Tokens in Solana network are not supported by this card due to firmware limitation. - 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. - Are you having difficulty scanning your card? + + + + + + Questa carta non è progettata per funzionare con Tangem - Go to settings to enable biometric authentication in the Tangem App - Enable biometric authentication - This will delete all the saved wallet access codes. Any further operation with the wallet will require submitting the access code. - Removing the saved card deletes all the saved wallets and their access codes from the app. - Save Access Code - Biometric authentication will be requested instead of the access code for interactions with your card. - Keep the wallet in the app - 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. - App Settings - Please scan the card - Please try again in 30 seconds or scan the card - Too many attempts - Reset - Are you sure you want to do this? - Change Access Code - Access code will be changed on this card only - Reset to Factory Settings - Security Mode - Card Settings + + + + + + + + + + + + + + + + + + + + + + + Tangem Bot - Support + + + + + Accetta - Add - Attention + + Saldo: %s - biometric authentication - biometrics + + Non hai fornito l\'accesso alla tua videocamera, modifica le tue impostazioni sulla privacy Annulla - Close - Continue - Copy - Create + + + + Rimuovere - Disconnect + + Fatto - Enable + + Errore - No + + OK - Primary Card - Reject - Retry + + + Mantieni le modifiche - Search - The server is not available, please try again later - Share - Sign - Sign and send - Start - Submit + + + + + + + Con successo - terms and conditions - I understand + + Avviso - Yes - Contract address copied! - Available networks - Contract address - Contract address is invalid - Derivation path is invalid - Please select the network - Required field - Decimal number must be a valid integer, no higher than %d - Decimals - Default - BIP44 coin type - E.g. USD Coin - Name - Not selected - Network - E.g. USDC - Token symbol - This token/network has already been added to your list - Note that tokens can be created by anyone. Be aware of adding scam tokens, they can cost nothing. - Chat + + + + + + + + + + + + + + + + + + + + + Codice di accesso Prima di scansionare la carta sarà necessario inserire il codice di accesso corretto Mantenimento della carta 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. Password Dovrai inserire una password prima di eseguire qualsiasi comando che modifichi lo stato della carta. - Referral program - Privacy policy + + Hash %s - Card terms of use + ID carta - Link More Cards + Valuta dell\'applicazione Emittente - Send Feedback + Firmato Requisiti - Check your internet connection or switch to a different network + Termini del servizio - Oops, the current version of the application is not ready to work with this card, please check for updates. - You have used a card from another wallet. Tap the card associated with this wallet - You Receive - You Send - The following information is optional. You can erase it if you don\'t want to share it. - Tell us what functions you are missing, and we will try to help you. - Please tell us what card do you have - Hi support team, - Please tell us more about your issue. Every small detail can help. - My suggestions - Can\'t scan a card - Feedback - Tangem feedback - Can\'t send a transaction - Order + + + + + + + + + + + + + + + Avvicina per modificare il codice di accesso Avvicina per modificare la password - To create the wallet tap the card as shown above and do not remove until the end of the operation + Avvicina per scansionare Avvicina per firmare Avvicina la carta - Internal error: wallet manager not found - Manage tokens - To protect your assets, we advise you to carry out this procedure - Your wallet has not been backed up - Total balance - The amount does not include some of your funds - To access all the networks you need to scan the card - Scan your card - Tokens - You have to set up a single access code to protect all your wallets - Protect - You can set up an individual access code on each card later - Personalize - The access code can be restored with a linked card, don\'t keep all cards in one place - Restore - Choose any word, phrase, or number you want as your access code - Create Access Code - Re-enter your Access Code - Access code must be at least 4 characters long - Entered access code didn\'t match the initial access code - 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? - The backup process is partly complete. You can\'t exit it now. - Balance - Add a backup card - Scan the card #%d - Backup now - Scan the primary card - Claim - Continue to my wallet - Finalize the backup process - Verify via Utorg - Refresh - Set PIN code - Receive crypto - Register - Scan primary card - Skip for later - How does it work? - Let\'s generate all the keys on your card and create a secure wallet - Create wallet - Create a wallet - Your card is activated and ready to be used - Success! - In this case, you will need to start from the beginning. - Do you want to exit the activation process? - Getting started - Verify your identity - KYC - Pin code - Connect - Creating a backup - Tap the SaltPay card - To start the backup process you have to add the Tangem card as your backup - Finalize the backup process by creating an access code - Tap the Tangem card - No backup card - Backup card ready - Prepare the SaltPay card - To get started, simply claim wxDAI to your wallet - It will take a few seconds - Please check your email for further instructions - To start using your card you have to pass the KYC process - 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. - To start the backup process add up to two backup cards. - You can add one more card or finalize the backup process - Set up a 4-digit code.\nIt will be used for payments. - Connect your card to the decentralized payment system - Prepare the backup card with number %s - Prepare the primary card - Prepare the primary card with number %s - Congratulations! Your first payment crypto card has been activated! - Your wallet card is configured and ready for use. - Max number of cards added. Finalize the backup process. - Activating card - Backup card #%d - Claim %s - Claiming - Something went wrong - Verify your identity - KYC is in progress - No backup cards - One backup card added - PIN Code - Connect your card - Prepare your card - Two backup cards added - To get started, simply top up the wallet with any amount - To get started, simply top up the wallet with more than %1$s %2$s - Buy crypto - Show the wallet\'s address - Top up your wallet - The twinning process is partly complete. You can\'t exit it now. - If the process of creating the wallet gets interrupted in any way, you\'ll have to start over - You can backup your keys up to two other blank Tangem Wallet cards. - Access code can be restored with one of backup cards. - All the backup cards can be used as full-functional with the identical keys. - You will be able to set an access code to protect your wallets. - Backup wallet - Access code restore - Identical cards - Access code - Participate - Failed to load the information about the referral program. Please try again later. - Failed to load the information about the referral program. Error code: %s. Please try again later. - Your participation request could not be processed. Error code: %s. Please try again later. If the problem persists — feel free to contact our support. - Your friends bought - Will get - for each wallet bought by your friend on your %1$s network address%2$s - You - Will get a - when buying a card on tangem.com - %s discount - Your friend - Personal code copied! - Your personal code - Buy Tangem Wallet with discount!\n%s - Refer your friends to Tangem - You\'ve accepted - By tapping this button you accept - of the referral program - Please hold the card until the operation complete - Reset the Card - I understand that after performing this action, I will no longer have access to the current wallet - 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. - 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. - Do you have a bank card of another country or a UnionPay card? - Russian bank cards are not accepted at the moment - Tap the card with the visa logo - Attention - Please contact support - No funds for activation - Such a PIN can be brute-forced easily - Four identical digits isn\'t safe - Log into the app and check your balance without scanning the card - Access the app - Allow to use biometrics - Biometrics will be requested instead of the access code for interactions with your wallet - Access code - It looks like you have biometric authentication disabled, it is necessary to save wallets - Enable biometric authorization - Would you like to use biometrics? - Note that making a transaction with your funds will still require your card - Scan card failed. Try again - Scan Card - 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. - Get your card ready! - Search tokens + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Importo Indirizzo Indirizzo o PayString @@ -285,8 +315,8 @@ PayString non registrato Richiesta PayString fallita PayString non supportato dalla blockchain - Invalid Tag. It won\'t be added to the transaction. - Invalid Memo. It won\'t be added to the transaction. + + Tag Memo Includi commissione @@ -297,141 +327,146 @@ Importo totale Costi della rete Invia - Sending %s + Totale Sarà inviato %1$s e %2$s ≈ %1$s (inc. commissione: %2$s) Sarà inviato %s La transazione è stata firmata con successo e inviata al nodo blockchain. Il saldo del portafoglio verrà aggiornato dopo un po\' di tempo Indirizzo non valido - Buy now - Free - I have a promo code… + + + Tangem Wallet - Other payment methods - Shipping - Total - 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. - Store your crypto assets secure while keeping private keys contained in your card - Revolutionary Hardware Wallet - Up to - 3 physical cards - to one wallet - Ultra Secure Backup - A hardware wallet for your Bitcoin, Ethereum and many more currencies simultaneously – all in one card - Thousands of Currencies - Use it on the go, anywhere, anytime. No wires or batteries. Just tap the card to your phone when you need your crypto. - The Wallet for Everyone - Borrow - Buy - Exchange - Lend - Pay - Send - Store - Meet\nTangem - Exchange, buy NFT\'s, make loans and deposits in more than 100 different decentralized services - DeFi Compatible - Error: %s - There was an error. Please try again. - Give Permission - High price impact! - Swapping this amount of selected tokens will cause a significant price impact and reduce your outcome. - Insufficient funds - Not enough funds for fee in your %1$s wallet to create a transaction. Top up your %2$s wallet first. - Transaction in progress… - Waiting - Approve - Give Permission - Amount %s - Spender - Your Wallet - To continue you need to allow 1inch smart contracts to use your %s - Permit and Swap - View in Explorer - In progress - Swap - Swap - Swap of %s to - Quotes include an additional Tangem commission of %s. This helps us deliver a top-of-the-line product. - Other tokens - Choose token - Your tokens - not available - Hide - You are about to hide this token from the main screen. You can add it back anytime through the manage tokens page. - Hide %s - Hide token - %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. - Please wait for %s transaction to complete to be able to send funds - 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. - Unable to hide %s - No rate - You don\'t have any transactions yet - Failed to load transactions - Transactions - In progress… - You\'ve scanned the same card. To create a twin wallet you need to scan the card with number %d - 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. - One wallet. Two cards. - Scan the card #%s - Creating wallet - Scan the #%s twin card - Preparing card + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Tangem Twin - This action is irreversible. You will not have access to the old wallet. - Add new wallet - Are you sure you want to delete this wallet? - %d selected - An error has occurred, please scan your card to log in - This wallet has already been saved, you can add another one - Multi-currency - Wallet name - Rename Wallet - Single-currency - My Wallets - Unlock all with %s + + + + + + + + + + + + Crea PayString - Cerca indirizzo - Network is unreachable - Blockchain is unreachable. Try later + + + Il saldo sta per essere caricato… - Scan the card + Transazione in corso… Saldo verificato - Actions - Buy + + Crea portafoglio - Sell + Invia - Exchange - Do you want to buy or sell crypto? - Requesting to sign a message.\n\n%s - Dapp %1$s, requesting to\nsign BNB transaction.\n\n%2$s - Trade order for %1$s\nPrice: %2$s\nAmount to receive: %3$s\nAmount to pay: %4$s - Transaction details:\nFrom: %1$s\nTo: %2$s\nAmount: %3$s - Clipboard contain WalletConnect code. Use copied value or scan QR-code - Request to create transaction for %1$s\n%2$s\n\nAmount: %3$s\nFee: %4$s\nTotal: %5$s\nBalance: %6$s - Can\'t send transaction. Not enough funds. - Failed to establish WalletConnect session. Please, try again later. - Not all tokens were added to your list. Please add them first and try again. Missing tokens:\n - Failed to establish WalletConnect session: timeout error. Please, try again later. - Session request contains unsupported blockchains for WalletConnect connection. Unsupported blockchains:\n - Connection with this Dapp cannot be established due to its technical implementation. - We\'ve encountered unknown error. Error code: %d. If the problem persists — feel free to contact our support - %s network not found. Please, add it first and try again. - No opened WalletConnect sessions - Ooops. No Sessions. - Open session - Paste from clipboard - Request to start a session for\n%1$s\n\nNETWORK: %2$s\n\nURL: %3$s - The operation couldn\'t be completed.\n\nYou have already established a WalletConnect session with this parameters. - Scan new code - This card can\'t be used to establish WalletConnect session - This network is not supported. Please select another network. - Select network - WalletConnect Sessions - Connect to Dapps + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WalletConnect Crea PayString $payid.tangem.com @@ -440,11 +475,11 @@ Errore di risposta durante la creazione del PayString Nome PayString Il tuo PayString – informazioni per te uniche, come il tuo numero di telefono, indirizzo email o ABN. - %s network + Carta vuota Crea un portafoglio per iniziare ad utilizzare la tua carta Tangem - Create twin wallet - Generate wallet keys on both cards to start using your Twins + + Conto non creato Questa carta non è supportata 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 @@ -455,28 +490,28 @@ Inviau su %s Tangem - Can be better - Learn more + + Ok, ho capito! - Really cool! - %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. - This card might be a production sample or counterfeit - Authenticity check failed - Important security information %s - There are only %s signatures available on this card. You must withdraw all of your funds. - How do you like Tangem? - One question - This card has signed transactions in the past - This is a Testnet card. Don\'t accept it as a payment. This card must only be used for testing and development purposes. - Discard - You have an interrupted backup. Do you want to resume? - Yes, resume - Discard - If you will discard the backup now, then you will have to reset the cards to factory settings to start over again - Resume backup - This is an irreversible action - Log in with %s - Scan card - Use %s or scan a card to access the app - Welcome back! + + + + + + + + + + + + + + + + + + + + + diff --git a/core/res/src/main/res/values-ru/strings.xml b/core/res/src/main/res/values-ru/strings.xml index f11b1ab441..98626211ff 100644 --- a/core/res/src/main/res/values-ru/strings.xml +++ b/core/res/src/main/res/values-ru/strings.xml @@ -27,6 +27,10 @@ Пожалуйста, отсканируйте карту Пожалуйста, попробуйте снова через 30 секунд или отсканируйте карту Слишком много попыток + Отключите эту опцию, если не хотите, чтобы эта карта использовалась для сброса кодов доступа на другие карты этого кошелька. Обратите внимание, сброс кода также не будет доступен на этой карте. + Использовать эту карту для сброса кода доступа на других картах в этом кошельке + Отключить возможность сброса кода доступа на этой карте или других картах этого кошелька + Восстановление кода доступа Сбросить Вы уверены, что хотите это сделать? Смена кода доступа @@ -36,6 +40,10 @@ Настройки карты Tangem Bot Чат + Оценить оператора + Отправить логи + Пожалуйста, выберите действие + Пожалуйста, оцените работу оператора Принять Добавить Внимание @@ -49,10 +57,13 @@ Копировать Создать Удалить + Отключено Отключить Готово Включить + Включено Ошибка + Импортировать Нет Ок Основная карта @@ -173,11 +184,15 @@ Давайте сгенерируем все ключи на вашей карте и создадим безопасный кошелек Создать кошелек Создать кошелек + Другие опции + Ваши ключи будут надежно сгенерированы внутри карты. Никакой seed-фразы, а это значит, что никто не может экспортировать или украсть ее. + Cоздавайте ключи приватно Ваша карта активирована и готова к использованию Успешно! В этом случае вам будет необходимо начать процесс заново. Вы хотите выйти из процесса активации? Подготовка + Другой кошелек уже был создан на карте, которую вы пытаетесь добавить. Хотите сбросить его и использовать карту для бэкапа? Подтвердите свою личность Верификация клиента Код доступа @@ -190,6 +205,20 @@ Бэкап карта не добавлена Бэкап карта создана Приготовьте SaltPay карту + Читать про секретную фразу + Запишите эти 12 слов в порядке, указанном ниже, и сохраните их в надежном месте. + Ваша секретная фраза + Чтобы импортировать кошелек, введите секретную фразу в поле ниже + Cоздать секретную фразу + Импорт кошелька + Секретная фраза — это набор слов, который дает возможность восстановить кошелек. В отличие от ключей, сгенерированных картой, seed-фраза не защищена и может быть скопирована и украдена. Используйте этот вариант на свой страх и риск. + Использовать секретную фразу + Неверная секретная фраза. Пожалуйста, проверьте порядок слов. + Неверная секретная фраза. Пожалуйста, проверьте орфографию. + Устаревший + Мы не рекомендуем хранить секретную фразу в виде скриншота из-за высокого риска утери или взлома + Чтобы проверить, правильно ли вы записали секретную фразу, введите 2-е, 7-е и 11-е слова + Итак, проверим Для начала работы просто запросите начисление wxDAI на свой кошелек Это займет несколько секунд Более подробная информация отправлена на ваш адрес электронной почты. @@ -359,6 +388,12 @@ Выберите токен Ваши токены не доступен + + %d токен + %d токена + %d токенов + %d токенов + Скрыть Вы скрываете токен с главного экрана, но в любой момент сможете добавить его обратно через страницу управления токенами. Скрыть %s diff --git a/core/res/src/main/res/values-zh-rTW/strings.xml b/core/res/src/main/res/values-zh-rTW/strings.xml index 4758954e64..5a67343132 100644 --- a/core/res/src/main/res/values-zh-rTW/strings.xml +++ b/core/res/src/main/res/values-zh-rTW/strings.xml @@ -27,6 +27,10 @@ 請掃描卡片 請30秒後重試或刷卡 嘗試次數過多 + 您將無法使用此卡重置訪問密碼 + 您將能夠使用此卡重置訪問密碼 + 啟用使用此卡重置您的錢包訪問密碼 + 恢復訪問密碼 重置 您確定要這麼做嗎? 更改訪問密碼 @@ -36,6 +40,10 @@ 卡片設置 Tangem 機器人 支援 + + + + 接受 添加 注意 @@ -49,10 +57,13 @@ 複製 創造 刪除 + 禁用 斷開連接 完成 允許 + 啟用 錯誤 + 導入 OK 主卡片 @@ -107,7 +118,7 @@ 發行人 發送反饋 簽署 - 細節 + 更多 檢查您的網路連接或切換到其他網絡 服務條款 糟糕,當前版本的應用程序無法使用此卡,請檢查更新 @@ -118,7 +129,7 @@ 告訴我們您缺少哪些功能,我們會盡力幫助您 請告訴我們你有什麼卡 嗨! 幫助團隊, - 請告訴我們更多有關您的問題的信息。提供任何小細節都會帶來幫助 + 請告訴我們更多有關您的問題。提供任何細節都會帶來幫助 我的建議 無法掃卡 反饋 @@ -132,6 +143,7 @@ 點擊簽名 點按卡片 內部錯誤:找不到錢包管理器 + 您已更新生物識別登入,掃描您的卡進入 管理代幣 為了保護您的資產,我們建議您執行此程序 您的錢包尚未備份 @@ -172,11 +184,15 @@ 讓我們生成您卡上的所有密鑰並創建一個安全的錢包 創建錢包 創造錢包 + 其他選項 + 您的密鑰將在卡內安全生成。沒有種子短語,這意味著沒有人可以導出或竊取它。 + 私下生成密鑰 您的卡已激活並可以使用 成功! 這此情況,您必須要重新開始 您想要離開啟用程序嗎? 開始 + 驗證身分 KYC PIN 碼 @@ -189,6 +205,20 @@ 沒有備份卡片 備份卡片已準備完成 準備SaltPay卡 + 閱讀更多關於助記詞的訊息 + 按照下面給出的順序寫下這 12 個單詞,並將它們存放在一個隱密、安全的地方 + 您的助記詞 + 要導入您的錢包,請在下面的字段中輸入您的秘密助記詞 + 生成助記詞 + 導入錢包 + 註記詞是一系列能夠恢復錢包的單詞。與卡片生成的密鑰不同,助記詞不受保護,可以被複製和竊取。使用此選項需要您自擔風險。 + 使用助記詞 + 無效的助記詞。請檢查單詞順序。 + 無效的助記詞。請檢查您的拼寫。 + Legacy + 由於丟失或被駭客入侵的風險很高,我們不建議將密碼截圖 + 為了檢查您是否正確輸入了助記詞,請輸入第 2、7 和 11 個單詞 + 那麼,讓我們檢查一下 要開始,只需將 wxDAI 獲取到您的錢包 這會花上幾秒 請查看Email已獲得更多指示 @@ -224,9 +254,9 @@ 充值你的錢包 結對過程已部分完成。你現在不能退出 如果創建錢包的過程以任何方式中斷,您將得重新開始 - 您最多可以備份另外兩張空白的 Tangem 錢包卡。 + 您最多可以額外備份兩張空白的 Tangem冷錢包 可以使用其中一張備用卡恢復訪問密碼 - 所有備用卡都可以使用相同的密鑰作為全功能使用。 + 所有備用卡都可以使用相同的密鑰作為全功能使用 您將能夠設置訪問密碼來保護您的錢包 備援錢包 訪問密碼還原 @@ -238,7 +268,7 @@ 無法處理您的請求。原因:%s。請稍後再試。無如果問題仍然存在—請隨時聯繫服務人員 您的朋友買 會得到 - 對於你的朋友在你的 %1$s 網絡地址%2$s 上購買的每個錢包 + 對於你的朋友在你的 %1$s 網絡地址%2$s上購買的每個錢包 得到 當在 tangem.com購買卡片 @@ -335,11 +365,11 @@ 錯誤: %s 有錯誤。請再試一遍 賦予權限 - High price impact! - Swapping this amount of selected tokens will cause a significant price impact and reduce your outcome. + 價格影響高! + 在此代幣交換的數量將對價格產生重大影響,並降低您收到的數量 餘額不足 您的 %1$s 錢包中沒有足夠的資金來創建交易。首先為您的 %2$s 錢包充值 - 交易進行中… + 交易進行中... 等待中 允許 賦予權限 @@ -351,13 +381,16 @@ 在瀏覽器中查看 進行中 交換 - Swap + 交易 交易 %s 至 - Quotes include an additional Tangem commission of %s. This helps us deliver a top-of-the-line product. + 此外,報價包括%s的 Tangem 費用。這有助於我們提供一流的產品 其他代幣 選擇代幣 您的代幣 無法使用 + + %d 代幣 + 隱藏 您即將在主屏幕上隱藏此代幣。您可以隨時通過管理代幣頁面將其添加回來。 隱藏 %s @@ -383,7 +416,7 @@ 添加新錢包 您確定要刪除此錢包? 已選擇 %d - An error has occurred, please scan your card to log in + 發生錯誤,請掃卡登錄 此錢包已保存,您可以再添加一個 多幣種 錢包名稱 @@ -418,9 +451,10 @@ 無法建立 WalletConnect 連接:超時錯誤。請稍後再試 會話請求包含不支持 WalletConnect 連接的區塊鏈。不支持的區塊鏈:\n 由於技術問題,無法與此 Dapp 建立連接 + 在 Tangem App 中選擇了錯誤的卡 我們遇到了未知錯誤。錯誤代碼:%d。如果問題仍然存在-請隨時聯繫我們的支持人員 沒有 %s 網路,請先加入後再試一次 - 沒有打開中的WalletConnect連接 + 沒有已連結的WalletConnect Ooops, 沒有連接 打開連接 從剪貼板貼上 @@ -462,7 +496,7 @@ %1$s 網絡有一個 Existential Deposit 的概念。如果您的帳戶低於 %2$s,它將被停用,所有剩餘資金將被銷毀 此卡可能是生產樣本或偽造品 認證檢查失敗 - 重要安全信息%s + 重要安全信息 %s 此卡上只有 %s 個簽名可用。您必須提取所有資金 你喜歡 Tangem 嗎? 一個問題 diff --git a/core/res/src/main/res/values/strings.xml b/core/res/src/main/res/values/strings.xml index e0e0ef5d5b..875d017a66 100644 --- a/core/res/src/main/res/values/strings.xml +++ b/core/res/src/main/res/values/strings.xml @@ -27,6 +27,10 @@ Please scan the card Please try again in 30 seconds or scan the card Too many attempts + 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. + Allows you to use this card to reset access code on other cards in this wallet + Disable the ability to reset access code on this card or other cards in this wallet + Access code recovery Reset Are you sure you want to do this? Change Access Code @@ -36,6 +40,10 @@ Card Settings Tangem Bot Support + Rate operator + Send logs + Please select an action + Please, rate the work of the operator Accept Add Attention @@ -49,10 +57,13 @@ Copy Create Delete + Disabled Disconnect Done Enable + Enabled Error + Import No OK Primary Card @@ -173,11 +184,15 @@ Let\'s generate all the keys on your card and create a secure wallet Create wallet Create a wallet + Other options + Your keys will be securely generated inside the card. There is no seed phrase, which means nobody can export or steal it. + Generate keys privately Your card is activated and ready to be used Success! In this case, you will need to start from the beginning. Do you want to exit the activation process? Getting started + 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? Verify your identity KYC Pin code @@ -190,6 +205,20 @@ No backup card Backup card ready Prepare the SaltPay card + Read more about seed phrases + Write these 12 words down in the order given below and store them in a safe and secret place. + Your secret phrase + To import your wallet, enter your secret phrase in the field below + Generate seed phrase + Import wallet + 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. + Use seed phrase + Invalid secret phrase. Please check words order. + Invalid secret phrase. Please check your spelling. + Legacy + We do not recommend storing the passphrase as a screenshot due to the high risk of loss or hacking + To check whether you’ve written down your secret phrase correctly, please enter the 2nd, 7th and 11th words + So, let’s check To get started, simply claim wxDAI to your wallet It will take a few seconds Please check your email for further instructions @@ -354,11 +383,15 @@ Swap Swap Swap of %s to - Quotes include an additional Tangem commission of %s. This helps us deliver a top-of-the-line product. + Quotes include an additional Tangem commission of %s. This helps us deliver a top-of-the-line product Other tokens Choose token Your tokens not available + + %d token + %d tokens + Hide You are about to hide this token from the main screen. You can add it back anytime through the manage tokens page. Hide %s diff --git a/core/ui/src/main/java/com/tangem/core/ui/res/TangemDimens.kt b/core/ui/src/main/java/com/tangem/core/ui/res/TangemDimens.kt index 256d81f8e8..96c0d99ffc 100644 --- a/core/ui/src/main/java/com/tangem/core/ui/res/TangemDimens.kt +++ b/core/ui/src/main/java/com/tangem/core/ui/res/TangemDimens.kt @@ -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,