From acd5df7aeb4837d6e88588e63d1601883dd0b9a4 Mon Sep 17 00:00:00 2001 From: Luka Kropec Date: Fri, 13 Dec 2024 14:26:38 +0100 Subject: [PATCH] Translation fixes from Crowdin --- .../style-guide/content-standardization/index.md | 2 +- public/content/defi/index.md | 2 +- public/content/developers/docs/apis/json-rpc/index.md | 2 +- public/content/developers/docs/evm/index.md | 2 +- public/content/developers/docs/intro-to-ether/index.md | 2 +- public/content/developers/docs/scaling/plasma/index.md | 2 +- .../developers/docs/smart-contracts/security/index.md | 4 ++-- .../developers/docs/smart-contracts/testing/index.md | 2 +- .../developers/docs/standards/tokens/erc-223/index.md | 4 ++-- public/content/translations/fr/web3/index.md | 2 +- .../content/translations/it/developers/docs/mev/index.md | 2 +- public/content/translations/pcm/nft/index.md | 2 +- .../tutorials/erc-721-vyper-annotated-code/index.md | 2 +- public/content/translations/ro/glossary/index.md | 2 +- public/content/translations/ro/nft/index.md | 8 ++++---- public/content/translations/sw/nft/index.md | 2 +- public/content/translations/uk/nft/index.md | 2 +- public/content/translations/vi/nft/index.md | 2 +- src/intl/en/glossary.json | 2 +- src/intl/es/common.json | 2 +- src/intl/es/glossary.json | 2 +- src/intl/es/learn-quizzes.json | 2 +- src/intl/es/page-dapps.json | 2 +- src/intl/es/page-wallets-find-wallet.json | 2 +- src/intl/fa/glossary.json | 2 +- src/intl/fr/page-index.json | 2 +- src/intl/tr/glossary.json | 2 +- 27 files changed, 32 insertions(+), 32 deletions(-) diff --git a/public/content/contributing/style-guide/content-standardization/index.md b/public/content/contributing/style-guide/content-standardization/index.md index 1d52685f12a..8fbf287c31a 100644 --- a/public/content/contributing/style-guide/content-standardization/index.md +++ b/public/content/contributing/style-guide/content-standardization/index.md @@ -252,7 +252,7 @@ This site uses **sentence casing** for header names as a convention. Only the fi ### Setting Up Your Wallet -### Getting Enough Ether +### Getting Enough ether ``` ### Article authors {#authors} diff --git a/public/content/defi/index.md b/public/content/defi/index.md index 19d41c91073..fd4b4d108a8 100644 --- a/public/content/defi/index.md +++ b/public/content/defi/index.md @@ -324,7 +324,7 @@ You can think of DeFi in layers: 3. The protocols – [smart contracts](/glossary/#smart-contract) that provide the functionality, for example, a service that allows for decentralized lending of assets. 4. [The applications](/dapps/) – the products we use to manage and access the protocols. -Note: much of DeFi uses the [ERC-20 standard](/glossary/#erc-20). Applications in DeFi use a wrapper for ETH called Wrapped Ether (WETH). [Learn more about wrapped ether](/wrapped-eth). +Note: much of DeFi uses the [ERC-20 standard](/glossary/#erc-20). Applications in DeFi use a wrapper for ETH called Wrapped ether (WETH). [Learn more about wrapped ether](/wrapped-eth). ## Build DeFi {#build-defi} diff --git a/public/content/developers/docs/apis/json-rpc/index.md b/public/content/developers/docs/apis/json-rpc/index.md index 129f8acc633..c9842341a8c 100755 --- a/public/content/developers/docs/apis/json-rpc/index.md +++ b/public/content/developers/docs/apis/json-rpc/index.md @@ -992,7 +992,7 @@ curl -X POST --data '{"jsonrpc":"2.0","method":"eth_sendRawTransaction","params" ### eth_call {#eth_call} -Executes a new message call immediately without creating a transaction on the block chain. Often used for executing read-only smart contract functions, for example the `balanceOf` for an ERC-20 contract. +Executes a new message call immediately without creating a transaction on the blockchain. Often used for executing read-only smart contract functions, for example the `balanceOf` for an ERC-20 contract. **Parameters** diff --git a/public/content/developers/docs/evm/index.md b/public/content/developers/docs/evm/index.md index 92132062bc5..7f0010fbdb4 100644 --- a/public/content/developers/docs/evm/index.md +++ b/public/content/developers/docs/evm/index.md @@ -14,7 +14,7 @@ Some basic familiarity with common terminology in computer science such as [byte The analogy of a 'distributed ledger' is often used to describe blockchains like Bitcoin, which enable a decentralized currency using fundamental tools of cryptography. The ledger maintains a record of activity which must adhere to a set of rules that govern what someone can and cannot do to modify the ledger. For example, a Bitcoin address cannot spend more Bitcoin than it has previously received. These rules underpin all transactions on Bitcoin and many other blockchains. -While Ethereum has its own native cryptocurrency (Ether) that follows almost exactly the same intuitive rules, it also enables a much more powerful function: [smart contracts](/developers/docs/smart-contracts/). For this more complex feature, a more sophisticated analogy is required. Instead of a distributed ledger, Ethereum is a distributed [state machine](https://wikipedia.org/wiki/Finite-state_machine). Ethereum's state is a large data structure which holds not only all accounts and balances, but a _machine state_, which can change from block to block according to a pre-defined set of rules, and which can execute arbitrary machine code. The specific rules of changing state from block to block are defined by the EVM. +While Ethereum has its own native cryptocurrency (ether) that follows almost exactly the same intuitive rules, it also enables a much more powerful function: [smart contracts](/developers/docs/smart-contracts/). For this more complex feature, a more sophisticated analogy is required. Instead of a distributed ledger, Ethereum is a distributed [state machine](https://wikipedia.org/wiki/Finite-state_machine). Ethereum's state is a large data structure which holds not only all accounts and balances, but a _machine state_, which can change from block to block according to a pre-defined set of rules, and which can execute arbitrary machine code. The specific rules of changing state from block to block are defined by the EVM. ![A diagram showing the make up of the EVM](./evm.png) _Diagram adapted from [Ethereum EVM illustrated](https://takenobu-hs.github.io/downloads/ethereum_evm_illustrated.pdf)_ diff --git a/public/content/developers/docs/intro-to-ether/index.md b/public/content/developers/docs/intro-to-ether/index.md index 6ecff1f4d17..b794ee17afe 100644 --- a/public/content/developers/docs/intro-to-ether/index.md +++ b/public/content/developers/docs/intro-to-ether/index.md @@ -71,7 +71,7 @@ Users can query the ether balance of any [account](/developers/docs/accounts/) b ## Further reading {#further-reading} -- [Defining Ether and Ethereum](https://www.cmegroup.com/education/courses/introduction-to-ether/defining-ether-and-ethereum.html) – _CME Group_ +- [Defining ether and Ethereum](https://www.cmegroup.com/education/courses/introduction-to-ether/defining-ether-and-ethereum.html) – _CME Group_ - [Ethereum Whitepaper](/whitepaper/): The original proposal for Ethereum. This document includes a description of ether and the motivations behind its creation. - [Gwei Calculator](https://www.alchemy.com/gwei-calculator): Use this gwei calculator to easily convert wei, gwei, and ether. Simply plug in any amount of wei, gwei, or ETH and automatically calculate the conversion. diff --git a/public/content/developers/docs/scaling/plasma/index.md b/public/content/developers/docs/scaling/plasma/index.md index cd9f52e6a6a..efac61b8b9e 100644 --- a/public/content/developers/docs/scaling/plasma/index.md +++ b/public/content/developers/docs/scaling/plasma/index.md @@ -108,7 +108,7 @@ Although exit games sound nice in theory, real-life mass exits will likely trigg | Pros | Cons | | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| Offers high throughput and low cost per transaction. | Does not support general computation (cannot run smart contracts. Only basic token transfers, swaps, and a few other transaction types are supported via predicate logic. | +| Offers high throughput and low cost per transaction. | Does not support general computation (cannot run smart contracts). Only basic token transfers, swaps, and a few other transaction types are supported via predicate logic. | | Good for transactions between arbitrary users (no overhead per user pair if both are established on the plasma chain) | Need to periodically watch the network (liveness requirement) or delegate this responsibility to someone else to ensure the security of your funds. | | Plasma chains can be adapted to specific use-cases that are unrelated to the main chain. Anyone, including businesses, can customize Plasma smart contracts to provide scalable infrastructure that works in different contexts. | Relies on one or more operators to store data and serve it upon request. | | Reduces load on Ethereum Mainnet by moving computation and storage off-chain. | Withdrawals are delayed by several days to allow for challenges. For fungible assets, this can be mitigated by liquidity providers, but there is an associated capital cost. | diff --git a/public/content/developers/docs/smart-contracts/security/index.md b/public/content/developers/docs/smart-contracts/security/index.md index e6451925967..fbba029f9d0 100644 --- a/public/content/developers/docs/smart-contracts/security/index.md +++ b/public/content/developers/docs/smart-contracts/security/index.md @@ -99,7 +99,7 @@ That said, you should avoid treating audits as a silver bullet. Smart contract a Setting up a bug bounty program is another approach for implementing external code reviews. A bug bounty is a financial reward given to individuals (usually whitehat hackers) that discover vulnerabilities in an application. -When used properly, bug bounties give members of the hacker community incentive to inspect your code for critical flaws. A real-life example is the “infinite money bug” that would have let an attacker create an unlimited amount of Ether on [Optimism](https://www.optimism.io/), a [Layer 2](/layer-2/) protocol running on Ethereum. Fortunately, a whitehat hacker [discovered the flaw](https://www.saurik.com/optimism.html) and notified the team, [earning a large payout in the process](https://cryptoslate.com/critical-bug-in-ethereum-l2-optimism-2m-bounty-paid/). +When used properly, bug bounties give members of the hacker community incentive to inspect your code for critical flaws. A real-life example is the “infinite money bug” that would have let an attacker create an unlimited amount of ether on [Optimism](https://www.optimism.io/), a [Layer 2](/layer-2/) protocol running on Ethereum. Fortunately, a whitehat hacker [discovered the flaw](https://www.saurik.com/optimism.html) and notified the team, [earning a large payout in the process](https://cryptoslate.com/critical-bug-in-ethereum-l2-optimism-2m-bounty-paid/). A useful strategy is to set the payout of a bug bounty program in proportion to the amount of funds at stake. Described as the “[scaling bug bounty](https://medium.com/immunefi/a-defi-security-standard-the-scaling-bug-bounty-9b83dfdc1ba7)”, this approach provides financial incentives for individuals to responsibly disclose vulnerabilities instead of exploiting them. @@ -235,7 +235,7 @@ The EVM doesn’t permit concurrency, meaning two contracts involved in a messag Although mostly harmless, transferring control flow to untrusted contracts can cause problems, such as reentrancy. A reentrancy attack occurs when a malicious contract calls back into a vulnerable contract before the original function invocation is complete. This type of attack is best explained with an example. -Consider a simple smart contract (‘Victim’) that allows anyone to deposit and withdraw Ether: +Consider a simple smart contract (‘Victim’) that allows anyone to deposit and withdraw ether: ```solidity // This contract is vulnerable. Do not use in production diff --git a/public/content/developers/docs/smart-contracts/testing/index.md b/public/content/developers/docs/smart-contracts/testing/index.md index 30f27ac1a9e..0bc1048a41e 100644 --- a/public/content/developers/docs/smart-contracts/testing/index.md +++ b/public/content/developers/docs/smart-contracts/testing/index.md @@ -213,7 +213,7 @@ Running contracts on a local blockchain could be useful as a form of manual inte ### Testing contracts on testnets {#testing-contracts-on-testnets} -A test network or testnet works exactly like Ethereum Mainnet, except that it uses Ether (ETH) with no real-world value. Deploying your contract on a [testnet](/developers/docs/networks/#ethereum-testnets) means anyone can interact with it (e.g., via the dapp's frontend) without putting funds at risk. +A test network or testnet works exactly like Ethereum Mainnet, except that it uses ether (ETH) with no real-world value. Deploying your contract on a [testnet](/developers/docs/networks/#ethereum-testnets) means anyone can interact with it (e.g., via the dapp's frontend) without putting funds at risk. This form of manual testing is useful for evaluating the end-to-end flow of your application from a user’s point of view. Here, beta testers can also perform trial runs and report any issues with the contract’s business logic and overall functionality. diff --git a/public/content/developers/docs/standards/tokens/erc-223/index.md b/public/content/developers/docs/standards/tokens/erc-223/index.md index 76f3f5559c3..95a15ced27c 100644 --- a/public/content/developers/docs/standards/tokens/erc-223/index.md +++ b/public/content/developers/docs/standards/tokens/erc-223/index.md @@ -155,7 +155,7 @@ If an ERC-20 token is sent to the `RecipientContract`, the tokens will be transf ### What if we want to execute some function after the token deposit is completed? {#function-execution} -There are multiple ways of doing so. In this example we will follow the method which makes ERC-223 transfers identical to Ether transfers: +There are multiple ways of doing so. In this example we will follow the method which makes ERC-223 transfers identical to ether transfers: ```solidity contract RecipientContract is IERC223Recipient { @@ -178,7 +178,7 @@ contract RecipientContract is IERC223Recipient { } ``` -When the `RecipientContract` will receive a ERC-223 token the contract will execute a function encoded as `_data` parameter of the token transaction, identical to how Ether transactions encode function calls as transaction `data`. Read [the data field](https://ethereum.org/en/developers/docs/transactions/#the-data-field) for more information. +When the `RecipientContract` will receive a ERC-223 token the contract will execute a function encoded as `_data` parameter of the token transaction, identical to how ether transactions encode function calls as transaction `data`. Read [the data field](https://ethereum.org/en/developers/docs/transactions/#the-data-field) for more information. In the above example an ERC-223 token must be transferred to the address of the `RecipientContract` with the `transfer(address,uin256,bytes calldata _data)` function. If the data parameter will be `0xc2985578` (the signature of a `foo()` function) then the function foo() will be invoked after the token deposit is received and the event Foo() will be fired. diff --git a/public/content/translations/fr/web3/index.md b/public/content/translations/fr/web3/index.md index 261dc4abd6f..9fba54ea1ae 100644 --- a/public/content/translations/fr/web3/index.md +++ b/public/content/translations/fr/web3/index.md @@ -64,7 +64,7 @@ Le Web3 permet la propriété directe via les [jetons non-fongibles (NFT)](/glos
En savoir plus sur les NFT
- Plus d'infos sur les NTF + Plus d'infos sur les NFT
diff --git a/public/content/translations/it/developers/docs/mev/index.md b/public/content/translations/it/developers/docs/mev/index.md index 3102f838f6f..ea44884b3b8 100644 --- a/public/content/translations/it/developers/docs/mev/index.md +++ b/public/content/translations/it/developers/docs/mev/index.md @@ -76,7 +76,7 @@ Nel mondo dei NFT, il MEV è un fenomeno emergente e non necessariamente redditi Tuttavia, poiché le transazioni di NFT hanno luogo sulla stessa blockchain condivisa da tutte le transazioni di Ethereum, i ricercatori possono usare tecniche simili a quelle usate per le opportunità di MEV tradizionali anche nel mercato dei NFT. -Per esempio, se si verifica un calo a livello di un NFT popolare e un ricercatore vuole un certo NFT o una serie di NFT, può programmare una transazione in modo tale da essere il primo ad acquistare il NTF o l'intera serie di NTF in una sola transazione. Oppure, se un NFT viene [erroneamente elencato a un prezzo basso](https://www.theblockcrypto.com/post/113546/mistake-sees-69000-cryptopunk-sold-for-less-than-a-cent), un ricercatore può scavalcare gli altri acquirenti e ottenerlo a buon mercato. +Per esempio, se si verifica un calo a livello di un NFT popolare e un ricercatore vuole un certo NFT o una serie di NFT, può programmare una transazione in modo tale da essere il primo ad acquistare il NFT o l'intera serie di NFT in una sola transazione. Oppure, se un NFT viene [erroneamente elencato a un prezzo basso](https://www.theblockcrypto.com/post/113546/mistake-sees-69000-cryptopunk-sold-for-less-than-a-cent), un ricercatore può scavalcare gli altri acquirenti e ottenerlo a buon mercato. Un esempio eloquente di MEV nel mondo dei NFT si è verificato quando un ricercatore ha speso $7 milioni per [comprare](https://etherscan.io/address/0x650dCdEB6ecF05aE3CAF30A70966E2F395d5E9E5) ogni singolo Cryptopunk al prezzo di base. Un ricercatore della blockchain [ha spiegato su Twitter](https://twitter.com/IvanBogatyy/status/1422232184493121538) come l'acquirente avesse lavorato con un fornitore di MEV per mantenere segreto l'acquisto. diff --git a/public/content/translations/pcm/nft/index.md b/public/content/translations/pcm/nft/index.md index 1a3211efde8..250845ad354 100644 --- a/public/content/translations/pcm/nft/index.md +++ b/public/content/translations/pcm/nft/index.md @@ -35,7 +35,7 @@ Si as intanet of NFTs dey compia to di intanet wey plenti of us dey yus today... | Dem store ownaship of NFT on di blockchain for anyone to **verify am for publik**. | Na institushons dey kontrol ** di access to ownaship rekod of digital items** - and yu go biliv wetin dem tok. | | NFTs na [ smart kontracts](/glossary/#smart-contract) wey dey on top Ethereum. Dis mean sey dem ** fit yus dem for oda smart contracts** and aplikashon wey dey ontop Ethereum! | Kompanis wey get digital items dey always ** nid dem own "walled garden" infrastrukshure**. | | Pipol wey dey kreate **kontent fit sell dem work anywia** and fit enta one global market.get access to di global market. | Kreators dey dipend on di infrastructure and distribushon wey di platfoms wey dem yus provide for dem. Dis dey onda tams of yus and **geografika restrikshons**. | -| Pipol wey dey kreate NFT** fit retain ownaship rites** ova them own work and program royaltis direct into di NTF kontract. | Platfoms, laik savis ** wey dey stream musik, dey retain di plenti profits from sales**. | +| Pipol wey dey kreate NFT** fit retain ownaship rites** ova them own work and program royaltis direct into di NFT kontract. | Platfoms, laik savis ** wey dey stream musik, dey retain di plenti profits from sales**. | ## Wetin dem dey yus NFT for? {#nft-use-cases} diff --git a/public/content/translations/ro/developers/tutorials/erc-721-vyper-annotated-code/index.md b/public/content/translations/ro/developers/tutorials/erc-721-vyper-annotated-code/index.md index 26fbec97a8a..ad0c545726b 100644 --- a/public/content/translations/ro/developers/tutorials/erc-721-vyper-annotated-code/index.md +++ b/public/content/translations/ro/developers/tutorials/erc-721-vyper-annotated-code/index.md @@ -152,7 +152,7 @@ Identitățile utilizatorului și ale contractului sunt reprezentate în Ethereu ownerToNFTokenCount: HashMap[address, uint256] ``` -Această variabilă conține numărul de jetoane pentru fiecare proprietar. Deoarece nu există nicio corespondență între proprietari și tokenuri, singura modalitate de a identifica tokenurile pe care le deține un anumit proprietar este să ne uităm în urmă în istoricul evenimentelor din blockchain ca să găsim evenimentele `Transfer` corespunzătoare. Această variabilă ne permite să știm când avem toate NTF-urile, fără să mai fie nevoie să ne mai întoarcem în timp pentru a căuta. +Această variabilă conține numărul de jetoane pentru fiecare proprietar. Deoarece nu există nicio corespondență între proprietari și tokenuri, singura modalitate de a identifica tokenurile pe care le deține un anumit proprietar este să ne uităm în urmă în istoricul evenimentelor din blockchain ca să găsim evenimentele `Transfer` corespunzătoare. Această variabilă ne permite să știm când avem toate NFT-urile, fără să mai fie nevoie să ne mai întoarcem în timp pentru a căuta. De reținut este că acest algoritm funcționează numai pentru interfețele cu utilizatorul și serverele externe. Codul care rulează pe blockchain-ul propriu-zis nu poate citi evenimentele din trecut. diff --git a/public/content/translations/ro/glossary/index.md b/public/content/translations/ro/glossary/index.md index 8c4ce7ad459..d42c16e278a 100644 --- a/public/content/translations/ro/glossary/index.md +++ b/public/content/translations/ro/glossary/index.md @@ -556,7 +556,7 @@ Se referă la rețeaua Ethereum, o rețea peer-to-peer care propagă tranzacții Rețelele -### token non-fungibil (NTF) {#nft} +### token non-fungibil (NFT) {#nft} De asemenea, cunoscut sub numele de „deed”, acesta este un token standard introdus de propunerea ERC-721. NFT-urile pot fi urmărite și tranzacționate, însă fiecare token este unic și distinct; acestea nu sunt interschimbabile precum ETH-ul și [tokenurile ERC-20](#token-standard). NFT-urile pot reprezenta proprietatea asupra activelor digitale sau fizice. diff --git a/public/content/translations/ro/nft/index.md b/public/content/translations/ro/nft/index.md index b0b0cf18104..cf2ad9c03bf 100644 --- a/public/content/translations/ro/nft/index.md +++ b/public/content/translations/ro/nft/index.md @@ -8,7 +8,7 @@ sidebarDepth: 2 image: /images/infrastructure_transparent.png alt: Sigla Eth-ului afișată printr-o hologramă. summaryPoint1: O manieră de reprezenta ceva unic ca un activ bazat pe Ethereum. -summaryPoint2: NTF-urile oferă putere mai multă creatorilor de conținut decât oricând. +summaryPoint2: NFT-urile oferă putere mai multă creatorilor de conținut decât oricând. summaryPoint3: Sunt acționate de contractele inteligente pe blockchain-ul Ethereum. --- @@ -136,11 +136,11 @@ Să luăm ca exemplu un bilet la un eveniment sportiv. Tot aşa cum organizatoru Unele NFT-uri vor plăti în mod automat redevențe creatorilor lor atunci când sunt vândute. Conceptul este încă în curs de dezvoltare, însă este unul dintre cele mai puternice. De exemplu, proprietarii originali ai [EulerBeats Originals](https://eulerbeats.com/) câștigă o redevență de 8% la fiecare vânzare a unui NFT. Iar o serie de platforme, cum ar fi [Foundation](https://foundation.app) și [Zora](https://zora.co/), oferă redevențe pentru artiștii lor. -Aceasta se petrece complet automat, deci creatorii nu au decât să stea liniștiți și să câştige redevențe în momentul în care opera lor este vândută de la o persoană la alta. În momentul de față, calculul redevențelor se face de manieră foarte manuală și nu are precizia necesară – mulți creatori nu sunt plătiți așa cum merită. Atunci când NTF-ul dvs. este programat pentru redevențe, nu veți pierde niciodată nimic. +Aceasta se petrece complet automat, deci creatorii nu au decât să stea liniștiți și să câştige redevențe în momentul în care opera lor este vândută de la o persoană la alta. În momentul de față, calculul redevențelor se face de manieră foarte manuală și nu are precizia necesară – mulți creatori nu sunt plătiți așa cum merită. Atunci când NFT-ul dvs. este programat pentru redevențe, nu veți pierde niciodată nimic. ## La ce se utilizează NFT-urile? {#nft-use-cases} -Uitaţi câteva informații suplimentare despre unele cazuri de utilizare și viziuni mai bine dezvoltate pentru utilizarea NTF-urilor pe Ethereum. +Uitaţi câteva informații suplimentare despre unele cazuri de utilizare și viziuni mai bine dezvoltate pentru utilizarea NFT-urilor pe Ethereum. - [Conținut digital](#nfts-for-creators) - [Articole de joc](#nft-gaming) @@ -158,7 +158,7 @@ Atunci când un artist publică o lucrare pe o rețea socială, aceasta câștig NFT-urile acționează o nouă economie, în care creatorii nu cedează proprietatea asupra conținutului lor platformelor care le publică acel conținut. Dreptul de proprietate este incorporat în conținutul însuși. -Odată ce conținutul este vândut, fondurile le revin în mod direct. Și chiar atunci când noul proprietar ar revinde NTF-urile, creatorul original poate primi în mod automat redevențe. Garanția acestui lucru este asigurată prin faptul că, la orice vânzare a sa, adresa creatorului este integrată în metadatele tokenului – iar metadatele nu pot fi modificate. +Odată ce conținutul este vândut, fondurile le revin în mod direct. Și chiar atunci când noul proprietar ar revinde NFT-urile, creatorul original poate primi în mod automat redevențe. Garanția acestui lucru este asigurată prin faptul că, la orice vânzare a sa, adresa creatorului este integrată în metadatele tokenului – iar metadatele nu pot fi modificate.
Explorați, cumpărați sau creați-vă propriile NFT-uri de artă/de colecție...
diff --git a/public/content/translations/sw/nft/index.md b/public/content/translations/sw/nft/index.md index d091a31c1e5..54a0514aa1e 100644 --- a/public/content/translations/sw/nft/index.md +++ b/public/content/translations/sw/nft/index.md @@ -14,7 +14,7 @@ summaryPoint3: Inaendeshwa na mikataba erevu kwenye mnyororo wa bloku wa Ethereu ## Nini ni NFTs? {#what-are-nfts} -Tokeni zisizoweza kubadilishwa(NFTs) ni tokeni ambazo **kila moja ni ya kipekee**. Kila NTF ina sifa tofauti (haziwezi kubadilishwa) na ni chache. Hii ni tofauti kutokana na tokeni kama [ETH](/glossary/#ether) au Ethereum nyinginezo ukizingatia tokeni kama USDC ambapo kila tokeni ni sawa na ina vipengele sawa('ya kujirudia'). Hutojali ni noti gani ya dola (au ETH) unayo kwenye pochi lako, kwa sababu zote zinafanana na zina thamani sawa. Hata hivyo, _unajali_ NFT unayomiliki, kwa sababu zote huwa na sifa zao za binafsi na unaweza kuzitofautisha kutoka kwa nyingine ('haziwezi kuigwa'). +Tokeni zisizoweza kubadilishwa(NFTs) ni tokeni ambazo **kila moja ni ya kipekee**. Kila NFT ina sifa tofauti (haziwezi kubadilishwa) na ni chache. Hii ni tofauti kutokana na tokeni kama [ETH](/glossary/#ether) au Ethereum nyinginezo ukizingatia tokeni kama USDC ambapo kila tokeni ni sawa na ina vipengele sawa('ya kujirudia'). Hutojali ni noti gani ya dola (au ETH) unayo kwenye pochi lako, kwa sababu zote zinafanana na zina thamani sawa. Hata hivyo, _unajali_ NFT unayomiliki, kwa sababu zote huwa na sifa zao za binafsi na unaweza kuzitofautisha kutoka kwa nyingine ('haziwezi kuigwa'). Upekee wa kila NFT ni kuwezesha ishara ya vitu kama sanaa, vitu vinavyokusanywa ama mali isiyohamishika, ambapo kila NFT huwakilisha ulimwengu halisi ama bidhaa ya kidijitali. Umiliki wa mali uko wazi kuhakikishwa na umma kwenye [kiambajengo](/glossary/#blockchain) cha Ethereum. diff --git a/public/content/translations/uk/nft/index.md b/public/content/translations/uk/nft/index.md index eec0dab7295..c47af570868 100644 --- a/public/content/translations/uk/nft/index.md +++ b/public/content/translations/uk/nft/index.md @@ -37,7 +37,7 @@ NFT – це **індивідуально унікальні** токени. К | Творці контенту **можуть продавати свої роботи будь-де** і мають доступ до глобального ринку. | Творці покладаються на інфраструктуру й аудиторію платформ, якими користуються. На них часто поширюються умови використання та **географічні обмеження**. | | Творці NFT **можуть зберігати права власності** на власну роботу та отримувати роялті безпосередньо в контракті NFT. | Платформи, як-от музичні **стрімінгові сервіси, зберігають більшу частину прибутку від продажів**. | -## Для чого використовується NTF? {#nft-use-cases} +## Для чого використовується NFT? {#nft-use-cases} NFT використовується для багатьох речей, зокрема: diff --git a/public/content/translations/vi/nft/index.md b/public/content/translations/vi/nft/index.md index 1d6f3c45a6b..c7f21e26ce4 100644 --- a/public/content/translations/vi/nft/index.md +++ b/public/content/translations/vi/nft/index.md @@ -75,7 +75,7 @@ Trang web này cũng có một tên miền thay thế được vận hành bởi ## NFT hoạt động như thế nào? {#how-nfts-work} -NTF, giống như mặt hàng kĩ thuật số trên chuỗi khối Ethereum, và được tạo ra thông qua một chương trình máy tính đặc biệt dựa trên Ethereum được gọi là "Hợp đồng thông minh" Những hợp đồng này tuân theo một quy tắc nhất định, như tiêu chuẩn [ERC-721](/glossary/#erc-721) hoặc [ERC-1155](/glossary/#erc-1155), những tiêu chuẩn này có thể xác định những gì hợp đồng có thể làm. +NFT, giống như mặt hàng kĩ thuật số trên chuỗi khối Ethereum, và được tạo ra thông qua một chương trình máy tính đặc biệt dựa trên Ethereum được gọi là "Hợp đồng thông minh" Những hợp đồng này tuân theo một quy tắc nhất định, như tiêu chuẩn [ERC-721](/glossary/#erc-721) hoặc [ERC-1155](/glossary/#erc-1155), những tiêu chuẩn này có thể xác định những gì hợp đồng có thể làm. Hợp đồng thông minh NFT có thể làm một số điều quan trọng: diff --git a/src/intl/en/glossary.json b/src/intl/en/glossary.json index 5d4bb919f43..ce1c4c9842e 100644 --- a/src/intl/en/glossary.json +++ b/src/intl/en/glossary.json @@ -136,7 +136,7 @@ "erc-20-term": "ERC-20", "erc-20-definition": "ERC-20 is the standard that most tokens on Ethereum network use for their creation.
Popular examples are stablecoins like DAI and USDC or exchange tokens like UNI from Uniswap. Akin to any form of alternative moneys that we have in traditional systems… ie. rewards points, credit systems, or even stocks, etc.", "erc-721-term": "ERC-721", - "erc-721-definition": "NFTs (non fungible tokens) are created using a standard set of rules referred to as ERC-721.
NFT tokens can represent ownership of anything unique, like digital art or collectibles, with each token having its own special characteristics and value. Each NFT is unique and easily distinguishable from any other NTF.", + "erc-721-definition": "NFTs (non fungible tokens) are created using a standard set of rules referred to as ERC-721.
NFT tokens can represent ownership of anything unique, like digital art or collectibles, with each token having its own special characteristics and value. Each NFT is unique and easily distinguishable from any other NFT.", "execution-client-term": "Execution client", "execution-client-definition": "Execution clients (formerly known as \"Eth1 clients\"), such as Besu, Erigon, Go-Ethereum (Geth), Nethermind, are tasked with processing and broadcasting transactions and managing Ethereum's state. They run the computations for each transaction using the Ethereum Virtual Machine to ensure that the rules of the protocol are followed.", "execution-layer-term": "Execution layer", diff --git a/src/intl/es/common.json b/src/intl/es/common.json index 6ff9886734f..1026ea736dc 100644 --- a/src/intl/es/common.json +++ b/src/intl/es/common.json @@ -336,7 +336,7 @@ "nav-whitepaper-description": "El informe técnico original de Ethereum escrito por Vitalik Buterin en 2014", "nav-zkp-description": "Una forma de demostrar la validez de una declaración sin tener que revelarla", "nft-page": "NFT: tókenes no fungibles", - "nfts": "NTF", + "nfts": "NFT", "no": "No", "on-this-page": "En esta página", "open": "Abierto", diff --git a/src/intl/es/glossary.json b/src/intl/es/glossary.json index a03c02672cd..0d47f90f9b6 100644 --- a/src/intl/es/glossary.json +++ b/src/intl/es/glossary.json @@ -136,7 +136,7 @@ "erc-20-term": "ERC-20", "erc-20-definition": "ERC-20 es el estándar que la mayoría de los tokens de la red Ethereum utilizan para su creación.
Ejemplos populares son las monedas estables como DAI y USDC o los tokens de intercambio como UNI de Uniswap. Similar a cualquier forma de dinero alternativo que tengamos en los sistemas tradicionales... es decir, puntos de recompensa, sistemas de crédito o incluso acciones, etc.", "erc-721-term": "ERC-721", - "erc-721-definition": "Los NFT (tokens no fungibles) se crean utilizando un conjunto estándar de reglas conocidas como ERC-721.
Los tokens NFT pueden representar la propiedad de cualquier cosa única, como el arte digital o los coleccionables, y cada token tiene sus propias características y valor especiales. Cada NFT es único y se distingue fácilmente de cualquier otro NTF.", + "erc-721-definition": "Los NFT (tokens no fungibles) se crean utilizando un conjunto estándar de reglas conocidas como ERC-721.
Los tokens NFT pueden representar la propiedad de cualquier cosa única, como el arte digital o los coleccionables, y cada token tiene sus propias características y valor especiales. Cada NFT es único y se distingue fácilmente de cualquier otro NFT.", "execution-client-term": "Cliente de ejecución", "execution-client-definition": "Los clientes de ejecución (anteriormente conocidos como \"clientes Eth1\"), como Besu, Erigon, Go-Ethereum (Geth), Nethermind, tienen la tarea de procesar y transmitir transacciones y administrar el estado de Ethereum. Realizan los cálculos de cada transacción utilizando la Máquina Virtual de Ethereum para garantizar que se sigan las reglas del protocolo.", "execution-layer-term": "Capa de ejecución", diff --git a/src/intl/es/learn-quizzes.json b/src/intl/es/learn-quizzes.json index 36f10a02cb4..40e77c5c89b 100644 --- a/src/intl/es/learn-quizzes.json +++ b/src/intl/es/learn-quizzes.json @@ -110,7 +110,7 @@ "web3-1-prompt": "Web3 permite a los usuarios poseer activos digitales a través de:", "web3-1-a-label": "Tokens", "web3-1-a-explanation": "Los tokens proporcionan una forma de representar unidades de valor que son intercambiables entre sí, propiedad de una cuenta de Ethereum. Si bien representan la propiedad, hay más formas de poseer activos digitales en Ethereum.", - "web3-1-b-label": "NTF", + "web3-1-b-label": "NFT", "web3-1-b-explanation": "Los NFT (tokens no fungibles) proporcionan una forma de representar cualquier cosa única como un activo basado en Ethereum. Si bien representan la propiedad, hay más formas de poseer activos digitales en Ethereum.", "web3-1-c-label": "ENS", "web3-1-c-explanation": "ENS (Ethereum Name Service) es un servicio de nomenclatura descentralizado para la cadena de bloques de Ethereum. Si bien representan la propiedad, hay más formas de poseer activos digitales en Ethereum.", diff --git a/src/intl/es/page-dapps.json b/src/intl/es/page-dapps.json index 82ee6f2a454..7cfcccda101 100644 --- a/src/intl/es/page-dapps.json +++ b/src/intl/es/page-dapps.json @@ -223,7 +223,7 @@ "page-dapps-meeds-logo-alt": "Logo de \"Meeds\"", "page-dapps-metaverse-benefits-title": "metaverso", "page-dapps-metaverse-benefits-description": "¿Qué hay en Ethereum que le permite prosperar al metaverso?", - "page-dapps-metaverse-benefits-1-title": "NTF", + "page-dapps-metaverse-benefits-1-title": "NFT", "page-dapps-metaverse-benefits-1-description": "Los objetos únicos dentro de los juegos son propios de los usuarios e interoperables a través de mundos virtuales y plataformas que admiten los mismos estándares.", "page-dapps-metaverse-benefits-2-title": "Comunidades propias del usuario", "page-dapps-metaverse-benefits-2-description": "Las identidades son propias de los usuarios con oportunidades sin límites para explorar y crear redes sociales a través de múltiples mundos virtuales.", diff --git a/src/intl/es/page-wallets-find-wallet.json b/src/intl/es/page-wallets-find-wallet.json index e8026563875..b0da25c4b17 100644 --- a/src/intl/es/page-wallets-find-wallet.json +++ b/src/intl/es/page-wallets-find-wallet.json @@ -64,7 +64,7 @@ "page-find-wallet-hardware": "Hardware", "page-find-wallet-new-to-crypto-title": "Nuevo en cripto", "page-find-wallet-new-to-crypto-desc": "Usuario principiante buscando una cartera para principiantes.", - "page-find-wallet-nfts-title": "NTF", + "page-find-wallet-nfts-title": "NFT", "page-find-wallet-nfts-desc": "Carteras con enfoque en soporte para NFT.", "page-find-wallet-hodler-title": "Largo plazo", "page-find-wallet-hodler-desc": "Mantener tókenes de forma pasiva con carteras de hardware.", diff --git a/src/intl/fa/glossary.json b/src/intl/fa/glossary.json index ab3ef28ca5b..9dc86ef8a85 100644 --- a/src/intl/fa/glossary.json +++ b/src/intl/fa/glossary.json @@ -136,7 +136,7 @@ "erc-20-term": "ERC-20", "erc-20-definition": "ERC-20 استانداردی می‌باشد که برای ایجاد بیشتر توکن‌های شبکه اتریوم از آن استفاده شده است.
نمونه‌ی معروف آن، استیبل کوین‌هایی مانند DAI و USDC یا توکن‌های مبادله‌ای مانند UNI برای صرافی یونی‌سواپ می‌باشد. این توکن‌ها مشابه دارایی و پولی است که در سیستم سنتی استفاده می‌شود، مانند امتیازات، سیستم‌های اعتباری، سهام و غیره.", "erc-721-term": "ERC-721", - "erc-721-definition": "NFTها (توکن‌های غیرمثلی) با استفاده از مجموعه‌ای استاندارد از قوانین به نام ERC-721 ایجاد می‌شوند.
توکن‌های NFT می‌توانند مالکیت هر چیزی منحصربه‌فرد مانند هنر دیجیتال یا کلکسیون‌ها را نشان دهند و هر توکن ویژگی‌ها و ارزش خاص خود را دارد. هر NFT منحصر به فرد است و به راحتی از هر NTF دیگری قابل تشخیص است.", + "erc-721-definition": "NFTها (توکن‌های غیرمثلی) با استفاده از مجموعه‌ای استاندارد از قوانین به نام ERC-721 ایجاد می‌شوند.
توکن‌های NFT می‌توانند مالکیت هر چیزی منحصربه‌فرد مانند هنر دیجیتال یا کلکسیون‌ها را نشان دهند و هر توکن ویژگی‌ها و ارزش خاص خود را دارد. هر NFT منحصر به فرد است و به راحتی از هر NFT دیگری قابل تشخیص است.", "execution-client-term": "کلاینت اجرا", "execution-client-definition": "کلاینت های اجرا (که قبلا به عنوان \"کلاینت های Eth1\" شناخته می شدند)، مانند Besu، Erigon، Go-Ethereum (Geth)، Nethermind، وظیفه پردازش و پخش تراکنش ها و مدیریت وضعیت اتریوم را بر عهده دارند. آنها محاسبات را برای هر تراکنش با استفاده از ماشین مجازی اتریوم اجرا می‌کنند تا از رعایت قوانین پروتکل اطمینان حاصل کنند.", "execution-layer-term": "لایه‌‌ی اجرا", diff --git a/src/intl/fr/page-index.json b/src/intl/fr/page-index.json index 9902948c346..4185467658d 100644 --- a/src/intl/fr/page-index.json +++ b/src/intl/fr/page-index.json @@ -3,7 +3,7 @@ "page-index-activity-tag": "Activité", "page-index-activity-header": "L’écosystème le plus solide", "page-index-bento-header": "Une nouvelle manière d’utiliser Internet", - "page-index-bento-assets-action": "Plus d'infos sur les NTF", + "page-index-bento-assets-action": "Plus d'infos sur les NFT", "page-index-bento-assets-content": "Les œuvres d'art, les certificats ou même les biens immobiliers peuvent être tokenisés. Tout peut constituer un jeton négociable. La propriété est publique et vérifiable.", "page-index-bento-assets-title": "L'internet des ressources", "page-index-bento-dapps-action": "Parcourir les applis", diff --git a/src/intl/tr/glossary.json b/src/intl/tr/glossary.json index e168189e4b7..ea6cccef22a 100644 --- a/src/intl/tr/glossary.json +++ b/src/intl/tr/glossary.json @@ -136,7 +136,7 @@ "erc-20-term": "ERC-20", "erc-20-definition": "ERC-20, Ethereum ağındaki çoğu jetonun üretilmesinde kullanılan standarttır.
Popüler örnekleri arasında DAI ve USDC gibi sabit paralar veya Uniswap'tan UNI gibi borsa jetonları yer alır. Geleneksel sistemlerde sahip olduğumuz her türlü alternatif paraya benzer... örn. ödül puanları, kredi sistemleri ve hatta hisse senetleri vb.", "erc-721-term": "ERC-721", - "erc-721-definition": "NFT'ler (eşsiz jetonlar), ERC-721 olarak adlandırılan standart bir kurallar dizisi kullanılarak oluşturulur.
NFT jetonları, dijital sanat veya koleksiyon gibi benzersiz herhangi bir şeyin mülkiyetini temsil edebilir ve her bir jetonun kendi özellikleri ve değeri vardır. Her bir NFT benzersizdir ve diğer NTF'lerden kolayca ayırt edilebilir.", + "erc-721-definition": "NFT'ler (eşsiz jetonlar), ERC-721 olarak adlandırılan standart bir kurallar dizisi kullanılarak oluşturulur.
NFT jetonları, dijital sanat veya koleksiyon gibi benzersiz herhangi bir şeyin mülkiyetini temsil edebilir ve her bir jetonun kendi özellikleri ve değeri vardır. Her bir NFT benzersizdir ve diğer NFT'lerden kolayca ayırt edilebilir.", "execution-client-term": "Yürütüm istemcisi", "execution-client-definition": "Besu, Erigon, Go-Ethereum (Geth), Nethermind gibi yürütüm istemcileri (önceden \"Eth1 istemcileri\" olarak bilinirdi), işlemleri işleyip yayınlama ve Ethereum'un durumunu yönetme görevini üstlenir. Protokolün kurallarına uyulmasını sağlamak için Ethereum Sanal Makinesi'ni kullanarak her işlem için hesaplamalar çalıştırırlar.", "execution-layer-term": "Yürütüm katmanı",