diff --git a/app/src/main/java/com/tangem/tap/common/DialogManager.kt b/app/src/main/java/com/tangem/tap/common/DialogManager.kt index d1bb43ad95..f25d1ddf4c 100644 --- a/app/src/main/java/com/tangem/tap/common/DialogManager.kt +++ b/app/src/main/java/com/tangem/tap/common/DialogManager.kt @@ -77,7 +77,7 @@ class DialogManager : StoreSubscriber { is WalletConnectDialog.UnsupportedCard -> SimpleAlertDialog.create( titleRes = R.string.wallet_connect_title, - messageRes = R.string.wallet_connect_scanner_error_no_ethereum_wallet, + messageRes = R.string.wallet_connect_scanner_error_not_valid_card, context = context, ) is WalletConnectDialog.AddNetwork -> diff --git a/app/src/main/java/com/tangem/tap/domain/configurable/warningMessage/WarningMessagesManager.kt b/app/src/main/java/com/tangem/tap/domain/configurable/warningMessage/WarningMessagesManager.kt index 683302ba73..f75a4922ce 100644 --- a/app/src/main/java/com/tangem/tap/domain/configurable/warningMessage/WarningMessagesManager.kt +++ b/app/src/main/java/com/tangem/tap/domain/configurable/warningMessage/WarningMessagesManager.kt @@ -77,7 +77,7 @@ class WarningMessagesManager { priority = WarningMessage.Priority.Critical, listOf(WarningMessage.Location.MainScreen), null, - R.string.alert_title, + R.string.common_warning, R.string.alert_developer_card, WarningMessage.Origin.Local, ) @@ -89,7 +89,7 @@ class WarningMessagesManager { priority = WarningMessage.Priority.Info, listOf(WarningMessage.Location.MainScreen), null, - R.string.alert_title, + R.string.common_warning, R.string.alert_card_signed_transactions, WarningMessage.Origin.Local, ) @@ -142,7 +142,7 @@ class WarningMessagesManager { priority = WarningMessage.Priority.Critical, listOf(WarningMessage.Location.MainScreen), blockchains = null, - titleResId = R.string.alert_title, + titleResId = R.string.common_warning, messageResId = R.string.warning_low_signatures_format, origin = WarningMessage.Origin.Local, messageFormatArg = remainingSignatures.toString(), @@ -155,7 +155,7 @@ class WarningMessagesManager { priority = WarningMessage.Priority.Critical, listOf(WarningMessage.Location.MainScreen, WarningMessage.Location.SendScreen), null, - R.string.alert_title, + R.string.common_warning, R.string.warning_testnet_card_message, WarningMessage.Origin.Local, ) @@ -167,7 +167,7 @@ class WarningMessagesManager { priority = WarningMessage.Priority.Critical, listOf(WarningMessage.Location.MainScreen), null, - R.string.alert_title, + R.string.common_warning, R.string.alert_demo_message, WarningMessage.Origin.Local, ) diff --git a/app/src/main/java/com/tangem/tap/features/onboarding/products/wallet/ui/dialogs/AddMoreBackupCardsDialog.kt b/app/src/main/java/com/tangem/tap/features/onboarding/products/wallet/ui/dialogs/AddMoreBackupCardsDialog.kt index 92d0c3e0c1..d98e9907b9 100644 --- a/app/src/main/java/com/tangem/tap/features/onboarding/products/wallet/ui/dialogs/AddMoreBackupCardsDialog.kt +++ b/app/src/main/java/com/tangem/tap/features/onboarding/products/wallet/ui/dialogs/AddMoreBackupCardsDialog.kt @@ -11,7 +11,7 @@ class AddMoreBackupCardsDialog { companion object { fun create(context: Context): AlertDialog { return AlertDialog.Builder(context).apply { - setTitle(R.string.alert_title) + setTitle(R.string.common_warning) setMessage(R.string.onboarding_alert_message_not_max_backup_cards_added) setPositiveButton(R.string.common_continue) { _, _ -> store.dispatch(BackupAction.ShowAccessCodeInfoScreen) diff --git a/app/src/main/java/com/tangem/tap/features/onboarding/products/wallet/ui/dialogs/BackupInProgressDialog.kt b/app/src/main/java/com/tangem/tap/features/onboarding/products/wallet/ui/dialogs/BackupInProgressDialog.kt index 9b619eef7d..e4fa7525b5 100644 --- a/app/src/main/java/com/tangem/tap/features/onboarding/products/wallet/ui/dialogs/BackupInProgressDialog.kt +++ b/app/src/main/java/com/tangem/tap/features/onboarding/products/wallet/ui/dialogs/BackupInProgressDialog.kt @@ -10,7 +10,7 @@ class BackupInProgressDialog { companion object { fun create(context: Context): AlertDialog { return AlertDialog.Builder(context).apply { - setTitle(R.string.alert_title) + setTitle(R.string.common_warning) setMessage(R.string.onboarding_backup_exit_warning) setPositiveButton(R.string.warning_button_ok) { _, _ -> store.dispatch(GlobalAction.HideDialog) diff --git a/app/src/main/java/com/tangem/tap/features/onboarding/products/wallet/ui/dialogs/UnfinishedBackupFoundDialog.kt b/app/src/main/java/com/tangem/tap/features/onboarding/products/wallet/ui/dialogs/UnfinishedBackupFoundDialog.kt index 697dc71f67..d13afaa088 100644 --- a/app/src/main/java/com/tangem/tap/features/onboarding/products/wallet/ui/dialogs/UnfinishedBackupFoundDialog.kt +++ b/app/src/main/java/com/tangem/tap/features/onboarding/products/wallet/ui/dialogs/UnfinishedBackupFoundDialog.kt @@ -12,7 +12,7 @@ class UnfinishedBackupFoundDialog { companion object { fun create(context: Context): AlertDialog { return AlertDialog.Builder(context).apply { - setTitle(R.string.alert_title) + setTitle(R.string.common_warning) setMessage(R.string.welcome_interrupted_backup_alert_message) setPositiveButton(R.string.welcome_interrupted_backup_alert_resume) { _, _ -> store.dispatch(GlobalAction.HideDialog) diff --git a/app/src/main/res/layout/dialog_wallet_trade.xml b/app/src/main/res/layout/dialog_wallet_trade.xml index 062d0286d1..cb4e47fecd 100644 --- a/app/src/main/res/layout/dialog_wallet_trade.xml +++ b/app/src/main/res/layout/dialog_wallet_trade.xml @@ -10,7 +10,7 @@ android:layout_width="match_parent" android:layout_height="56dp" android:padding="16dp" - android:text="@string/wallet_dialog_choose_trade_action" + android:text="@string/wallet_choose_trade_action" android:textColor="@color/darkGray2" android:textSize="14sp" /> diff --git a/app/src/main/res/values-de/strings.xml b/app/src/main/res/values-de/strings.xml deleted file mode 100644 index c4e3022f03..0000000000 --- a/app/src/main/res/values-de/strings.xml +++ /dev/null @@ -1,89 +0,0 @@ - - - Änderungen speichern - Warnung - Erledigt - Akzeptieren - Entfernen - - Sie haben keinen Zugang zur Kamera erteilt, bitte passen Sie Ihre Datenschutzeinstellungen an - Absenden - ein Wallet erstellen - Tangem - Verifizierte Bilanz - Die Bilanz wird aufgeladen… - Das Konto ist nicht erstellt - Laden Sie %s+ %s auf um ein Konto zu erstellen - Leere Karte - Erstellen Sie ein Wallet um die Tangem-Karte verwenden zu können - 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 - Die Transaktion läuft… - Senden - an %s - Erhalten - von %s - Adresse erkunden - PayString erstellen - PayString erstellen - PayString Name - $payid.tangem.com - PayString sind Ihre einzigartigen Identifikationsdaten wie Telefonnummer, E-Mail-Adresse oder ABN. - Fehlerantwort beim Erstellen der PayString - Diese PayString existiert bereits. Versuchen Sie mit einer anderen erneut. - Adresse oder PayString - Adresse - Absenden - Netzgebühr - Betrag - Gebühr - Gesamt - Höchstbetrag - Niedrig - Normal - Priorität - inkl. Gebühr - %s wird gesendet - %s und %s werden gesendet - Die Transaktion wurde erfolgreich signiert und an den Blockchain-Knoten gesendet. Die Walletbilanz wird aktualisiert - Details - KartenID - Emittent - Signiert - %s Hasch - App Währung - 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. - Zugangscode - Sie müssen den richtigen Zugangscode eingeben, bevor Sie die Karte scannen. - 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. - Warnung - - Diese Karte ist für die Zusammenarbeit mit Tangem nicht geeignet - Die von Ihnen gescannte Karte ist eine Entwicklungskarte. Akzeptieren Sie sie nicht als Zahlungsmittel. - Tippen um zu signieren - Tippen Sie um den Zugangscode zu ändern - Tippen Sie um den Passcode zu ändern - - - Nutzungsbedingungen - - Keine Internetverbindung - PayString wird von der Blockchain nicht unterstützt - PayString ist nicht registriert - PayString-Anfrage ist fehlgeschlagen - - Die Adresse stimmt mit der Adresse Ihrer Brieftasche überein - - Die Adresse wurde erfolgreich kopiert - - - Zuerst geben Sie die gewünschte PayString ein - - Legen Sie die Karte zum Scannen an - Legen Sie die Karte an - - ≈ %s (inkl. Gebühr: %s) - diff --git a/app/src/main/res/values-fr/strings.xml b/app/src/main/res/values-fr/strings.xml deleted file mode 100644 index 25ebbdc84a..0000000000 --- a/app/src/main/res/values-fr/strings.xml +++ /dev/null @@ -1,83 +0,0 @@ - - - - Sauvegarder les modifications - Alerte - Exécuté - J\'accepte - Supprimer - - Vous n\'avez pas octroyé l\'accès à votre caméra, veuillez modifier vos paramètres de confidentialité - Envoyer - Créer un portefeuille - Tangem - Solde confirmé - Solde est en cours de téléchargement … - Compte n\'est pas créé - Pour créer un compte, téléchargez %s+ %s - Carte vide - Créez un portefeuille pour commencer à utiliser votre carte Tangem - 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 - Transaction en cours… - Envoi - jusqu\'à %s - Réception - de %s - Explorer l\'adresse - Créer PayString - Créer PayString - Dénomination PayString - $payid.tangem.com - 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. - Mauvaise réponse lors de la création de PayString - Ce PayString existe déjà. Essayez une autre variante. - Adresse ou PayString - Adresse - Envoyer - Commissions du réseau - Somme - Commissions - Total - Somme maximale - Bas - Normal - Priorité - Inclure les commissions - Sera envoyé %s - Sera envoyé %s et %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 - Référénces - ID de la carte - Emetteur - Signé - %s hashes - Monnaie de l\'application - 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. - Code d\'accès - Vous devrez entrer le mot de passe correct avant de scanner la carte - 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. - Attention - Cette carte n\'est pas conçue pour fonctionner avec Tangem - La carte que vous avez scannée est une carte de développement. Ne l\'acceptez pas comme paiement. - Touchez pour signer - Touchez, pour modifier le code d\'accès - Touchez, pour modifier le mot de passe - - Conditions d\'utilisation - - Pas de connexion internet - PayString non pris en charge par la blockchain - PayString non enregistré - La demande de PayString a échoué - L\'adresse est la même que celle de votre portefeuille - L\'adresse a été copiée avec succès - Saisissez d\'abord le PayString requis - Posez pour scanner - Posez la carte - - ≈ %s (incl. les commissions : %s) - diff --git a/app/src/main/res/values-it/strings.xml b/app/src/main/res/values-it/strings.xml deleted file mode 100644 index 832d16e7e1..0000000000 --- a/app/src/main/res/values-it/strings.xml +++ /dev/null @@ -1,88 +0,0 @@ - - - - Mantieni le modifiche - Avviso - Fatto - Rimuovere - Non hai fornito l\'accesso alla tua videocamera, modifica le tue impostazioni sulla privacy - Invia - Crea portafoglio - Tangem - Saldo verificato - Il saldo sta per essere caricato… - Conto non creato - Scarica %s+ %s per creare un account - Carta vuota - Crea un portafoglio per iniziare ad utilizzare la tua carta Tangem - 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 - Transazione in corso… - Invia - su %s - Ricevi - da %s - Cerca indirizzo - Crea PayString - Crea PayString - Nome PayString - $payid.tangem.com - Il tuo PayString – informazioni per te uniche, come il tuo numero di telefono, indirizzo email o ABN. - Errore di risposta durante la creazione del PayString - Questo PayString esiste già. Scegline un altro. - Indirizzo o PayString - Indirizzo - Invia - Costi della rete - Importo - Commissione - Totale - Importo totale - - Insufficiente - Normale - Prioritario - Includi commissione - Sarà inviato %s - Sarà inviato %s e %s - La transazione è stata firmata con successo e inviata al nodo blockchain. Il saldo del portafoglio verrà aggiornato dopo un po\' di tempo - Requisiti - ID carta - Emittente - Firmato - Hash %s - Valuta dell\'applicazione - 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. - Codice di accesso - Prima di scansionare la carta sarà necessario inserire il codice di accesso corretto - 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. - Attenzione - Questa carta non è progettata per funzionare con Tangem - La carta che hai scansionato è una carta di sviluppo. Non utilizzarla come strumento di pagamento. - Avvicina per firmare - Avvicina per modificare il codice di accesso - Avvicina per modificare la password - - Accetta - Termini del servizio - Nessuna connessione a Internet - - PayString non supportato dalla blockchain - PayString non registrato - Richiesta PayString fallita - - L\'indirizzo corrisponde all\'indirizzo del tuo portafoglio - - L\'indirizzo è stato copiato con successo - - - Inserire prima il PayString desiderato - - Avvicina per scansionare - Avvicina la carta - - ≈ %s (inc. commissione: %s) - diff --git a/app/src/main/res/values-ru/strings_blockchain.xml b/app/src/main/res/values-ru/strings_blockchain.xml index 7378ec8c0d..68343c5dab 100644 --- a/app/src/main/res/values-ru/strings_blockchain.xml +++ b/app/src/main/res/values-ru/strings_blockchain.xml @@ -17,4 +17,6 @@ Нет, отправить все Минимальный баланс: %s Аккаунт получателя не активирован. Отправьте %s или более для активации аккаунта. + По умолчанию + Устаревший \ No newline at end of file diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml deleted file mode 100644 index ad66d064a0..0000000000 --- a/app/src/main/res/values/strings.xml +++ /dev/null @@ -1,103 +0,0 @@ - - - Tangem - - Save changes - Warning - Done - Accept - Delete - %s - - You have not given access to your camera, please adjust your privacy settings - - Send - Create wallet - Tangem - - Verified Balance - Balance is loading… - - Account is not created - Load %s+ %s to create account - Empty card - Create wallet to start using Tangem card - This card is not supported - Your Tangem card was made to work with a different application. Please see the name and instructions on your card, and install the correct app - - Transaction is in progress… - to %s - from %s - Receiving - Sending - - Explore address - Create PayString - - Create PayString - PayString name - $payid.tangem.com - Your PayString is information unique to you, like your phone number, email or ABN. - Error response while creating PayString - This PayString already exists. Try a different one. - - Address or PayString - Address - Send - Network fee - Amount - Fee - Total - Maximum amount - Low - Normal - Priority - Include fee - %s will be sent - %s and %s will be sent - Transaction has been successfully signed and sent to the blockchain node. Wallet balance will be updated in a while - - Details - Card ID - Issuer - Signed - %s hashes - App Currency - Long Tap - This mechanism protects against proximity attacks on a card. It will enforce a delay between reception and execution of a command. - Passcode - Before execution any command entailing a change of the card state you will have to enter the passcode. - Access code - You will have to submit the correct access code before scanning the card - - This card has been already topped up and signed transactions in the past. Consider immediate withdrawal of all funds if you have received this card from an untrusted source. If it\'s your card, there is nothing to worry about. - Warning - This card is not designed to work with this app - The card you scanned is a development card. Don\'t accept it as a payment. - - Tap to sign - To create wallet, connect your phone and the card exactly as it shown above - To change the access code, connect your phone and the card exactly as it shown above - To change the passcode, connect your phone and the card exactly as it shown above - - - Terms of Service - - No internet connection - - PayString unsupported by blockchain - PayString not registered - PayString request failed - - Address is the same as wallet address - - Address was copied to clipboard - - - Enter desired PayString first - - Tap to scan - Tap the card - - ≈ %s (inc. fee: %s) - diff --git a/app/src/main/res/values/strings_blockchain.xml b/app/src/main/res/values/strings_blockchain.xml index a8875b9313..40c996a5a3 100644 --- a/app/src/main/res/values/strings_blockchain.xml +++ b/app/src/main/res/values/strings_blockchain.xml @@ -17,4 +17,6 @@ No, send all Minimum balance is %s Destination account is not active. Send %s or more to activate the account. + Default + Legacy \ No newline at end of file diff --git a/app/src/main/res/values/strings_untranslated.xml b/app/src/main/res/values/strings_untranslated.xml deleted file mode 100644 index ba3342790f..0000000000 --- a/app/src/main/res/values/strings_untranslated.xml +++ /dev/null @@ -1,215 +0,0 @@ - - Scan card failed. Try again - - Buy - Sell - Exchange - Default - Legacy - - Create twin wallet - Generate wallet keys on both cards to start using your Twins - - One wallet. Two cards. - 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. - - Card terms of use - - Tangem Twin - This action is irreversible. You will not have access to the old wallet. - Scan the #%s twin card - Preparing card - Creating wallet - Scan the card #%s - You\'ve scanned same card. To create twin wallet you need to scan card with number %d - - //Common - Start - Add - Search - - Send Feedback - Can\'t send a transaction - Reason: %s - Are you having difficulty scanning your card? - I\'m okay - Request support - Send feedback - Really cool! - Can be better - One question - How do you like Tangem? - - //Manage tokens - - Add Token - - //Details - - Please wait for %s transaction to complete to be able to send funds - - Authenticity check failed - This card might be a production sample or counterfeit - - - Important security information \u26A0 - This card has signed transactions in the past - Learn more - 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. - - There are only %s signatures available on this card. You must withdraw all of your funds. - - //Wallet Connect - Wallet Connect Sessions - Ooops. No Sessions. - No opened WalletConnect sessions - Open session - - Request to create transaction for %s\n%s\n\nAmount: %s\nFee: %s\nTotal: %s\nBalance: %s - - Can\'t send transaction. Not enough funds. - - Request to start a session for\n%s\n\nNETWORK: %s\n\nURL: %s - - Requesting to sign a message.\n\n%s - - - Disconnect - Sign - Sign and send - Reject - - Clipboard contain WalletConnect code. Use copied value or scan QR-code - Paste from clipboard - Scan new code - This card can\'t be used to establish WalletConnect session - The operation couldn\'t be completed. \n\nYou have already established a WalletConnect session with this parameters. - Failed to establish WalletConnect session: timeout error. Please, try again later. - - This is a Testnet card. Don\'t accept it as a payment. This card must only be used for testing and development purposes. - - - Do you want to buy or sell crypto? - - Oops, the current version of the application is not ready to work with this card, please check for updates. - - - - Activating card - How it works? - Receive crypto - - Create a wallet - Let\'s generate all the keys on your card and create a secure wallet - Create wallet - - Top up your wallet - To get started, simply top up the wallet with any amount - To get started, simply top up the wallet with more than %s %s - Buy crypto - Show the wallet\'s address - - Success! - Your card is activated and ready to be used - Balance - Send only %s (%s) to this address. Using other tokens and networks may result in loss of funds. - Send only %s (%s) from %s network to this address. Using other tokens and networks may result in loss of funds. - - If the process of creating the wallet gets interrupted in any way, you\'ll have to start over. - The twinning process is partly complete. You can\'t exit it now. - - - Blockchain is unreachable. Try later - - Ok, Got it! - - Success! - Getting started - - Backup now - Skip for later - Finalize the backup process - Add backup card - Scan the card #%d - Scan primary card - - No backup cards - Prepare your card - One backup card added - Two backup cards added - Backup card #%d - - To start the backup process add up to two backup cards. - Prepare the primary card - You can add one more card or finalize the backup process - Max number of cards added. Finalize the backup process. - - 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 in backup, otherwise you can buy it in shop. Do you like to continue backup process? - - Create Access Code - Re-enter your Access Code - Protect - Personalize - Restore - You have to setup a single access code to protect all your wallets - You can set an individual access code on each card later. - The access code can be restored with a linked card, don\'t keep all cards at one place. - Choose any word, phrase, or number you want as your access code. - Access code must be at least 4 characters long - Entered access code didn\'t match initial access code - - Create - Submit - Creating a backup - The backup process is partly complete. You can\'t exit it now. - - Backup wallet - Identical cards - Access code - Access code restore - - You can backup your keys up to two other blank Tangem Wallet 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. - Access code can be restored with one of backup cards. - - Your wallet card is configured and ready for use. - - You have an interrupted backup. Do you want to resume? - Yes, resume - Discard - This is an irreversible action - If you will discard the backup now, then you will have to reset the cards to factory settings to start over again - Resume backup - Discard - Primary card - Scan the primary card - Continue to my wallet - Sending %s - Prepare the backup card with number %s - Prepare the primary card with number %s - - Dapp %s, requesting to\nsign BNB transaction.\n\n%s - Transaction details:\n -From: %s\n -To: %s\n -Amount: %s - Trade order for %s\n -Price: %s\n -Amount to receive: %s\n -Amount to pay: %s - - Solana network charges a rent of %s every 2 days. Accounts that can\'t afford the rent are purged from the network. Deposit your account with more than %s to use it for free. - - My suggestions - Can\'t scan a card - Can\'t send a transaction - Tangem feedback - Feedback - Tell us what functions you are missing, and we will try to help you. - Please tell us what card do you have? - Please tell us more about your issue. Every small detail can help. - Hi support team, - Following information is optional. You can erase it if you don\'t want to share it. - - diff --git a/core/res/src/main/res/values-de/strings-app.xml b/core/res/src/main/res/values-de/strings-app.xml new file mode 100644 index 0000000000..9b09fb053e --- /dev/null +++ b/core/res/src/main/res/values-de/strings-app.xml @@ -0,0 +1,233 @@ + + + Tangem + Änderungen speichern + Warnung + Erledigt + Abbrechen + Akzeptieren + Sie haben keinen Zugang zur Kamera erteilt, bitte passen Sie Ihre Datenschutzeinstellungen an + Absenden + ein Wallet erstellen + Tangem + Verifizierte Bilanz + Die Bilanz wird aufgeladen… + Das Konto ist nicht erstellt + Leere Karte + Erstellen Sie ein Wallet um die Tangem-Karte verwenden zu können + 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 + Die Transaktion läuft… + Erhalten + von %s + Senden + an %s + Adresse erkunden + PayString erstellen + PayString erstellen + PayString Name + $payid.tangem.com + PayString sind Ihre einzigartigen Identifikationsdaten wie Telefonnummer, E-Mail-Adresse oder ABN. + Fehlerantwort beim Erstellen der PayString + Diese PayString existiert bereits. Versuchen Sie mit einer anderen erneut. + Adresse oder PayString + Adresse + Absenden + Netzgebühr + Betrag + Gebühr + Gesamt + Höchstbetrag + Niedrig + Normal + Priorität + inkl. Gebühr + %s wird gesendet + %s und %s werden gesendet + Die Transaktion wurde erfolgreich signiert und an den Blockchain-Knoten gesendet. Die Walletbilanz wird aktualisiert + Details + KartenID + Emittent + Signiert + %s Hasch + App Währung + 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. + Zugangscode + Sie müssen den richtigen Zugangscode eingeben, bevor Sie die Karte scannen. + 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. + Diese Karte ist für die Zusammenarbeit mit Tangem nicht geeignet + Die von Ihnen gescannte Karte ist eine Entwicklungskarte. Akzeptieren Sie sie nicht als Zahlungsmittel. + Tippen um zu signieren + To create wallet, connect your phone and the card exactly as it shown above + Tippen Sie um den Zugangscode zu ändern + Tippen Sie um den Passcode zu ändern + Nutzungsbedingungen + Keine Internetverbindung + PayString wird von der Blockchain nicht unterstützt + PayString ist nicht registriert + PayString-Anfrage ist fehlgeschlagen + Die Adresse stimmt mit der Adresse Ihrer Brieftasche überein + Die Adresse wurde erfolgreich kopiert + Zuerst geben Sie die gewünschte PayString ein + Legen Sie die Karte zum Scannen an + Legen Sie die Karte an + Scan card failed. Try again + Buy + Sell + Exchange + Create twin wallet + Generate wallet keys on both cards to start using your Twins + One wallet. Two cards. + 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. + Card terms of use + Tangem Twin + This action is irreversible. You will not have access to the old wallet. + Scan the #%s twin card + Preparing card + Creating wallet + Scan the card #%s + You\'ve scanned the same card. To create a twin wallet you need to scan the card with number %d + Start + Add + Search + Send Feedback + Can\'t send a transaction + Reason: %s + Are you having difficulty scanning your card? + I\'m okay + Request support + Send feedback + Really cool! + Can be better + One question + How do you like Tangem? + Add custom token + Please wait for %s transaction to complete to be able to send funds + Authenticity check failed + This card might be a production sample or counterfeit + Important security information \u26A0 + This card has signed transactions in the past + Learn more + There are only %s signatures available on this card. You must withdraw all of your funds. + Disconnect + Sign + Sign and send + Reject + This is a Testnet card. Don\'t accept it as a payment. This card must only be used for testing and development purposes. + Do you want to buy or sell crypto? + Oops, the current version of the application is not ready to work with this card, please check for updates. + Activating card + How does it work? + Receive crypto + Create a wallet + Let\'s generate all the keys on your card and create a secure wallet + Create wallet + Top up your wallet + To get started, simply top up the wallet with any amount + To get started, simply top up the wallet with more than %s %s + Buy crypto + Show the wallet\'s address + Success! + Your card is activated and ready to be used + Balance + Send only %s (%s) to this address. Using other tokens and networks may result in loss of funds. + Send only %s (%s) from %s network to this address. Using other tokens and networks may result in loss of funds. + If the process of creating the wallet gets interrupted in any way, you\'ll have to start over. + The twinning process is partly complete. You can\'t exit it now. + OK, ich hab\'s! + Getting started + Backup now + Skip for later + Finalize the backup process + Add a backup card + Scan the card #%d + Scan primary card + No backup cards + Prepare your card + One backup card added + Two backup cards added + Backup card #%d + To start the backup process add up to two backup cards. + Prepare the primary card + You can add one more card or finalize the backup process + Max number of cards added. Finalize the backup process. + 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? + Create Access Code + Re-enter your Access Code + Protect + Personalize + Restore + You have to set up a single access code to protect all your wallets. + You can set an individual access code on each card later. + The access code can be restored with a linked card, don\'t keep all cards in one place. + Choose any word, phrase, or number you want as your access code. + Access code must be at least 4 characters long + Entered access code didn\'t match the initial access code + Create + Submit + Creating a backup + The backup process is partly complete. You can\'t exit it now. + Backup wallet + Identical cards + Access code + Access code restore + You can backup your keys up to two other blank Tangem Wallet 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. + Access code can be restored with one of backup cards. + Your wallet card is configured and ready for use. + Link More Cards + You have an interrupted backup. Do you want to resume? + Yes, resume + Discard + This is an irreversible action + If you will discard the backup now, then you will have to reset the cards to factory settings to start over again + Resume backup + Discard + Scan the primary card + Continue to my wallet + Sending %s + Prepare the backup card with number %s + Prepare the primary card with number %s + Solana network charges a rent of %s every 2 days. Accounts that can\'t afford the rent are purged from the network. Deposit your account with more than %s to use it for free. + 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. + Request to create transaction for %s\n%s\n\nAmount: %s\nFee: %s\nTotal: %s\nBalance: %s + Request to start a session for\n%s\n\nNETWORK: %s\n\nURL: %s + WalletConnect Sessions + Ooops. No Sessions. + No opened WalletConnect sessions + Open session + Can\'t send transaction. Not enough funds. + Requesting to sign a message.\n\n%s + Clipboard contain WalletConnect code. Use copied value or scan QR-code + Paste from clipboard + Scan new code + This card can\'t be used to establish WalletConnect session + The operation couldn\'t be completed. \n\nYou have already established a WalletConnect session with this parameters. + Failed to establish WalletConnect session: timeout error. Please, try again later. + Dapp %s, requesting to\nsign BNB transaction.\n\n%s + Transaction details:\nFrom: %s\nTo: %s\nAmount: %s + Trade order for %s\nPrice: %s\nAmount to receive: %s\nAmount to pay: %s + My suggestions + Can\'t scan a card + Can\'t send a transaction + Tangem feedback + Feedback + Tell us what functions you are missing, and we will try to help you. + Please tell us what card do you have? + Please tell us more about your issue. Every small detail can help. + Hi support team, + The following information is optional. You can erase it if you don\'t want to share it. + ≈ %s (inkl. Gebühr: %s) + Primary Card + Blockchain is unreachable. Try later + Fehler + OK + Failed to establish WalletConnect session. Please, try again later. + + + %s + \ No newline at end of file diff --git a/core/res/src/main/res/values-de/strings-blockchain.xml b/core/res/src/main/res/values-de/strings-blockchain.xml new file mode 100644 index 0000000000..6a190d1cbe --- /dev/null +++ b/core/res/src/main/res/values-de/strings-blockchain.xml @@ -0,0 +1,4 @@ + + + Laden Sie %s+ %s auf um ein Konto zu erstellen + \ No newline at end of file diff --git a/core/res/src/main/res/values-de/strings_final.xml b/core/res/src/main/res/values-de/strings_final.xml index 106dd30cc9..5e5e0bc90b 100644 --- a/core/res/src/main/res/values-de/strings_final.xml +++ b/core/res/src/main/res/values-de/strings_final.xml @@ -113,6 +113,11 @@ Log in with %s Karte scannen Save your Wallet + Would you like to use %s? + Access the app + Log into the app and check your balance without scanning the card + Access code + %s will be requested instead of the access code for interactions with your wallet Note that making a transaction with your funds will still require your card Allow to use %s New feature diff --git a/core/res/src/main/res/values-fr/strings-app.xml b/core/res/src/main/res/values-fr/strings-app.xml new file mode 100644 index 0000000000..8d7d037a69 --- /dev/null +++ b/core/res/src/main/res/values-fr/strings-app.xml @@ -0,0 +1,233 @@ + + + Tangem + Sauvegarder les modifications + Alerte + Exécuté + Annuler + J\'accepte + Vous n\'avez pas octroyé l\'accès à votre caméra, veuillez modifier vos paramètres de confidentialité + Envoyer + Créer un portefeuille + Tangem + Solde confirmé + Solde est en cours de téléchargement … + Compte n\'est pas créé + Carte vide + Créez un portefeuille pour commencer à utiliser votre carte Tangem + 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 + Transaction en cours… + Réception + de %s + Envoi + jusqu\'à %s + Explorer l\'adresse + Créer PayString + Créer PayString + Dénomination PayString + $payid.tangem.com + 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. + Mauvaise réponse lors de la création de PayString + Ce PayString existe déjà. Essayez une autre variante. + Adresse ou PayString + Adresse + Envoyer + Commissions du réseau + Somme + Commissions + Total + Somme maximale + Bas + Normal + Priorité + Inclure les commissions + Sera envoyé %s + Sera envoyé %s et %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 + Référénces + ID de la carte + Emetteur + Signé + %s hashes + Monnaie de l\'application + 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. + Code d\'accès + Vous devrez entrer le mot de passe correct avant de scanner la carte + 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. + Cette carte n\'est pas conçue pour fonctionner avec Tangem + La carte que vous avez scannée est une carte de développement. Ne l\'acceptez pas comme paiement. + Touchez pour signer + To create wallet, connect your phone and the card exactly as it shown above + Touchez, pour modifier le code d\'accès + Touchez, pour modifier le mot de passe + Conditions d\'utilisation + Pas de connexion internet + PayString non pris en charge par la blockchain + PayString non enregistré + La demande de PayString a échoué + L\'adresse est la même que celle de votre portefeuille + L\'adresse a été copiée avec succès + Saisissez d\'abord le PayString requis + Posez pour scanner + Posez la carte + Scan card failed. Try again + Buy + Sell + Exchange + Create twin wallet + Generate wallet keys on both cards to start using your Twins + One wallet. Two cards. + 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. + Card terms of use + Tangem Twin + This action is irreversible. You will not have access to the old wallet. + Scan the #%s twin card + Preparing card + Creating wallet + Scan the card #%s + You\'ve scanned the same card. To create a twin wallet you need to scan the card with number %d + Start + Add + Search + Send Feedback + Can\'t send a transaction + Reason: %s + Are you having difficulty scanning your card? + I\'m okay + Request support + Send feedback + Really cool! + Can be better + One question + How do you like Tangem? + Add custom token + Please wait for %s transaction to complete to be able to send funds + Authenticity check failed + This card might be a production sample or counterfeit + Important security information \u26A0 + This card has signed transactions in the past + Learn more + There are only %s signatures available on this card. You must withdraw all of your funds. + Disconnect + Sign + Sign and send + Reject + This is a Testnet card. Don\'t accept it as a payment. This card must only be used for testing and development purposes. + Do you want to buy or sell crypto? + Oops, the current version of the application is not ready to work with this card, please check for updates. + Activating card + How does it work? + Receive crypto + Create a wallet + Let\'s generate all the keys on your card and create a secure wallet + Create wallet + Top up your wallet + To get started, simply top up the wallet with any amount + To get started, simply top up the wallet with more than %s %s + Buy crypto + Show the wallet\'s address + Success! + Your card is activated and ready to be used + Balance + Send only %s (%s) to this address. Using other tokens and networks may result in loss of funds. + Send only %s (%s) from %s network to this address. Using other tokens and networks may result in loss of funds. + If the process of creating the wallet gets interrupted in any way, you\'ll have to start over. + The twinning process is partly complete. You can\'t exit it now. + Ok, je l\'ai! + Getting started + Backup now + Skip for later + Finalize the backup process + Add a backup card + Scan the card #%d + Scan primary card + No backup cards + Prepare your card + One backup card added + Two backup cards added + Backup card #%d + To start the backup process add up to two backup cards. + Prepare the primary card + You can add one more card or finalize the backup process + Max number of cards added. Finalize the backup process. + 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? + Create Access Code + Re-enter your Access Code + Protect + Personalize + Restore + You have to set up a single access code to protect all your wallets. + You can set an individual access code on each card later. + The access code can be restored with a linked card, don\'t keep all cards in one place. + Choose any word, phrase, or number you want as your access code. + Access code must be at least 4 characters long + Entered access code didn\'t match the initial access code + Create + Submit + Creating a backup + The backup process is partly complete. You can\'t exit it now. + Backup wallet + Identical cards + Access code + Access code restore + You can backup your keys up to two other blank Tangem Wallet 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. + Access code can be restored with one of backup cards. + Your wallet card is configured and ready for use. + Link More Cards + You have an interrupted backup. Do you want to resume? + Yes, resume + Discard + This is an irreversible action + If you will discard the backup now, then you will have to reset the cards to factory settings to start over again + Resume backup + Discard + Scan the primary card + Continue to my wallet + Sending %s + Prepare the backup card with number %s + Prepare the primary card with number %s + Solana network charges a rent of %s every 2 days. Accounts that can\'t afford the rent are purged from the network. Deposit your account with more than %s to use it for free. + 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. + Request to create transaction for %s\n%s\n\nAmount: %s\nFee: %s\nTotal: %s\nBalance: %s + Request to start a session for\n%s\n\nNETWORK: %s\n\nURL: %s + WalletConnect Sessions + Ooops. No Sessions. + No opened WalletConnect sessions + Open session + Can\'t send transaction. Not enough funds. + Requesting to sign a message.\n\n%s + Clipboard contain WalletConnect code. Use copied value or scan QR-code + Paste from clipboard + Scan new code + This card can\'t be used to establish WalletConnect session + The operation couldn\'t be completed. \n\nYou have already established a WalletConnect session with this parameters. + Failed to establish WalletConnect session: timeout error. Please, try again later. + Dapp %s, requesting to\nsign BNB transaction.\n\n%s + Transaction details:\nFrom: %s\nTo: %s\nAmount: %s + Trade order for %s\nPrice: %s\nAmount to receive: %s\nAmount to pay: %s + My suggestions + Can\'t scan a card + Can\'t send a transaction + Tangem feedback + Feedback + Tell us what functions you are missing, and we will try to help you. + Please tell us what card do you have? + Please tell us more about your issue. Every small detail can help. + Hi support team, + The following information is optional. You can erase it if you don\'t want to share it. + ≈ %s (incl. les commissions : %s) + Primary Card + Blockchain is unreachable. Try later + Erreur + OK + Failed to establish WalletConnect session. Please, try again later. + + + %s + \ No newline at end of file diff --git a/core/res/src/main/res/values-fr/strings-blockchain.xml b/core/res/src/main/res/values-fr/strings-blockchain.xml new file mode 100644 index 0000000000..813aba22b5 --- /dev/null +++ b/core/res/src/main/res/values-fr/strings-blockchain.xml @@ -0,0 +1,4 @@ + + + Pour créer un compte, téléchargez %s+ %s + \ No newline at end of file diff --git a/core/res/src/main/res/values-fr/strings_final.xml b/core/res/src/main/res/values-fr/strings_final.xml index 740d0d8faf..fdba526339 100644 --- a/core/res/src/main/res/values-fr/strings_final.xml +++ b/core/res/src/main/res/values-fr/strings_final.xml @@ -113,6 +113,11 @@ Log in with %s Scannez la carte Save your Wallet + Would you like to use %s? + Access the app + Log into the app and check your balance without scanning the card + Access code + %s will be requested instead of the access code for interactions with your wallet Note that making a transaction with your funds will still require your card Allow to use %s New feature diff --git a/core/res/src/main/res/values-it/strings-app.xml b/core/res/src/main/res/values-it/strings-app.xml new file mode 100644 index 0000000000..c5e3134366 --- /dev/null +++ b/core/res/src/main/res/values-it/strings-app.xml @@ -0,0 +1,233 @@ + + + Tangem + Mantieni le modifiche + Avviso + Fatto + Annulla + Accetta + Non hai fornito l\'accesso alla tua videocamera, modifica le tue impostazioni sulla privacy + Invia + Crea portafoglio + Tangem + Saldo verificato + Il saldo sta per essere caricato… + Conto non creato + Carta vuota + Crea un portafoglio per iniziare ad utilizzare la tua carta Tangem + 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 + Transazione in corso… + Riceviu + da %s + Inviau + su %s + Cerca indirizzo + Crea PayString + Crea PayString + Nome PayString + $payid.tangem.com + Il tuo PayString – informazioni per te uniche, come il tuo numero di telefono, indirizzo email o ABN. + Errore di risposta durante la creazione del PayString + Questo PayString esiste già. Scegline un altro. + Indirizzo o PayString + Indirizzo + Invia + Costi della rete + Importo + Commissione + Totale + Importo totale + Insufficiente + Normale + Prioritario + Includi commissione + Sarà inviato %s + Sarà inviato %s e %s + La transazione è stata firmata con successo e inviata al nodo blockchain. Il saldo del portafoglio verrà aggiornato dopo un po\' di tempo + Requisiti + ID carta + Emittente + Firmato + Hash %s + Valuta dell\'applicazione + 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. + Codice di accesso + Prima di scansionare la carta sarà necessario inserire il codice di accesso corretto + 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. + Questa carta non è progettata per funzionare con Tangem + La carta che hai scansionato è una carta di sviluppo. Non utilizzarla come strumento di pagamento. + Avvicina per firmare + To create wallet, connect your phone and the card exactly as it shown above + Avvicina per modificare il codice di accesso + Avvicina per modificare la password + Termini del servizio + Nessuna connessione a Internet + PayString non supportato dalla blockchain + PayString non registrato + Richiesta PayString fallita + L\'indirizzo corrisponde all\'indirizzo del tuo portafoglio + L\'indirizzo è stato copiato con successo + Inserire prima il PayString desiderato + Avvicina per scansionare + Avvicina la carta + Scan card failed. Try again + Buy + Sell + Exchange + Create twin wallet + Generate wallet keys on both cards to start using your Twins + One wallet. Two cards. + 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. + Card terms of use + Tangem Twin + This action is irreversible. You will not have access to the old wallet. + Scan the #%s twin card + Preparing card + Creating wallet + Scan the card #%s + You\'ve scanned the same card. To create a twin wallet you need to scan the card with number %d + Start + Add + Search + Send Feedback + Can\'t send a transaction + Reason: %s + Are you having difficulty scanning your card? + I\'m okay + Request support + Send feedback + Really cool! + Can be better + One question + How do you like Tangem? + Add custom token + Please wait for %s transaction to complete to be able to send funds + Authenticity check failed + This card might be a production sample or counterfeit + Important security information \u26A0 + This card has signed transactions in the past + Learn more + There are only %s signatures available on this card. You must withdraw all of your funds. + Disconnect + Sign + Sign and send + Reject + This is a Testnet card. Don\'t accept it as a payment. This card must only be used for testing and development purposes. + Do you want to buy or sell crypto? + Oops, the current version of the application is not ready to work with this card, please check for updates. + Activating card + How does it work? + Receive crypto + Create a wallet + Let\'s generate all the keys on your card and create a secure wallet + Create wallet + Top up your wallet + To get started, simply top up the wallet with any amount + To get started, simply top up the wallet with more than %s %s + Buy crypto + Show the wallet\'s address + Success! + Your card is activated and ready to be used + Balance + Send only %s (%s) to this address. Using other tokens and networks may result in loss of funds. + Send only %s (%s) from %s network to this address. Using other tokens and networks may result in loss of funds. + If the process of creating the wallet gets interrupted in any way, you\'ll have to start over. + The twinning process is partly complete. You can\'t exit it now. + Ok, ho capito! + Getting started + Backup now + Skip for later + Finalize the backup process + Add a backup card + Scan the card #%d + Scan primary card + No backup cards + Prepare your card + One backup card added + Two backup cards added + Backup card #%d + To start the backup process add up to two backup cards. + Prepare the primary card + You can add one more card or finalize the backup process + Max number of cards added. Finalize the backup process. + 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? + Create Access Code + Re-enter your Access Code + Protect + Personalize + Restore + You have to set up a single access code to protect all your wallets. + You can set an individual access code on each card later. + The access code can be restored with a linked card, don\'t keep all cards in one place. + Choose any word, phrase, or number you want as your access code. + Access code must be at least 4 characters long + Entered access code didn\'t match the initial access code + Create + Submit + Creating a backup + The backup process is partly complete. You can\'t exit it now. + Backup wallet + Identical cards + Access code + Access code restore + You can backup your keys up to two other blank Tangem Wallet 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. + Access code can be restored with one of backup cards. + Your wallet card is configured and ready for use. + Link More Cards + You have an interrupted backup. Do you want to resume? + Yes, resume + Discard + This is an irreversible action + If you will discard the backup now, then you will have to reset the cards to factory settings to start over again + Resume backup + Discard + Scan the primary card + Continue to my wallet + Sending %s + Prepare the backup card with number %s + Prepare the primary card with number %s + Solana network charges a rent of %s every 2 days. Accounts that can\'t afford the rent are purged from the network. Deposit your account with more than %s to use it for free. + 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. + Request to create transaction for %s\n%s\n\nAmount: %s\nFee: %s\nTotal: %s\nBalance: %s + Request to start a session for\n%s\n\nNETWORK: %s\n\nURL: %s + WalletConnect Sessions + Ooops. No Sessions. + No opened WalletConnect sessions + Open session + Can\'t send transaction. Not enough funds. + Requesting to sign a message.\n\n%s + Clipboard contain WalletConnect code. Use copied value or scan QR-code + Paste from clipboard + Scan new code + This card can\'t be used to establish WalletConnect session + The operation couldn\'t be completed. \n\nYou have already established a WalletConnect session with this parameters. + Failed to establish WalletConnect session: timeout error. Please, try again later. + Dapp %s, requesting to\nsign BNB transaction.\n\n%s + Transaction details:\nFrom: %s\nTo: %s\nAmount: %s + Trade order for %s\nPrice: %s\nAmount to receive: %s\nAmount to pay: %s + My suggestions + Can\'t scan a card + Can\'t send a transaction + Tangem feedback + Feedback + Tell us what functions you are missing, and we will try to help you. + Please tell us what card do you have? + Please tell us more about your issue. Every small detail can help. + Hi support team, + The following information is optional. You can erase it if you don\'t want to share it. + ≈ %s (inc. commissione: %s) + Primary Card + Blockchain is unreachable. Try later + Errore + OK + Failed to establish WalletConnect session. Please, try again later. + + + %s + \ No newline at end of file diff --git a/core/res/src/main/res/values-it/strings-blockchain.xml b/core/res/src/main/res/values-it/strings-blockchain.xml new file mode 100644 index 0000000000..5ec38a340a --- /dev/null +++ b/core/res/src/main/res/values-it/strings-blockchain.xml @@ -0,0 +1,4 @@ + + + Scarica %s+ %s per creare un account + \ No newline at end of file diff --git a/core/res/src/main/res/values-it/strings_final.xml b/core/res/src/main/res/values-it/strings_final.xml index b284d9eb91..b812e23de8 100644 --- a/core/res/src/main/res/values-it/strings_final.xml +++ b/core/res/src/main/res/values-it/strings_final.xml @@ -113,6 +113,11 @@ Log in with %s Scansiona carta Save your Wallet + Would you like to use %s? + Access the app + Log into the app and check your balance without scanning the card + Access code + %s will be requested instead of the access code for interactions with your wallet Note that making a transaction with your funds will still require your card Allow to use %s New feature diff --git a/app/src/main/res/values-ru/strings.xml b/core/res/src/main/res/values-ru/strings-app.xml similarity index 76% rename from app/src/main/res/values-ru/strings.xml rename to core/res/src/main/res/values-ru/strings-app.xml index c248c5c69d..34b9be72db 100644 --- a/app/src/main/res/values-ru/strings.xml +++ b/core/res/src/main/res/values-ru/strings-app.xml @@ -1,29 +1,27 @@ - + Tangem Сохранить изменения Предупреждение Готово + Отмена Принять - Удалить - %s - Вы не предоставили доступ к своей камере, измените настройки конфиденциальности + Вы не предоставили доступ к камере, пожалуйста, измените настройки конфиденциальности. Отправить Создать кошелек Tangem Подтвержденный баланс - Загрузка баланса… + Баланс загружается… Аккаунт не создан - Пополните счет на %s+ %s, чтобы создать аккаунт Карта пуста Создайте кошелек, чтобы начать пользоваться картой Tangem Эта карта не поддерживается Ваша карта Tangem предназначена для работы с другим приложением. Пожалуйста, ознакомьтесь с названием и инструкциями на вашей карте и установите правильное приложение. - Транзакция в процессе… - до %s - от %s + Транзакция подтверждается… Получение + от %s Отправка + к %s Проверить адрес Создать PayString Создать PayString @@ -35,34 +33,33 @@ Адрес или PayString Адрес Отправить - Комиссия сети + Сетевая комиссия Сумма Комиссия Всего Максимальная сумма - Низкий - Нормальный - Приоритетный - Включить коммисию + Низкая + Нормальная + Приоритетная + Включая комиссию %s будет отправлено %s и %s будет отправлено Транзакция успешно подписана и отправлена в блокчейн. Баланс будет обновлен через некоторое время Подробности - ID карты + Номер карты Эмитент Подписано %s хэшей Валюта приложения - Длительное удержание + Задержка сканирования Этот механизм защищает карту от бесконтактных атак. Между сканированием карты и выполнением команды будет добавлена задержка. Пароль - Перед выполнением любой команды, влекущей за собой изменение состояния карты, вам необходимо будет ввести пароль + Перед выполнением любой команды, влекущей за собой изменение состояния карты, вам необходимо будет ввести пароль. Код доступа - Перед сканированием карты вам нужно будет ввести правильный код доступа + Перед сканированием карты вам нужно будет ввести правильный код доступа. Эта карта ранее пополнялась и подписывала транзакции. Выведите средства как можно быстрее, если вы получили эту карту из ненадежного источника. Если это ваша карта, то не о чем беспокоиться. - Предупреждение Эта карта не предназначена для работы с этим приложением - Карта, которую Вы отсканировали, является картой для разработчиков. Не принимайте ее в качестве оплаты. + Карта, которую вы отсканировали, является картой разработчика. Не принимайте её в качестве оплаты. Нажмите, чтобы подписать Чтобы создать кошелек, соедините телефон и карту в точности, как показано выше. Чтобы изменить код доступа, соедините телефон и карту в точности, как показано выше. @@ -73,7 +70,6 @@ PayString не зарегистрирован Не удалось выполнить запрос PayString Адрес совпадает с адресом кошелька - Адрес скопирован в буфер обмена Сначала введите желаемую PayString Приложите, чтобы отсканировать @@ -82,15 +78,13 @@ Купить Продать Обменять - По умолчанию - Устаревший Создать кошелек Сгенерируйте ключи кошелька на обеих картах, чтобы начать использовать свои Twin карты Один кошелек. Две карты. Это карта, которую вы держите в руках. У парной карты номер %s.\n\nОбе карты можно использовать для вывода средств из этого кошелька. Условия использования карты Tangem Twin - Это действие необратимо. У Вас не будет доступа к старому кошельку. + Это действие необратимо. У вас не будет доступа к старому кошельку. Отсканируйте twin-карту #%s Подготовка карты Создание кошелька @@ -102,28 +96,28 @@ Отправить отзыв Не могу отправить транзакцию Причина: %s - У Вас возникли трудности со сканированием вашей карты? + У вас возникли трудности со сканированием карты? Отмена Обратиться в поддержку Отправить отзыв Очень круто! - Может быть лучше + Можно лучше Один вопрос - Вам нравится приложение Tangem? + Как вам Tangem? Добавить токен Пожалуйста, дождитесь завершения транзакции %s, чтобы иметь возможность отправить средства Проверка подлинности не удалась Эта карта может быть производственным образцом или подделкой Важная информация о безопасности \u26A0 - Эта карта ранее подписывала транзакции - Узнать подробнее - На этой карте доступно только %s подписей. Вы должны вывести все свои средства. + Эта карта подписывала транзакции в прошлом + Узнать больше + На этой карте осталось только %s подписей. Вы должны вывести все свои средства. Отключить Подписать Подписать и отправить Отклонить - Это тестовая карта. Не принимайте ее в качестве оплаты. Она должна использоваться только в целях тестирования и разработки. - Вы хотите купить или продать криптовалюту? + Это тестовая карта. Не принимайте её в качестве оплаты. Эта карта должна использоваться только в целях тестирования и разработки. + Вы хотите купить или продать криптовалюту? К сожалению, текущая версия приложения не готова к работе с этой картой, проверьте наличие обновлений Активация карты Как это работает? @@ -133,7 +127,7 @@ Создать кошелек Пополните свой кошелек Пополните кошелек на любую сумму, чтобы начать пользоваться картой - Чтобы начать, просто пополните кошелек более чем на %s %s + Пополните кошелек более чем на %s %s, чтобы начать пользоваться картой Купить криптовалюту Показать адрес кошелька Успешно! @@ -141,15 +135,13 @@ Баланс Отправляйте только %s (%s) на этот адрес. Иначе это может привести к утрате средств. Отправляйте только %s (%s) из сети %s на этот адрес. Иначе это может привести к утрате средств. - Если процесс создания кошелька каким-либо образом прервется, вам придется начать все сначала. + Если процесc создания кошелька каким-либо образом прервется, вам придется начинать сначала. Процесс связывания карт частично завершен. Вы не можете выйти из него сейчас. - Блокчейн недоступен. Попробуй позже. - Хорошо, понял! - Успешно! + Понятно! Подготовка - Выполнить резервное копирование - Оставить на потом - Завершить процесс резервного копирования + Создать резервную копию + Пропустить + Завершите процесс резервного копирования Добавить резервную карту Сканировать карту #%d Сканировать основную карту @@ -161,73 +153,81 @@ Чтобы начать процесс резервного копирования, добавьте одну или две резервные карты. Подготовьте основную карту Вы можете добавить еще одну карту или завершить процесс резервного копирования - Добавлено максимальное количество карт + Добавлено максимальное количество карт. Завершите процесс резервного копирования. Вы добавили одну резервную карту. После того, как процесс будет завершен, Вы больше не сможете добавить карт. Если у Вас есть еще одна карта, добавьте ее в резервную копию. Хотите продолжить? - Создать код доступа - Введите код доступа повторно - Защитить - Персонализировать - Восстановить - Вам необходимо установить единый код доступа для защиты всех ваших кошельков - Позже Вы сможете установить индивидуальный код доступа для каждой карты - Код доступа можно восстановить с помощью привязанной карты, не храните все карты в одном месте - Выберите любое слово, фразу или номер в качестве кода доступа - Код доступа должен состоять не менее чем из 4 символов - Введенный код доступа не соответствует исходному коду доступа + Создайте код доступа + Повторно введите код доступа + Защита + Персонализация + Восстановление + Вам необходимо установить единый код доступа для защиты всех ваших карт. + Позже вы сможете установить индивидуальный код доступа для каждой карты. + Код доступа можно восстановить с помощью привязанной карты. Не храните все карты в одном месте. + Выберите любое слово, фразу или число в качестве кода доступа. + Код доступа должен состоять не менее чем из 4 символов. + Введенные коды доступа не совпадают Создать - Подтвердить - Создание резервной копии - Процесс резервного копирования частично завершен. Вы не можете выйти из него сейчас. - Резервный кошелек + Отправить + Резервная копия + Процесс резервного копирования почти завершен. Вы не можете выйти из него сейчас. + Резервная копия карты Идентичные карты Код доступа Восстановление кода доступа - Вы можете сделать до двух резервных копий карты Tangem Wallet - Все резервные карты могут использоваться как полнофункциональные с одинаковыми ключами - Вы сможете установить код доступа для защиты своих кошельков - Код доступа можно восстановить с помощью одной из резервных карт + Вы можете сделать резервную копию своих ключей на одной или двух других пустых картах Wallet. + Все резервные карты являются полнофункциональными и содержат одинаковые ключи. + Вы сможете установить код доступа для защиты своих кошельков. + Код доступа можно восстановить с помощью одной из резервных карт. Ваша карта настроена и готова к использованию. - У Вас есть прерванное резервное копирование. Хотите возобновить? + Добавить еще карты + Вы не закончили резервное копирование. Хотите продолжить? Да, возобновить Отказаться Это необратимое действие - Если сейчас отменить резервное копирование, то придется вернуть карты до заводских настроек, чтобы начать заново + Если сейчас отказаться, то придётся сбрасывать карты до заводских настроек, чтобы начать заново Возобновить резервное копирование Отказаться - Основная карта Сканировать основную карту Перейти к моему кошельку Отправка %s Подготовьте резервную карту с номером %s Подготовьте основную карту с номером %s - Сеть Solana взымает арендную плату в размере %s каждые 2 дня. Аккаунты, которые не могут позволить себе арендную плату, удаляются из сети. Пополните свой счет более чем на %s, чтобы использовать его бесплатно. - Эта карта не является векселем на предъявителя. В настоящее время мы не можем сопоставить количество подписей на карте с информацией в блокчейне. Это нормально, но в редких случаях может означать, что предыдущий владелец скрывает автономную подпись, что является проблемой безопасности.\nНе принимайте эту карту в качестве физического платежа от кого-то, кому Вы не доверяете.\nВо всех остальных отношениях - это совершенно безопасно.\nTangem — единственный аппаратный кошелек, предлагающий защиту от подсчета подписей. + Сеть Solana взимает арендную плату в размере %s каждые 2 дня. Аккаунты, которые не могут позволить себе арендную плату, удаляются из сети. Пополните свой счет более чем на %s, чтобы не платить арендную плату. + Эта карта не является платежным средством. В настоящее время мы не можем сопоставить количество подписей на карте с информацией в блокчейне. Это нормально, но в редких случаях может означать, что предыдущий владелец удерживает подписанную транзакцию от публикации, что является поводом для беспокойства.\nНе принимайте эту карту в качестве физического платежа от кого-то, кому вы не доверяете.\nВо всех остальных отношениях эта карта совершенно безопасна.\nTangem — единственный аппаратный кошелек, предлагающий защиту методом подсчета подписей. Запрос на создание транзакции для %s\n%s\n\nСумма: %s\nКомиссия: %s\nВсего: %s\nБаланс: %s Запрос на открытие сессии для\n%s\n\nСЕТЬ: %s\n\nURL: %s Сессии WalletConnect Упс. Нет сессий. Нет открытых сессий WalletConnect Открытая сессия - Не удается отправить транзакцию. Недостаточно средств. + Невозможно отправить транзакцию. Недостаточно средств. Запрос на подпись сообщения.\n\n%s Буфер обмена содержит код WalletConnect. Использовать скопированное значение или отсканировать QR-код Вставить из буфера обмена Сканировать новый код - Эту карту нельзя использовать для установки сеанса WalletConnect. + Эту карту нельзя использовать с WalletConnect. Операция не может быть завершена. \n\nВы уже установили сеанс WalletConnect с этими параметрами. - Не удалось установить сеанс WalletConnect: ошибка времени выполнения. Пожалуйста, повторите попытку позже. + Не удалось установить сессию WalletConnect за отведённое время. Пожалуйста, повторите попытку позже. Dapp %s, запрос на\nподпись транзакции с BNB.\n\n%s - Сведения о транзакции:\nОт: %s\nКому: %s\nСумма: %s + Детали транзакции:\nОт: %s\nК: %s\nСумма: %s Торговый ордер на %s\nЦена: %s\nСумма к получению: %s\nСумма к оплате: %s Мои предложения Не могу отсканировать карту Не могу отправить транзакцию Обращение в поддержку Tangem Обращение в поддержку - Расскажите, каких функций Вам не хватает, и мы постараемся Вам помочь - Скажите, пожалуйста, какая у Вас карта? - Пожалуйста, расскажите нам больше о Вашей проблеме. Каждая маленькая деталь может помочь. + Расскажите, каких функций вам не хватает, и мы постараемся вам помочь. + Скажите, пожалуйста, какая у вас карта? + Пожалуйста, расскажите нам больше о вашей проблеме. Каждая маленькая деталь может помочь. Привет, команда поддержки, Информация ниже не является обязательной. Вы можете стереть её, если хотите. ≈ %s (вкл. комиссию: %s) - + Основная карта + Блокчейн недоступен. Попробуй позже. + Ошибка + Ок + Не удалось установить сессию WalletConnect. Пожалуйста, повторите попытку позже. + + + %s + \ No newline at end of file diff --git a/core/res/src/main/res/values-ru/strings-blockchain.xml b/core/res/src/main/res/values-ru/strings-blockchain.xml new file mode 100644 index 0000000000..d253004626 --- /dev/null +++ b/core/res/src/main/res/values-ru/strings-blockchain.xml @@ -0,0 +1,4 @@ + + + Пополните счет на %s+ %s, чтобы создать аккаунт + \ No newline at end of file diff --git a/core/res/src/main/res/values-ru/strings_final.xml b/core/res/src/main/res/values-ru/strings_final.xml index a439e2b3e9..d8a604f287 100644 --- a/core/res/src/main/res/values-ru/strings_final.xml +++ b/core/res/src/main/res/values-ru/strings_final.xml @@ -113,6 +113,11 @@ Войти с %s Сканировать карту Сохраните ваш кошелек + Вы хотите использовать %s? + Доступ в приложение + Войдите в приложение и следите за своим балансом без сканирования карты + Код доступа + Для операций с вашим кошельком будет запрашиваться %s вместо кода доступа карты Обратите внимание, что для совершения транзакции с вашими средствами по-прежнему потребуется ваша карта Использовать %s Новый функционал diff --git a/core/res/src/main/res/values/strings-app.xml b/core/res/src/main/res/values/strings-app.xml new file mode 100644 index 0000000000..4d8976d15d --- /dev/null +++ b/core/res/src/main/res/values/strings-app.xml @@ -0,0 +1,233 @@ + + + Tangem + Save changes + Warning + Done + Cancel + Accept + You have not given access to your camera, please adjust your privacy settings + Send + Create wallet + Tangem + Verified Balance + Balance is loading… + Account is not created + Empty card + Create wallet to start using Tangem card + This card is not supported + Your Tangem card was made to work with a different application. Please see the name and instructions on your card, and install the correct app + Transaction is in progress… + Receiving + from %s + Sending + to %s + Explore address + Create PayString + Create PayString + PayString name + $payid.tangem.com + Your PayString is information unique to you, like your phone number, email or ABN. + Error response while creating PayString + This PayString already exists. Try a different one. + Address or PayString + Address + Send + Network fee + Amount + Fee + Total + Maximum amount + Low + Normal + Priority + Include fee + %s will be sent + %s and %s will be sent + Transaction has been successfully signed and sent to the blockchain node. Wallet balance will be updated in a while + Details + Card ID + Issuer + Signed + %s hashes + App Currency + Long Tap + This mechanism protects against proximity attacks on a card. It will enforce a delay between reception and execution of a command. + Passcode + Before executing any command entailing a change of the card state you will have to enter the passcode. + Access code + You will have to submit the correct access code before scanning the card + This card has been already topped up and signed transactions in the past. Consider immediate withdrawal of all funds if you have received this card from an untrusted source. If it\'s your card, there is nothing to worry about. + This card is not designed to work with this app + The card you scanned is a development card. Don\'t accept it as a payment. + Tap to sign + To create wallet, connect your phone and the card exactly as it shown above + To change the access code, connect your phone and the card exactly as it shown above + To change the passcode, connect your phone and the card exactly as it shown above + Terms of Service + No internet connection + PayString unsupported by blockchain + PayString not registered + PayString request failed + Address is the same as wallet address + Address was copied to clipboard + Enter desired PayString first + Tap to scan + Tap the card + Scan card failed. Try again + Buy + Sell + Exchange + Create twin wallet + Generate wallet keys on both cards to start using your Twins + One wallet. Two cards. + 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. + Card terms of use + Tangem Twin + This action is irreversible. You will not have access to the old wallet. + Scan the #%s twin card + Preparing card + Creating wallet + Scan the card #%s + You\'ve scanned the same card. To create a twin wallet you need to scan the card with number %d + Start + Add + Search + Send Feedback + Can\'t send a transaction + Reason: %s + Are you having difficulty scanning your card? + I\'m okay + Request support + Send feedback + Really cool! + Can be better + One question + How do you like Tangem? + Add custom token + Please wait for %s transaction to complete to be able to send funds + Authenticity check failed + This card might be a production sample or counterfeit + Important security information \u26A0 + This card has signed transactions in the past + Learn more + There are only %s signatures available on this card. You must withdraw all of your funds. + Disconnect + Sign + Sign and send + Reject + This is a Testnet card. Don\'t accept it as a payment. This card must only be used for testing and development purposes. + Do you want to buy or sell crypto? + Oops, the current version of the application is not ready to work with this card, please check for updates. + Activating card + How does it work? + Receive crypto + Create a wallet + Let\'s generate all the keys on your card and create a secure wallet + Create wallet + Top up your wallet + To get started, simply top up the wallet with any amount + To get started, simply top up the wallet with more than %s %s + Buy crypto + Show the wallet\'s address + Success! + Your card is activated and ready to be used + Balance + Send only %s (%s) to this address. Using other tokens and networks may result in loss of funds. + Send only %s (%s) from %s network to this address. Using other tokens and networks may result in loss of funds. + If the process of creating the wallet gets interrupted in any way, you\'ll have to start over. + The twinning process is partly complete. You can\'t exit it now. + Ok, Got it! + Getting started + Backup now + Skip for later + Finalize the backup process + Add a backup card + Scan the card #%d + Scan primary card + No backup cards + Prepare your card + One backup card added + Two backup cards added + Backup card #%d + To start the backup process add up to two backup cards. + Prepare the primary card + You can add one more card or finalize the backup process + Max number of cards added. Finalize the backup process. + 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? + Create Access Code + Re-enter your Access Code + Protect + Personalize + Restore + You have to set up a single access code to protect all your wallets. + You can set an individual access code on each card later. + The access code can be restored with a linked card, don\'t keep all cards in one place. + Choose any word, phrase, or number you want as your access code. + Access code must be at least 4 characters long + Entered access code didn\'t match the initial access code + Create + Submit + Creating a backup + The backup process is partly complete. You can\'t exit it now. + Backup wallet + Identical cards + Access code + Access code restore + You can backup your keys up to two other blank Tangem Wallet 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. + Access code can be restored with one of backup cards. + Your wallet card is configured and ready for use. + Link More Cards + You have an interrupted backup. Do you want to resume? + Yes, resume + Discard + This is an irreversible action + If you will discard the backup now, then you will have to reset the cards to factory settings to start over again + Resume backup + Discard + Scan the primary card + Continue to my wallet + Sending %s + Prepare the backup card with number %s + Prepare the primary card with number %s + Solana network charges a rent of %s every 2 days. Accounts that can\'t afford the rent are purged from the network. Deposit your account with more than %s to use it for free. + 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. + Request to create transaction for %s\n%s\n\nAmount: %s\nFee: %s\nTotal: %s\nBalance: %s + Request to start a session for\n%s\n\nNETWORK: %s\n\nURL: %s + WalletConnect Sessions + Ooops. No Sessions. + No opened WalletConnect sessions + Open session + Can\'t send transaction. Not enough funds. + Requesting to sign a message.\n\n%s + Clipboard contain WalletConnect code. Use copied value or scan QR-code + Paste from clipboard + Scan new code + This card can\'t be used to establish WalletConnect session + The operation couldn\'t be completed. \n\nYou have already established a WalletConnect session with this parameters. + Failed to establish WalletConnect session: timeout error. Please, try again later. + Dapp %s, requesting to\nsign BNB transaction.\n\n%s + Transaction details:\nFrom: %s\nTo: %s\nAmount: %s + Trade order for %s\nPrice: %s\nAmount to receive: %s\nAmount to pay: %s + My suggestions + Can\'t scan a card + Can\'t send a transaction + Tangem feedback + Feedback + Tell us what functions you are missing, and we will try to help you. + Please tell us what card do you have? + Please tell us more about your issue. Every small detail can help. + Hi support team, + The following information is optional. You can erase it if you don\'t want to share it. + ≈ %s (inc. fee: %s) + Primary Card + Blockchain is unreachable. Try later + Error + OK + Failed to establish WalletConnect session. Please, try again later. + + + %s + \ No newline at end of file diff --git a/core/res/src/main/res/values/strings-blockchain.xml b/core/res/src/main/res/values/strings-blockchain.xml new file mode 100644 index 0000000000..97b6423f40 --- /dev/null +++ b/core/res/src/main/res/values/strings-blockchain.xml @@ -0,0 +1,4 @@ + + + Load %s+ %s to create account + \ No newline at end of file diff --git a/core/res/src/main/res/values/strings_final.xml b/core/res/src/main/res/values/strings_final.xml index 8c80f1aeab..c7b9866169 100644 --- a/core/res/src/main/res/values/strings_final.xml +++ b/core/res/src/main/res/values/strings_final.xml @@ -113,6 +113,11 @@ Log in with %s Scan card Save your wallet + Would you like to use %s? + Access the app + Log into the app and check your balance without scanning the card + Access code + %s will be requested instead of the access code for interactions with your wallet Note that making a transaction with your funds will still require your card Allow to use %s New feature diff --git a/core/ui/src/main/res/values-de/strings-app.xml b/core/ui/src/main/res/values-de/strings-app.xml deleted file mode 100644 index 234b37a13d..0000000000 --- a/core/ui/src/main/res/values-de/strings-app.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - Failed to establish WalletConnect session - Link More Cards - Abbrechen - \ No newline at end of file diff --git a/core/ui/src/main/res/values-fr/strings-app.xml b/core/ui/src/main/res/values-fr/strings-app.xml deleted file mode 100644 index e148949c0d..0000000000 --- a/core/ui/src/main/res/values-fr/strings-app.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - Failed to establish WalletConnect session - Link More Cards - Annuler - \ No newline at end of file diff --git a/core/ui/src/main/res/values-it/strings-app.xml b/core/ui/src/main/res/values-it/strings-app.xml deleted file mode 100644 index fc516e10a2..0000000000 --- a/core/ui/src/main/res/values-it/strings-app.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - Failed to establish WalletConnect session - Link More Cards - Annulla - \ No newline at end of file diff --git a/core/ui/src/main/res/values-ru/strings-app.xml b/core/ui/src/main/res/values-ru/strings-app.xml deleted file mode 100644 index b085fe9843..0000000000 --- a/core/ui/src/main/res/values-ru/strings-app.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - Не удалось установить сессию WalletConnect - Добавить еще карты - Отмена - \ No newline at end of file diff --git a/core/ui/src/main/res/values-ru/strings.xml b/core/ui/src/main/res/values-ru/strings.xml deleted file mode 100644 index 61522a01ed..0000000000 --- a/core/ui/src/main/res/values-ru/strings.xml +++ /dev/null @@ -1,4 +0,0 @@ - - - Хорошо, понял! - \ No newline at end of file diff --git a/core/ui/src/main/res/values/strings-app.xml b/core/ui/src/main/res/values/strings-app.xml deleted file mode 100644 index 73745abf84..0000000000 --- a/core/ui/src/main/res/values/strings-app.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - Failed to establish WalletConnect session - Link More Cards - Cancel - \ No newline at end of file diff --git a/core/ui/src/main/res/values/strings.xml b/core/ui/src/main/res/values/strings.xml deleted file mode 100644 index 077070e47c..0000000000 --- a/core/ui/src/main/res/values/strings.xml +++ /dev/null @@ -1,4 +0,0 @@ - - - Ok, Got it! - \ No newline at end of file