import ActionaleMessage from '../ui/components/ui/actionable-message';
import designTokenDiagramImage from './images/design.token.graphic.svg';
<Meta title="Design Tokens / Color" />
# Color
Color is used to express style and communicate meaning.
<ActionaleMessage
type="warning"
message="We are in the process of consolidating all of our colors, making them accessible and enabling theming. Many of the colors used throughout the codebase are deprecated please follow the guide below to ensure you are using the correct colors when building MetaMask UI"
/>
<br />
## Design tokens
We are importing design tokens as CSS variables from [@metamask/design-tokens](https://github.com/MetaMask/design-tokens) repo to help consolidate colors and enable theming across all MetaMask products.
### Token tiers
We follow a 3 tiered system for color design tokens and css variables.
These colors **SHOULD NOT** be used in your styles directly. They are used as a reference for the [theme colors](#theme-colors-tier-2). Brand colors should just keep track of every color used in our app.
#### Example of brand color css variables
```css
/** !!!DO NOT USE BRAND COLORS DIRECTLY IN YOUR CODE!!! */
var(--brand-colors-white-white000)
var(--brand-colors-white-white010)
var(--brand-colors-grey-grey030)
```
### **Theme colors** (tier 2)
Theme colors are color agnostic, semantically neutral and theme compatible design tokens that you can use in your code and styles. Please refer to the description of each token for it's intended purpose in [@metamask/design-tokens](https://github.com/MetaMask/design-tokens/blob/main/src/figma/tokens.json#L329-L554).
#### Example of theme color css variables
```css
/** Backgrounds */
var(--color-background-default)
var(--color-background-alternative)
/** Text */
var(--color-text-default)
var(--color-text-alternative)
var(--color-text-muted)
/** Icons */
var(--color-icon-default)
var(--color-icon-muted)
/** Borders */
var(--color-border-default)
var(--color-border-muted)
/** Overlays */
var(--color-overlay-default)
var(--color-overlay-inverse)
/** User Actions */
var(--color-primary-default)
var(--color-primary-alternative)
var(--color-primary-muted)
var(--color-primary-inverse)
var(--color-primary-disabled)
var(--color-secondary-default)
var(--color-secondary-alternative)
var(--color-secondary-muted)
var(--color-secondary-inverse)
var(--color-secondary-disabled)
/** States */
/** Error */
var(--color-error-default)
var(--color-error-alternative)
var(--color-error-muted)
var(--color-error-inverse)
var(--color-error-disabled)
/** Warning */
var(--color-warning-default)
var(--color-warning-alternative)
var(--color-warning-muted)
var(--color-warning-inverse)
var(--color-warning-disabled)
/** Success */
var(--color-success-default)
var(--color-success-alternative)
var(--color-success-muted)
var(--color-success-inverse)
var(--color-success-disabled)
/** Info */
var(--color-info-default)
var(--color-info-alternative)
var(--color-info-muted)
var(--color-info-inverse)
var(--color-info-disabled)
```
### **Component colors** (tier 3)
Another level of abstraction is component tier colors that you can define at the top of your styles and use at the component specific level.
- Do not use static HEX values in your code. Use the [theme colors](#theme-colors-tier-2). If one does not exist for your use case ask the designer or [create an issue](https://github.com/MetaMask/metamask-extension/issues/new) and tag it with a `design-system` label.
- Make sure the design token you are using is for it's intended purpose. Please refer to the description of each token in [@metamask/design-tokens](https://github.com/MetaMask/design-tokens/blob/main/src/figma/tokens.json#L329-L554).
### ❌ Don't do this
Don't use static hex values or brand color tokens in your code.
```css
/**
* Don't do this
* Static hex values create inconsistency and will break UI when using dark mode
**/
.card {
background-color: #ffffff;
color: #24272a;
}
/**
* Don't do this
* Not theme compatible and will break UI when using dark theme
"description":"This swap provides developers everywhere access to an entirely new data storage paradigm, even letting your programs store data autonomously. Learn more.",
"message":"Версия, център за поддръжка и информация за контакт"
},
"acceleratingATransaction":{
"acceleratingATransaction":{
"message":"* Ускоряването на транзакция чрез използване на по-висока цена на газа увеличава шансовете й да се обработва по-бързо от мрежата, но това не винаги е гарантирано."
"message":"* Ускоряването на транзакция чрез използване на по-висока цена на газа увеличава шансовете й да се обработва по-бързо от мрежата, но това не винаги е гарантирано."
},
},
@ -62,9 +59,6 @@
"advancedOptions":{
"advancedOptions":{
"message":"Разширени опции"
"message":"Разширени опции"
},
},
"advancedSettingsDescription":{
"message":"Достъп до функции за разработчици, изтегляйте дневници, нулиране на акаунта, тестови мрежи за настройка и персонализиран RPC"
},
"amount":{
"amount":{
"message":"Сума"
"message":"Сума"
},
},
@ -145,9 +139,6 @@
"message":"Преглед на акаунт на $1",
"message":"Преглед на акаунт на $1",
"description":"$1 replaced by URL for custom block explorer"
"description":"$1 replaced by URL for custom block explorer"
},
},
"blockiesIdenticon":{
"message":"Използване на Blockies Identicon"
},
"browserNotSupported":{
"browserNotSupported":{
"message":"Браузърът ви не се поддържа ..."
"message":"Браузърът ви не се поддържа ..."
},
},
@ -416,9 +407,6 @@
"general":{
"general":{
"message":"Общ"
"message":"Общ"
},
},
"generalSettingsDescription":{
"message":"Конвертиране на валута, първична валута, език, блокчейн идентичност"
},
"getEther":{
"getEther":{
"message":"Вземете етер"
"message":"Вземете етер"
},
},
@ -593,9 +581,6 @@
"networkName":{
"networkName":{
"message":"Име на мрежата"
"message":"Име на мрежата"
},
},
"networkSettingsDescription":{
"message":"Добавете и редактирайте персонализирани RPC мрежи"
},
"networks":{
"networks":{
"message":"Mрежи"
"message":"Mрежи"
},
},
@ -776,9 +761,6 @@
"restore":{
"restore":{
"message":"Възстановяване"
"message":"Възстановяване"
},
},
"restoreAccountWithSeed":{
"message":"Възстановете акаунта си с фраза зародиш"
},
"revealSeedWords":{
"revealSeedWords":{
"message":"Разкрий думите зародиш"
"message":"Разкрий думите зародиш"
},
},
@ -830,9 +812,6 @@
"securityAndPrivacy":{
"securityAndPrivacy":{
"message":"Сигурност и поверителност"
"message":"Сигурност и поверителност"
},
},
"securitySettingsDescription":{
"message":"Настройки за поверителност и фраза зародиш за портфейла"
"message":"সংস্করণ, সহায়তা কেন্দ্র, এবং যোগাযোগের তথ্য।"
},
"acceleratingATransaction":{
"acceleratingATransaction":{
"message":"* একটি উচ্চতর গ্যাসের মূল্য ব্যবহার করে একটি লেনদেনের গতি বৃদ্ধি নেটওয়ার্কের দ্বারা সেটির প্রক্রিয়াকরণ দ্রুততর হওয়ার সম্ভাবনা বৃদ্ধি করে, কিন্তু সবসময় সেটির নিশ্চয়তা দেওয়া যায় না।"
"message":"* একটি উচ্চতর গ্যাসের মূল্য ব্যবহার করে একটি লেনদেনের গতি বৃদ্ধি নেটওয়ার্কের দ্বারা সেটির প্রক্রিয়াকরণ দ্রুততর হওয়ার সম্ভাবনা বৃদ্ধি করে, কিন্তু সবসময় সেটির নিশ্চয়তা দেওয়া যায় না।"
"message":"Versió, centre de suport, i informació de contacte"
},
"acceleratingATransaction":{
"acceleratingATransaction":{
"message":"* Accelerar una transacció utilitzant un preu de gas més alt augmenta les possibilitats de ser processat més ràpidament per la xarxa, però no sempre es pot garantir."
"message":"* Accelerar una transacció utilitzant un preu de gas més alt augmenta les possibilitats de ser processat més ràpidament per la xarxa, però no sempre es pot garantir."
},
},
@ -62,9 +59,6 @@
"advancedOptions":{
"advancedOptions":{
"message":"Opcions Avançades"
"message":"Opcions Avançades"
},
},
"advancedSettingsDescription":{
"message":"Accedeix a característiques de desenvolupador, descarrega Registres d'Estat, Reinicia el Compte, instal·la testnets i personalitza RPC"
},
"amount":{
"amount":{
"message":"Quantitat"
"message":"Quantitat"
},
},
@ -145,9 +139,6 @@
"message":"Veure compte a $1 ",
"message":"Veure compte a $1 ",
"description":"$1 replaced by URL for custom block explorer"
"description":"$1 replaced by URL for custom block explorer"
},
},
"blockiesIdenticon":{
"message":"Fer servir els Identicon Blockies"
},
"browserNotSupported":{
"browserNotSupported":{
"message":"El teu navegador no és suportat..."
"message":"El teu navegador no és suportat..."
},
},
@ -410,9 +401,6 @@
"gasUsed":{
"gasUsed":{
"message":"Gas utilitzat"
"message":"Gas utilitzat"
},
},
"generalSettingsDescription":{
"message":"Conversió de divises, divisa principal, idioma, icones d'identificació única"
},
"getEther":{
"getEther":{
"message":"Aconsegueix Ether"
"message":"Aconsegueix Ether"
},
},
@ -581,9 +569,6 @@
"networkName":{
"networkName":{
"message":"Nom de la xarxa"
"message":"Nom de la xarxa"
},
},
"networkSettingsDescription":{
"message":"Afegeix i edita xarxes RPC a mida"
},
"networks":{
"networks":{
"message":"Xarxes"
"message":"Xarxes"
},
},
@ -758,9 +743,6 @@
"restore":{
"restore":{
"message":"Restaura"
"message":"Restaura"
},
},
"restoreAccountWithSeed":{
"message":"Restaura el teu compte amb Frase de Recuperació"
},
"revealSeedWords":{
"revealSeedWords":{
"message":"Revelar Paraules de Recuperació"
"message":"Revelar Paraules de Recuperació"
},
},
@ -812,9 +794,6 @@
"securityAndPrivacy":{
"securityAndPrivacy":{
"message":"Seguretat i privacitat"
"message":"Seguretat i privacitat"
},
},
"securitySettingsDescription":{
"message":"Configuració de privacitat i frase de recuperació del moneder"
"message":"Version, supportcenter og kontaktinformation"
},
"acceleratingATransaction":{
"acceleratingATransaction":{
"message":"* At gøre din transaktion hurtigere ved at bruge en højere Gas-priser, øger dennes chancer for at blive behandlet af netværket hurtigere, men det er ikke altid garanteret."
"message":"* At gøre din transaktion hurtigere ved at bruge en højere Gas-priser, øger dennes chancer for at blive behandlet af netværket hurtigere, men det er ikke altid garanteret."
},
},
@ -62,9 +59,6 @@
"advancedOptions":{
"advancedOptions":{
"message":"Avancerede Valgmuligheder"
"message":"Avancerede Valgmuligheder"
},
},
"advancedSettingsDescription":{
"message":"Få adgang til udviklerfunktioner, hent tilstandslogs, nulstil konto, opsæt testnetværk og brugerdefineret RPC"
},
"amount":{
"amount":{
"message":"Beløb"
"message":"Beløb"
},
},
@ -145,9 +139,6 @@
"message":"Se konto på $1",
"message":"Se konto på $1",
"description":"$1 replaced by URL for custom block explorer"
"description":"$1 replaced by URL for custom block explorer"
"message":"Έκδοση, κέντρο υποστήριξης και πληροφορίες επικοινωνίας"
},
"acceleratingATransaction":{
"acceleratingATransaction":{
"message":"* Η επιτάχυνση μιας συναλλαγής με τη χρήση υψηλότερης τιμής καυσίμου αυξάνει τις πιθανότητές της για ταχύτερη επεξεργασία από το δίκτυο, αλλά δεν είναι πάντοτε εγγυημένη."
"message":"* Η επιτάχυνση μιας συναλλαγής με τη χρήση υψηλότερης τιμής καυσίμου αυξάνει τις πιθανότητές της για ταχύτερη επεξεργασία από το δίκτυο, αλλά δεν είναι πάντοτε εγγυημένη."
},
},
@ -90,7 +87,7 @@
"message":"Δραστηριότητα"
"message":"Δραστηριότητα"
},
},
"activityLog":{
"activityLog":{
"message":"αρχείο καταγραφής δραστηριότητας"
"message":"Αρχείο καταγραφής δραστηριότητας"
},
},
"add":{
"add":{
"message":"Προσθήκη"
"message":"Προσθήκη"
@ -114,7 +111,7 @@
"message":"Προσθήκη Προσαρμοσμένου Token"
"message":"Προσθήκη Προσαρμοσμένου Token"
},
},
"addCustomTokenByContractAddress":{
"addCustomTokenByContractAddress":{
"message":"Αδυναμία εύρεσης token? Μπορείτε να προσθέσετε χειροκίνητα οποιοδήποτε διακριτικό επικολλώντας τη διεύθυνσή του. Οι διευθύνσεις συμβολαίων Token μπορούν να βρεθούν στο $1.",
"message":"Αδυναμία εύρεσης token; Μπορείτε να προσθέσετε χειροκίνητα οποιοδήποτε διακριτικό επικολλώντας τη διεύθυνσή του. Οι διευθύνσεις συμβολαίων Token μπορούν να βρεθούν στο $1.",
"description":"$1 is a blockchain explorer for a specific network, e.g. Etherscan for Ethereum"
"description":"$1 is a blockchain explorer for a specific network, e.g. Etherscan for Ethereum"
},
},
"addEthereumChainConfirmationDescription":{
"addEthereumChainConfirmationDescription":{
@ -185,9 +182,6 @@
"advancedPriorityFeeToolTip":{
"advancedPriorityFeeToolTip":{
"message":"Το τέλος προτεραιότητας (γνωστό και ως “miner tip”) πηγαίνει άμεσα στους miner και τους ενθαρρύνει να δώσουν προτεραιότητα στη συναλλαγή σας."
"message":"Το τέλος προτεραιότητας (γνωστό και ως “miner tip”) πηγαίνει άμεσα στους miner και τους ενθαρρύνει να δώσουν προτεραιότητα στη συναλλαγή σας."
},
},
"advancedSettingsDescription":{
"message":"Αποκτήστε πρόσβαση στις λειτουργίες του προγραμματιστή, κατεβάστε Αρχεία Καταγραφών Καταστάσεων, Επαναφέρετε τον Λογαριασμό, εγκαταστήστε δοκιμαστικά δίκτυα και προσαρμοσμένα RPC"
},
"affirmAgree":{
"affirmAgree":{
"message":"Συμφωνώ"
"message":"Συμφωνώ"
},
},
@ -207,14 +201,11 @@
"message":"Όταν μια ιστοσελίδα προσπαθεί να χρησιμοποιήσει το window.web3 API που έχει αφαιρεθεί"
"message":"Όταν μια ιστοσελίδα προσπαθεί να χρησιμοποιήσει το window.web3 API που έχει αφαιρεθεί"
},
},
"alertSettingsWeb3ShimUsageDescription":{
"alertSettingsWeb3ShimUsageDescription":{
"message":"Αυτή η ειδοποίηση εμφανίζεται στο αναδυόμενο παράθυρο όταν περιηγείστε σε μια ιστοσελίδα που προσπαθεί να χρησιμοποιήσει το window.web3 API που έχει αφαιρεθεί, και μπορεί, ως αποτέλεσμα, να μην λειτουργεί."
"message":"Αυτή η ειδοποίηση εμφανίζεται στο αναδυόμενο παράθυρο όταν περιηγείστε σε μια ιστοσελίδα που προσπαθεί να χρησιμοποιήσει το window.web3 API που έχει αφαιρεθεί, και μπορεί, ως αποτέλεσμα, να μη λειτουργεί."
},
},
"alerts":{
"alerts":{
"message":"Ειδοποιήσεις"
"message":"Ειδοποιήσεις"
},
},
"alertsSettingsDescription":{
"message":"Ενεργοποίηση ή απενεργοποίηση κάθε ειδοποίησης"
},
"allowExternalExtensionTo":{
"allowExternalExtensionTo":{
"message":"Επιτρέψτε σε αυτή την εξωτερική επέκταση να:"
"message":"Επιτρέψτε σε αυτή την εξωτερική επέκταση να:"
"message":"Ρυθμίστε τον χρόνο αδράνειας σε λεπτά πριν αποσυνδεθεί αυτόματα το MetaMask"
"message":"Ρυθμίστε τον χρόνο αδράνειας σε λεπτά πριν αποσυνδεθεί αυτόματα το MetaMask."
},
},
"average":{
"average":{
"message":"Μέσος Όρος"
"message":"Μέσος Όρος"
@ -331,7 +322,7 @@
"message":"Βασικά"
"message":"Βασικά"
},
},
"betaMetamaskDescription":{
"betaMetamaskDescription":{
"message":"Αξιόπιστο για εκατομμύρια, MetaMask είναι ένα ασφαλές πορτοφόλι που καθιστά τον κόσμο του web3 προσβάσιμο σε όλους."
"message":"Αξιόπιστο για εκατομμύρια, το MetaMask είναι ένα ασφαλές πορτοφόλι που καθιστά τον κόσμο του web3 προσβάσιμο σε όλους."
},
},
"betaMetamaskDescriptionExplanation":{
"betaMetamaskDescriptionExplanation":{
"message":"Χρησιμοποιήστε αυτήν την έκδοση για να δοκιμάσετε τις επερχόμενες λειτουργίες πριν από την κυκλοφορία τους. Η χρήση και η ανατροφοδότηση σας μας βοηθούν να χτίσουμε την καλύτερη δυνατή έκδοση του MetaMask. Η χρήση του MetaMask Δοκιμαστική Έκδοση υπόκειται στα στάνταρ μας $1, καθώς και $2. Ως Δοκιμαστική Έκδοση, μπορεί να υπάρχει αυξημένος κίνδυνος σφαλμάτων. Συνεχίζοντας, αποδέχεστε και αναγνωρίζετε αυτούς τους κινδύνους, καθώς και τους κινδύνους που εντοπίζονται στους Όρους μας και τους Όρους Δοκιμαστικής Έκδοσης.",
"message":"Χρησιμοποιήστε αυτήν την έκδοση για να δοκιμάσετε τις επερχόμενες λειτουργίες πριν από την κυκλοφορία τους. Η χρήση και η ανατροφοδότηση σας μας βοηθούν να χτίσουμε την καλύτερη δυνατή έκδοση του MetaMask. Η χρήση του MetaMask Δοκιμαστική Έκδοση υπόκειται στα στάνταρ μας $1, καθώς και $2. Ως Δοκιμαστική Έκδοση, μπορεί να υπάρχει αυξημένος κίνδυνος σφαλμάτων. Συνεχίζοντας, αποδέχεστε και αναγνωρίζετε αυτούς τους κινδύνους, καθώς και τους κινδύνους που εντοπίζονται στους Όρους μας και τους Όρους Δοκιμαστικής Έκδοσης.",
@ -371,9 +362,6 @@
"message":"Προβολή λογαριασμού με $1",
"message":"Προβολή λογαριασμού με $1",
"description":"$1 replaced by URL for custom block explorer"
"description":"$1 replaced by URL for custom block explorer"
},
},
"blockiesIdenticon":{
"message":"Χρήση Αναπαράστασης Μπλοκ"
},
"browserNotSupported":{
"browserNotSupported":{
"message":"Το Πρόγραμμα Περιήγησής σας δεν υποστηρίζεται..."
"message":"Το Πρόγραμμα Περιήγησής σας δεν υποστηρίζεται..."
},
},
@ -551,9 +539,6 @@
"contacts":{
"contacts":{
"message":"Επαφές"
"message":"Επαφές"
},
},
"contactsSettingsDescription":{
"message":"Προσθέστε, επεξεργαστείτε, αφαιρέστε και διαχειριστείτε τις επαφές σας"
},
"continue":{
"continue":{
"message":"Συνέχεια"
"message":"Συνέχεια"
},
},
@ -728,7 +713,7 @@
"message":"Αποσύνδεση όλων των λογαριασμών"
"message":"Αποσύνδεση όλων των λογαριασμών"
},
},
"disconnectAllAccountsConfirmationDescription":{
"disconnectAllAccountsConfirmationDescription":{
"message":"Είστε βέβαιοι ότι θέλετε να αποσυνδεθείτε? Μπορεί να χάσετε τη λειτουργικότητα της ιστοσελίδας."
"message":"Είστε βέβαιοι ότι θέλετε να αποσυνδεθείτε; Μπορεί να χάσετε τη λειτουργικότητα της ιστοσελίδας."
},
},
"disconnectPrompt":{
"disconnectPrompt":{
"message":"Αποσύνδεση $1"
"message":"Αποσύνδεση $1"
@ -883,7 +868,7 @@
"message":"Η μέγιστη χρέωση ή το μέγιστο τέλος προτεραιότητας μπορεί να είναι χαμηλά για τις τρέχουσες συνθήκες της αγοράς. Δεν γνωρίζουμε πότε (ή εάν) η συναλλαγή σας θα επεξεργαστεί. "
"message":"Η μέγιστη χρέωση ή το μέγιστο τέλος προτεραιότητας μπορεί να είναι χαμηλά για τις τρέχουσες συνθήκες της αγοράς. Δεν γνωρίζουμε πότε (ή εάν) η συναλλαγή σας θα επεξεργαστεί. "
},
},
"editGasTooLowWarningTooltip":{
"editGasTooLowWarningTooltip":{
"message":"Αυτό μειώνει τη μέγιστη χρέωση αλλά αν η κίνηση δικτύου αυξήσει την συναλλαγή σας μπορεί να καθυστερήσει ή να αποτύχει."
"message":"Αυτό μειώνει τη μέγιστη χρέωση αλλά αν η κίνηση δικτύου αυξήσει τη συναλλαγή σας μπορεί να καθυστερήσει ή να αποτύχει."
},
},
"editNonceField":{
"editNonceField":{
"message":"Επεξεργασία Nonce"
"message":"Επεξεργασία Nonce"
@ -904,7 +889,7 @@
"message":"Ενεργοποίηση OpenSea API"
"message":"Ενεργοποίηση OpenSea API"
},
},
"enableOpenSeaAPIDescription":{
"enableOpenSeaAPIDescription":{
"message":"Χρήσιμοποιείστε το API OpenSea για λήψη δεδομένων NFT. Η αυτόματη ανίχνευση NFT βασίζεται στο API του OpenSea, και δεν θα είναι διαθέσιμη όταν αυτό είναι απενεργοποιημένο."
"message":"Χρησιμοποιήστε το API OpenSea για λήψη δεδομένων NFT. Η αυτόματη ανίχνευση NFT βασίζεται στο API του OpenSea, και δεν θα είναι διαθέσιμη όταν αυτό είναι απενεργοποιημένο."
"message":"Περάσατε τη δοκιμή - κρατήστε τη φράση φύτρου σας ασφαλή, είναι δική σας ευθύνη!"
"message":"Περάσατε τη δοκιμή - κρατήστε τη Μυστική Φράση Ανάκτησής σας ασφαλή, είναι δική σας ευθύνη!"
},
},
"endOfFlowMessage10":{
"endOfFlowMessage10":{
"message":"Όλα Έτοιμα"
"message":"Όλα Έτοιμα"
@ -933,17 +918,17 @@
"message":"Μην μοιράζεστε ποτέ τη φράση με κανέναν."
"message":"Μην μοιράζεστε ποτέ τη φράση με κανέναν."
},
},
"endOfFlowMessage5":{
"endOfFlowMessage5":{
"message":"Προσέξτε το ηλεκτρονικό \"ψάρεμα\"! Το MetaMask δεν θα ζητήσει ποτέ αυθόρμητα τη φράση φύτρου σας."
"message":"Προσέξτε το ηλεκτρονικό \"ψάρεμα\"! Το MetaMask δεν θα ζητήσει ποτέ από μόνο του τη Μυστική Φράση Ανάκτησής σας."
},
},
"endOfFlowMessage6":{
"endOfFlowMessage6":{
"message":"Αν χρειάζεται να δημιουργήσετε ξανά αντίγραφο της φράσης επαναφοράς σας, μπορείτε να την βρείτε στη Ρυθμίσεις -> Ασφάλεια."
"message":"Αν χρειάζεται να δημιουργήσετε ξανά αντίγραφο της φράσης επαναφοράς σας, μπορείτε να τη βρείτε στο Ρυθμίσεις -> Ασφάλεια."
},
},
"endOfFlowMessage7":{
"endOfFlowMessage7":{
"message":"Αν έχετε ποτέ ερωτήσεις ή δείτε κάτι ύποπτο, επικοινωνήστε με την υποστήριξή μας $1.",
"message":"Αν έχετε ποτέ ερωτήσεις ή δείτε κάτι ύποπτο, επικοινωνήστε με την υποστήριξή μας $1.",
"description":"$1 is a clickable link with text defined by the 'here' key. The link will open to a form where users can file support tickets."
"description":"$1 is a clickable link with text defined by the 'here' key. The link will open to a form where users can file support tickets."
},
},
"endOfFlowMessage8":{
"endOfFlowMessage8":{
"message":"Το MetaMask δεν μπορεί να ανακτήσει τη φράση φύτρου σας. Μάθετε περισσότερα."
"message":"Το MetaMask δεν μπορεί να ανακτήσει τη Μυστική Φράση Ανάκτησής σας. Μάθετε περισσότερα."
},
},
"endOfFlowMessage9":{
"endOfFlowMessage9":{
"message":"Μάθετε περισσότερα."
"message":"Μάθετε περισσότερα."
@ -1017,10 +1002,6 @@
"ethGasPriceFetchWarning":{
"ethGasPriceFetchWarning":{
"message":"Το εφεδρικό τέλος συναλλαγής που παρέχεται ως η κύρια υπηρεσία εκτίμησης τελών συναλλαγής, δεν είναι διαθέσιμο αυτή τη στιγμή."
"message":"Το εφεδρικό τέλος συναλλαγής που παρέχεται ως η κύρια υπηρεσία εκτίμησης τελών συναλλαγής, δεν είναι διαθέσιμο αυτή τη στιγμή."
},
},
"eth_accounts":{
"message":"Βλέπε διεύθυνση, υπόλοιπο λογαριασμού, δραστηριότητα και έναρξη συναλλαγών",
"description":"The description for the `eth_accounts` permission"
},
"ethereumPublicAddress":{
"ethereumPublicAddress":{
"message":"Δημόσια Διεύθυνση Ethereum"
"message":"Δημόσια Διεύθυνση Ethereum"
},
},
@ -1039,9 +1020,6 @@
"experimental":{
"experimental":{
"message":"Πειραματικό"
"message":"Πειραματικό"
},
},
"experimentalSettingsDescription":{
"message":"Εντοπισμός token & περισσότερα"
},
"exportPrivateKey":{
"exportPrivateKey":{
"message":"Εξαγωγή Ιδιωτικού Κλειδιού"
"message":"Εξαγωγή Ιδιωτικού Κλειδιού"
},
},
@ -1062,7 +1040,7 @@
"message":"Κάτι πήγε λάθος και δεν μπορέσαμε να ολοκληρώσουμε την ενέργεια"
"message":"Κάτι πήγε λάθος και δεν μπορέσαμε να ολοκληρώσουμε την ενέργεια"
},
},
"fakeTokenWarning":{
"fakeTokenWarning":{
"message":"Οποιοσδήποτε μπορεί να δημιουργήσει ένα token, συμπεριλαμβανομένης της δημιουργίας ψεύτικων εκδόσεων των υφιστάμενων tokens. Μάθετε περισσότερά γι'αυτό $1"
"message":"Οποιοσδήποτε μπορεί να δημιουργήσει ένα token, συμπεριλαμβανομένης της δημιουργίας ψεύτικων εκδόσεων των υφιστάμενων tokens. Μάθετε περισσότερα γι'αυτό $1"
"message":"Επιλέξτε ένα πορτοφόλι εξοπλισμού το οποίο θέλετε να χρησιμοποιήσετε με το MetaMask"
"message":"Επιλέξτε ένα πορτοφόλι εξοπλισμού το οποίο θέλετε να χρησιμοποιήσετε με το MetaMask."
},
},
"here":{
"here":{
"message":"εδώ",
"message":"εδώ",
@ -1298,18 +1273,11 @@
"importAccountError":{
"importAccountError":{
"message":"Σφάλμα εισαγωγής λογαριασμού."
"message":"Σφάλμα εισαγωγής λογαριασμού."
},
},
"importAccountLinkText":{
"message":"εισαγωγή χρησιμοποιώντας τη Μυστική Φράση Ανάκτησης"
},
"importAccountMsg":{
"importAccountMsg":{
"message":"Οι λογαριασμοί που εισάγονται δεν θα συσχετιστούν με τη φάση σπόρου του λογαριασμού σας MetaTask που δημιουργήθηκε αρχικά. Μάθετε περισσότερα για τους εισηγμένους λογαριασμούς"
"message":"Οι λογαριασμοί που εισάγονται δεν θα συσχετιστούν με τη Μυστική Φράση Ανάκτησης του λογαριασμού σας MetaTask που δημιουργήθηκε αρχικά. Μάθετε περισσότερα για τους εισηγμένους λογαριασμούς"
},
},
"importAccountSeedPhrase":{
"importAccountSeedPhrase":{
"message":"Εισαγωγή λογαριασμού με Φράση Φύτρου"
"message":"Εισαγωγή λογαριασμού με Μυστική Φράση Ανάκτησης"
},
"importAccountText":{
"message":"ή $1",
"description":"$1 represents the text from `importAccountLinkText` as a link"
},
},
"importExistingWalletDescription":{
"importExistingWalletDescription":{
"message":"Εισάγετε τη Μυστική Φράση Ανάκτησης (δλδ Seed Phrase) που σας δόθηκε όταν δημιουργήσατε το πορτοφόλι σας. $1",
"message":"Εισάγετε τη Μυστική Φράση Ανάκτησης (δλδ Seed Phrase) που σας δόθηκε όταν δημιουργήσατε το πορτοφόλι σας. $1",
@ -1347,7 +1315,7 @@
"description":"status showing that an account has been fully loaded into the keyring"
"description":"status showing that an account has been fully loaded into the keyring"
},
},
"infuraBlockedNotification":{
"infuraBlockedNotification":{
"message":"Το MetaMask δεν μπορεί να συνδεθεί με τον blockchain host. Ανασκόπηση πιθανών λόγων $1.",
"message":"Το MetaMask δεν μπορεί να συνδεθεί με τον εξυπηρετητή blockchain. Ανασκόπηση πιθανών λόγων $1.",
"description":"$1 is a clickable link with with text defined by the 'here' key"
"description":"$1 is a clickable link with with text defined by the 'here' key"
},
},
"initialTransactionConfirmed":{
"initialTransactionConfirmed":{
@ -1413,7 +1381,7 @@
"message":"Μη έγκυρο RPC URL"
"message":"Μη έγκυρο RPC URL"
},
},
"invalidSeedPhrase":{
"invalidSeedPhrase":{
"message":"Μη έγκυρη φράση φύτρου"
"message":"Μη έγκυρη Μυστική Φράση Ανάκτησής"
},
},
"ipfsGateway":{
"ipfsGateway":{
"message":"Πύλη IPFS"
"message":"Πύλη IPFS"
@ -1457,7 +1425,7 @@
"description":"$1 is link to cancel or speed up transactions"
"description":"$1 is link to cancel or speed up transactions"
},
},
"learnMore":{
"learnMore":{
"message":"Μάθε περισσότερα"
"message":"μάθε περισσότερα"
},
},
"learnMoreUpperCase":{
"learnMoreUpperCase":{
"message":"Μάθε περισσότερα"
"message":"Μάθε περισσότερα"
@ -1637,7 +1605,7 @@
"description":"The $1 is the bolded word 'Never', from 'metametricsCommitmentsBoldNever'"
"description":"The $1 is the bolded word 'Never', from 'metametricsCommitmentsBoldNever'"
},
},
"metametricsCommitmentsNeverIP":{
"metametricsCommitmentsNeverIP":{
"message":"Ποτέ δεν συλλέγεi την πλήρη IP διεύθυνσή σας"
"message":"Ποτέ δεν συλλέγει την πλήρη IP διεύθυνσή σας"
},
},
"metametricsCommitmentsNeverSell":{
"metametricsCommitmentsNeverSell":{
"message":"Ποτέ δεν πουλά δεδομένα για κέρδος. Ποτέ!"
"message":"Ποτέ δεν πουλά δεδομένα για κέρδος. Ποτέ!"
@ -1688,7 +1656,7 @@
"message":"Όνομα"
"message":"Όνομα"
},
},
"needHelp":{
"needHelp":{
"message":"Χρειάζεστε βοήθεια? Επικοινωνήστε με $1",
"message":"Χρειάζεστε βοήθεια; Επικοινωνήστε με $1",
"description":"$1 represents `needHelpLinkText`, the text which goes in the help link"
"description":"$1 represents `needHelpLinkText`, the text which goes in the help link"
},
},
"needHelpFeedback":{
"needHelpFeedback":{
@ -1734,9 +1702,6 @@
"networkSettingsChainIdDescription":{
"networkSettingsChainIdDescription":{
"message":"Το αναγνωριστικό αλυσίδας χρησιμοποιείται για την υπογραφή συναλλαγών. Πρέπει να ταιριάζει με το αναγνωριστικό αλυσίδας που επιστρέφεται από το δίκτυο. Μπορείτε να εισάγετε ένα δεκαδικό ή '0x'-προκαθορισμένο δεκαεξαδικό αριθμό, αλλά θα εμφανίσουμε τον αριθμό στο δεκαδικό σύστημα."
"message":"Το αναγνωριστικό αλυσίδας χρησιμοποιείται για την υπογραφή συναλλαγών. Πρέπει να ταιριάζει με το αναγνωριστικό αλυσίδας που επιστρέφεται από το δίκτυο. Μπορείτε να εισάγετε ένα δεκαδικό ή '0x'-προκαθορισμένο δεκαεξαδικό αριθμό, αλλά θα εμφανίσουμε τον αριθμό στο δεκαδικό σύστημα."
},
},
"networkSettingsDescription":{
"message":"Προσθήκη και επεξεργασία προσαρμοσμένων δικτύων RPC"
},
"networkStatus":{
"networkStatus":{
"message":"Κατάσταση δικτύου"
"message":"Κατάσταση δικτύου"
},
},
@ -1773,9 +1738,6 @@
"message":"Λογαριασμός $1",
"message":"Λογαριασμός $1",
"description":"Default name of next account to be created on create account screen"
"description":"Default name of next account to be created on create account screen"
},
},
"newCollectibleAddFailed":{
"message":"Το Collectible δεν προστέθηκε επειδή: $1"
},
"newCollectibleAddedMessage":{
"newCollectibleAddedMessage":{
"message":"Το Collectible προστέθηκε με επιτυχία!"
"message":"Το Collectible προστέθηκε με επιτυχία!"
},
},
@ -1832,7 +1794,7 @@
"message":"Δεν έχει ορισθεί καμιά διεύθυνση γ' αυτό το όνομα."
"message":"Δεν έχει ορισθεί καμιά διεύθυνση γ' αυτό το όνομα."
},
},
"noAlreadyHaveSeed":{
"noAlreadyHaveSeed":{
"message":"Όχι, έχω ήδη μια φράση φύτρου"
"message":"Όχι, έχω ήδη μια Μυστική Φράση Ανάκτησης"
},
},
"noConversionDateAvailable":{
"noConversionDateAvailable":{
"message":"Δεν Υπάρχει Διαθέσιμη Ημερομηνία Ισοτιμίας Μετατροπής Νομίσματος"
"message":"Δεν Υπάρχει Διαθέσιμη Ημερομηνία Ισοτιμίας Μετατροπής Νομίσματος"
@ -1871,7 +1833,7 @@
"message":"Όχι απασχολημένος"
"message":"Όχι απασχολημένος"
},
},
"notCurrentAccount":{
"notCurrentAccount":{
"message":"Είναι ο σωστός λογαριασμός? Είναι διαφορετικό από τον τρέχοντα επιλεγμένο λογαριασμό στο πορτοφόλι σας"
"message":"Είναι ο σωστός λογαριασμός; Είναι διαφορετικό από τον τρέχοντα επιλεγμένο λογαριασμό στο πορτοφόλι σας"
},
},
"notEnoughGas":{
"notEnoughGas":{
"message":"Δεν Υπάρχει Αρκετό Αέριο"
"message":"Δεν Υπάρχει Αρκετό Αέριο"
@ -1901,7 +1863,7 @@
"description":"The 'call to action' on the button, or link, of the 'Swap on Binance Smart Chain!' notification. Upon clicking, users will be taken to a page where then can swap tokens on Binance Smart Chain."
"description":"The 'call to action' on the button, or link, of the 'Swap on Binance Smart Chain!' notification. Upon clicking, users will be taken to a page where then can swap tokens on Binance Smart Chain."
},
},
"notifications4Description":{
"notifications4Description":{
"message":"Λάβετε τις καλύτερες τιμές για swaps token ακριβώς μέσα στο πορτοφόλι σας. Το MetaMask τώρα σας συνδέει με πολλαπλούς αποκεντρωμένα ανταλλακτήρια συναλλάγματος και επαγγελματίες διαμορφωτές της αγοράς για εξυπνη αλυσίδα Binance.",
"message":"Λάβετε τις καλύτερες τιμές για swaps token ακριβώς μέσα στο πορτοφόλι σας. Το MetaMask τώρα σας συνδέει με πολλαπλούς αποκεντρωμένα ανταλλακτήρια συναλλάγματος και επαγγελματίες διαμορφωτές της αγοράς για έξυπνη αλυσίδα Binance.",
"description":"Description of a notification in the 'See What's New' popup."
"description":"Description of a notification in the 'See What's New' popup."
},
},
"notifications4Title":{
"notifications4Title":{
@ -1917,7 +1879,7 @@
"description":"Description of a notification in the 'See What's New' popup. Describes the Ledger support update."
"description":"Description of a notification in the 'See What's New' popup. Describes the Ledger support update."
},
},
"notifications6DescriptionThree":{
"notifications6DescriptionThree":{
"message":"Όταν αλληλεπιδράτε με τον λογαριασμό σας Ledger στο MetaMask, θα ανοίξει μια νέα καρτέλα και θα σας ζητηθεί να ανοίξετε την εφαρμογή Ledger Live. Μόλις ανοίξει η εφαρμογή, θα σας ζητηθεί να επιτρέψετε μια σύνδεση WebSocket στο λογαριασμό σας MetaMask. Αυτό ήταν όλο!",
"message":"Όταν αλληλεπιδράτε με τον λογαριασμό σας Ledger στο MetaMask, θα ανοίξει μια νέα καρτέλα και θα σας ζητηθεί να ανοίξετε την εφαρμογή Ledger Live. Μόλις ανοίξει η εφαρμογή, θα σας ζητηθεί να επιτρέψετε μια σύνδεση WebSocket στον λογαριασμό σας MetaMask. Αυτό ήταν όλο!",
"description":"Description of a notification in the 'See What's New' popup. Describes the Ledger support update."
"description":"Description of a notification in the 'See What's New' popup. Describes the Ledger support update."
},
},
"notifications6DescriptionTwo":{
"notifications6DescriptionTwo":{
@ -1933,11 +1895,11 @@
"description":"Description of a notification in the 'See What's New' popup. Describes changes for ledger and EIP1559 in v10.1.0"
"description":"Description of a notification in the 'See What's New' popup. Describes changes for ledger and EIP1559 in v10.1.0"
},
},
"notifications7DescriptionTwo":{
"notifications7DescriptionTwo":{
"message":"Για να ολοκληρώσετε τις συναλλαγές στο Ethereum Mainnet, βεβαιωθείτε ότι η συσκευή Ledger έχει το πιο πρόσφατο firmware.",
"message":"Για να ολοκληρώσετε τις συναλλαγές στο Ethereum Mainnet, βεβαιωθείτε ότι η συσκευή Ledger έχει το πιο πρόσφατο υλισμικό.",
"description":"Description of a notification in the 'See What's New' popup. Describes the need to update ledger firmware."
"description":"Description of a notification in the 'See What's New' popup. Describes the need to update ledger firmware."
},
},
"notifications7Title":{
"notifications7Title":{
"message":"Ενημέρωση υλικολογισμικού Ledger",
"message":"Ενημέρωση υλισμικού Ledger",
"description":"Title for a notification in the 'See What's New' popup. Notifies ledger users of the need to update firmware."
"description":"Title for a notification in the 'See What's New' popup. Notifies ledger users of the need to update firmware."
},
},
"notifications8ActionText":{
"notifications8ActionText":{
@ -2085,7 +2047,7 @@
"description":"For importing an account from a private key"
"description":"For importing an account from a private key"
},
},
"pending":{
"pending":{
"message":"σε εκκρεμότητα"
"message":"Σε εκκρεμότητα"
},
},
"pendingTransactionInfo":{
"pendingTransactionInfo":{
"message":"Αυτή η συναλλαγή δεν θα επεξεργαστεί μέχρι να ολοκληρωθεί αυτή η συναλλαγή."
"message":"Αυτή η συναλλαγή δεν θα επεξεργαστεί μέχρι να ολοκληρωθεί αυτή η συναλλαγή."
@ -2100,6 +2062,10 @@
"permissionRequest":{
"permissionRequest":{
"message":"Αίτημα άδειας"
"message":"Αίτημα άδειας"
},
},
"permission_ethereumAccounts":{
"message":"Βλέπε διεύθυνση, υπόλοιπο λογαριασμού, δραστηριότητα και έναρξη συναλλαγών",
"description":"The description for the `eth_accounts` permission"
},
"permissions":{
"permissions":{
"message":"Άδειες"
"message":"Άδειες"
},
},
@ -2253,9 +2219,6 @@
"restore":{
"restore":{
"message":"Επαναφορά"
"message":"Επαναφορά"
},
},
"restoreAccountWithSeed":{
"message":"Επαναφέρετε τον Λογαριασμό σας με Φράση Επαναφοράς"
},
"restoreWalletPreferences":{
"restoreWalletPreferences":{
"message":"Βρέθηκε ένα αντίγραφο ασφαλείας των δεδομένων σας από το $1. Θα θέλατε να επαναφέρετε τις προτιμήσεις του πορτοφολιού σας;",
"message":"Βρέθηκε ένα αντίγραφο ασφαλείας των δεδομένων σας από το $1. Θα θέλατε να επαναφέρετε τις προτιμήσεις του πορτοφολιού σας;",
"description":"$1 is the date at which the data was backed up"
"description":"$1 is the date at which the data was backed up"
@ -2267,10 +2230,10 @@
"message":"Ένα token εδώ επαναχρησιμοποιεί ένα σύμβολο από ένα άλλο token που παρακολουθείτε, αυτό μπορεί να προκαλέσει σύγχυση ή να είναι παραπλανητικό."
"message":"Ένα token εδώ επαναχρησιμοποιεί ένα σύμβολο από ένα άλλο token που παρακολουθείτε, αυτό μπορεί να προκαλέσει σύγχυση ή να είναι παραπλανητικό."
"message":"Εάν αλλάξετε ποτέ προγράμματα περιήγησης ή μετακινήσετε υπολογιστές, θα χρειαστείτε αυτήν τη φράση φύτρου για να αποκτήσετε πρόσβαση στους λογαριασμούς σας. Αποθηκεύστε την κάπου με ασφάλεια και μυστικότητα."
"message":"Εάν αλλάξετε ποτέ προγράμματα περιήγησης ή μετακινήσετε υπολογιστές, θα χρειαστείτε αυτήν τη Μυστική Φράση Ανάκτησης για να αποκτήσετε πρόσβαση στους λογαριασμούς σας. Αποθηκεύστε την κάπου με ασφάλεια και μυστικότητα."
},
},
"revealSeedWordsWarning":{
"revealSeedWordsWarning":{
"message":"Αυτές οι λέξεις μπορούν να χρησιμοποιηθούν για να κλαπούν όλοι οι λογαριασμοί σας."
"message":"Αυτές οι λέξεις μπορούν να χρησιμοποιηθούν για να κλαπούν όλοι οι λογαριασμοί σας."
@ -2323,9 +2286,6 @@
"secretPhrase":{
"secretPhrase":{
"message":"Μόνο ο πρώτος λογαριασμός σε αυτό το πορτοφόλι θα φορτώσει αυτόματα. Μετά την ολοκλήρωση αυτής της διαδικασίας, για να προσθέσετε επιπλέον λογαριασμούς, κάντε κλικ στο αναπτυσσόμενο μενού και, στη συνέχεια, επιλέξτε Δημιουργία Λογαριασμού."
"message":"Μόνο ο πρώτος λογαριασμός σε αυτό το πορτοφόλι θα φορτώσει αυτόματα. Μετά την ολοκλήρωση αυτής της διαδικασίας, για να προσθέσετε επιπλέον λογαριασμούς, κάντε κλικ στο αναπτυσσόμενο μενού και, στη συνέχεια, επιλέξτε Δημιουργία Λογαριασμού."
},
},
"secretPhraseWarning":{
"message":"Αν κάνετε επαναφορά χρησιμοποιώντας μια άλλη Μυστική Φράση Ανάκτησης, το τρέχον πορτοφόλι, οι λογαριασμοί και τα περιουσιακά στοιχεία σας θα αφαιρεθούν από αυτή την εφαρμογή μόνιμα. Αυτή η ενέργεια δεν μπορεί να αναιρεθεί."
},
"secretRecoveryPhrase":{
"secretRecoveryPhrase":{
"message":"Μυστική Φράση Ανάκτησης"
"message":"Μυστική Φράση Ανάκτησης"
},
},
@ -2335,9 +2295,6 @@
"securityAndPrivacy":{
"securityAndPrivacy":{
"message":"Ασφάλεια και Απόρρητο"
"message":"Ασφάλεια και Απόρρητο"
},
},
"securitySettingsDescription":{
"message":"Φάση ρυθμίσεων απορρήτου και σπόρου πορτοφολιού"
},
"seedPhraseConfirm":{
"seedPhraseConfirm":{
"message":"Επιβεβαίωση Μυστικής Φράσης Ανάκτησης"
"message":"Επιβεβαίωση Μυστικής Φράσης Ανάκτησης"
},
},
@ -2393,10 +2350,10 @@
"message":"Επικόλληση Μυστικής Φράσης Ανάκτησης από το πρόχειρο"
"message":"Επικόλληση Μυστικής Φράσης Ανάκτησης από το πρόχειρο"
},
},
"seedPhraseReq":{
"seedPhraseReq":{
"message":"Οι φράσεις φύτρου έχουν μήκος 12 λέξεων"
"message":"Οι Μυστικές Φράσεις Ανάκτησης έχουν μήκος 12 λέξεων"
},
},
"seedPhraseWriteDownDetails":{
"seedPhraseWriteDownDetails":{
"message":"Γράψτε αυτή τη Μυστική Φράση Ανάκτησης 12 λέξεων και αποθηκεύστε την σε ένα μέρος που εμπιστεύεστε και όπου μόνο εσείς μπορείτε να έχετε πρόσβαση."
"message":"Γράψτε αυτή τη Μυστική Φράση Ανάκτησης 12 λέξεων και αποθηκεύστε τη σε ένα μέρος που εμπιστεύεστε και όπου μόνο εσείς μπορείτε να έχετε πρόσβαση."
},
},
"seedPhraseWriteDownHeader":{
"seedPhraseWriteDownHeader":{
"message":"Γράψτε τη Μυστική Φράση Ανάκτησης σας"
"message":"Γράψτε τη Μυστική Φράση Ανάκτησης σας"
@ -2426,7 +2383,7 @@
"message":"Ενεργοποιήστε την ανίχνευση NFT στις Ρυθμίσεις"
"message":"Ενεργοποιήστε την ανίχνευση NFT στις Ρυθμίσεις"
},
},
"selectPathHelp":{
"selectPathHelp":{
"message":"Εάν δεν βλέπετε τους υπάρχοντες λογαριασμούς σας Καθολικού παρακάτω, προσπαθήστε να αλλάξετε τις διαδρομές σε \"Legacy (MEW / MyCrypto)\""
"message":"Εάν δεν βλέπετε τους αναμενόμενους λογαριασμούς, προσπαθήστε να αλλάξετε το μονοπάτι HD."
},
},
"selectType":{
"selectType":{
"message":"Επιλέξτε Τύπο"
"message":"Επιλέξτε Τύπο"
@ -2454,9 +2411,6 @@
"message":"Αποστολή $1",
"message":"Αποστολή $1",
"description":"$1 represents the native currency symbol for the current network (e.g. ETH or BNB)"
"description":"$1 represents the native currency symbol for the current network (e.g. ETH or BNB)"
},
},
"separateEachWord":{
"message":"Διαχωρίστε κάθε λέξη με ένα μόνο κενό"
},
"setAdvancedPrivacySettings":{
"setAdvancedPrivacySettings":{
"message":"Ορίστε ρυθμίσεις απορρήτου για προχωρημένους"
"message":"Ορίστε ρυθμίσεις απορρήτου για προχωρημένους"
},
},
@ -2545,7 +2499,7 @@
"message":"Παράλειψη Ασφάλειας Λογαριασμού;"
"message":"Παράλειψη Ασφάλειας Λογαριασμού;"
},
},
"skipAccountSecurityDetails":{
"skipAccountSecurityDetails":{
"message":"Καταλαβαίνω ότι μέχρι να δημιουργήσω αντίγραφα ασφαλείας για την Μυστική Φράση Ανάκτησής μου, μπορεί να χάσω τους λογαριασμούς μου και όλα τα περιουσιακά στοιχεία τους."
"message":"Καταλαβαίνω ότι μέχρι να δημιουργήσω αντίγραφα ασφαλείας για τη Μυστική Φράση Ανάκτησής μου, μπορεί να χάσω τους λογαριασμούς μου και όλα τα περιουσιακά στοιχεία τους."
},
},
"slow":{
"slow":{
"message":"Αργά"
"message":"Αργά"
@ -2763,7 +2717,7 @@
"message":"Τα τέλη συναλλαγών στην προηγούμενη οθόνη μοιράζονται μεταξύ αυτών των δύο συναλλαγών."
"message":"Τα τέλη συναλλαγών στην προηγούμενη οθόνη μοιράζονται μεταξύ αυτών των δύο συναλλαγών."
},
},
"swapGasFeesSummary":{
"swapGasFeesSummary":{
"message":"Τα τέλη συναλλαγών καταβάλλονται σε κρυπτοminers που επεξεργάζονται συναλλαγές στο δίκτυο $1. Το MetaMask δεν επωφελείται από τα τέλη συναλλαγών.",
"message":"Τα τέλη συναλλαγών καταβάλλονται σε κρυπτο-miners που επεξεργάζονται συναλλαγές στο δίκτυο $1. Το MetaMask δεν επωφελείται από τα τέλη συναλλαγών.",
"description":"$1 is the selected network, e.g. Ethereum or BSC"
"description":"$1 is the selected network, e.g. Ethereum or BSC"
},
},
"swapHighSlippageWarning":{
"swapHighSlippageWarning":{
@ -2783,7 +2737,7 @@
"message":"Τέλος MetaMask"
"message":"Τέλος MetaMask"
},
},
"swapMetaMaskFeeDescription":{
"swapMetaMaskFeeDescription":{
"message":"Βρίσκουμε την καλύτερη τιμή από τις κορυφαίες πηγές ρευστότητας, κάθε φορά. Μια αμοιβή $1% λαμβάνεται αυτόματα υπόψη σε αυτή τη προσφορά.",
"message":"Βρίσκουμε την καλύτερη τιμή από τις κορυφαίες πηγές ρευστότητας, κάθε φορά. Μια αμοιβή $1% λαμβάνεται αυτόματα υπόψη σε αυτή την προσφορά.",
"description":"Provides information about the fee that metamask takes for swaps. $1 is a decimal number."
"description":"Provides information about the fee that metamask takes for swaps. $1 is a decimal number."
},
},
"swapNQuotesWithDot":{
"swapNQuotesWithDot":{
@ -2795,7 +2749,7 @@
"description":"Tells the user the amount of time until the currently displayed quotes are update. $1 is a time that is counting down from 1:00 to 0:00"
"description":"Tells the user the amount of time until the currently displayed quotes are update. $1 is a time that is counting down from 1:00 to 0:00"
},
},
"swapOnceTransactionHasProcess":{
"swapOnceTransactionHasProcess":{
"message":"Το $1 σας θα προστεθεί στο λογαριασμό σας μόλις ολοκληρωθεί αυτή η συναλλαγή.",
"message":"Το $1 σας θα προστεθεί στον λογαριασμό σας μόλις ολοκληρωθεί αυτή η συναλλαγή.",
"description":"This message communicates the token that is being transferred. It is shown on the awaiting swap screen. The $1 will be a token symbol."
"description":"This message communicates the token that is being transferred. It is shown on the awaiting swap screen. The $1 will be a token symbol."
},
},
"swapPriceDifference":{
"swapPriceDifference":{
@ -2824,10 +2778,6 @@
"swapQuoteDetailsSlippageInfo":{
"swapQuoteDetailsSlippageInfo":{
"message":"Εάν η τιμή αλλάζει μεταξύ της ώρας που τοποθετείται η παραγγελία σας και επιβεβαιώνεται ονομάζεται \"ολίσθηση\". Η ανταλλαγή σας θα ακυρωθεί αυτόματα αν η ολίσθηση υπερβαίνει τη ρύθμιση \"ανοχή ολίσθησης\"."
"message":"Εάν η τιμή αλλάζει μεταξύ της ώρας που τοποθετείται η παραγγελία σας και επιβεβαιώνεται ονομάζεται \"ολίσθηση\". Η ανταλλαγή σας θα ακυρωθεί αυτόματα αν η ολίσθηση υπερβαίνει τη ρύθμιση \"ανοχή ολίσθησης\"."
},
},
"swapQuoteNofN":{
"message":"Προσφορά $1 από $2",
"description":"A count of loaded quotes shown to the user while they are waiting for quotes to be fetched. $1 is the number of quotes already loaded, and $2 is the total number of quotes to load."
},
"swapQuoteSource":{
"swapQuoteSource":{
"message":"Πηγή προσφοράς"
"message":"Πηγή προσφοράς"
},
},
@ -2901,7 +2851,7 @@
"message":"για επιβεβαίωση με το υλικό πορτοφόλι σας"
"message":"για επιβεβαίωση με το υλικό πορτοφόλι σας"
},
},
"swapTokenAvailable":{
"swapTokenAvailable":{
"message":"Το $1 σας έχει προστεθεί στο λογαριασμό σας.",
"message":"Το $1 σας έχει προστεθεί στον λογαριασμό σας.",
"description":"This message is shown after a swap is successful and communicates the exact amount of tokens the user has received for a swap. The $1 is a decimal number of tokens followed by the token symbol."
"description":"This message is shown after a swap is successful and communicates the exact amount of tokens the user has received for a swap. The $1 is a decimal number of tokens followed by the token symbol."
},
},
"swapTokenBalanceUnavailable":{
"swapTokenBalanceUnavailable":{
@ -3036,7 +2986,7 @@
"message":"Έλεγχος Βαλβίδας"
"message":"Έλεγχος Βαλβίδας"
},
},
"thisWillCreate":{
"thisWillCreate":{
"message":"Αυτό θα δημιουργήσει ένα νέο πορτοφόλι και φράση φύτρου"
"message":"Αυτό θα δημιουργήσει ένα νέο πορτοφόλι και Μυστική Φράση Ανάκτησης"
},
},
"time":{
"time":{
"message":"Ώρα"
"message":"Ώρα"
@ -3071,7 +3021,7 @@
"message":"Νέο! Η βελτιωμένη ανίχνευση token είναι διαθέσιμη στο Ethereum Mainnet ως πειραματικό χαρακτηριστικό. $1"
"message":"Νέο! Η βελτιωμένη ανίχνευση token είναι διαθέσιμη στο Ethereum Mainnet ως πειραματικό χαρακτηριστικό. $1"
},
},
"tokenSymbol":{
"tokenSymbol":{
"message":"Σύμβολο Διακριτικού"
"message":"Σύμβολο Token"
},
},
"tooltipApproveButton":{
"tooltipApproveButton":{
"message":"Καταλαβαίνω"
"message":"Καταλαβαίνω"
@ -3125,7 +3075,7 @@
"message":"Τα τέλη συναλλαγών καθορίζονται από το δίκτυο και θα αυξάνονται ανάλογα με την κυκλοφορία του δικτύου και την πολυπλοκότητα των συναλλαγών."
"message":"Τα τέλη συναλλαγών καθορίζονται από το δίκτυο και θα αυξάνονται ανάλογα με την κυκλοφορία του δικτύου και την πολυπλοκότητα των συναλλαγών."
},
},
"transactionDetailGasTooltipIntro":{
"transactionDetailGasTooltipIntro":{
"message":"Τα τέλη συναλλαγών καταβάλλονται σε κρυπτοminers που επεξεργάζονται συναλλαγές στο δίκτυο $1. Το MetaMask δεν επωφελείται από τα τέλη συναλλαγών."
"message":"Τα τέλη συναλλαγών καταβάλλονται σε κρυπτο-miners που επεξεργάζονται συναλλαγές στο δίκτυο $1. Το MetaMask δεν επωφελείται από τα τέλη συναλλαγών."
},
},
"transactionDetailGasTotalSubtitle":{
"transactionDetailGasTotalSubtitle":{
"message":"Ποσό + τέλος συναλλαγής"
"message":"Ποσό + τέλος συναλλαγής"
@ -3236,7 +3186,7 @@
"message":"Παρουσιάστηκε σφάλμα κατά την προσπάθεια πρόσβασης στην κάμερά σας. Παρακαλούμε προσπαθήστε πάλι..."
"message":"Παρουσιάστηκε σφάλμα κατά την προσπάθεια πρόσβασης στην κάμερά σας. Παρακαλούμε προσπαθήστε πάλι..."
},
},
"unknownCameraErrorTitle":{
"unknownCameraErrorTitle":{
"message":"Ουπς! Κάτι πήγε στραβά..."
"message":"Ουπς! Κάτι πήγε στραβά...."
},
},
"unknownNetwork":{
"unknownNetwork":{
"message":"Άγνωστο Ιδιωτικό Δίκτυο"
"message":"Άγνωστο Ιδιωτικό Δίκτυο"
@ -3369,9 +3319,6 @@
"walletCreationSuccessTitle":{
"walletCreationSuccessTitle":{
"message":"Επιτυχής δημιουργία πορτοφολιού"
"message":"Επιτυχής δημιουργία πορτοφολιού"
},
},
"walletSeedRestore":{
"message":"Μυστικής Φράσης Ανάκτησης Πορτοφολιού"
},
"web3ShimUsageNotification":{
"web3ShimUsageNotification":{
"message":"Παρατηρήσαμε ότι η τρέχουσα ιστοσελίδα προσπάθησε να χρησιμοποιήσει το αφαιρεθέν window.web3 API. Αν η ιστοσελίδα φαίνεται να έχει παραβιαστεί, κάντε κλικ στο $1 για περισσότερες πληροφορίες.",
"message":"Παρατηρήσαμε ότι η τρέχουσα ιστοσελίδα προσπάθησε να χρησιμοποιήσει το αφαιρεθέν window.web3 API. Αν η ιστοσελίδα φαίνεται να έχει παραβιαστεί, κάντε κλικ στο $1 για περισσότερες πληροφορίες.",
"message":"Version, support center, and contact info"
},
"acceleratingATransaction":{
"acceleratingATransaction":{
"message":"* Accelerating a transaction by using a higher gas price increases its chances of getting processed by the network faster, but it is not always guaranteed."
"message":"* Accelerating a transaction by using a higher gas price increases its chances of getting processed by the network faster, but it is not always guaranteed."
},
},
@ -70,6 +67,9 @@
"accountDetails":{
"accountDetails":{
"message":"Account details"
"message":"Account details"
},
},
"accountIdenticon":{
"message":"Account Identicon"
},
"accountName":{
"accountName":{
"message":"Account Name"
"message":"Account Name"
},
},
@ -98,6 +98,9 @@
"addANetwork":{
"addANetwork":{
"message":"Add a network"
"message":"Add a network"
},
},
"addANetworkManually":{
"message":"Add a network manually"
},
"addANickname":{
"addANickname":{
"message":"Add a nickname"
"message":"Add a nickname"
},
},
@ -137,6 +140,9 @@
"addFriendsAndAddresses":{
"addFriendsAndAddresses":{
"message":"Add friends and addresses you trust"
"message":"Add friends and addresses you trust"
},
},
"addFromAListOfPopularNetworks":{
"message":"Add from a list of popular networks or add a network manually. Only interact with the entities you trust."
},
"addMemo":{
"addMemo":{
"message":"Add memo"
"message":"Add memo"
},
},
@ -185,15 +191,18 @@
"advancedPriorityFeeToolTip":{
"advancedPriorityFeeToolTip":{
"message":"Priority fee (aka “miner tip”) goes directly to miners and incentivizes them to prioritize your transaction."
"message":"Priority fee (aka “miner tip”) goes directly to miners and incentivizes them to prioritize your transaction."
},
},
"advancedSettingsDescription":{
"message":"Access developer features, download State Logs, Reset Account, setup test networks and custom RPC"
},
"affirmAgree":{
"affirmAgree":{
"message":"I Agree"
"message":"I Agree"
},
},
"aggregatorFeeCost":{
"aggregatorFeeCost":{
"message":"Aggregator network fee"
"message":"Aggregator network fee"
},
},
"airgapVault":{
"message":"AirGap Vault"
},
"airgapVaultTutorial":{
"message":" (Tutorials)"
},
"alertDisableTooltip":{
"alertDisableTooltip":{
"message":"This can be changed in \"Settings > Alerts\""
"message":"This can be changed in \"Settings > Alerts\""
},
},
@ -212,9 +221,6 @@
"alerts":{
"alerts":{
"message":"Alerts"
"message":"Alerts"
},
},
"alertsSettingsDescription":{
"message":"Enable or disable each alert"
},
"allowExternalExtensionTo":{
"allowExternalExtensionTo":{
"message":"Allow this external extension to:"
"message":"Allow this external extension to:"
},
},
@ -257,6 +263,9 @@
"approve":{
"approve":{
"message":"Approve spend limit"
"message":"Approve spend limit"
},
},
"approveAndInstall":{
"message":"Approve & Install"
},
"approveButtonText":{
"approveButtonText":{
"message":"Approve"
"message":"Approve"
},
},
@ -270,6 +279,12 @@
"approvedAmountWithColon":{
"approvedAmountWithColon":{
"message":"Approved amount:"
"message":"Approved amount:"
},
},
"areYouDeveloper":{
"message":"Are you a developer?"
},
"areYouSure":{
"message":"Are you sure?"
},
"asset":{
"asset":{
"message":"Asset"
"message":"Asset"
},
},
@ -371,8 +386,8 @@
"message":"View account at $1",
"message":"View account at $1",
"description":"$1 replaced by URL for custom block explorer"
"description":"$1 replaced by URL for custom block explorer"
},
},
"blockiesIdenticon":{
"blockies":{
"message":"Use Blockies Identicon"
"message":"Blockies"
},
},
"browserNotSupported":{
"browserNotSupported":{
"message":"Your Browser is not supported..."
"message":"Your Browser is not supported..."
@ -397,6 +412,13 @@
"message":"Transak supports debit card and bank transfers (depending on location) in 59+ countries. $1 deposits into your MetaMask account.",
"message":"Transak supports debit card and bank transfers (depending on location) in 59+ countries. $1 deposits into your MetaMask account.",
"description":"$1 represents the cypto symbol to be purchased"
"description":"$1 represents the cypto symbol to be purchased"
},
},
"buyEth":{
"message":"Buy ETH"
},
"buyOther":{
"message":"Buy $1 or deposit from another account.",
"description":"$1 is a token symbol"
},
"buyWithWyre":{
"buyWithWyre":{
"message":"Buy ETH with Wyre"
"message":"Buy ETH with Wyre"
},
},
@ -429,6 +451,9 @@
"message":"To $1 a transaction the gas fee must be increased by at least 10% for it to be recognized by the network.",
"message":"To $1 a transaction the gas fee must be increased by at least 10% for it to be recognized by the network.",
"description":"$1 is string 'cancel' or 'speed up'"
"description":"$1 is string 'cancel' or 'speed up'"
},
},
"cancelSwap":{
"message":"Cancel swap"
},
"cancellationGasFee":{
"cancellationGasFee":{
"message":"Cancellation Gas Fee"
"message":"Cancellation Gas Fee"
},
},
@ -444,6 +469,10 @@
"chainIdExistsErrorMsg":{
"chainIdExistsErrorMsg":{
"message":"This Chain ID is currently used by the $1 network."
"message":"This Chain ID is currently used by the $1 network."
},
},
"chainListReturnedDifferentTickerSymbol":{
"message":"The network with chain ID $1 may use a different currency symbol ($2) than the one you have entered. Please verify before continuing.",
"description":"$1 is the chain id currently entered in the network form and $2 is the return value of nativeCurrency.symbol from chainlist.network"
},
"chromeRequiredForHardwareWallets":{
"chromeRequiredForHardwareWallets":{
"message":"You need to use MetaMask on Google Chrome in order to connect to your Hardware Wallet."
"message":"You need to use MetaMask on Google Chrome in order to connect to your Hardware Wallet."
},
},
@ -457,6 +486,9 @@
"close":{
"close":{
"message":"Close"
"message":"Close"
},
},
"collectibleAddFailedMessage":{
"message":"NFT can’t be added as the ownership details do not match. Make sure you have entered correct information."
},
"collectibleAddressError":{
"collectibleAddressError":{
"message":"This token is an NFT. Add on the $1",
"message":"This token is an NFT. Add on the $1",
"description":"$1 is a clickable link with text defined by the 'importNFTPage' key"
"description":"$1 is a clickable link with text defined by the 'importNFTPage' key"
@ -544,6 +576,10 @@
"message":"$1 is not connected to any sites.",
"message":"$1 is not connected to any sites.",
"description":"$1 is the account name"
"description":"$1 is the account name"
},
},
"connectedSnapSites":{
"message":"$1 snap is connected to these sites. They have access to the permissions listed above.",
"description":"$1 represents the name of the snap"
},
"connecting":{
"connecting":{
"message":"Connecting..."
"message":"Connecting..."
},
},
@ -571,9 +607,6 @@
"contacts":{
"contacts":{
"message":"Contacts"
"message":"Contacts"
},
},
"contactsSettingsDescription":{
"message":"Add, edit, remove, and manage your contacts"
},
"continue":{
"continue":{
"message":"Continue"
"message":"Continue"
},
},
@ -680,12 +713,18 @@
"customGasSubTitle":{
"customGasSubTitle":{
"message":"Increasing fee may decrease processing times, but it is not guaranteed."
"message":"Increasing fee may decrease processing times, but it is not guaranteed."
},
},
"customNetworks":{
"message":"Custom networks"
},
"customSpendLimit":{
"customSpendLimit":{
"message":"Custom Spend Limit"
"message":"Custom Spend Limit"
},
},
"customToken":{
"customToken":{
"message":"Custom Token"
"message":"Custom Token"
},
},
"customerSupport":{
"message":"customer support"
},
"dappSuggested":{
"dappSuggested":{
"message":"Site suggested"
"message":"Site suggested"
},
},
@ -974,6 +1013,9 @@
"enableOpenSeaAPIDescription":{
"enableOpenSeaAPIDescription":{
"message":"Use OpenSea's API to fetch NFT data. NFT auto-detection relies on OpenSea's API, and will not be available when this is turned off."
"message":"Use OpenSea's API to fetch NFT data. NFT auto-detection relies on OpenSea's API, and will not be available when this is turned off."
},
},
"enableSmartTransactions":{
"message":"Enable Smart Transactions"
},
"enableToken":{
"enableToken":{
"message":"enable $1",
"message":"enable $1",
"description":"$1 is a token symbol, e.g. ETH"
"description":"$1 is a token symbol, e.g. ETH"
@ -1017,7 +1059,7 @@
"message":"Learn more."
"message":"Learn more."
},
},
"endpointReturnedDifferentChainId":{
"endpointReturnedDifferentChainId":{
"message":"The endpoint returned a different chain ID: $1",
"message":"The RPC URL you have entered returned a different chain ID ($1). Please update the Chain ID to match the RPC URL of the network you are trying to add.",
"description":"$1 is the return value of eth_chainId from an RPC endpoint"
"description":"$1 is the return value of eth_chainId from an RPC endpoint"
},
},
"ensIllegalCharacter":{
"ensIllegalCharacter":{
@ -1085,10 +1127,6 @@
"ethGasPriceFetchWarning":{
"ethGasPriceFetchWarning":{
"message":"Backup gas price is provided as the main gas estimation service is unavailable right now."
"message":"Backup gas price is provided as the main gas estimation service is unavailable right now."
},
},
"eth_accounts":{
"message":"See address, account balance, activity and suggest transactions to approve",
"description":"The description for the `eth_accounts` permission"
},
"ethereumPublicAddress":{
"ethereumPublicAddress":{
"message":"Ethereum Public Address"
"message":"Ethereum Public Address"
},
},
@ -1101,15 +1139,15 @@
"etherscanViewOn":{
"etherscanViewOn":{
"message":"View on Etherscan"
"message":"View on Etherscan"
},
},
"expandExperience":{
"message":"Expand your web3 experience"
},
"expandView":{
"expandView":{
"message":"Expand view"
"message":"Expand view"
},
},
"experimental":{
"experimental":{
"message":"Experimental"
"message":"Experimental"
},
},
"experimentalSettingsDescription":{
"message":"Token detection & more"
},
"exportPrivateKey":{
"exportPrivateKey":{
"message":"Export Private Key"
"message":"Export Private Key"
},
},
@ -1126,6 +1164,9 @@
"failedToFetchChainId":{
"failedToFetchChainId":{
"message":"Could not fetch chain ID. Is your RPC URL correct?"
"message":"Could not fetch chain ID. Is your RPC URL correct?"
},
},
"failedToFetchTickerSymbolData":{
"message":"Ticker symbol verification data is currently unavailable, make sure that the symbol you have entered is correct. It will impact the conversion rates that you see for this network"
},
"failureMessage":{
"failureMessage":{
"message":"Something went wrong, and we were unable to complete the action"
"message":"Something went wrong, and we were unable to complete the action"
"message":"Imported accounts will not be associated with your originally created MetaMask account Secret Recovery Phrase. Learn more about imported accounts"
"message":"Imported accounts will not be associated with your originally created MetaMask account Secret Recovery Phrase. Learn more about imported accounts"
},
},
"importAccountSeedPhrase":{
"importAccountSeedPhrase":{
"message":"Import a wallet with Secret Recovery Phrase"
"message":"Import a wallet with Secret Recovery Phrase"
},
},
"importAccountText":{
"message":"or $1",
"description":"$1 represents the text from `importAccountLinkText` as a link"
},
"importExistingWalletDescription":{
"importExistingWalletDescription":{
"message":"Enter your Secret Recovery Phrase (aka Seed Phrase) that you were given when you created your wallet. $1",
"message":"Enter your Secret Recovery Phrase (aka Seed Phrase) that you were given when you created your wallet. $1",
"description":"$1 is the words 'Learn More' from key 'learnMore', separated here so that it can be added as a link"
"description":"$1 is the words 'Learn More' from key 'learnMore', separated here so that it can be added as a link"
@ -1462,6 +1502,10 @@
"insufficientBalance":{
"insufficientBalance":{
"message":"Insufficient balance."
"message":"Insufficient balance."
},
},
"insufficientCurrency":{
"message":"You do not have enough $1 in your account to pay for transaction fees on $2 network.",
"description":"$1 is currency, $2 is network"
},
"insufficientFunds":{
"insufficientFunds":{
"message":"Insufficient funds."
"message":"Insufficient funds."
},
},
@ -1530,6 +1574,12 @@
"ipfsGatewayDescription":{
"ipfsGatewayDescription":{
"message":"Enter the URL of the IPFS CID gateway to use for ENS content resolution."
"message":"Enter the URL of the IPFS CID gateway to use for ENS content resolution."
},
},
"jazzAndBlockies":{
"message":"Jazzicons and Blockies are two different styles of unique icons that help you identify an account at a glance."
},
"jazzicons":{
"message":"Jazzicons"
},
"jsDeliver":{
"jsDeliver":{
"message":"jsDeliver"
"message":"jsDeliver"
},
},
@ -1655,6 +1705,10 @@
"lockTimeTooGreat":{
"lockTimeTooGreat":{
"message":"Lock time is too great"
"message":"Lock time is too great"
},
},
"logo":{
"message":"$1 logo",
"description":"$1 is the name of the ticker"
},
"low":{
"low":{
"message":"Low"
"message":"Low"
},
},
@ -1681,6 +1735,12 @@
"message":"Make sure no one is watching your screen",
"message":"Make sure no one is watching your screen",
"description":"Warning to users to be care while creating and saving their new Secret Recovery Phrase"
"description":"Warning to users to be care while creating and saving their new Secret Recovery Phrase"
},
},
"malformedData":{
"message":"Malformed data"
},
"manageSnaps":{
"message":"Manage your installed Snaps"
},
"max":{
"max":{
"message":"Max"
"message":"Max"
},
},
@ -1787,6 +1847,12 @@
"missingNFT":{
"missingNFT":{
"message":"Don't see your NFT?"
"message":"Don't see your NFT?"
},
},
"missingSetting":{
"message":"Can't find a setting?"
},
"missingSettingRequest":{
"message":"Request here"
},
"missingToken":{
"missingToken":{
"message":"Don't see your token?"
"message":"Don't see your token?"
},
},
@ -1826,6 +1892,9 @@
"negativeETH":{
"negativeETH":{
"message":"Can not send negative amounts of ETH."
"message":"Can not send negative amounts of ETH."
},
},
"network":{
"message":"Network:"
},
"networkDetails":{
"networkDetails":{
"message":"Network Details"
"message":"Network Details"
},
},
@ -1859,9 +1928,6 @@
"networkSettingsChainIdDescription":{
"networkSettingsChainIdDescription":{
"message":"The chain ID is used for signing transactions. It must match the chain ID returned by the network. You can enter a decimal or '0x'-prefixed hexadecimal number, but we will display the number in decimal."
"message":"The chain ID is used for signing transactions. It must match the chain ID returned by the network. You can enter a decimal or '0x'-prefixed hexadecimal number, but we will display the number in decimal."
},
},
"networkSettingsDescription":{
"message":"Add and edit custom RPC networks"
},
"networkStatus":{
"networkStatus":{
"message":"Network status"
"message":"Network status"
},
},
@ -1898,9 +1964,6 @@
"message":"Account $1",
"message":"Account $1",
"description":"Default name of next account to be created on create account screen"
"description":"Default name of next account to be created on create account screen"
},
},
"newCollectibleAddFailed":{
"message":"Collectible was not added because: $1"
},
"newCollectibleAddedMessage":{
"newCollectibleAddedMessage":{
"message":"Collectible was successfully added!"
"message":"Collectible was successfully added!"
},
},
@ -1968,9 +2031,15 @@
"noNFTs":{
"noNFTs":{
"message":"No NFTs yet"
"message":"No NFTs yet"
},
},
"noSnaps":{
"message":"No Snaps installed"
},
"noThanks":{
"noThanks":{
"message":"No Thanks"
"message":"No Thanks"
},
},
"noThanksVariant2":{
"message":"No, thanks."
},
"noTransactions":{
"noTransactions":{
"message":"You have no transactions"
"message":"You have no transactions"
},
},
@ -2165,10 +2234,16 @@
"onlyConnectTrust":{
"onlyConnectTrust":{
"message":"Only connect with sites you trust."
"message":"Only connect with sites you trust."
},
},
"onlyInteractWith":{
"message":"Only interact with entities you trust."
},
"openFullScreenForLedgerWebHid":{
"openFullScreenForLedgerWebHid":{
"message":"Open MetaMask in full screen to connect your ledger via WebHID.",
"message":"Open MetaMask in full screen to connect your ledger via WebHID.",
"description":"Shown to the user on the confirm screen when they are viewing MetaMask in a popup window but need to connect their ledger via webhid."
"description":"Shown to the user on the confirm screen when they are viewing MetaMask in a popup window but need to connect their ledger via webhid."
},
},
"openSourceCode":{
"message":"Check the source code"
},
"optional":{
"optional":{
"message":"Optional"
"message":"Optional"
},
},
@ -2178,6 +2253,9 @@
"or":{
"or":{
"message":"or"
"message":"or"
},
},
"orDeposit":{
"message":"or deposit from another account."
},
"origin":{
"origin":{
"message":"Origin"
"message":"Origin"
},
},
@ -2225,6 +2303,37 @@
"permissionRequest":{
"permissionRequest":{
"message":"Permission request"
"message":"Permission request"
},
},
"permissionRequestCapitalized":{
"message":"Permission Request"
},
"permission_accessNetwork":{
"message":"Access the Internet.",
"description":"The description of the `endowment:network-access` permission."
},
"permission_accessSnap":{
"message":"Connect to the $1 Snap.",
"description":"The description for the `wallet_snap_*` permission. $1 is the name of the Snap."
},
"permission_customConfirmation":{
"message":"Display a confirmation in MetaMask.",
"description":"The description for the `snap_confirm` permission"
},
"permission_ethereumAccounts":{
"message":"See address, account balance, activity and suggest transactions to approve",
"description":"The description for the `eth_accounts` permission"
},
"permission_manageBip44Keys":{
"message":"Control your \"$1\" accounts and assets.",
"description":"The description for the `snap_getBip44Entropy_*` permission. $1 is the name of a protocol, e.g. 'Filecoin'."
},
"permission_manageState":{
"message":"Store and manage its data on your device.",
"description":"The description for the `snap_manageState` permission"
},
"permission_unknown":{
"message":"Unknown permission: $1",
"description":"$1 is the name of a requested permission that is not recognized."
},
"permissions":{
"permissions":{
"message":"Permissions"
"message":"Permissions"
},
},
@ -2239,6 +2348,9 @@
"message":"Preferred Ledger Connection Type",
"message":"Preferred Ledger Connection Type",
"description":"A header for a dropdown in the advanced section of settings. Appears above the ledgerConnectionPreferenceDescription message"
"description":"A header for a dropdown in the advanced section of settings. Appears above the ledgerConnectionPreferenceDescription message"
},
},
"preparingSwap":{
"message":"Preparing swap..."
},
"prev":{
"prev":{
"message":"Prev"
"message":"Prev"
},
},
@ -2285,6 +2397,12 @@
"queued":{
"queued":{
"message":"Queued"
"message":"Queued"
},
},
"reAddAccounts":{
"message":"re-add any other accounts"
},
"reAdded":{
"message":"re-added"
},
"readdToken":{
"readdToken":{
"message":"You can add this token back in the future by going to “Import token” in your accounts options menu."
"message":"You can add this token back in the future by going to “Import token” in your accounts options menu."
},
},
@ -2360,6 +2478,12 @@
"removeNFT":{
"removeNFT":{
"message":"Remove NFT"
"message":"Remove NFT"
},
},
"removeSnap":{
"message":"Remove Snap"
},
"removeSnapDescription":{
"message":"This action will delete the snap, its data and revoke your given permissions."
},
"replace":{
"replace":{
"message":"replace"
"message":"replace"
},
},
@ -2378,12 +2502,21 @@
"resetAccountDescription":{
"resetAccountDescription":{
"message":"Resetting your account will clear your transaction history. This will not change the balances in your accounts or require you to re-enter your Secret Recovery Phrase."
"message":"Resetting your account will clear your transaction history. This will not change the balances in your accounts or require you to re-enter your Secret Recovery Phrase."
},
},
"resetWallet":{
"message":"Reset Wallet"
},
"resetWalletSubHeader":{
"message":"MetaMask does not keep a copy of your password. If you’re having trouble unlocking your account, you will need to reset your wallet. You can do this by providing the Secret Recovery Phrase you used when you set up your wallet."
},
"resetWalletUsingSRP":{
"message":"This action will delete your current wallet and Secret Recovery Phrase from this device, along with the list of accounts you’ve curated. After resetting with a Secret Recovery Phrase, you’ll see a list of accounts based on the Secret Recovery Phrase you use to reset. This new list will automatically include accounts that have a balance. You’ll also be able to $1 created previously. Custom accounts that you’ve imported will need to be $2, and any custom tokens you’ve added to an account will need to be $3 as well."
},
"resetWalletWarning":{
"message":"Make sure you’re using the correct Secret Recovery Phrase before proceeding. You will not be able to undo this."
},
"restore":{
"restore":{
"message":"Restore"
"message":"Restore"
},
},
"restoreAccountWithSeed":{
"message":"Restore your Account with Secret Recovery Phrase"
},
"restoreWalletPreferences":{
"restoreWalletPreferences":{
"message":"A backup of your data from $1 has been found. Would you like to restore your wallet preferences?",
"message":"A backup of your data from $1 has been found. Would you like to restore your wallet preferences?",
"description":"$1 is the date at which the data was backed up"
"description":"$1 is the date at which the data was backed up"
@ -2439,6 +2572,9 @@
"searchResults":{
"searchResults":{
"message":"Search Results"
"message":"Search Results"
},
},
"searchSettings":{
"message":"Search in settings"
},
"searchTokens":{
"searchTokens":{
"message":"Search Tokens"
"message":"Search Tokens"
},
},
@ -2451,9 +2587,6 @@
"secretPhrase":{
"secretPhrase":{
"message":"Only the first account on this wallet will auto load. After completing this process, to add additional accounts, click the drop down menu, then select Create Account."
"message":"Only the first account on this wallet will auto load. After completing this process, to add additional accounts, click the drop down menu, then select Create Account."
},
},
"secretPhraseWarning":{
"message":"If you restore using another Secret Recovery Phrase, your current wallet, accounts and assets will be removed from this app permanently. This action cannot be undone."
},
"secretRecoveryPhrase":{
"secretRecoveryPhrase":{
"message":"Secret Recovery Phrase"
"message":"Secret Recovery Phrase"
},
},
@ -2463,9 +2596,6 @@
"securityAndPrivacy":{
"securityAndPrivacy":{
"message":"Security & Privacy"
"message":"Security & Privacy"
},
},
"securitySettingsDescription":{
"message":"Privacy settings and wallet Secret Recovery Phrase"
},
"seedPhraseConfirm":{
"seedPhraseConfirm":{
"message":"Confirm Secret Recovery Phrase"
"message":"Confirm Secret Recovery Phrase"
},
},
@ -2479,22 +2609,22 @@
"message":"Secure my wallet (recommended)"
"message":"Secure my wallet (recommended)"
},
},
"seedPhraseIntroSidebarBulletFour":{
"seedPhraseIntroSidebarBulletFour":{
"message":"Write down and store in multiple secret places."
"message":"Write down and store in multiple secret places"
},
},
"seedPhraseIntroSidebarBulletOne":{
"seedPhraseIntroSidebarBulletOne":{
"message":"Save in a password manager"
"message":"Save in a password manager"
},
},
"seedPhraseIntroSidebarBulletThree":{
"seedPhraseIntroSidebarBulletThree":{
"message":"Store in a safe-deposit box."
"message":"Store in a safe deposit box"
},
},
"seedPhraseIntroSidebarBulletTwo":{
"seedPhraseIntroSidebarBulletTwo":{
"message":"Store in a bank vault."
"message":"Store in a bank vault"
},
},
"seedPhraseIntroSidebarCopyOne":{
"seedPhraseIntroSidebarCopyOne":{
"message":"Your Secret Recovery Phrase is a 12-word phrase that is the “master key” to your wallet and your funds"
"message":"Your Secret Recovery Phrase is a 12-word phrase that is the “master key” to your wallet and your funds"
},
},
"seedPhraseIntroSidebarCopyThree":{
"seedPhraseIntroSidebarCopyThree":{
"message":"If someone asks for your recovery phrase they are likely trying to scam you and steal your wallet funds"
"message":"If someone asks for your recovery phrase they are likely trying to scam you and steal your wallet funds."
},
},
"seedPhraseIntroSidebarCopyTwo":{
"seedPhraseIntroSidebarCopyTwo":{
"message":"Never, ever share your Secret Recovery Phrase, not even with MetaMask!"
"message":"Never, ever share your Secret Recovery Phrase, not even with MetaMask!"
@ -2585,9 +2715,6 @@
"message":"Sending $1",
"message":"Sending $1",
"description":"$1 represents the native currency symbol for the current network (e.g. ETH or BNB)"
"description":"$1 represents the native currency symbol for the current network (e.g. ETH or BNB)"
},
},
"separateEachWord":{
"message":"Separate each word with a single space"
},
"setAdvancedPrivacySettings":{
"setAdvancedPrivacySettings":{
"message":"Set advanced privacy settings"
"message":"Set advanced privacy settings"
},
},
@ -2597,6 +2724,9 @@
"settings":{
"settings":{
"message":"Settings"
"message":"Settings"
},
},
"settingsSearchMatchingNotFound":{
"message":"No matching results found"
},
"show":{
"show":{
"message":"Show"
"message":"Show"
},
},
@ -2681,6 +2811,42 @@
"slow":{
"slow":{
"message":"Slow"
"message":"Slow"
},
},
"smartTransaction":{
"message":"Smart transaction"
},
"snapAccess":{
"message":"$1 snap has access to:",
"description":"$1 represents the name of the snap"
},
"snapError":{
"message":"Snap Error: '$1'. Error Code: '$2'",
"description":"This is shown when a snap encounters an error. $1 is the error message from the snap, and $2 is the error code."
},
"snapInstall":{
"message":"Install Snap"
},
"snapInstallWarningCheck":{
"message":"To confirm you understand, check all."
},
"snapInstallWarningKeyAccess":{
"message":"You are granting key access to the snap \"$1\". This is irrevocable and grants \"$1\" control of your accounts and assets. Make sure you trust \"$1\" before proceeding.",
"description":"The parameter is the name of the snap"
},
"snapRequestsPermission":{
"message":"This snap is requesting the following permissions:"
},
"snaps":{
"message":"Snaps"
},
"snapsSettingsDescription":{
"message":"Manage your Snaps"
},
"snapsStatus":{
"message":"Snap status is dependent on activity."
},
"snapsToggle":{
"message":"A snap will only run if it is enabled"
},
"somethingWentWrong":{
"somethingWentWrong":{
"message":"Oops! Something went wrong."
"message":"Oops! Something went wrong."
},
},
@ -2742,6 +2908,9 @@
"stateLogsDescription":{
"stateLogsDescription":{
"message":"State logs contain your public account addresses and sent transactions."
"message":"State logs contain your public account addresses and sent transactions."
},
},
"status":{
"message":"Status"
},
"statusConnected":{
"statusConnected":{
"message":"Connected"
"message":"Connected"
},
},
@ -2779,6 +2948,86 @@
"storePhrase":{
"storePhrase":{
"message":"Store this phrase in a password manager like 1Password."
"message":"Store this phrase in a password manager like 1Password."
},
},
"stxAreHere":{
"message":"Smart Transactions are here!"
},
"stxBenefit1":{
"message":"Minimize transaction costs"
},
"stxBenefit2":{
"message":"Reduce transaction failures"
},
"stxBenefit3":{
"message":"Eliminate stuck transactions"
},
"stxBenefit4":{
"message":"Prevent front-running"
},
"stxCancelled":{
"message":"Swap would have failed"
},
"stxCancelledDescription":{
"message":"Your transaction would have failed and was canceled to protect you from paying unnecessary gas fees."
},
"stxCancelledSubDescription":{
"message":"Try your swap again. We’ll be here to protect you against similar risks next time."
},
"stxDescription":{
"message":"MetaMask Swaps just got a whole lot smarter! Enabling Smart Transactions will allow MetaMask to programmatically optimize your Swap to help:"
},
"stxFailure":{
"message":"Swap failed"
},
"stxFailureDescription":{
"message":"Sudden market changes can cause failures. If the problem persists, please reach out to $1.",
"description":"This message is shown to a user if their swap fails. The $1 will be replaced by support.metamask.io"
},
"stxFallbackToNormal":{
"message":"You can still swap using the normal method or wait for cheaper gas fees and less failures with smart transactions."
},
"stxPendingFinalizing":{
"message":"Finalizing..."
},
"stxPendingOptimizingGas":{
"message":"Optimizing gas..."
},
"stxPendingPrivatelySubmitting":{
"message":"Privately submitting the Swap..."
},
"stxSubDescription":{
"message":"* Smart Transactions will attempt to submit your transaction privately, multiple times. If all attempts fail, the transaction will be broadcast publicly to ensure your Swap successfully goes through."
},
"stxSuccess":{
"message":"Swap complete!"
},
"stxSuccessDescription":{
"message":"Your $1 is now available.",
"description":"$1 is a token symbol, e.g. ETH"
},
"stxTooltip":{
"message":"Simulate transactions before submitting to decrease transaction costs and reduce failures."
"message":"A transaction has been successful but we’re unsure what it is. This may be due to submitting another transaction while this swap was processing."
},
"stxUserCancelled":{
"message":"Swap canceled"
},
"stxUserCancelledDescription":{
"message":"Your transaction has been canceled and you did not pay any unnecessary gas fees."
},
"stxYouCanOptOut":{
"message":"You can opt-out in advanced settings any time."
},
"submit":{
"submit":{
"message":"Submit"
"message":"Submit"
},
},
@ -2818,6 +3067,10 @@
"message":"You need $1 more $2 to complete this swap",
"message":"You need $1 more $2 to complete this swap",
"description":"Tells the user how many more of a given token they need for a specific swap. $1 is an amount of tokens and $2 is the token symbol."
"description":"Tells the user how many more of a given token they need for a specific swap. $1 is an amount of tokens and $2 is the token symbol."
},
},
"swapApproveNeedMoreTokensSmartTransactions":{
"message":"You need more $1 to complete this swap using smart transactions.",
"description":"Tells the user that they need more of a certain token ($1) before they can complete the swap via smart transactions."
},
"swapBestOfNQuotes":{
"swapBestOfNQuotes":{
"message":"Best of $1 quotes.",
"message":"Best of $1 quotes.",
"description":"$1 is the number of quotes that the user can select from when opening the list of quotes on the 'view quote' screen"
"description":"$1 is the number of quotes that the user can select from when opening the list of quotes on the 'view quote' screen"
@ -2826,6 +3079,10 @@
"message":"No tokens available matching $1",
"message":"No tokens available matching $1",
"description":"Tells the user that a given search string does not match any tokens in our token lists. $1 can be any string of text"
"description":"Tells the user that a given search string does not match any tokens in our token lists. $1 can be any string of text"
},
},
"swapCompleteIn":{
"message":"Swap complete in <",
"description":"'<' means 'less than', e.g. Swap complete in < 2:59"
},
"swapConfirmWithHwWallet":{
"swapConfirmWithHwWallet":{
"message":"Confirm with your hardware wallet"
"message":"Confirm with your hardware wallet"
},
},
@ -2868,6 +3125,10 @@
"swapFailedErrorTitle":{
"swapFailedErrorTitle":{
"message":"Swap failed"
"message":"Swap failed"
},
},
"swapFetchingQuoteNofN":{
"message":"Fetching quote $1 of $2",
"description":"A count of possible quotes shown to the user while they are waiting for quotes to be fetched. $1 is the number of quotes already loaded, and $2 is the total number of resources that we check for quotes. Keep in mind that not all resources will have a quote for a particular swap."
},
"swapFetchingQuotes":{
"swapFetchingQuotes":{
"message":"Fetching quotes"
"message":"Fetching quotes"
},
},
@ -2955,10 +3216,6 @@
"swapQuoteDetailsSlippageInfo":{
"swapQuoteDetailsSlippageInfo":{
"message":"If the price changes between the time your order is placed and confirmed it’s called \"slippage\". Your Swap will automatically cancel if slippage exceeds your \"slippage tolerance\" setting."
"message":"If the price changes between the time your order is placed and confirmed it’s called \"slippage\". Your Swap will automatically cancel if slippage exceeds your \"slippage tolerance\" setting."
},
},
"swapQuoteNofN":{
"message":"Quote $1 of $2",
"description":"A count of loaded quotes shown to the user while they are waiting for quotes to be fetched. $1 is the number of quotes already loaded, and $2 is the total number of quotes to load."
},
"swapQuoteSource":{
"swapQuoteSource":{
"message":"Quote source"
"message":"Quote source"
},
},
@ -3201,6 +3458,12 @@
"tokenDecimalFetchFailed":{
"tokenDecimalFetchFailed":{
"message":"Token decimal required."
"message":"Token decimal required."
},
},
"tokenDecimalTitle":{
"message":"Token Decimal:"
},
"tokenDetails":{
"message":"Token details"
},
"tokenDetectionAnnouncement":{
"tokenDetectionAnnouncement":{
"message":"New! Improved token detection is available on Ethereum Mainnet as an experimental feature. $1"
"message":"New! Improved token detection is available on Ethereum Mainnet as an experimental feature. $1"
},
},
@ -3506,9 +3769,6 @@
"walletCreationSuccessTitle":{
"walletCreationSuccessTitle":{
"message":"Wallet creation successful"
"message":"Wallet creation successful"
},
},
"walletSeedRestore":{
"message":"Wallet Secret Recovery Phrase"
},
"web3ShimUsageNotification":{
"web3ShimUsageNotification":{
"message":"We noticed that the current website tried to use the removed window.web3 API. If the site appears to be broken, please click $1 for more information.",
"message":"We noticed that the current website tried to use the removed window.web3 API. If the site appears to be broken, please click $1 for more information.",
"message":"Versión, centro de soporte técnico e información de contacto"
},
"acceleratingATransaction":{
"acceleratingATransaction":{
"message":"* Usar un precio de gas más alto para acelerar una transacción aumenta las posibilidades de un procesamiento más rápido en la red, pero esto no siempre se garantiza."
"message":"* Usar un precio de gas más alto para acelerar una transacción aumenta las posibilidades de un procesamiento más rápido en la red, pero esto no siempre se garantiza."
},
},
@ -97,9 +94,6 @@
"advancedOptions":{
"advancedOptions":{
"message":"Opciones avanzadas"
"message":"Opciones avanzadas"
},
},
"advancedSettingsDescription":{
"message":"Acceder a recursos para desarrolladores, descargar registros de estado, restablecer cuenta, configurar redes de prueba y RPC personalizada"
},
"affirmAgree":{
"affirmAgree":{
"message":"Acepto"
"message":"Acepto"
},
},
@ -124,9 +118,6 @@
"alerts":{
"alerts":{
"message":"Alertas"
"message":"Alertas"
},
},
"alertsSettingsDescription":{
"message":"Habilitar o deshabilitar cada alerta"
},
"allowExternalExtensionTo":{
"allowExternalExtensionTo":{
"message":"Permitir que esta extensión externa haga lo siguiente:"
"message":"Permitir que esta extensión externa haga lo siguiente:"
},
},
@ -242,9 +233,6 @@
"message":"Ver cuenta en $1",
"message":"Ver cuenta en $1",
"description":"$1 replaced by URL for custom block explorer"
"description":"$1 replaced by URL for custom block explorer"
},
},
"blockiesIdenticon":{
"message":"Usar Blockies Identicon"
},
"browserNotSupported":{
"browserNotSupported":{
"message":"El explorador no es compatible…"
"message":"El explorador no es compatible…"
},
},
@ -397,9 +385,6 @@
"contacts":{
"contacts":{
"message":"Contactos"
"message":"Contactos"
},
},
"contactsSettingsDescription":{
"message":"Agregar, editar, quitar y administrar sus contactos"
},
"continue":{
"continue":{
"message":"Continuar"
"message":"Continuar"
},
},
@ -677,10 +662,6 @@
"ethGasPriceFetchWarning":{
"ethGasPriceFetchWarning":{
"message":"Se muestra el precio del gas de respaldo, ya que el servicio para calcular el precio del gas principal no se encuentra disponible en este momento."
"message":"Se muestra el precio del gas de respaldo, ya que el servicio para calcular el precio del gas principal no se encuentra disponible en este momento."
},
},
"eth_accounts":{
"message":"Ver las direcciones de las cuentas permitidas (requerido)",
"description":"The description for the `eth_accounts` permission"
},
"ethereumPublicAddress":{
"ethereumPublicAddress":{
"message":"Dirección pública de Ethereum"
"message":"Dirección pública de Ethereum"
},
},
@ -787,9 +768,6 @@
"message":"Política de privacidad aquí",
"message":"Política de privacidad aquí",
"description":"this translation is intended to be exclusively used as the replacement for the $1 in the gdprMessage translation"
"description":"this translation is intended to be exclusively used as the replacement for the $1 in the gdprMessage translation"
},
},
"generalSettingsDescription":{
"message":"Conversión de moneda, moneda principal, idioma, Blockies Identicon"
},
"getEther":{
"getEther":{
"message":"Obtener ether"
"message":"Obtener ether"
},
},
@ -848,19 +826,12 @@
"importAccount":{
"importAccount":{
"message":"Importar cuenta"
"message":"Importar cuenta"
},
},
"importAccountLinkText":{
"message":"importar con la frase secreta de recuperación"
},
"importAccountMsg":{
"importAccountMsg":{
"message":" Las cuentas importadas no se asociarán con la frase secreta de recuperación de la cuenta original de MetaMask. Más información sobre las cuentas importadas "
"message":" Las cuentas importadas no se asociarán con la frase secreta de recuperación de la cuenta original de MetaMask. Más información sobre las cuentas importadas "
},
},
"importAccountSeedPhrase":{
"importAccountSeedPhrase":{
"message":"Importar una cuenta con la frase secreta de recuperación"
"message":"Importar una cuenta con la frase secreta de recuperación"
},
},
"importAccountText":{
"message":"o $1",
"description":"$1 represents the text from `importAccountLinkText` as a link"
},
"importTokenQuestion":{
"importTokenQuestion":{
"message":"¿Desea importar el token?"
"message":"¿Desea importar el token?"
},
},
@ -1120,9 +1091,6 @@
"networkSettingsChainIdDescription":{
"networkSettingsChainIdDescription":{
"message":"El id. de la cadena se usa para firmar transacciones. Debe coincidir con el id. de la cadena que devuelve la red. Puede escribir un número decimal o un número hexadecimal con el prefijo “0x”, pero el número se mostrará en decimal."
"message":"El id. de la cadena se usa para firmar transacciones. Debe coincidir con el id. de la cadena que devuelve la red. Puede escribir un número decimal o un número hexadecimal con el prefijo “0x”, pero el número se mostrará en decimal."
},
},
"networkSettingsDescription":{
"message":"Agregar y editar redes RPC personalizadas"
},
"networkURL":{
"networkURL":{
"message":"Dirección URL de la red"
"message":"Dirección URL de la red"
},
},
@ -1314,6 +1282,10 @@
"pending":{
"pending":{
"message":"Pendiente"
"message":"Pendiente"
},
},
"permission_ethereumAccounts":{
"message":"Ver las direcciones de las cuentas permitidas (requerido)",
"description":"The description for the `eth_accounts` permission"
},
"permissions":{
"permissions":{
"message":"Permisos"
"message":"Permisos"
},
},
@ -1442,9 +1414,6 @@
"restore":{
"restore":{
"message":"Restaurar"
"message":"Restaurar"
},
},
"restoreAccountWithSeed":{
"message":"Restaurar la cuenta con la frase secreta de recuperación"
},
"restoreWalletPreferences":{
"restoreWalletPreferences":{
"message":"Se encontró una copia de seguridad de los datos de $1. ¿Desea restaurar las preferencias de cartera?",
"message":"Se encontró una copia de seguridad de los datos de $1. ¿Desea restaurar las preferencias de cartera?",
"description":"$1 is the date at which the data was backed up"
"description":"$1 is the date at which the data was backed up"
@ -1515,9 +1484,6 @@
"securityAndPrivacy":{
"securityAndPrivacy":{
"message":"Seguridad y privacidad"
"message":"Seguridad y privacidad"
},
},
"securitySettingsDescription":{
"message":"Configuración de privacidad y frase secreta de recuperación de la cartera"
},
"seedPhraseIntroSidebarBulletFour":{
"seedPhraseIntroSidebarBulletFour":{
"message":"Escríbala y guárdela en varios lugares secretos."
"message":"Escríbala y guárdela en varios lugares secretos."
},
},
@ -1606,9 +1572,6 @@
"sendTokens":{
"sendTokens":{
"message":"Enviar tokens"
"message":"Enviar tokens"
},
},
"separateEachWord":{
"message":"Separar cada palabra con un solo espacio"
},
"settings":{
"settings":{
"message":"Configuración"
"message":"Configuración"
},
},
@ -1883,10 +1846,6 @@
"swapQuoteDetailsSlippageInfo":{
"swapQuoteDetailsSlippageInfo":{
"message":"Si el precio cambia entre el momento en que hace el pedido y cuando se confirma, se denomina \"desfase\". El canje se cancelará automáticamente si el desfase supera lo establecido en la configuración \"tolerancia de desfase\"."
"message":"Si el precio cambia entre el momento en que hace el pedido y cuando se confirma, se denomina \"desfase\". El canje se cancelará automáticamente si el desfase supera lo establecido en la configuración \"tolerancia de desfase\"."
},
},
"swapQuoteNofN":{
"message":"Cotización $1 de $2",
"description":"A count of loaded quotes shown to the user while they are waiting for quotes to be fetched. $1 is the number of quotes already loaded, and $2 is the total number of quotes to load."
},
"swapQuoteSource":{
"swapQuoteSource":{
"message":"Fuente de la cotización"
"message":"Fuente de la cotización"
},
},
@ -2257,9 +2216,6 @@
"walletConnectionGuide":{
"walletConnectionGuide":{
"message":"nuestra guía de conexión de la cartera de hardware"
"message":"nuestra guía de conexión de la cartera de hardware"
},
},
"walletSeedRestore":{
"message":"Frase secreta de recuperación de la cartera"
},
"web3ShimUsageNotification":{
"web3ShimUsageNotification":{
"message":"Parece que el sitio web actual intentó utilizar la API de window.web3 que se eliminó. Si el sitio no funciona, haga clic en $1 para obtener más información.",
"message":"Parece que el sitio web actual intentó utilizar la API de window.web3 que se eliminó. Si el sitio no funciona, haga clic en $1 para obtener más información.",
"message":"* Tapahtuman nopeuttaminen käyttämällä korkeampaa gas-hintaa parantaa mahdollisuutta, että verkko käsittelee sen nopeammin, mutta tämä ei ole aina taattua."
"message":"* Tapahtuman nopeuttaminen käyttämällä korkeampaa gas-hintaa parantaa mahdollisuutta, että verkko käsittelee sen nopeammin, mutta tämä ei ole aina taattua."
"message":"Bersyon, support center, at impormasyon sa pakikipag-ugnayan"
},
"acceleratingATransaction":{
"acceleratingATransaction":{
"message":"* Ang pagpapabilis sa isang transaksyon sa pamamagitan ng paggamit ng mas mataas na presyo ng gas ay makakadagdag sa tsansa nitong maproseso ng network nang mas mabilis, pero hindi ito palaging garantisado."
"message":"* Ang pagpapabilis sa isang transaksyon sa pamamagitan ng paggamit ng mas mataas na presyo ng gas ay makakadagdag sa tsansa nitong maproseso ng network nang mas mabilis, pero hindi ito palaging garantisado."
},
},
@ -56,9 +53,6 @@
"advancedOptions":{
"advancedOptions":{
"message":"Mga Advanced na Opsyon"
"message":"Mga Advanced na Opsyon"
},
},
"advancedSettingsDescription":{
"message":"I-access ang mga feature para sa mga developer, mag-download ng mga State Log, I-reset ang Account, mag-set up ng mga testnet at custom RPC"
},
"amount":{
"amount":{
"message":"Halaga"
"message":"Halaga"
},
},
@ -130,9 +124,6 @@
"message":"Tingnan ang account sa $1",
"message":"Tingnan ang account sa $1",
"description":"$1 replaced by URL for custom block explorer"
"description":"$1 replaced by URL for custom block explorer"
},
},
"blockiesIdenticon":{
"message":"Gumamit ng Blockies Identicon"
},
"browserNotSupported":{
"browserNotSupported":{
"message":"Hindi sinusuportahan ang iyong Browser..."
"message":"Hindi sinusuportahan ang iyong Browser..."
},
},
@ -389,9 +380,6 @@
"general":{
"general":{
"message":"Pangkalahatan"
"message":"Pangkalahatan"
},
},
"generalSettingsDescription":{
"message":"Pagpapapalit ng currency, pangunahing currency, wika, blockies identicon"
},
"getEther":{
"getEther":{
"message":"Kumuha ng Ether"
"message":"Kumuha ng Ether"
},
},
@ -535,9 +523,6 @@
"networkName":{
"networkName":{
"message":"Pangalan ng Network"
"message":"Pangalan ng Network"
},
},
"networkSettingsDescription":{
"message":"Magdagdag at mag-edit ng mga custom na RPC network"
},
"networks":{
"networks":{
"message":"Mga Network"
"message":"Mga Network"
},
},
@ -704,9 +689,6 @@
"restore":{
"restore":{
"message":"Ipanumbalik"
"message":"Ipanumbalik"
},
},
"restoreAccountWithSeed":{
"message":"I-restore ang iyong Account gamit ang Seed Phrase"
},
"revealSeedWords":{
"revealSeedWords":{
"message":"Ipakita ang Seed Words"
"message":"Ipakita ang Seed Words"
},
},
@ -752,9 +734,6 @@
"securityAndPrivacy":{
"securityAndPrivacy":{
"message":"Seguridad at Privacy"
"message":"Seguridad at Privacy"
},
},
"securitySettingsDescription":{
"message":"Mga setting ng privacy at seed phrase ng wallet"
},
"seedPhrasePlaceholder":{
"seedPhrasePlaceholder":{
"message":"Paghiwa-hiwalayin ang bawat salita gamit ang isang space"
"message":"Paghiwa-hiwalayin ang bawat salita gamit ang isang space"
},
},
@ -788,9 +767,6 @@
"sendTokens":{
"sendTokens":{
"message":"Magpadala ng Mga Token"
"message":"Magpadala ng Mga Token"
},
},
"separateEachWord":{
"message":"Paghiwa-hiwalayin ang bawat salita gamit ang isang space"
"message":"Verzió, ügyfélszolgálat és elérhetőségek"
},
"acceleratingATransaction":{
"acceleratingATransaction":{
"message":"* Ha szeretné felgyorsítani a tranzakciót azzal, hogy magasabb gázárat használ, az növeli a gyorsabb feldolgozás esélyét, de ez nem mindig garantált."
"message":"* Ha szeretné felgyorsítani a tranzakciót azzal, hogy magasabb gázárat használ, az növeli a gyorsabb feldolgozás esélyét, de ez nem mindig garantált."
},
},
@ -62,9 +59,6 @@
"advancedOptions":{
"advancedOptions":{
"message":"Haladó beállítások"
"message":"Haladó beállítások"
},
},
"advancedSettingsDescription":{
"message":"Hozzáférés fejlesztői funkciókhoz, állapotnaplók letöltése, fiók újraállítása, testnetek és egyéni RPC-k beállítása"
},
"amount":{
"amount":{
"message":"Összeg"
"message":"Összeg"
},
},
@ -145,9 +139,6 @@
"message":"Tekintse meg a fiókot a(z) $1-en",
"message":"Tekintse meg a fiókot a(z) $1-en",
"description":"$1 replaced by URL for custom block explorer"
"description":"$1 replaced by URL for custom block explorer"
},
},
"blockiesIdenticon":{
"message":"Blockies identikon használata"
},
"browserNotSupported":{
"browserNotSupported":{
"message":"Az ön böngészője nem támogatott..."
"message":"Az ön böngészője nem támogatott..."
},
},
@ -416,9 +407,6 @@
"general":{
"general":{
"message":"Általános"
"message":"Általános"
},
},
"generalSettingsDescription":{
"message":"Pénznem átváltása, elsődleges pénznem, nyelv, blockies identikonok"
},
"getEther":{
"getEther":{
"message":"Ether beszerzése"
"message":"Ether beszerzése"
},
},
@ -590,9 +578,6 @@
"networkName":{
"networkName":{
"message":"Hálózat neve"
"message":"Hálózat neve"
},
},
"networkSettingsDescription":{
"message":"Egyedi RPC-hálózatok hozzáadása és szerkesztése"
},
"networks":{
"networks":{
"message":"Hálózatok"
"message":"Hálózatok"
},
},
@ -773,9 +758,6 @@
"restore":{
"restore":{
"message":"Visszaállítás"
"message":"Visszaállítás"
},
},
"restoreAccountWithSeed":{
"message":"Fiók helyreállítása a seed mondat segítségével"
},
"revealSeedWords":{
"revealSeedWords":{
"message":"Seed szavak megjelenítése"
"message":"Seed szavak megjelenítése"
},
},
@ -827,9 +809,6 @@
"securityAndPrivacy":{
"securityAndPrivacy":{
"message":"Biztonság és adatvédelem"
"message":"Biztonság és adatvédelem"
},
},
"securitySettingsDescription":{
"message":"Biztonsági beállítások és pénztárca kulcsszólánca"
},
"seedPhrasePlaceholder":{
"seedPhrasePlaceholder":{
"message":"A szavakat egy-egy szóközzel válassza el"
"message":"A szavakat egy-egy szóközzel válassza el"
},
},
@ -863,9 +842,6 @@
"sendTokens":{
"sendTokens":{
"message":"Token küldése"
"message":"Token küldése"
},
},
"separateEachWord":{
"message":"Minden egyes szavat szóközzel válasszon el"
"message":"Versione, centro di supporto e contatti"
},
"acceleratingATransaction":{
"acceleratingATransaction":{
"message":"* Accelerare una transazione usando un prezzo del gas maggiore aumenta la probabilità che la rete la elabori più velocemente, ma non è garantito."
"message":"* Accelerare una transazione usando un prezzo del gas maggiore aumenta la probabilità che la rete la elabori più velocemente, ma non è garantito."
},
},
@ -73,9 +70,6 @@
"advancedOptions":{
"advancedOptions":{
"message":"Opzioni Avanzate"
"message":"Opzioni Avanzate"
},
},
"advancedSettingsDescription":{
"message":"Accedi alle funzionalità sviluppatore, download dei log di Stato, Reset Account, imposta reti di test e RPC personalizzata"
},
"affirmAgree":{
"affirmAgree":{
"message":"Acconsento"
"message":"Acconsento"
},
},
@ -100,9 +94,6 @@
"alerts":{
"alerts":{
"message":"Avvisi"
"message":"Avvisi"
},
},
"alertsSettingsDescription":{
"message":"Attiva o disattiva ogni avviso"
},
"allowExternalExtensionTo":{
"allowExternalExtensionTo":{
"message":"Permetti a questa estensione di:"
"message":"Permetti a questa estensione di:"
},
},
@ -206,9 +197,6 @@
"message":"Visualizza account su $1",
"message":"Visualizza account su $1",
"description":"$1 replaced by URL for custom block explorer"
"description":"$1 replaced by URL for custom block explorer"
},
},
"blockiesIdenticon":{
"message":"Usa le icone Blockie"
},
"browserNotSupported":{
"browserNotSupported":{
"message":"Il tuo Browser non è supportato..."
"message":"Il tuo Browser non è supportato..."
},
},
@ -340,9 +328,6 @@
"contacts":{
"contacts":{
"message":"Contatti"
"message":"Contatti"
},
},
"contactsSettingsDescription":{
"message":"Aggiungi, modifica, rimuovi e gestisci i tuoi contatti"
},
"continue":{
"continue":{
"message":"Continua"
"message":"Continua"
},
},
@ -577,10 +562,6 @@
"estimatedProcessingTimes":{
"estimatedProcessingTimes":{
"message":"Tempi di Elaborazione Stimati"
"message":"Tempi di Elaborazione Stimati"
},
},
"eth_accounts":{
"message":"Accesso agli indirizzi dei tuoi account autorizzati (richiesto)",
"description":"The description for the `eth_accounts` permission"
"message":"Il chain ID è usato per firmare le transazioni. Deve essere uguale al chain ID restituito dalla rete. Puoi inserire un numero intero o un numero esadecimale con prefisso '0x', ma mostreremo sempre un numero intero."
"message":"Il chain ID è usato per firmare le transazioni. Deve essere uguale al chain ID restituito dalla rete. Puoi inserire un numero intero o un numero esadecimale con prefisso '0x', ma mostreremo sempre un numero intero."
},
},
"networkSettingsDescription":{
"message":"Aggiungi e modifica reti RPC personalizzate"
},
"networks":{
"networks":{
"message":"Reti"
"message":"Reti"
},
},
@ -1072,6 +1047,10 @@
"pending":{
"pending":{
"message":"in corso"
"message":"in corso"
},
},
"permission_ethereumAccounts":{
"message":"Accesso agli indirizzi dei tuoi account autorizzati (richiesto)",
"description":"The description for the `eth_accounts` permission"
},
"permissions":{
"permissions":{
"message":"Permessi"
"message":"Permessi"
},
},
@ -1173,9 +1152,6 @@
"restore":{
"restore":{
"message":"Ripristina"
"message":"Ripristina"
},
},
"restoreAccountWithSeed":{
"message":"Ripristina Account con la Frase Seed"
},
"restoreWalletPreferences":{
"restoreWalletPreferences":{
"message":"È stato trovato un backup dei tuoi dati da $1. Vuoi ripristinare le preferenze del portafoglio?",
"message":"È stato trovato un backup dei tuoi dati da $1. Vuoi ripristinare le preferenze del portafoglio?",
"description":"$1 is the date at which the data was backed up"
"description":"$1 is the date at which the data was backed up"
@ -1240,9 +1216,6 @@
"securityAndPrivacy":{
"securityAndPrivacy":{
"message":"Sicurezza & Privacy"
"message":"Sicurezza & Privacy"
},
},
"securitySettingsDescription":{
"message":"Impostazioni sulla Privacy e sulla frase seed del portafoglio"
},
"seedPhrasePlaceholder":{
"seedPhrasePlaceholder":{
"message":"Separa ogni parola con un singolo spazio"
"message":"Separa ogni parola con un singolo spazio"
},
},
@ -1292,9 +1265,6 @@
"sendTokens":{
"sendTokens":{
"message":"Invia Tokens"
"message":"Invia Tokens"
},
},
"separateEachWord":{
"message":"Separa ogni parola con un solo spazio"
},
"settings":{
"settings":{
"message":"Impostazioni"
"message":"Impostazioni"
},
},
@ -1506,10 +1476,6 @@
"swapQuoteDetailsSlippageInfo":{
"swapQuoteDetailsSlippageInfo":{
"message":"Si chiama \"slippage\" la differenza tra il prezzo quando il tuo ordine viene inserito e quando viene confermato. Lo scambio sarà annullato automaticamente se lo slippage supera il \"massimo slippage\" impostato."
"message":"Si chiama \"slippage\" la differenza tra il prezzo quando il tuo ordine viene inserito e quando viene confermato. Lo scambio sarà annullato automaticamente se lo slippage supera il \"massimo slippage\" impostato."
},
},
"swapQuoteNofN":{
"message":"Quotazione $1 di $2",
"description":"A count of loaded quotes shown to the user while they are waiting for quotes to be fetched. $1 is the number of quotes already loaded, and $2 is the total number of quotes to load."
"message":"ಆವೃತ್ತಿ, ಬೆಂಬಲ ಕೇಂದ್ರ ಮತ್ತು ಸಂಪರ್ಕ ಮಾಹಿತಿ"
},
"acceleratingATransaction":{
"acceleratingATransaction":{
"message":"* ಹೆಚ್ಚಿನ ಗ್ಯಾಸ್ ಬೆಲೆಯನ್ನು ಬಳಸಿಕೊಂಡು ವಹಿವಾಟನ್ನು ವೇಗಗೊಳಿಸುವುದರಿಂದ ನೆಟ್ವರ್ಕ್ ವೇಗವಾಗಿ ಪ್ರಕ್ರಿಯೆಗೊಳ್ಳುವ ಸಾಧ್ಯತೆಗಳನ್ನು ಅದು ಹೆಚ್ಚಿಸುತ್ತದೆ, ಆದರೆ ಇದು ಯಾವಾಗಲೂ ಖಚಿತವಾಗಿರುವುದಿಲ್ಲ."
"message":"* ಹೆಚ್ಚಿನ ಗ್ಯಾಸ್ ಬೆಲೆಯನ್ನು ಬಳಸಿಕೊಂಡು ವಹಿವಾಟನ್ನು ವೇಗಗೊಳಿಸುವುದರಿಂದ ನೆಟ್ವರ್ಕ್ ವೇಗವಾಗಿ ಪ್ರಕ್ರಿಯೆಗೊಳ್ಳುವ ಸಾಧ್ಯತೆಗಳನ್ನು ಅದು ಹೆಚ್ಚಿಸುತ್ತದೆ, ಆದರೆ ಇದು ಯಾವಾಗಲೂ ಖಚಿತವಾಗಿರುವುದಿಲ್ಲ."
},
},
@ -62,9 +59,6 @@
"advancedOptions":{
"advancedOptions":{
"message":"ಸುಧಾರಿತ ಆಯ್ಕೆಗಳು"
"message":"ಸುಧಾರಿತ ಆಯ್ಕೆಗಳು"
},
},
"advancedSettingsDescription":{
"message":"ಡೆವಲಪರ್ ವೈಶಿಷ್ಟ್ಯಗಳನ್ನು ಪ್ರವೇಶಿಸಿ, ರಾಜ್ಯದ ಲಾಗ್ಗಳನ್ನು ಡೌನ್ಲೋಡ್ ಮಾಡಿ, ಖಾತೆಯನ್ನು ಮರುಹೊಂದಿಸಿ, ಟೆಸ್ಟ್ನೆಟ್ಸ್ ಹೊಂದಿಸಿ ಮತ್ತು ಕಸ್ಟಮ್ RPC"
},
"amount":{
"amount":{
"message":"ಮೊತ್ತ"
"message":"ಮೊತ್ತ"
},
},
@ -145,9 +139,6 @@
"message":" $1 ನಲ್ಲಿ ಖಾತೆಯನ್ನು ವೀಕ್ಷಿಸಿ",
"message":" $1 ನಲ್ಲಿ ಖಾತೆಯನ್ನು ವೀಕ್ಷಿಸಿ",
"description":"$1 replaced by URL for custom block explorer"
"description":"$1 replaced by URL for custom block explorer"
},
},
"blockiesIdenticon":{
"message":"ಬ್ಲಾಕೀಸ್ ಐಡೆಂಟಿಕಾನ್ ಬಳಸಿ"
},
"browserNotSupported":{
"browserNotSupported":{
"message":"ನಿಮ್ಮ ಬ್ರೌಸರ್ ಬೆಂಬಲಿಸುತ್ತಿಲ್ಲ..."
"message":"ನಿಮ್ಮ ಬ್ರೌಸರ್ ಬೆಂಬಲಿಸುತ್ತಿಲ್ಲ..."
},
},
@ -420,9 +411,6 @@
"general":{
"general":{
"message":"ಸಾಮಾನ್ಯ"
"message":"ಸಾಮಾನ್ಯ"
},
},
"generalSettingsDescription":{
"message":"ಕರೆನ್ಸಿ ಪರಿವರ್ತನೆ, ಪ್ರಾಥಮಿಕ ಕರೆನ್ಸಿ, ಭಾಷೆ, ನಿರ್ಬಂಧಗಳ ಗುರುತಿಸುವಿಕೆ"
},
"getEther":{
"getEther":{
"message":"ಎಥರ್ ಪಡೆಯಿರಿ"
"message":"ಎಥರ್ ಪಡೆಯಿರಿ"
},
},
@ -597,9 +585,6 @@
"networkName":{
"networkName":{
"message":"ನೆಟ್ವರ್ಕ್ ಹೆಸರು"
"message":"ನೆಟ್ವರ್ಕ್ ಹೆಸರು"
},
},
"networkSettingsDescription":{
"message":"ಕಸ್ಟಮ್ RPC ನೆಟ್ವರ್ಕ್ಗಳನ್ನು ಸೇರಿಸಿ ಮತ್ತು ಸಂಪಾದಿಸಿ"
},
"networks":{
"networks":{
"message":"ನೆಟ್ವರ್ಕ್ಗಳು"
"message":"ನೆಟ್ವರ್ಕ್ಗಳು"
},
},
@ -780,9 +765,6 @@
"restore":{
"restore":{
"message":"ಮರುಸ್ಥಾಪನೆ"
"message":"ಮರುಸ್ಥಾಪನೆ"
},
},
"restoreAccountWithSeed":{
"message":"ಸೀಡ್ ಫ್ರೇಸ್ನೊಂದಿಗೆ ನಿಮ್ಮ ಖಾತೆಯನ್ನು ಮರುಸ್ಥಾಪಿಸಿ"
},
"revealSeedWords":{
"revealSeedWords":{
"message":"ಸೀಡ್ ವರ್ಡ್ಸ್ ಬಹಿರಂಗಪಡಿಸಿ"
"message":"ಸೀಡ್ ವರ್ಡ್ಸ್ ಬಹಿರಂಗಪಡಿಸಿ"
},
},
@ -834,9 +816,6 @@
"securityAndPrivacy":{
"securityAndPrivacy":{
"message":"ಭದ್ರತೆ ಮತ್ತು ಗೌಪ್ಯತೆ"
"message":"ಭದ್ರತೆ ಮತ್ತು ಗೌಪ್ಯತೆ"
},
},
"securitySettingsDescription":{
"message":"ಗೌಪ್ಯತೆ ಸೆಟ್ಟಿಂಗ್ಗಳು ಮತ್ತು ವ್ಯಾಲೆಟ್ ಸೀಡ್ ಫ್ರೇಸ್"
},
"seedPhrasePlaceholder":{
"seedPhrasePlaceholder":{
"message":"ಒಂದು ಸ್ಪೇಸ್ ಮೂಲಕ ಪ್ರತಿ ಪದವನ್ನು ಬೇರ್ಪಡಿಸಿ"
"message":"ಒಂದು ಸ್ಪೇಸ್ ಮೂಲಕ ಪ್ರತಿ ಪದವನ್ನು ಬೇರ್ಪಡಿಸಿ"
},
},
@ -870,9 +849,6 @@
"sendTokens":{
"sendTokens":{
"message":"ಟೋಕನ್ಗಳನ್ನು ಕಳುಹಿಸಿ"
"message":"ಟೋಕನ್ಗಳನ್ನು ಕಳುಹಿಸಿ"
},
},
"separateEachWord":{
"message":"ಒಂದು ಸ್ಪೇಸ್ ಮೂಲಕ ಪ್ರತಿ ಪದವನ್ನು ಬೇರ್ಪಡಿಸಿ"
"message":"Versija, palaikymo centras ir kontaktinė informacija"
},
"acceleratingATransaction":{
"acceleratingATransaction":{
"message":"Operacijos paspartinimas naudojantis didesne dujų kaina padidina galimybes, kad ji bus greičiau apdorota tinkle, tačiau tai ne visada garantuojama. "
"message":"Operacijos paspartinimas naudojantis didesne dujų kaina padidina galimybes, kad ji bus greičiau apdorota tinkle, tačiau tai ne visada garantuojama. "
"message":"Versi, pusat sokongan, dan maklumat perhubungan"
},
"acceleratingATransaction":{
"acceleratingATransaction":{
"message":"* Mempercepatkan transaksi menggunakan harga gas lebih tinggi akan meningkatkan peluang diproses oleh rangkaian lebih cepat, tetapi ini pun tidak sentiasa dijamin."
"message":"* Mempercepatkan transaksi menggunakan harga gas lebih tinggi akan meningkatkan peluang diproses oleh rangkaian lebih cepat, tetapi ini pun tidak sentiasa dijamin."
},
},
@ -62,9 +59,6 @@
"advancedOptions":{
"advancedOptions":{
"message":"Pilihan Lanjutan"
"message":"Pilihan Lanjutan"
},
},
"advancedSettingsDescription":{
"message":"Akses ciri-ciri pembangun, muat turun Log Keadaan, Set Semula Akaun, sediakan jaringan ujian dan RPC tersuai"
},
"amount":{
"amount":{
"message":"Jumlah"
"message":"Jumlah"
},
},
@ -145,9 +139,6 @@
"message":"Lihat akaun pada $1",
"message":"Lihat akaun pada $1",
"description":"$1 replaced by URL for custom block explorer"
"description":"$1 replaced by URL for custom block explorer"
},
},
"blockiesIdenticon":{
"message":"Gunakan Identicon Blockies"
},
"browserNotSupported":{
"browserNotSupported":{
"message":"Pelayar anda tidak disokong..."
"message":"Pelayar anda tidak disokong..."
},
},
@ -413,9 +404,6 @@
"general":{
"general":{
"message":"Am"
"message":"Am"
},
},
"generalSettingsDescription":{
"message":"Penukaran mata wang, mata wang utama, bahasa, blockies identicon"
},
"getEther":{
"getEther":{
"message":"Dapatkan Ether"
"message":"Dapatkan Ether"
},
},
@ -580,9 +568,6 @@
"networkName":{
"networkName":{
"message":"Nama Rangkaian"
"message":"Nama Rangkaian"
},
},
"networkSettingsDescription":{
"message":"Tambah dan sunting rangkaian RPC tersuai"
},
"networks":{
"networks":{
"message":"Rangkaian"
"message":"Rangkaian"
},
},
@ -760,9 +745,6 @@
"restore":{
"restore":{
"message":"Pulihkan"
"message":"Pulihkan"
},
},
"restoreAccountWithSeed":{
"message":"Pulihkan Akaun anda dengan Ungkapan Benih"
},
"revealSeedWords":{
"revealSeedWords":{
"message":"Dedahkan Ungkapan Benih"
"message":"Dedahkan Ungkapan Benih"
},
},
@ -814,9 +796,6 @@
"securityAndPrivacy":{
"securityAndPrivacy":{
"message":"Keselamatan & Privasi"
"message":"Keselamatan & Privasi"
},
},
"securitySettingsDescription":{
"message":"Tetapan privasi dan ungkapan benih dompet"
},
"seedPhrasePlaceholder":{
"seedPhrasePlaceholder":{
"message":"Pisahkan setiap perkataan dengan satu ruang"
"message":"Pisahkan setiap perkataan dengan satu ruang"
},
},
@ -850,9 +829,6 @@
"sendTokens":{
"sendTokens":{
"message":"Hantar Token"
"message":"Hantar Token"
},
},
"separateEachWord":{
"message":"Pisahkan setiap perkataan dengan ruang tunggal"
"message":"Versjon, brukerstøtte og kontaktinformasjon"
},
"acceleratingATransaction":{
"acceleratingATransaction":{
"message":"* Akselerering av en transaksjon ved å bruke en høyere datakraftspris øker sjansene for å bli behandlet av nettverket raskere, men det er ikke alltid garantert."
"message":"* Akselerering av en transaksjon ved å bruke en høyere datakraftspris øker sjansene for å bli behandlet av nettverket raskere, men det er ikke alltid garantert."
},
},
@ -62,9 +59,6 @@
"advancedOptions":{
"advancedOptions":{
"message":"Avanserte valg"
"message":"Avanserte valg"
},
},
"advancedSettingsDescription":{
"message":"Få tilgang til utviklerfunksjoner, last ned tilstandslogger, tilbakestill konto, installer testnett og tilpasset RPC"
},
"amount":{
"amount":{
"message":"Sum"
"message":"Sum"
},
},
@ -145,9 +139,6 @@
"message":"Se konto på $1",
"message":"Se konto på $1",
"description":"$1 replaced by URL for custom block explorer"
"description":"$1 replaced by URL for custom block explorer"
"message":"Bersyon, support center, at impormasyon sa pakikipag-ugnayan"
},
"acceleratingATransaction":{
"acceleratingATransaction":{
"message":"* Kapag in-accelerate ang transaksyon sa pamamagitan ng paggamit ng mas mataas na presyo ng gas, mas magiging malaki ang tsansang mas mabilis na maiproseso ng network, pero hindi ito palaging ginagarantiya."
"message":"* Kapag in-accelerate ang transaksyon sa pamamagitan ng paggamit ng mas mataas na presyo ng gas, mas magiging malaki ang tsansang mas mabilis na maiproseso ng network, pero hindi ito palaging ginagarantiya."
},
},
@ -97,9 +94,6 @@
"advancedOptions":{
"advancedOptions":{
"message":"Mga Advanced na Opsyon"
"message":"Mga Advanced na Opsyon"
},
},
"advancedSettingsDescription":{
"message":"I-access ang mga pang-developer na feature, i-download ang Mga Log ng Status, I-reset ang Account, i-set up ang mga testnet at custom na RPC"
},
"affirmAgree":{
"affirmAgree":{
"message":"Sang-ayon ako"
"message":"Sang-ayon ako"
},
},
@ -124,9 +118,6 @@
"alerts":{
"alerts":{
"message":"Mga Alerto"
"message":"Mga Alerto"
},
},
"alertsSettingsDescription":{
"message":"I-enable o i-disable ang bawat alerto"
},
"allowExternalExtensionTo":{
"allowExternalExtensionTo":{
"message":"Payagan ang external extension na ito na:"
"message":"Payagan ang external extension na ito na:"
},
},
@ -242,9 +233,6 @@
"message":"Tingnan ang account sa $1",
"message":"Tingnan ang account sa $1",
"description":"$1 replaced by URL for custom block explorer"
"description":"$1 replaced by URL for custom block explorer"
},
},
"blockiesIdenticon":{
"message":"Gumamit ng Blockies Identicon"
},
"browserNotSupported":{
"browserNotSupported":{
"message":"Hindi sinusuportahan ang iyong Browser..."
"message":"Hindi sinusuportahan ang iyong Browser..."
},
},
@ -400,9 +388,6 @@
"contacts":{
"contacts":{
"message":"Mga Contact"
"message":"Mga Contact"
},
},
"contactsSettingsDescription":{
"message":"Magdagdag, mag-edit, mag-alis, at mamahala ng iyong mga contact"
},
"continue":{
"continue":{
"message":"Magpatuloy"
"message":"Magpatuloy"
},
},
@ -680,10 +665,6 @@
"ethGasPriceFetchWarning":{
"ethGasPriceFetchWarning":{
"message":"Ibinibigay ang backup na presyo ng gas dahil hindi available ang pangunahing serbisyo sa pagtatantya ng gas sa ngayon."
"message":"Ibinibigay ang backup na presyo ng gas dahil hindi available ang pangunahing serbisyo sa pagtatantya ng gas sa ngayon."
},
},
"eth_accounts":{
"message":"Tingnan ang mga address ng iyong mga pinapayagang account (kinakailangan)",
"description":"The description for the `eth_accounts` permission"
},
"ethereumPublicAddress":{
"ethereumPublicAddress":{
"message":"Pampublikong Address ng Ethereum"
"message":"Pampublikong Address ng Ethereum"
},
},
@ -796,9 +777,6 @@
"general":{
"general":{
"message":"Pangkalahatan"
"message":"Pangkalahatan"
},
},
"generalSettingsDescription":{
"message":"Conversion ng currency, pangunahing currency, wika, blockies identicon"
},
"getEther":{
"getEther":{
"message":"Kunin ang Ether"
"message":"Kunin ang Ether"
},
},
@ -864,19 +842,12 @@
"importAccount":{
"importAccount":{
"message":"Mag-import ng Account"
"message":"Mag-import ng Account"
},
},
"importAccountLinkText":{
"message":"i-import gamit ang Secret Recovery Phrase"
},
"importAccountMsg":{
"importAccountMsg":{
"message":" Ang mga na-import na account ay hindi mauugnay sa orihinal mong nagawang Secret Recovery Phrase ng MetaMask account. Matuto pa tungkol sa mga na-import account "
"message":" Ang mga na-import na account ay hindi mauugnay sa orihinal mong nagawang Secret Recovery Phrase ng MetaMask account. Matuto pa tungkol sa mga na-import account "
},
},
"importAccountSeedPhrase":{
"importAccountSeedPhrase":{
"message":"Mag-import ng account gamit ang Secret Recovery Phrase"
"message":"Mag-import ng account gamit ang Secret Recovery Phrase"
},
},
"importAccountText":{
"message":"o $1",
"description":"$1 represents the text from `importAccountLinkText` as a link"
},
"importTokenQuestion":{
"importTokenQuestion":{
"message":"Mag-import ng token?"
"message":"Mag-import ng token?"
},
},
@ -1142,9 +1113,6 @@
"networkSettingsChainIdDescription":{
"networkSettingsChainIdDescription":{
"message":"Ginagamit ang chain ID sa paglagda ng mga transaksyon. Dapat itong tumugma sa chain ID na ibinalik ng network. Puwede kang maglagay ng decimal o '0x'-prefixed hexadecimal number, pero ipapakita namin ang numero sa decimal."
"message":"Ginagamit ang chain ID sa paglagda ng mga transaksyon. Dapat itong tumugma sa chain ID na ibinalik ng network. Puwede kang maglagay ng decimal o '0x'-prefixed hexadecimal number, pero ipapakita namin ang numero sa decimal."
},
},
"networkSettingsDescription":{
"message":"Magdagdag at mag-edit ng mga custom na RPC network"
},
"networkURL":{
"networkURL":{
"message":"URL ng Network"
"message":"URL ng Network"
},
},
@ -1339,6 +1307,10 @@
"pending":{
"pending":{
"message":"Nakabinbin"
"message":"Nakabinbin"
},
},
"permission_ethereumAccounts":{
"message":"Tingnan ang mga address ng iyong mga pinapayagang account (kinakailangan)",
"description":"The description for the `eth_accounts` permission"
},
"permissions":{
"permissions":{
"message":"Mga Pahintulot"
"message":"Mga Pahintulot"
},
},
@ -1467,9 +1439,6 @@
"restore":{
"restore":{
"message":"I-restore"
"message":"I-restore"
},
},
"restoreAccountWithSeed":{
"message":"I-restore ang iyong Account gamit ang Secret Recovery Phrase"
},
"restoreWalletPreferences":{
"restoreWalletPreferences":{
"message":"Nakita ang backup ng iyong data mula sa $1. Gusto mo bang i-restore ang mga kagustuhan mo sa wallet?",
"message":"Nakita ang backup ng iyong data mula sa $1. Gusto mo bang i-restore ang mga kagustuhan mo sa wallet?",
"description":"$1 is the date at which the data was backed up"
"description":"$1 is the date at which the data was backed up"
@ -1540,9 +1509,6 @@
"securityAndPrivacy":{
"securityAndPrivacy":{
"message":"Seguridad at Privacy"
"message":"Seguridad at Privacy"
},
},
"securitySettingsDescription":{
"message":"Mga setting ng privacy at Secret Recovery Phrase ng wallet"
},
"seedPhraseIntroSidebarBulletFour":{
"seedPhraseIntroSidebarBulletFour":{
"message":"Isulat ito at itabi sa maraming tagong lugar."
"message":"Isulat ito at itabi sa maraming tagong lugar."
},
},
@ -1631,9 +1597,6 @@
"sendTokens":{
"sendTokens":{
"message":"Magpadala ng Mga Token"
"message":"Magpadala ng Mga Token"
},
},
"separateEachWord":{
"message":"Paghiwa-hiwalayin ang bawat salita gamit ang isang space"
},
"settings":{
"settings":{
"message":"Mga Setting"
"message":"Mga Setting"
},
},
@ -1908,10 +1871,6 @@
"swapQuoteDetailsSlippageInfo":{
"swapQuoteDetailsSlippageInfo":{
"message":"Kung magbabago ang presyo sa pagitan ng oras ng pag-order mo at sa oras na nakumpirma ito, tinatawag itong \"slippage\". Awtomatikong makakansela ang iyong Pag-swap kung lalampas ang slippage sa iyong setting na \"tolerance ng slippage.\""
"message":"Kung magbabago ang presyo sa pagitan ng oras ng pag-order mo at sa oras na nakumpirma ito, tinatawag itong \"slippage\". Awtomatikong makakansela ang iyong Pag-swap kung lalampas ang slippage sa iyong setting na \"tolerance ng slippage.\""
},
},
"swapQuoteNofN":{
"message":"Quote $1 ng $2",
"description":"A count of loaded quotes shown to the user while they are waiting for quotes to be fetched. $1 is the number of quotes already loaded, and $2 is the total number of quotes to load."
},
"swapQuoteSource":{
"swapQuoteSource":{
"message":"Pinagkunan ng quote"
"message":"Pinagkunan ng quote"
},
},
@ -2288,9 +2247,6 @@
"walletConnectionGuide":{
"walletConnectionGuide":{
"message":"ang aming gabay sa pagkonekta ng hardware wallet"
"message":"ang aming gabay sa pagkonekta ng hardware wallet"
},
},
"walletSeedRestore":{
"message":"Recovery Phrase ng Wallet Secret"
},
"web3ShimUsageNotification":{
"web3ShimUsageNotification":{
"message":"Napansin naming sinubukang gamitin ng kasalukuyang website ang tinanggal na window.web3 API. Kung mukhang sira ang site, paki-click ang $1 para sa higit pang impormasyon.",
"message":"Napansin naming sinubukang gamitin ng kasalukuyang website ang tinanggal na window.web3 API. Kung mukhang sira ang site, paki-click ang $1 para sa higit pang impormasyon.",
"message":"Wersja, centrum wsparcia i dane kontaktowe"
},
"acceleratingATransaction":{
"acceleratingATransaction":{
"message":"* Przyspieszenie transakcji poprzez zastosowanie wyższej ceny gazu zwiększa szanse na jej szybsze przetworzenie przez sieć, jednak skuteczność tej operacji nie jest gwarantowana."
"message":"* Przyspieszenie transakcji poprzez zastosowanie wyższej ceny gazu zwiększa szanse na jej szybsze przetworzenie przez sieć, jednak skuteczność tej operacji nie jest gwarantowana."
},
},
@ -62,9 +59,6 @@
"advancedOptions":{
"advancedOptions":{
"message":"Opcje zaawansowane"
"message":"Opcje zaawansowane"
},
},
"advancedSettingsDescription":{
"message":"Dostęp do funkcji programisty, pobieranie dzienników stanu, resetowanie konta, konfigurowanie sieci testowych i niestandardowe RPC"
},
"amount":{
"amount":{
"message":"Ilość"
"message":"Ilość"
},
},
@ -145,9 +139,6 @@
"message":"Wyświetl konto w $1",
"message":"Wyświetl konto w $1",
"description":"$1 replaced by URL for custom block explorer"
"description":"$1 replaced by URL for custom block explorer"
},
},
"blockiesIdenticon":{
"message":"Użyj Blockies Identicon"
},
"browserNotSupported":{
"browserNotSupported":{
"message":"Twoja przeglądarka nie jest obsługiwana..."
"message":"Twoja przeglądarka nie jest obsługiwana..."
"message":"Versiune, centru de asistență și date de contact"
},
"acceleratingATransaction":{
"acceleratingATransaction":{
"message":"* Accelerarea unei tranzacții folosind un preț în gas mai mare îi crește șansele de a fi procesată mai rapid de rețea, însă acest lucru nu este garantat întotdeauna."
"message":"* Accelerarea unei tranzacții folosind un preț în gas mai mare îi crește șansele de a fi procesată mai rapid de rețea, însă acest lucru nu este garantat întotdeauna."
},
},
@ -62,9 +59,6 @@
"advancedOptions":{
"advancedOptions":{
"message":"Opțiuni avansate"
"message":"Opțiuni avansate"
},
},
"advancedSettingsDescription":{
"message":"Accesați funcții pentru dezvoltatori, descărcați Jurnale de stare, resetați contul, configurați rețele de test și RPC personalizat"
},
"amount":{
"amount":{
"message":"Sumă"
"message":"Sumă"
},
},
@ -145,9 +139,6 @@
"message":"Vizualizare cont la $1",
"message":"Vizualizare cont la $1",
"description":"$1 replaced by URL for custom block explorer"
"description":"$1 replaced by URL for custom block explorer"
"message":"Verzija, centar za podršku i podaci za kontakt"
},
"acceleratingATransaction":{
"acceleratingATransaction":{
"message":"* Time što se ubrzava transakcija koristeći veću gas cenu, povećavaju se šanse da se procesuira brže od strane mreže, ali to nije uvek zagarantovano."
"message":"* Time što se ubrzava transakcija koristeći veću gas cenu, povećavaju se šanse da se procesuira brže od strane mreže, ali to nije uvek zagarantovano."
},
},
@ -62,9 +59,6 @@
"advancedOptions":{
"advancedOptions":{
"message":"Dodatne opcije"
"message":"Dodatne opcije"
},
},
"advancedSettingsDescription":{
"message":"Pristupite funkcijama za programere, preuzmite državne evidencije, resetujte nalog, postavite testne mreže i prilagođeni RPC"
},
"amount":{
"amount":{
"message":"Iznos"
"message":"Iznos"
},
},
@ -145,9 +139,6 @@
"message":"Pogledajte nalog za $1",
"message":"Pogledajte nalog za $1",
"description":"$1 replaced by URL for custom block explorer"
"description":"$1 replaced by URL for custom block explorer"
},
},
"blockiesIdenticon":{
"message":"Koristite „Blockies Identicon”"
},
"browserNotSupported":{
"browserNotSupported":{
"message":"Vaš pregledač nije podržan..."
"message":"Vaš pregledač nije podržan..."
},
},
@ -417,9 +408,6 @@
"general":{
"general":{
"message":"Opšte"
"message":"Opšte"
},
},
"generalSettingsDescription":{
"message":"Konverzija valuta, primarna valuta, jezik, blockies identicon"
},
"getEther":{
"getEther":{
"message":"Nabavite Ether"
"message":"Nabavite Ether"
},
},
@ -588,9 +576,6 @@
"networkName":{
"networkName":{
"message":"Ime mreže"
"message":"Ime mreže"
},
},
"networkSettingsDescription":{
"message":"Dodajte i uredite prilagođene RPC mreže"
},
"networks":{
"networks":{
"message":"Mreže"
"message":"Mreže"
},
},
@ -771,9 +756,6 @@
"restore":{
"restore":{
"message":"Поново отвори"
"message":"Поново отвори"
},
},
"restoreAccountWithSeed":{
"message":"Povratite svoj nalog uz pomoć seed fraze"
},
"revealSeedWords":{
"revealSeedWords":{
"message":"Otkrivanje početnih reči"
"message":"Otkrivanje početnih reči"
},
},
@ -825,9 +807,6 @@
"securityAndPrivacy":{
"securityAndPrivacy":{
"message":"Bezbednost i privatnost"
"message":"Bezbednost i privatnost"
},
},
"securitySettingsDescription":{
"message":"Podešavanja privatnosti i novčanik fraze početnih vrednosti"
},
"seedPhrasePlaceholder":{
"seedPhrasePlaceholder":{
"message":"Odvojite svaku reč jednim razmakom"
"message":"Odvojite svaku reč jednim razmakom"
},
},
@ -861,9 +840,6 @@
"sendTokens":{
"sendTokens":{
"message":"Pošalji tokene"
"message":"Pošalji tokene"
},
},
"separateEachWord":{
"message":"Razdvojite svaku reč jednim mestom razmaka"
"message":"Version, supportcenter och kontaktinformation"
},
"acceleratingATransaction":{
"acceleratingATransaction":{
"message":"* Att snabba upp en överföring genom att använda ett högre gaspris ökar chanserna för att överföringen ska hanteras snabbare av nätverket, men det är inte en garanti."
"message":"* Att snabba upp en överföring genom att använda ett högre gaspris ökar chanserna för att överföringen ska hanteras snabbare av nätverket, men det är inte en garanti."
},
},
@ -62,9 +59,6 @@
"advancedOptions":{
"advancedOptions":{
"message":"Avancerade alternativ"
"message":"Avancerade alternativ"
},
},
"advancedSettingsDescription":{
"message":"Åtkomst till verktyg för utvecklare, ladda ner loggar, återställ konto, upprätta testnätverk och skräddarsy RPC"
},
"amount":{
"amount":{
"message":"Belopp"
"message":"Belopp"
},
},
@ -145,9 +139,6 @@
"message":"Visa konto på $1",
"message":"Visa konto på $1",
"description":"$1 replaced by URL for custom block explorer"
"description":"$1 replaced by URL for custom block explorer"
"message":"Toleo, kituo cha msaada, na taarifa za mawasiliano"
},
"acceleratingATransaction":{
"acceleratingATransaction":{
"message":"*Kuwezesha muamala kwa kutumia bei ya juu ya gesi huongeza uwezekano wake wa kushughulikiwa na mtandao haraka, lakini hauhakikishiwi siku zote."
"message":"*Kuwezesha muamala kwa kutumia bei ya juu ya gesi huongeza uwezekano wake wa kushughulikiwa na mtandao haraka, lakini hauhakikishiwi siku zote."
},
},
@ -62,9 +59,6 @@
"advancedOptions":{
"advancedOptions":{
"message":"Machaguo ya Juu"
"message":"Machaguo ya Juu"
},
},
"advancedSettingsDescription":{
"message":"Vipengele vya idhini ya msanidi, Kumbukumbu za Hali ya kupakua, Kufuta Akaunti, mitando ya majaribio ya kuweka mipangilio na RPC maalumu"
},
"amount":{
"amount":{
"message":"Kiasi"
"message":"Kiasi"
},
},
@ -142,9 +136,6 @@
"message":"Tazama akaunti kwenye $1",
"message":"Tazama akaunti kwenye $1",
"description":"$1 replaced by URL for custom block explorer"
"description":"$1 replaced by URL for custom block explorer"
},
},
"blockiesIdenticon":{
"message":"Tumia Blockies Identicon"
},
"browserNotSupported":{
"browserNotSupported":{
"message":"Kivinjari chaku hakiwezeshwi..."
"message":"Kivinjari chaku hakiwezeshwi..."
},
},
@ -410,9 +401,6 @@
"general":{
"general":{
"message":"Jumla"
"message":"Jumla"
},
},
"generalSettingsDescription":{
"message":"Ubadilishaji wa fedha, sarafu ya msingi, lugha, blockies identicon"
},
"getEther":{
"getEther":{
"message":"Pata Ether"
"message":"Pata Ether"
},
},
@ -575,9 +563,6 @@
"networkName":{
"networkName":{
"message":"Jina la mtandao"
"message":"Jina la mtandao"
},
},
"networkSettingsDescription":{
"message":"Ongeza na hariri mitandao maalumu ya RPC"
},
"networks":{
"networks":{
"message":"Mitandao"
"message":"Mitandao"
},
},
@ -758,9 +743,6 @@
"restore":{
"restore":{
"message":"Rejesha"
"message":"Rejesha"
},
},
"restoreAccountWithSeed":{
"message":"Rejesha Akaunti yako kwa kutumia Kirai Kianzio."
},
"revealSeedWords":{
"revealSeedWords":{
"message":"Onyesha Maneno ya Kianzio"
"message":"Onyesha Maneno ya Kianzio"
},
},
@ -812,9 +794,6 @@
"securityAndPrivacy":{
"securityAndPrivacy":{
"message":"Ulinzi na Faragha"
"message":"Ulinzi na Faragha"
},
},
"securitySettingsDescription":{
"message":"Mipangilio ya Faragha na kirai kianzio cha waleti"
"message":"Hindi tugmang data ng transaksyon. Pakisuriin ang mga detalye ng transaksyon."
"message":"Hindi tugmang data ng transaksyon. Pakisuriin ang mga detalye ng transaksyon."
},
},
"QRHardwarePubkeyAccountOutOfRange":{
"QRHardwarePubkeyAccountOutOfRange":{
"message":"Wala nang mga account. Kung gusto mong mag-access ng iba pang account na hindi nakalista sa ibba, pakikonektang muli ang hardware wallet mo at piliin ito."
"message":"Wala nang mga account. Kung gusto mong mag-access ng iba pang account na hindi nakalista sa ibaba, pakikonektang muli ang hardware wallet mo at piliin ito."
},
},
"QRHardwareScanInstructions":{
"QRHardwareScanInstructions":{
"message":"Ilagay ang QR code sa harap ng iyong camera. Malabo ang screen, pero hindi ito makakaapekto sa pagbabasa."
"message":"Ilagay ang QR code sa harap ng iyong camera. Malabo ang screen, pero hindi ito makakaapekto sa pagbabasa."
@ -47,9 +47,6 @@
"about":{
"about":{
"message":"Tungkol Dito"
"message":"Tungkol Dito"
},
},
"aboutSettingsDescription":{
"message":"Bersyon, support center, at impormasyon sa pakikipag-ugnayan"
},
"acceleratingATransaction":{
"acceleratingATransaction":{
"message":"* Kapag in-accelerate ang transaksyon sa pamamagitan ng paggamit ng mas mataas na presyo ng gasolina, mas magiging malaki ang tsansang mas mabilis na maproseso ng network, pero hindi ito palaging ginagarantiya."
"message":"* Kapag in-accelerate ang transaksyon sa pamamagitan ng paggamit ng mas mataas na presyo ng gasolina, mas magiging malaki ang tsansang mas mabilis na maproseso ng network, pero hindi ito palaging ginagarantiya."
},
},
@ -90,7 +87,7 @@
"message":"Aktibidad"
"message":"Aktibidad"
},
},
"activityLog":{
"activityLog":{
"message":"log ng aktibidad"
"message":"Log ng aktibidad"
},
},
"add":{
"add":{
"message":"Magdagdag"
"message":"Magdagdag"
@ -185,9 +182,6 @@
"advancedPriorityFeeToolTip":{
"advancedPriorityFeeToolTip":{
"message":"Ang priority fee (kilala rin bilang “tip ng miner”) ay direktang napupunta sa mga miner at ginagawang insentibo ang mga ito upang unahin ang iyong mga transaksyon."
"message":"Ang priority fee (kilala rin bilang “tip ng miner”) ay direktang napupunta sa mga miner at ginagawang insentibo ang mga ito upang unahin ang iyong mga transaksyon."
},
},
"advancedSettingsDescription":{
"message":"I-access ang mga pang-developer na feature, i-download ang Mga Log ng Estado, I-reset ang Account, i-set up ang mga testnet at custom na RPC"
},
"affirmAgree":{
"affirmAgree":{
"message":"Sang-ayon Ako"
"message":"Sang-ayon Ako"
},
},
@ -212,9 +206,6 @@
"alerts":{
"alerts":{
"message":"Mga Alerto"
"message":"Mga Alerto"
},
},
"alertsSettingsDescription":{
"message":"I-enable o i-disable ang bawat alerto"
},
"allowExternalExtensionTo":{
"allowExternalExtensionTo":{
"message":"Payagan ang external extension na ito na:"
"message":"Payagan ang external extension na ito na:"
},
},
@ -371,9 +362,6 @@
"message":"Tingnan ang account sa $1",
"message":"Tingnan ang account sa $1",
"description":"$1 replaced by URL for custom block explorer"
"description":"$1 replaced by URL for custom block explorer"
},
},
"blockiesIdenticon":{
"message":"Gumamit ng Blockies Identicon"
},
"browserNotSupported":{
"browserNotSupported":{
"message":"Hindi sinusuportahan ang iyong Browser..."
"message":"Hindi sinusuportahan ang iyong Browser..."
},
},
@ -504,7 +492,7 @@
"message":"Kumonekta sa MetaMask"
"message":"Kumonekta sa MetaMask"
},
},
"connectedAccountsDescriptionPlural":{
"connectedAccountsDescriptionPlural":{
"message":"Mayroon kang $1 (na) account na nakakonekta sa site na ito.",
"message":"Mayroon kang $1 account na nakakonekta sa site na ito.",
"description":"$1 is the number of accounts"
"description":"$1 is the number of accounts"
},
},
"connectedAccountsDescriptionSingular":{
"connectedAccountsDescriptionSingular":{
@ -551,9 +539,6 @@
"contacts":{
"contacts":{
"message":"Mga Contact"
"message":"Mga Contact"
},
},
"contactsSettingsDescription":{
"message":"Magdagdag, mag-edit, magtanggal, at mamahala ng iyong mga contact"
},
"continue":{
"continue":{
"message":"Magpatuloy"
"message":"Magpatuloy"
},
},
@ -743,7 +728,7 @@
"message":"I-on ito para i-dismiss ang mensahe ng paalala ng pag-back up ng recovery phrase. Lubos naming inirerekomendang i-back up mo ang iyong Secret Recovery Phrase para maiwasan ang pagkawala ng pondo"
"message":"I-on ito para i-dismiss ang mensahe ng paalala ng pag-back up ng recovery phrase. Lubos naming inirerekomendang i-back up mo ang iyong Secret Recovery Phrase para maiwasan ang pagkawala ng pondo"
},
},
"dismissReminderField":{
"dismissReminderField":{
"message":"I-dismiss ang back up na paalala ng Sikretong Recovert Phrase"
"message":"I-dismiss ang back up na paalala ng Secret Recovery Phrase"
},
},
"domain":{
"domain":{
"message":"Domain"
"message":"Domain"
@ -849,7 +834,7 @@
"message":"Ang priority fee ay mas mataas sa kinakailangan. Maaari kang magbayad nang higit sa kinakailangan"
"message":"Ang priority fee ay mas mataas sa kinakailangan. Maaari kang magbayad nang higit sa kinakailangan"
},
},
"editGasMaxPriorityFeeLow":{
"editGasMaxPriorityFeeLow":{
"message":"Amg priority fee ay mababa para sa kasalukuyang mga kundisyon ng network"
"message":"Ang priority fee ay mababa para sa kasalukuyang mga kundisyon ng network"
},
},
"editGasMaxPriorityFeeLowV2":{
"editGasMaxPriorityFeeLowV2":{
"message":"Ang priority fee ay mababa para sa kasalukuyang mga kundisyon ng network"
"message":"Ang priority fee ay mababa para sa kasalukuyang mga kundisyon ng network"
@ -883,7 +868,7 @@
"message":"Ang iyong max fee o max priority fee ay maaaring mababa para sa kasalukuyang kondisyon ng market. Hindi namin alam kung kailan (o kung) ipoproseso ang iyong transaksyon. "
"message":"Ang iyong max fee o max priority fee ay maaaring mababa para sa kasalukuyang kondisyon ng market. Hindi namin alam kung kailan (o kung) ipoproseso ang iyong transaksyon. "
},
},
"editGasTooLowWarningTooltip":{
"editGasTooLowWarningTooltip":{
"message":"Pinabababa nito ang iyong maximum fee ngunit kung network traffic ay maaaring maantala o mabigo ang iyong transaksyon."
"message":"Pinapababa nito ang iyong maximum fee ngunit kung network traffic ay maaaring maantala o mabigo ang iyong transaksyon."
},
},
"editNonceField":{
"editNonceField":{
"message":"I-edit sa Nonce"
"message":"I-edit sa Nonce"
@ -1017,10 +1002,6 @@
"ethGasPriceFetchWarning":{
"ethGasPriceFetchWarning":{
"message":"Ang backup gas price ay inilalaan dahil ang pangunahing pagtantiya ng presyo ng gas ay hindi available sa ngayon."
"message":"Ang backup gas price ay inilalaan dahil ang pangunahing pagtantiya ng presyo ng gas ay hindi available sa ngayon."
},
},
"eth_accounts":{
"message":"Tingnan ang mga address ng iyong mga pinapayagang account (kinakailangan)",
"description":"The description for the `eth_accounts` permission"
},
"ethereumPublicAddress":{
"ethereumPublicAddress":{
"message":"Pampublikong Address ng Ethereum"
"message":"Pampublikong Address ng Ethereum"
},
},
@ -1039,9 +1020,6 @@
"experimental":{
"experimental":{
"message":"Experimental"
"message":"Experimental"
},
},
"experimentalSettingsDescription":{
"message":"Pag-detect ng token at iba pa"
},
"exportPrivateKey":{
"exportPrivateKey":{
"message":"I-export ang Pribadong Key"
"message":"I-export ang Pribadong Key"
},
},
@ -1211,9 +1189,6 @@
"general":{
"general":{
"message":"Pangkalahatan"
"message":"Pangkalahatan"
},
},
"generalSettingsDescription":{
"message":"Conversion ng currency, pangunahing currency, wika, blockies identicon"
},
"getEther":{
"getEther":{
"message":"Kunin ang Ether"
"message":"Kunin ang Ether"
},
},
@ -1253,7 +1228,7 @@
"message":"Magkonekta ng hardware wallet"
"message":"Magkonekta ng hardware wallet"
},
},
"hardwareWalletsMsg":{
"hardwareWalletsMsg":{
"message":"Pumili ng hardware wallet na gusto mong gamitin kasama ng MetaMask"
"message":"Pumili ng hardware wallet na gusto mong gamitin kasama ng MetaMask."
},
},
"here":{
"here":{
"message":"dito",
"message":"dito",
@ -1273,7 +1248,7 @@
"description":"$1 is the symbol for a token (e.g. 'DAI')"
"description":"$1 is the symbol for a token (e.g. 'DAI')"
},
},
"hideZeroBalanceTokens":{
"hideZeroBalanceTokens":{
"message":"I-hide ang mga oken na Walang Balanse"
"message":"I-hide ang mga Token na Walang Balanse"
},
},
"high":{
"high":{
"message":"Agresibo"
"message":"Agresibo"
@ -1298,21 +1273,14 @@
"importAccountError":{
"importAccountError":{
"message":"Error sa pag-import ng account."
"message":"Error sa pag-import ng account."
},
},
"importAccountLinkText":{
"message":"i-import gamit ang Secret Recovery Phrase"
},
"importAccountMsg":{
"importAccountMsg":{
"message":"Ang mga na-import na account ay hindi mauugnay sa orihinal mong nagawang Secret Recovery Phrase ng MetaMask account. Matuto pa tungkol sa mga na-import account"
"message":"Ang mga na-import na account ay hindi mauugnay sa orihinal mong nagawang Secret Recovery Phrase ng MetaMask account. Matuto pa tungkol sa mga na-import account"
},
},
"importAccountSeedPhrase":{
"importAccountSeedPhrase":{
"message":"Mag-import ng account gamit ang Secret Recovery Phrase"
"message":"Mag-import ng account gamit ang Secret Recovery Phrase"
},
},
"importAccountText":{
"message":"o $1",
"description":"$1 represents the text from `importAccountLinkText` as a link"
},
"importExistingWalletDescription":{
"importExistingWalletDescription":{
"message":"Ilagay ang iyong Sirektong Recovery Phrase (kilala rin bilang Seed Phrase) na ibinigay sa iyo noong gumawa ka ng iyong wallet. $1",
"message":"Ilagay ang iyong Secret Recovery Phrase (kilala rin bilang Seed Phrase) na ibinigay sa iyo noong gumawa ka ng iyong wallet. $1",
"description":"$1 is the words 'Learn More' from key 'learnMore', separated here so that it can be added as a link"
"description":"$1 is the words 'Learn More' from key 'learnMore', separated here so that it can be added as a link"
},
},
"importExistingWalletTitle":{
"importExistingWalletTitle":{
@ -1457,7 +1425,7 @@
"description":"$1 is link to cancel or speed up transactions"
"description":"$1 is link to cancel or speed up transactions"
},
},
"learnMore":{
"learnMore":{
"message":"Matuto pa"
"message":"matuto pa"
},
},
"learnMoreUpperCase":{
"learnMoreUpperCase":{
"message":"Matuto pa"
"message":"Matuto pa"
@ -1623,7 +1591,7 @@
"description":"This string is localized separately from some of the commitments so that we can bold it"
"description":"This string is localized separately from some of the commitments so that we can bold it"
},
},
"metametricsCommitmentsIntro":{
"metametricsCommitmentsIntro":{
"message":"Gagawin ng MetaMask ang sumusunod..."
"message":"Ang MetaMask ay.."
},
},
"metametricsCommitmentsNeverCollect":{
"metametricsCommitmentsNeverCollect":{
"message":"Huwag mangolekta ng mga key, address, transaksyon, balanse, hash, o anumang personal na impormasyon"
"message":"Huwag mangolekta ng mga key, address, transaksyon, balanse, hash, o anumang personal na impormasyon"
@ -1717,7 +1685,7 @@
"message":"BSC"
"message":"BSC"
},
},
"networkNameDefinition":{
"networkNameDefinition":{
"message":"Ang panglan ay nauugnay sa network na ito."
"message":"Ang pangalan ay nauugnay sa network na ito."
},
},
"networkNameEthereum":{
"networkNameEthereum":{
"message":"Ethereum"
"message":"Ethereum"
@ -1734,9 +1702,6 @@
"networkSettingsChainIdDescription":{
"networkSettingsChainIdDescription":{
"message":"Ginagaamit ang chain ID sa paglagda ng mga transaksyon. Dapat itong tumugma sa chain ID na ibinalik ng network. Puwede kang maglagay ng decimal o '0x'-prefixed hexadecimal number, pero ipapakita namin ang numero sa decimal."
"message":"Ginagaamit ang chain ID sa paglagda ng mga transaksyon. Dapat itong tumugma sa chain ID na ibinalik ng network. Puwede kang maglagay ng decimal o '0x'-prefixed hexadecimal number, pero ipapakita namin ang numero sa decimal."
},
},
"networkSettingsDescription":{
"message":"Magdagdag at mag-edit ng mga custom na RPC network"
},
"networkStatus":{
"networkStatus":{
"message":"Network status"
"message":"Network status"
},
},
@ -1773,9 +1738,6 @@
"message":"Account $1",
"message":"Account $1",
"description":"Default name of next account to be created on create account screen"
"description":"Default name of next account to be created on create account screen"
},
},
"newCollectibleAddFailed":{
"message":"Ang collectible ay hindi idinagdag dahil: $1"
},
"newCollectibleAddedMessage":{
"newCollectibleAddedMessage":{
"message":"Ang collectible ay tagumpay na naidagdag!"
"message":"Ang collectible ay tagumpay na naidagdag!"
},
},
@ -1901,7 +1863,7 @@
"description":"The 'call to action' on the button, or link, of the 'Swap on Binance Smart Chain!' notification. Upon clicking, users will be taken to a page where then can swap tokens on Binance Smart Chain."
"description":"The 'call to action' on the button, or link, of the 'Swap on Binance Smart Chain!' notification. Upon clicking, users will be taken to a page where then can swap tokens on Binance Smart Chain."
},
},
"notifications4Description":{
"notifications4Description":{
"message":"Kunin ang pinakamagagandang papremyyo sa pag-swap ng token sa loob ng iyong wallet. Ikinokonekta ka na ngayon ng MetaMask sa maraming decentralized exchange aggregator at mga propesyonal na market maker sa Binance Smart Chain.",
"message":"Kunin ang pinakamagagandang papremyo sa pag-swap ng token sa loob ng iyong wallet. Ikinokonekta ka na ngayon ng MetaMask sa maraming decentralized exchange aggregator at mga propesyonal na market maker sa Binance Smart Chain.",
"description":"Description of a notification in the 'See What's New' popup."
"description":"Description of a notification in the 'See What's New' popup."
},
},
"notifications4Title":{
"notifications4Title":{
@ -1909,7 +1871,7 @@
"description":"Title for a notification in the 'See What's New' popup. Encourages users to do swaps on Binance Smart Chain."
"description":"Title for a notification in the 'See What's New' popup. Encourages users to do swaps on Binance Smart Chain."
},
},
"notifications5Description":{
"notifications5Description":{
"message":"Ang iyong \"Seed Phrase\" ay tinatawag na ngayon na iyong \"Sirektong Recovery Phrase.\"",
"message":"Ang iyong \"Seed Phrase\" ay tinatawag na ngayon na iyong \"Secret Recovery Phrase.\"",
"description":"Description of a notification in the 'See What's New' popup. Describes the seed phrase wording update."
"description":"Description of a notification in the 'See What's New' popup. Describes the seed phrase wording update."
},
},
"notifications6DescriptionOne":{
"notifications6DescriptionOne":{
@ -1917,7 +1879,7 @@
"description":"Description of a notification in the 'See What's New' popup. Describes the Ledger support update."
"description":"Description of a notification in the 'See What's New' popup. Describes the Ledger support update."
},
},
"notifications6DescriptionThree":{
"notifications6DescriptionThree":{
"message":"Kapag gingamit ang iyong Ledger account sa MetaMask, ang bagong tab ay magbubukas at hihilingin sa iyo ng buksan ang Ledger Live app. Kapag nabuksan na ang app, hihilingin sa iyo na payagan ang koneksyon ng WebSocket sa iyong MetaMask account. Ganun lang!",
"message":"Kapag ginagamit ang iyong Ledger account sa MetaMask, ang bagong tab ay magbubukas at hihilingin sa iyo ng buksan ang Ledger Live app. Kapag nabuksan na ang app, hihilingin sa iyo na payagan ang koneksyon ng WebSocket sa iyong MetaMask account. Ganun lang!",
"description":"Description of a notification in the 'See What's New' popup. Describes the Ledger support update."
"description":"Description of a notification in the 'See What's New' popup. Describes the Ledger support update."
},
},
"notifications6DescriptionTwo":{
"notifications6DescriptionTwo":{
@ -1960,7 +1922,7 @@
"message":"Binibigyan namin kayo ngayon ng mas maraming kaalaman sa tab na'Data' kapag kinukumpirma ang mga transaksyon ng smart contract."
"message":"Binibigyan namin kayo ngayon ng mas maraming kaalaman sa tab na'Data' kapag kinukumpirma ang mga transaksyon ng smart contract."
},
},
"notifications9DescriptionTwo":{
"notifications9DescriptionTwo":{
"message":"Mas maiintindihan mo na ngayon ang mga detalye ng transaksyon bago kumpirmahin, at mas madaling makakapagdagdag ng mga address ng transaksyon sa iyong address book, na nakaakatulong sa iyo na maging litas at malaman ang mga desisyon."
"message":"Mas maiintindihan mo na ngayon ang mga detalye ng transaksyon bago kumpirmahin, at mas madaling makakapagdagdag ng mga address ng transaksyon sa iyong address book, na nakaakatulong sa iyo na maging ligtas at malaman ang mga desisyon."
},
},
"notifications9Title":{
"notifications9Title":{
"message":"👓 Pinadadali naming mabasa ang mga transaksyon."
"message":"👓 Pinadadali naming mabasa ang mga transaksyon."
@ -1972,7 +1934,7 @@
"message":"Naka-off"
"message":"Naka-off"
},
},
"offlineForMaintenance":{
"offlineForMaintenance":{
"message":"Offline para sa pagmementina"
"message":"Offline para sa pagmamantini"
},
},
"ok":{
"ok":{
"message":"Ok"
"message":"Ok"
@ -2005,7 +1967,7 @@
"message":"I-pin ang MetaMask sa iyong browser para madali itong ma-access at madaling makita ang mga kumpirmasyon ng transaksyon."
"message":"I-pin ang MetaMask sa iyong browser para madali itong ma-access at madaling makita ang mga kumpirmasyon ng transaksyon."
},
},
"onboardingPinExtensionDescription2":{
"onboardingPinExtensionDescription2":{
"message":"Maaari mong buksan ang MetaMask sa pamamagitan ng pag-click sa ektensyon at pag-accesss sa wallet mo sa 1 click lang."
"message":"Maaari mong buksan ang MetaMask sa pamamagitan ng pag-click sa extension at pag-accesss sa wallet mo sa 1 click lang."
},
},
"onboardingPinExtensionDescription3":{
"onboardingPinExtensionDescription3":{
"message":"Mag-click sa icon ng browser extension para agad itong ma-access"
"message":"Mag-click sa icon ng browser extension para agad itong ma-access"
@ -2100,6 +2062,10 @@
"permissionRequest":{
"permissionRequest":{
"message":"Kahilingan sa pahintulot"
"message":"Kahilingan sa pahintulot"
},
},
"permission_ethereumAccounts":{
"message":"Tingnan ang mga address, balanse ng account, aktibidad at simulan ang iyong mga transaksyon",
"description":"The description for the `eth_accounts` permission"
},
"permissions":{
"permissions":{
"message":"Mga Pahintulot"
"message":"Mga Pahintulot"
},
},
@ -2209,7 +2175,7 @@
"message":"Tanggihan Lahat"
"message":"Tanggihan Lahat"
},
},
"rejectTxsDescription":{
"rejectTxsDescription":{
"message":"Maramihan mong tatanggihan ang $1 (na) transaksyon."
"message":"Maramihan mong tatanggihan ang $1 transaksyon."
},
},
"rejectTxsN":{
"rejectTxsN":{
"message":"Tanggihan ang $1 transaksyon"
"message":"Tanggihan ang $1 transaksyon"
@ -2253,9 +2219,6 @@
"restore":{
"restore":{
"message":"I-restore"
"message":"I-restore"
},
},
"restoreAccountWithSeed":{
"message":"I-restore ang iyong Account gamit ang Secret Recovery Phrase"
},
"restoreWalletPreferences":{
"restoreWalletPreferences":{
"message":"Nakita ang backup ng iyong data mula sa $1. Gusto mo bang i-restore ang mga kagustuhan mo sa wallet?",
"message":"Nakita ang backup ng iyong data mula sa $1. Gusto mo bang i-restore ang mga kagustuhan mo sa wallet?",
"description":"$1 is the date at which the data was backed up"
"description":"$1 is the date at which the data was backed up"
@ -2323,9 +2286,6 @@
"secretPhrase":{
"secretPhrase":{
"message":"Ang unang account lang sa wallet na ito ang awtomatikong maglo-load. Pagkatapos makumpleto ang prosesong ito, upang magdagdag ng mga karagdagang account, i-click ang drop down na menu, pagkatapos ay piliin ang Gumawa ng Account."
"message":"Ang unang account lang sa wallet na ito ang awtomatikong maglo-load. Pagkatapos makumpleto ang prosesong ito, upang magdagdag ng mga karagdagang account, i-click ang drop down na menu, pagkatapos ay piliin ang Gumawa ng Account."
},
},
"secretPhraseWarning":{
"message":"Kapag nagre-restore ka gamit ang isa pang Secret Recovery Phrase, permanenteng aalisin sa app na ito ang iyong kasalukuyang wallet, mga account, at asset. Ang gawaing ito ay hindi pwedeng baguhin."
},
"secretRecoveryPhrase":{
"secretRecoveryPhrase":{
"message":"Secret Recovery Phrase"
"message":"Secret Recovery Phrase"
},
},
@ -2335,9 +2295,6 @@
"securityAndPrivacy":{
"securityAndPrivacy":{
"message":"Seguridad at Pagkapribado"
"message":"Seguridad at Pagkapribado"
},
},
"securitySettingsDescription":{
"message":"Mga setting ng privacy at Secret Recovery Phrase ng wallet"
},
"seedPhraseConfirm":{
"seedPhraseConfirm":{
"message":"Kumpirmahin ang Secret Recovery Phrase"
"message":"Kumpirmahin ang Secret Recovery Phrase"
},
},
@ -2396,7 +2353,7 @@
"message":"Ang mga Secret Recovery Phrase ay naglalaman ng 12, 15, 18, 21, o 24 na salita"
"message":"Ang mga Secret Recovery Phrase ay naglalaman ng 12, 15, 18, 21, o 24 na salita"
},
},
"seedPhraseWriteDownDetails":{
"seedPhraseWriteDownDetails":{
"message":"Isulat ang 12 salitang Secret Recovery Phrase at i-save sa lugar na pinagkakatiwalaan mo at ikaw ang ang makaka-access."
"message":"Isulat ang 12 salitang Secret Recovery Phrase at i-save sa lugar na pinagkakatiwalaan mo at ikaw ang makaka-access."
},
},
"seedPhraseWriteDownHeader":{
"seedPhraseWriteDownHeader":{
"message":"Isulat ang iyong Secret Recovery Phrase"
"message":"Isulat ang iyong Secret Recovery Phrase"
@ -2426,7 +2383,7 @@
"message":"I-on ang pag-detect ng NFT sa Settings"
"message":"I-on ang pag-detect ng NFT sa Settings"
},
},
"selectPathHelp":{
"selectPathHelp":{
"message":"Kung hindi mo makita ang mga kasalukuyan mong Ledger account sa ibaba, subukang ilipat ang path sa \"Legacy (MEW / MyCrypto)\""
"message":"Kung hindi mo makita ang mga account na inaasahan mo, subukang ilipat sa HD path."
},
},
"selectType":{
"selectType":{
"message":"Pumili ng Uri"
"message":"Pumili ng Uri"
@ -2454,9 +2411,6 @@
"message":"Nagpapadala ng $1",
"message":"Nagpapadala ng $1",
"description":"$1 represents the native currency symbol for the current network (e.g. ETH or BNB)"
"description":"$1 represents the native currency symbol for the current network (e.g. ETH or BNB)"
},
},
"separateEachWord":{
"message":"Paghiwa-hiwalayin ang bawat salita gamit ang espasyo"
},
"setAdvancedPrivacySettings":{
"setAdvancedPrivacySettings":{
"message":"Magtakda ng advanced privacy settings"
"message":"Magtakda ng advanced privacy settings"
},
},
@ -2810,7 +2764,7 @@
"message":"Ang price impact ay ang pagkakaiba sa pagitan ng kasalukuyang market price at ang halagang natanggap sa panahon ng pagpapatupad ng transaksyon. Ang price impact ay isang function ng laki ng iyong trade kaugnay sa laki ng liquidity pool."
"message":"Ang price impact ay ang pagkakaiba sa pagitan ng kasalukuyang market price at ang halagang natanggap sa panahon ng pagpapatupad ng transaksyon. Ang price impact ay isang function ng laki ng iyong trade kaugnay sa laki ng liquidity pool."
},
},
"swapPriceUnavailableDescription":{
"swapPriceUnavailableDescription":{
"message":"Hindi matukoy ang price impact dahil sa kakulangan ng data ng market price. Pakikumpirma na kumportable ka sa dami ng mga token na matatanggap mo bago mag-swap."
"message":"Hindi matukoy ang price impact dahil sa kakulangan ng data ng market price. Pakikumpirma na komportable ka sa dami ng mga token na matatanggap mo bago mag-swap."
},
},
"swapPriceUnavailableTitle":{
"swapPriceUnavailableTitle":{
"message":"Tingnan ang iyong rate bago magpatuloy"
"message":"Tingnan ang iyong rate bago magpatuloy"
@ -2824,10 +2778,6 @@
"swapQuoteDetailsSlippageInfo":{
"swapQuoteDetailsSlippageInfo":{
"message":"Kung magbabago ang presyo sa pagitan ng oras ng pag-order mo at sa oras na nakumpirma ito, tinatawag itong \"slippage\". Awtomatikong makakansela ang iyong Pag-swap kung lalampas ang slippage sa iyong setting na \"max slippage\"."
"message":"Kung magbabago ang presyo sa pagitan ng oras ng pag-order mo at sa oras na nakumpirma ito, tinatawag itong \"slippage\". Awtomatikong makakansela ang iyong Pag-swap kung lalampas ang slippage sa iyong setting na \"max slippage\"."
},
},
"swapQuoteNofN":{
"message":"Quote $1 ng $2",
"description":"A count of loaded quotes shown to the user while they are waiting for quotes to be fetched. $1 is the number of quotes already loaded, and $2 is the total number of quotes to load."
},
"swapQuoteSource":{
"swapQuoteSource":{
"message":"Pinagkunan ng quote"
"message":"Pinagkunan ng quote"
},
},
@ -2886,7 +2836,7 @@
"message":"Minungkahing pag-swap"
"message":"Minungkahing pag-swap"
},
},
"swapSuggestedGasSettingToolTipMessage":{
"swapSuggestedGasSettingToolTipMessage":{
"message":"Ang mga swap ay kumpikado at sensitibo sa oras na mga transaksyon. Nirerekomenda namin ang gas fee na ito para sa magandang balanse sa pagitan ng halaga at kumpiyansa ng matagumpay na Pag-swap."
"message":"Ang mga swap ay kumplikado at sensitibo sa oras na mga transaksyon. Nirerekomenda namin ang gas fee na ito para sa magandang balanse sa pagitan ng halaga at kumpiyansa ng matagumpay na Pag-swap."
},
},
"swapSwapFrom":{
"swapSwapFrom":{
"message":"Ipalit mula sa"
"message":"Ipalit mula sa"
@ -2934,7 +2884,7 @@
"message":"Nakumpleto ang transaksyon"
"message":"Nakumpleto ang transaksyon"
},
},
"swapTwoTransactions":{
"swapTwoTransactions":{
"message":"2 transakasyon"
"message":"2 transaksyon"
},
},
"swapUnknown":{
"swapUnknown":{
"message":"Hindi Alam"
"message":"Hindi Alam"
@ -3272,7 +3222,7 @@
"message":"Kinakailangan ng mga URL ang naaangkop na HTTP/HTTPS prefix."
"message":"Kinakailangan ng mga URL ang naaangkop na HTTP/HTTPS prefix."
},
},
"urlExistsErrorMsg":{
"urlExistsErrorMsg":{
"message":"Nasa kasalukuyang listahan ng mga network na ang URL"
"message":"Nasa kasalukuyang listahan ng mga network na ang URL."
},
},
"useCollectibleDetection":{
"useCollectibleDetection":{
"message":"Autodetect ng mga NFT"
"message":"Autodetect ng mga NFT"
@ -3369,9 +3319,6 @@
"walletCreationSuccessTitle":{
"walletCreationSuccessTitle":{
"message":"Matagumpay ang paggawa ng wallet"
"message":"Matagumpay ang paggawa ng wallet"
},
},
"walletSeedRestore":{
"message":"Recovery Phrase ng Wallet Secret"
},
"web3ShimUsageNotification":{
"web3ShimUsageNotification":{
"message":"Napansin namin na sinubukan ng kasalukuyang website na gamitin ang inalis na window.web3 API. Kung mukhang sira ang site, paki-click ang $1 para sa karagdagang impormasyon.",
"message":"Napansin namin na sinubukan ng kasalukuyang website na gamitin ang inalis na window.web3 API. Kung mukhang sira ang site, paki-click ang $1 para sa karagdagang impormasyon.",
"message":"Версія, центр підтримки та контактна інформація"
},
"acceleratingATransaction":{
"acceleratingATransaction":{
"message":"* Прискорення транзакції за допомогою вищих цін на газ підвищує її шанси бути обробленою мережею швидше, але це не завжди гарантовано."
"message":"* Прискорення транзакції за допомогою вищих цін на газ підвищує її шанси бути обробленою мережею швидше, але це не завжди гарантовано."
},
},
@ -62,9 +59,6 @@
"advancedOptions":{
"advancedOptions":{
"message":"Додаткові параметри"
"message":"Додаткові параметри"
},
},
"advancedSettingsDescription":{
"message":"Отримайте доступ до функцій розробника, завантажте Логи станів, перезапустіть обліковий запис, налаштуйте тестові сітки та персоніфіковані RPC"
},
"amount":{
"amount":{
"message":"Кількість"
"message":"Кількість"
},
},
@ -145,9 +139,6 @@
"message":"Переглянути обліковий запис на $1",
"message":"Переглянути обліковий запис на $1",
"description":"$1 replaced by URL for custom block explorer"
"description":"$1 replaced by URL for custom block explorer"
},
},
"blockiesIdenticon":{
"message":"Викоритовувати Blockies Identicon"
},
"browserNotSupported":{
"browserNotSupported":{
"message":"Ваш браузер не підтримується..."
"message":"Ваш браузер не підтримується..."
},
},
@ -420,9 +411,6 @@
"general":{
"general":{
"message":"Загальні"
"message":"Загальні"
},
},
"generalSettingsDescription":{
"message":"Конверсія валют, первісна валюта, мова, ідентикон блокіз"
},
"getEther":{
"getEther":{
"message":"Отримати Ефір"
"message":"Отримати Ефір"
},
},
@ -597,9 +585,6 @@
"networkName":{
"networkName":{
"message":"Ім’я мережі"
"message":"Ім’я мережі"
},
},
"networkSettingsDescription":{
"message":"Додавайте та редагуйте мережі RPC, що можна налаштовувати"
},
"networks":{
"networks":{
"message":"Мережі"
"message":"Мережі"
},
},
@ -780,9 +765,6 @@
"restore":{
"restore":{
"message":"Відновити"
"message":"Відновити"
},
},
"restoreAccountWithSeed":{
"message":"Відновіть ваш обліковий запис за допомогою seed-фрази"
},
"revealSeedWords":{
"revealSeedWords":{
"message":"Показати мнемонічні слова"
"message":"Показати мнемонічні слова"
},
},
@ -834,9 +816,6 @@
"securityAndPrivacy":{
"securityAndPrivacy":{
"message":"Безпека й конфіденційність"
"message":"Безпека й конфіденційність"
},
},
"securitySettingsDescription":{
"message":"Налаштування приватності та початкова фраза гаманця"
"message":"Dữ liệu giao dịch không đồng nhất. Vui lòng kiểm tra chi tiết giao dịch."
"message":"Dữ liệu giao dịch không đồng nhất. Vui lòng kiểm tra chi tiết giao dịch."
},
},
"QRHardwarePubkeyAccountOutOfRange":{
"QRHardwarePubkeyAccountOutOfRange":{
"message":"Không còn tài khoản nào. Nếu bạn muốn truy cập một tài khoản khác không được liệt kê bên dưới, vui lòng kết nối lại với ví lạnh và chọn tài khoản đó."
"message":"Không còn tài khoản nào. Nếu bạn muốn truy cập một tài khoản khác không được liệt kê bên dưới, vui lòng kết nối lại với ví cứng và chọn tài khoản đó."
},
},
"QRHardwareScanInstructions":{
"QRHardwareScanInstructions":{
"message":"Đặt mã QR phía trước máy ảnh. Màn hình bị mờ nhưng không ảnh hưởng đến khả năng đọc."
"message":"Đặt mã QR phía trước máy ảnh. Màn hình bị mờ nhưng không ảnh hưởng đến khả năng đọc."
@ -30,16 +30,16 @@
"message":"Lỗi"
"message":"Lỗi"
},
},
"QRHardwareUnknownWalletQRCode":{
"QRHardwareUnknownWalletQRCode":{
"message":"Mã QR không hợp lệ. Vui lòng quét mã QR đồng bộ của ví lạnh."
"message":"Mã QR không hợp lệ. Vui lòng quét mã QR đồng bộ của ví cứng."
},
},
"QRHardwareWalletImporterTitle":{
"QRHardwareWalletImporterTitle":{
"message":"Quét mã QR"
"message":"Quét mã QR"
},
},
"QRHardwareWalletSteps1Description":{
"QRHardwareWalletSteps1Description":{
"message":"Kết nối với một ví lạnh ngoại tuyến hoàn toàn có thể truyền tin bằng mã QR. Các ví lạnh ngoại tuyến hoàn toàn được hỗ trợ chính thức bao gồm:"
"message":"Kết nối với một ví cứng ngoại tuyến hoàn toàn có thể truyền tin bằng mã QR. Các ví cứng ngoại tuyến hoàn toàn được hỗ trợ chính thức bao gồm:"
},
},
"QRHardwareWalletSteps1Title":{
"QRHardwareWalletSteps1Title":{
"message":"Ví Lạnh dựa trên QR"
"message":"Ví cứng dựa trên QR"
},
},
"QRHardwareWalletSteps2Description":{
"QRHardwareWalletSteps2Description":{
"message":"AirGap Vault & Ngrave (Sắp Ra Mắt)"
"message":"AirGap Vault & Ngrave (Sắp Ra Mắt)"
@ -47,9 +47,6 @@
"about":{
"about":{
"message":"Giới thiệu"
"message":"Giới thiệu"
},
},
"aboutSettingsDescription":{
"message":"Phiên bản, trung tâm trợ giúp và thông tin liên hệ"
},
"acceleratingATransaction":{
"acceleratingATransaction":{
"message":"* Việc đẩy nhanh giao dịch bằng cách sử dụng giá gas cao hơn sẽ tăng khả năng được mạng xử lý nhanh hơn, nhưng không phải lúc nào điều này cũng được đảm bảo."
"message":"* Việc đẩy nhanh giao dịch bằng cách sử dụng giá gas cao hơn sẽ tăng khả năng được mạng xử lý nhanh hơn, nhưng không phải lúc nào điều này cũng được đảm bảo."
},
},
@ -62,7 +59,7 @@
"description":"$1 is the url of the site requesting ability to spend"
"description":"$1 is the url of the site requesting ability to spend"
},
},
"accessingYourCamera":{
"accessingYourCamera":{
"message":"Đang truy cập camera..."
"message":"Đang truy cập máy ảnh..."
},
},
"account":{
"account":{
"message":"Tài khoản"
"message":"Tài khoản"
@ -90,7 +87,7 @@
"message":"Hoạt động"
"message":"Hoạt động"
},
},
"activityLog":{
"activityLog":{
"message":"nhật ký hoạt động"
"message":"Nhật ký hoạt động"
},
},
"add":{
"add":{
"message":"Thêm"
"message":"Thêm"
@ -108,7 +105,7 @@
"message":"Thêm biệt danh"
"message":"Thêm biệt danh"
},
},
"addContact":{
"addContact":{
"message":"Thêm người liên hệ"
"message":"Thêm địa chỉ liên hệ"
},
},
"addCustomToken":{
"addCustomToken":{
"message":"Thêm Token Tùy Chỉnh"
"message":"Thêm Token Tùy Chỉnh"
@ -135,7 +132,7 @@
"message":"Cho phép trang này thêm một mạng?"
"message":"Cho phép trang này thêm một mạng?"
},
},
"addFriendsAndAddresses":{
"addFriendsAndAddresses":{
"message":"Thêm bạn bè và địa chỉ bạn tin cậy"
"message":"Thêm bạn bè và địa chỉ mà bạn tin tưởng"
},
},
"addMemo":{
"addMemo":{
"message":"Thêm bản ghi nhớ"
"message":"Thêm bản ghi nhớ"
@ -185,9 +182,6 @@
"advancedPriorityFeeToolTip":{
"advancedPriorityFeeToolTip":{
"message":"Phí ưu tiên (hay còn được gọi là \"phí khích lệ thợ đào\") được chuyển trực tiếp cho các thợ đào và khuyến khích họ ưu tiên giao dịch của bạn."
"message":"Phí ưu tiên (hay còn được gọi là \"phí khích lệ thợ đào\") được chuyển trực tiếp cho các thợ đào và khuyến khích họ ưu tiên giao dịch của bạn."
},
},
"advancedSettingsDescription":{
"message":"Truy cập các tính năng dành cho nhà phát triển, tải Nhật ký trạng thái xuống, Đặt lại tài khoản, thiết lập mạng thử nghiệm và RPC tùy chỉnh"
},
"affirmAgree":{
"affirmAgree":{
"message":"Tôi đồng ý"
"message":"Tôi đồng ý"
},
},
@ -212,9 +206,6 @@
"alerts":{
"alerts":{
"message":"Cảnh báo"
"message":"Cảnh báo"
},
},
"alertsSettingsDescription":{
"message":"Bật hoặc tắt từng cảnh báo"
},
"allowExternalExtensionTo":{
"allowExternalExtensionTo":{
"message":"Cho phép tiện ích bên ngoài này:"
"message":"Cho phép tiện ích bên ngoài này:"
},
},
@ -268,7 +259,7 @@
"message":"Đã phê duyệt"
"message":"Đã phê duyệt"
},
},
"approvedAmountWithColon":{
"approvedAmountWithColon":{
"message":"Số lượng được chấp nhận:"
"message":"Số tiền được duyệt:"
},
},
"asset":{
"asset":{
"message":"Tài sản"
"message":"Tài sản"
@ -313,7 +304,7 @@
"message":"Đây là mã bí mật bắt buộc phải dùng để khôi phục ví trong trường hợp bạn bị mất thiết bị, quên mật khẩu, phải cài đặt lại MetaMask hoặc muốn truy cập ví của mình trên một thiết bị khác."
"message":"Đây là mã bí mật bắt buộc phải dùng để khôi phục ví trong trường hợp bạn bị mất thiết bị, quên mật khẩu, phải cài đặt lại MetaMask hoặc muốn truy cập ví của mình trên một thiết bị khác."
},
},
"backupApprovalNotice":{
"backupApprovalNotice":{
"message":"Sao lưu Mã khôi phục bí mật để đảm bảo an toàn cho ví và tiền của bạn."
"message":"Sao lưu Cụm mật khẩu khôi phục bí mật để đảm bảo an toàn cho ví và tiền của bạn."
},
},
"backupNow":{
"backupNow":{
"message":"Sao lưu ngay"
"message":"Sao lưu ngay"
@ -371,9 +362,6 @@
"message":"Xem tài khoản tại $1",
"message":"Xem tài khoản tại $1",
"description":"$1 replaced by URL for custom block explorer"
"description":"$1 replaced by URL for custom block explorer"
},
},
"blockiesIdenticon":{
"message":"Dùng biểu tượng nhận dạng kiểu Blockies"
},
"browserNotSupported":{
"browserNotSupported":{
"message":"Trình duyệt của bạn không được hỗ trợ..."
"message":"Trình duyệt của bạn không được hỗ trợ..."
},
},
@ -393,7 +381,7 @@
"message":"Mua ETH qua Wyre"
"message":"Mua ETH qua Wyre"
},
},
"buyWithWyreDescription":{
"buyWithWyreDescription":{
"message":"Wyre cho phép bạn dùng thẻ ghi nợ để nộp ETH trực tiếp vào tài khoản MetaMask của mình."
"message":"Wyre cho phép bạn dùng thẻ ghi nợ để nạp ETH trực tiếp vào tài khoản MetaMask của mình."
},
},
"bytes":{
"bytes":{
"message":"Byte"
"message":"Byte"
@ -436,7 +424,7 @@
"description":"Text that can be clicked to open a browser popup for connecting the ledger device via webhid"
"description":"Text that can be clicked to open a browser popup for connecting the ledger device via webhid"
},
},
"clickToRevealSeed":{
"clickToRevealSeed":{
"message":"Nhấp vào đây để hiện các từ bí mật"
"message":"Nhấn vào đây để hiện các từ bí mật"
},
},
"close":{
"close":{
"message":"Đóng"
"message":"Đóng"
@ -451,19 +439,19 @@
"message":"Xác nhận Cụm Mật Khẩu Khôi Phục Bí Mật"
"message":"Xác nhận Cụm Mật Khẩu Khôi Phục Bí Mật"
},
},
"confirmSecretBackupPhrase":{
"confirmSecretBackupPhrase":{
"message":"Xác nhận Cụm mật khẩu sao lưu bí mật"
"message":"Xác nhận Cụm mật khẩu khôi phục bí mật"
},
},
"confirmed":{
"confirmed":{
"message":"Đã xác nhận"
"message":"Đã xác nhận"
},
},
"confusableUnicode":{
"confusableUnicode":{
"message":"“$1” tương tự với “$2”."
"message":"'$1' tương tự với '$2'."
},
},
"confusableZeroWidthUnicode":{
"confusableZeroWidthUnicode":{
"message":"Tìm thấy ký tự có độ rộng bằng 0."
"message":"Tìm thấy ký tự có độ rộng bằng 0."
},
},
"confusingEnsDomain":{
"confusingEnsDomain":{
"message":"Chúng tôi đã phát hiện thấy một ký tự có thể gây nhầm lẫn trong tên ENS. Hãy kiểm tra tên ENS để tránh khả năng bị lừa đảo."
"message":"Chúng tôi đã phát hiện thấy một ký tự có thể gây nhầm lẫn trong tên ENS. Hãy kiểm tra tên ENS để tránh nguy cơ bị lừa đảo."
},
},
"congratulations":{
"congratulations":{
"message":"Chúc mừng bạn"
"message":"Chúc mừng bạn"
@ -517,11 +505,11 @@
"message":"Trang web đã kết nối"
"message":"Trang web đã kết nối"
},
},
"connectedSitesDescription":{
"connectedSitesDescription":{
"message":"$1 đã kết nối với các trang web này. Các trang web này có thể xem địa chỉ tài khoản của bạn.",
"message":"$1 đã được kết nối với các trang web này. Các trang web này có thể xem địa chỉ tài khoản của bạn.",
"description":"$1 is the account name"
"description":"$1 is the account name"
},
},
"connectedSitesEmptyDescription":{
"connectedSitesEmptyDescription":{
"message":"$1 chưa kết nối với bất kỳ trang web nào.",
"message":"$1 chưa được kết nối với bất kỳ trang web nào.",
"description":"$1 is the account name"
"description":"$1 is the account name"
},
},
"connecting":{
"connecting":{
@ -551,9 +539,6 @@
"contacts":{
"contacts":{
"message":"Danh bạ"
"message":"Danh bạ"
},
},
"contactsSettingsDescription":{
"message":"Thêm, chỉnh sửa, xóa và quản lý danh bạ của bạn"
},
"continue":{
"continue":{
"message":"Tiếp tục"
"message":"Tiếp tục"
},
},
@ -570,7 +555,7 @@
"message":"Địa chỉ hợp đồng"
"message":"Địa chỉ hợp đồng"
},
},
"contractAddressError":{
"contractAddressError":{
"message":"Bạn đang gửi token đến địa chỉ hợp đồng của token. Điều này có thể khiến bạn bị mất những token này."
"message":"Bạn đang gửi token đến địa chỉ hợp đồng của token. Điều này có thể khiến bạn bị mất số token này."
},
},
"contractDeployment":{
"contractDeployment":{
"message":"Triển khai hợp đồng"
"message":"Triển khai hợp đồng"
@ -582,16 +567,16 @@
"message":"Đã sao chép!"
"message":"Đã sao chép!"
},
},
"copyAddress":{
"copyAddress":{
"message":"Sao chép địa chỉ vào khay nhớ tạm"
"message":"Sao chép địa chỉ vào bộ nhớ đệm"
},
},
"copyPrivateKey":{
"copyPrivateKey":{
"message":"Đây là khóa riêng tư của bạn (hãy nhấp vào để sao chép)"
"message":"Đây là khóa riêng tư của bạn (hãy nhấn vào để sao chép)"
},
},
"copyRawTransactionData":{
"copyRawTransactionData":{
"message":"Sao chép dữ liệu giao dịch thô"
"message":"Sao chép dữ liệu giao dịch thô"
},
},
"copyToClipboard":{
"copyToClipboard":{
"message":"Sao chép vào khay nhớ tạm"
"message":"Sao chép vào bộ nhớ đệm"
},
},
"copyTransactionId":{
"copyTransactionId":{
"message":"Sao chép mã giao dịch"
"message":"Sao chép mã giao dịch"
@ -678,10 +663,10 @@
"message":"Thập lục phân"
"message":"Thập lục phân"
},
},
"decimal":{
"decimal":{
"message":"Vị trí thập phân của token"
"message":"Số thập phân của token"
},
},
"decimalsMustZerotoTen":{
"decimalsMustZerotoTen":{
"message":"Số vị trí thập phân ít nhất phải bằng 0 và không được quá 36."
"message":"Số thập phân ít nhất phải bằng 0 và không được quá 36."
},
},
"decrypt":{
"decrypt":{
"message":"Giải mã"
"message":"Giải mã"
@ -698,10 +683,10 @@
"description":"$1 is the web3 site name"
"description":"$1 is the web3 site name"
},
},
"decryptMetamask":{
"decryptMetamask":{
"message":"Thông báo của Decrypt"
"message":"Giải mã thông báo"
},
},
"decryptRequest":{
"decryptRequest":{
"message":"Yêu cầu của Decrypt"
"message":"Giải mã yêu cầu"
},
},
"delete":{
"delete":{
"message":"Xóa"
"message":"Xóa"
@ -740,13 +725,13 @@
"message":"Đóng"
"message":"Đóng"
},
},
"dismissReminderDescriptionField":{
"dismissReminderDescriptionField":{
"message":"Bật tùy chọn này để tắt thông báo nhắc sao lưu cụm mật khẩu khôi phục. Bạn nên sao lưu Cụm mật khẩu khôi phục bí mật của mình để tránh mất tiền"
"message":"Bật tùy chọn này để tắt thông báo nhắc sao lưu Cụm mật khẩu khôi phục bí mật. Bạn nên sao lưu Cụm mật khẩu khôi phục bí mật của mình để tránh mất tiền"
"message":"Tải Cụm mật khẩu sao lưu bí mật này xuống và lưu giữ trên một ổ đĩa cứng hoặc môi trường lưu trữ bên ngoài được mã hóa."
"message":"Tải về Cụm mật khẩu khôi phục bí mật này và lưu trữ trên một ổ đĩa cứng hoặc phương tiện lưu trữ bên ngoài an toàn và được mã hóa."
},
},
"downloadStateLogs":{
"downloadStateLogs":{
"message":"Tải nhật ký trạng thái xuống"
"message":"Tải về nhật ký trạng thái"
},
},
"dropped":{
"dropped":{
"message":"Đã ngừng"
"message":"Đã ngừng"
@ -776,7 +761,7 @@
"message":"Chỉnh sửa tên riêng địa chỉ"
"message":"Chỉnh sửa tên riêng địa chỉ"
},
},
"editContact":{
"editContact":{
"message":"Chỉnh sửa người liên hệ"
"message":"Chỉnh sửa địa chỉ liên hệ"
},
},
"editGasEducationButtonText":{
"editGasEducationButtonText":{
"message":"Tôi nên chọn như thế nào?"
"message":"Tôi nên chọn như thế nào?"
@ -918,7 +903,7 @@
"message":"Yêu cầu khóa mã hóa công khai"
"message":"Yêu cầu khóa mã hóa công khai"
},
},
"endOfFlowMessage1":{
"endOfFlowMessage1":{
"message":"Bạn đã vượt qua bài kiểm tra. Hãy lưu giữ Cụm mật khẩu khôi phục bí mật của bạn an toàn, đó là trách nhiệm của bạn!"
"message":"Bạn đã vượt qua bài kiểm tra - hãy lưu giữ Cụm mật khẩu khôi phục bí mật của bạn an toàn, đó là trách nhiệm của bạn!"
},
},
"endOfFlowMessage10":{
"endOfFlowMessage10":{
"message":"Tất cả đã hoàn tất"
"message":"Tất cả đã hoàn tất"
@ -933,7 +918,7 @@
"message":"Tuyệt đối không chia sẻ cụm mật khẩu với bất kỳ ai."
"message":"Tuyệt đối không chia sẻ cụm mật khẩu với bất kỳ ai."
},
},
"endOfFlowMessage5":{
"endOfFlowMessage5":{
"message":"Hãy cẩn thận với hoạt động lừa đảo! MetaMask sẽ không bao giờ tự ý hỏi Cụm mật khẩu khôi phục bí mật của bạn."
"message":"Hãy cẩn thận với hành vi lừa đảo! MetaMask sẽ không bao giờ tự ý hỏi Cụm mật khẩu khôi phục bí mật của bạn."
},
},
"endOfFlowMessage6":{
"endOfFlowMessage6":{
"message":"Nếu bạn cần sao lưu lại Cụm mật khẩu khôi phục bí mật, bạn có thể tìm thấy chức năng này trong phần Cài đặt -> Bảo mật."
"message":"Nếu bạn cần sao lưu lại Cụm mật khẩu khôi phục bí mật, bạn có thể tìm thấy chức năng này trong phần Cài đặt -> Bảo mật."
@ -1017,10 +1002,6 @@
"ethGasPriceFetchWarning":{
"ethGasPriceFetchWarning":{
"message":"Giá gas dự phòng được cung cấp vì dịch vụ ước tính giá gas chính hiện không hoạt động."
"message":"Giá gas dự phòng được cung cấp vì dịch vụ ước tính giá gas chính hiện không hoạt động."
},
},
"eth_accounts":{
"message":"Xem địa chỉ của các tài khoản được cho phép của bạn (bắt buộc)",
"description":"The description for the `eth_accounts` permission"
},
"ethereumPublicAddress":{
"ethereumPublicAddress":{
"message":"Địa chỉ công khai trên Ethereum"
"message":"Địa chỉ công khai trên Ethereum"
},
},
@ -1039,9 +1020,6 @@
"experimental":{
"experimental":{
"message":"Thử nghiệm"
"message":"Thử nghiệm"
},
},
"experimentalSettingsDescription":{
"message":"Phát hiện token và hơn thế nữa"
},
"exportPrivateKey":{
"exportPrivateKey":{
"message":"Xuất khóa riêng tư"
"message":"Xuất khóa riêng tư"
},
},
@ -1078,7 +1056,7 @@
"description":"Exchange type"
"description":"Exchange type"
},
},
"fileImportFail":{
"fileImportFail":{
"message":"Tính năng nhập tệp không hoạt động? Nhấp vào đây!",
"message":"Tính năng nhập tập tin không hoạt động? Nhấn vào đây!",
"description":"Helps user import their account from a JSON file"
"description":"Helps user import their account from a JSON file"
},
},
"flaskSnapSettingsCardButtonCta":{
"flaskSnapSettingsCardButtonCta":{
@ -1211,9 +1189,6 @@
"general":{
"general":{
"message":"Chung"
"message":"Chung"
},
},
"generalSettingsDescription":{
"message":"Quy đổi tiền, đơn vị tiền chính, ngôn ngữ, biểu tượng nhận dạng kiểu blockies"
},
"getEther":{
"getEther":{
"message":"Nhận Ether"
"message":"Nhận Ether"
},
},
@ -1247,7 +1222,7 @@
"description":"Text representing the MEW path"
"description":"Text representing the MEW path"
},
},
"hardwareWalletSupportLinkConversion":{
"hardwareWalletSupportLinkConversion":{
"message":"nhấp vào đây"
"message":"nhấn vào đây"
},
},
"hardwareWallets":{
"hardwareWallets":{
"message":"Kết nối với một ví cứng"
"message":"Kết nối với một ví cứng"
@ -1298,18 +1273,11 @@
"importAccountError":{
"importAccountError":{
"message":"Lỗi khi nhập tài khoản."
"message":"Lỗi khi nhập tài khoản."
},
},
"importAccountLinkText":{
"message":"nhập bằng Cụm mật khẩu khôi phục bí mật"
},
"importAccountMsg":{
"importAccountMsg":{
"message":"Tài khoản đã nhập sẽ không được liên kết với Cụm mật khẩu khôi phục bí mật cho tài khoản MetaMask đã tạo ban đầu của bạn. Tìm hiểu thêm về các tài khoản đã nhập"
"message":"Tài khoản đã nhập sẽ không được liên kết với Cụm mật khẩu khôi phục bí mật cho tài khoản MetaMask đã tạo ban đầu của bạn. Tìm hiểu thêm về các tài khoản đã nhập"
},
},
"importAccountSeedPhrase":{
"importAccountSeedPhrase":{
"message":"Nhập một tài khoản bằng Cụm mật khẩu khôi phục bí mật"
"message":"Nhập một ví bằng Cụm mật khẩu khôi phục bí mật"
},
"importAccountText":{
"message":"hoặc $1",
"description":"$1 represents the text from `importAccountLinkText` as a link"
},
},
"importExistingWalletDescription":{
"importExistingWalletDescription":{
"message":"Nhập Cụm Mật Khẩu Khôi Phục Bí Mật (còn được gọi là Cụm Mật Khẩu Gốc) mà bạn được cấp khi tạo ví. $1",
"message":"Nhập Cụm Mật Khẩu Khôi Phục Bí Mật (còn được gọi là Cụm Mật Khẩu Gốc) mà bạn được cấp khi tạo ví. $1",
@ -1351,7 +1319,7 @@
"description":"$1 is a clickable link with with text defined by the 'here' key"
"description":"$1 is a clickable link with with text defined by the 'here' key"
},
},
"initialTransactionConfirmed":{
"initialTransactionConfirmed":{
"message":"Mạng đã xác nhận giao dịch ban đầu của bạn. Nhấp vào OK để quay lại."
"message":"Mạng đã xác nhận giao dịch ban đầu của bạn. Nhấn OK để quay lại."
},
},
"insufficientBalance":{
"insufficientBalance":{
"message":"Không đủ số dư."
"message":"Không đủ số dư."
@ -1425,7 +1393,7 @@
"message":"jsDeliver"
"message":"jsDeliver"
},
},
"jsonFile":{
"jsonFile":{
"message":"Tệp JSON",
"message":"Tập tin JSON",
"description":"format for importing an account"
"description":"format for importing an account"
},
},
"keystone":{
"keystone":{
@ -1444,7 +1412,7 @@
"message":"Mạng thử nghiệm Kovan"
"message":"Mạng thử nghiệm Kovan"
},
},
"lastConnected":{
"lastConnected":{
"message":"Đã kết nối lần gần đây nhất"
"message":"Đã kết nối lần cuối"
},
},
"layer1Fees":{
"layer1Fees":{
"message":"Phí Lớp 1"
"message":"Phí Lớp 1"
@ -1457,7 +1425,7 @@
"description":"$1 is link to cancel or speed up transactions"
"description":"$1 is link to cancel or speed up transactions"
},
},
"learnMore":{
"learnMore":{
"message":"Tìm hiểu thêm"
"message":"tìm hiểu thêm"
},
},
"learnMoreUpperCase":{
"learnMoreUpperCase":{
"message":"Tìm hiểu thêm"
"message":"Tìm hiểu thêm"
@ -1517,22 +1485,22 @@
"message":"Có, hãy thiết lập!"
"message":"Có, hãy thiết lập!"
},
},
"likeToImportTokens":{
"likeToImportTokens":{
"message":"Bạn có muốn thêm những token này không?"
"message":"Bạn có muốn nhập những token này không?"
},
},
"link":{
"link":{
"message":"Liên kết"
"message":"Liên kết"
},
},
"links":{
"links":{
"message":"Đường liên kết"
"message":"Liên kết"
},
},
"loadMore":{
"loadMore":{
"message":"Nạp thêm"
"message":"Tải thêm"
},
},
"loading":{
"loading":{
"message":"Đang tải..."
"message":"Đang tải..."
},
},
"loadingTokens":{
"loadingTokens":{
"message":"Đang nạp token..."
"message":"Đang tải token..."
},
},
"localhost":{
"localhost":{
"message":"Máy chủ cục bộ 8545"
"message":"Máy chủ cục bộ 8545"
@ -1586,25 +1554,25 @@
"description":"$1 is key 'medium' (text: 'Market') separated here so that it can be passed in with bold fontweight"
"description":"$1 is key 'medium' (text: 'Market') separated here so that it can be passed in with bold fontweight"
},
},
"memo":{
"memo":{
"message":"thư báo"
"message":"bản ghi nhớ"
},
},
"memorizePhrase":{
"memorizePhrase":{
"message":"Lưu cụm mật khẩu này."
"message":"Ghi nhớ cụm mật khẩu này."
},
},
"message":{
"message":{
"message":"Thông báo"
"message":"Thông báo"
},
},
"metaMaskConnectStatusParagraphOne":{
"metaMaskConnectStatusParagraphOne":{
"message":"Giờ đây bạn có thể kiểm soát chi tiết hơn đối với các mối liên kết với tài khoản của mình trong MetaMask."
"message":"Giờ đây, bạn có nhiều quyền kiểm soát hơn đối với các kết nối của tài khoản trong MetaMask."
},
},
"metaMaskConnectStatusParagraphThree":{
"metaMaskConnectStatusParagraphThree":{
"message":"Nhấp vào đó để quản lý các tài khoản bạn đã kết nối."
"message":"Nhấn vào để quản lý các tài khoản đã kết nối của bạn."
},
},
"metaMaskConnectStatusParagraphTwo":{
"metaMaskConnectStatusParagraphTwo":{
"message":"Nút trạng thái kết nối sẽ hiển thị nếu trang web mà bạn đang truy cập được kết nối với tài khoản bạn đang chọn."
"message":"Nút trạng thái kết nối sẽ hiển thị nếu trang web mà bạn đang truy cập được kết nối với tài khoản bạn đang chọn."
},
},
"metamaskDescription":{
"metamaskDescription":{
"message":"Kết nối bạn với Ethereum và Web phi tập trung."
"message":"Kết nối bạn với Ethereum và trang Web phi tập trung."
},
},
"metamaskSwapsOfflineDescription":{
"metamaskSwapsOfflineDescription":{
"message":"Tính năng Hoán đổi trên MetaMask đang được bảo trì. Vui lòng kiểm tra lại sau."
"message":"Tính năng Hoán đổi trên MetaMask đang được bảo trì. Vui lòng kiểm tra lại sau."
@ -1647,7 +1615,7 @@
"description":"The $1 is the bolded word 'Never', from 'metametricsCommitmentsBoldNever'"
"description":"The $1 is the bolded word 'Never', from 'metametricsCommitmentsBoldNever'"
},
},
"metametricsCommitmentsSendAnonymizedEvents":{
"metametricsCommitmentsSendAnonymizedEvents":{
"message":"Gửi các lượt nhấp và xem trang đã được ẩn danh"
"message":"Gửi các lượt nhấn và xem trang đã được ẩn danh"
},
},
"metametricsHelpImproveMetaMask":{
"metametricsHelpImproveMetaMask":{
"message":"Giúp chúng tôi cải thiện MetaMask"
"message":"Giúp chúng tôi cải thiện MetaMask"
@ -1701,11 +1669,11 @@
"message":"Gửi Phiếu"
"message":"Gửi Phiếu"
},
},
"needImportFile":{
"needImportFile":{
"message":"Bạn phải chọn tệp để nhập.",
"message":"Bạn phải chọn tập tin để nhập.",
"description":"User is important an account and needs to add a file to continue"
"description":"User is important an account and needs to add a file to continue"
},
},
"negativeETH":{
"negativeETH":{
"message":"Không thể gửi khoản ETH âm."
"message":"Không thể gửi số lượng ETH âm."
},
},
"networkDetails":{
"networkDetails":{
"message":"Thông tin về mạng"
"message":"Thông tin về mạng"
@ -1717,7 +1685,7 @@
"message":"BSC"
"message":"BSC"
},
},
"networkNameDefinition":{
"networkNameDefinition":{
"message":"Tên liên kết với mạng này."
"message":"Tên được liên kết với mạng này."
},
},
"networkNameEthereum":{
"networkNameEthereum":{
"message":"Ethereum"
"message":"Ethereum"
@ -1734,9 +1702,6 @@
"networkSettingsChainIdDescription":{
"networkSettingsChainIdDescription":{
"message":"Mã chuỗi được dùng để ký các giao dịch. Giá trị này phải khớp với mã chuỗi do mạng trả về. Bạn có thể nhập một số thập phân hoặc số thập lục phân bắt đầu bằng “0x” nhưng chúng tôi sẽ hiển thị số ở dạng thập phân."
"message":"Mã chuỗi được dùng để ký các giao dịch. Giá trị này phải khớp với mã chuỗi do mạng trả về. Bạn có thể nhập một số thập phân hoặc số thập lục phân bắt đầu bằng “0x” nhưng chúng tôi sẽ hiển thị số ở dạng thập phân."
},
},
"networkSettingsDescription":{
"message":"Thêm và chỉnh sửa mạng RPC tùy chỉnh"
},
"networkStatus":{
"networkStatus":{
"message":"Trạng thái mạng"
"message":"Trạng thái mạng"
},
},
@ -1767,20 +1732,17 @@
"message":"Tài khoản mới"
"message":"Tài khoản mới"
},
},
"newAccountDetectedDialogMessage":{
"newAccountDetectedDialogMessage":{
"message":"Đã tìm thấy địa chỉ mới! Nhấp vào đây để thêm địa chỉ này vào sổ địa chỉ của bạn."
"message":"Đã tìm thấy địa chỉ mới! Nhấn vào đây để thêm địa chỉ này vào sổ địa chỉ của bạn."
},
},
"newAccountNumberName":{
"newAccountNumberName":{
"message":"Tài khoản $1",
"message":"Tài khoản $1",
"description":"Default name of next account to be created on create account screen"
"description":"Default name of next account to be created on create account screen"
},
},
"newCollectibleAddFailed":{
"message":"Bộ sưu tập đã không được thêm vì: $1"
},
"newCollectibleAddedMessage":{
"newCollectibleAddedMessage":{
"message":"Bộ sưu tập đã được thêm thành công!"
"message":"Bộ sưu tập đã được thêm thành công!"
},
},
"newContact":{
"newContact":{
"message":"Người liên hệ mới"
"message":"Địa chỉ liên hệ mới"
},
},
"newContract":{
"newContract":{
"message":"Hợp đồng mới"
"message":"Hợp đồng mới"
@ -1832,7 +1794,7 @@
"message":"Chưa có địa chỉ nào được đặt cho tên này."
"message":"Chưa có địa chỉ nào được đặt cho tên này."
},
},
"noAlreadyHaveSeed":{
"noAlreadyHaveSeed":{
"message":"Không, tôi đã có Cụm mật khẩu bí mật"
"message":"Không, tôi đã có Cụm mật khẩu khôi phục bí mật"
},
},
"noConversionDateAvailable":{
"noConversionDateAvailable":{
"message":"Hiện Không Có Ngày Chuyển Đổi Tiền Tệ Nào"
"message":"Hiện Không Có Ngày Chuyển Đổi Tiền Tệ Nào"
@ -1889,7 +1851,7 @@
"description":"The 'call to action' on the button, or link, of the 'Stay secure' notification. Upon clicking, users will be taken to a page about security on the metamask support website."
"description":"The 'call to action' on the button, or link, of the 'Stay secure' notification. Upon clicking, users will be taken to a page about security on the metamask support website."
},
},
"notifications3Description":{
"notifications3Description":{
"message":"Luôn cập nhật các phương pháp bảo mật hay nhất của MetaMask và nhận các mẹo mới nhất về bảo mật từ nhóm hỗ trợ chính thức của MetaMask.",
"message":"Luôn cập nhật các phương pháp bảo mật tốt nhất của MetaMask và nhận các mẹo mới nhất về bảo mật từ nhóm hỗ trợ chính thức của MetaMask.",
"description":"Description of a notification in the 'See What's New' popup. Describes the information they can get on security from the linked support page."
"description":"Description of a notification in the 'See What's New' popup. Describes the information they can get on security from the linked support page."
},
},
"notifications3Title":{
"notifications3Title":{
@ -1921,7 +1883,7 @@
"description":"Description of a notification in the 'See What's New' popup. Describes the Ledger support update."
"description":"Description of a notification in the 'See What's New' popup. Describes the Ledger support update."
},
},
"notifications6DescriptionTwo":{
"notifications6DescriptionTwo":{
"message":"Bạn có thể kích hoạt tính năng hỗ trợ Ledger Live bằng cách nhấp vào phần Cài đặt > Nâng cao > Sử dụng Ledger Live.",
"message":"Bạn có thể kích hoạt tính năng hỗ trợ Ledger Live bằng cách nhấn vào phần Cài đặt > Nâng cao > Sử dụng Ledger Live.",
"description":"Description of a notification in the 'See What's New' popup. Describes the Ledger support update."
"description":"Description of a notification in the 'See What's New' popup. Describes the Ledger support update."
},
},
"notifications6Title":{
"notifications6Title":{
@ -2045,10 +2007,10 @@
"description":"Shown to the user on the confirm screen when they are viewing MetaMask in a popup window but need to connect their ledger via webhid."
"description":"Shown to the user on the confirm screen when they are viewing MetaMask in a popup window but need to connect their ledger via webhid."
},
},
"optional":{
"optional":{
"message":"Tùy chọn"
"message":"Không bắt buộc"
},
},
"optionalWithParanthesis":{
"optionalWithParanthesis":{
"message":"(Tùy chọn)"
"message":"(Không bắt buộc)"
},
},
"or":{
"or":{
"message":"hoặc"
"message":"hoặc"
@ -2100,6 +2062,10 @@
"permissionRequest":{
"permissionRequest":{
"message":"Yêu cầu quyền"
"message":"Yêu cầu quyền"
},
},
"permission_ethereumAccounts":{
"message":"Xem địa chỉ, số dư tài khoản, hoạt động và bắt đầu giao dịch",
"description":"The description for the `eth_accounts` permission"
},
"permissions":{
"permissions":{
"message":"Quyền"
"message":"Quyền"
},
},
@ -2137,7 +2103,7 @@
"description":"select this type of file to use to import an account"
"description":"select this type of file to use to import an account"
},
},
"privateKeyWarning":{
"privateKeyWarning":{
"message":"Cảnh báo: Tuyệt đối không để lộ mã khóa này. Bất kỳ ai có mã khóa riêng tư của bạn cũng có thể đánh cắp tài sản được giữ trong tài khoản của bạn."
"message":"Cảnh báo: Tuyệt đối không để lộ mã khóa này. Bất kỳ ai có mã khóa riêng tư của bạn cũng có thể đánh cắp tài sản được lưu giữ trong tài khoản của bạn."
},
},
"privateNetwork":{
"privateNetwork":{
"message":"Mạng riêng"
"message":"Mạng riêng"
@ -2253,9 +2219,6 @@
"restore":{
"restore":{
"message":"Khôi phục"
"message":"Khôi phục"
},
},
"restoreAccountWithSeed":{
"message":"Khôi phục tài khoản của bạn bằng cụm mật khẩu khôi phục bí mật"
},
"restoreWalletPreferences":{
"restoreWalletPreferences":{
"message":"Đã tìm thấy bản sao lưu dữ liệu của bạn từ $1. Bạn có muốn khôi phục các tùy chọn ưu tiên trong ví của mình không?",
"message":"Đã tìm thấy bản sao lưu dữ liệu của bạn từ $1. Bạn có muốn khôi phục các tùy chọn ưu tiên trong ví của mình không?",
"description":"$1 is the date at which the data was backed up"
"description":"$1 is the date at which the data was backed up"
@ -2291,7 +2254,7 @@
"message":"Lưu"
"message":"Lưu"
},
},
"saveAsCsvFile":{
"saveAsCsvFile":{
"message":"Lưu dưới dạng tệp CSV"
"message":"Lưu dưới dạng tập tin CSV"
},
},
"scanInstructions":{
"scanInstructions":{
"message":"Đặt mã QR vào trước máy ảnh"
"message":"Đặt mã QR vào trước máy ảnh"
@ -2315,16 +2278,13 @@
"message":"Tìm kiếm token"
"message":"Tìm kiếm token"
},
},
"secretBackupPhraseDescription":{
"secretBackupPhraseDescription":{
"message":"Cụm mật khẩu sao lưu bí mật giúp việc sao lưu và khôi phục tài khoản trở nên dễ dàng."
"message":"Cụm mật khẩu khôi phục bí mật giúp việc sao lưu và khôi phục tài khoản trở nên dễ dàng."
},
},
"secretBackupPhraseWarning":{
"secretBackupPhraseWarning":{
"message":"CẢNH BÁO: Tuyệt đối không để lộ cụm mật khẩu sao lưu của bạn. Bất kỳ ai có cụm mật khẩu này cũng có thể lấy Ether của bạn vĩnh viễn."
"message":"CẢNH BÁO: Tuyệt đối không để lộ Cụm mật khẩu khôi phục bí mật của bạn. Bất kỳ ai có cụm mật khẩu này cũng có thể lấy Ether của bạn vĩnh viễn."
},
},
"secretPhrase":{
"secretPhrase":{
"message":"Nhập cụm mật khẩu bí mật của bạn vào đây để khôi phục két của bạn."
"message":"Chỉ tự động tải tài khoản đầu tên trên ví. Sau khi hoàn tất quá trình này, để thêm tài khoản bổ sung, hãy nhấn vào trình đơn thả xuống và chọn Tạo tài khoản."
},
"secretPhraseWarning":{
"message":"Nếu bạn khôi phục bằng cách sử dụng một Cụm Mật Khẩu Khôi Phục Bí Mật khác, thì ví, tài khoản và tài sản hiện tại của bạn sẽ bị xóa khỏi ứng dụng này vĩnh viễn. Không thể hoàn tác hành động này."
},
},
"secretRecoveryPhrase":{
"secretRecoveryPhrase":{
"message":"Cụm Mật Khẩu Khôi Phục Bí Mật"
"message":"Cụm Mật Khẩu Khôi Phục Bí Mật"
@ -2335,9 +2295,6 @@
"securityAndPrivacy":{
"securityAndPrivacy":{
"message":"Bảo mật và quyền riêng tư"
"message":"Bảo mật và quyền riêng tư"
},
},
"securitySettingsDescription":{
"message":"Các cài đặt quyền riêng tư và Cụm mật khẩu khôi phục bí mật của ví"
},
"seedPhraseConfirm":{
"seedPhraseConfirm":{
"message":"Xác nhận Cụm Mật Khẩu Khôi Phục Bí Mật"
"message":"Xác nhận Cụm Mật Khẩu Khôi Phục Bí Mật"
},
},
@ -2360,25 +2317,25 @@
"message":"Lưu giữ trong hộp ký gửi an toàn."
"message":"Lưu giữ trong hộp ký gửi an toàn."
},
},
"seedPhraseIntroSidebarBulletTwo":{
"seedPhraseIntroSidebarBulletTwo":{
"message":"Lưu giữ trong két an toàn."
"message":"Lưu giữ trong két an toàn của ngân hàng."
},
},
"seedPhraseIntroSidebarCopyOne":{
"seedPhraseIntroSidebarCopyOne":{
"message":"Cụm mật khẩu khôi phục bí mật là “chìa khóa chính” để truy cập ví và số tiền của bạn."
"message":"Cụm mật khẩu khôi phục bí mật gồm 12 từ là “chìa khóa chính” để truy cập ví và số tiền của bạn"
},
},
"seedPhraseIntroSidebarCopyThree":{
"seedPhraseIntroSidebarCopyThree":{
"message":"Nếu ai đó hỏi bạn cụm mật khẩu khôi phục bí mật, thì họ đang cố gắng lừa đảo bạn."
"message":"Nếu ai đó hỏi bạn cụm mật khẩu khôi phục bí mật, thì họ đang cố gắng lừa đảo và đánh cắp tiền trong ví của bạn"
},
},
"seedPhraseIntroSidebarCopyTwo":{
"seedPhraseIntroSidebarCopyTwo":{
"message":"Đừng bao giờ cho ai biết cụm mật khẩu khôi phục bí mật, kể cả MetaMask!"
"message":"Đừng bao giờ cho ai biết cụm mật khẩu khôi phục bí mật, kể cả MetaMask!"
},
},
"seedPhraseIntroSidebarTitleOne":{
"seedPhraseIntroSidebarTitleOne":{
"message":"Cụm mật khẩu khôi phục là gì?"
"message":"Cụm mật khẩu khôi phục bí mật là gì?"
},
},
"seedPhraseIntroSidebarTitleThree":{
"seedPhraseIntroSidebarTitleThree":{
"message":"Tôi có nên cho ai biết cụm mật khẩu khôi phục bí mật của mình không?"
"message":"Tôi có nên cho ai biết cụm mật khẩu khôi phục bí mật của mình không?"
},
},
"seedPhraseIntroSidebarTitleTwo":{
"seedPhraseIntroSidebarTitleTwo":{
"message":"Tôi lưu cụm mật khẩu khôi phục của mình bằng cách nào?"
"message":"Tôi lưu Cụm mật khẩu khôi phục bí mật của mình bằng cách nào?"
},
},
"seedPhraseIntroTitle":{
"seedPhraseIntroTitle":{
"message":"Bảo mật cho ví của bạn"
"message":"Bảo mật cho ví của bạn"
@ -2405,7 +2362,7 @@
"message":"Chọn phí gas cao hơn để tăng tốc quá trình xử lý giao dịch của bạn.*"
"message":"Chọn phí gas cao hơn để tăng tốc quá trình xử lý giao dịch của bạn.*"
},
},
"selectAccounts":{
"selectAccounts":{
"message":"Chọn (các) tài khoản"
"message":"Chọn (các) tài khoản để sử dụng trên trang web này"
},
},
"selectAll":{
"selectAll":{
"message":"Chọn tất cả"
"message":"Chọn tất cả"
@ -2420,13 +2377,13 @@
"message":"Vui lòng chọn từng cụm mật khẩu theo thứ tự để đảm bảo sự chính xác."
"message":"Vui lòng chọn từng cụm mật khẩu theo thứ tự để đảm bảo sự chính xác."
},
},
"selectHdPath":{
"selectHdPath":{
"message":"Chọn đường dẫn phân cấp xác định"
"message":"Chọn đường dẫn HD"
},
},
"selectNFTPrivacyPreference":{
"selectNFTPrivacyPreference":{
"message":"Bật phát hiện NFT trong phần Cài Đặt"
"message":"Bật phát hiện NFT trong phần Cài Đặt"
},
},
"selectPathHelp":{
"selectPathHelp":{
"message":"Nếu bạn không thấy các tài khoản Ledger hiện có của bạn dưới đây, hãy thử chuyển đường dẫn thành \"Legacy (MEW / MyCrypto)\""
"message":"Nếu bạn không thấy các tài khoản như mong đợi, hãy chuyển sang đường dẫn HD."
},
},
"selectType":{
"selectType":{
"message":"Chọn loại"
"message":"Chọn loại"
@ -2454,9 +2411,6 @@
"message":"Gửi $1",
"message":"Gửi $1",
"description":"$1 represents the native currency symbol for the current network (e.g. ETH or BNB)"
"description":"$1 represents the native currency symbol for the current network (e.g. ETH or BNB)"
},
},
"separateEachWord":{
"message":"Phân tách mỗi từ bằng một dấu cách"
},
"setAdvancedPrivacySettings":{
"setAdvancedPrivacySettings":{
"message":"Thiết lập cài đặt quyền riêng tư nâng cao"
"message":"Thiết lập cài đặt quyền riêng tư nâng cao"
},
},
@ -2473,13 +2427,13 @@
"message":"Quyền kiểm soát gas nâng cao"
"message":"Quyền kiểm soát gas nâng cao"
},
},
"showAdvancedGasInlineDescription":{
"showAdvancedGasInlineDescription":{
"message":"Chọn tùy chọn này để hiển thị các quyền kiểm soát giá và giới hạn ngay trên màn hình gửi và xác nhận."
"message":"Chọn tùy chọn này để hiển thị các quyền kiểm soát giá gas và giới hạn ngay trên màn hình gửi và xác nhận."
},
},
"showFiatConversionInTestnets":{
"showFiatConversionInTestnets":{
"message":"Hiển thị tỷ lệ quy đổi trên các mạng thử nghiệm"
"message":"Hiển thị tỷ lệ quy đổi trên các mạng thử nghiệm"
},
},
"showFiatConversionInTestnetsDescription":{
"showFiatConversionInTestnetsDescription":{
"message":"Chọn tùy chọn này để hiển thị tỷ lệ quy đổi pháp định trên Mạng thử nghiệm"
"message":"Chọn tùy chọn này để hiển thị tỷ lệ quy đổi tiền pháp định trên mạng thử nghiệm"
},
},
"showHexData":{
"showHexData":{
"message":"Hiển thị dữ liệu thập lục phân"
"message":"Hiển thị dữ liệu thập lục phân"
@ -2512,7 +2466,7 @@
"message":"Hiển thị các mạng thử nghiệm"
"message":"Hiển thị các mạng thử nghiệm"
},
},
"showTestnetNetworksDescription":{
"showTestnetNetworksDescription":{
"message":"Chọn cái này để hiển thị các mạng thử nghiệm trong danh sách mạng"
"message":"Chọn tùy chọn này để hiển thị các mạng thử nghiệm trong danh sách mạng"
},
},
"sigRequest":{
"sigRequest":{
"message":"Yêu cầu chữ ký"
"message":"Yêu cầu chữ ký"
@ -2521,7 +2475,7 @@
"message":"Ký"
"message":"Ký"
},
},
"signNotice":{
"signNotice":{
"message":"Việc ký thông báo này có thể gây ra \nảnh hưởng nguy hiểm ngoài ý muốn. Chỉ ký những thông báo từ \ncác trang web mà bạn hoàn toàn tin tưởng bằng toàn bộ tài khoản của mình.\n Chúng tôi sẽ loại bỏ phương thức nguy hiểm này trong phiên bản sau này. "
"message":"Việc ký vào thông báo này có thể gây nguy hiểm. Chữ ký này có thể được dùng để thực hiện bất kỳ hành động nào thay mặt cho tài khoản của bạn, bao gồm cả cấp toàn quyền kiểm soát tài khoản và tất cả tài sản bên trong cho trang web yêu cầu. Chỉ ký vào thông báo này nếu bạn biết mình đang làm gì hoặc hoàn toàn tin tưởng trang web yêu cầu."
},
},
"signatureRequest":{
"signatureRequest":{
"message":"Yêu cầu chữ ký"
"message":"Yêu cầu chữ ký"
@ -2621,32 +2575,32 @@
"message":"Đảm bảo Lattice1 của bạn đã sẵn sàng để kết nối"
"message":"Đảm bảo Lattice1 của bạn đã sẵn sàng để kết nối"
},
},
"step1LatticeWalletMsg":{
"step1LatticeWalletMsg":{
"message":"Bạn có thể kết nối MetaMask với Lattice1 sau khi thiết bị đã được thiết lập và trực tuyến. Mở khóa thiết bị và chuẩn bị sẵn ID Thiết Bị. Để biết thêm về cách sử dụng ví lạnh, $1",
"message":"Bạn có thể kết nối MetaMask với Lattice1 sau khi thiết bị đã được thiết lập và trực tuyến. Mở khóa thiết bị và chuẩn bị sẵn ID Thiết Bị. Để biết thêm về cách sử dụng ví cứng, $1",
"description":"$1 represents the `hardwareWalletSupportLinkConversion` localization key"
"description":"$1 represents the `hardwareWalletSupportLinkConversion` localization key"
},
},
"step1LedgerWallet":{
"step1LedgerWallet":{
"message":"Tải ứng dụng Ledger xuống"
"message":"Tải về ứng dụng Ledger"
},
},
"step1LedgerWalletMsg":{
"step1LedgerWalletMsg":{
"message":"Tải xuống, thiết lập và nhập mật khẩu của bạn để mở khóa $1.",
"message":"Tải về, thiết lập và nhập mật khẩu của bạn để mở khóa $1.",
"description":"$1 represents the `ledgerLiveApp` localization value"
"description":"$1 represents the `ledgerLiveApp` localization value"
},
},
"step1TrezorWallet":{
"step1TrezorWallet":{
"message":"Kết nối ví Trezor"
"message":"Cắm ví Trezor"
},
},
"step1TrezorWalletMsg":{
"step1TrezorWalletMsg":{
"message":"Kết nối ví của bạn trực tiếp với máy tính. Để biết thêm thông tin về cách sử dụng thiết bị ví cứng của bạn, $1",
"message":"Kết nối ví của bạn trực tiếp với máy tính. Để biết thêm thông tin về cách sử dụng thiết bị ví cứng của bạn, $1",
"description":"$1 represents the `hardwareWalletSupportLinkConversion` localization key"
"description":"$1 represents the `hardwareWalletSupportLinkConversion` localization key"
},
},
"step2LedgerWallet":{
"step2LedgerWallet":{
"message":"Kết nối ví Ledger"
"message":"Cắm ví Ledger"
},
},
"step2LedgerWalletMsg":{
"step2LedgerWalletMsg":{
"message":"Kết nối ví của bạn trực tiếp với máy tính. Mở khóa Ledger của bạn và mở ứng dụng Ethereum. Để biết thêm thông tin về cách sử dụng thiết bị ví cứng của bạn, $1.",
"message":"Kết nối ví của bạn trực tiếp với máy tính. Mở khóa Ledger của bạn và mở ứng dụng Ethereum. Để biết thêm thông tin về cách sử dụng thiết bị ví cứng của bạn, $1.",
"description":"$1 represents the `hardwareWalletSupportLinkConversion` localization key"
"description":"$1 represents the `hardwareWalletSupportLinkConversion` localization key"
},
},
"storePhrase":{
"storePhrase":{
"message":"Lưu cụm mật khẩu này trong trình quản lý mật khẩu chẳng hạn như 1Password."
"message":"Lưu trữ cụm mật khẩu này trong trình quản lý mật khẩu chẳng hạn như 1Password."
},
},
"submit":{
"submit":{
"message":"Gửi"
"message":"Gửi"
@ -2824,15 +2778,11 @@
"swapQuoteDetailsSlippageInfo":{
"swapQuoteDetailsSlippageInfo":{
"message":"Khi giá giữa thời điểm đặt lệnh và thời điểm xác nhận lệnh thay đổi, hiện tượng này được gọi là \"trượt giá\". Giao dịch hoán đổi của bạn sẽ tự động hủy nếu mức trượt giá vượt quá \"mức trượt giá cho phép\" đã đặt."
"message":"Khi giá giữa thời điểm đặt lệnh và thời điểm xác nhận lệnh thay đổi, hiện tượng này được gọi là \"trượt giá\". Giao dịch hoán đổi của bạn sẽ tự động hủy nếu mức trượt giá vượt quá \"mức trượt giá cho phép\" đã đặt."
},
},
"swapQuoteNofN":{
"message":"Báo giá $1/$2",
"description":"A count of loaded quotes shown to the user while they are waiting for quotes to be fetched. $1 is the number of quotes already loaded, and $2 is the total number of quotes to load."
},
"swapQuoteSource":{
"swapQuoteSource":{
"message":"Nguồn báo giá"
"message":"Nguồn báo giá"
},
},
"swapQuotesExpiredErrorDescription":{
"swapQuotesExpiredErrorDescription":{
"message":"Vui lòng yêu cầu báo giá mới để biết các mức tỷ lệ mới nhất."
"message":"Vui lòng yêu cầu báo giá mới để biết các tỷ giá mới nhất."
},
},
"swapQuotesExpiredErrorTitle":{
"swapQuotesExpiredErrorTitle":{
"message":"Hết thời gian chờ báo giá"
"message":"Hết thời gian chờ báo giá"
@ -2844,10 +2794,10 @@
"message":"Không có báo giá"
"message":"Không có báo giá"
},
},
"swapRate":{
"swapRate":{
"message":"Tỷ lệ"
"message":"Tỷ giá"
},
},
"swapReceiving":{
"swapReceiving":{
"message":"Đang nhận"
"message":"Nhận"
},
},
"swapReceivingInfoTooltip":{
"swapReceivingInfoTooltip":{
"message":"Đây là giá trị ước tính. Số tiền chính xác phụ thuộc vào mức trượt giá."
"message":"Đây là giá trị ước tính. Số tiền chính xác phụ thuộc vào mức trượt giá."
@ -2856,7 +2806,7 @@
"message":"Yêu cầu báo giá"
"message":"Yêu cầu báo giá"
},
},
"swapReviewSwap":{
"swapReviewSwap":{
"message":"Xem xét giao dịch hoán đổi"
"message":"Xem lại giao dịch hoán đổi"
},
},
"swapSearchForAToken":{
"swapSearchForAToken":{
"message":"Tìm kiếm token"
"message":"Tìm kiếm token"
@ -2880,7 +2830,7 @@
"message":"Nguồn thanh khoản"
"message":"Nguồn thanh khoản"
},
},
"swapSourceInfo":{
"swapSourceInfo":{
"message":"Chúng tôi tìm kiếm nhiều nguồn thanh khoản (các sàn giao dịch, trình tổng hợp và nhà tạo lập thị trường) để tìm được mức tỷ lệ tốt nhất và phí mạng thấp nhất."
"message":"Chúng tôi tìm kiếm nhiều nguồn thanh khoản (các sàn giao dịch, trình tổng hợp và nhà tạo lập thị trường) để tìm được mức tỷ giá tốt nhất và phí mạng thấp nhất."
},
},
"swapSuggested":{
"swapSuggested":{
"message":"Hoán đổi gợi ý"
"message":"Hoán đổi gợi ý"
@ -2997,16 +2947,16 @@
"message":"Đang đồng bộ"
"message":"Đang đồng bộ"
},
},
"syncWithMobile":{
"syncWithMobile":{
"message":"Đồng bộ hóa với thiết bị di động"
"message":"Đồng bộ với thiết bị di động"
},
},
"syncWithMobileBeCareful":{
"syncWithMobileBeCareful":{
"message":"Đảm bảo rằng không có ai nhìn vào màn hình của bạn khi quét mã này"
"message":"Đảm bảo rằng không có ai nhìn vào màn hình của bạn khi quét mã này"
},
},
"syncWithMobileComplete":{
"syncWithMobileComplete":{
"message":"Đã đồng bộ hóa thành công dữ liệu của bạn. Tận hưởng ứng dụng MetaMask trên thiết bị di động!"
"message":"Đã đồng bộ thành công dữ liệu của bạn. Tận hưởng ứng dụng MetaMask trên thiết bị di động!"
},
},
"syncWithMobileDesc":{
"syncWithMobileDesc":{
"message":"Bạn có thể đồng bộ hóa tài khoản và thông tin của mình với thiết bị di động. Mở ứng dụng MetaMask trên thiết bị di động, chuyển đến phần \"Cài đặt\" và nhấn vào \"Đồng bộ hóa với tiện ích trình duyệt\""
"message":"Bạn có thể đồng bộ tài khoản và thông tin của mình với thiết bị di động. Mở ứng dụng MetaMask trên thiết bị di động, chuyển đến phần \"Cài đặt\" và nhấn vào \"Đồng bộ với tiện ích trình duyệt\""
},
},
"syncWithMobileDescNewUsers":{
"syncWithMobileDescNewUsers":{
"message":"Nếu mới mở ứng dụng MetaMask trên thiết bị di động lần đầu tiên, bạn chỉ cần làm theo các bước hướng dẫn trên điện thoại."
"message":"Nếu mới mở ứng dụng MetaMask trên thiết bị di động lần đầu tiên, bạn chỉ cần làm theo các bước hướng dẫn trên điện thoại."
@ -3015,16 +2965,16 @@
"message":"Quét mã này bằng ứng dụng MetaMask trên thiết bị di động"
"message":"Quét mã này bằng ứng dụng MetaMask trên thiết bị di động"
},
},
"syncWithMobileTitle":{
"syncWithMobileTitle":{
"message":"Đồng bộ hóa với thiết bị di động"
"message":"Đồng bộ với thiết bị di động"
},
},
"syncWithThreeBox":{
"syncWithThreeBox":{
"message":"Đồng bộ hóa dữ liệu với 3Box (thử nghiệm)"
"message":"Đồng bộ dữ liệu với 3Box (thử nghiệm)"
},
},
"syncWithThreeBoxDescription":{
"syncWithThreeBoxDescription":{
"message":"Bật để sao lưu các tùy chọn cài đặt của bạn với 3Box. Tính năng này hiện đang trong giai đoạn thử nghiệm; bạn tự chịu rủi ro khi sử dụng."
"message":"Bật để sao lưu các tùy chọn cài đặt của bạn với 3Box. Tính năng này hiện đang trong giai đoạn thử nghiệm; bạn tự chịu rủi ro khi sử dụng."
},
},
"syncWithThreeBoxDisabled":{
"syncWithThreeBoxDisabled":{
"message":"Đã tắt 3Box do có lỗi xảy ra trong quá trình đồng bộ hóa ban đầu"
"message":"Đã tắt 3Box do có lỗi xảy ra trong quá trình đồng bộ ban đầu"
},
},
"terms":{
"terms":{
"message":"Điều khoản sử dụng"
"message":"Điều khoản sử dụng"
@ -3065,7 +3015,7 @@
"message":"Địa chỉ hợp đồng token"
"message":"Địa chỉ hợp đồng token"
},
},
"tokenDecimalFetchFailed":{
"tokenDecimalFetchFailed":{
"message":"Cần có vị trí thập phân của token."
"message":"Cần có số thập phân của token."
},
},
"tokenDetectionAnnouncement":{
"tokenDetectionAnnouncement":{
"message":"Mới! Tính năng phát hiện token được cải tiến hiện đã có sẵn trên Mạng chính thức của Ethereum dưới dạng một tính năng thử nghiệm. $1"
"message":"Mới! Tính năng phát hiện token được cải tiến hiện đã có sẵn trên Mạng chính thức của Ethereum dưới dạng một tính năng thử nghiệm. $1"
@ -3083,7 +3033,7 @@
"message":"giao dịch"
"message":"giao dịch"
},
},
"transactionCancelAttempted":{
"transactionCancelAttempted":{
"message":"Đã cố gắng hủy giao dịch với mức phí gas $1 lúc $2"
"message":"Đã cố gắng hủy giao dịch với mức phí gas ước tính $1 lúc $2"
},
},
"transactionCancelSuccess":{
"transactionCancelSuccess":{
"message":"Đã hủy thành công giao dịch lúc $2"
"message":"Đã hủy thành công giao dịch lúc $2"
@ -3104,7 +3054,7 @@
"message":"Đã xác minh hợp đồng trên $1"
"message":"Đã xác minh hợp đồng trên $1"
},
},
"transactionDecodingUnsupportedNetworkError":{
"transactionDecodingUnsupportedNetworkError":{
"message":"Giải mã giao dịch hiện không khả dụng cho chainId $1"
"message":"Giải mã giao dịch hiện không khả dụng cho mã chuỗi $1"
},
},
"transactionDetailDappGasMoreInfo":{
"transactionDetailDappGasMoreInfo":{
"message":"Trang web gợi ý"
"message":"Trang web gợi ý"
@ -3173,10 +3123,10 @@
"message":"Tổng Phí Gas"
"message":"Tổng Phí Gas"
},
},
"transactionResubmitted":{
"transactionResubmitted":{
"message":"Đã gửi lại giao dịch với mức phí gas tăng lên $1 lúc $2"
"message":"Đã gửi lại giao dịch với mức phí gas ước tính tăng lên $1 lúc $2"
},
},
"transactionSubmitted":{
"transactionSubmitted":{
"message":"Đã gửi giao dịch với mức phí gas $1 lúc $2."
"message":"Đã gửi giao dịch với mức phí gas ước tính $1 lúc $2."
},
},
"transactionUpdated":{
"transactionUpdated":{
"message":"Đã cập nhật giao dịch lúc $2."
"message":"Đã cập nhật giao dịch lúc $2."
@ -3266,7 +3216,7 @@
"description":"This is an error message we show the user if they attempt to send a collectible asset type, for which currently don't support sending"
"description":"This is an error message we show the user if they attempt to send a collectible asset type, for which currently don't support sending"
},
},
"updatedWithDate":{
"updatedWithDate":{
"message":"Đã cập nhật vào $1"
"message":"Đã cập nhật $1"
},
},
"urlErrorMsg":{
"urlErrorMsg":{
"message":"URL phải có tiền tố HTTP/HTTPS phù hợp."
"message":"URL phải có tiền tố HTTP/HTTPS phù hợp."
@ -3284,7 +3234,7 @@
"message":"Sử dụng tính năng Phát hiện lừa đảo"
"message":"Sử dụng tính năng Phát hiện lừa đảo"
},
},
"usePhishingDetectionDescription":{
"usePhishingDetectionDescription":{
"message":"Hiển thị cảnh báo đối với các miền lừa đảo nhắm đến người dùng Ethereum"
"message":"Hiển thị cảnh báo đối với các tên miền lừa đảo nhắm đến người dùng Ethereum"
},
},
"useTokenDetection":{
"useTokenDetection":{
"message":"Sử Dụng Phát Hiện Token"
"message":"Sử Dụng Phát Hiện Token"
@ -3299,7 +3249,7 @@
"message":"Tên người dùng"
"message":"Tên người dùng"
},
},
"verifyThisTokenDecimalOn":{
"verifyThisTokenDecimalOn":{
"message":"Không tìm thấy vị trí thập phân của token trên $1",
"message":"Không tìm thấy số thập phân của token trên $1",
"description":"Points the user to etherscan as a place they can verify information about a token. $1 is replaced with the translation for \"etherscan\""
"description":"Points the user to etherscan as a place they can verify information about a token. $1 is replaced with the translation for \"etherscan\""
},
},
"verifyThisTokenOn":{
"verifyThisTokenOn":{
@ -3317,7 +3267,7 @@
"message":"Xem toàn bộ chi tiết"
"message":"Xem toàn bộ chi tiết"
},
},
"viewContact":{
"viewContact":{
"message":"Xem người liên hệ"
"message":"Xem địa chỉ liên hệ"
},
},
"viewFullTransactionDetails":{
"viewFullTransactionDetails":{
"message":"Xem chi tiết giao dịch đầy đủ"
"message":"Xem chi tiết giao dịch đầy đủ"
@ -3369,9 +3319,6 @@
"walletCreationSuccessTitle":{
"walletCreationSuccessTitle":{
"message":"Tạo ví thành công"
"message":"Tạo ví thành công"
},
},
"walletSeedRestore":{
"message":"Cụm mật khẩu khôi phục bí mật của ví"
},
"web3ShimUsageNotification":{
"web3ShimUsageNotification":{
"message":"Chúng tôi nhận thấy rằng trang web hiện tại đã cố dùng API window.web3 đã bị xóa. Nếu trang web có vẻ như đã bị lỗi, vui lòng nhấp vào $1 để biết thêm thông tin.",
"message":"Chúng tôi nhận thấy rằng trang web hiện tại đã cố dùng API window.web3 đã bị xóa. Nếu trang web có vẻ như đã bị lỗi, vui lòng nhấp vào $1 để biết thêm thông tin.",
"description":"$1 is a clickable link."
"description":"$1 is a clickable link."
@ -3426,13 +3373,13 @@
"message":"Có, hãy thử"
"message":"Có, hãy thử"
},
},
"youNeedToAllowCameraAccess":{
"youNeedToAllowCameraAccess":{
"message":"Bạn cần cho phép truy cập vào camera để sử dụng tính năng này."
"message":"Bạn cần cho phép truy cập vào máy ảnh để sử dụng tính năng này."
},
},
"youSign":{
"youSign":{
"message":"Bạn đang ký"
"message":"Bạn đang ký"
},
},
"yourPrivateSeedPhrase":{
"yourPrivateSeedPhrase":{
"message":"Cụm mật khẩu bí mật, riêng tư của bạn"
"message":"Cụm mật khẩu khôi phục bí mật riêng tư của bạn"
"description":"A count of loaded quotes shown to the user while they are waiting for quotes to be fetched. $1 is the number of quotes already loaded, and $2 is the total number of quotes to load."