diff --git a/docs/deploy-process.md b/docs/deploy-process.md
index b470c12a867..bf11ef24675 100644
--- a/docs/deploy-process.md
+++ b/docs/deploy-process.md
@@ -94,3 +94,9 @@ staging O - - - - - - - O
dev O - - O - - - - O
```
+
+## More about the Release Candidate QA process
+
+The main idea behind the community QA process is to focus on the [current release changelog](https://github.com/ethereum/ethereum-org-website/releases) and check that new features or fixes applied are working as expected. During QA sessions, some notes could also be shared if we're looking for specific things to be tested.
+
+If you find any bug, please report it on the [#website-bugs](https://discord.com/channels/714888181740339261/727898649006309377) Discord channel.
diff --git a/docs/header-ids.md b/docs/header-ids.md
new file mode 100644
index 00000000000..78843772487
--- /dev/null
+++ b/docs/header-ids.md
@@ -0,0 +1,53 @@
+# Custom header IDs for markdown documents
+
+Html ID attributes are used to create links to specific sections of a document. In markdown, **custom header IDs** should be assigned to all header lines (lines that begin with one-or-more hash marks, `#`).
+
+## Markdown syntax
+
+A custom heading ID should follow these rules:
+
+- Placed at the end of a heading line, preceded by a space, followed by a line break
+- Wrapped in curly braces
+- Starts with a hash-mark
+- Uses kebab-case string
+- Unique for the current page
+
+For example:
+
+```markdown
+## My heading {#my-heading}
+
+### A subheading {#a-subheading}
+
+#### Or a longer title that can be shortened {#long-heading}
+```
+
+Note that for short headers, simply lowercasing and using hyphens instead of spaces is sufficient. For longer headers, a shortened concise version of the header is encouraged. Must not repeat the same ID on the same page.
+
+## How are these used?
+
+When these headers are rendered, they come with a link icon attached to it that can be used to quickly link to that section of the document.
+
+Extending the above example, if we wanted to link to the `A subheading` section of the above document (for example living at path `/docs`), you could use the link`/docs#a-subheading` to link directly to that section.
+
+See a live example on ethereum.org: [https://ethereum.org/en/developers/docs/blocks/#block-anatomy](https://ethereum.org/en/developers/docs/blocks/#block-anatomy)
+
+## When to use custom header IDs
+
+### English content
+
+These should be created for header on every new English markdown document.
+
+### Translated content
+
+English files are uploaded to Crowdin for translation. Header ID's should be _inherited_ from the English version, and remain unchanged during translation.
+
+This is to ensure that the translated content can be linked to from other documents and external links, without breaking the path. This is similar to why path and filenames are not translated, but remain in English to simplify linking and referencing.
+
+See a live example on ethereum.org: [https://ethereum.org/es/developers/docs/blocks/#block-anatomy](https://ethereum.org/en/developers/docs/blocks/#block-anatomy)
+
+Notice the header ID is still in English (`#block-anatomy`), but links to the Spanish (`/es/`) version of the site, at the correct section.
+
+## When are these not needed?
+
+Markdown files in the repo `/docs` (such as this one) do not require custom header IDs, as they are not yet displayed on the website, and do not have translated versions.
diff --git a/netlify.toml b/netlify.toml
index 3e26ef59558..22bd377bb8e 100644
--- a/netlify.toml
+++ b/netlify.toml
@@ -22,4 +22,5 @@
"./src/intl/**/*",
"!./public/**/*",
"!./node_modules/@swc/core-linux-x64-musl/**/*",
+ "!./node_modules/@swc/core-linux-x64-gnu/**/*",
]
\ No newline at end of file
diff --git a/package.json b/package.json
index 6561db6fbfb..e162c175408 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "ethereum-org-website",
- "version": "8.0.0",
+ "version": "8.1.1",
"private": true,
"scripts": {
"dev": "next dev",
@@ -17,6 +17,7 @@
"chromatic": "chromatic --project-token fee8e66c9916",
"crowdin-clean": "rm -rf .crowdin && mkdir .crowdin",
"crowdin-import": "ts-node src/scripts/crowdin-import.ts",
+ "events-import": "ts-node -O '{ \"module\": \"commonjs\" }' src/scripts/events-import.ts",
"markdown-checker": "ts-node -O '{ \"module\": \"commonjs\" }' src/scripts/markdownChecker.ts"
},
"dependencies": {
@@ -25,8 +26,8 @@
"@docsearch/react": "^3.5.2",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
+ "@radix-ui/react-navigation-menu": "^1.1.4",
"@socialgouv/matomo-next": "^1.8.0",
- "clipboard": "^2.0.11",
"embla-carousel-react": "^7.0.0",
"ethereum-blockies-base64": "^1.0.2",
"focus-trap-react": "^10.2.3",
@@ -36,7 +37,7 @@
"i18next": "^23.6.0",
"lodash.merge": "^4.6.2",
"lodash.shuffle": "^4.2.0",
- "luxon": "^3.4.3",
+ "lodash.union": "^4.6.0",
"next": "13.4.8",
"next-i18next": "^14.0.3",
"next-mdx-remote": "^3.0.8",
@@ -49,7 +50,7 @@
"react-i18next": "^13.3.1",
"react-icons": "^4.10.1",
"react-lite-youtube-embed": "^2.4.0",
- "react-select": "^4.3.0",
+ "react-select": "5.8.0",
"reading-time": "^1.5.0",
"recharts": "^2.7.3",
"remark-gfm": "^3.0.1",
@@ -66,7 +67,6 @@
"@storybook/testing-library": "0.2.2",
"@svgr/webpack": "^8.1.0",
"@types/hast": "^3.0.0",
- "@types/luxon": "^3.3.2",
"@types/node": "^20.4.2",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
@@ -85,7 +85,7 @@
"storybook": "7.6.6",
"storybook-react-i18next": "^2.0.9",
"ts-node": "^10.9.1",
- "typescript": "^5.1.6",
+ "typescript": "^5.4.2",
"unified": "^10.0.0",
"unist-util-visit": "^5.0.0"
},
diff --git a/public/.well-known/security.txt b/public/.well-known/security.txt
index 5be3832278f..f5633e95685 100644
--- a/public/.well-known/security.txt
+++ b/public/.well-known/security.txt
@@ -2,27 +2,26 @@
Hash: SHA256
Contact: mailto:security@ethereum.org
-Expires: 2023-12-31T23:59:00.000Z
+Expires: 2026-12-31T23:59:00.000Z
Encryption: https://ethereum.org/security_at_ethereum.org.asc
Acknowledgments: https://bounty.ethereum.org
Preferred-Languages: en
Canonical: https://ethereum.org/.well-known/security.txt
Policy: https://bounty.ethereum.org
Hiring: https://ethereum.org/en/community/get-involved/#ethereum-jobs
-
-----BEGIN PGP SIGNATURE-----
-iQIzBAEBCAAdFiEErpbtlp5HmwCE8+F/6I0zNPpfagoFAmMV3bMACgkQ6I0zNPpf
-agrOjhAAgMDS9RJUbJzcAybRfp/STq4Kf50TFd3iqx/t8ECw5UGazefieHesOhZ5
-9B9l6VAIHEGqbm+ukkhT+eBofhkAGEupiH/rUTy3hpFo1Ggp9QGi464Y8RyB0hID
-BwjAsAVEdHyh8T6YrqxKRGvgELuEMZfuPfVhdIGU8CfEQozzuA9q3mChckXdTlSt
-TvOKTMdnNPMlEhp4dT93iQaXDBAncE48TkUi/c8U4qolkskuDhZ4qJkc7xcv5Uk4
-TfF83Xs87AF9ZmABWawlCx7VHhp0HGljtGUpobf2DXV0TG77/dZzMQ4xdyqvDq+v
-tm3djp3UHZVhOkDxMKpBzLnCkCvyvh/tvN4j/trdHHzXx6gEEkuiR5wPPoomCosi
-95AGNFf0vpe2HucL/bOrBySxME+hifAnmkiaXltLbyUUTBQPfkHMHMoq1dmPokm2
-4RZaZ1A/K7rirZLC4w/RmxONVqvxT0baFTcZGyKzYm6gEZ9kCwWw1tyEl472yK0H
-UR2cAhlo+Wa61cOTtwHVw0FMVyG0xZkR04y8WM3T8lE6imGLSmCDgPMZm8XnKdkY
-SMGD3+TzLxe6mymmw+1dGXCPjjkImdrhBGxlwEU74vkFQKiWv/GftiDYYcilcQbS
-OD1N7PTmpef+JEYXOpwxxUTSXu0SfVTSkx0wnHkqbib7Wwv5IwY=
-=g+49
+iQIzBAEBCAAdFiEErpbtlp5HmwCE8+F/6I0zNPpfagoFAmXYslMACgkQ6I0zNPpf
+agrlTA//Q1P+fzNaYtUUm7pg7Jz4VaEACaQZ5qNNmKl9VZ6yCS45pmqpPAAyDM2p
+ZyFOUF3Q3UmHdwmVEGrHSREhoqx5I78KH4dmx4G38RG+4SMhSCZG0Ztf9Z3Dg0o2
+ZeO7vS7mp/STyxiG1Nnkg5Ivhuhq8sdQXF7hM+9JUVri7upEH0QtdAS/jZaoLCvx
+GsWe8XnBru8aH9O2kCO4iigCphOpzaSORJH7rcuo/mo6jGvJER4J0RkjK2KMX7W/
+TFQmpR+8Sxaw+einVEQBDppcbBhOO7yAHq3TQOa01pxIQJ2togJ0Sl3pUiYeqPgf
+aITyRfzhyh+zEb7V49QOIohvazZA7gnBmgUW8xF9cfTrChsxKV8TxovGc/cHroy9
+JI8XkJaZbX1GlbIUqTKgc/MF01gXXVTyjbnQ6HtCNG4BAq3hsWDnoziodGFojn/+
+PiY9cLok8Jxy6nzV0ANLunfbNF2usjPEDFxRviCSS3NoBXhq0+Ra/MXljKB46lb5
+qkfBdsAF9IJ8Bx7knrLbpVMe8tciXcXqorCfEBZONNk9RL5OkuDQgPQXi/2sRXXN
+xxIpxkDf63104NIypjEjp5c8WkD+VF84BhNuhYsp50T2hfgtL39vOGaQ2593Rss1
+j8MNLO2xlwoHiJoTe3CFw/Yl7MtjJSxiaQ0v42JRxyjclLDX1Rc=
+=CMMm
-----END PGP SIGNATURE-----
\ No newline at end of file
diff --git a/public/_redirects b/public/_redirects
index 14133acc971..192bb7626d4 100644
--- a/public/_redirects
+++ b/public/_redirects
@@ -148,8 +148,6 @@
/*/eth2 /:splat/upgrades/ 301!
-/*/developers/docs/layer-2-scaling /:splat/developers/docs/scaling 301!
-
/*/developers/docs/scaling/layer-2-rollups /:splat/developers/docs/scaling 301!
/*/about/web-developer /:splat/about/#open-jobs 301!
@@ -173,3 +171,5 @@
/*/staking/withdraws /:splat/staking/withdrawals/ 301!
/*/guides/how-to-register-an-ethereum-account /:splat/guides/how-to-create-an-ethereum-account/ 301!
+
+/*/deprecated-software /:splat/dapps/ 301!
diff --git a/public/content/bridges/index.md b/public/content/bridges/index.md
index 7dd48d74df5..9014083d7e9 100644
--- a/public/content/bridges/index.md
+++ b/public/content/bridges/index.md
@@ -6,32 +6,32 @@ lang: en
# Blockchain bridges {#prerequisites}
-_Web3 has evolved into an ecosystem of L1 blockchains and L2 scaling solutions, each designed with unique capabilities and trade-offs. As the number of blockchain protocols increases, so does [the demand to move assets across chains](). To fulfill this demand, we need bridges._
+_Web3 has evolved into an ecosystem of L1 blockchains and L2 scaling solutions, each designed with unique capabilities and trade-offs. As the number of blockchain protocols increases, so does the demand to move assets across chains. To fulfill this demand, we need bridges._
## What are bridges? {#what-are-bridges}
-Blockchain bridges work just like the bridges we know in the physical world. Just as a physical bridge connects two physical locations, a blockchain bridge connects two blockchain ecosystems. Bridges facilitate communication between blockchains through the transfer of information and assets.
+Blockchain bridges work just like the bridges we know in the physical world. Just as a physical bridge connects two physical locations, a blockchain bridge connects two blockchain ecosystems. **Bridges facilitate communication between blockchains through the transfer of information and assets**.
Let's consider an example:
You're from the USA and are planning a trip to Europe. You have USD, but you need EUR to spend. To exchange your USD for EUR you can use a currency exchange for a small fee.
-But, what do you do if you want to make a similar exchange to use a different blockchain? Let's say you want to exchange ETH on Ethereum Mainnet for ETH on [Arbitrum](https://arbitrum.io/). Like the currency exchange we made for EUR, we need a mechanism to move our ETH from Ethereum to Arbitrum. Bridges make such a transaction possible. In this case, [Arbitrum has a native bridge](https://bridge.arbitrum.io/) that can transfer ETH from Mainnet onto Arbitrum.
+But, what do you do if you want to make a similar exchange to use a different [blockchain](/glossary/#blockchain)? Let's say you want to exchange [ETH](/glossary/#ether) on Ethereum Mainnet for ETH on [Arbitrum](https://arbitrum.io/). Like the currency exchange we made for EUR, we need a mechanism to move our ETH from Ethereum to Arbitrum. Bridges make such a transaction possible. In this case, [Arbitrum has a native bridge](https://bridge.arbitrum.io/) that can transfer ETH from Mainnet onto Arbitrum.
## Why do we need bridges? {#why-do-we-need-bridges}
-All blockchains have their limitations. For Ethereum to scale and keep up with demand, it has required rollups. Alternatively, L1s like Solana and Avalanche are designed differently to enable higher throughput but at the cost of decentralization.
+All blockchains have their limitations. For Ethereum to scale and keep up with demand, it has required [rollups](/glossary/#rollups). Alternatively, L1s like Solana and Avalanche are designed differently to enable higher throughput but at the cost of decentralization.
-However, all blockchains develop in isolated environments and have different rules and consensus mechanisms. This means they cannot natively communicate, and tokens cannot move freely between blockchains.
+However, all blockchains develop in isolated environments and have different rules and [consensus](/glossary/#consensus) mechanisms. This means they cannot natively communicate, and tokens cannot move freely between blockchains.
Bridges exist to connect blockchains, allowing the transfer of information and tokens between them.
-Bridges enable:
+**Bridges enable**:
- the cross-chain transfer of assets and information.
-- dapps to access the strengths of various blockchains – thus enhancing their capabilities (as protocols now have more design space for innovation).
+- [dapps](/glossary/#dapp) to access the strengths of various blockchains – thus enhancing their capabilities (as protocols now have more design space for innovation).
- users to access new platforms and leverage the benefits of different chains.
- developers from different blockchain ecosystems to collaborate and build new platforms for the users.
@@ -57,7 +57,7 @@ If you have ETH on Ethereum Mainnet and you want to explore an alt L1 to try out
### Own native crypto assets {#own-native}
-Let’s say you want to own native Bitcoin (BTC), but you only have funds on Ethereum Mainnet. To gain exposure to BTC on Ethereum, you can buy Wrapped Bitcoin (WBTC). However, WBTC is an ERC-20 token native to the Ethereum network, which means it’s an Ethereum version of Bitcoin and not the original asset on the Bitcoin blockchain. To own native BTC, you would have to bridge your assets from Ethereum to Bitcoin using a bridge. This will bridge your WBTC and convert it into native BTC. Alternatively, you might own BTC and want to use it in Ethereum DeFi protocols. This would require bridging the other way, from BTC to WBTC which can then be used as an asset on Ethereum.
+Let’s say you want to own native Bitcoin (BTC), but you only have funds on Ethereum Mainnet. To gain exposure to BTC on Ethereum, you can buy Wrapped Bitcoin (WBTC). However, WBTC is an [ERC-20](/glossary/#erc-20) token native to the Ethereum network, which means it’s an Ethereum version of Bitcoin and not the original asset on the Bitcoin blockchain. To own native BTC, you would have to bridge your assets from Ethereum to Bitcoin using a bridge. This will bridge your WBTC and convert it into native BTC. Alternatively, you might own BTC and want to use it in Ethereum [DeFi](/glossary/#defi) protocols. This would require bridging the other way, from BTC to WBTC which can then be used as an asset on Ethereum.
You can also do all of the above using a centralized exchange. However, unless your funds are already on an exchange, it would involve multiple steps, and you’d likely be better off using a bridge.
@@ -73,7 +73,7 @@ Bridges have many types of designs and intricacies. Generally, bridges fall into
| ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ |
| Trusted bridges depend upon a central entity or system for their operations. | Trustless bridges operate using smart contracts and algorithms. |
| They have trust assumptions with respect to the custody of funds and the security of the bridge. Users mostly rely on the bridge operator's reputation. | They are trustless, i.e., the security of the bridge is the same as that of the underlying blockchain. |
-| Users need to give up control of their crypto assets. | Through smart contracts, trustless bridges enable users to remain in control of their funds. |
+| Users need to give up control of their crypto assets. | Through [smart contracts](/glossary/#smart-contract), trustless bridges enable users to remain in control of their funds. |
In a nutshell, we can say that trusted bridges have trust assumptions, whereas trustless bridges are trust-minimized and don’t make new trust assumptions beyond those of the underlying domains. Here’s how these terms can be described:
@@ -126,9 +126,3 @@ Bridges are crucial to onboarding users onto Ethereum L2s, and even for users wh
- [EIP-5164: Cross-Chain Execution](https://ethereum-magicians.org/t/eip-5164-cross-chain-execution/9658) _June 18, 2022 - Brendan Asselstine_
- [L2Bridge Risk Framework](https://gov.l2beat.com/t/l2bridge-risk-framework/31) _July 5, 2022 - Bartek Kiepuszewski_
- ["Why the future will be multi-chain, but it will not be cross-chain."](https://old.reddit.com/r/ethereum/comments/rwojtk/ama_we_are_the_efs_research_team_pt_7_07_january/hrngyk8/) _January 8, 2022 - Vitalik Buterin_
-- [What Are Blockchain Bridges And How Can We Classify Them?](https://blog.li.finance/what-are-blockchain-bridges-and-how-can-we-classify-them-560dc6ec05fa) _Feb 18, 2021 - Arjun Chand_
-- [What Are Cross-Chain Bridges?](https://www.alchemy.com/overviews/cross-chain-bridges) _May 10, 2022 - Alchemy_
-- [Blockchain Bridges: Building Networks of Cryptonetworks](https://medium.com/1kxnetwork/blockchain-bridges-5db6afac44f8) _Sep 8, 2021 - Dmitriy Berenzon_
-- [Bridges in Crypto-Space](https://medium.com/chainsafe-systems/bridges-in-crypto-space-12e158f5fd1e) _Aug 23, 2021 - Ben Adar Hyman_
-- [The Interoperability Trilemma](https://medium.com/connext/the-interoperability-trilemma-657c2cf69f17) _Oct 1, 2021 - Arjun Bhuptani_
-- [Secure The Bridge: Cross-Chain Communication Done Right](https://medium.com/dragonfly-research/secure-the-bridge-cross-chain-communication-done-right-part-i-993f76ffed5d) _Aug 23, 2021 - Celia Wan_
diff --git a/public/content/community/code-of-conduct/index.md b/public/content/community/code-of-conduct/index.md
index 8f14a5f8c52..0d57d4a237c 100644
--- a/public/content/community/code-of-conduct/index.md
+++ b/public/content/community/code-of-conduct/index.md
@@ -4,6 +4,8 @@ description: The basic standards that we strive for across ethereum.org spaces.
lang: en
---
+# Code of conduct {#code-of-conduct}
+
## Mission {#mission}
To develop and maintain the most comprehensive and accessible knowledge hub for Ethereum.
diff --git a/public/content/community/events/index.md b/public/content/community/events/index.md
index 6f898d0d1f9..c8c972086c9 100644
--- a/public/content/community/events/index.md
+++ b/public/content/community/events/index.md
@@ -5,13 +5,13 @@ lang: en
hideEditButton: true
---
-## Upcoming events {#events}
+# Upcoming events {#events}
**Every month, there are major Ethereum events around the world.** Consider attending one near you to meet more people in the community, learn about employment opportunities, and develop new skills.
-This is a non-exhaustive list maintained by our community. Know of an upcoming Ethereum event to add to this list? [Please add it](https://github.com/ethereum/ethereum-org-website/blob/dev/src/data/community-events.json)!
+This is a non-exhaustive list maintained by our community. Know of an upcoming Ethereum event to add to this list? [Please add it](https://github.com/ethereum/ethereum-org-website/blob/dev/src/data/community-events.ts)!
## Ethereum meetups {#meetups}
diff --git a/public/content/community/get-involved/index.md b/public/content/community/get-involved/index.md
index ec658bedfa4..28bd6fbd953 100644
--- a/public/content/community/get-involved/index.md
+++ b/public/content/community/get-involved/index.md
@@ -16,7 +16,7 @@ Start by reading about the ethereum.org mission and values in our [code of condu
- [Find a bounty on Gitcoin](https://gitcoin.co/), work on a small or large technical issue, earn crypto!
- Attend an [ETHGlobal](http://ethglobal.co/) hackathon near you!
- Check out [projects related to your area of expertise or programming language of choice](/developers/docs/programming-languages/)
-- Watch or participate in the [Core Dev calls](https://www.youtube.com/playlist?list=PLaM7G4Llrb7zfMXCZVEXEABT8OSnd4-7w)
+- Watch or participate in the [Core Dev calls](https://www.youtube.com/@EthereumProtocol)
- [Ecosystem Support Program's wishlist](https://esp.ethereum.foundation/wishlist/) - tooling, documentation, and infrastructure areas where the Ethereum Ecosystem Support Program is actively seeking grant applications
- [Web3Bridge](https://www.web3bridge.com/) - join the aspiring web3 community in their initiative to identify, train, and support hundreds of developers and community members throughout Africa
- Join the [Ethereum Cat Herders Discord](https://discord.com/invite/Nz6rtfJ8Cu)
diff --git a/public/content/community/grants/index.md b/public/content/community/grants/index.md
index 0b69aac8c3a..188499e92ef 100644
--- a/public/content/community/grants/index.md
+++ b/public/content/community/grants/index.md
@@ -18,7 +18,6 @@ These programs support the broad Ethereum ecosystem by offering grants to a wide
- [MetaCartel](https://www.metacartel.org/grants/) - _Dapp development, DAO creation_
- [Moloch DAO](https://www.molochdao.com/) - _Privacy, layer 2 scaling, client security, and more_
- [DAO Grants](https://docs.google.com/spreadsheets/d/1XHc-p_MHNRdjacc8uOEjtPoWL86olP4GyxAJOFO0zxY/edit#gid=0) - _Google spreadsheet of organizations offering grants_
-- [Crunchbase for Web3 Grants](https://www.cryptoneur.xyz/web3-grants) - _Filter and search for grants by category, use case, amount, and more. Contribute to help others find the right grant._
- [Academic Grants](https://esp.ethereum.foundation/academic-grants) - _Grants to support Ethereum-related academic work_
- [Blockworks Grantfarm](https://blockworks.co/grants/programs) - _Blockworks has compiled a comprehensive directory of all grants, RFPs, and bug bounties._
@@ -33,9 +32,9 @@ These projects have created their own grants for projects aimed at developing an
- [Lido Ecosystem Grants Organisation (LEGO)](https://lido.fi/lego) – _[Lido](https://lido.fi/) finance ecosystem_
- [MetaMask Program](https://metamaskgrants.org/) - _[MetaMask](https://metamask.io/) employee-led grants DAO_
- [SKALE Network Grants Program](https://skale.space/developers#grants) - _[SKALE Network](https://skale.space/) ecosystem_
+- [Swarm Foundation Grants Program](https://my.ethswarm.org/grants) - _[Swarm Foundation](https://www.ethswarm.org/) ecosystem_
- [The Graph](https://thegraph.com/ecosystem/grants/) – _[The Graph](https://thegraph.com/) ecosystem_
- [Uniswap Grants Program](https://www.uniswapfoundation.org/grants) – _[Uniswap](https://uniswap.org/) community_
-- [Web3 Grants](https://web3grants.net) - _An extensive list of web3/crypto related grant programs_
## Quadratic funding {#quadratic-funding}
diff --git a/public/content/community/research/index.md b/public/content/community/research/index.md
index 83da5297858..729935b7123 100644
--- a/public/content/community/research/index.md
+++ b/public/content/community/research/index.md
@@ -134,6 +134,10 @@ One particular area of layer 2 that requires more research and development is sa
Sharding Ethereum's blockchain has long been part of the development roadmap. However, new scaling solutions such as "Danksharding" are currently taking center stage.
+The precursor to full Danksharding known as Proto-Danksharding went live with the Cancun-Deneb ("Dencun") network upgrade.
+
+[More about the Dencun upgrade](/roadmap/dencun/)
+
#### Background reading {#background-reading-4}
- [Proto-Danksharding notes](https://notes.ethereum.org/@vbuterin/proto_danksharding_faq)
diff --git a/public/content/community/support/index.md b/public/content/community/support/index.md
index 75d5a04a9a7..46694b18669 100644
--- a/public/content/community/support/index.md
+++ b/public/content/community/support/index.md
@@ -22,17 +22,33 @@ Understanding the decentralized nature of Ethereum is vital because anyone claim
Despite the lack of official support, many groups, communities, and projects across the Ethereum ecosystem are happy to help, and you can find a lot of useful information and resources on this page. Still have questions? Join the [ethereum.org Discord](/discord/), and we'll try to help.
-## Wallet support {#wallet-support}
+## Frequently asked questions {#faq}
+
+### I've sent ETH to the wrong wallet {#wrong-wallet}
+
+A transaction sent on Ethereum is irreversible. Unfortunately, if you've sent ETH to the wrong wallet, there is no way to recover these funds. No one central organization, entity, or person owns Ethereum, which means no one can reverse transactions. Therefore, it is vital always to double-check your transactions before sending them.
+
+### How can I claim my Ethereum giveaway? {#giveaway-scam}
+
+Ethereum giveaways are scams designed to steal your ETH. Do not be tempted by offers that seem too good to be true — if you send ETH to a giveaway address, you will not receive a giveaway, and you will not be able to recover your funds.
+
+[More on scam prevention](/security/#common-scams)
+
+### My transaction is stuck {#stuck-transaction}
+
+Transactions on Ethereum can sometimes get stuck if you have submitted a lower transaction fee than is required due to network demand. Many wallets provide an option to resubmit the same transaction with a higher transaction fee to allow the transaction to be processed. Alternatively, you can cancel a pending transaction by sending a transaction to your own address and using the same nonce as the pending transaction.
+
+[How to speed up or cancel a pending transaction on MetaMask](https://metamask.zendesk.com/hc/en-us/articles/360015489251-How-to-speed-up-or-cancel-a-pending-transaction)
+
+[How to cancel pending Ethereum transactions](https://info.etherscan.com/how-to-cancel-ethereum-pending-transactions/)
-Having trouble with your wallet? Most wallets have dedicated support teams that can help:
+### How do I mine Ethereum? {#mining-ethereum}
-- [MetaMask](https://metamask.zendesk.com/hc/)
-- [Argent](https://support.argent.xyz/hc/)
-- [MyEtherWallet](https://help.myetherwallet.com/)
+Ethereum mining is no longer possible. Mining was switched off when Ethereum moved from [proof-of-work](/glossary/#pow) to [proof-of-stake](/glossary/#pos). Now, instead of miners, Ethereum has validators. Anyone may [stake](/glossary/#staking) ETH and receive staking rewards for running validator software to secure the network.
-_This is not an exhaustive list. Need help finding support for a specific wallet? Join the [ethereum.org discord](https://discord.gg/ethereum-org) and we'll try to help._
+### How do I become a staker / run a validator? {#how-to-stake}
-Looking for an Ethereum wallet? [Explore our full list of Ethereum wallets](/wallets/find-wallet/).
+To become a validator, you must stake 32 ETH in the Ethereum deposit contract and set up a validator node. More information is available on our [staking pages](/staking) and at [the staking launchpad](https://launchpad.ethereum.org/).
## Building dapps {#building-support}
@@ -86,31 +102,3 @@ Most of the teams building Ethereum clients also have dedicated, public-facing,
- [Lodestar](https://discord.gg/aMxzVcr)
You can also [learn how to run a node here](/developers/docs/nodes-and-clients/run-a-node/).
-
-## Frequently asked questions {#faq}
-
-### I've sent ETH to the wrong wallet {#wrong-wallet}
-
-A transaction sent on Ethereum is irreversible. Unfortunately, if you've sent ETH to the wrong wallet, there is no way to recover these funds. No one central organization, entity, or person owns Ethereum, which means no one can reverse transactions. Therefore, it is vital always to double-check your transactions before sending them.
-
-### How can I claim my Ethereum giveaway? {#giveaway-scam}
-
-Ethereum giveaways are scams designed to steal your ETH. Do not be tempted by offers that seem too good to be true — if you send ETH to a giveaway address, you will not receive a giveaway, and you will not be able to recover your funds.
-
-[More on scam prevention](/security/#common-scams)
-
-### My transaction is stuck {#stuck-transaction}
-
-Transactions on Ethereum can sometimes get stuck if you have submitted a lower transaction fee than is required due to network demand. Many wallets provide an option to resubmit the same transaction with a higher transaction fee to allow the transaction to be processed. Alternatively, you can cancel a pending transaction by sending a transaction to your own address and using the same nonce as the pending transaction.
-
-[How to speed up or cancel a pending transaction on MetaMask](https://metamask.zendesk.com/hc/en-us/articles/360015489251-How-to-speed-up-or-cancel-a-pending-transaction)
-
-[How to cancel pending Ethereum transactions](https://info.etherscan.com/how-to-cancel-ethereum-pending-transactions/)
-
-### How do I mine Ethereum? {#mining-ethereum}
-
-Ethereum mining is no longer possible. Mining was switched off when Ethereum moved from proof-of-work to proof-of-stake. Now, instead of miners, Ethereum has validators. Validators stake ETH and receive staking rewards for securing the network.
-
-### How do I become a staker/validator? {#become-validator}
-
-To become a validator, you must stake 32 ETH in the Ethereum deposit contract and set up a validator node. More information is available on our [staking pages](/staking) and at [the staking launchpad](https://launchpad.ethereum.org/).
diff --git a/public/content/contributing/design/adding-design-resources/index.md b/public/content/contributing/design/adding-design-resources/index.md
index 4666100ad8e..c04ff949870 100644
--- a/public/content/contributing/design/adding-design-resources/index.md
+++ b/public/content/contributing/design/adding-design-resources/index.md
@@ -4,6 +4,8 @@ description: Guidelines and requirements to ensure quality of design materials o
lang: en
---
+# Adding design resources {#adding-design-resources}
+
Anybody can suggest new design materials to the [Design and UX in web3 page](/developers/docs/design-and-ux/).
Be aware that the focus of this page is on providing user value to aspiring web3 designers. The design section is not there to advertise your services, products, or platforms.
diff --git a/public/content/contributing/style-guide/content-standardization/index.md b/public/content/contributing/style-guide/content-standardization/index.md
index fb92e55c25f..1d52685f12a 100644
--- a/public/content/contributing/style-guide/content-standardization/index.md
+++ b/public/content/contributing/style-guide/content-standardization/index.md
@@ -4,6 +4,8 @@ description: Guide to use consistent terminology in content writing
lang: en
---
+# Content standardization {#content-standardization}
+
This style guide aims to standardize certain aspects of writing content to make the contribution process smoother.
## Use American English {#american-english}
diff --git a/public/content/contributing/translation-program/content-buckets/index.md b/public/content/contributing/translation-program/content-buckets/index.md
index 5a750136799..0efb15d79f3 100644
--- a/public/content/contributing/translation-program/content-buckets/index.md
+++ b/public/content/contributing/translation-program/content-buckets/index.md
@@ -23,6 +23,7 @@ Below is a breakdown of the website pages each content bucket contains.
- [Get ETH](/get-eth/)
- [Wallets](/wallets/)
- [Find wallets](/wallets/find-wallet/)
+- [Network fees](/gas/)
## 3) Exploring {#exploring}
@@ -47,7 +48,8 @@ Below is a breakdown of the website pages each content bucket contains.
- [Introduction to smart contracts](/smart-contracts/)
- [Decentralized identity](/decentralized-identity/)
- [Decentralized social networks](/social-networks/)
-- [Decentralized science (DeSci))](/desci/)
+- [Decentralized science (DeSci)](/desci/)
+- [Regenerative finance (ReFi)](/refi/)
## 6) Staking pages {#staking-pages}
@@ -57,6 +59,7 @@ Below is a breakdown of the website pages each content bucket contains.
- [Staking as a service](/staking/saas/)
- [Staking deposit contract](/staking/deposit-contract/)
- [Staking withdrawals](/staking/withdrawals/)
+- [Distributed validator technology](/dvt/)
## 7) Learn pages {#learn-pages}
@@ -76,6 +79,7 @@ Below is a breakdown of the website pages each content bucket contains.
- [How to revoke smart contract access to your crypto funds](/guides/how-to-revoke-token-access/)
- [How to bridge tokens to layer 2](/guides/how-to-use-a-bridge/)
- [How to swap tokens](/guides/how-to-swap-tokens/)
+- [How to identify scam tokens](/guides/how-to-id-scam-tokens/)
- [Learning quizzes](/quizzes/)
## 9) Upgrades {#upgrades}
@@ -97,6 +101,7 @@ Below is a breakdown of the website pages each content bucket contains.
- [Account abstraction](/roadmap/account-abstraction/)
- [Verkle trees](/roadmap/verkle-trees/)
- [Statelessness, state expiry and history expiry](/roadmap/statelessness/)
+- [How The Merge impacted ETH supply](/roadmap/merge/issuance/)
## 10) Community pages {#community-pages}
@@ -107,6 +112,7 @@ Below is a breakdown of the website pages each content bucket contains.
- [Online communities](/community/online/)
- [Ethereum support](/community/support/)
- [Community hub](/community/)
+- [Code of conduct](/community/code-of-conduct/#code-of-conduct)
## 11) Foundational developer docs {#foundational-docs}
@@ -147,14 +153,15 @@ Below is a breakdown of the website pages each content bucket contains.
- [Proof-of-stake rewards and penalties](/developers/docs/consensus-mechanisms/pos/rewards-and-penalties/)
- [Gasper](/developers/docs/consensus-mechanisms/pos/gasper/)
- [Weak subjectivity](/developers/docs/consensus-mechanisms/pos/weak-subjectivity/)
+- [Proof-of-stake vs. proof-of-work](/developers/docs/consensus-mechanisms/pos/pos-vs-pow/)
## 14) Foundational docs - Proof-of-Work {#PoW}
- [Proof-of-work](/developers/docs/consensus-mechanisms/pow/)
- [Mining](/developers/docs/consensus-mechanisms/pow/mining/)
-- [Mining algorithms](/developers/docs/consensus-mechanisms/pow/mining-algorithms/)
-- [Dagger-Hashimoto](/developers/docs/consensus-mechanisms/pow/mining-algorithms/dagger-hashimoto/)
-- [Ethash](/developers/docs/consensus-mechanisms/pow/mining-algorithms/ethash/)
+- [Mining algorithms](/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/)
+- [Dagger-Hashimoto](/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/dagger-hashimoto/)
+- [Ethash](/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/ethash/)
## 15) Ethereum stack developer docs {#ethereum-stack-docs}
@@ -220,6 +227,7 @@ Below is a breakdown of the website pages each content bucket contains.
- [Oracles](/developers/docs/oracles/)
- [Bridges](/developers/docs/bridges/)
- [Data availability](/developers/docs/data-availability/)
+- [Design and UX in Web3](/developers/docs/design-and-ux/)
## 21) Advanced developer docs - Scaling {#scaling-docs}
@@ -239,12 +247,8 @@ Below is a breakdown of the website pages each content bucket contains.
- [Recursive-length prefix (RLP) serialization](/developers/docs/data-structures-and-encoding/rlp/)
- [Network addresses](/developers/docs/networking-layer/network-addresses/)
- [Simple serialize](/developers/docs/data-structures-and-encoding/ssz/)
-- [Mining algorithms](/developers/docs/consensus-mechanisms/pow/mining-algorithms/)
-- [Dagger-Hashimoto](/developers/docs/consensus-mechanisms/pow/mining-algorithms/dagger-hashimoto/)
-- [Ethash](/developers/docs/consensus-mechanisms/pow/mining-algorithms/ethash/)
-- [Gasper](/developers/docs/consensus-mechanisms/pos/gasper/)
-- [Weak subjectivity](/developers/docs/consensus-mechanisms/pos/weak-subjectivity/)
- [Web3 secret storage definition](/developers/docs/data-structures-and-encoding/web3-secret-storage/)
+- [The Portal network](/developers/docs/networking-layer/portal-network/)
## 23) Miscellaneous {#miscellaneous}
@@ -253,6 +257,7 @@ Below is a breakdown of the website pages each content bucket contains.
- [Private Ethereum](/enterprise/private-ethereum/)
- [Brand assets](/assets/)
- [About the Ethereum Foundation](/foundation/)
+- [Bug bounty program](/bug-bounty/)
## 24) Contributing {#contributing}
@@ -266,6 +271,9 @@ Below is a breakdown of the website pages each content bucket contains.
- [Adding content resources](/contributing/content-resources/)
- [Adding DeSci projects](/contributing/adding-desci-projects/)
- [Adding wallets](/contributing/adding-wallets/)
+- [Adding a quiz](/contributing/quizzes/)
+- [Adding design resources](/contributing/design/adding-design-resources/)
+- [Design contribution to ethereum.org](/contributing/design/)
- [Design principles](/contributing/design-principles/)
- [Translation Program](/contributing/translation-program/)
- [Translation guide](/contributing/translation-program/translation-guide/)
@@ -282,7 +290,6 @@ Below is a breakdown of the website pages each content bucket contains.
- [How to write & deploy an NFT (Part 1/3 of NFT tutorial series)](/developers/tutorials/how-to-write-and-deploy-an-nft/)
- [How to mint an NFT (Part 2/3 of NFT tutorial series)](/developers/tutorials/how-to-mint-an-nft/)
- [How to view your NFT in your wallet (Part 3/3 of NFT tutorial series)](/developers/tutorials/how-to-view-nft-in-metamask/)
-- [Transfers and approval of ERC-20 tokens from a solidity smart contract](/developers/tutorials/transfers-and-approval-of-erc-20-tokens-from-a-solidity-smart-contract/)
- [Understand the ERC-20 token smart contract](/developers/tutorials/understand-the-erc-20-token-smart-contract/)
- [Uniswap-v2 contract walkthrough](/developers/tutorials/uniswap-v2-annotated-code/)
- Submit a tutorial
@@ -299,11 +306,13 @@ Below is a breakdown of the website pages each content bucket contains.
- [Sending tokens using ethers.js](/developers/tutorials/send-token-ethersjs/)
- [The Graph: Fixing Web3 data querying](/developers/tutorials/the-graph-fixing-web3-data-querying/)
- [Transfers and approval of ERC-20 tokens from a Solidity smart contract](/developers/tutorials/transfers-and-approval-of-erc-20-tokens-from-a-solidity-smart-contract/)
+- [Understanding the Yellowpaper's EVM specifications](/developers/tutorials/yellow-paper-evm/)
## 27) Developer tutorials 3 {#tutorials-3}
- [A guide to smart contract security tools](/developers/tutorials/guide-to-smart-contract-security-tools/)
- [All you can cache](/developers/tutorials/all-you-can-cache/)
+- [EIP-1271: Signing and verifying smart contract signatures](/developers/tutorials/eip-1271-smart-contract-signatures/)
- [ERC-20 contract walkthrough](/developers/tutorials/erc20-annotated-code/)
- [ERC-20 with safety rails](/developers/tutorials/erc20-with-safety-rails/)
- [Getting Started with Ethereum Development](/developers/tutorials/getting-started-with-ethereum-development-using-alchemy/)
diff --git a/public/content/contributing/translation-program/translatathon/index.md b/public/content/contributing/translation-program/translatathon/index.md
index ea7a49adca1..94b42ca629f 100644
--- a/public/content/contributing/translation-program/translatathon/index.md
+++ b/public/content/contributing/translation-program/translatathon/index.md
@@ -4,6 +4,8 @@ description: Join the first ethereum.org Translatathon to contribute to ethereum
lang: en
---
+# Ethereum.org Translatathon {#introduction}
+
Welcome to the first ever ethereum.org Translatathon!
A translatathon is a collaborative and competitive hackathon-style event where individuals and teams compete for prizes by translating ethereum.org content into different languages.
diff --git a/public/content/dao/index.md b/public/content/dao/index.md
index cc06869f051..b2f2aa98e87 100644
--- a/public/content/dao/index.md
+++ b/public/content/dao/index.md
@@ -14,11 +14,11 @@ summaryPoint3: A safe place to commit funds to a specific cause.
## What are DAOs? {#what-are-daos}
-A DAO is a collectively-owned, blockchain-governed organization working towards a shared mission.
+A DAO is a collectively-owned organization working towards a shared mission.
DAOs allow us to work with like-minded folks around the globe without trusting a benevolent leader to manage the funds or operations. There is no CEO who can spend funds on a whim or CFO who can manipulate the books. Instead, blockchain-based rules baked into the code define how the organization works and how funds are spent.
-They have built-in treasuries that no one has the authority to access without the approval of the group. Decisions are governed by proposals and voting to ensure everyone in the organization has a voice, and everything happens transparently on-chain.
+They have built-in treasuries that no one has the authority to access without the approval of the group. Decisions are governed by proposals and voting to ensure everyone in the organization has a voice, and everything happens transparently [on-chain](/glossary/#on-chain).
## Why do we need DAOs? {#why-dao}
@@ -40,25 +40,23 @@ This opens up so many new opportunities for global collaboration and coordinatio
To help this make more sense, here's a few examples of how you could use a DAO:
-- A charity – you could accept donations from anyone in the world and vote on which causes to fund.
-- Collective ownership – you could purchase physical or digital assets and members can vote on how to use them.
-- Ventures and grants – you could create a venture fund that pools investment capital and votes on ventures to back. Repaid money could later be redistributed amongst DAO-members.
+- **A charity** – you could accept donations from anyone in the world and vote on which causes to fund.
+- **Collective ownership** – you could purchase physical or digital assets and members can vote on how to use them.
+- **Ventures and grants** – you could create a venture fund that pools investment capital and votes on ventures to back. Repaid money could later be redistributed amongst DAO-members.
+
+
## How do DAOs work? {#how-daos-work}
-The backbone of a DAO is its smart contract, which defines the rules of the organization and holds the group's treasury. Once the contract is live on Ethereum, no one can change the rules except by a vote. If anyone tries to do something that's not covered by the rules and logic in the code, it will fail. And because the treasury is defined by the smart contract too that means no one can spend the money without the group's approval either. This means that DAOs don't need a central authority. Instead, the group makes decisions collectively, and payments are automatically authorized when votes pass.
+The backbone of a DAO is its [smart contract](/glossary/#smart-contract), which defines the rules of the organization and holds the group's treasury. Once the contract is live on Ethereum, no one can change the rules except by a vote. If anyone tries to do something that's not covered by the rules and logic in the code, it will fail. And because the treasury is defined by the smart contract too that means no one can spend the money without the group's approval either. This means that DAOs don't need a central authority. Instead, the group makes decisions collectively, and payments are automatically authorized when votes pass.
This is possible because smart contracts are tamper-proof once they go live on Ethereum. You can't just edit the code (the DAOs rules) without people noticing because everything is public.
-
- More on smart contracts
-
-
## Ethereum and DAOs {#ethereum-and-daos}
Ethereum is the perfect foundation for DAOs for a number of reasons:
-- Ethereum’s own consensus is distributed and established enough for organizations to trust the network.
+- Ethereum’s own consensus is decentralized and established enough for organizations to trust the network.
- Smart contract code can’t be modified once live, even by its owners. This allows the DAO to run by the rules it was programmed with.
- Smart contracts can send/receive funds. Without this you'd need a trusted intermediary to manage group funds.
- The Ethereum community has proven to be more collaborative than competitive, allowing for best practices and support systems to emerge quickly.
@@ -85,7 +83,7 @@ In many DAOs, transactions will be automatically executed if a quorum of members
### Multisig governance {#governance-example}
-While DAOs may have thousands of voting members, funds can live in a wallet shared by 5-20 active community members who are trusted and usually doxxed (public identities known to the community). After a vote, the multisig signers execute the will of the community.
+While DAOs may have thousands of voting members, funds can live in a [wallet](/glossary/#wallet) shared by 5-20 active community members who are trusted and usually doxxed (public identities known to the community). After a vote, the [multisig](/glossary/#multisig) signers execute the will of the community.
## DAO laws {#dao-laws}
@@ -101,7 +99,7 @@ There are different models for DAO membership. Membership can determine how voti
### Token-based membership {#token-based-membership}
-Usually fully permissionless, depending on the token used. Mostly these governance tokens can be traded permissionlessly on a decentralized exchange. Others must be earned through providing liquidity or some other ‘proof-of-work’. Either way, simply holding the token grants access to voting.
+Usually fully [permissionless](/glossary/#permissionless), depending on the token used. Mostly these governance tokens can be traded permissionlessly on a [decentralized exchange](/glossary/#dex). Others must be earned through providing liquidity or some other ‘proof-of-work’. Either way, simply holding the token grants access to voting.
_Typically used to govern broad decentralized protocols and/or tokens themselves._
@@ -123,11 +121,11 @@ _Typically used for more closer-knit, human-centric organizations like charities
Reputation represents proof of participation and grants voting power in the DAO. Unlike token or share-based membership, reputation-based DAOs don't transfer ownership to contributors. Reputation cannot be bought, transferred or delegated; DAO members must earn reputation through participation. On-chain voting is permissionless and prospective members can freely submit proposals to join the DAO and request to receive reputation and tokens as a reward in exchange for their contributions.
-_Typically used for decentralized development and governance of protocols and dapps, but also well suited to a diverse set of organizations like charities, worker collectives, investment clubs, etc._
+_Typically used for decentralized development and governance of protocols and [dapps](/glossary/#dapp), but also well suited to a diverse set of organizations like charities, worker collectives, investment clubs, etc._
#### A famous example {#reputation-example}
-[DXdao](https://DXdao.eth.link) – DXdao is a global sovereign collective building and governing decentralized protocols and applications since 2019. It leverages reputation-based governance and holographic consensus to coordinate and manage funds, meaning no one can buy their way into influencing its future.
+[DXdao](https://DXdao.eth.link) – DXdao is a global sovereign collective building and governing decentralized protocols and applications since 2019. It leverages reputation-based governance and [holographic consensus](/glossary/#holographic-consensus) to coordinate and manage funds, meaning no one can buy their way into influencing its future.
## Join / start a DAO {#join-start-a-dao}
@@ -150,7 +148,6 @@ _Typically used for decentralized development and governance of protocols and da
### DAO Articles {#dao-articles}
- [What's a DAO?](https://aragon.org/dao) – [Aragon](https://aragon.org/)
-- [The DAO Handbook](https://daohandbook.xyz)
- [House of DAOs](https://wiki.metagame.wtf/docs/great-houses/house-of-daos) – [Metagame](https://wiki.metagame.wtf/)
- [What is a DAO and what is it for?](https://daohaus.substack.com/p/-what-is-a-dao-and-what-is-it-for) – [DAOhaus](https://daohaus.club/)
- [How to Start a DAO-Powered Digital Community](https://daohaus.substack.com/p/four-and-a-half-steps-to-start-a) – [DAOhaus](https://daohaus.club/)
diff --git a/public/content/decentralized-identity/index.md b/public/content/decentralized-identity/index.md
index 3c50e121d20..b912694fab0 100644
--- a/public/content/decentralized-identity/index.md
+++ b/public/content/decentralized-identity/index.md
@@ -13,7 +13,7 @@ summaryPoint3: Thanks to crypto, users now have the tools to issue, hold and con
Identity underpins virtually every aspect of your life today. Using online services, opening a bank account, voting in elections, buying property, securing employment—all of these things require proving your identity.
-However, traditional identity management systems have long relied on centralized intermediaries who issue, hold, and control your identifiers and [attestations](#what-are-attestations). This means you cannot control your identity-related information or decide who has access to personally identifiable information (PII) and how much access these parties have.
+However, traditional identity management systems have long relied on centralized intermediaries who issue, hold, and control your identifiers and [attestations](/glossary/#attestation). This means you cannot control your identity-related information or decide who has access to personally identifiable information (PII) and how much access these parties have.
To solve these problems, we have decentralized identity systems built on public blockchains like Ethereum. Decentralized identity allows individuals to manage their identity-related information. With decentralized identity solutions, _you_ can create identifiers and claim and hold your attestations without relying on central authorities, like service providers or governments.
@@ -21,6 +21,8 @@ To solve these problems, we have decentralized identity systems built on public
Identity means an individual's sense of self, defined by unique characteristics. Identity refers to being an _individual_, i.e., a distinct human entity. Identity could also refer to other non-human entities, such as an organization or authority.
+
+
## What are identifiers? {#what-are-identifiers}
An identifier is a piece of information that acts as a pointer to a particular identity or identities. Common identifiers include:
@@ -33,6 +35,46 @@ An identifier is a piece of information that acts as a pointer to a particular i
These traditional examples of identifiers are issued, held and controlled by central entities. You need permission from your government to change your name or from a social media platform to change your handle.
+## Benefits of decentralized identity {#benefits-of-decentralized-identity}
+
+1. Decentralized identity increases individual control of identifying information. Decentralized identifiers and attestations can be verified without relying on centralized authorities and third-party services.
+
+2. Decentralized identity solutions facilitates a trustless, seamless, and privacy-protecting method for verifying and managing user identity.
+
+3. Decentralized identity harnesses blockchain technology, which creates trust between different parties and provides cryptographic guarantees to prove the validity of attestations.
+
+4. Decentralized identity makes identity data portable. Users store attestations and identifiers in a mobile wallet and can share with any party of their choice. Decentralized identifiers and attestations are not locked into the database of the issuing organization.
+
+5. Decentralized identity should work well with emerging [zero-knowledge](/glossary/#zk-proof) technologies that will enable individuals to prove they own or have done something without revealing what that thing is. This could become a powerful way to combine trust and privacy for applications such as voting.
+
+6. Decentralized identity enables [anti-Sybil](/glossary/#anti-sybil) mechanisms to identify when one individual human is pretending to be multiple humans to game or spam some system.
+
+## Decentralized identity use-cases {#decentralized-identity-use-cases}
+
+Decentralized identity has many potential use-cases:
+
+### 1. Universal logins {#universal-dapp-logins}
+
+Decentralized identity can help replace password-based logins with decentralized authentication. Service providers can issue attestations to users, which can be stored in an Ethereum wallet. An example attestation would be an [NFT](/glossary/#nft) granting the holder access to an online community.
+
+A [Sign-In with Ethereum](https://login.xyz/) function would then enable servers to confirm the user's Ethereum account and fetch the required attestation from their account address. This means users can access platforms and websites without having to memorize long passwords and improves the online experience for users.
+
+### 2. KYC authentication {#kyc-authentication}
+
+Using many online services requires individuals to provide attestations and credentials, such as a driving license or national passport. But this approach is problematic because private user information can be compromised and service providers cannot verify the authenticity of the attestation.
+
+Decentralized identity allows companies to skip on conventional [Know-Your-Customer (KYC)](https://en.wikipedia.org/wiki/Know_your_customer) processes and authenticate user identities via Verifiable Credentials. This reduces the cost of identity management and prevents the use of fake documentation.
+
+### 3. Voting and online communities {#voting-and-online-communities}
+
+Online voting and social media are two novel applications for decentralized identity. Online voting schemes are susceptible to manipulation, especially if malicious actors create false identities to vote. Asking individuals to present on-chain attestations can improve the integrity of online voting processes.
+
+Decentralized identity can help create online communities that are free of fake accounts. For example, each user might have to authenticate their identity using an on-chain identity system, like the Ethereum Name Service, reducing the possibility of bots.
+
+### 4. Anti-Sybil protection {#sybil-protection}
+
+Sybil attacks refer to individual humans tricking a system into thinking they are multiple people to increase their influence. Grant-giving applications that use [quadratic voting](/glossary/#quadratic-voting) are vulnerable to these Sybil attacks because the value of a grant is increased when more individuals vote for it, incentivizing users to split their contributions across many identities. Decentralized identities help to prevent this by raising the burden on each participant to prove that they are really human, although often without having to reveal specific private information.
+
## What are attestations? {#what-are-attestations}
An attestation is a claim made by one entity about another entity. If you live in the United States, the driver's license issued to you by the Department of Motor Vehicles (one entity) attests that you (another entity) are legally allowed to drive a car.
@@ -43,17 +85,17 @@ Attestations are different from identifiers. An attestation _contains_ identifie
Traditional identifiers like your legal name or email address rely on third parties—governments and email providers. Decentralized identifiers (DIDs) are different—they aren't issued, managed, or controlled by any central entity.
-Decentralized identifiers are issued, held, and controlled by individuals. An [Ethereum account](/developers/docs/accounts/) is an example of a decentralized identifier. You can create as many accounts as you want without permission from anyone and without the need to store them in a central registry.
+Decentralized identifiers are issued, held, and controlled by individuals. An [Ethereum account](/glossary/#account) is an example of a decentralized identifier. You can create as many accounts as you want without permission from anyone and without the need to store them in a central registry.
-Decentralized identifiers are stored on distributed ledgers (blockchains) or peer-to-peer networks. This makes DIDs [globally unique, resolvable with high availability, and cryptographically verifiable](https://w3c-ccg.github.io/did-primer/). A decentralized identifier can be associated with different entities, including people, organizations, or government institutions.
+Decentralized identifiers are stored on distributed ledgers ([blockchains](/glossary/#blockchain)) or [peer-to-peer networks](/glossary/#peer-to-peer-network). This makes DIDs [globally unique, resolvable with high availability, and cryptographically verifiable](https://w3c-ccg.github.io/did-primer/). A decentralized identifier can be associated with different entities, including people, organizations, or government institutions.
## What makes decentralized identifiers possible? {#what-makes-decentralized-identifiers-possible}
-### 1. Public Key Infrastructure (PKI) {#public-key-infrastructure}
+### 1. Public Key Cryptography {#public-key-cryptography}
-Public-key infrastructure (PKI) is an information security measure that generates a [public key](/glossary/#public-key) and [private key](/glossary/#private-key) for an entity. Public-key cryptography is used in blockchain networks to authenticate user identities and prove ownership of digital assets.
+Public-key cryptography is an information security measure that generates a [public key](/glossary/#public-key) and [private key](/glossary/#private-key) for an entity. Public-key [cryptography](/glossary/#cryptography) is used in blockchain networks to authenticate user identities and prove ownership of digital assets.
-Some decentralized identifiers, such as an Ethereum account, have public and private keys. The public key identifies the account's controller, while the private keys can sign and decrypt messages for this account. PKI provides proofs needed to authenticate entities and prevent impersonation and use of fake identities, using [cryptographic signatures](https://andersbrownworth.com/blockchain/public-private-keys/) to verify all claims.
+Some decentralized identifiers, such as an Ethereum account, have public and private keys. The public key identifies the account's controller, while the private keys can sign and decrypt messages for this account. Public key cryptography provides proofs needed to authenticate entities and prevent impersonation and use of fake identities, using [cryptographic signatures](https://andersbrownworth.com/blockchain/public-private-keys/) to verify all claims.
### 2. Decentralized datastores {#decentralized-datastores}
@@ -97,7 +139,7 @@ This approach enables attestations to gain blockchain-based persistence, while k
### On-chain attestations {#onchain-attestations}
-On-chain attestations are held in [smart contracts](/developers/docs/smart-contracts/) on the Ethereum blockchain. The smart contract (acting as a registry) will map an attestation to a corresponding on-chain decentralized identifier (a public key).
+On-chain attestations are held in [smart contracts](/glossary/#smart-contract) on the Ethereum blockchain. The smart contract (acting as a registry) will map an attestation to a corresponding on-chain decentralized identifier (a public key).
Here's an example to show how on-chain attestations might work in practice:
@@ -109,47 +151,7 @@ Here's an example to show how on-chain attestations might work in practice:
### Soulbound tokens and identity {#soulbound}
-[Soulbound tokens](https://vitalik.eth.limo/general/2022/01/26/soulbound.html) (non-transferable NFTs) could be used to collect information unique to a specific wallet. This effectively creates a unique on-chain identity bound to a particular Ethereum address that could include tokens representing achievements (e.g. finishing some specific online course or passing a threshold score in a game) or community participation.
-
-## Benefits of decentralized identity {#benefits-of-decentralized-identity}
-
-1. Decentralized identity increases individual control of identifying information. Decentralized identifiers and attestations can be verified without relying on centralized authorities and third-party services.
-
-2. Decentralized identity solutions facilitates a trustless, seamless, and privacy-protecting method for verifying and managing user identity.
-
-3. Decentralized identity harnesses blockchain technology, which creates trust between different parties and provides cryptographic guarantees to prove the validity of attestations.
-
-4. Decentralized identity makes identity data portable. Users store attestations and identifiers in a mobile wallet and can share with any party of their choice. Decentralized identifiers and attestations are not locked into the database of the issuing organization.
-
-5. Decentralized identity should work well with emerging zero-knowledge technologies that will enable individuals to prove they own or have done something without revealing what that thing is. This could become a powerful way to combine trust and privacy for applications such as voting.
-
-6. Decentralized identity enables anti-Sybil mechanisms to identify when one individual human is pretending to be multiple humans to game or spam some system.
-
-## Decentralized identity use-cases {#decentralized-identity-use-cases}
-
-Decentralized identity has many potential use-cases:
-
-### 1. Universal logins {#universal-dapp-logins}
-
-Decentralized identity can help replace password-based logins with [decentralized authentication](https://www.ibm.com/blogs/blockchain/2018/10/decentralized-identity-an-alternative-to-password-based-authentication/). Service providers can issue attestations to users, which can be stored in an Ethereum wallet. An example attestation would be an [NFT](/nft/) granting the holder access to an online community.
-
-A [Sign-In with Ethereum](https://login.xyz/) function would then enable servers to confirm the user's Ethereum account and fetch the required attestation from their account address. This means users can access platforms and websites without having to memorize long passwords and improves the online experience for users.
-
-### 2. KYC authentication {#kyc-authentication}
-
-Using many online services requires individuals to provide attestations and credentials, such as a driving license or national passport. But this approach is problematic because private user information can be compromised and service providers cannot verify the authenticity of the attestation.
-
-Decentralized identity allows companies to skip on conventional [Know-Your-Customer (KYC)](https://en.wikipedia.org/wiki/Know_your_customer) processes and authenticate user identities via Verifiable Credentials. This reduces the cost of identity management and prevents the use of fake documentation.
-
-### 3. Voting and online communities {#voting-and-online-communities}
-
-Online voting and social media are two novel applications for decentralized identity. Online voting schemes are susceptible to manipulation, especially if malicious actors create false identities to vote. Asking individuals to present on-chain attestations can improve the integrity of online voting processes.
-
-Decentralized identity can help create online communities that are free of fake accounts. For example, each user might have to authenticate their identity using an on-chain identity system, like the Ethereum Name Service, reducing the possibility of bots.
-
-### 4. Anti-Sybil protection {#sybil-protection}
-
-Sybil attacks refer to individual humans tricking a system into thinking they are multiple people to increase their influence. [Grant-giving applications](https://gitcoin.co/grants/) that use [quadratic voting](https://www.radicalxchange.org/concepts/plural-voting/) are vulnerable to these Sybil attacks because the value of a grant is increased when more individuals vote for it, incentivizing users to split their contributions across many identities. Decentralized identities help to prevent this by raising the burden on each participant to prove that they are really human, although often without having to reveal specific private information.
+[Soulbound tokens](https://vitalik.eth.limo/general/2022/01/26/soulbound.html) ([non-transferable NFTs](/glossary/#nft)) could be used to collect information unique to a specific wallet. This effectively creates a unique on-chain identity bound to a particular Ethereum address that could include tokens representing achievements (e.g. finishing some specific online course or passing a threshold score in a game) or community participation.
## Use decentralized identity {#use-decentralized-identity}
@@ -160,7 +162,6 @@ There are many ambitious projects using Ethereum as a foundation for decentraliz
- **[Ethereum Attestation Service (EAS)](https://attest.sh/)** - _A decentralized ledger/protocol for making on-chain or off-chain attestations about anything._
- **[Proof of Humanity](https://www.proofofhumanity.id)** - _Proof of Humanity (or PoH) is a social identity verification system built on Ethereum._
- **[BrightID](https://www.brightid.org/)** - _A decentralized, open-source social identity network seeking to reform identity verification through the creation and analysis of a social graph._
-- **[Proof-of-personhood Passport](https://proofofpersonhood.com/)** - _A decentralized digital identity aggregator._
- **[walt.id](https://walt.id)** — _Open source decentralized identity and wallet infrastructure that enables developers and organizations to leverage self-sovereign identity and NFTs/SBTs._
## Further reading {#further-reading}
diff --git a/public/content/defi/index.md b/public/content/defi/index.md
index 168c5a8ee1d..05a72715121 100644
--- a/public/content/defi/index.md
+++ b/public/content/defi/index.md
@@ -47,7 +47,7 @@ One of the best ways to see the potential of DeFi is to understand the problems
| The markets are always open. | Markets close because employees need breaks. |
| It's built on transparency – anyone can look at a product's data and inspect how the system works. | Financial institutions are closed books: you can't ask to see their loan history, a record of their managed assets, and so on. |
-
+
Explore DeFi apps
@@ -55,7 +55,7 @@ One of the best ways to see the potential of DeFi is to understand the problems
Bitcoin in many ways was the first DeFi application. Bitcoin lets you really own and control value and send it anywhere around the world. It does this by providing a way for a large number of people, who don't trust each other, to agree on a ledger of accounts without the need for a trusted intermediary. Bitcoin is open to anyone and no one has the authority to change its rules. Bitcoin's rules, like its scarcity and its openness, are written into the technology. It's not like traditional finance where governments can print money that devalues your savings and companies can shut down markets.
-Ethereum builds on this. Like Bitcoin, the rules can't change on you and everyone has access. But it also makes this digital money programmable, using [smart contracts](/glossary#smart-contract), so you can go beyond storing and sending value.
+Ethereum builds on this. Like Bitcoin, the rules can't change on you and everyone has access. But it also makes this digital money programmable, using [smart contracts](/glossary/#smart-contract), so you can go beyond storing and sending value.
@@ -65,7 +65,7 @@ This sounds odd... "why would I want to program my money"? However, this is more
Explore our suggestions for DeFi applications to try out if you're new to Ethereum.
-
+
Explore DeFi apps
@@ -90,9 +90,9 @@ There's a decentralized alternative to most financial services. But Ethereum als
### Send money around the globe quickly {#send-money}
-As a blockchain, Ethereum is designed for sending transactions in a secure and global way. Like Bitcoin, Ethereum makes sending money around the world as easy as sending an email. Just enter your recipient's [ENS name](/nft/#nft-domains) (like bob.eth) or their account address from your wallet and your payment will go directly to them in minutes (usually). To send or receive payments, you will need a [wallet](/wallets/).
+As a blockchain, Ethereum is designed for sending transactions in a secure and global way. Like Bitcoin, Ethereum makes sending money around the world as easy as sending an email. Just enter your recipient's [ENS name](/glossary/#ens) (like bob.eth) or their account address from your wallet and your payment will go directly to them in minutes (usually). To send or receive payments, you will need a [wallet](/wallets/).
-
+
See payment dapps
@@ -100,7 +100,7 @@ As a blockchain, Ethereum is designed for sending transactions in a secure and g
You can also stream money over Ethereum. This lets you pay someone their salary by the second, giving them access to their money whenever they need it. Or rent something by the second like a storage locker or electric scooter.
-And if you don't want to send or stream [ETH](/eth/) because of how much its value can change, there are alternative currencies on Ethereum: stablecoins.
+And if you don't want to send or stream [ETH](/glossary/#ether) because of how much its value can change, there are alternative currencies on Ethereum: [stablecoins](/glossary/#stablecoin).
@@ -110,7 +110,7 @@ Cryptocurrency volatility is a problem for lots of financial products and genera
Coins like Dai or USDC have a value that stays within a few cents of a dollar. This makes them perfect for earning or retail. Many people in Latin America have used stablecoins as a way of protecting their savings in a time of great uncertainty with their government-issued currencies.
-
+
More on stablecoins
@@ -123,7 +123,7 @@ Borrowing money from decentralized providers comes in two main varieties.
- Peer-to-peer, meaning a borrower will borrow directly from a specific lender.
- Pool-based where lenders provide funds (liquidity) to a pool that borrowers can borrow from.
-
+
See borrowing dapps
@@ -133,7 +133,7 @@ There are many advantages to using a decentralized lender...
Today, lending and borrowing money all revolves around the individuals involved. Banks need to know whether you're likely to repay a loan before lending.
-Decentralized lending works without either party having to identify themselves. Instead, the borrower must put up collateral that the lender will automatically receive if their loan is not repaid. Some lenders even accept NFTs as collateral. NFTs are a deed to a unique asset, like a painting. [More on NFTs](/nft/)
+Decentralized lending works without either party having to identify themselves. Instead, the borrower must put up collateral that the lender will automatically receive if their loan is not repaid. Some lenders even accept [NFTs](/glossary/#nft) as collateral. NFTs are a deed to a unique asset, like a painting. [More on NFTs](/nft/)
This allows you to borrow money without credit checks or handing over private information.
@@ -168,7 +168,9 @@ If exchange B's supply dropped suddenly and the user wasn't able to buy enough t
To be able to do the above example in the traditional finance world, you'd need an enormous amount of money. These money-making strategies are only accessible to those with existing wealth. Flash loans are an example of a future where having money is not necessarily a prerequisite for making money.
-[More on flash loans](https://aave.com/flash-loans/)
+
+ More on flash loans
+
@@ -180,10 +182,10 @@ You can earn interest on your crypto by lending it and see your funds grow in re
- You lend your 100 Dai, a [stablecoin](/stablecoins/), to a product like Aave.
- You receive 100 Aave Dai (aDai) which is a token that represents your loaned Dai.
-- Your aDai will increase based on the interest rates and you can see your balance growing in your wallet. Dependent on the APR, your wallet balance will read something like 100.1234 after a few days or even hours!
+- Your aDai will increase based on the interest rates and you can see your balance growing in your wallet. Dependent on the [APR](/glossary/#apr), your wallet balance will read something like 100.1234 after a few days or even hours!
- You can withdraw an amount of regular Dai that's equal to your aDai balance at any time.
-
+
See lending dapps
@@ -199,7 +201,7 @@ No-loss lotteries like PoolTogether are a fun and innovative new way to save mon
The prize pool is generated by all the interest generated by lending the ticket deposits like in the lending example above.
-
+
Try PoolTogether
@@ -211,7 +213,7 @@ There are thousands of tokens on Ethereum. Decentralized exchanges (DEXs) let yo
For example, if you want to use the no-loss lottery PoolTogether (described above), you'll need a token like Dai or USDC. These DEXs allow you to swap your ETH for those tokens and back again when you're finished.
-
+
See token exchanges
@@ -223,7 +225,7 @@ There are more advanced options for traders who like a little more control. Limi
When you use a centralized exchange you have to deposit your assets before the trade and trust them to look after them. While your assets are deposited, they're at risk as centralized exchanges are attractive targets for hackers.
-
+
See trading dapps
@@ -233,9 +235,9 @@ When you use a centralized exchange you have to deposit your assets before the t
There are fund management products on Ethereum that will try to grow your portfolio based on a strategy of your choice. This is automatic, open to everyone, and doesn't need a human manager taking a cut of your profits.
-A good example is the [DeFi Pulse Index fund (DPI)](https://defipulse.com/blog/defi-pulse-index/). This is a fund that rebalances automatically to ensure your portfolio always includes [the top DeFi tokens by market capitalization](https://www.coingecko.com/en/defi). You never have to manage any of the details and you can withdraw from the fund whenever you like.
+A good example is the [DeFi Pulse Index fund (DPI)](https://defipulse.com/blog/defi-pulse-index/). This is a fund that rebalances automatically to ensure your portfolio always includes the top DeFi tokens by market capitalization. You never have to manage any of the details and you can withdraw from the fund whenever you like.
-
+
See investment dapps
@@ -249,7 +251,7 @@ Ethereum is an ideal platform for crowdfunding:
- It's transparent so fundraisers can prove how much money has been raised. You can even trace how funds are being spent later down the line.
- Fundraisers can set up automatic refunds if, for example, there is a specific deadline and minimum amount that isn't met.
-
+
See crowdfunding dapps
@@ -266,7 +268,9 @@ Quadratic funding makes sure that the projects that receive the most funding are
This means Project A with its 100 donations of 1 dollar could end up with more funding than Project B with a single donation of 10,000 dollars (dependent on the size of the matching pool).
-[More on quadratic funding](https://wtfisqf.com)
+
+ More on quadratic funding
+
@@ -276,7 +280,7 @@ Decentralized insurance aims to make insurance cheaper, faster to pay out, and m
Ethereum products, like any software, can suffer from bugs and exploits. So right now a lot of insurance products in the space focus on protecting their users against loss of funds. However, there are projects starting to build out coverage for everything life can throw at us. A good example of this is Etherisc's Crop cover which aims to [protect smallholder farmers in Kenya against droughts and flooding](https://blog.etherisc.com/etherisc-teams-up-with-chainlink-to-deliver-crop-insurance-in-kenya-137e433c29dc). Decentralized insurance can provide cheaper cover for farmers who are often priced out of traditional insurance.
-
+
See insurance dapps
@@ -286,7 +290,7 @@ Ethereum products, like any software, can suffer from bugs and exploits. So righ
With so much going on, you'll need a way to keep track of all your investments, loans, and trades. There are a host of products that let you coordinate all your DeFi activity from one place. This is the beauty of DeFi's open architecture. Teams can build out interfaces where you can't just see your balances across products, you can use their features too. You might find this useful as you explore more of DeFi.
-
+
See portfolio dapps
@@ -324,7 +328,7 @@ You can think of DeFi in layers:
DeFi is an open-source movement. The DeFi protocols and applications are all open for you to inspect, fork, and innovate on. Because of this layered stack (they all share the same base blockchain and assets), protocols can be mixed and matched to unlock unique combo opportunities.
-
+
More on building dapps
@@ -334,7 +338,6 @@ DeFi is an open-source movement. The DeFi protocols and applications are all ope
- [DeFi Prime](https://defiprime.com/)
- [DeFi Llama](https://defillama.com/)
-- [DeFi Rate](https://defirate.com/)
### DeFi articles {#defi-articles}
@@ -348,5 +351,5 @@ DeFi is an open-source movement. The DeFi protocols and applications are all ope
### Communities {#communities}
-- [DeFi Llama Discord server](https://discord.gg/buPFYXzDDd)
+- [DeFi Llama Discord server](https://discord.defillama.com/)
- [DeFi Pulse Discord server](https://discord.gg/Gx4TCTk)
diff --git a/public/content/desci/index.md b/public/content/desci/index.md
index c9e7ae8f6ea..8b3309793a9 100644
--- a/public/content/desci/index.md
+++ b/public/content/desci/index.md
@@ -14,11 +14,11 @@ summaryPoint3: Builds on the open science movement.
## What is decentralized science (DeSci)? {#what-is-desci}
-Decentralized science (DeSci) is a movement that aims to build public infrastructure for funding, creating, reviewing, crediting, storing, and disseminating scientific knowledge fairly and equitably using the Web3 stack.
+Decentralized science (DeSci) is a movement that aims to build public infrastructure for funding, creating, reviewing, crediting, storing, and disseminating scientific knowledge fairly and equitably using the [Web3](/glossary/#web3) stack.
DeSci aims to create an ecosystem where scientists are incentivized to openly share their research and receive credit for their work while allowing anyone to access and contribute to the research easily. DeSci works off the idea that scientific knowledge should be accessible to everyone and that the process of scientific research should be transparent. DeSci is creating a more decentralized and distributed scientific research model, making it more resistant to censorship and control by central authorities. DeSci hopes to create an environment where new and unconventional ideas can flourish by decentralizing access to funding, scientific tools, and communication channels.
-Decentralized science allows for more diverse funding sources (from [DAOs](/dao/), [quadratic donations](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2003531) to crowdfunding and more), more accessible data and methods, and by providing incentives for reproducibility.
+Decentralized science allows for more diverse funding sources (from [DAOs](/glossary/#dao), [quadratic donations](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2003531) to crowdfunding and more), more accessible data and methods, and by providing incentives for reproducibility.
### Juan Benet - The DeSci Movement
@@ -30,28 +30,28 @@ An incomplete list of key problems in science and how decentralized science can
| **Decentralized science** | **Traditional science** |
| ----------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- |
-| Distribution of funds is determined by the public using mechanisms such as quadratic donations or DAOs. | Small, closed, centralized groups control the distribution of funds. |
-| You collaborate with peers from all over the globe in dynamic teams. | Funding organizations and home institutions limit your collaborations. |
-| Funding decisions are made online and transparently. New funding mechanisms are explored. | Funding decisions are made with a long turnaround time and limited transparency. Few funding mechanisms exist. |
-| Sharing laboratory services is made easier and more transparent using Web3 primitives. | Sharing laboratory resources is often slow and opaque. |
-| New models for publishing can be developed that use Web3 primitives for trust, transparency and universal access. | You publish through established pathways frequently acknowledged as inefficient, biased and exploitative. |
-| You can earn tokens and reputation for peer-reviewing work. | Your peer-review work is unpaid, benefiting for-profit publishers. |
-| You own the intellectual property (IP) you generate and distribute it according to transparent terms. | Your home institution owns the IP you generate. Access to the IP is not transparent. |
-| Sharing all of the research, including the data from unsuccessful efforts, by having all steps on-chain. | Publication bias means that researchers are more likely to share experiments that had successful results. |
+| Distribution of funds is **determined by the public** using mechanisms such as quadratic donations or DAOs. | Small, closed, **centralized groups** control the distribution of funds. |
+| You collaborate with peers from **all over the globe** in dynamic teams. | Funding organizations and home institutions **limit** your collaborations. |
+| Funding decisions are made online and **transparently**. New funding mechanisms are explored. | Funding decisions are made with a long turnaround time and **limited transparency**. Few funding mechanisms exist. |
+| Sharing laboratory services is made easier and more transparent using [Web3](/glossary/#web3) technology. | Sharing laboratory resources is often **slow and opaque**. |
+| **New models for publishing** can be developed that use Web3 primitives for trust, transparency and universal access. | You publish through established pathways frequently acknowledged as **inefficient, biased and exploitative**. |
+| You can **earn tokens and reputation for peer-reviewing** work. | Your **peer-review work is unpaid**, benefiting for-profit publishers. |
+| **You own the intellectual property (IP)** you generate and distribute it according to transparent terms. | **Your home institution owns the IP** you generate. Access to the IP is not transparent. |
+| **Sharing all of the research**, including the data from unsuccessful efforts, by having all steps on-chain. | **Publication bias** means that researchers are more likely to share experiments that had successful results. |
## Ethereum and DeSci {#ethereum-and-desci}
-A decentralized science system will require robust security, minimal monetary and transaction costs, and a rich ecosystem for application development. Ethereum provides everything needed for building a decentralized science stack.
+A decentralized science system will require robust security, minimal monetary and transaction costs, and a rich ecosystem for application development. Ethereum provides everything needed for building a decentralized science technology.
## DeSci use cases {#use-cases}
-DeSci is building the scientific toolset to onboard Web2 academia into the digital world. Below is a sampling of use cases that Web3 can offer to the scientific community.
+DeSci is building the scientific toolset to onboard traditional academia into the digital world. Below is a sampling of use cases that Web3 can offer to the scientific community.
### Publishing {#publishing}
-Science publishing is famously problematic because it is managed by publishing houses that rely upon free labor from scientists, reviewers, and editors to generate the papers but then charge exorbitant publishing fees. The public, who have usually indirectly paid for the work and the publication costs through taxation, can often not access that same work without paying the publisher again. The total fees for publishing individual science papers are often five figures ($USD), undermining the whole concept of scientific knowledge as a [public good](https://www.econlib.org/library/Enc/PublicGoods.html) while generating enormous profits for a small group of publishers.
+Science publishing is famously problematic because it is managed by publishing houses that rely upon free labor from scientists, reviewers, and editors to generate the papers but then charge exorbitant publishing fees. The public, who have usually indirectly paid for the work and the publication costs through taxation, can often not access that same work without paying the publisher again. The total fees for publishing individual science papers are often five figures ($USD), undermining the whole concept of scientific knowledge as a [public good](/glossary/#public-goods) while generating enormous profits for a small group of publishers.
-Free and open-access platforms exist in the form of pre-print servers, [such as ArXiv](https://arxiv.org/). However, these platforms lack quality control, [anti-sybil mechanisms](https://csrc.nist.gov/glossary/term/sybil_attack), and do not generally track article-level metrics, meaning they are usually only used to publicize work before submission to a traditional publisher. SciHub also makes published papers free to access, but not legally, and only after the publishers have already taken their payment and wrapped the work in strict copyright legislation. This leaves a critical gap for accessible science papers and data with an embedded legitimacy mechanism and incentive model. The tools for building such a system exist in Web3.
+Free and open-access platforms exist in the form of pre-print servers, [such as ArXiv](https://arxiv.org/). However, these platforms lack quality control, [anti-sybil mechanisms](/glossary/#anti-sybil), and do not generally track article-level metrics, meaning they are usually only used to publicize work before submission to a traditional publisher. SciHub also makes published papers free to access, but not legally, and only after the publishers have already taken their payment and wrapped the work in strict copyright legislation. This leaves a critical gap for accessible science papers and data with an embedded legitimacy mechanism and incentive model. The tools for building such a system exist in Web3.
### Reproducibility and replicability {#reproducibility-and-replicability}
@@ -60,23 +60,23 @@ Reproducibility and replicability are the foundations of quality scientific disc
- Reproducible results can be achieved multiple times in a row by the same team using the same methodology.
- Replicable results can be achieved by a different group using the same experimental setup.
-New Web3-native tools can ensure that reproducibility and replicability are the basis of discovery. We can weave quality science into the technological fabric of academia. Web3 offers the ability to create attestations for each analysis component: the raw data, the computational engine, and the application result. The beauty of consensus systems is that when a trusted network is created for maintaining these components, each network participant can be responsible for reproducing the calculation and validating each result.
+New Web3-native tools can ensure that reproducibility and replicability are the basis of discovery. We can weave quality science into the technological fabric of academia. Web3 offers the ability to create [attestations](/glossary/#attestation) for each analysis component: the raw data, the computational engine, and the application result. The beauty of consensus systems is that when a trusted network is created for maintaining these components, each network participant can be responsible for reproducing the calculation and validating each result.
### Funding {#funding}
-The current standard model for funding science is that individuals or groups of scientists make written applications to a funding agency. A small panel of trusted individuals score the applications and then interview candidates before awarding funds to a small portion of applicants. Aside from creating bottlenecks that lead to sometimes years of waiting time between applying for and receiving a grant, this model is known to be highly vulnerable to the biases, self-interests and politics of the review panel.
+The current standard model for funding science is that individuals or groups of scientists make written applications to a funding agency. A small panel of trusted individuals score the applications and then interview candidates before awarding funds to a small portion of applicants. Aside from creating bottlenecks that lead to sometimes **years of waiting** time between applying for and receiving a grant, this model is known to be highly **vulnerable to the biases, self-interests and politics** of the review panel.
Studies have shown that grant review panels do a poor job of selecting high-quality proposals as the same proposals given to different panels have wildly different outcomes. As funding has become more scarce, it has concentrated into a smaller pool of more senior researchers with more intellectually conservative projects. The effect has created a hyper-competitive funding landscape, entrenching perverse incentives and stifling innovation.
-Web3 has the potential to disrupt this broken funding model by experimenting with different incentive models developed by DAOs and Web3 broadly. [Retroactive public goods funding](https://medium.com/ethereum-optimism/retroactive-public-goods-funding-33c9b7d00f0c), [quadratic funding](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2003531), [DAO governance](https://www.antler.co/blog/daos-and-web3-governance) and [tokenized incentive structures](https://cdixon.org/2017/05/27/crypto-tokens-a-breakthrough-in-open-network-design) are some of the Web3 tools that could revolutionize science funding.
+Web3 has the potential to disrupt this broken funding model by experimenting with different incentive models developed by DAOs and Web3 broadly. [Retroactive public goods funding](https://medium.com/ethereum-optimism/retroactive-public-goods-funding-33c9b7d00f0c), [quadratic funding](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2003531), [DAO governance](https://www.antler.co/blog/daos-and-web3-governance-the-promise-implications-and-challenges-ahead) and [tokenized incentive structures](https://cdixon.org/2017/05/27/crypto-tokens-a-breakthrough-in-open-network-design) are some of the Web3 tools that could revolutionize science funding.
### IP ownership and development {#ip-ownership}
-Intellectual property (IP) is a big problem in traditional science: from being stuck in universities or unused in biotechs, to being notoriously hard to value. However, ownership of digital assets (such as scientific data or articles) is something Web3 does exceptionally well using [non-fungible tokens (NFTs)](/nft/).
+Intellectual property (IP) is a big problem in traditional science: from being stuck in universities or unused in biotechs, to being notoriously hard to value. However, ownership of digital assets (such as scientific data or articles) is something Web3 does exceptionally well using [non-fungible tokens (NFTs)](/glossary/#nft).
In the same way that NFTs can pass revenue for future transactions back to the original creator, you can establish transparent value attribution chains to reward researchers, governing bodies (like DAOs), or even the subjects whose data is collected.
-[IP-NFTs](https://medium.com/molecule-blog/ip-nfts-for-researchers-a-new-biomedical-funding-paradigm-91312d8d92e6) can also function as a key to a decentralized data repository of the research experiments being undertaken, and plug into NFT and [DeFi](/defi/) financialization (from fractionalization to lending pools and value appraisal). It also allows natively on-chain entities such as DAOs like [VitaDAO](https://www.vitadao.com/) to conduct research directly on-chain.
+[IP-NFTs](https://medium.com/molecule-blog/ip-nfts-for-researchers-a-new-biomedical-funding-paradigm-91312d8d92e6) can also function as a key to a decentralized data repository of the research experiments being undertaken, and plug into NFT and [DeFi](/glossary/#defi) financialization (from fractionalization to lending pools and value appraisal). It also allows natively on-chain entities such as DAOs like [VitaDAO](https://www.vitadao.com/) to conduct research directly on-chain.
The advent of non-transferable ["soulbound" tokens](https://vitalik.eth.limo/general/2022/01/26/soulbound.html) may also play an important role in DeSci by allowing individuals to prove their experience and credentials linked to their Ethereum address.
### Data storage, access and architecture {#data-storage}
diff --git a/public/content/developers/docs/accounts/accounts.png b/public/content/developers/docs/accounts/accounts.png
index e97a1f9c11e..2ecdcd15563 100644
Binary files a/public/content/developers/docs/accounts/accounts.png and b/public/content/developers/docs/accounts/accounts.png differ
diff --git a/public/content/developers/docs/apis/backend/index.md b/public/content/developers/docs/apis/backend/index.md
index 6ddc486bf72..77081abe148 100644
--- a/public/content/developers/docs/apis/backend/index.md
+++ b/public/content/developers/docs/apis/backend/index.md
@@ -25,7 +25,7 @@ These libraries abstract away much of the complexity of interacting directly wit
- [alchemy.com](https://www.alchemy.com/)
- [Documentation](https://docs.alchemyapi.io/)
- [GitHub](https://github.com/alchemyplatform)
-- [Discord](https://discord.com/invite/A39JVCM)
+- [Discord](https://discord.com/invite/alchemyplatform)
**BlockCypher -** **_Ethereum Web APIs._**
@@ -36,7 +36,7 @@ These libraries abstract away much of the complexity of interacting directly wit
- [blastapi.io](https://blastapi.io/)
- [Documentation](https://docs.blastapi.io)
-- [Discord](https://discord.com/invite/VPkWESgtvV)
+- [Discord](https://discord.gg/bwarelabs)
**Infura -** **_The Ethereum API as a service._**
@@ -84,7 +84,7 @@ These libraries abstract away much of the complexity of interacting directly wit
- [quicknode.com](https://quicknode.com)
- [Documentation](https://www.quicknode.com/docs)
-- [Discord](https://discord.gg/NaR7TtpvJq)
+- [Discord](https://discord.gg/quicknode)
**Python Tooling -** **_Variety of libraries for Ethereum interaction via Python._**
@@ -140,7 +140,7 @@ These libraries abstract away much of the complexity of interacting directly wit
- [moralis.io](http://moralis.io)
- [Documentation](https://docs.moralis.io/)
- [GitHub](https://github.com/MoralisWeb3)
-- [Discord](https://discord.com/invite/KYswaxwEtg)
+- [Discord](https://moralis.io/joindiscord/)
- [Forum](https://forum.moralis.io/)
**Chainbase -** **_All-in-one web3 data infrastructure for Ethereum._**
diff --git a/public/content/developers/docs/blocks/index.md b/public/content/developers/docs/blocks/index.md
index c2beb073a3f..498ac1ba16b 100644
--- a/public/content/developers/docs/blocks/index.md
+++ b/public/content/developers/docs/blocks/index.md
@@ -56,7 +56,7 @@ The block `body` contains several fields of its own:
| `eth1_data` | information about the deposit contract |
| `graffiti` | arbitrary data used to tag blocks |
| `proposer_slashings` | list of validators to be slashed |
-| `attester_slashings` | list of validators to be slashed |
+| `attester_slashings` | list of attesters to be slashed |
| `attestations` | list of attestations in favor of the current block |
| `deposits` | list of new deposits to the deposit contract |
| `voluntary_exits` | list of validators exiting the network |
diff --git a/public/content/developers/docs/blocks/tx-block.png b/public/content/developers/docs/blocks/tx-block.png
index 900fda507c6..0ac1e076871 100644
Binary files a/public/content/developers/docs/blocks/tx-block.png and b/public/content/developers/docs/blocks/tx-block.png differ
diff --git a/public/content/developers/docs/consensus-mechanisms/pos/attack-and-defense/reorg-schematic.png b/public/content/developers/docs/consensus-mechanisms/pos/attack-and-defense/reorg-schematic.png
index 9fc3e10c314..c34894998cf 100644
Binary files a/public/content/developers/docs/consensus-mechanisms/pos/attack-and-defense/reorg-schematic.png and b/public/content/developers/docs/consensus-mechanisms/pos/attack-and-defense/reorg-schematic.png differ
diff --git a/public/content/developers/docs/consensus-mechanisms/pos/attestations/attestation_schematic.png b/public/content/developers/docs/consensus-mechanisms/pos/attestations/attestation_schematic.png
index a04969182f9..ecd077e5cab 100644
Binary files a/public/content/developers/docs/consensus-mechanisms/pos/attestations/attestation_schematic.png and b/public/content/developers/docs/consensus-mechanisms/pos/attestations/attestation_schematic.png differ
diff --git a/public/content/developers/docs/consensus-mechanisms/pos/keys/multiple-keys.png b/public/content/developers/docs/consensus-mechanisms/pos/keys/multiple-keys.png
index f75b39ab093..329396060f0 100644
Binary files a/public/content/developers/docs/consensus-mechanisms/pos/keys/multiple-keys.png and b/public/content/developers/docs/consensus-mechanisms/pos/keys/multiple-keys.png differ
diff --git a/public/content/developers/docs/consensus-mechanisms/pos/keys/validator-key-schematic.png b/public/content/developers/docs/consensus-mechanisms/pos/keys/validator-key-schematic.png
index 83dcbeaddee..7a5877cf6d9 100644
Binary files a/public/content/developers/docs/consensus-mechanisms/pos/keys/validator-key-schematic.png and b/public/content/developers/docs/consensus-mechanisms/pos/keys/validator-key-schematic.png differ
diff --git a/public/content/developers/docs/consensus-mechanisms/pow/mining/index.md b/public/content/developers/docs/consensus-mechanisms/pow/mining/index.md
index 5841adaabbd..0cc31051894 100644
--- a/public/content/developers/docs/consensus-mechanisms/pow/mining/index.md
+++ b/public/content/developers/docs/consensus-mechanisms/pow/mining/index.md
@@ -70,9 +70,9 @@ Watch Austin walk you through mining and the proof-of-work blockchain.
## The mining algorithm {#mining-algorithm}
-Ethereum Mainnet only ever used one mining algorithm - ['Ethash'](/developers/docs/consensus-mechanisms/pow/mining-algorithms/ethash/). Ethhash was the successor to an original R&D algorithm known as ['Dagger-Hashimoto'](/developers/docs/consensus-mechanisms/pow/mining-algorithms/dagger-hashimoto/).
+Ethereum Mainnet only ever used one mining algorithm - ['Ethash'](/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/ethash/). Ethash was the successor to an original R&D algorithm known as ['Dagger-Hashimoto'](/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/dagger-hashimoto/).
-[More on mining algorithms](/developers/docs/consensus-mechanisms/pow/mining-algorithms/).
+[More on mining algorithms](/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/).
## Related topics {#related-topics}
diff --git a/public/content/developers/docs/consensus-mechanisms/pow/mining-algorithms/dagger-hashimoto/index.md b/public/content/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/dagger-hashimoto/index.md
similarity index 98%
rename from public/content/developers/docs/consensus-mechanisms/pow/mining-algorithms/dagger-hashimoto/index.md
rename to public/content/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/dagger-hashimoto/index.md
index a78c1ba9d22..4e800a2593a 100644
--- a/public/content/developers/docs/consensus-mechanisms/pow/mining-algorithms/dagger-hashimoto/index.md
+++ b/public/content/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/dagger-hashimoto/index.md
@@ -4,7 +4,7 @@ description: A detailed look at the Dagger-Hashimoto algorithm.
lang: en
---
-Dagger-Hashimoto was the original research implementation and specification for Ethereum's mining algorithm. Dagger-Hashimoto was superseded by [Ethash](#ethash). Mining was switched off completely at [The Merge](/updates/merge) on 15th September 2022. Since then, Ethereum has been secured using a [proof-of-stake](/developers/docs/consensus-mechanisms/pos) mechanism instead. This page is for historical interest - the information here is no longer relevant for post-Merge Ethereum.
+Dagger-Hashimoto was the original research implementation and specification for Ethereum's mining algorithm. Dagger-Hashimoto was superseded by [Ethash](#ethash). Mining was switched off completely at [The Merge](/roadmap/merge/) on 15th September 2022. Since then, Ethereum has been secured using a [proof-of-stake](/developers/docs/consensus-mechanisms/pos) mechanism instead. This page is for historical interest - the information here is no longer relevant for post-Merge Ethereum.
## Prerequisites {#prerequisites}
diff --git a/public/content/developers/docs/consensus-mechanisms/pow/mining-algorithms/ethash/index.md b/public/content/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/ethash/index.md
similarity index 99%
rename from public/content/developers/docs/consensus-mechanisms/pow/mining-algorithms/ethash/index.md
rename to public/content/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/ethash/index.md
index a63178b69a7..7dc41181c25 100644
--- a/public/content/developers/docs/consensus-mechanisms/pow/mining-algorithms/ethash/index.md
+++ b/public/content/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/ethash/index.md
@@ -8,7 +8,7 @@ lang: en
Ethash was Ethereum's proof-of-work mining algorithm. Proof-of-work has now been **switched off entirely** and Ethereum is now secured using proof-of-stake instead. Read more on The Merge, proof-of-stake and staking. This page is for historical interest!
-[Ethash](https://github.com/ethereum/wiki/wiki/Ethash) is a modified version of the [Dagger-Hashimoto](/developers/docs/consensus-mechanisms/pow/mining-algorithms/dagger-hashimoto) algorithm. Ethash proof-of-work is [memory hard](https://wikipedia.org/wiki/Memory-hard_function), which was thought to make the algorithm ASIC resistant. Ethash ASICs were eventually developed but GPU mining was still a viable option until proof-of-work was switched off. Ethash is still used to mine other coins on other non-Ethereum proof-of-work networks.
+[Ethash](https://github.com/ethereum/wiki/wiki/Ethash) is a modified version of the [Dagger-Hashimoto](/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/dagger-hashimoto) algorithm. Ethash proof-of-work is [memory hard](https://wikipedia.org/wiki/Memory-hard_function), which was thought to make the algorithm ASIC resistant. Ethash ASICs were eventually developed but GPU mining was still a viable option until proof-of-work was switched off. Ethash is still used to mine other coins on other non-Ethereum proof-of-work networks.
## How does Ethash work? {#how-does-ethash-work}
diff --git a/public/content/developers/docs/consensus-mechanisms/pow/mining-algorithms/index.md b/public/content/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/index.md
similarity index 98%
rename from public/content/developers/docs/consensus-mechanisms/pow/mining-algorithms/index.md
rename to public/content/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/index.md
index 798cad7121e..bd656fd4072 100644
--- a/public/content/developers/docs/consensus-mechanisms/pow/mining-algorithms/index.md
+++ b/public/content/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/index.md
@@ -24,13 +24,13 @@ Dagger Hashimoto was a precursor research algorithm for Ethereum mining that Eth
Dagger-Hashimoto used amended versions of the Dagger and Hashimoto algorithms. The difference between Dagger Hashimoto and Hashimoto is that, instead of using the blockchain as a data source, Dagger Hashimoto uses a custom-generated data set, which updates based on block data every N blocks. The data set is generated using the Dagger algorithm, allowing for efficiently calculating a subset specific to every nonce for the light client verification algorithm. The difference between Dagger Hashimoto and Dagger is that, unlike in the original Dagger, the dataset used to query the block is semi-permanent, only being updated at occasional intervals (e.g. once per week). This means that the portion of the effort of generating the dataset is close to zero, so Sergio Lerner’s arguments regarding shared memory speedups become negligible.
-More on [Dagger-Hashimoto](/developers/docs/consensus-mechanisms/pow/mining-algorithms/dagger-hashimoto).
+More on [Dagger-Hashimoto](/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/dagger-hashimoto).
## Ethash {#ethash}
Ethash was the mining algorithm that was actually used on the real Ethereum Mainnet under the now deprecated proof-of-work architecture. Ethash was effectively a new name given to a specific version of Dagger-Hashimoto after the algorithm got significantly updated, whilst still inheriting the fundamental principles of its predecessor. Ethereum Mainnet only ever used Ethash - Dagger Hashimoto was an R&D version of the mining algorithm that was superseded before mining started on Ethereum mainnet.
-[More on Ethash](/developers/docs/consensus-mechanisms/pow/mining-algorithms/ethash).
+[More on Ethash](/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/ethash).
## Further reading {#further-reading}
diff --git a/public/content/developers/docs/data-and-analytics/block-explorers/index.md b/public/content/developers/docs/data-and-analytics/block-explorers/index.md
index 494aba59cc6..8c10e57effe 100644
--- a/public/content/developers/docs/data-and-analytics/block-explorers/index.md
+++ b/public/content/developers/docs/data-and-analytics/block-explorers/index.md
@@ -16,15 +16,16 @@ You should understand the basic concepts of Ethereum so you can make sense of th
- [Etherscan](https://etherscan.io/) -_Also available in Chinese, Korean, Russian, and Japanese_
- [Beaconcha.in](https://beaconcha.in/)
- [Blockchair](https://blockchair.com/ethereum) -_Also available in Spanish, French, Italian, Dutch, Portuguese, Russian, Chinese, and Farsi_
-- [Blockscout](https://blockscout.com/)
+- [Blockscout](https://eth.blockscout.com/)
+- [Chainlens](https://www.chainlens.com/)
+- [DexGuru Block Explorer](https://ethereum.dex.guru/)
- [Etherchain](https://www.etherchain.org/)
+- [Ethernow](https://www.ethernow.xyz/)
- [Ethplorer](https://ethplorer.io/) -_Also available in Chinese, Spanish, French, Turkish, Russian, Korean and Vietnamese_
+- [EthVM](https://www.ethvm.com/)
- [OKLink](https://www.oklink.com/eth)
- [Otterscan](https://otterscan.io/)
- [Rantom](https://rantom.app/)
-- [Sirato](https://www.web3labs.com/sirato)
-- [EthVM](https://www.ethvm.com/)
-- [DexGuru Block Explorer](https://ethereum.dex.guru/)
## Data {#data}
@@ -237,6 +238,7 @@ The consensus layer top-level data includes the following:
- [Etherchain](https://www.etherchain.org/) - a block explorer for the Ethereum Mainnet
- [Ethplorer](https://ethplorer.io/) - a block explorer with a focus on tokens for the Ethereum Mainnet and the Kovan testnet
- [Rantom](https://rantom.app/) - A user-friendly open-source DeFi & NFT transaction viewer for detailed insights
+- [Ethernow](https://www.ethernow.xyz/) - a real-time transaction explorer that enables you to see the Ethereum Mainnet pre-chain layer
## Further reading {#further-reading}
diff --git a/public/content/developers/docs/evm/evm.png b/public/content/developers/docs/evm/evm.png
index dcdb3b56e67..9e88881e6b0 100644
Binary files a/public/content/developers/docs/evm/evm.png and b/public/content/developers/docs/evm/evm.png differ
diff --git a/public/content/developers/docs/evm/opcodes/index.md b/public/content/developers/docs/evm/opcodes/index.md
index d3e51863ad7..37c9ed326a3 100644
--- a/public/content/developers/docs/evm/opcodes/index.md
+++ b/public/content/developers/docs/evm/opcodes/index.md
@@ -18,7 +18,7 @@ For operations with dynamic gas costs, see [gas.md](https://github.com/wolflo/ev
💡 Quick tip: To view entire lines, use `[shift] + scroll` to scroll horizontally on desktop.
| Stack | Name | Gas | Initial Stack | Resulting Stack | Mem / Storage | Notes |
-| :---: | :------------- | :---------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------- | :------------------------------ | :---------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------- |
+| :---: | :------------- | :---------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------- | :------------------------------ | :---------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------- |
| 00 | STOP | 0 | | | | halt execution |
| 01 | ADD | 3 | `a, b` | `a + b` | | (u)int256 addition modulo 2\*\*256 |
| 02 | MUL | 5 | `a, b` | `a * b` | | (u)int256 multiplication modulo 2\*\*256 |
@@ -58,7 +58,7 @@ For operations with dynamic gas costs, see [gas.md](https://github.com/wolflo/ev
| 36 | CALLDATASIZE | 2 | `.` | `len(msg.data)` | | length of msg data, in bytes |
| 37 | CALLDATACOPY | [A3](https://github.com/wolflo/evm-opcodes/blob/main/gas.md#a3-copy-operations) | `dstOst, ost, len` | `.` | mem[dstOst:dstOst+len-1] := msg.data[ost:ost+len-1] | copy msg data |
| 38 | CODESIZE | 2 | `.` | `len(this.code)` | | length of executing contract's code, in bytes |
-| 39 | CODECOPY | [A3](https://github.com/wolflo/evm-opcodes/blob/main/gas.md#a3-copy-operations) | `dstOst, ost, len` | `.` | | mem[dstOst:dstOst+len-1] := this.code[ost:ost+len-1] | copy executing contract's bytecode |
+| 39 | CODECOPY | [A3](https://github.com/wolflo/evm-opcodes/blob/main/gas.md#a3-copy-operations) | `dstOst, ost, len` | `.` | | mem[dstOst:dstOst+len-1] := this.code[ost:ost+len-1] | copy executing contract's bytecode |
| 3A | GASPRICE | 2 | `.` | `tx.gasprice` | | gas price of tx, in wei per unit gas [\*\*](https://eips.ethereum.org/EIPS/eip-1559#gasprice) |
| 3B | EXTCODESIZE | [A5](https://github.com/wolflo/evm-opcodes/blob/main/gas.md#a5-balance-extcodesize-extcodehash) | `addr` | `len(addr.code)` | | size of code at addr, in bytes |
| 3C | EXTCODECOPY | [A4](https://github.com/wolflo/evm-opcodes/blob/main/gas.md#a4-extcodecopy) | `addr, dstOst, ost, len` | `.` | mem[dstOst:dstOst+len-1] := addr.code[ost:ost+len-1] | copy code from `addr` |
@@ -74,7 +74,9 @@ For operations with dynamic gas costs, see [gas.md](https://github.com/wolflo/ev
| 46 | CHAINID | 2 | `.` | `chain_id` | | push current [chain id](https://eips.ethereum.org/EIPS/eip-155) onto stack |
| 47 | SELFBALANCE | 5 | `.` | `address(this).balance` | | balance of executing contract, in wei |
| 48 | BASEFEE | 2 | `.` | `block.basefee` | | base fee of current block |
-| 49-4F | _invalid_ |
+| 49 | BLOBHASH | 3 | `idx` | `tx.blob_versioned_hashes[idx]` | | [EIP-4844](https://eips.ethereum.org/EIPS/eip-4844) |
+| 4A | BLOBBASEFEE | 2 | `.` | `block.blobbasefee` | | blob base fee of current block ([EIP-7516](https://eips.ethereum.org/EIPS/eip-7516)) |
+| 4B-4F | _invalid_ |
| 50 | POP | 2 | `_anon` | `.` | | remove item from top of stack and discard it |
| 51 | MLOAD | 3[\*](https://github.com/wolflo/evm-opcodes/blob/main/gas.md#a0-1-memory-expansion) | `ost` | `mem[ost:ost+32]` | | read word from memory at offset `ost` |
| 52 | MSTORE | 3[\*](https://github.com/wolflo/evm-opcodes/blob/main/gas.md#a0-1-memory-expansion) | `ost, val` | `.` | mem[ost:ost+32] := val | write a word to memory |
@@ -87,7 +89,9 @@ For operations with dynamic gas costs, see [gas.md](https://github.com/wolflo/ev
| 59 | MSIZE | 2 | `.` | `len(mem)` | | size of memory in current execution context, in bytes |
| 5A | GAS | 2 | `.` | `gasRemaining` | |
| 5B | JUMPDEST | 1 | | | mark valid jump destination | a valid jump destination for example a jump destination not inside the push data |
-| 5C-5E | _invalid_ |
+| 5C | TLOAD | 100 | `key` | `tstorage[key]` | | read word from transient storage ([EIP-1153](https://eips.ethereum.org/EIPS/eip-1153)) |
+| 5D | TSTORE | 100 | `key, val` | `.` | tstorage[key] := val | write word to transient storage ([EIP-1153](https://eips.ethereum.org/EIPS/eip-1153)) |
+| 5E | MCOPY | 3+3\*words+[A0](https://github.com/wolflo/evm-opcodes/blob/main/gas.md#a0-1-memory-expansion) | `dstOst, ost, len` | `.` | mem[dstOst] := mem[ost:ost+len] | copy memory from one area to another ([EIP-5656](https://eips.ethereum.org/EIPS/eip-5656)) |
| 5F | PUSH0 | 2 | `.` | `uint8` | | push the constant value 0 onto stack |
| 60 | PUSH1 | 3 | `.` | `uint8` | | push 1-byte value onto stack |
| 61 | PUSH2 | 3 | `.` | `uint16` | | push 2-byte value onto stack |
@@ -170,4 +174,4 @@ For operations with dynamic gas costs, see [gas.md](https://github.com/wolflo/ev
| FB-FC | _invalid_ |
| FD | REVERT | 0[\*](https://github.com/wolflo/evm-opcodes/blob/main/gas.md#a0-1-memory-expansion) | `ost, len` | `.` | | revert(mem[ost:ost+len-1]) |
| FE | INVALID | [AF](https://github.com/wolflo/evm-opcodes/blob/main/gas.md#af-invalid) | | | designated invalid opcode - [EIP-141](https://eips.ethereum.org/EIPS/eip-141) |
-| FF | SELFDESTRUCT | [AB](https://github.com/wolflo/evm-opcodes/blob/main/gas.md#ab-selfdestruct) | `addr` | `.` | | | destroy contract and sends all funds to `addr` |
+| FF | SELFDESTRUCT | [AB](https://github.com/wolflo/evm-opcodes/blob/main/gas.md#ab-selfdestruct) | `addr` | `.` | | sends all ETH to `addr`; if executed in the same transaction as a contract was created it destroys the contract |
diff --git a/public/content/developers/docs/frameworks/index.md b/public/content/developers/docs/frameworks/index.md
index bd83e0e135b..6da91038516 100644
--- a/public/content/developers/docs/frameworks/index.md
+++ b/public/content/developers/docs/frameworks/index.md
@@ -76,7 +76,7 @@ Before diving into frameworks, we recommend you first read through our introduct
- [alchemy.com](https://www.alchemy.com/)
- [GitHub](https://github.com/alchemyplatform)
-- [Discord](https://discord.com/invite/A39JVCM)
+- [Discord](https://discord.com/invite/alchemyplatform)
**NodeReal -** **_Ethereum Development Platform._**
diff --git a/public/content/developers/docs/gas/gas.png b/public/content/developers/docs/gas/gas.png
index 50d720aac69..5f5849b98dd 100644
Binary files a/public/content/developers/docs/gas/gas.png and b/public/content/developers/docs/gas/gas.png differ
diff --git a/public/content/developers/docs/gas/index.md b/public/content/developers/docs/gas/index.md
index 0d0db6ae680..789f8a77791 100644
--- a/public/content/developers/docs/gas/index.md
+++ b/public/content/developers/docs/gas/index.md
@@ -138,4 +138,4 @@ If you want to monitor gas prices, so you can send your ETH for less, you can us
- [Proof of Stake versus Proof of Work](https://blockgeeks.com/guides/proof-of-work-vs-proof-of-stake/)
- [Gas Optimization Strategies for Developers](https://www.alchemy.com/overviews/solidity-gas-optimization)
- [EIP-1559 docs](https://eips.ethereum.org/EIPS/eip-1559).
-- [Time Beiko's EIP-1559 Resources](https://hackmd.io/@timbeiko/1559-resources).
+- [Tim Beiko's EIP-1559 Resources](https://hackmd.io/@timbeiko/1559-resources).
diff --git a/public/content/developers/docs/networking-layer/cons_client_net_layer.png b/public/content/developers/docs/networking-layer/cons_client_net_layer.png
index ca461b31823..a1266daefa0 100644
Binary files a/public/content/developers/docs/networking-layer/cons_client_net_layer.png and b/public/content/developers/docs/networking-layer/cons_client_net_layer.png differ
diff --git a/public/content/developers/docs/networking-layer/exe_client_net_layer.png b/public/content/developers/docs/networking-layer/exe_client_net_layer.png
index 0f69fdda2bd..a638e8b9b93 100644
Binary files a/public/content/developers/docs/networking-layer/exe_client_net_layer.png and b/public/content/developers/docs/networking-layer/exe_client_net_layer.png differ
diff --git a/public/content/developers/docs/networks/index.md b/public/content/developers/docs/networks/index.md
index f6321462b54..1aaaa00eab7 100644
--- a/public/content/developers/docs/networks/index.md
+++ b/public/content/developers/docs/networks/index.md
@@ -61,7 +61,7 @@ The Sepolia network uses a permissioned validator set. It's fairly new, meaning
- [Alchemy Sepolia faucet](https://sepoliafaucet.com/)
- [Infura Sepolia faucet](https://www.infura.io/faucet)
- [Chainstack Sepolia faucet](https://faucet.chainstack.com/sepolia-faucet)
-- [Testnet Faucet | Sepolia](https://testnet-faucet.com/sepolia/)
+- [Blockscout](https://eth-sepolia.blockscout.com/)
#### Goerli _(long-term support)_ {#goerli}
@@ -89,6 +89,7 @@ Goerli is a testnet for testing validating and staking. The Goerli network is op
- [All That Node Goerli Faucet](https://www.allthatnode.com/faucet/ethereum.dsrv)
- [Coinbase Wallet Faucet | Goerli](https://coinbase.com/faucets/ethereum-goerli-faucet)
- [Chainstack Goerli faucet](https://faucet.chainstack.com/goerli-faucet)
+- [Blockscout](https://eth-goerli.blockscout.com/)
To launch a Validator on Goerli testnet, use ethstaker's ["cheap goerli validator" launchpad](https://goerli.launchpad.ethstaker.cc/en/).
diff --git a/public/content/developers/docs/nodes-and-clients/eth1eth2client.png b/public/content/developers/docs/nodes-and-clients/eth1eth2client.png
index c84b1edcae0..8c8dbc3bf40 100644
Binary files a/public/content/developers/docs/nodes-and-clients/eth1eth2client.png and b/public/content/developers/docs/nodes-and-clients/eth1eth2client.png differ
diff --git a/public/content/developers/docs/nodes-and-clients/node-architecture/node-architecture-text-background.png b/public/content/developers/docs/nodes-and-clients/node-architecture/node-architecture-text-background.png
index 0f5979cc9a4..1cca4fb43f5 100644
Binary files a/public/content/developers/docs/nodes-and-clients/node-architecture/node-architecture-text-background.png and b/public/content/developers/docs/nodes-and-clients/node-architecture/node-architecture-text-background.png differ
diff --git a/public/content/developers/docs/nodes-and-clients/node-architecture/node_architecture.png b/public/content/developers/docs/nodes-and-clients/node-architecture/node_architecture.png
index 5b0bd1baadb..1cca4fb43f5 100644
Binary files a/public/content/developers/docs/nodes-and-clients/node-architecture/node_architecture.png and b/public/content/developers/docs/nodes-and-clients/node-architecture/node_architecture.png differ
diff --git a/public/content/developers/docs/nodes-and-clients/nodes.png b/public/content/developers/docs/nodes-and-clients/nodes.png
index 2b86959f77a..efc2c896b55 100644
Binary files a/public/content/developers/docs/nodes-and-clients/nodes.png and b/public/content/developers/docs/nodes-and-clients/nodes.png differ
diff --git a/public/content/developers/docs/nodes-and-clients/run-a-node/diagram.png b/public/content/developers/docs/nodes-and-clients/run-a-node/diagram.png
index a42a89b3af2..4bacf3ce0b2 100644
Binary files a/public/content/developers/docs/nodes-and-clients/run-a-node/diagram.png and b/public/content/developers/docs/nodes-and-clients/run-a-node/diagram.png differ
diff --git a/public/content/developers/docs/nodes-and-clients/run-a-node/index.md b/public/content/developers/docs/nodes-and-clients/run-a-node/index.md
index 56c6bc8ffcc..8c75012d1cd 100644
--- a/public/content/developers/docs/nodes-and-clients/run-a-node/index.md
+++ b/public/content/developers/docs/nodes-and-clients/run-a-node/index.md
@@ -127,7 +127,7 @@ Multiple user-friendly projects aim to improve the experience of setting up a cl
Below are a few projects which can help you install and control clients just with a few clicks:
-- [DappNode](https://docs.dappnode.io/user/quick-start/first-steps/) - DappNode doesn't come only with a machine from a vendor. The software, the actual node launcher and control center with many features can be used on arbitrary hardware.
+- [DappNode](https://docs.dappnode.io/docs/user/getting-started/choose-your-path) - DappNode doesn't come only with a machine from a vendor. The software, the actual node launcher and control center with many features can be used on arbitrary hardware.
- [eth-docker](https://eth-docker.net/) - Automated setup using Docker focused on easy and secure staking, requires basic terminal and Docker knowledge, recommended for a bit more advanced users.
- [Stereum](https://stereum.net/ethereum-node-setup/) - Launcher for installing clients on a remote server via SSH connection with a GUI setup guide, control center, and many other features.
- [NiceNode](https://www.nicenode.xyz/) - Launcher with a straightforward user experience to run a node on your computer. Just choose clients and start them with a few clicks. Still in development.
diff --git a/public/content/developers/docs/programming-languages/python/index.md b/public/content/developers/docs/programming-languages/python/index.md
index 4b33cd1f63f..dc1ef837a6c 100644
--- a/public/content/developers/docs/programming-languages/python/index.md
+++ b/public/content/developers/docs/programming-languages/python/index.md
@@ -82,7 +82,7 @@ The following Ethereum-based projects use tools mentioned on this page. The rela
## Python Community discussion {#python-community-contributors}
- [Ethereum Python Community Discord](https://discord.gg/9zk7snTfWe) for Web3.py and other Python framework discussion
-- [Vyper Discord](<[https://discord.gg/9zk7snTfWe](https://discord.gg/SdvKC79cJk)>) for Vyper smart contract programming discussion
+- [Vyper Discord](https://discord.gg/SdvKC79cJk) for Vyper smart contract programming discussion
## Other aggregated lists {#other-aggregated-lists}
diff --git a/public/content/developers/docs/scaling/validium/index.md b/public/content/developers/docs/scaling/validium/index.md
index 5d48b9671f1..ff52f44cecd 100644
--- a/public/content/developers/docs/scaling/validium/index.md
+++ b/public/content/developers/docs/scaling/validium/index.md
@@ -153,7 +153,8 @@ Multiple projects provide implementations of Validium and volitions that you can
**Matter Labs zkPorter**- _zkPorter is a Layer 2 scaling protocol tackling data availability with a hybrid approach that combines the ideas of zkRollup and sharding. It can support arbitrarily many shards, each with its own data availability policy._
-- [Documentation](https://docs.zksync.io/zkevm/#what-is-zkporter)
+- [Blog](https://blog.matter-labs.io/zkporter-a-breakthrough-in-l2-scaling-ed5e48842fbf)
+- [Documentation](https://docs.zksync.io/zk-stack/concepts/hyperchains-hyperscaling.html#logical-state-partitions-in-zk-porters)
- [Website](https://zksync.io/)
## Further reading {#further-reading}
diff --git a/public/content/developers/docs/scaling/zk-rollups/index.md b/public/content/developers/docs/scaling/zk-rollups/index.md
index 8a2405d25dc..3d747642949 100644
--- a/public/content/developers/docs/scaling/zk-rollups/index.md
+++ b/public/content/developers/docs/scaling/zk-rollups/index.md
@@ -232,7 +232,7 @@ Multiple implementations of ZK-rollups exist that you can integrate into your da
Projects working on zkEVMs include:
-- **[Applied ZKP](https://github.com/privacy-scaling-explorations/zkevm-specs)** - _Applied ZKP is a project funded by the Ethereum Foundation to develop an EVM-compatible ZK-rollup and a mechanism for generating validity proofs for Ethereum blocks._
+- **[zkEVM](https://github.com/privacy-scaling-explorations/zkevm-specs)** - _zkEVM is a project funded by the Ethereum Foundation to develop an EVM-compatible ZK-rollup and a mechanism for generating validity proofs for Ethereum blocks._
- **[Polygon zkEVM](https://polygon.technology/solutions/polygon-zkevm)** - _is a decentralized ZK Rollup on the Ethereum mainnet working on a zero-knowledge Ethereum Virtual Machine (zkEVM) that executes Ethereum transactions in a transparent way, including smart contracts with zero-knowledge-proof validations._
@@ -240,7 +240,7 @@ Projects working on zkEVMs include:
- **[Taiko](https://taiko.xyz)** - _Taiko is a decentralized, Ethereum-equivalent ZK-rollup (a [Type 1 ZK-EVM](https://vitalik.eth.limo/general/2022/08/04/zkevm.html))._
-- **[ZKSync](https://docs.zksync.io/zkevm/)** - _ZkSync Era is an EVM-compatible ZK Rollup built by Matter Labs, powered by its own zkEVM._
+- **[ZKSync](https://docs.zksync.io/)** - _ZkSync Era is an EVM-compatible ZK Rollup built by Matter Labs, powered by its own zkEVM._
- **[Starknet](https://starkware.co/starknet/)** - _StarkNet is an EVM-compatible layer 2 scaling solution built by StarkWare._
diff --git a/public/content/developers/docs/smart-contracts/compiling/index.md b/public/content/developers/docs/smart-contracts/compiling/index.md
index 3a6b58d6e2c..98b88b72ab2 100644
--- a/public/content/developers/docs/smart-contracts/compiling/index.md
+++ b/public/content/developers/docs/smart-contracts/compiling/index.md
@@ -33,6 +33,10 @@ contract Greeter {
PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x41 JUMPI PUSH1 0x0 CALLDATALOAD PUSH29 0x100000000000000000000000000000000000000000000000000000000 SWAP1 DIV PUSH4 0xFFFFFFFF AND DUP1 PUSH4 0xCFAE3217 EQ PUSH2 0x46 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x52 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x5B PUSH2 0xD6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 DUP1 PUSH1 0x20 ADD DUP3 DUP2 SUB DUP3 MSTORE DUP4 DUP2 DUP2 MLOAD DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 DUP1 DUP4 DUP4 PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x9B JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x80 JUMP JUMPDEST POP POP POP POP SWAP1 POP SWAP1 DUP2 ADD SWAP1 PUSH1 0x1F AND DUP1 ISZERO PUSH2 0xC8 JUMPI DUP1 DUP3 SUB DUP1 MLOAD PUSH1 0x1 DUP4 PUSH1 0x20 SUB PUSH2 0x100 EXP SUB NOT AND DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP JUMPDEST POP SWAP3 POP POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x60 PUSH1 0x40 DUP1 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x5 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x48656C6C6F000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP SWAP1 POP SWAP1 JUMP STOP LOG1 PUSH6 0x627A7A723058 KECCAK256 SLT 0xec 0xe 0xf5 0xf8 SLT 0xc7 0x2d STATICCALL ADDRESS SHR 0xdb COINBASE 0xb1 BALANCE 0xe8 0xf8 DUP14 0xda 0xad DUP13 LOG1 0x4c 0xb4 0x26 0xc2 DELEGATECALL PUSH7 0x8994D3E002900
```
+These are called **opcodes**. EVM opcodes are the low-level instructions that the Ethereum Virtual Machine (EVM) can execute. Each opcode represents a specific operation, such as arithmetic operations, logical operations, data manipulation, control flow, etc.
+
+[More on opcodes](/developers/docs/evm/opcodes/)
+
## Web applications {#web-applications}
The compiler will also produce the **Application Binary Interface (ABI)** which you need in order for your application to understand the contract and call the contract's functions.
diff --git a/public/content/developers/docs/smart-contracts/composability/index.md b/public/content/developers/docs/smart-contracts/composability/index.md
index f71ae82f44d..9c5165844f8 100644
--- a/public/content/developers/docs/smart-contracts/composability/index.md
+++ b/public/content/developers/docs/smart-contracts/composability/index.md
@@ -65,7 +65,6 @@ Instead of building a custom authentication system or relying on centralized pro
## Related tutorials {#related-tutorials}
-- [Contract Composability: The Building Blocks of Ethereum Smart Contract Development](https://www.decentlabs.io/blog/contract-composability-the-building-blocks-of-ethereum-smart-contract-development)
- [Kickstart your dapp frontend development with create-eth-app](/developers/tutorials/kickstart-your-dapp-frontend-development-with-create-eth-app/) _– An overview of how to use create-eth-app to create apps with popular smart contracts out the box._
## Further reading {#further-reading}
diff --git a/public/content/developers/docs/smart-contracts/testing/index.md b/public/content/developers/docs/smart-contracts/testing/index.md
index 7a3156bc37d..e68193f004d 100644
--- a/public/content/developers/docs/smart-contracts/testing/index.md
+++ b/public/content/developers/docs/smart-contracts/testing/index.md
@@ -238,7 +238,7 @@ Still, you can further increase the possibility of catching contract vulnerabili
Audits are performed by auditors experienced at finding cases of security flaws and poor development practices in smart contracts. An audit will usually include testing (and possibly formal verification) as well as a manual review of the entire codebase.
-Conversely, a bug bounty program usually involves involves offering a financial reward to an individual (commonly described as [whitehat hackers]()) that discovers a vulnerability in a smart contract and discloses it to developers. Bug bounties are similar to audits since it involves asking others to help find defects in smart contracts.
+Conversely, a bug bounty program usually involves offering a financial reward to an individual (commonly described as [whitehat hackers]()) that discovers a vulnerability in a smart contract and discloses it to developers. Bug bounties are similar to audits since it involves asking others to help find defects in smart contracts.
The major difference is that bug bounty programs are open to the wider developer/hacker community and attract a broad class of ethical hackers and independent security professionals with unique skills and experience. This may be an advantage over smart contract audits that mainly rely on teams who may possess limited or narrow expertise.
@@ -270,6 +270,8 @@ The major difference is that bug bounty programs are open to the wider developer
- **[Ethlint](https://ethlint.readthedocs.io/en/latest/)** - _Linter for enforcing style and security best practices for the Solidity smart contract programming language._
+- **[Cyfrin Aderyn](https://cyfrin.io/tools/aderyn)** - _Rust-based static analyzer specifically designed for Web3 smart contract security and development._
+
#### Dynamic analysis tools {#dynamic-analysis-tools}
- **[Echidna](https://github.com/crytic/echidna/)** - _Fast contract fuzzer for detecting vulnerabilities in smart contracts through property-based testing._
diff --git a/public/content/developers/docs/smart-contracts/verifying/source-code-verification.png b/public/content/developers/docs/smart-contracts/verifying/source-code-verification.png
index ad0d5a61f8e..4701edbe423 100644
Binary files a/public/content/developers/docs/smart-contracts/verifying/source-code-verification.png and b/public/content/developers/docs/smart-contracts/verifying/source-code-verification.png differ
diff --git a/public/content/developers/docs/standards/index.md b/public/content/developers/docs/standards/index.md
index 33cb3349f0a..cb4735cf875 100644
--- a/public/content/developers/docs/standards/index.md
+++ b/public/content/developers/docs/standards/index.md
@@ -18,7 +18,7 @@ Typically standards are introduced as [Ethereum Improvement Proposals](/eips/) (
- [Introduction to Ethereum Governance](/governance/)
- [Ethereum Governance Overview](https://web.archive.org/web/20201107234050/https://blog.bmannconsulting.com/ethereum-governance/) _March 31, 2019 - Boris Mann_
- [Ethereum Protocol Development Governance and Network Upgrade Coordination](https://hudsonjameson.com/2020-03-23-ethereum-protocol-development-governance-and-network-upgrade-coordination/) _March 23, 2020 - Hudson Jameson_
-- [Playlist of all Ethereum Core Dev Meetings](https://www.youtube.com/playlist?list=PLaM7G4Llrb7zfMXCZVEXEABT8OSnd4-7w) _(YouTube Playlist)_
+- [Playlist of all Ethereum Core Dev Meetings](https://www.youtube.com/@EthereumProtocol) _(YouTube Playlist)_
## Types of standards {#types-of-standards}
diff --git a/public/content/developers/docs/transactions/gas-tx.png b/public/content/developers/docs/transactions/gas-tx.png
index 82610479b06..793b5ff967b 100644
Binary files a/public/content/developers/docs/transactions/gas-tx.png and b/public/content/developers/docs/transactions/gas-tx.png differ
diff --git a/public/content/developers/docs/transactions/tx.png b/public/content/developers/docs/transactions/tx.png
index cc0bdab3b6f..e26ea30f5bf 100644
Binary files a/public/content/developers/docs/transactions/tx.png and b/public/content/developers/docs/transactions/tx.png differ
diff --git a/public/content/developers/tutorials/creating-a-wagmi-ui-for-your-contract/index.md b/public/content/developers/tutorials/creating-a-wagmi-ui-for-your-contract/index.md
new file mode 100644
index 00000000000..b297f49402a
--- /dev/null
+++ b/public/content/developers/tutorials/creating-a-wagmi-ui-for-your-contract/index.md
@@ -0,0 +1,582 @@
+---
+title: "Building a user interface for your contract"
+description: Using modern components such as TypeScript, React, Vite, and Wagmi, we will go over a modern, but minimal, user interface and learn how to connect a wallet to the user interface, call a smart contract to read information, send a transaction to a smart contract, and monitor events from a smart contract to identify changes.
+author: Ori Pomerantz
+tags: ["typescript", "react", "vite", "wagmi", "frontend"]
+skill: beginner
+published: 2023-11-01
+lang: en
+sidebarDepth: 3
+---
+
+You found a feature we need in the Ethereum ecosystem. You wrote the smart contracts to implement it, and maybe even some related code that runs offchain. This is great! Unfortunately, without a user interface you aren't going to have any users, and the last time you wrote a web site people used dial-up modems and JavaScript was new.
+
+This article is for you. I assume you know programming, and maybe a bit of JavaScript and HTML, but that your user interface skills are rusty and out of date. Together we will go over a simple modern application so you'll see how it's done these days.
+
+## Why is this important {#why-important}
+
+In theory, you could just have people use [Etherscan](https://holesky.etherscan.io/address/0x432d810484add7454ddb3b5311f0ac2e95cecea8#writeContract) or [Blockscout](https://eth-holesky.blockscout.com/address/0x432d810484AdD7454ddb3b5311f0Ac2E95CeceA8?tab=write_contract) to interact with your contracts. That will be great for the experienced Ethereans. But we are trying to serve [another billion people](https://blog.ethereum.org/2021/05/07/ethereum-for-the-next-billion). This won't happen without a great user experience, and a friendly user interface is a big part of that.
+
+## Greeter application {#greeter-app}
+
+There is a lot of theory behind for a modern UI works, and [a lot of good sites](https://react.dev/learn/thinking-in-react) [that explain it](https://wagmi.sh/core/getting-started). Instead of repeating the fine work done by those sites, I'm going to assume you prefer to learn by doing and start with an application you can play with. You still need the theory to get things done, and we'll get to it - we'll just go source file by source file, and discuss things as we get to them.
+
+### Installation {#installation}
+
+1. If necessary, add [the Holesky blockchain](https://chainlist.org/?search=holesky&testnets=true) to your wallet and [get test ETH](https://www.holeskyfaucet.io/).
+
+1. Clone the github repository.
+
+ ```sh
+ git clone https://github.com/qbzzt/20230801-modern-ui.git
+ ```
+
+1. Install the necessary packages.
+
+ ```sh
+ cd 20230801-modern-ui
+ pnpm install
+ ```
+
+1. Start the application.
+
+ ```sh
+ pnpm dev
+ ```
+
+1. Browse to the URL shown by the application. In most cases, that is [http://localhost:5173/](http://localhost:5173/).
+
+1. You can see the contract source code, a slightly modified version of Hardhat's Greeter, [on a blockchain explorer](https://eth-holesky.blockscout.com/address/0x432d810484AdD7454ddb3b5311f0Ac2E95CeceA8?tab=contract).
+
+### File walk through {#file-walk-through}
+
+#### `index.html` {#index-html}
+
+This file is standard HTML boilerplate except for this line, which imports the script file.
+
+```html
+
+```
+
+#### `src/main.tsx` {#main-tsx}
+
+The file extension tells us that this file is a [React component](https://www.w3schools.com/react/react_components.asp) written in [TypeScript](https://www.typescriptlang.org/), an extension of JavaScript that supports [type checking](https://en.wikipedia.org/wiki/Type_system#Type_checking). TypeScript is compiled into JavaScript, so we can use it for client-side execution.
+
+```tsx
+import '@rainbow-me/rainbowkit/styles.css'
+import { RainbowKitProvider } from '@rainbow-me/rainbowkit'
+import * as React from 'react'
+import * as ReactDOM from 'react-dom/client'
+import { WagmiConfig } from 'wagmi'
+import { chains, config } from './wagmi'
+```
+
+Import the library code we need.
+
+```tsx
+import { App } from './App'
+```
+
+Import the React component that implements the application (see below).
+
+```tsx
+ReactDOM.createRoot(document.getElementById('root')!).render(
+```
+
+Create the root React component. The parameter to `render` is [JSX](https://www.w3schools.com/react/react_jsx.asp), an extension language that uses both HTML and JavaScript/TypeScript. The exclamation point here tells the TypeScript component: "you don't know that `document.getElementById('root')` will be a valid parameter to `ReactDOM.createRoot`, but don't worry - I'm the developer and I'm telling you there will be".
+
+```tsx
+
+```
+
+The application is going inside [a `React.StrictMode` component](https://react.dev/reference/react/StrictMode). This component tells the React library to insert additional debugging checks, which is useful during development.
+
+```tsx
+
+```
+
+The application is also inside [a `WagmiConfig` component](https://wagmi.sh/react/WagmiConfig). [The wagmi (we are going to make it) library](https://wagmi.sh/) connects the React UI definitions with [the viem library](https://viem.sh/) for writing an Ethereum decentralized application.
+
+```tsx
+
+```
+
+And finally, [a `RainbowKitProvider` component](https://www.rainbowkit.com/). This component handles logging on and the communication between the wallet and the application.
+
+```tsx
+
+```
+
+Now we can have the component for the application, which actually implements the UI. The `/>` at the end of the component tells React that this component doesn't have any definitions inside it, as per the XML standard.
+
+```tsx
+
+
+ ,
+)
+```
+
+Of course, we have to close off the other components.
+
+#### `src/App.tsx` {#app-tsx}
+
+```tsx
+import { ConnectButton } from '@rainbow-me/rainbowkit'
+import { useAccount } from 'wagmi'
+import { Greeter } from './components/Greeter'
+
+export function App() {
+```
+
+This is the standard way to create a React component - define a function that is called every time it needs to be rendered. This function typically has some TypeScript or JavaScript code on top, followed by a `return` statement that returns the JSX code.
+
+```tsx
+ const { isConnected } = useAccount()
+```
+
+Here we use [`useAccount`](https://wagmi.sh/react/hooks/useAccount) to check if we are connected to a blockchain through a wallet or not.
+
+By convention, in React functions called `use...` are [hooks](https://www.w3schools.com/react/react_hooks.asp) that return some kind of data. When you use such hooks, not only does your component get the data, but when that data changes the component is re-rendered with the updated information.
+
+```tsx
+ return (
+ <>
+```
+
+The JSX of a React component _has_ to return one component. When we have multiple components and we don't have anything that wraps up "naturally" we use an empty component (`<> ... >`) to make them into a single component.
+
+```tsx
+
Greeter
+
+```
+
+We get [the `ConnectButton` component](https://www.rainbowkit.com/docs/connect-button) from RainbowKit. When we are not connected, it gives us a `Connect Wallet` button that opens a modal that explains wallets and lets you choose which one you use. When we are connected, it displays the blockchain we use, our account address, and our ETH balance. We can use these displays to switch network or to disconnect.
+
+```tsx
+ {isConnected && (
+```
+
+When we need to insert actual JavaScript (or TypeScript that will be compiled to JavaScript) into a JSX, we use brackets (`{}`).
+
+The syntax `a && b` is short for [`a ? b : a`](https://www.w3schools.com/react/react_es6_ternary.asp). That is, if `a` is true it evaluates to `b` and otherwise it evaluates to `a` (which can be `false`, `0`, etc). This is an easy way to tell React that a component should only be displayed if a certain condition is fulfilled.
+
+In this case, we only want to show the user `Greeter` if the user is connected to a blockchain.
+
+```tsx
+
+ )}
+ >
+ )
+}
+```
+
+#### `src/components/Greeter.tsx` {#greeter-tsx}
+
+This file contains most of the UI functionality. It includes definitions that would normally be in multiple files, but as this is a tutorial the program is optimized for being easy to understand the first time, rather than performance or ease of maintenance.
+
+```tsx
+import { useState, ChangeEventHandler } from 'react'
+import { useNetwork,
+ useContractRead,
+ usePrepareContractWrite,
+ useContractWrite,
+ useContractEvent
+ } from 'wagmi'
+```
+
+We use these library functions. Again, they are explained below where they are used.
+
+```tsx
+import { AddressType } from 'abitype'
+```
+
+[The `abitype` library](https://abitype.dev/) provides us with TypeScript definitions for various Ethereum data types, such as [`AddressType`](https://abitype.dev/config#addresstype).
+
+```tsx
+let greeterABI = [
+ .
+ .
+ .
+] as const // greeterABI
+```
+
+The ABI for the `Greeter` contract.
+If you are developing the contracts and UI at the same time you'd normally put them in the same repository and use the ABI generated by the Solidity compiler as a file in your application. However, this is not necessary here because the contract is already developed and not going to change.
+
+```tsx
+type AddressPerBlockchainType = {
+ [key: number]: AddressType
+}
+```
+
+TypeScript is strongly typed. We use this definition to specify the address in which the `Greeter` contract is deployed on different chains. The key is a number (the chainId), and the value is an `AddressType` (an address).
+
+```tsx
+const contractAddrs: AddressPerBlockchainType = {
+ // Holesky
+ 17000: '0x432d810484AdD7454ddb3b5311f0Ac2E95CeceA8',
+
+ // Sepolia
+ 11155111: '0x7143d5c190F048C8d19fe325b748b081903E3BF0'
+}
+```
+
+The address of the contract on the two supported networks: [Holesky](https://eth-holesky.blockscout.com/address/0x432d810484AdD7454ddb3b5311f0Ac2E95CeceA8?tab=contact_code) and [Sepolia](https://eth-sepolia.blockscout.com/address/0x7143d5c190F048C8d19fe325b748b081903E3BF0?tab=contact_code).
+
+Note: There is actually a third definition, for Redstone Holesky, it will be explained below.
+
+```tsx
+type ShowObjectAttrsType = {
+ name: string,
+ object: any
+}
+```
+
+This type is used as a parameter to the `ShowObject` component (explained later). It includes the name of the object and its value, which are displayed for debugging purposes.
+
+```tsx
+type ShowGreetingAttrsType = {
+ greeting: string | undefined
+}
+```
+
+At any moment in time we may either know what the greeting is (because we read it from the blockchain) or not know (because we haven't received it yet). So it is useful to have a type that can be either a string or nothing.
+
+##### `Greeter` component {#greeter-component}
+
+```tsx
+const Greeter = () => {
+```
+
+Finally, we get the define the component.
+
+```tsx
+ const { chain } = useNetwork()
+```
+
+Information about the chain we are using, courtesy of [wagmi](https://wagmi.sh/react/hooks/useNetwork).
+Because this is a hook (`use...`), every time this information changes the component gets redrawn.
+
+```tsx
+ const greeterAddr = chain && contractAddrs[chain.id]
+```
+
+The address of the Greeter contract, which varies by chain (and which is `undefined` if we don't have chain information or we are on a chain without that contract).
+
+```tsx
+ const readResults = useContractRead({
+ address: greeterAddr,
+ abi: greeterABI,
+ functionName: "greet" , // No arguments
+ watch: true
+ })
+```
+
+[The `useContractRead` hook](https://wagmi.sh/react/hooks/useContractRead) reads information from a contract. You can see exactly what information it returns expand `readResults` in the UI. In this case we want it to keep looking so we'll be informed when the greeting changes.
+
+**Note:** We could listen to [`setGreeting` events](https://eth-holesky.blockscout.com/address/0x432d810484AdD7454ddb3b5311f0Ac2E95CeceA8?tab=logs) to know when the greeting changes and update that way. However, while it may be more efficient, it will not apply in all cases. When the user switches to a different chain the greeting also changes, but that change is not accompanied by an event. We could have one part of the code listening for events and another to identify chain changes, but that would be more complicated than just setting [the `watch` parameter](https://wagmi.sh/react/hooks/useContractRead#watch-optional).
+
+```tsx
+ const [ newGreeting, setNewGreeting ] = useState("")
+```
+
+React's [`useState` hook](https://www.w3schools.com/react/react_usestate.asp) lets us specify a state variable, whose value persists from one rendering of the component to another. The initial value is the parameter, in this case the empty string.
+
+The `useState` hook returns a list with two values:
+
+1. The current value of the state variable.
+2. A function to modify the state variable when needed. As this is a hook, every time it is called the component is rendered again.
+
+In this case, we are using a state variable for the new greeting the user wants to set.
+
+```tsx
+ const greetingChange : ChangeEventHandler = (evt) =>
+ setNewGreeting(evt.target.value)
+```
+
+This is the event handler for when the new greeting input field changes. The type, [`ChangeEventHandler`](https://react-typescript-cheatsheet.netlify.app/docs/basic/getting-started/forms_and_events/), specifies that this is handler for a value change of an HTML input element. The `` part is used because this is a [generic type](https://www.w3schools.com/typescript/typescript_basic_generics.php).
+
+```tsx
+ const preparedTx = usePrepareContractWrite({
+ address: greeterAddr,
+ abi: greeterABI,
+ functionName: 'setGreeting',
+ args: [ newGreeting ]
+ })
+ const workingTx = useContractWrite(preparedTx.config)
+```
+
+This is the process to submit a blockchain transaction from the client perspective:
+
+1. Send the transaction to a node in the blockchain using [`eth_estimateGas`](https://docs.alchemy.com/reference/eth-estimategas).
+2. Wait for a response from the node.
+3. When the response is received, ask the user to sign the transaction through the wallet. This step _has_ to happen after the node response is received because the user is shown the gas cost of the transaction before signing it.
+4. Wait for the user for approve.
+5. Send the transaction again, this time using [`eth_sendRawTransaction`](https://docs.alchemy.com/reference/eth-sendrawtransaction).
+
+Step 2 is likely to take a perceptible amount of time, during which users would wonder if their command was really received by the user interface and why they aren't being asked to sign the transaction already. That makes for bad user experience (UX).
+
+The solution is to use [prepare hooks](https://wagmi.sh/react/prepare-hooks). Every time that a parameter changes, immediately send the node the `eth_estimateGas` request. Then, when the user actually wants to send the transaction (in this case by pressing **Update greeting**), the gas cost is known and the user can see the wallet page immediately.
+
+```tsx
+ return (
+```
+
+Now we can finally create the actual HTML to return.
+
+```tsx
+ <>
+
Greeter
+ {
+ !readResults.isError && !readResults.isLoading &&
+
+ }
+
+```
+
+Create a `ShowGreeting` component (explained below), but only if the greeting was read successfully from the blockchain.
+
+```tsx
+
+```
+
+This is the input text field where the user can set a new greeting. Every time the user presses a key, we call `greetingChange` which calls `setNewGreeting`. As `setNewGreeting` comes from the `useState` hook, it causes the `Greeter` component to be rendered again. This means that:
+
+- We need to specify `value` to keep the value of the new greeting, because otherwise it would turn back into the default, the empty string.
+- `usePrepareContractWrite` is called every time `newGreeting` changes, which means it is always going to have the latest `newGreeting` in the prepared transaction.
+
+```tsx
+
+```
+
+If there is no `workingTx.write` then we are still waiting for information necessary for sending the greeting update, so the button is disabled. If there is a `workingTx.write` value then that is the function to call to send the transaction.
+
+```tsx
+
+
+
+
+ >
+ )
+}
+```
+
+Finally, to help you see what we're doing, show the three objects we use:
+
+- `readResults`
+- `preparedTx`
+- `workingTx`
+
+##### `ShowGreeting` component {#showgreeting-component}
+
+This component shows
+
+```tsx
+const ShowGreeting = (attrs : ShowGreetingAttrsType) => {
+```
+
+A component function receives a parameter with all the attributes of the component.
+
+```tsx
+ return {attrs.greeting}
+}
+```
+
+##### `ShowObject` component {#showobject-component}
+
+For information purposes, we use the `ShowObject` component to show the important objects (`readResults` for reading the greeting and `preparedTx` and `workingTx` for transactions we create).
+
+```tsx
+const ShowObject = (attrs: ShowObjectAttrsType ) => {
+ const keys = Object.keys(attrs.object)
+ const funs = keys.filter(k => typeof attrs.object[k] == "function")
+ return <>
+
+```
+
+We don't want to clutter the UI with all the information, so to make it possible to view them or close them, we use a [`details`](https://www.w3schools.com/tags/tag_details.asp) tag.
+
+```tsx
+ {attrs.name}
+
+ {JSON.stringify(attrs.object, null, 2)}
+```
+
+Most of the fields are displayed using [`JSON.stringify`](https://www.w3schools.com/js/js_json_stringify.asp).
+
+```tsx
+
+ { funs.length > 0 &&
+ <>
+ Functions:
+
+```
+
+The exception is functions, which aren't part of [the JSON standard](https://www.json.org/json-en.html), so they have to be displayed separately.
+
+```tsx
+ {funs.map((f, i) =>
+```
+
+Within JSX, code inside `{` curly brackets `}` is interpreted as JavaScript. Then, the code inside the `(` regular brackets `)`, is interpreted again as JSX.
+
+```tsx
+ (
{f}
)
+ )}
+```
+
+React requires tags in the [DOM Tree](https://www.w3schools.com/js/js_htmldom.asp) to have distinct identifiers. This means that children of the same tag (in this case, [the unordered list](https://www.w3schools.com/tags/tag_ul.asp)), need different `key` attributes.
+
+```tsx
+
+ >
+ }
+
+ >
+}
+```
+
+End the various HTML tags.
+
+##### The final `export` {#the-final-export}
+
+```tsx
+export { Greeter }
+```
+
+The `Greeter` component is the one we need to export for the application.
+
+#### `src/wagmi.ts` {#wagmi-ts}
+
+Finally, various definitions related to WAGMI are in `src/wagmi.ts`. I am not going to explain everything here, because most of it is boilerplate you are unlikely to need to change.
+
+The code here isn't exactly the same as [on github](https://github.com/qbzzt/20230801-modern-ui/blob/main/src/wagmi.ts) because later in the article we add another chain ([Redstone Holesky](https://redstone.xyz/docs/network-info)).
+
+```ts
+import { getDefaultWallets } from '@rainbow-me/rainbowkit'
+import { configureChains, createConfig } from 'wagmi'
+import { holesky, sepolia } from 'wagmi/chains'
+```
+
+Import the blockchains the application supports. You can see the list of supported chains [in the viem github](https://github.com/wagmi-dev/viem/tree/main/src/chains/definitions).
+
+```ts
+import { publicProvider } from 'wagmi/providers/public'
+
+const walletConnectProjectId = 'c96e690bb92b6311e8e9b2a6a22df575'
+```
+
+To be able to use [WalletConnect](https://walletconnect.com/) you need a project ID for your application. You can get it [on cloud.walletconnect.com](https://cloud.walletconnect.com/sign-in).
+
+```ts
+const { chains, publicClient, webSocketPublicClient } = configureChains(
+ [ holesky, sepolia ],
+ [
+ publicProvider(),
+ ],
+)
+
+const { connectors } = getDefaultWallets({
+ appName: 'My wagmi + RainbowKit App',
+ chains,
+ projectId: walletConnectProjectId,
+})
+
+export const config = createConfig({
+ autoConnect: true,
+ connectors,
+ publicClient,
+ webSocketPublicClient,
+})
+
+export { chains }
+```
+
+### Adding another blockchain {#add-blockchain}
+
+These days there are a lot of [L2 scaling solution](https://ethereum.org/en/layer-2/), and you might want to support some that viem does not support yet. To do it, you modify `src/wagmi.ts`. These instructions explain how to add [Redstone Holesky](https://redstone.xyz/docs/network-info).
+
+1. Import the `defineChain` type from viem.
+
+ ```ts
+ import { defineChain } from 'viem'
+ ```
+
+1. Add the network definition.
+
+ ```ts
+ const redstoneHolesky = defineChain({
+ id: 17_001,
+ name: 'Redstone Holesky',
+ network: 'redstone-holesky',
+ nativeCurrency: {
+ decimals: 18,
+ name: 'Ether',
+ symbol: 'ETH',
+ },
+ rpcUrls: {
+ default: {
+ http: ['https://rpc.holesky.redstone.xyz'],
+ webSocket: ['wss://rpc.holesky.redstone.xyz/ws'],
+ },
+ public: {
+ http: ['https://rpc.holesky.redstone.xyz'],
+ webSocket: ['wss://rpc.holesky.redstone.xyz/ws'],
+ },
+ },
+ blockExplorers: {
+ default: { name: 'Explorer', url: 'https://explorer.holesky.redstone.xyz' },
+ },
+ })
+ ```
+
+1. Add the new chain to the `configureChains` call.
+
+ ```ts
+ const { chains, publicClient, webSocketPublicClient } = configureChains(
+ [ holesky, sepolia, redstoneHolesky ],
+ [ publicProvider(), ],
+ )
+ ```
+
+1. Ensure that the application knows the address for your contracts on the new network. In this case, we modify `src/components/Greeter.tsx`:
+
+ ```ts
+ const contractAddrs : AddressPerBlockchainType = {
+ // Holesky
+ 17000: '0x432d810484AdD7454ddb3b5311f0Ac2E95CeceA8',
+
+ // Redstone Holesky
+ 17001: '0x4919517f82a1B89a32392E1BF72ec827ba9986D3',
+
+ // Sepolia
+ 11155111: '0x7143d5c190F048C8d19fe325b748b081903E3BF0'
+ }
+ ```
+
+# Conclusion {#conclusion}
+
+Of course, you don't really care about providing a user interface for `Greeter`. You want to create a user interface for your own contracts. To create your own application, run these steps:
+
+1. Specify to create a wagmi application.
+
+ ```sh copy
+ pnpm create wagmi
+ ```
+
+1. Name the application.
+
+1. Select **React** framework.
+
+1. Select the **Vite** variant.
+
+1. You can [add Rainbow kit](https://www.rainbowkit.com/docs/installation#manual-setup).
+
+Now go and make your contracts usable for the wide world.
diff --git a/public/content/developers/tutorials/uniswap-v2-annotated-code/index.md b/public/content/developers/tutorials/uniswap-v2-annotated-code/index.md
index f1f3561de0a..da52442866e 100644
--- a/public/content/developers/tutorials/uniswap-v2-annotated-code/index.md
+++ b/public/content/developers/tutorials/uniswap-v2-annotated-code/index.md
@@ -755,7 +755,7 @@ This is the main function of the factory, to create a pair exchange between two
(address token0, address token1) = tokenA < tokenB ? (tokenA, tokenB) : (tokenB, tokenA);
```
-We want the address of the new exchange to be deterministic, so it can be calculated in advance off chain (this can be useful for [layer 2 transactions](/developers/docs/layer-2-scaling/)).
+We want the address of the new exchange to be deterministic, so it can be calculated in advance off chain (this can be useful for [layer 2 transactions](/developers/docs/scaling/)).
To do this we need to have a consistent order of the token addresses, regardless of the order in which we have received them, so we sort them here.
```solidity
diff --git a/public/content/developers/tutorials/waffle-dynamic-mocking-and-testing-calls/index.md b/public/content/developers/tutorials/waffle-dynamic-mocking-and-testing-calls/index.md
index 3a4362a8a3b..d7b3901c96c 100644
--- a/public/content/developers/tutorials/waffle-dynamic-mocking-and-testing-calls/index.md
+++ b/public/content/developers/tutorials/waffle-dynamic-mocking-and-testing-calls/index.md
@@ -290,4 +290,4 @@ Source code for this tutorial can be found [here](https://github.com/EthWorks/Wa
Tutorials you may also be interested in:
-- [Testing smart contracts with Waffle](/developers/tutorials/testing-smart-contract-with-waffle/)
+- [Testing smart contracts with Waffle](/developers/tutorials/waffle-test-simple-smart-contract/)
diff --git a/public/content/developers/tutorials/waffle-test-simple-smart-contract/index.md b/public/content/developers/tutorials/waffle-test-simple-smart-contract/index.md
index 437cef8e80e..0594f138f44 100644
--- a/public/content/developers/tutorials/waffle-test-simple-smart-contract/index.md
+++ b/public/content/developers/tutorials/waffle-test-simple-smart-contract/index.md
@@ -200,4 +200,4 @@ You've made your first big step towards testing smart contracts with Waffle! You
- [Testing ERC20 with Waffle](/developers/tutorials/testing-erc-20-tokens-with-waffle/)
- [Waffle: Dynamic mocking and testing contract calls](/developers/tutorials/waffle-dynamic-mocking-and-testing-calls/#gatsby-focus-wrapper)
-- [Waffle say hello world tutorial with hardhat and ethers](/developers/tutorials/waffle-hello-world-with-buidler-tutorial/)
+- [Waffle say hello world tutorial with hardhat and ethers](/developers/tutorials/waffle-say-hello-world-with-hardhat-and-ethers/)
diff --git a/public/content/enterprise/index.md b/public/content/enterprise/index.md
index fc76a5082cd..852e45b3b55 100644
--- a/public/content/enterprise/index.md
+++ b/public/content/enterprise/index.md
@@ -4,10 +4,10 @@ description: Guides, articles, and tools about enterprise applications on the pu
lang: en
---
-# Ethereum Mainnet for enterprise {#ethereum-for-enterprise}
-
-Blockchain applications help businesses:
+# Ethereum for enterprise {#ethereum-for-enterprise}
+Ethereum can help many kinds of businesses, including large companies:
+
- Increase trust and reduce the cost of coordination between business parties
- Improve business network accountability and operational efficiency
- Build new business models and value creation opportunities
@@ -19,64 +19,69 @@ Enterprise blockchain applications can be built on the public permissionless Eth
There is only one public Ethereum Mainnet. Applications that are built on the Mainnet are able to interoperate, similarly to how applications built on the Internet can connect to each other, leveraging the full potential of decentralized blockchain.
-Many businesses and consortia have deployed private, permissioned blockchains for specific applications based on Ethereum technology.
+Many businesses and consortia have deployed private, permissioned blockchains based on Ethereum technology, for specific applications.
### Key differences {#key-differences}
- Blockchain Security/Immutability - A blockchain’s resistance to tampering is determined by its consensus algorithm. Ethereum Mainnet is secured by the interaction of thousands of independent nodes run by individuals and miners throughout the world. Private chains typically have a small number of nodes which are controlled by one or a few organizations; those nodes can be tightly controlled, but only a few must be compromised in order to rewrite the chain or commit fraudulent transactions.
-- Performance - Because private Enterprise Ethereum chains may use high performance nodes with special hardware requirements and different consensus algorithms such as proof-of-authority, they may achieve higher transaction throughput on the base layer (Layer 1). On Ethereum Mainnet, high throughput can be achieved with the use of [Layer 2 scaling solutions](/developers/docs/scaling/#layer-2-scaling).
-- Cost - The cost to operate a private chain is primarily reflected in labor to set up and manage the chain, and the servers to run it. While there is no cost to connect to Ethereum Mainnet, there is a gas cost for every transaction which must be paid for in ether. Transaction relayers (aka Gas Stations) are being developed in order to eliminate the need for end users and even enterprises to directly use ether in their transactions. Some [analyses](https://github.com/EYBlockchain/fundamental-cost-of-ownership/blob/master/EY%20Total%20Cost%20of%20Ownership%20for%20Blockchain%20Solutions.pdf) have shown that the total cost to operate an application may be lower on Mainnet than running a private chain.
+- Performance - Because private Enterprise Ethereum chains may use high performance nodes with special hardware requirements and different consensus algorithms such as proof-of-authority, they may achieve higher transaction throughput on the base layer (Layer 1). On Ethereum Mainnet, high throughput can be achieved with the use of [Layer 2 scaling solutions](/layer-2).
+- Cost - The cost to operate a private chain is primarily reflected in labor to set up and manage the chain, and the servers to run it. While there is no cost to connect to Ethereum Mainnet, there is a gas cost for every transaction which must be paid for in Ether. Meta-transaction relayers can eliminate the need for end users and even enterprises to directly hold and use ether in their transactions. Some [analyses](https://theblockchaintest.com/uploads/resources/EY%20-%20Total%20cost%20of%20ownership%20for%20blockchain%20solutions%20-%202019%20-%20Apr.pdf) have shown that the total cost to operate an application may be lower on Mainnet than running a private chain.
- Node Permissioning - Only authorized nodes can join private chains. Anybody can set up a node on Ethereum Mainnet.
-- Privacy - Access to data written to private chains can be controlled by restricting access to the network, and on a finer grained basis with access controls and private transactions. All data written to Mainnet Layer 1 is viewable by anyone, so sensitive information should be stored and transmitted off-chain, or else encrypted. Design patterns that facilitate this are emerging (e.g. Baseline, Aztec), as well as Layer 2 solutions that can keep data compartmentalized and off of Layer 1.
+- Privacy - Access to data written to private chains can be controlled by restricting access to the network, and on a finer grained basis with access controls and private transactions. All data written to Mainnet Layer 1 is viewable by anyone, so sensitive information should be stored and transmitted off-chain, or else encrypted. Design patterns that facilitate this are emerging (e.g. Baseline, Nightfall), as well as Layer 2 solutions that can keep data compartmentalized and off of Layer 1.
### Why build on Ethereum Mainnet {#why-build-on-ethereum-mainnet}
-Enterprises have been experimenting with blockchain technology since around 2016, when the Hyperledger, Quorum, and Corda projects were launched. The focus was largely on private permissioned enterprise blockchains, but starting in 2019 there has been a shift in thinking about public vs private blockchains for business applications. A [survey](https://assets.ey.com/content/dam/ey-sites/ey-com/en_gl/topics/blockchain/ey-public-blockchain-opportunity-snapshot.pdf) conducted by Forrester revealed that “Survey respondents ... see this potential, with 75% stating that they’re likely to leverage public blockchains in the future, and nearly one-third saying they’re very likely”. EY’s Paul Brody has [talked](https://www.youtube.com/watch?v=-ycu5vGDdZw&feature=youtu.be&t=3668) about the benefits of building on public blockchain, which (depending on the application) may include stronger security/immutability, transparency, lower total cost of ownership, and the ability to interoperate with all of the other applications that are also on the Mainnet (network effects). Sharing a common frame of reference among businesses avoids the unnecessary creation of numerous isolated silos which cannot communicate and share or synchronize information with each other.
+A key benefit of public blockchains to businesses is monopoly resistance. Using Ethereum Mainnet as a neutral referee to coordinate business transactions avoids putting your trust in another company, over which your competitors may gain control or influence, putting you at a disadvantage. On an open, permissionless, and decentralized platform that anyone can join, use, and contribute to, there is no central authority who may use their power to gain an advantage over you.
-Another development which is shifting the focus toward public blockchains is [Layer 2](/developers/docs/scaling/#layer-2-scaling). Layer 2 is primarily a scalability technology category which makes high throughput applications possible on public chains. But Layer 2 solutions can also [address some of the other challenges that have driven enterprise developers to choose private chains in the past](https://entethalliance.org/how-ethereum-layer-2-scaling-solutions-address-barriers-to-enterprises-building-on-mainnet/).
+Enterprises have been experimenting with blockchain technology since around 2016, when the Hyperledger, Quorum, and Corda projects were launched. Initially the focus was largely on private permissioned enterprise blockchains, but starting in 2019 there was a shift in thinking about public vs private blockchains for business applications. EY’s Paul Brody has [talked](https://www.youtube.com/watch?v=-ycu5vGDdZw&feature=youtu.be&t=3668) about the benefits of building on public (vs. private) blockchains, which (depending on the application) may include stronger security/immutability, transparency, lower total cost of ownership, and the ability to interoperate with all of the other applications that are also on the Mainnet (network effects). Sharing a common frame of reference among businesses avoids the unnecessary creation of numerous isolated silos which cannot communicate and share or synchronize information with each other.
-## Enterprise developer resources {#enterprise-developer-resources}
+Another development which is shifting the focus toward public blockchains is [Layer 2](/layer-2). Layer 2 is primarily a scalability technology category which makes high throughput applications possible on public chains. But Layer 2 solutions can also [address some of the other challenges that have driven enterprise developers to choose private chains in the past](https://entethalliance.org/how-ethereum-layer-2-scaling-solutions-address-barriers-to-enterprises-building-on-mainnet/).
+
+## Resources {#enterprise-resources}
+
+### Further reading {#further-reading}
+
+Non-technical resources for understanding how businesses can benefit from Ethereum
+
+- [Enterprise Ethereum Alliance 2023 Business Readiness Report](https://entethalliance.org/eea-ethereum-business-readiness-report-2023/) - _surveys the potential and capabilities of public Ethereum and the broader Ethereum ecosystem for businesses_
+- [_Ethereum for Business_ by Paul Brody](https://www.uapress.com/product/ethereum-for-business/) - _is a plain-English guide to the use cases that generate returns from asset management to payments to supply chains_
### Organizations {#organizations}
-Some collaborative efforts to make Ethereum enterprise friendly have been made by different organizations:
+Some collaborative efforts to make Ethereum enterprise friendly have been made by different organizations
+
+- [Enterprise Ethereum Alliance](https://entethalliance.org/) - The EEA helps organizations to adopt and use Ethereum technology in their daily business operations. Its goal is accelerating business Ethereum through professional and commercial support, advocacy and research, standards development and ecosystem trust services.
+- [Global Blockchain Business Council](https://www.gbbc.io/) - The GBBC is an industry association for the blockchain technology ecosystem. Through engaging policymakers and regulators, curating events and in-depth discussions, and driving research, GBBC is dedicated to further adoption of blockchain to create more secure, equitable, and functional societies.
-- [Enterprise Ethereum Alliance (EEA)](https://entethalliance.org/)
- The EEA enables organizations to adopt and use Ethereum technology in their daily business operations. It empowers the Ethereum ecosystem to develop new business opportunities, drive industry adoption, and learn and collaborate with one another.
- The EEA’s Mainnet working group is a focal point for representatives from businesses who are interested in building on the public Ethereum Mainnet, as well as members of the Ethereum community who would like to support them.
-- [Ethereum OASIS Open Project](https://github.com/ethereum-oasis/oasis-open-project)
- The Ethereum OASIS Open Project is an OASIS Open Project that exists to provide a neutral forum for diverse stakeholders to create high-quality specifications that facilitate Ethereum’s longevity, interoperability, and ease of integration. The project intends to develop clear, open standards, high-quality documentation, and shared test suites that facilitate new features and enhancements to the Ethereum protocol.
-- [Baseline Project](https://www.baseline-protocol.org/)
- The Baseline Protocol is an open source initiative that combines advances in cryptography, messaging, and blockchain to deliver secure and private business processes at low cost via the public Ethereum Mainnet. The protocol enables confidential and complex collaboration between enterprises without leaving any sensitive data on-chain. The Baseline project is a sub-project of the Ethereum OASIS Open Project, and is coordinated by the Baseline Technical Steering Committee.
+
+## Enterprise developer resources {#enterprise-developer-resources}
### Products and services {#products-and-services}
-- [Alchemy](https://www.alchemy.com/) _provides API services and tools for building and monitoring applications on Ethereum_
-- [Blast](https://blastapi.io/) _an API platform that provides RPC/WSS APIs for Ethereum Archive Mainnet and Testnets._
-- [Blockapps](https://blockapps.net/) _implementation of the Enterprise Ethereum protocol, tooling and APIs that form the STRATO platform_
-- [Chainstack](https://chainstack.com/) _mainnet and testnet Ethereum infrastructure hosted in public & isolated customer clouds_
-- [ConsenSys](https://consensys.net/) _provides a range of products and tools for building on Ethereum, as well as consulting and custom development services_
-- [Envision Blockchain](https://envisionblockchain.com/) _provides enterprise focused consulting and development services specializing in Ethereum Mainnet_
-- [EY OpsChain](https://blockchain.ey.com/products/contract-manager) _provides a procurement workflow by issuing RFQ’s, contracts, purchase orders, and invoices across your network of trusted business partners_
-- [Hyperledger Besu](https://www.hyperledger.org/use/besu) _an enterprise focused open-source Ethereum client developed under the Apache 2.0 license and written in Java_
-- [Infura](https://infura.io/) _scalable API access to the Ethereum and IPFS networks_
-- [Kaleido](https://kaleido.io/) _an enterprise-focused development platform that offers simplified blockchain and digital asset applications_
-- [NodeReal](https://nodereal.io/) _provides scalable blockchain infrastructure and API services provider for the Web3 ecosystem_
-- [Provide](https://provide.services/) _infrastructure and APIs for Enterprise Web3 applications_
-- [QuickNode](https://www.quicknode.com/) _provides reliable and fast nodes with high-level APIs like NFT API, Token API, etc., while delivering a unified product suite and enterprise-grade solutions_
-- [Tenderly](https://tenderly.co) _a Web3 development platform that provides debugging, observability, and infrastructure building blocks for developing, testing, monitoring, and operating smart contracts_
-- [Unibright](https://unibright.io/) _a team of blockchain specialists, architects, developers and consultants with 20+ years of experience in business processes and integration_
-- [Zero Services GmbH](https://www.zeroservices.eu/) _provider of managed services spread across co-locations in Europe and Asia. Operates & monitors your nodes securely and reliably_
-- [Zeeve](https://www.zeeve.io/) _provides a range of products and tools for building on Ethereum, also infrastructure and APIs for Enterprise Web3 applications._
+- [4EVERLAND](https://www.4everland.org/) - _provides APIs, RPC services and tools for hosting decentralized applications and enabling decentralized storage on Ethereum_
+- [Alchemy](https://www.alchemy.com/) - _provides API services and tools for building and monitoring applications on Ethereum_
+- [Blast](https://blastapi.io/) - _an API platform that provides RPC/WSS APIs for Ethereum Archive Mainnet and Testnets._
+- [Blockapps](https://blockapps.net/) - _implementation of the Enterprise Ethereum protocol, tooling and APIs that form the STRATO platform_
+- [Chainstack](https://chainstack.com/) - _mainnet and testnet Ethereum infrastructure hosted in public & isolated customer clouds_
+- [ConsenSys](https://consensys.io/) - _provides a range of products and tools for building on Ethereum, as well as consulting and custom development services_
+- [Envision Blockchain](https://envisionblockchain.com/) - _provides enterprise focused consulting and development services specializing in Ethereum Mainnet_
+- [EY OpsChain](https://blockchain.ey.com/products/contract-manager) - _provides a procurement workflow by issuing RFQ’s, contracts, purchase orders, and invoices across your network of trusted business partners_
+- [Hyperledger Besu](https://www.hyperledger.org/use/besu) - _an enterprise focused open-source Ethereum client developed under the Apache 2.0 license and written in Java_
+- [Infura](https://infura.io/) - _scalable API access to the Ethereum and IPFS networks_
+- [Kaleido](https://kaleido.io/) - _an enterprise-focused development platform that offers simplified blockchain and digital asset applications_
+- [NodeReal](https://nodereal.io/) - _provides scalable blockchain infrastructure and API services provider for the Web3 ecosystem_
+- [Provide](https://provide.services/) - _enterprise zero-knowledge middleware_
+- [QuickNode](https://www.quicknode.com/) - _provides reliable and fast nodes with high-level APIs like NFT API, Token API, etc., while delivering a unified product suite and enterprise-grade solutions_
+- [Tenderly](https://tenderly.co) - _a Web3 development platform that provides debugging, observability, and infrastructure building blocks for developing, testing, monitoring, and operating smart contracts_
+- [Unibright](https://unibright.io/) - _a team of blockchain specialists, architects, developers and consultants with 20+ years of experience in business processes and integration_
+- [Zeeve](https://www.zeeve.io/) - _provides a range of products and tools for building on Ethereum, also infrastructure and APIs for Enterprise Web3 applications._
### Tooling and libraries {#tooling-and-libraries}
-- [Alethio](https://explorer.aleth.io/) _Ethereum Data Analytics Platform_
-- [Sirato](https://www.web3labs.com/sirato) _a data and analytics platform for public and private Ethereum compatible networks by Web3 Labs_
-- [Ernst & Young's ‘Nightfall'](https://github.com/EYBlockchain/nightfall) _a toolkit for private transactions_
-- [EthSigner](https://github.com/ConsenSys/ethsigner) _a transaction signing application to be used with a web3 provider_
-- [Tenderly](https://tenderly.co/) _a Data Platform providing real-time analytics, alerting and monitoring with support for private networks_
-- [Truffle Suite](https://trufflesuite.com) _blockchain development suite (Truffle, Ganache, Drizzle)_
+- [Baseline Project](https://www.baseline-protocol.org/) - _The Baseline Protocol is a set of tools and libraries that helps enterprises coordinate complex, multi-party business processes and workflows with privacy while keeping data in respective systems of record. The standard enables two or more state machines to achieve and maintain data consistency and workflow continuity by using a network as a common frame of reference._
+- [Chainlens](https://www.chainlens.com/) - _SaaS and on-prem blockchain data and analytics platform from Web3 Labs_
+- [Ernst & Young's 'Nightfall'](https://github.com/EYBlockchain/nightfall_3) - _an application for transferring ERC20, ERC721 and ERC1155 applications under Zero Knowledge, using an Optimistic Rollup_
+- [Truffle Suite](https://trufflesuite.com) - _blockchain development suite (Truffle, Ganache, Drizzle)_
### Scalability solutions {#scalability-solutions}
@@ -106,13 +111,12 @@ Here are some of the enterprise applications that have been built on top of the
- [Tinlake](https://tinlake.centrifuge.io/) _receivables financing via tokenized real-world assets such as invoices, mortgages or streaming royalties_
- [RealT](https://realt.co/) _investors around the globe can buy into the US real estate market through fully-compliant, fractional, tokenized ownership._
-- [AgroToken](https://agrotoken.io/en/) _tokenizing and trading agricultural commodities_
+- [AgroToken](https://agrotoken.io/en/home) _tokenizing and trading agricultural commodities_
- [Fasset](https://www.fasset.com/) _a platform for supporting sustainable infrastructure_
### Notarization of data {#notarization-of-data}
- [BBVA](https://www.ledgerinsights.com/bbva-blockchain-loan-banking-tech-award/) _details of finalized loans are hashed and recorded on Mainnet_
-- [Splunk](https://www.splunk.com/en_us/blog/security/the-newest-data-attack.html) _data integrity can be ensured by periodically writing hashes of indexed data to Mainnet_
- [ANSA](https://cointelegraph.com/news/italys-top-news-agency-uses-blockchain-to-fight-fake-coronavirus-news) _Italy's largest news agency fights fake news and enables readers to verify the origin of news stories by recording them on Mainnet_
- [Verizon](https://decrypt.co/46745/verizon-news-press-releases-ethereum-full-transparency) _logs press releases on Ethereum to ensure corporate accountability and trust_
- [Breitling](https://www.coindesk.com/breitling-arianee-all-new-watches-ethereum) _records provenance and repair history of watches on Ethereum_
@@ -120,13 +124,11 @@ Here are some of the enterprise applications that have been built on top of the
### Supply chain {#supply-chain}
-- [CargoX](https://cargox.io/press-releases/full/cargox-becomes-first-public-blockchain-ethereum-bill-lading-provider-approved-international-group-pi-clubs) _bill of lading and document transfer provider_
- [Morpheus.network](https://morpheus.network/) _supply chain automation platform which implements a hybrid of private chains with notarized data on the Ethereum Mainnet, and is in use by companies such as Canadian food, oil & gas distributor Federated Co-op Ltd. and Argentinian pet food provider Vitalcan_
- [Minespider](https://www.minespider.com/) _supply chain tracking_
- [EY OpsChain Contract Manager](https://blockchain.ey.com/products/contract-manager) _enables companies to engage in a procurement workflow by issuing RFQ’s, contracts, purchase orders, and invoices across your network of trusted business partners_
- [Treum](https://treum.io/) _brings transparency, traceability, and tradability to supply chains, using blockchain technology_
- [TradeTrust](https://www.tradetrust.io/) _verifies electronic Bills of Lading (eBLs) for international shipping_
-- [Birra Peroni](https://www.ey.com/en_gl/news/2021/05/birra-peroni-is-the-first-industrial-organization-to-mint-unique-non-fungible-tokens-using-ey-opschain-traceability) _mints NFTs for each new batch of beer, enabling greater visibility and efficiency across its supply chain_
### Insurance {#insurance}
diff --git a/public/content/enterprise/private-ethereum/index.md b/public/content/enterprise/private-ethereum/index.md
index 6a5d1897721..82673d4cad1 100644
--- a/public/content/enterprise/private-ethereum/index.md
+++ b/public/content/enterprise/private-ethereum/index.md
@@ -17,14 +17,12 @@ Some collaborative efforts to make Ethereum enterprise friendly have been put to
- [Enterprise Ethereum Alliance](https://entethalliance.org/)
The EEA enables organizations to adopt and use Ethereum technology in their daily business operations. We empower the Ethereum ecosystem to develop new business opportunities, drive industry adoption, and learn and collaborate with one another.
- [Hyperledger](https://hyperledger.org)
- _Hyperledger is an open source collaborative effort created to advance cross-industry blockchain technologies. It is a global collaboration, hosted by The Linux Foundation, including leaders in finance, banking, Internet of Things, supply chains, manufacturing and Technology. The foundation has some projects in it that work with the Ethereum stack, including [Besu](https://www.hyperledger.org/use/besu) and [Burrow](https://www.hyperledger.org/projects/hyperledger-burrow)._
+ _Hyperledger is an open source collaborative effort created to advance cross-industry blockchain technologies. It is a global collaboration, hosted by The Linux Foundation, including leaders in finance, banking, Internet of Things, supply chains, manufacturing and Technology. The foundation has some projects in it that work with the Ethereum stack, including [Besu](https://www.hyperledger.org/use/besu)._
### Protocol and infrastructure {#protocol-and-infrastructure}
- [Chainstack](https://chainstack.com/) _multi-cloud and multi-protocol Platform as a Service empowering businesses to rapidly build, deploy, and manage decentralized networks and services_
- [Clearmatics Autonity](https://www.clearmatics.com/about/) _protocol suite that implements p2p protocols and provides client software and infrastructure_
- [Hyperledger Besu](https://www.hyperledger.org/use/besu) _Open-source Ethereum client developed under the Apache 2.0 license and written in Java, which includes several consensus algorithms including PoW, and PoA (IBFT, IBFT 2.0, Ethash, and Clique). Its comprehensive permissioning schemes are designed specifically for use in a consortium environment._
-- [Hyperledger Burrow](https://www.hyperledger.org/projects/hyperledger-burrow) _modular blockchain client with a permissioned smart contract interpreter partially developed to the specification of the Ethereum Virtual Machine (EVM)_
- [Kaleido](https://kaleido.io/) _full-stack platform for building and running cross-cloud, hybrid enterprise ecosystems_
-- [Quorum](https://consensys.net/quorum/) _an Ethereum-based open source enterprise blockchain platform with advanced enterprise grade features enabling privacy, permissioning and performance_
- [Zeeve](https://www.zeeve.io/) _provides a range of products and tools for building on Ethereum, also infrastructure and APIs for Enterprise Web3 applications_
diff --git a/public/content/glossary/index.md b/public/content/glossary/index.md
index fb560a677a9..f8a40095356 100644
--- a/public/content/glossary/index.md
+++ b/public/content/glossary/index.md
@@ -20,8 +20,12 @@ lang: en
+
+
+
+
@@ -60,6 +64,8 @@ lang: en
+
+
@@ -92,6 +98,8 @@ lang: en
+
+
@@ -158,6 +166,12 @@ lang: en
+
+
+
+
+
+
@@ -214,6 +228,8 @@ lang: en
+
+
@@ -236,6 +252,8 @@ lang: en
+
+
@@ -244,12 +262,18 @@ lang: en
## L {#section-l}
+
+
+
+
+
+
@@ -258,8 +282,12 @@ lang: en
+
+
+
+
@@ -270,6 +298,8 @@ lang: en
+
+
## N {#section-n}
@@ -288,8 +318,12 @@ lang: en
## O {#section-o}
+
+
+
+
@@ -302,16 +336,24 @@ lang: en
+
+
+
+
+
+
+
+
@@ -336,6 +378,10 @@ lang: en
+
+
+
+
@@ -394,6 +440,8 @@ lang: en
+
+
diff --git a/public/content/guides/how-to-create-an-ethereum-account/index.md b/public/content/guides/how-to-create-an-ethereum-account/index.md
index 99033cff74e..b8529a68e1c 100644
--- a/public/content/guides/how-to-create-an-ethereum-account/index.md
+++ b/public/content/guides/how-to-create-an-ethereum-account/index.md
@@ -6,7 +6,7 @@ lang: en
# How to create an Ethereum account
-Anyone can create an Ethereum account at any time, for free. There are several ways, but the easiest and most common way is to use an app known as a wallet. Wallets create and secure the keys that enable you to use Ethereum. You can use your wallet to send transactions, check your token balances and connect to apps built on Ethereum, such as token exchanges, games, NFT marketplaces and more. Some "web2" apps now allow you to sign in with Ethereum too.
+Anyone can create an Ethereum account at any time, for free. There are several ways, but the easiest and most common way is to use an app known as a wallet. Wallets create and secure the [keys](/glossary/#key) that enable you to use Ethereum. You can use your wallet to send transactions, check your token balances and connect to apps built on Ethereum, such as token exchanges, games, [NFT](/glossary/#nft) marketplaces and more. Some "web2" apps now allow you to sign in with Ethereum too.
Unlike opening a new account with a company, creating an Ethereum account is done freely, privately and without requiring permission. Accounts are controlled by keys that your wallet software helps you create, and are not issued by a third party, nor stored in a central registry.
@@ -28,7 +28,7 @@ There are also other profile filters to cater to your needs. These are examples
Once you have decided on a specific wallet, visit their official website or app store, download and install it. All of them should be free.
-## Step 3: Open the app and generate or import your Ethereum account
+## Step 3: Open the app and create your Ethereum account
The first time you open your new wallet you might be asked to choose between creating a new account or importing an existing one. Click on the new account creation.
@@ -61,7 +61,7 @@ No, you cannot. Bitcoin and ether exist on two separate networks (i.e. different
### If I own an ETH address, do I own the same address on other blockchains?
-You can use the same address on all blockchains that use similar underlying software to Ethereum (known as 'EVM-compatible'). This [list](https://chainlist.org/) will show you which blockchains you can use with the same address. Some blockchains, like Bitcoin, implement a completely separate set of network rules and you will need a different address with a different format. If you have a smart contract wallet you should check its product website for more info on which blockchains are supported.
+You can use the same [address](/glossary/#address) on all blockchains that use similar underlying software to Ethereum (known as 'EVM-compatible'). This [list](https://chainlist.org/) will show you which blockchains you can use with the same address. Some blockchains, like Bitcoin, implement a completely separate set of network rules and you will need a different address with a different format. If you have a smart contract wallet you should check its product website for more info on which blockchains are supported.
### Is having my own wallet safer than keeping my funds on an exchange?
diff --git a/public/content/guides/how-to-revoke-token-access/index.md b/public/content/guides/how-to-revoke-token-access/index.md
index ecfad91b5b2..6567aafb04b 100644
--- a/public/content/guides/how-to-revoke-token-access/index.md
+++ b/public/content/guides/how-to-revoke-token-access/index.md
@@ -6,11 +6,11 @@ lang: en
# How to revoke smart contract access to your crypto funds
-This guide will teach you how to view a list of all smart contracts you have allowed access to your funds and how to cancel them.
+This guide will teach you how to view a list of all [smart contracts](/glossary/#smart-contract) you have allowed access to your funds and how to cancel them.
-Sometimes malicious developers build backdoors into smart contracts that allow access to the funds of unaware users who interact with the smart contract. What often happens is that such platforms ask the user for permission to spend an **unlimited number of tokens** in an attempt to save small amounts of gas in the future, but this comes with increased risk.
+Sometimes malicious developers build backdoors into smart contracts that allow access to the funds of unaware users who interact with the smart contract. What often happens is that such platforms ask the user for permission to spend an **unlimited number of tokens** in an attempt to save small amounts of [gas](/glossary/#gas) in the future, but this comes with increased risk.
-Once a platform has unlimited access rights to a token on your wallet, they can spend all those tokens even if you have withdrawn your funds from their platform into your wallet. Malicious actors can still access your funds and withdraw them into their wallets with no recovery option left for you.
+Once a platform has unlimited access rights to a token on your [wallet](/glossary/#wallet), they can spend all those tokens even if you have withdrawn your funds from their platform into your wallet. Malicious actors can still access your funds and withdraw them into their wallets with no recovery option left for you.
The only protections are to refrain from using untested new projects, only approve what you need, or regularly revoke access. So, how do you do that?
@@ -58,7 +58,7 @@ We advise you to refresh the revoking tool after a few minutes and connect your
### Does revoking token access also terminate staking, pooling, lending etc?
-No, it will not affect any of your DeFi strategies. You will remain in your positions and keep getting rewards etc.
+No, it will not affect any of your [DeFi](/glossary/#defi) strategies. You will remain in your positions and keep getting rewards etc.
### Is disconnecting a wallet from a project the same as removing permission to use my funds?
diff --git a/public/content/guides/how-to-swap-tokens/index.md b/public/content/guides/how-to-swap-tokens/index.md
index bb91edcd58d..b67ceca67dc 100644
--- a/public/content/guides/how-to-swap-tokens/index.md
+++ b/public/content/guides/how-to-swap-tokens/index.md
@@ -6,13 +6,13 @@ lang: en
# How to swap tokens
-Are you tired of searching for an exchange that lists all your favorite tokens? You can swap most of the tokens using decentralized exchanges.
+Are you tired of searching for an exchange that lists all your favorite tokens? You can swap most of the tokens using [decentralized exchanges](/glossary/#dex).
-A token swap involves the exchange of two different assets that exist on the Ethereum network, for example swapping ETH for DAI (an ERC-20 token). The process is very fast and cheap. You will need to have a crypto wallet to swap tokens.
+A token swap involves the exchange of two different assets that exist on the Ethereum network, for example swapping ETH for DAI (an [ERC-20](/glossary/#erc-20) token). The process is very fast and cheap. You will need to have a crypto wallet to swap tokens.
**Prerequisite:**
-- have a crypto wallet, you can follow this tutorial: [How to: "Register" an Ethereum account](/guides/how-to-create-an-ethereum-account/)
+- have a [crypto wallet](/glossary/#wallet), you can follow this tutorial: [How to: "Register" an Ethereum account](/guides/how-to-create-an-ethereum-account/)
- add funds to your wallet
## 1. Connect your wallet to the decentralized exchange (DEX) of your choice
@@ -24,7 +24,7 @@ Some popular exchanges are:
- [1Inch](https://app.1inch.io/#/1/unified/swap/ETH/DAI)
- [Curve](https://curve.fi/#/ethereum/swap)
-If you'd like to learn more about what DeFi is and how these new kinds of exchanges work, we can recommend the [Kernel Library](https://library.kernel.community/Topic+-+DeFi/Topic+-+DeFi).
+Interesting? Learn more about what [decentralised finance (DeFi)](/defi/) is and how these new kinds of exchanges work.
## 2. Select the pair of tokens you wish to swap
diff --git a/public/content/history/index.md b/public/content/history/index.md
index 517b84c81b7..af330d5849f 100644
--- a/public/content/history/index.md
+++ b/public/content/history/index.md
@@ -19,19 +19,117 @@ These rule changes may create a temporary split in the network. New blocks could
+
+
+The software that underlies Ethereum is composed of two halves, known as the [execution layer](/glossary/#execution-layer) and the [consensus layer](/glossary/#consensus-layer).
+
+**Execution upgrade naming**
+
+Since 2021, upgrades to the **execution layer** are named according to the city names of [previous Devcon locations](https://devcon.org/en/past-events/) in chronological order:
+
+| Upgrade Name | Devcon Year | Devcon Number | Upgrade Date |
+| ------------ | ----------- | ------------- | ------------ |
+| Berlin | 2015 | 0 | Apr 15, 2021 |
+| London | 2016 | I | Aug 5, 2021 |
+| Shanghai | 2017 | II | Apr 12, 2023 |
+| **Cancun** | 2018 | III | Mar 13, 2024 |
+| _Prague_ | 2019 | IV | TBD |
+| _Osaka_ | 2020 | V | TBD |
+| _Bogota_ | 2022 | VI | TBD |
+| _Bangkok_ | 2024 | VII | TBD |
+
+**Consensus upgrade naming**
+
+Since the launch of the [Beacon Chain](/glossary/#beacon-chain), upgrades to the **consensus layer** are named after celestial stars beginning with letters that proceed in alphabetical order:
+
+| Upgrade Name | Upgrade Date |
+| ----------------------------------------------------------- | ------------ |
+| Beacon Chain genesis | Dec 1, 2020 |
+| [Altair](https://en.wikipedia.org/wiki/Altair) | Oct 27, 2021 |
+| [Bellatrix](https://en.wikipedia.org/wiki/Bellatrix) | Sep 6, 2022 |
+| [Capella](https://en.wikipedia.org/wiki/Capella) | Apr 12, 2023 |
+| [**Deneb**](https://en.wikipedia.org/wiki/Deneb) | Mar 13, 2024 |
+| [_Electra_]() | TBD |
+
+**Combined naming**
+
+The execution and consensus upgrades were initially rolled out at different times, but after [The Merge](/roadmap/merge/) in 2022 these have been deployed simultaneously. As-such, colloquial terms have emerged to simplify references to these upgrades using a single conjoined term. This began with the _Shanghai-Capella_ upgrade, commonly referred to as "**Shapella**", and is continued with the _Cancun-Deneb_ upgrade, which may be referred to as "**Dencun**."
+
+| Execution Upgrade | Consensus Upgrade | Short Name |
+| ----------------- | ----------------- | ---------- |
+| Shanghai | Capella | "Shapella" |
+| Cancun | Deneb | "Dencun" |
+
+
+
Skip straight to information about some of the particularly important past upgrades: [The Beacon Chain](/roadmap/beacon-chain/); [The Merge](/roadmap/merge/); and [EIP-1559](#london)
Looking for future protocol upgrades? [Learn about upcoming upgrades on the Ethereum roadmap](/roadmap/).
+## 2024 {#2024}
+
+### Cancun-Deneb ("Dencun") {#dencun}
+
+
+
+#### Cancun summary {#cancun-summary}
+
+The Cancun upgrade contains a set of improvements to Ethereum's _execution_ aimed towards improving scalability, in tandem with the Deneb consensus upgrades.
+
+Notably this includes EIP-4844, known as **Proto-Danksharding**, which significantly decreases the cost of data storage for layer 2 rollups. This is achieved through the introduction of data "blobs" which enables rollups to post data to Mainnet for a short period of time. This results in significantly lower transaction fees for users of layer 2 rollups.
+
+
+
+
+
+
+
+- [Layer 2 rollups](/layer-2/)
+- [Proto-Danksharding](/roadmap/scaling/#proto-danksharding)
+- [Danksharding](/roadmap/danksharding/)
+- [Read the Cancun upgrade specification](https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/cancun.md)
+
+#### Deneb summary {#deneb-summary}
+
+The Deneb upgrade contains a set of improvements to Ethereum's _consensus_ aimed towards improving scalability. This upgrade comes in tandem with the Cancun execution upgrades to enable Proto-Danksharding (EIP-4844), along with other improvements to the Beacon Chain.
+
+Pre-generated signed "voluntary exit messages" no longer expire, thus giving more control to users staking their funds with a third-party node operator. With this signed exit message, stakers can delegate node operation while maintaining the ability to safely exit and withdrawal their funds at any time, without needing to ask permission from anyone.
+
+EIP-7514 brings a tightening to the issuance of ETH by capping the "churn" rate that validators can join the network to eight (8) per epoch. Since ETH issuance is proportional to total ETH staked, limiting the number of validators joining caps the _growth rate_ of newly issued ETH, while also reducing hardware requirements for node operators, helping decentralization.
+
+
+
+
+
+
+
+- [Read the Deneb upgrade specifications](https://github.com/ethereum/consensus-specs/blob/dev/specs/deneb/)
+- [Cancun-Deneb ("Dencun") FAQ](/roadmap/dencun/)
+
+
+
## 2023 {#2023}
-### Shanghai {#shanghai}
+### Shanghai-Capella ("Shapella") {#shapella}
-
+
-#### Summary {#shanghai-summary}
+#### Shanghai summary {#shanghai-summary}
The Shanghai upgrade brought staking withdrawals to the execution layer. In tandem with the Capella upgrade, this enabled blocks to accept withdrawal operations, which allows stakers to withdraw their ETH from the Beacon Chain to the execution layer.
@@ -49,13 +147,7 @@ The Shanghai upgrade brought staking withdrawals to the execution layer. In tand
- [Read the Shanghai upgrade specification](https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/shanghai.md)
----
-
-### Capella {#capella}
-
-
-
-#### Summary {#capella-summary}
+#### Capella summary {#capella-summary}
The Capella upgrade was the third major upgrade to the consensus layer (Beacon Chain) and enabled staking withdrawals. Capella occurred synchronously with the execution layer upgrade, Shanghai, and enabled staking withdrawal functionality.
diff --git a/public/content/nft/index.md b/public/content/nft/index.md
index c83c7416c01..4f10cf75596 100644
--- a/public/content/nft/index.md
+++ b/public/content/nft/index.md
@@ -14,15 +14,15 @@ summaryPoint3: Powered by smart contracts on the Ethereum blockchain.
## What are NFTs? {#what-are-nfts}
-NFTs are tokens that are individually unique. Each NFT has different properties (non-fungible) and is provably scarce. This is different from tokens such as ETH or other Ethereum based tokens like USDC where every token is identical and has the same properties ('fungible'). You don't care which specific dollar bill (or ETH) you have in your wallet, because they are all identical and worth the same. However, you _do_ care which specific NFT you own, because they all have individual properties that distinguish them from others ('non-fungible').
+NFTs are tokens that are **individually unique**. Each NFT has different properties (non-fungible) and is provably scarce. This is different from tokens such as [ETH](/glossary/#ether) or other Ethereum based tokens like USDC where every token is identical and has the same properties ('fungible'). You don't care which specific dollar bill (or ETH) you have in your wallet, because they are all identical and worth the same. However, you _do_ care which specific NFT you own, because they all have individual properties that distinguish them from others ('non-fungible').
-The uniqueness of each NFT enables tokenization of things like art, collectibles, or even real estate, where one specific unique NFT represents some specific unique real world or digital item. Ownership of an asset is publicly verifiable on Ethereum blockchain.
+The uniqueness of each NFT enables tokenization of things like art, collectibles, or even real estate, where one specific unique NFT represents some specific unique real world or digital item. Ownership of an asset is publicly verifiable on Ethereum [blockchain](/glossary/#blockchain).
## The internet of assets {#internet-of-assets}
-NFTs and Ethereum solve some of the problems that exist on the internet today. As everything becomes more digital, there's a need to replicate the properties of physical items like scarcity, uniqueness, and proof of ownership in a way that isn't controlled by a central organization. For example, with NFTs, you can own a music mp3 file across all Ethereum based apps and not be bound to one company's specific music app like Spotify or Apple Music. You can own a social media handle that you can sell or swap, but can't be arbitrarily taken away from you by a platform provider.
+NFTs and Ethereum solve some of the problems that exist on the internet today. As everything becomes more digital, there's a need to replicate the properties of physical items like scarcity, uniqueness, and proof of ownership in a way that isn't controlled by a central organization. For example, with NFTs, you can own a music mp3 file across all Ethereum based apps and not be bound to one company's specific music app like Spotify or Apple Music. You can own a social media handle that you can sell or swap, but **can't be arbitrarily taken away from you** by a platform provider.
Here's how an internet of NFTs compared to the internet most of us use today looks...
@@ -30,12 +30,12 @@ Here's how an internet of NFTs compared to the internet most of us use today loo
| An NFT internet | The internet today |
| ----------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------ |
-| You own your assets! Only you can sell or swap them. | You rent an asset from some organization and it can be taken away from you. |
-| NFTs are digitally unique, no two NFTs are the same. | A copy of an entity often cannot be distinguished from the original. |
-| Ownership of an NFT is stored on the blockchain for anyone to verify. | Ownership records of digital items are stored on servers controlled by institutions – you must take their word for it. |
-| NFTs are smart contracts on Ethereum. This means they can easily be used in other smart contracts and apps on Ethereum! | Companies with digital items usually require their own "walled garden" infrastructure. |
-| Content creators can sell their work anywhere and can access a global market. | Creators rely on the infrastructure and distribution of the platforms they use. These are often subject to terms of use and geographical restrictions. |
-| NFT creators can retain ownership rights over their own work, and program royalties directly into the NFT contract. | Platforms, such as music streaming services, retain the majority of profits from sales. |
+| **You own your assets!** Only you can sell or swap them. | **You rent an asset** from some organization and it can be taken away from you. |
+| NFTs are **digitally unique**, no two NFTs are the same. | **A copy often cannot be distinguished** from the original. |
+| Ownership of an NFT is stored on the blockchain for anyone to **verify publicly**. | The access to ownership records of digital items is **controlled by institutions** – you must take their word for it. |
+| NFTs are [smart contracts](/glossary/#smart-contract) on Ethereum. This means they **can easily be used in other smart contracts** and apps on Ethereum! | Companies with digital items usually **require their own "walled garden" infrastructure**. |
+| Content **creators can sell their work anywhere** and can access a global market. | Creators rely on the infrastructure and distribution of the platforms they use. These are often subject to terms of use and **geographical restrictions**. |
+| NFT creators **can retain ownership rights** over their own work, and program royalties directly into the NFT contract. | Platforms, such as music **streaming services, retain the majority of profits from sales**. |
## What are NFTs used for? {#nft-use-cases}
@@ -50,13 +50,20 @@ NFTs are used for many things, including:
- gating access to content
- ticketing
- decentralized internet domain names
-- collateral in DeFi
+- collateral in [decentralized finance](/glossary/#defi)
-Maybe you are an artist that wants to share their work using NFTs, without losing control and sacrificing your profits to intermediaries. You can create a new contract and specify the number of NFTs, their properties and a link to some specific artwork. As the artist, you can program into the smart contract the royalties you should be paid (e.g. transfer 5% of the sale price to the contract owner each time an NFT is transferred). You can also always prove that you created the NFTs because you own the wallet that deployed the contract. Your buyers can easily prove that they own an authentic NFT from your collection because their wallet address is associated with a token in your smart contract. They can use it across the Ethereum ecosystem, confident in its authenticity.
+Maybe you are an artist that wants to share their work using NFTs, without losing control and sacrificing your profits to intermediaries. You can create a new contract and specify the number of NFTs, their properties and a link to some specific artwork. As the artist, **you can program into the smart contract the royalties** you should be paid (e.g. transfer 5% of the sale price to the contract owner each time an NFT is transferred). You can also always prove that you created the NFTs because you own the [wallet](/glossary/#wallet) that deployed the contract. Your buyers can easily prove that they own an **authentic NFT** from your collection because their wallet [address](/glossary/#address) is associated with a token in your smart contract. They can use it across the Ethereum ecosystem, confident in its authenticity.
-Or consider a ticket to a sporting event. Just as an organizer of an event can choose how many tickets to sell, the creator of an NFT can decide how many replicas exist. Sometimes these are exact replicas, such as 5000 General Admission tickets. Sometimes several are minted that are very similar, but each slightly different, such as a ticket with an assigned seat. These can be bought and sold peer-to-peer without paying ticket handlers and the buyer always with assurance of the ticket authenticity by checking the contract address.
+
+
Explore, buy or create your own NFT art/collectibles...
+
+ Explore NFT art
+
+
-On ethereum.org, NFTs are used to demonstrate that people have meaningfully contributed to our Github repository (programmed the website, written or modified an article...), translated our content, or attended our community calls, and we've even got our own NFT domain name. If you contribute to ethereum.org, you can claim a POAP NFT. Some crypto meetups have used POAPs as tickets. [More on contributing](/contributing/#poap).
+Or consider a ticket to a sporting event. Just as an **organizer of an event can choose how many tickets to sell**, the creator of an NFT can decide how many replicas exist. Sometimes these are exact replicas, such as 5000 General Admission tickets. Sometimes several are minted that are very similar, but each slightly different, such as a ticket with an assigned seat. These can be bought and sold peer-to-peer without paying ticket handlers and the buyer always with assurance of the ticket authenticity by checking the contract address.
+
+On ethereum.org, **NFTs are used to demonstrate that people have meaningfully contributed** to our Github repository (programmed the website, written or modified an article...), translated our content, or attended our community calls, and we've even got our own NFT domain name. If you contribute to ethereum.org, you can claim a [POAP](/glossary/#poap) NFT. Some crypto meetups have used POAPs as tickets. [More on contributing](/contributing/#poap).
![ethereum.org POAP](./poap.png)
@@ -68,7 +75,7 @@ This website also has an alternative domain name powered by NFTs, **ethereum.eth
## How do NFTs work? {#how-nfts-work}
-NFTs, like any digital items on the Ethereum blockchain, are created through a special Ethereum based computer program called a "smart contract." These contracts follow certain rules, like the ERC-721 or ERC-1155 standards, which determine what the contract can do.
+NFTs, like any digital items on the Ethereum blockchain, are created through a special Ethereum based computer program called a "smart contract." These contracts follow certain rules, like the [ERC-721](/glossary/#erc-721) or [ERC-1155](/glossary/#erc-1155) standards, which determine what the contract can do.
The NFT smart contract can do a few key things:
@@ -82,7 +89,7 @@ Furthermore, the creator of the contract can add extra rules. They might limit h
### NFT security {#nft-security}
-Ethereum's security comes from proof-of-stake. The system is designed to economically disincentivize malicious actions, making Ethereum tamper-proof. This is what makes NFTs possible. Once the block containing your NFT transaction becomes finalized it would cost an attacker millions of ETH to change it. Anyone running Ethereum software would immediately be able to detect dishonest tampering with an NFT, and the bad actor would be economically penalized and ejected.
+Ethereum's security comes from [proof-of-stake](/glossary/#pos). The system is designed to economically disincentivize malicious actions, making Ethereum tamper-proof. This is what makes NFTs possible. Once the [block](/glossary/#block) containing your NFT transaction becomes [finalized](/glossary/#finality) it would cost an attacker millions of ETH to change it. Anyone running Ethereum software would immediately be able to detect dishonest tampering with an NFT, and the bad actor would be economically penalized and ejected.
Security issues relating to NFTs are most often related to phishing scams, smart contract vulnerabilities or user errors (such as inadvertently exposing private keys), making good wallet security critical for NFT owners.
diff --git a/public/content/refi/index.md b/public/content/refi/index.md
index 53fb4f50831..998cc0bf959 100755
--- a/public/content/refi/index.md
+++ b/public/content/refi/index.md
@@ -14,7 +14,7 @@ summaryPoint3: A tool to drastically scale ecological benefit assets like verifi
## What is ReFi? {#what-is-refi}
-**Regenerative finance (ReFi)** is a set of tools and ideas built on top of blockchains, that aim to create economies which are regenerative, rather than extractive or exploitative. Eventually, extractive systems deplete the resources available and collapse; without regenerative mechanisms, they lack resilience. ReFi operates on the assumption that the creation of monetary value must be decoupled from the unsustainable extraction of resources from our planet and communities.
+**Regenerative finance (ReFi)** is a set of tools and ideas built on top of [blockchains](/glossary/#blockchain), that aim to create economies which are regenerative, rather than extractive or exploitative. Eventually, extractive systems deplete the resources available and collapse; without regenerative mechanisms, they lack resilience. ReFi operates on the assumption that the creation of monetary value must be decoupled from the unsustainable extraction of resources from our planet and communities.
Instead, ReFi aims to solve environmental, communal, or social problems by creating regenerative cycles. These systems create value for participants while simultaneously benefiting ecosystems and communities.
@@ -22,10 +22,12 @@ One of the foundations of ReFi is the concept of regenerative economics pioneere
![Eight interconnected principles](refi-regenerative-economy-diagram.png)
-ReFi projects realize these principles using [smart contracts](/developers/docs/smart-contracts/) and [decentralized finance (DeFi)](/defi/) applications to incentivize regenerative behaviors, e.g. restoring degraded ecosystems, and facilitate large-scale collaboration on global issues such as climate change and biodiversity loss.
+ReFi projects realize these principles using [smart contracts](/glossary/#smart-contract) and [decentralized finance (DeFi)](/glossary/#defi) applications to incentivize regenerative behaviors, e.g. restoring degraded ecosystems, and facilitate large-scale collaboration on global issues such as climate change and biodiversity loss.
ReFi also overlaps with the [decentralized science (DeSci)](/desci/) movement, which uses Ethereum as a platform to finance, create, review, credit, store, and disseminate scientific knowledge. DeSci tools could become useful for developing verifiable standards and practices for implementing and monitoring regenerative activities like planting trees, removing plastic from the ocean, or restoring a degraded ecosystem.
+
+
## Tokenization of carbon credits {#tokenization-of-carbon-credits}
The **[voluntary carbon market (VCM)](https://climatefocus.com/so-what-voluntary-carbon-market-exactly/)** is a mechanism for funding projects that make a verified positive impact on carbon emissions, either reducing ongoing emissions, or removing greenhouse gases already emitted from the atmosphere. These projects receive an asset called "carbon credits" after they are verified, which they can sell to individuals and organizations who want to support climate action.
@@ -47,7 +49,7 @@ ReFi projects employ blockchain technology to alleviate many of the problems of
- **Liquidity is concentrated in a small number of liquidity pools** that can be freely traded by anyone. Large organizations as well as individual users can use these pools without manual searches for sellers/buyers, participation fees, or prior registration.
- **All transactions are recorded on public blockchains**. The path each carbon credit takes due to trading activity is traceable forever as soon as it is made available in the DCM.
- **Transaction speed is nearly instant**. Securing large amounts of carbon credits via the legacy markets can take days or weeks, but this can be achieved in a few seconds in the DCM.
-- **Trading activity occurs without intermediaries**, which charge high fees. Digital carbon credits represent a [62% cost improvement compared to equivalent traditional credits](https://www.klimadao.finance/blog/klimadao-analysis-of-the-base-carbon-tonne), according to data from one analytics firm.
+- **Trading activity occurs without intermediaries**, which charge high fees. Digital carbon credits represent a significant cost reduction compared to traditional credits.
- **The DCM is scalable** and can meet the demands of individuals and multinational corporations alike.
### Key components of the DCM {#key-components-dcm}
diff --git a/public/content/roadmap/beacon-chain/index.md b/public/content/roadmap/beacon-chain/index.md
index 6504254154a..74ba5d74678 100644
--- a/public/content/roadmap/beacon-chain/index.md
+++ b/public/content/roadmap/beacon-chain/index.md
@@ -30,7 +30,7 @@ Read more on our [node architecture page](/developers/docs/nodes-and-clients/nod
The Beacon Chain introduced [proof-of-stake](/developers/docs/consensus-mechanisms/pos/) to Ethereum. This keeps Ethereum secure and earns validators more ETH in the process. In practice, staking involves staking ETH in order to activate validator software. As a staker, you run the software that creates and validates new blocks in the chain.
-Staking serves a similar purpose that [mining](/developers/docs/mining/) used to, but is different in many ways. Mining required large up-front expenditures in the form of powerful hardware and energy consumption, resulting in economies of scale, and promoting centralization. Mining also did not come with any requirement to lock up assets as collateral, limiting the protocol's ability to punish bad actors after an attack.
+Staking serves a similar purpose that [mining](/developers/docs/consensus-mechanisms/pow/mining/) used to, but is different in many ways. Mining required large up-front expenditures in the form of powerful hardware and energy consumption, resulting in economies of scale, and promoting centralization. Mining also did not come with any requirement to lock up assets as collateral, limiting the protocol's ability to punish bad actors after an attack.
The transition to proof-of-stake made Ethereum significantly more secure and decentralized by comparison to proof-of-work. The more people that participate in the network, the more decentralized and safe from attacks it becomes.
diff --git a/public/content/roadmap/danksharding/index.md b/public/content/roadmap/danksharding/index.md
index 7a78bd1a10e..8bb974c0ce0 100644
--- a/public/content/roadmap/danksharding/index.md
+++ b/public/content/roadmap/danksharding/index.md
@@ -15,17 +15,19 @@ summaryPoints:
## What is Proto-Danksharding? {#what-is-protodanksharding}
-Proto-Danksharding, also known as [EIP-4844](https://eips.ethereum.org/EIPS/eip-4844), is a way for [rollups](/layer2/#rollups) to add cheaper data to blocks. The name comes from the two researchers who proposed the idea: Protolambda and Dankrad Feist. Right now, rollups are limited in how cheap they can make user transactions by the fact that they post their transactions in `CALLDATA`. This is expensive because it is processed by all Ethereum nodes and lives on chain forever, even though rollups only need the data for a short time. Proto-Danksharding introduces data blobs that can be sent and attached to blocks. The data in these blobs is not accessible to the EVM and is automatically deleted after a fixed time period (1-3 months). This means rollups can send their data much more cheaply and pass the savings on to end users in the form of cheaper transactions.
+Proto-Danksharding, also known as [EIP-4844](https://eips.ethereum.org/EIPS/eip-4844), is a way for [rollups](/layer-2/#rollups) to add cheaper data to blocks. The name comes from the two researchers who proposed the idea: Protolambda and Dankrad Feist. Historically, rollups had been limited in how cheap they can make user transactions by the fact that they post their transactions in `CALLDATA`.
+
+This is expensive because it is processed by all Ethereum nodes and lives on-chain forever, even though rollups only need the data for a short time. Proto-Danksharding introduces data blobs that can be sent and attached to blocks. The data in these blobs is not accessible to the EVM and is automatically deleted after a fixed time period (set to 4096 epochs at time of writing, or about 18 days). This means rollups can send their data much more cheaply and pass the savings on to end users in the form of cheaper transactions.
-Rollups are a way to scale Ethereum by batching transactions off-chain and then posting the results to Ethereum. A rollup is essentially composed of two parts: data and execution check. The data is the full sequence of transactions that is being processed by a rollup to produce the state change being posted to Ethereum. The execution check is the re-execution of those transactions by some honest actor (a "prover") to ensure that the proposed state change is correct. In order for the execution check, the transaction data has to be available for long enough for anyone to download and check. This means any dishonest behavior by the rollup sequencer can be identified and challenged by the prover. However, it does not need to be available forever.
+Rollups are a way to scale Ethereum by batching transactions off-chain and then posting the results to Ethereum. A rollup is essentially composed of two parts: data and execution check. The data is the full sequence of transactions that is being processed by a rollup to produce the state change being posted to Ethereum. The execution check is the re-execution of those transactions by some honest actor (a "prover") to ensure that the proposed state change is correct. To perform the execution check, the transaction data has to be available for long enough for anyone to download and check. This means any dishonest behavior by the rollup sequencer can be identified and challenged by the prover. However, it does not need to be available forever.
-Rollups post commitments to their transaction data on-chain and also make the actual data available in data blobs. This means provers can check the commitments are valid or challenge data they think is wrong. At the node-level, the blobs of data are held in the consensus client. The consensus clients attest that they have seen the data and that it has been propagated around the network. If the data was kept forever, these clients would bloat and lead to large hardware requirements for running nodes. Instead, the data is automatically pruned from the node every 1-3 months. The consensus client attestations demonstrate that there was a sufficient opportunity for provers to verify the data. The actual data can be stored off-chain by rollup operators, users or others.
+Rollups post commitments to their transaction data on-chain and also make the actual data available in data blobs. This means provers can check the commitments are valid or challenge data they think is wrong. At the node-level, the blobs of data are held in the consensus client. The consensus clients attest that they have seen the data and that it has been propagated around the network. If the data was kept forever, these clients would bloat and lead to large hardware requirements for running nodes. Instead, the data is automatically pruned from the node every 18 days. The consensus client attestations demonstrate that there was a sufficient opportunity for provers to verify the data. The actual data can be stored off-chain by rollup operators, users or others.
@@ -37,13 +39,15 @@ Rollups post the transactions they execute in data blobs. They also post a "comm
KZG stands for Kate-Zaverucha-Goldberg - the names of the three [original authors](https://link.springer.com/chapter/10.1007/978-3-642-17373-8_11) of a scheme that reduces a blob of data down to a small [cryptographic "commitment"](https://dankradfeist.de/ethereum/2020/06/16/kate-polynomial-commitments.html). The blob of data submitted by a rollup has to be verified to ensure the rollup is not misbehaving. This involves a prover re-executing the transactions in the blob to check that the commitment was valid. This is conceptually the same as the way execution clients check the validity of Ethereum transactions on layer 1 using Merkle proofs. KZG is an alternative proof that fits a polynomial equation to the data. The commitment evaluates the polynomial at some secret data points. A prover would fit the same polynomial over the data and evaluate it at the same values, checking that the result is the same. This is a way to verify the data that is compatible with zero-knowledge techniques used by some rollups and eventually other parts of the Ethereum protocol.
-### What is the KZG Ceremony? {#what-is-a-kzg-ceremony}
+### What was the KZG Ceremony? {#what-is-a-kzg-ceremony}
+
+The KZG ceremony was a way for many people from across the Ethereum community to collectively generate a secret random string of numbers that can be used to verify some data. It is very important that this string of numbers is not known and cannot be recreated by anyone. To ensure this, each person that participated in the ceremony received a string from the previous participant. They then created some new random values (e.g. by allowing their browser to measure the movement of their mouse) and mix it in with the previous value. They then sent the value on to the next participant and destroyed it from their local machine. As long as one person in the ceremony did this honestly, the final value will be unknowable to an attacker.
-A KZG ceremony is a way for many people from across the Ethereum community to generate a secret random string of numbers together that can be used to verify some data. It is very important that this string of numbers is not known and cannot be recreated by anyone. To ensure this, each person that participates in the ceremony receives a string from the previous participant. They then create some new random values (e.g. by allowing their browser to measure the movement of their mouse) and mix it in with the previous value. They then send the value on to the next participant and destroy it from their local machine. As long as one person in the ceremony does this honestly, the final value will be unknowable to an attacker. The EIP-4844 KZG ceremony was open to the public and tens of thousands of people participated to add their own entropy. For the ceremony to be undermined, 100% of those participants would have to be actively dishonest. From the perspective of the participants, if they know they were honest, there is no need to trust anyone else because they know that they secured the ceremony (they individually satisfied the 1-out-of-N honest participant requirement).
+The EIP-4844 KZG ceremony was open to the public and tens of thousands of people participated to add their own entropy (randomness). In total there were over 140,000 contributions, making it the worlds largest ceremony of its kind. For the ceremony to be undermined, 100% of those participants would have to be actively dishonest. From the perspective of the participants, if they know they were honest, there is no need to trust anyone else because they know that they secured the ceremony (they individually satisfied the 1-out-of-N honest participant requirement).
-When a rollup posts data in a blob, they provide a "commitment" that they post on chain. This commitment is the result of evaluating a polynomial fit to the data at certain points. These points are defined by the random numbers generated in the KZG ceremony. Provers can then evaluate the polynomial at the same points in order to verify the data - if they arrive at the same values then the data is correct.
+When a rollup posts data in a blob, they provide a "commitment" that they post on-chain. This commitment is the result of evaluating a polynomial fit to the data at certain points. These points are defined by the random numbers generated in the KZG ceremony. Provers can then evaluate the polynomial at the same points in order to verify the data - if they arrive at the same values then the data is correct.
@@ -61,7 +65,7 @@ If someone knows the random locations used for the commitment, it is easy for th
Danksharding is the full realization of the rollup scaling that began with Proto-Danksharding. Danksharding will bring massive amounts of space on Ethereum for rollups to dump their compressed transaction data. This means Ethereum will be able to support hundreds of individual rollups with ease and make millions of transactions per second a reality.
-The way this works is by expanding the blobs attached to blocks from 1 in Proto-Danksharding to 64 in full Danksharding. The rest of the changes required are all updates to the way consensus clients operate to enable them to handle the new large blobs. Several of these changes are already on the roadmap for other purposes independent of Danksharding. For example, Danksharding requires proposer-builder separation to have been implemented. This is an upgrade that separates the tasks of building blocks and proposing blocks across different validators. Similarly, data availability sampling is required for Danksharding, but it is also required for the development of very lightweight clients that do not store much historical data ("stateless clients").
+The way this works is by expanding the blobs attached to blocks from six (6) in Proto-Danksharding, to 64 in full Danksharding. The rest of the changes required are all updates to the way consensus clients operate to enable them to handle the new large blobs. Several of these changes are already on the roadmap for other purposes independent of Danksharding. For example, Danksharding requires proposer-builder separation to have been implemented. This is an upgrade that separates the tasks of building blocks and proposing blocks across different validators. Similarly, data availability sampling is required for Danksharding, but it is also required for the development of very lightweight clients that do not store much historical data ("stateless clients").
@@ -77,7 +81,7 @@ Data availability sampling is required for validators to quickly and efficiently
### Current progress {#current-progress}
-Full Danksharding is several years away. However, Proto-Danksharding should arrive relatively soon. At the time of writing (Feb 2023) the KZG ceremony is still open and has so far attracted over 50,000 contributors. The [EIP](https://eips.ethereum.org/EIPS/eip-4844) for Proto-Danksharding is mature, the specification is agreed and the clients have implemented prototypes that are currently being tested and made production-ready. The next step is to implement the changes on a public testnet. You can keep up to date using the [EIP 4844 readiness checklist](https://github.com/ethereum/pm/blob/master/Dencun/4844-readiness-checklist.md).
+Full Danksharding is several years away. In the meantime, the KZG ceremony has concluded with over 140,000 contributions, and the [EIP](https://eips.ethereum.org/EIPS/eip-4844) for Proto-Danksharding has matured. This proposal has been fully implemented in all testnets, and went live on Mainnet with the Cancun-Deneb ("Dencun") network upgrade in March 2024.
### Further reading {#further-reading}
diff --git a/public/content/roadmap/dencun/index.md b/public/content/roadmap/dencun/index.md
new file mode 100644
index 00000000000..1a45f40b3af
--- /dev/null
+++ b/public/content/roadmap/dencun/index.md
@@ -0,0 +1,120 @@
+---
+title: Cancun-Deneb (Dencun) FAQ
+description: Frequently asked questions regarding the Cancun-Deneb (Dencun) network upgrade
+lang: en
+---
+
+# Cancun-Deneb (Dencun) {#dencun}
+
+Cancun-Deneb (Dencun) is an upgrade to the Ethereum network, which activates **Proto-Danksharding (EIP-4844)**, introducing temporary data **blobs** for cheaper [layer 2 (L2)](/glossary/#layer-2) rollup storage.
+
+A new transaction type enables rollup providers to store data more cost-effectively in what are known as "blobs." Blobs are guaranteed to be available to the network for around 18 days (more precisely, 4096 [epochs](/glossary/#epoch)). After this period, blobs are pruned from the network, but applications can still verify the validity of their data using proofs.
+
+This significantly reduces the cost of rollups, limits chain growth, and helps to support more users while maintaining security and a decentralized set of node operators.
+
+## When do we expect rollups to reflect lower fees due to Proto-Danksharding? {#when}
+
+- This upgrade activated at epoch 269568, on **13-Mar-2024 at 13:55PM (UTC)**
+- All major rollup providers, such as Arbitrum or Optimism, have signalled that blobs will be supported immediately following the upgrade
+- The timeline for individual rollup support may vary, as each provider must update their systems to take advantage of the new blob space
+
+## How can ETH be converted after the hard fork? {#scam-alert}
+
+- **No Action Required for Your ETH**: Following the Ethereum Dencun upgrade, there is no need to convert or upgrade your ETH. Your account balances will remain the same, and the ETH you currently hold will remain accessible in its existing form after the hard fork.
+- **Beware of Scams!** **anyone instructing you to "upgrade" your ETH is trying to scam you.** There is nothing you need to do in relation to this upgrade. Your assets will stay completely unaffected. Remember, staying informed is the best defense against scams.
+
+[More on recognizing and avoiding scams](/security/)
+
+## What problem is the Dencun network upgrade solving? {#network-impact}
+
+Dencun primarily addresses **scalability** (handling more users and more transactions) with **affordable fees**, while **maintaining decentralization** of the network.
+
+The Ethereum community has been taking a "rollup-centric" approach to its growth, which places layer 2 rollups as the primary means to safely support more users.
+
+Rollup networks handle the _processing_ (or "execution") of transactions separate from Mainnet and then publish a cryptographic proof and/or compressed transaction data of the results back to Mainnet for record keeping. Storing these proofs carries an expense (in the form of [gas](/glossary/#gas)), which, before Proto-Danksharding, had to be stored permanently by all network node operators, making it an expensive task.
+
+The introduction of Proto-Danksharding in the Dencun upgrade adds cheaper data storage for these proofs by only requiring node operators to store this data for about 18 days, after which data can be safely removed to prevent expansion of hardware requirements. Because rollups typically have a withdrawal period of 7 days, their security model is unchanged as long as blobs are available on L1 for this duration. The 18-day pruning window provides a significant buffer for this period.
+
+[More on scaling Ethereum](/roadmap/scaling/)
+
+## How is old blob data accessed? {#historical-access}
+
+While regular Ethereum nodes will always hold the _current state_ of the network, historical blob data can be discarded approximately 18 days after its introduction. Before discarding this data, Ethereum ensures that it has been made available to all network participants, allowing time for:
+
+- Interested parties to download and store the data.
+- Completion of all rollup challenge periods.
+- Finalization of the rollup transactions.
+
+_Historical_ blob data may be desired for a variety of reasons and can be stored and accessed using several decentralized protocols:
+
+- **Third-party indexing protocols**, such as The Graph, store this data through a decentralized network of node operators incentivized by crypto-economic mechanisms.
+- **BitTorrent** is a decentralized protocol where volunteers can hold and distribute this data to others.
+- **[Ethereum portal network](/developers/docs/networking-layer/portal-network/)** aims to provide access to all Ethereum data through a decentralized network of node operators by distributing data among participants akin to BitTorrent.
+- **Individual users** are always free to store their own copies of any data they wish for historical reference.
+- **Rollup providers** are incentivized to store this data to enhance the user experience of their rollup.
+- **Block explorers** typically run archival nodes that index and store all this information for easy historical reference, accessible to users via a web interface.
+
+It is important to note that recovering historical state operates on a **1-of-N trust model**. This means that you only need data from _a single trustworthy source_ to verify its correctness using the current state of the network.
+
+## How does this upgrade contribute to the broader Ethereum roadmap? {#roadmap-impact}
+
+Proto-Danksharding sets the stage for the full implementation of [Danksharding](/roadmap/danksharding/). Danksharding is designed to distribute the storage of rollup data across node operators, so each operator only needs to handle a small part of the total data. This distribution will increase the number of data blobs per block, which is essential for scaling Ethereum to handle more users and transactions.
+
+This scalability is crucial to [supporting billions of users on Ethereum](/roadmap/scaling/) with affordable fees and more advanced applications, while maintaining a decentralized network. Without these changes, the hardware demands for node operators would escalate, leading to the need for increasingly expensive equipment. This could price out smaller operators, resulting in a concentration of network control among a few large operators, which would go against the principle of decentralization.
+
+## Does this upgrade affect all Ethereum consensus and validator clients? {#client-impact}
+
+Yes, Proto-Danksharding (EIP-4844) requires updates to both execution clients and consensus clients. All main Ethereum clients have released versions supporting the upgrade. To maintain synchronization with the Ethereum network post-upgrade, node operators must ensure they are running a supported client version. Note that the information about client releases is time-sensitive, and users should refer to the latest updates for the most current details. [See details on supported client releases](https://blog.ethereum.org/2024/02/27/dencun-mainnet-announcement#client-releases).
+
+The consensus clients handle the _Validator_ software, which has all been updated to accommodate the upgrade.
+
+## How does Cancun-Deneb (Dencun) affect Goerli or other Ethereum testnets? {#testnet-impact}
+
+- Devnets, Goerli, Sepolia and Holesky have all undergone the Dencun upgrade and have Proto-Danksharding fully functioning
+- Rollup developers can use these networks for EIP-4844 testing
+- Most users will be completely unaffected by this change to each testnet
+
+## Will all transactions on L2s now use temporary blob space, or will you be able to choose? {#calldata-vs-blobs}
+
+Rollup transactions on Layer 2 (L2) of Ethereum have the option of using two types of data storage: temporary blob space or permanent smart contract calldata. Blob space is an economical choice, providing temporary storage at a lower cost. It guarantees data availability for all necessary challenge periods. On the other hand, smart contract calldata offers permanent storage but is more expensive.
+
+The decision between using blob space or calldata is primarily made by rollup providers. They base this decision on the current demand for blob space. If blob space is in high demand, rollups may opt for calldata to ensure the data is posted in a timely manner.
+
+While it's theoretically possible for users to choose their preferred storage type, rollup providers typically manage this choice. Offering this option to users would add complexity, particularly in cost-effective bundling transactions. For specific details on this choice, users should refer to the documentation provided by individual rollup providers.
+
+## Will 4844 reduce L1 gas? {#l1-fee-impact}
+
+Not significantly. A new gas market is introduced exclusively for blob space, for use by rollup providers. _Although fees on L1 may be reduced by off-loading rollup data to blobs, this upgrade primarily focuses on the reduction of L2 fees. Reduction of fees on L1 (Mainnet) may occur as a second-order effect to a lesser extent._
+
+- L1 gas reduction will be proportional to adoption/usage of blob data by rollup providers
+- L1 gas is likely to remain competitive from non-rollup related activity
+- Rollups that adopt the use of blob space will demand less L1 gas, helping push L1 gas fees downward in the near-term
+- Blob space is still limited, so if blobs within a block are saturated/full, then rollups may be required to post their data as permanent data in the meantime, which would drive L1 and L2 gas prices up
+
+## Will this reduce fees on other EVM layer 1 blockchains? {#alt-l1-fee-impact}
+
+No. The benefits of Proto-Danksharding are specific to Ethereum layer 2 rollups that store their proofs on layer 1 (Mainnet).
+
+Simply being compatible with the Ethereum Virtual Machine (EVM) does not mean that a network will see any benefit from this upgrade. Networks that operate independently of Ethereum (whether EVM compatible or not) do not store their data on Ethereum and will not see any benefit from this upgrade.
+
+[More about layer 2 rollups](/layer-2/)
+
+## More of a visual learner? {#visual-learner}
+
+
+
+_Unlocking Ethereum's Scaling, EIP-4844 — Finematics _
+
+
+
+_Blobspace 101 with Domothy — Bankless_
+
+## Further reading {#further-reading}
+
+- [EIP4844.com](https://www.eip4844.com/)
+- [EIP-4844: Shard blob transactions (Proto-Danksharding)](https://eips.ethereum.org/EIPS/eip-4844)
+- [Dencun Mainnet Announcement](https://blog.ethereum.org/2024/02/27/dencun-mainnet-announcement) - _Ethereum Foundation blog_
+- [The Hitchhiker's Guide to Ethereum: Proto-Danksharding](https://members.delphidigital.io/reports/the-hitchhikers-guide-to-ethereum/#proto-danksharding-eip-4844) - _Jon Charbonneau_
+- [Proto-Danksharding FAQ](https://notes.ethereum.org/@vbuterin/proto_danksharding_faq) - _Vitalik Buterin_
+- [An In-depth Explanation of EIP-4844: The Core of the Cancun Upgrade](https://medium.com/@ebunker.io/an-in-depth-explanation-of-eip-4844-the-core-of-the-cancun-upgrade-de7b13761d2c) - _Ebunker_
+- [AllCoreDevs Update 016](https://tim.mirror.xyz/HzH5MpK1dnw7qhBSmzCfdCIxpwpD6DpwlfxtaAwEFro) - _Tim Beiko_
diff --git a/public/content/roadmap/future-proofing/index.md b/public/content/roadmap/future-proofing/index.md
index c8e9960961e..c94454f7896 100644
--- a/public/content/roadmap/future-proofing/index.md
+++ b/public/content/roadmap/future-proofing/index.md
@@ -11,11 +11,11 @@ Some parts of the roadmap are not necessarily required for scaling or securing E
## Quantum resistance {#quantum-resistance}
-Some of the cryptography securing present-day Ethereum will be compromised when quantum computing becomes a reality. Although quantum computers are probably decades away from being a genuine threat to modern cryptography, Ethereum is being built to be secure for centuries to come. This means making [Ethereum quantum resistant](https://consensys.net/blog/developers/how-will-quantum-supremacy-affect-blockchain/) as soon as possible.
+Some of the [cryptography](/glossary/#cryptography) securing present-day Ethereum will be compromised when quantum computing becomes a reality. Although quantum computers are probably decades away from being a genuine threat to modern cryptography, Ethereum is being built to be secure for centuries to come. This means making [Ethereum quantum resistant](https://consensys.net/blog/developers/how-will-quantum-supremacy-affect-blockchain/) as soon as possible.
-The challenge facing Ethereum developers is that the current proof-of-stake protocol relies upon a very efficient signature scheme known as BLS to aggregate votes on valid blocks. This signature scheme is broken by quantum computers, but the quantum resistant alternatives are not as efficient.
+The challenge facing Ethereum developers is that the current [proof-of-stake](/glossary/#pos) protocol relies upon a very efficient signature scheme known as BLS to aggregate votes on valid [blocks](/glossary/#block). This signature scheme is broken by quantum computers, but the quantum resistant alternatives are not as efficient.
-The [“KZG” commitment schemes](/roadmap/danksharding/#what-is-kzg) used in several places across Ethereum to generate cryptographic secrets are known to be quantum-vulnerable. Currently, this is circumvented using “trusted setups” where many users generate randomness that cannot be reverse-engineered by a quantum computer. However, the ideal solution would simply be to incorporate quantum safe cryptography instead. There are two leading approaches that could become efficient replacements for the BLS scheme: [STARK-based](https://hackmd.io/@vbuterin/stark_aggregation) and [lattice-based](https://medium.com/asecuritysite-when-bob-met-alice/so-what-is-lattice-encryption-326ac66e3175) signing. These are still being researched and prototyped.
+The [“KZG” commitment schemes](/roadmap/danksharding/#what-is-kzg) used in several places across Ethereum to generate cryptographic secrets are known to be quantum-vulnerable. Currently, this is circumvented using “trusted setups” where many users generate randomness that cannot be reverse-engineered by a quantum computer. However, the ideal solution would simply be to incorporate quantum safe cryptography instead. There are two leading approaches that could become efficient replacements for the BLS scheme: [STARK-based](https://hackmd.io/@vbuterin/stark_aggregation) and [lattice-based](https://medium.com/asecuritysite-when-bob-met-alice/so-what-is-lattice-encryption-326ac66e3175) signing. **These are still being researched and prototyped**.
Read about KZG and trusted setups
@@ -23,13 +23,13 @@ The [“KZG” commitment schemes](/roadmap/danksharding/#what-is-kzg) used in s
Complexity creates opportunities for bugs or vulnerabilities that can be exploited by attackers. Therefore, part of the roadmap is simplifying Ethereum and removing code that has hung around through various upgrades but is no longer needed or can now be improved upon. A leaner, simpler codebase is easier for developers to maintain and reason about.
-There are several updates that will be made to the [Ethereum Virtual Machine (EVM)](/developers/docs/evm) to make it simpler and more efficient. These include [removing the SELFDESTRUCT opcode](https://hackmd.io/@vbuterin/selfdestruct) - a rarely used command that is no longer needed and in some circumstances can be dangerous to use, especially when combined with other future upgrades to Ethereum’s storage model. Ethereum clients also still support some old transaction types that can now be completely removed. The way gas is calculated can also be improved and more efficient methods for the arithmetic underpinning some cryptographic operations can be brought in.
+There are several updates that will be made to the [Ethereum Virtual Machine (EVM)](/developers/docs/evm) to make it simpler and more efficient. These include [removing the SELFDESTRUCT opcode](https://hackmd.io/@vbuterin/selfdestruct) - a rarely used command that is no longer needed and in some circumstances can be dangerous to use, especially when combined with other future upgrades to Ethereum’s storage model. [Ethereum clients](/glossary/#consensus-client) also still support some old transaction types that can now be completely removed. The way [gas](/glossary/#gas) is calculated can also be improved and more efficient methods for the arithmetic underpinning some cryptographic operations can be brought in.
Similarly, there are updates that can be made to other parts of present-day Ethereum clients. One example is that current execution and consensus clients use a different type of data compression. It will be much easier and more intuitive to share data between clients when the compression scheme is unified across the whole network.
## Current progress {#current-progress}
-Most of the upgrades required for future-proofing Ethereum are still in the research phase and may be several years away from being implemented. Upgrades such as removing SELF-DESTRUCT and harmonizing the compression scheme used in the execution and consensus clients are likely to come sooner than quantum resistant cryptography.
+Most of the upgrades required for future-proofing Ethereum are **still in the research phase and may be several years away** from being implemented. Upgrades such as removing SELF-DESTRUCT and harmonizing the compression scheme used in the execution and consensus clients are likely to come sooner than quantum resistant cryptography.
**Further reading**
diff --git a/public/content/roadmap/index.md b/public/content/roadmap/index.md
index ef683bb7ddf..e19916a7d12 100644
--- a/public/content/roadmap/index.md
+++ b/public/content/roadmap/index.md
@@ -3,7 +3,7 @@ title: Ethereum roadmap
description: The path to more scalability, security and sustainability for Ethereum.
lang: en
template: roadmap
-image: /roadmap/roadmap-main.png
+image: /heroes/roadmap-hub-hero.jpg
alt: "Ethereum roadmap"
summaryPoints:
buttons:
@@ -59,7 +59,7 @@ Ethereum gets regular upgrades that enhance its scalability, security, or sustai
-The roadmap is mostly the result of years of work by researchers and developers - because the protocol is very technical - but any motivated person can participate. Ideas usually start off as discussions on a forum such as [ethresear.ch](https://ethresear.ch/), [Ethereum Magicians](https://ethereum-magicians.org/) or the Eth R&D discord server. They may be responses to new vulnerabilities that are discovered, suggestions from organizations working in the application layer (such as dapps and exchanges) or from known frictions for end users (such as costs or transaction speeds). When these ideas mature, they can be proposed as [Ethereum Improvement Proposals](https://eips.ethereum.org/). This is all done in public so that anyone from the community can weigh in at any time.
+The roadmap is mostly the result of years of work by researchers and developers - because the protocol is very technical - but any motivated person can participate. Ideas usually start off as discussions on a forum such as [ethresear.ch](https://ethresear.ch/), [Ethereum Magicians](https://ethereum-magicians.org/) or the Eth R&D discord server. They may be responses to new vulnerabilities that are discovered, suggestions from organizations working in the application layer (such as [dapps](/glossary/#dapp) and exchanges) or from known frictions for end users (such as costs or transaction speeds). When these ideas mature, they can be proposed as [Ethereum Improvement Proposals](https://eips.ethereum.org/). This is all done in public so that anyone from the community can weigh in at any time.
[More on Ethereum governance](/governance/)
@@ -68,42 +68,42 @@ The roadmap is mostly the result of years of work by researchers and developers
What was ETH2?
-
The term 'Eth2' was commonly used to describe the future of Ethereum before the switch to proof-of-stake but it was phased out in favor of more precise terminology. It was originally used to differentiate the Ethereum network before the switch to proof-of-stake and the network after, or sometimes to refer to the different Ethereum clients (execution clients were sometimes referred to as ETH1 clients and consensus clients were sometimes referred to as ETH2 clients).
+
The term 'Eth2' was commonly used to describe the future of Ethereum before the switch to proof-of-stake but it was phased out in favor of more precise terminology. It was originally used to differentiate the Ethereum network before the switch to proof-of-stake and the network after, or sometimes to refer to the different Ethereum clients (execution clients were sometimes referred to as ETH1 clients and consensus clients were sometimes referred to as ETH2 clients).
## Will Ethereum's roadmap change over time? {#will-ethereums-roadmap-change-over-time}
-Yes—almost definitely. The roadmap is the current plan for upgrading Ethereum, covering both near-term and future plans. We expect the roadmap to change as new information and technology become available.
+**Yes—almost definitely**. The roadmap is the current plan for upgrading Ethereum, covering both near-term and future plans. We expect the roadmap to change as new information and technology become available.
Think of Ethereum's roadmap as a set of intentions for improving Ethereum; it is the core researchers' and developers' best hypothesize of Ethereum's most optimal path forward.
## When will the roadmap be finished? {#when-will-the-roadmap-be-finished}
-Ethereum will implement some upgrades in the next six months (e.g. staking withdrawals); others are lower priority and likely not to be implemented for the next 5-10 years (e.g. quantum resistance). Giving precise timing of each upgrade is complicated to predict as many roadmap items are worked on in parallel and developed at different speeds. The urgency of an upgrade can also change over time depending on external factors (e.g. a sudden leap in the performance and availability of quantum computers may make quantum-resistant cryptography more urgent).
+Some upgrades are lower priority and likely not to be implemented for the next 5-10 years (e.g. quantum resistance). **Giving precise timing of each upgrade is complicated to predict** as many roadmap items are worked on in parallel and developed at different speeds. The urgency of an upgrade can also change over time depending on external factors (e.g. a sudden leap in the performance and availability of quantum computers may make quantum-resistant cryptography more urgent).
One way to think about Ethereum development is by analogy to biological evolution. A network that is able to adapt to new challenges and maintain fitness is more likely to succeed that one that is resistant to change, although as the network becomes more and more performant, scalable and secure fewer changes to the protocol will be required.
## Do I have to do anything when there is an upgrade? {#do-i-have-to-do-anything-when-there-is-an-upgrade}
-Upgrades tend not to impact end-users except by providing better user-experiences and a more secure protocol and perhaps more options for how to interact with Ethereum. End uses are not required to actively participate in an upgrade, nor are they required to do anything to secure their assets. Node operators will need to update their clients to prepare for an upgrade. Some upgrades may lead to changes for application developers. For example, history expiry upgrades may lead application developers to grab historical data from new sources.
+Upgrades tend not to impact end-users except by providing better user-experiences and a more secure protocol and perhaps more options for how to interact with Ethereum. **Regular users are not required to actively participate in an upgrade, nor are they required to do anything** to secure their assets. [Node](/glossary/#node) operators will need to update their clients to prepare for an upgrade. Some upgrades may lead to changes for application developers. For example, history expiry upgrades may lead application developers to grab historical data from new sources.
## What about The Verge, The Splurge, etc? {#what-about-the-verge-splurge-etc}
-[Vitalik Buterin proposed a vision for the Ethereum roadmap](https://twitter.com/VitalikButerin/status/1588669782471368704) that was organized into several categories linked by their effects on Ethereum's architecture. It included:
+[Vitalik Buterin proposed a vision for the Ethereum roadmap](https://twitter.com/VitalikButerin/status/1741190491578810445) that was organized into several categories linked by their effects on Ethereum's architecture. It included:
-- The Merge: upgrades relating to the switch from proof-of-work to proof-of-stake
-- The Surge: upgrades related to scalability by rollups and data sharding
-- The Scourge: upgrades related to censorship resistance, decentralization and protocol risks from MEV
-- The Verge: upgrades related to verifying blocks more easily
-- The Purge: upgrades related to reducing the computational costs of running nodes and simplifying the protocol
-- The Splurge: other upgrades that don't fit well into the previous categories.
+- **The Merge**: upgrades relating to the switch from [proof-of-work](/glossary/#pow) to [proof-of-stake](/glossary/#pos)
+- **The Surge**: upgrades related to scalability by [rollups](/glossary/#rollups) and data sharding
+- **The Scourge**: upgrades related to censorship resistance, decentralization and protocol risks from [MEV](/glossary/#mev)
+- **The Verge**: upgrades related to verifying [blocks](/glossary/#block) more easily
+- **The Purge**: upgrades related to reducing the computational costs of running nodes and simplifying the protocol
+- **The Splurge**: other upgrades that don't fit well into the previous categories.
We decided not to use this terminology because we wanted to use a simpler and more user-centric model. Although we use user-centric language, the vision remains the same as the one proposed by Vitalik.
## What about sharding? {#what-about-sharding}
-Sharding is splitting up the Ethereum blockchain so that subsets of validators are only responsible for a fraction of the total data. This was originally intended to be the way for Ethereum to scale. However, layer 2 rollups have developed much faster than expected and have provided a lot of scaling already, and will provide much more after Proto-Danksharding is implemented. This means "shard chains" are no longer needed and have been dropped from the roadmap.
+Sharding is splitting up the Ethereum blockchain so that subsets of [validators](/glossary/#validator) are only responsible for a fraction of the total data. This was originally intended to be the way for Ethereum to scale. However, [layer 2](/glossary/#layer-2) rollups have developed much faster than expected and have provided a lot of scaling already, and will provide much more after Proto-Danksharding is implemented. This means "shard chains" are no longer needed and have been dropped from the roadmap.
## Looking for specific technical upgrades? {#looking-for-specific-technical-upgrades}
diff --git a/public/content/roadmap/merge/index.md b/public/content/roadmap/merge/index.md
index 385d930991b..ab2b155dc07 100644
--- a/public/content/roadmap/merge/index.md
+++ b/public/content/roadmap/merge/index.md
@@ -27,7 +27,7 @@ Imagine Ethereum is a spaceship that launched before it was quite ready for an i
## Merging with Mainnet {#merging-with-mainnet}
-Proof-of-work secured Ethereum Mainnet from genesis until The Merge. This allowed the Ethereum blockchain we're all used to to come into existence in July 2015 with all its familiar features—transactions, smart contracts, accounts, etc.
+Proof-of-work secured Ethereum Mainnet from genesis until The Merge. This allowed the Ethereum blockchain we're all used to come into existence in July 2015 with all its familiar features—transactions, smart contracts, accounts, etc.
Throughout Ethereum's history, developers prepared for an eventual transition away from proof-of-work to proof-of-stake. On December 1, 2020, the Beacon Chain was created as a separate blockchain to Mainnet, running in parallel.
diff --git a/public/content/roadmap/scaling/index.md b/public/content/roadmap/scaling/index.md
index f03957e830e..edfbba501c5 100644
--- a/public/content/roadmap/scaling/index.md
+++ b/public/content/roadmap/scaling/index.md
@@ -1,6 +1,6 @@
---
title: Scaling Ethereum
-description: Rollups batch transactions together off-chain, reducing costs for the user. However, the way rollups currently use data is currently too expensive, limiting how cheap transactions can be. Proto-Danksharding fixes this.
+description: Rollups batch transactions together off-chain, reducing costs for the user. However, the way rollups currently use data is too expensive, limiting how cheap transactions can be. Proto-Danksharding fixes this.
lang: en
image: /roadmap/roadmap-transactions.png
alt: "Ethereum roadmap"
@@ -11,7 +11,7 @@ Ethereum is scaled using [layer 2s](/layer-2/#rollups) (also known as rollups),
-
Today’s rollups are ~3-8x cheaper than Ethereum layer 1
+
Today’s rollups are ~5-20x cheaper than Ethereum layer 1
ZK-rollups will soon lower fees by ~40-100x
Upcoming changes to Ethereum will provide another ~100-1000x of scaling
Users should benefit from transactions costing less than $0.001
@@ -24,26 +24,29 @@ Rollups collect large numbers of transactions, execute them and submit the resul
### Proto-Danksharding {#proto-danksharding}
-Rollup data is stored on Ethereum permanently, which is expensive. Over 90% of the transaction cost users pay on rollups is due to this data storage. To reduce transaction costs, we can move the data into a new temporary 'blob' storage. Blobs are cheaper because they are not permanent; they get deleted from Ethereum once they are no longer needed. Storing rollup data long term becomes the responsibility of the people that need it, such as rollup operators, exchanges, indexing services etc. Adding blob transactions to Ethereum is part of an upgrade known as "Proto-Danksharding". It is expected to be shipped relatively soon—perhaps in late 2023.
+Rollup data has historically been stored on Ethereum permanently, which is expensive. Over 90% of the transaction cost users pay on rollups is due to this data storage. To reduce transaction costs, we can move the data into a new temporary 'blob' storage. Blobs are cheaper because they are not permanent; they get deleted from Ethereum once they are no longer needed. Storing rollup data long-term becomes the responsibility of the people that need it, such as rollup operators, exchanges, indexing services etc. Adding blob transactions to Ethereum is part of an upgrade known as "Proto-Danksharding".
-After blob transactions have become part of the Ethereum protocol through Proto-Danksharding, it will be possible to add many blobs to Ethereum blocks. This will be another substantial (>100x) scale-up to Ethereum’s throughput and scale-down to transaction costs.
+With Proto-Danksharding, it is possible to add many blobs to Ethereum blocks. This enables another substantial (>100x) scale-up to Ethereum’s throughput and scale-down to transaction costs.
### Danksharding {#danksharding}
-The second stage of expanding blob data is complicated because it requires new methods for checking rollup data is available on the network and relies on validators separating their block building and block proposal responsibilities. It also requires a way to cryptographically prove that validators have verified small subsets of the blob data.
+The second stage of expanding blob data is complicated because it requires new methods for checking rollup data is available on the network and relies on [validators](/glossary/#validator) separating their [block](/glossary/#block) building and block proposal responsibilities. It also requires a way to cryptographically prove that validators have verified small subsets of the blob data.
-This second step is known as [“Danksharding”](/roadmap/danksharding/). It is likely several years away from being fully implemented. Danksharding relies on other developments such as [separating block building and block proposal](/roadmap/pbs) and new network designs that enable the network to efficiently confirm that data is available by randomly sampling a few kilobytes at a time, known as [data availability sampling (DAS)](/developers/docs/data-availability).
+This second step is known as [“Danksharding”](/roadmap/danksharding/). **It is likely several years away** from being fully implemented. Danksharding relies on other developments such as [separating block building and block proposal](/roadmap/pbs) and new network designs that enable the network to efficiently confirm that data is available by randomly sampling a few kilobytes at a time, known as [data availability sampling (DAS)](/developers/docs/data-availability).
More on Danksharding
## Decentralizing rollups {#decentralizing-rollups}
-[Rollups](/layer-2) are already scaling Ethereum. A [rich ecosystem of rollup projects](https://l2beat.com/scaling/tvl) is enabling users to transact quickly and cheaply, with a range of security guarantees. However, rollups have been bootstrapped using centralized sequencers (computers that do all the transaction processing and aggregation before submitting them to Ethereum). This is vulnerable to censorship, because the sequencer operators can be sanctioned, bribed or otherwise compromised. At the same time, [rollups vary](https://l2beat.com) in the way they validate incoming data. The best way is for "provers" to submit fraud proofs or validity proofs, but not all rollups are there yet. Even those rollups that do use validity/fraud proofs use a small pool of known provers. Therefore, the next critical step in scaling Ethereum is to distribute responsibility for running sequencers and provers across more people.
+[Rollups](/layer-2) are already scaling Ethereum. A [rich ecosystem of rollup projects](https://l2beat.com/scaling/tvl) is enabling users to transact quickly and cheaply, with a range of security guarantees. However, rollups have been bootstrapped using centralized sequencers (computers that do all the transaction processing and aggregation before submitting them to Ethereum). This is vulnerable to censorship, because the sequencer operators can be sanctioned, bribed or otherwise compromised. At the same time, [rollups vary](https://l2beat.com) in the way they validate incoming data. The best way is for "provers" to submit [fraud proofs](/glossary/#fraud-proof) or validity proofs, but not all rollups are there yet. Even those rollups that do use validity/fraud proofs use a small pool of known provers. Therefore, the next critical step in scaling Ethereum is to distribute responsibility for running sequencers and provers across more people.
More on rollups
## Current progress {#current-progress}
-Proto-Danksharding is likely to be one of the earlier roadmap items to be implemented. The decentralized computation steps required to set it up are already underway and several clients have implemented prototypes for handling blob data. Full Danksharding is likely several years away, as it relies upon several other roadmap items being completed first. Decentralizing rollup infrastructure is likely to be a gradual process - there are many different rollups that are building slightly different systems and will fully decentralize at different rates.
+Proto-Danksharding is the first of these roadmap items to be implemented as part of the Cancun-Deneb ("Dencun") network upgrade in March of 2024.
+**Full Danksharding is likely several years away**, as it relies upon several other roadmap items being completed first. Decentralizing rollup infrastructure is likely to be a gradual process - there are many different rollups that are building slightly different systems and will fully decentralize at different rates.
+
+[More on the Dencun network upgrade](/roadmap/dencun/)
diff --git a/public/content/roadmap/security/index.md b/public/content/roadmap/security/index.md
index 10ac381d6d7..d7a382aa757 100644
--- a/public/content/roadmap/security/index.md
+++ b/public/content/roadmap/security/index.md
@@ -7,27 +7,27 @@ alt: "Ethereum roadmap"
template: roadmap
---
-Ethereum is already a very secure, decentralized smart-contract platform. However, there are still improvements that can be made so that Ethereum stays resilient to all kinds of attack far into the future. These include subtle changes to the way Ethereum clients deal with competing blocks, as well as increasing the speed the network considers blocks to be ["finalized"](/developers/docs/consensus-mechanisms/pos/#finality) (meaning they can't be changed without extreme economic losses to an attacker).
+**Ethereum is already a very secure**, decentralized [smart-contract](/glossary/#smart-contract) platform. However, there are still improvements that can be made so that Ethereum stays resilient to all kinds of attack far into the future. These include subtle changes to the way [Ethereum clients](/glossary/#consensus-client) deal with competing [blocks](/glossary/#block), as well as increasing the speed the network considers blocks to be ["finalized"](/developers/docs/consensus-mechanisms/pos/#finality) (meaning they can't be changed without extreme economic losses to an attacker).
-There are also improvements that make censoring transactions much more difficult by making block proposers blind to the actual contents of their blocks, and new ways to identify when a client is censoring. Together these improvements will upgrade the proof-of-stake protocol so that users - from individuals to corporations - have instant confidence in their apps, data and assets on Ethereum.
+There are also improvements that make censoring transactions much more difficult by making block proposers blind to the actual contents of their blocks, and new ways to identify when a client is censoring. Together these improvements will upgrade the [proof-of-stake](/glossary/#pos) protocol so that users - from individuals to corporations - have instant confidence in their apps, data and assets on Ethereum.
## Staking withdrawals {#staking-withdrawals}
-The upgrade from proof-of-work to proof-of-stake began with Ethereum pioneers “staking” their ETH in a deposit contract. That ETH is used to protect the network. However, that ETH cannot yet be unlocked and returned to the users. Allowing ETH to be withdrawn is a critical part of the proof-of-stake upgrade. In addition to withdrawals being a critical component of a fully-functional proof-of-stake protocol, allowing withdrawals is also good for Ethereum security as it allows stakers to use their ETH rewards for other non-staking purposes. This means users that want liquidity do not have to rely upon liquid staking derivatives (LSDs) that can be a centralizing force on Ethereum. This upgrade is scheduled to be completed on April 12, 2023.
+The upgrade from [proof-of-work](/glossary/#pow) to proof-of-stake began with Ethereum pioneers “staking” their ETH in a deposit contract. That ETH is used to protect the network. There has been a second update on April 12, 2023 to allow withdraw the staked ETH. Since then validators can freely stake or withdraw ETH.
Read about withdrawals
## Defending against attacks {#defending-against-attacks}
-Even after withdrawals there are improvements that can be made to Ethereum's [proof-of-stake](/developers/docs/consensus-mechanisms/pos/) protocol. One is known as [view-merge](https://ethresear.ch/t/view-merge-as-a-replacement-for-proposer-boost/13739) - a more secure fork-choice algorithm that makes certain sophisticated types of attack more difficult.
+There are improvements that can be made to Ethereum's proof-of-stake protocol. One is known as [view-merge](https://ethresear.ch/t/view-merge-as-a-replacement-for-proposer-boost/13739) - a more secure [fork](/glossary/#fork)-choice algorithm that makes certain sophisticated types of attack more difficult.
-Reducing the time Ethereum takes to finalize blocks would provide a better user experience and prevent sophisticated "reorg" attacks where attackers try to reshuffle very recent blocks to extract profit or censor certain transactions. [**Single slot finality (SSF)**](/roadmap/single-slot-finality/) is a way to minimize the finalization delay. Right now there are 15 mins worth of blocks that an attacker could theoretically convince other validators to reconfigure. With SSF, there are 0. Users, from individuals to apps and exchanges, benefit from fast assurance that their transactions will not be reverted, and the network benefits by shutting down a whole class of attacks.
+Reducing the time Ethereum takes to [finalize](/glossary/#finality) blocks would provide a better user experience and prevent sophisticated "reorg" attacks where attackers try to reshuffle very recent blocks to extract profit or censor certain transactions. [**Single slot finality (SSF)**](/roadmap/single-slot-finality/) is a **way to minimize the finalization delay**. Right now there are 15 mins worth of blocks that an attacker could theoretically convince other validators to reconfigure. With SSF, there are 0. Users, from individuals to apps and exchanges, benefit from fast assurance that their transactions will not be reverted, and the network benefits by shutting down a whole class of attacks.
Read about single slot finality
## Defending against censorship {#defending-against-censorship}
-Decentralization prevents individuals or small groups of validators from becoming too influential. New staking technologies can help to ensure Ethereum's validators stay as decentralized as possible while also defending them against hardware, software and network failures. This includes software that shares validator responsibilities across multiple nodes. This is known as **distributed validator technology (DVT)**. Staking pools are incentivized to use DVT because it allows multiple computers to collectively participate in validation, adding redundancy and fault-tolerance. It also splits validator keys across several systems, rather than having single operators running multiple validators. This makes it harder for dishonest operators to coordinate attacks on Ethereum. Overall, the idea is to derive security benefits by running validators as _communities_ rather than as individuals.
+Decentralization prevents individuals or small groups of [validators](/glossary/#validator) from becoming too influential. New staking technologies can help to ensure Ethereum's validators stay as decentralized as possible while also defending them against hardware, software and network failures. This includes software that shares validator responsibilities across multiple [nodes](/glossary/#node). This is known as **distributed validator technology (DVT)**. [Staking pools](/glossary/#staking-pool) are incentivized to use DVT because it allows multiple computers to collectively participate in validation, adding redundancy and fault-tolerance. It also splits validator keys across several systems, rather than having single operators running multiple validators. This makes it harder for dishonest operators to coordinate attacks on Ethereum. Overall, the idea is to derive security benefits by running validators as _communities_ rather than as individuals.
Read about distributed validator technology
@@ -45,4 +45,4 @@ It is possible that a sophisticated attacker could identify upcoming validators
## Current progress {#current-progress}
-Security upgrades on the roadmap are in advanced stages of research, but they are not expected to be implemented for some time. The next steps for view-merge, PBS, SSF and SLE is to finalize a specification and start building prototypes.
+**Security upgrades on the roadmap are in advanced stages of research**, but they are not expected to be implemented for some time. The next steps for view-merge, PBS, SSF and SLE is to finalize a specification and start building prototypes.
diff --git a/public/content/roadmap/single-slot-finality/index.md b/public/content/roadmap/single-slot-finality/index.md
index d680b3166d1..6ee3f5e62ed 100644
--- a/public/content/roadmap/single-slot-finality/index.md
+++ b/public/content/roadmap/single-slot-finality/index.md
@@ -58,7 +58,7 @@ The problem with scaling aggregation by growing the number of validators per sub
## Current progress {#current-progress}
-SSF is in the research phase. It is not expected to ship for several years, likely after other substantial upgrades such as [Verkle trees](/roadmap/verkle-trees/) and [Danksharding](/roadmap/danksharding]).
+SSF is in the research phase. It is not expected to ship for several years, likely after other substantial upgrades such as [Verkle trees](/roadmap/verkle-trees/) and [Danksharding](/roadmap/danksharding/).
## Further reading {#further-reading}
diff --git a/public/content/roadmap/user-experience/index.md b/public/content/roadmap/user-experience/index.md
index 3f38666e539..c3a9c61a20d 100644
--- a/public/content/roadmap/user-experience/index.md
+++ b/public/content/roadmap/user-experience/index.md
@@ -7,19 +7,19 @@ alt: "Ethereum roadmap"
template: roadmap
---
-Using Ethereum needs to be simplified; from managing keys and wallets to initiating transactions. To facilitate mass adoption, Ethereum must drastically increase the ease of use, allowing users to experience permissionless and censorship-resistant access to Ethereum with the frictionless experience of using Web2 apps.
+**Using Ethereum needs to be simplified**; from managing [keys](/glossary/#key) and [wallets](/glossary/#wallet) to initiating transactions. To facilitate mass adoption, Ethereum must drastically increase the ease of use, allowing users to experience permissionless and censorship-resistant access to Ethereum with the frictionless experience of using [Web2](/glossary/#web2) apps.
## Beyond seed phrases {#no-more-seed-phrases}
Ethereum accounts are protected by a pair of keys used to identify accounts (public key) and sign messages (private key). A private key is like a master password; it allows complete access to an Ethereum account. This is a different way of operating for people more familiar with banks and Web2 apps which manage accounts on a user's behalf. For Ethereum to reach mass adoption without relying on centralized third parties, there must be a straightforward, frictionless way for a user to take custody of their assets and keep control of their data without having to understand public-private key cryptography and key management.
-The solution to this is using smart contract wallets to interact with Ethereum. Smart contract wallets create ways to protect accounts if the keys are lost or stolen, opportunities for better fraud detection and defense, and allow wallets to get new functionality. Although smart contract wallets exist today, they are awkward to build because the Ethereum protocol needs to support them better. This additional support is known as account abstraction.
+The solution to this is using [smart contract](/glossary/#smart-contract) wallets to interact with Ethereum. Smart contract wallets create ways to protect accounts if the keys are lost or stolen, opportunities for better fraud detection and defense, and allow wallets to get new functionality. Although smart contract wallets exist today, they are awkward to build because the Ethereum protocol needs to support them better. This additional support is known as account abstraction.
More on account abstraction
## Nodes for everyone
-Users running nodes do not have to trust third parties to provide them with data, and they can interact quickly, privately, and permissionlessly with the Ethereum blockchain. However, running a node right now requires technical knowledge and substantial disk space, meaning many people must trust intermediaries instead.
+Users running [nodes](/glossary/#node) do not have to trust third parties to provide them with data, and they can interact quickly, privately, and permissionlessly with the Ethereum [blockchain](/glossary/#blockchain). However, running a node right now requires technical knowledge and substantial disk space, meaning many people must trust intermediaries instead.
There are several upgrades that will make running nodes far easier and far less resource intensive. The way data is stored will be changed to use a more space-efficient structure known as a **Verkle Tree**. Also, with [statelessness](/roadmap/statelessness) or [data expiry](/roadmap/statelessness/#data-expiry), Ethereum nodes will not need to store a copy of the entire Ethereum state data, drastically reducing hard disk space requirements. [Light nodes](/developers/docs/nodes-and-clients/light-clients/) will offer many benefits of running a full node but can run easily on mobile phones or inside simple browser apps.
@@ -29,8 +29,8 @@ With these upgrades, the barriers to running a node are reduced to effectively z
## Current progress {#current-progress}
-Smart contract wallets are already available, but more upgrades are required to make them as decentralized and permissionless as possible. EIP-4337 is a mature proposal that does not require any changes to Ethereum's protocol. The main smart contract required for EIP-4337 was deployed in March 2023.
+Smart contract wallets are already available, but more upgrades are required to make them as decentralized and permissionless as possible. EIP-4337 is a mature proposal that does not require any changes to Ethereum's protocol. The main smart contract required for EIP-4337 was **deployed in March 2023**.
-Full statelessness is still in the research phase and is likely several years away from being implemented. There are several milestones on the road to full statelessness, including data expiry, that may be implemented sooner. Other roadmap items, such as [Verkle Trees](/roadmap/verkle-trees/) and [Proposer-builder separation](/roadmap/pbs/) need to be completed first.
+**Full statelessness is still in the research phase** and is likely several years away from being implemented. There are several milestones on the road to full statelessness, including data expiry, that may be implemented sooner. Other roadmap items, such as [Verkle Trees](/roadmap/verkle-trees/) and [Proposer-builder separation](/roadmap/pbs/) need to be completed first.
Verkle tree testnets are already up and running, and the next phase is running Verkle-tree enabled clients on private, then public testnets. You can help accelerate progress by deploying contracts to the testnets or running testnet clients.
diff --git a/public/content/security/index.md b/public/content/security/index.md
index 47a12678462..5859fc1b844 100644
--- a/public/content/security/index.md
+++ b/public/content/security/index.md
@@ -10,105 +10,11 @@ With interest in cryptocurrencies growing, learning best practices when using cr
-## Web security 101 {#web-security}
-
-### Use strong passwords {#use-strong-passwords}
-
-[Over 80% of account hacks are a result of weak or stolen passwords](https://cloudnine.com/ediscoverydaily/electronic-discovery/80-percent-hacking-related-breaches-related-password-issues-cybersecurity-trends/). A long combination of characters, numbers and symbols is best to keep your accounts secure.
-
-A common mistake individuals make is using a combination of two to three common, related dictionary words. Passwords like this are insecure because they are prone to a simple hacking technique known as a [dictionary attack](https://wikipedia.org/wiki/Dictionary_attack).
-
-```md
-Example of a weak password: CuteFluffyKittens!
-
-Example of a strong password: ymv\*azu.EAC8eyp8umf
-```
-
-Another common mistake is using passwords that can be easily guessed or found out through [social engineering](). Including your mother's maiden name, the names of your children or pets, or dates of birth in your password is not secure and will increase the risk of your password getting hacked.
-
-#### Good password practices: {#good-password-practices}
-
-- Make passwords as long as allowed by either your password generator or the form you're filling out
-- Use a mixture of uppercase, lowercase, numbers and symbols
-- Don't use personal details, such as family names, in your password
-- Avoid common dictionary words
-
-[More on creating strong passwords](https://terranovasecurity.com/how-to-create-a-strong-password-in-7-easy-steps/)
-
-### Use unique passwords for everything {#use-unique-passwords}
-
-A strong password doesn't provide as much protection if the password is revealed in a data breach. The website [Have I Been Pwned](https://haveibeenpwned.com) allows you to check if your accounts were involved in any data breaches stored in their database. If they have, **you should change pwned passwords immediately**. Using unique passwords for every account lowers the risk of hackers getting access to all of your accounts when one of your passwords is compromised.
-
-### Use a password manager {#use-password-manager}
-
-
-
- Using a password manager takes care of creating strong, unique passwords and remembering them! We strongly recommend using one, and most of them are free!
-
-
-
-Remembering strong, unique passwords for every account you have isn't ideal. A password manager offers a secure, encrypted store for all your passwords that you can access through one strong master password. They also suggest strong passwords when signing up for a new service, so you don't have to create your own. Many password managers will also tell you if you have been involved in a data breach, allowing you to change the passwords before any malicious attacks.
-
-![Example of using a password manager](./passwordManager.png)
-
-#### Try a password manager: {#try-password-manager}
-
-- [Bitwarden](https://bitwarden.com/)
-- [KeePass](https://keepass.info/)
-- [1Password](https://1password.com/)
-- Or check out other [recommended password managers](https://www.privacytools.io/secure-password-manager)
-
-### Use Two-Factor Authentication {#two-factor-authentication}
-
-To prove you are actually you, there are different unique proofs that can be used for authentication. These are known as **factors** and the three main factors are:
-
-- Something you know (such as a password or security question)
-- Something you are (such as a fingerprint or iris/facial scanner)
-- Something you own (a security key or authentication app on your phone)
-
-Using **Two-Factor Authentication (2FA)** provides an additional *security factor* for your online accounts so that knowing your password alone (something you know) is not enough to access an account. Most commonly, the second factor is a randomized 6-digit code, known as a **time-based one-time password (TOTP)**, that you can access through an authenticator app such as Google Authenticator or Authy. These work as a "something you own" factor because the seed that generates the timed code is stored on your device.
-
-
-
-
-
-#### Security keys {#security-keys}
-
-For those who want to take the next step in 2FA, consider using a security key. Security keys are physical hardware authentication devices that work in the same way as authenticator apps. Using a security key is the most secure way to 2FA. Many of these keys utilize the FIDO Universal 2nd Factor (U2F) standard. [Learn more about FIDO U2F](https://www.yubico.com/authentication-standards/fido-u2f/).
-
-Watch more on the 2FA:
-
-
-
-### Uninstall browser extensions {#uninstall-browser-extensions}
-
-Browser extensions like Chrome extensions or Add-ons for Firefox can augment useful browser functionality and improve user experience, but they come with risks. By default, most browser extensions ask for access to 'read and change site data', allowing them to do almost anything with your data. Chrome extensions are always automatically updated, so a previously safe extension may update later to include malicious code. Most browser extensions are not trying to steal your data, but you should be aware that they can.
-
-#### Stay safe by: {#browser-extension-safety}
-
-- Only install browser extensions from trusted sources
-- Removing unused browser extensions
-- Install Chrome extensions locally to stop auto-updating (Advanced)
-
-[More on the risks of browser extensions](https://www.kaspersky.co.uk/blog/browser-extensions-security/12750/)
-
-
-
## Crypto security 101 {#crypto-security}
### Level up your knowledge {#level-up-your-knowledge}
-One of the biggest reasons people get scammed in crypto generally is a lack of understanding. For example, if you don't understand that the Ethereum network is decentralized and owned by no one, then it's easy to fall prey to someone pretending to be a customer service agent that promises to return your lost ETH in exchange for your private keys. Educating yourself on how Ethereum works is a worthwhile investment.
+One of the biggest reasons people get scammed in crypto generally is a lack of understanding. For example, if you don't understand that the Ethereum network is decentralized and owned by no one, then it's easy to fall prey to someone pretending to be a customer service agent that promises to return your lost ETH in exchange for your [private keys](/glossary/#private-key). Educating yourself on how Ethereum works is a worthwhile investment.
What is Ethereum?
@@ -121,19 +27,19 @@ One of the biggest reasons people get scammed in crypto generally is a lack of u
## Wallet security {#wallet-security}
-### Don't give out your private keys {#protect-private-keys}
+### Don't give out your recovery phrase {#protect-recovery-phrase}
-**Never, for any reason, share your private keys!**
+**Never, for any reason, share your recovery phrase!**
-The private key to your wallet acts as a password to your Ethereum wallet. It is the only thing stopping someone who knows your wallet address from draining your account of all of its assets!
+The recovery phrase to your wallet acts as a password to your Ethereum wallet. It is the only thing stopping someone who knows your wallet address from draining your account of all of its assets!
What's an Ethereum wallet?
-#### Don't take screenshots of your seed phrases/private keys {#screenshot-private-keys}
+#### Don't take screenshots of your recovery phrase {#screenshot-recovery-phrase}
-By screenshotting your seed phrases or private keys, you risk syncing them to the cloud and potentially making them accessible to hackers. Obtaining private keys from the cloud is a common attack vector for hackers.
+By screenshotting your recovery phrase, you risk syncing them to the cloud and potentially making them accessible to hackers. Obtaining the recovery phrase from the cloud is a common attack vector for hackers.
### Use a hardware wallet {#use-hardware-wallet}
@@ -151,7 +57,7 @@ Keeping private keys offline massively reduces the risk of being hacked, even if
Accidentally sending crypto to the wrong wallet address is a common mistake. **A transaction sent on Ethereum is irreversible.** Unless you know the address owner and can convince them to send you your fund back, there will be no way for you to retrieve your funds.
Always make sure the address you are sending to exactly matches the desired recipient's address before sending a transaction.
-It is also recommended when interacting with a smart contract to read the transaction message before signing.
+It is also recommended when interacting with a [smart contract](/glossary/#smart-contract) to read the transaction message before signing.
### Set smart contract spend limits {#spend-limits}
@@ -171,19 +77,29 @@ Scammers are always looking for ways to take your funds off you. It is impossibl
- no one is going to give you free or discounted ETH
- no one needs access to your private keys or personal information
+### Twitter ad phishing {#ad-phishing}
+
+![Twitter link phishing](./twitterPhishingScam.png)
+
+There is a method for spoofing Twitter's (also known as X) link preview feature (unfurling) to potentially deceive users into thinking they are visiting a legitimate website. This technique exploits Twitter's mechanism for generating previews of URLs shared in tweets, and shows _from ethereum.org_ for example (shown above), when in fact they are being redirected to a malicious site.
+
+Always check that you are on the right domain, especially after clicking a link.
+
+[More information here](https://harrydenley.com/faking-twitter-unfurling).
+
### Giveaway scam {#giveaway}
One of the most common scams in cryptocurrency is the giveaway scam. The giveaway scam can take many forms, but the general premise is that if you send ETH to the provided wallet address, you will receive your ETH back but doubled. *For this reason, it is also known as the 2-for-1 scam.*
These scams usually stipulate a limited time of opportunity to claim the giveaway to encourage poor decision-making and create a false sense of urgency.
-#### Social media hacks {#social-media-hacks}
+### Social media hacks {#social-media-hacks}
A high-profile version of this occurred in July 2020, when the Twitter accounts of prominent celebrities and organizations got hacked. The hacker simultaneously posted a Bitcoin giveaway on the hacked accounts. Although the deceptive tweets were quickly noticed and deleted, the hackers still managed to get away with 11 bitcoin (or $500,000 as of September 2021).
![A scam on Twitter](./appleTwitterScam.png)
-#### Celebrity giveaway {#celebrity-giveaway}
+### Celebrity giveaway {#celebrity-giveaway}
The celebrity giveaway is another common form the giveaway scam takes. The scammers will take a recorded video interview or conference talk given a celebrity and livestream it on YouTube - making it appear as though the celebrity was giving a live video interview endorsing a cryptocurrency giveaway.
@@ -215,7 +131,7 @@ As a general rule, staff will never communicate with you through private, unoffi
### 'Eth2' token scam {#eth2-token-scam}
-In the run-up to [The Merge](/roadmap/merge/), scammers took advantage of the confusion around the term 'Eth2' to try and get users to redeem their ETH for an 'ETH2' token. There is no 'ETH2', and no other legitimate token was introduced with The Merge. The ETH that you owned before The Merge is the same ETH now. There is **no need to take any action related to your ETH to account for the switch from proof-of-work to proof-of-stake**.
+In the run-up to [The Merge](/roadmap/merge/), scammers took advantage of the confusion around the term 'Eth2' to try and get users to redeem their ETH for an 'ETH2' token. There is no 'ETH2', and no other legitimate token was introduced with The Merge. The ETH that you owned before The Merge is the same ETH now. There is **no need to take any action related to your ETH to account for the switch from [proof-of-work](/glossary/#pow) to [proof-of-stake](/glossary/#pos)**.
Scammers may appear as "support", telling you that if you deposit your ETH, you will receive back 'ETH2'. There is no [official Ethereum support](/community/support/), and there is no new token. Never share your wallet seed phrase with anyone.
@@ -261,12 +177,106 @@ Some things to remember:
### Airdrop scams {#airdrop-scams}
-Airdrop scams involve a scam project airdropping an asset (NFT, token) into your wallet and sending you to a scam website to claim the airdropped asset. You will get prompted to sign in with your Ethereum wallet and "approve" a transaction when attempting to claim. This transaction compromises your account by sending your public and private keys to the scammer. An alternative form of this scam may have you confirm a transaction that sends funds to the scammer's account.
+Airdrop scams involve a scam project airdropping an asset ([NFT](/glossary/#nft), token) into your wallet and sending you to a scam website to claim the airdropped asset. You will get prompted to sign in with your Ethereum wallet and "approve" a transaction when attempting to claim. This transaction compromises your account by sending your public and private keys to the scammer. An alternative form of this scam may have you confirm a transaction that sends funds to the scammer's account.
[More on airdrop scams](https://www.youtube.com/watch?v=LLL_nQp1lGk)
+## Web security 101 {#web-security}
+
+### Use strong passwords {#use-strong-passwords}
+
+[Over 80% of account hacks are a result of weak or stolen passwords](https://cloudnine.com/ediscoverydaily/electronic-discovery/80-percent-hacking-related-breaches-related-password-issues-cybersecurity-trends/). A long combination of characters, numbers and symbols is best to keep your accounts secure.
+
+A common mistake individuals make is using a combination of two to three common, related dictionary words. Passwords like this are insecure because they are prone to a simple hacking technique known as a dictionary attack.
+
+```md
+Example of a weak password: CuteFluffyKittens!
+
+Example of a strong password: ymv\*azu.EAC8eyp8umf
+```
+
+Another common mistake is using passwords that can be easily guessed or found out through [social engineering](). Including your mother's maiden name, the names of your children or pets, or dates of birth in your password is not secure and will increase the risk of your password getting hacked.
+
+#### Good password practices: {#good-password-practices}
+
+- Make passwords as long as allowed by either your password generator or the form you're filling out
+- Use a mixture of uppercase, lowercase, numbers and symbols
+- Don't use personal details, such as family names, in your password
+- Avoid common dictionary words
+
+[More on creating strong passwords](https://terranovasecurity.com/how-to-create-a-strong-password-in-7-easy-steps/)
+
+### Use unique passwords for everything {#use-unique-passwords}
+
+A strong password doesn't provide as much protection if the password is revealed in a data breach. The website [Have I Been Pwned](https://haveibeenpwned.com) allows you to check if your accounts were involved in any data breaches stored in their database. If they have, **you should change pwned passwords immediately**. Using unique passwords for every account lowers the risk of hackers getting access to all of your accounts when one of your passwords is compromised.
+
+### Use a password manager {#use-password-manager}
+
+
+
+ Using a password manager takes care of creating strong, unique passwords and remembering them! We strongly recommend using one, and most of them are free!
+
+
+
+Remembering strong, unique passwords for every account you have isn't ideal. A password manager offers a secure, encrypted store for all your passwords that you can access through one strong master password. They also suggest strong passwords when signing up for a new service, so you don't have to create your own. Many password managers will also tell you if you have been involved in a data breach, allowing you to change the passwords before any malicious attacks.
+
+![Example of using a password manager](./passwordManager.png)
+
+#### Try a password manager: {#try-password-manager}
+
+- [Bitwarden](https://bitwarden.com/)
+- [KeePass](https://keepass.info/)
+- [1Password](https://1password.com/)
+- Or check out other [recommended password managers](https://www.privacytools.io/secure-password-manager)
+
+### Use Two-Factor Authentication {#two-factor-authentication}
+
+To prove you are actually you, there are different unique proofs that can be used for authentication. These are known as **factors** and the three main factors are:
+
+- Something you know (such as a password or security question)
+- Something you are (such as a fingerprint or iris/facial scanner)
+- Something you own (a security key or authentication app on your phone)
+
+Using **Two-Factor Authentication (2FA)** provides an additional *security factor* for your online accounts so that knowing your password alone (something you know) is not enough to access an account. Most commonly, the second factor is a randomized 6-digit code, known as a **time-based one-time password (TOTP)**, that you can access through an authenticator app such as Google Authenticator or Authy. These work as a "something you own" factor because the seed that generates the timed code is stored on your device.
+
+
+
+
+
+#### Security keys {#security-keys}
+
+For those who want to take the next step in 2FA, consider using a security key. Security keys are physical hardware authentication devices that work in the same way as authenticator apps. Using a security key is the most secure way to 2FA. Many of these keys utilize the FIDO Universal 2nd Factor (U2F) standard. [Learn more about FIDO U2F](https://www.yubico.com/authentication-standards/fido-u2f/).
+
+Watch more on the 2FA:
+
+
+
+### Uninstall browser extensions {#uninstall-browser-extensions}
+
+Browser extensions like Chrome extensions or Add-ons for Firefox can augment useful browser functionality and improve user experience, but they come with risks. By default, most browser extensions ask for access to 'read and change site data', allowing them to do almost anything with your data. Chrome extensions are always automatically updated, so a previously safe extension may update later to include malicious code. Most browser extensions are not trying to steal your data, but you should be aware that they can.
+
+#### Stay safe by: {#browser-extension-safety}
+
+- Only install browser extensions from trusted sources
+- Removing unused browser extensions
+- Install Chrome extensions locally to stop auto-updating (Advanced)
+
+[More on the risks of browser extensions](https://www.kaspersky.co.uk/blog/browser-extensions-security/12750/)
+
+
+
## Further reading {#further-reading}
### Web security {#reading-web-security}
diff --git a/public/content/security/twitterPhishingScam.png b/public/content/security/twitterPhishingScam.png
new file mode 100644
index 00000000000..7e62646db4f
Binary files /dev/null and b/public/content/security/twitterPhishingScam.png differ
diff --git a/public/content/smart-contracts/index.md b/public/content/smart-contracts/index.md
index 7bd00225802..64bf7d73a62 100644
--- a/public/content/smart-contracts/index.md
+++ b/public/content/smart-contracts/index.md
@@ -6,11 +6,15 @@ lang: en
# Introduction to smart contracts {#introduction-to-smart-contracts}
-Smart contracts are the fundamental building blocks of Ethereum's application layer. They are computer programs stored on the blockchain that follow "if this then that" logic, and are guaranteed to execute according to the rules defined by its code, which cannot be changed once created.
+Smart contracts are the fundamental building blocks of Ethereum's application layer. They are computer programs stored on the [blockchain](/glossary/#blockchain) that follow "if this then that" logic, and are guaranteed to execute according to the rules defined by its code, which cannot be changed once created.
Nick Szabo coined the term "smart contract". In 1994, he wrote [an introduction to the concept](https://www.fon.hum.uva.nl/rob/Courses/InformationInSpeech/CDROM/Literature/LOTwinterschool2006/szabo.best.vwh.net/smart.contracts.html), and in 1996 he wrote [an exploration of what smart contracts could do](https://www.fon.hum.uva.nl/rob/Courses/InformationInSpeech/CDROM/Literature/LOTwinterschool2006/szabo.best.vwh.net/smart_contracts_2.html).
-Szabo envisioned a digital marketplace where automatic, cryptographically-secure processes enable transactions and business functions to happen without trusted intermediaries. Smart contracts on Ethereum put this vision into practice.
+Szabo envisioned a digital marketplace where automatic, [cryptographically-secure](/glossary/#cryptography) processes enable transactions and business functions to happen without trusted intermediaries. Smart contracts on Ethereum put this vision into practice.
+
+Watch Finematics explain smart contracts:
+
+
## Trust in conventional contracts {#trust-and-contracts}
@@ -60,21 +64,15 @@ Finally, like traditional contracts, you can check what's in a smart contract be
Smart contracts can do essentially anything that computer programs can do.
-They can perform computations, create currency, store data, mint NFTs, send communications and even generate graphics. Here are some popular, real-world examples:
+They can perform computations, create currency, store data, mint [NFTs](/glossary/#nft), send communications and even generate graphics. Here are some popular, real-world examples:
- [Stablecoins](/stablecoins/)
- [Creating and distributing unique digital assets](/nft/)
- [An automatic, open currency exchange](/get-eth/#dex)
-- [Decentralized gaming](/dapps/?category=gaming)
+- [Decentralized gaming](/dapps/?category=gaming#explore)
- [An insurance policy that pays out automatically](https://etherisc.com/)
- [A standard that lets people create customized, interoperable currencies](/developers/docs/standards/tokens/)
-## More of a visual learner? {#visual-learner}
-
-Watch Finematics explain smart contracts:
-
-
-
## Further reading {#further-reading}
- [How Smart Contracts Will Change the World](https://www.youtube.com/watch?v=pA6CGuXEKtQ)
diff --git a/public/content/social-networks/index.md b/public/content/social-networks/index.md
index 8becb117c1a..b8c1c5940e8 100644
--- a/public/content/social-networks/index.md
+++ b/public/content/social-networks/index.md
@@ -15,17 +15,19 @@ Social networks play a massive role in our daily communications and interactions
## What are decentralized social networks? {#what-are-decentralized-social-networks}
-Decentralized social networks are blockchain-based platforms that allow users to exchange information as well as publish and distribute content to audiences. Because these applications run on the blockchain, they are capable of being decentralized and resistant to censorship and undue control.
+Decentralized social networks are [blockchain-based](/glossary/#blockchain) platforms that allow users to exchange information as well as publish and distribute content to audiences. Because these applications run on the blockchain, they are capable of being decentralized and resistant to censorship and undue control.
Many decentralized social networks exist as alternatives to established social media services, such as Facebook, LinkedIn, Twitter, and Medium. But blockchain-powered social networks have a number of features that put them ahead of traditional social platforms.
+
+
### How do decentralized social networks work? {#decentralized-social-networks-overview}
-Decentralized social networks are a class of [decentralized applications (dapps)](/dapps/)—applications powered by [smart contracts](/developers/docs/smart-contracts/) deployed on the blockchain. The contract code serves as the backend for these apps and defines their business logic.
+Decentralized social networks are a class of [decentralized applications (dapps)](/dapps/)—applications powered by [smart contracts](/glossary/#smart-contract) deployed on the blockchain. The contract code serves as the backend for these apps and defines their business logic.
Traditional social media platforms rely on databases to store user information, program code, and other forms of data. But this creates single points-of-failure and introduces significant risk. For instance, Facebook's servers infamously [went offline for hours](https://www.npr.org/2021/10/05/1043211171/facebook-instagram-whatsapp-outage-business-impact) last year, cutting off users from the platform.
-Decentralized social networks exist on a peer-to-peer network comprising thousands of nodes around the globe. Even if some nodes fail, the network will run uninterrupted, making applications resistant to failures and outages.
+Decentralized social networks exist on a [peer-to-peer network](/glossary/#peer-to-peer-network) comprising thousands of nodes around the globe. Even if some nodes fail, the network will run uninterrupted, making applications resistant to failures and outages.
Using decentralized storage systems like [the InterPlanetary File System (IPFS)](https://ipfs.io/), social networks built on Ethereum can protect user information from exploitation and malicious use. No one will sell your personal information to advertisers, neither will hackers be able to steal your confidential details.
@@ -33,68 +35,54 @@ Many blockchain-based social platforms have native tokens that power monetizatio
## Benefits of decentralized social networks {#benefits}
-1. Decentralized social networks are censorship-resistant and open to everyone. This means users cannot be banned, deplatformed, or restricted arbitrarily.
+1. Decentralized social networks are censorship-resistant and open to everyone. This means **users cannot be banned**, deplatformed, or restricted arbitrarily.
-2. Decentralized social networks are built on open-source ideals and make source code for applications available for public inspection. By eliminating the implementation of opaque algorithms common in traditional social media, blockchain-based social networks can align the interests of users and platform creators.
+2. Decentralized social networks are **built on open-source ideals** and make source code for applications available for public inspection. By eliminating the implementation of opaque algorithms common in traditional social media, blockchain-based social networks can align the interests of users and platform creators.
-3. Decentralized social networks eliminate the "middle-man". Content creators have direct ownership over their content, and they engage directly with followers, fans, buyers, and other parties, with nothing but a smart contract in between.
+3. Decentralized social networks eliminate the "middle-man". Content **creators have direct ownership over their content**, and they engage directly with followers, fans, buyers, and other parties, with nothing but a smart contract in between.
-4. As dapps running on the Ethereum network, which is sustained by a global, peer-to-peer network of nodes, decentralized social networks are less susceptible to server downtime and outages.
+4. As dapps running on the Ethereum network, which is sustained by a global, peer-to-peer network of nodes, decentralized social networks are **less susceptible to server downtime** and outages.
-5. Decentralized social platforms offer an improved monetization framework for content creators via non-fungible tokens (NFTs), in-app crypto payments, and more.
+5. Decentralized social platforms offer an **improved monetization** framework for content creators via [non-fungible tokens (NFTs)](/glossary/#nft), in-app crypto payments, and more.
-6. Decentralized social networks afford users a high level of privacy and anonymity. For instance, an individual can sign in to an Ethereum-based social network using an ENS profile or wallet—without having to share personally identifiable information (PII), such as names, email addresses, etc.
+6. Decentralized social networks afford users **a high level of privacy and anonymity**. For instance, an individual can sign in to an Ethereum-based social network using an [ENS](/glossary/#ens) profile or [wallet](/glossary/#wallet)—without having to share personally identifiable information (PII), such as names, email addresses, etc.
7. Decentralized social networks rely on decentralized storage, not centralized databases, which are considerably better for safeguarding user data.
## Decentralized social networks on Ethereum {#ethereum-social-networks}
-The Ethereum network has become the preferred tool for developers creating decentralized social media owing to the popularity of its tokens (ERC-20/ERC-721) and its massive user base. Here are some examples of Ethereum-based social networks:
-
-### Peepeth {#peepeth}
-
-[Peepeth](https://peepeth.com/) is a microblogging platform similar to Twitter. It runs on the Ethereum blockchain and uses IPFS to store user data.
-
-Users can send short messages called "Peeps", which cannot be deleted or modified. You can collect tips or tip anyone on the platform in ether (ETH) without leaving the app.
+The Ethereum network has become the preferred tool for developers creating decentralized social media owing to the popularity of its tokens and its massive user base. Here are some examples of Ethereum-based social networks:
### Mirror {#mirror}
[Mirror](https://mirror.xyz/) is a web3-enabled writing platform that aims to be decentralized and user-owned. Users can read and write for free on Mirror by simply connecting their wallets. Users can also collect writing and subscribe to their favorite writers.
-Posts published on Mirror are permanently stored on Arweave, a decentralized storage platform, and can be minted as collectable [non-fungible tokens (NFTs)](/nft/) known as Writing NFTs. Writing NFTs are completely free for writers to create, and collection happens on an Ethereum L2 — making transactions inexpensive, fast, and environmentally friendly.
+Posts published on Mirror are permanently stored on Arweave, a decentralized storage platform, and can be minted as collectable [non-fungible tokens (NFTs)](/nft/) known as Writing NFTs. Writing NFTs are completely free for writers to create, and collection happens on an Ethereum [L2](/glossary/#layer-2) — making transactions inexpensive, fast, and environmentally friendly.
### MINDS {#minds}
[MINDS](https://www.minds.com/) is one of the most used decentralized social networks. It works like Facebook and has racked up millions of users already.
-Users use the platform's native ERC-20 token $MIND to pay for items. Users can also earn $MIND tokens by publishing popular content, contributing to the ecosystem, and referring others to the platform.
+Users use the platform's native [ERC-20](/glossary/#erc-20) token $MIND to pay for items. Users can also earn $MIND tokens by publishing popular content, contributing to the ecosystem, and referring others to the platform.
+
+## Use decentralized social networks {#use-decentralized-social-networks}
+
+- **[Status.im](https://status.im/)** - _Status is a secure messaging app that uses an open-source, peer-to-peer protocol, and end-to-end encryption to protect your messages from third parties._
+- **[Mirror.xyz](https://mirror.xyz/)** - _Mirror is a decentralized, user-owned publishing platform built on Ethereum for users to crowdfund ideas, monetize content, and build high-value communities._
+- **[Lens Protocol](https://lens.xyz/)** - _Lens Protocol is a composable and decentralized social graph helping creators take ownership of their content wherever they go in the digital garden of the decentralized internet._
+- **[Farcaster](https://farcaster.xyz/)** - _Farcaster is a sufficiently decentralized social network. It is an open protocol that can support many clients, just like email._
## Web2 social networks on Ethereum {#web2-social-networks-and-ethereum}
-[Web3](/web3/) native social platforms aren't the only ones trying to incorporate blockchain technology into social media. Many centralized platforms are also planning to integrate Ethereum into their infrastructure:
+[Web3](/glossary/#web3) native social platforms aren't the only ones trying to incorporate blockchain technology into social media. Many centralized platforms are also planning to integrate Ethereum into their infrastructure:
### Reddit {#reddit}
-Reddit has [touted Community Points](https://cointelegraph.com/news/reddit-to-reportedly-tokenize-karma-points-and-onboard-500m-new-users), which are [ERC-20 tokens](/developers/docs/standards/tokens/erc-20/) that users can earn by posting quality content and contributing to online communities (subreddits). You can redeem these tokens within a subreddit to [get exclusive privileges and perks](https://www.reddit.com/community-points/). For this project, Reddit is working with Arbitrum, a [layer 2](/layer-2/) rollup designed to scale Ethereum transactions.
+Reddit has [touted Community Points](https://cointelegraph.com/news/reddit-to-reportedly-tokenize-karma-points-and-onboard-500m-new-users), which are ERC-20 tokens that users can earn by posting quality content and contributing to online communities (subreddits). You can redeem these tokens within a subreddit to get exclusive privileges and perks. For this project, Reddit is working with Arbitrum, a [layer 2](/glossary/#layer-2) network designed to scale Ethereum transactions.
The program is already live, with the r/CryptoCurrency subreddit [running its version of Community Points called "Moons"](https://www.reddit.com/r/CryptoCurrency/wiki/moons_wiki). Per the official description, Moons "reward posters, commenters, and moderators for their contributions to the subreddit." Because these tokens are on the blockchain (users receive them in wallets), they are independent of Reddit and cannot be taken away.
-After concluding a beta phase on the Rinkeby testnet, Reddit Community Points are now on [Arbitrum Nova](https://nova.arbitrum.io/), a blockchain that combines properties of a [sidechain](/developers/docs/scaling/sidechains/) and an [optimistic rollup](/developers/docs/scaling/optimistic-rollups/). Besides using Community Points to unlock special features, users can also trade them for fiat on exchanges. Also, the amount of Community Points a user owns determines their influence on the decision-making process within the community.
-
-### Twitter {#twitter}
-
-In January 2021, Twitter Blue [rolled out support for NFTs](https://mashable.com/article/twitter-blue-nft-profile-picture), allowing users to connect their wallets and display NFTs as profile pictures. At time of writing, the social media company has also [announced plans](https://www.theverge.com/2021/8/16/22627435/twitter-bluesky-lead-jay-graber-decentralized-social-web) to create a decentralized social network in the future.
-
-### Instagram {#instagram}
-
-In May 2022, [Instagram announced support for NFTs](https://about.instagram.com/blog/announcements/instagram-digital-collectibles) on Ethereum and Polygon. Users can post NFTs directly to Instagram by connecting their Ethereum wallet.
-
-## Use decentralized social networks {#use-decentralized-social-networks}
-
-- **[Status.im](https://status.im/)** - _Status is a secure messaging app that uses an open-source, peer-to-peer protocol, and end-to-end encryption to protect your messages from third parties._
-- **[Mirror.xyz](https://mirror.xyz/)** - _Mirror is a decentralized, user-owned publishing platform built on Ethereum for users to crowdfund ideas, monetize content, and build high-value communities._
-- **[Lens Protocol](https://lens.xyz/)** - _Lens Protocol is a composable and decentralized social graph helping creators take ownership of their content wherever they go in the digital garden of the decentralized internet._
-- **[Farcaster](https://farcaster.xyz/)** - _Farcaster is a sufficiently decentralized social network. It is an open protocol that can support many clients, just like email._
+Besides using Community Points to unlock special features, users can also trade them for fiat on exchanges. Also, the amount of Community Points a user owns determines their influence on the decision-making process within the community.
## Further reading {#further-reading}
@@ -105,7 +93,6 @@ In May 2022, [Instagram announced support for NFTs](https://about.instagram.com/
- [Web3 holds the promise of decentralized, community-powered social networks](https://venturebeat.com/2022/02/26/web3-holds-the-promise-of-decentralized-community-powered-social-networks/) — _Sumit Ghosh_
- [An Overview of the Blockchain Social Media Landscape](https://www.gemini.com/cryptopedia/blockchain-social-media-decentralized-social-media) — _Gemini Cryptopedia_
- [How Blockchain Can Solve Social Media Privacy](https://www.investopedia.com/news/ethereum-blockchain-social-media-privacy-problem-linkedin-indorse/) — _Prableen Bajpai_
-- [Social Media Networks Are Coming To The Blockchain](https://businesstechguides.co/what-are-decentralized-social-networks) — _Emmanuel Awosika_
- [Sufficient Decentralization for Social Networks](https://www.varunsrinivasan.com/2022/01/11/sufficient-decentralization-for-social-networks) — _Varun Srinivasan_
### Videos {#videos}
@@ -116,6 +103,4 @@ In May 2022, [Instagram announced support for NFTs](https://about.instagram.com/
### Communities {#communities}
-- [Status Discord Server](https://discord.com/invite/3Exux7Y)
-- [Mirror Discord Server](https://discord.com/invite/txuCHcE8wV)
- [r/CryptoCurrency subreddit](https://www.reddit.com/r/CryptoCurrency/)
diff --git a/public/content/translations/ar/decentralized-identity/index.md b/public/content/translations/ar/decentralized-identity/index.md
index d910425b8eb..09a4327da8a 100644
--- a/public/content/translations/ar/decentralized-identity/index.md
+++ b/public/content/translations/ar/decentralized-identity/index.md
@@ -49,7 +49,7 @@ summaryPoint3: بفضل العملات الرقمية، أصبح لدى المس
## ما الذي يجعل معرّفات الهوية اللامركزية ممكنة؟ {#what-makes-decentralized-identifiers-possible}
-### 1. البنية التحتية للمفتاح العام (PKI) {#public-key-infrastructure}
+### 1. البنية التحتية للمفتاح العام (PKI) {#public-key-cryptography}
البنية التحتية للمفتاح العام (PKI) هي تدبير لأمن المعلومات يولد [مفتاح عام](/glossary/#public-key) و [مفتاح خاص](/glossary/#private-key) لكيان ما. يستخدم تشفير المفتاح العام في شبكات سلسلة الكتل للتحقق من هُوِيَّة المستخدم وإثبات ملكية الأصول الرقمية.
diff --git a/public/content/translations/ar/defi/index.md b/public/content/translations/ar/defi/index.md
index a48cd06200b..de2bc4b69e5 100644
--- a/public/content/translations/ar/defi/index.md
+++ b/public/content/translations/ar/defi/index.md
@@ -47,7 +47,7 @@ summaryPoint3: استنادًا إلى التكنولوجيا مفتوحة ال
| الأسواق مفتوحة دائمًا. | الأسواق تغلق لأن الموظفين يحتاجون إلى فترات راحة. |
| إنها مبنية على الشفافية - يمكن لأي شخص الاطلاع على بيانات المنتج وفحص كيفية عمل النظام. | المؤسسات المالية عبارة عن دفاتر مغلقة: لا يمكنك أن تطلب الاطلاع على سجل قروضها، وسجل أصولها المدارة، وما إلى ذلك. |
-
+
استكشف تطبيقات التمويل اللامركزي
@@ -65,7 +65,7 @@ summaryPoint3: استنادًا إلى التكنولوجيا مفتوحة ال
استكشف اقتراحاتنا لتطبيقات التمويل اللامركزي التي يمكن تجربتها إذا كنت جديداً على إثيريوم.
-
+
استكشف النظام المالي اللامركزي (DeFi)
@@ -92,7 +92,7 @@ summaryPoint3: استنادًا إلى التكنولوجيا مفتوحة ال
كسلسلة كتل، صممت إثيريوم لإرسال المعاملات بطريقة آمنة وعالمية. مثل عملة بيتكوين، إيثريوم يجعل إرسال الأموال حول العالم سهلاً مثل إرسال البريد الإلكتروني. فقط أدخل اسم الطرف المستلم [اسم ENS](/nft/#nft-domains) (مثل bob.eth) أو عنوان الحساب الخاص به من محفظتك، والمدفوعات الخاص بك سوف تذهب (عادةً) إليه مباشرة في دقائق. لإرسال أو تلقي المدفوعات، ستحتاج إلى [محفظة](/wallets/).
-
+
شاهد تطبيقات الدفع اللامركزية
@@ -123,7 +123,7 @@ summaryPoint3: استنادًا إلى التكنولوجيا مفتوحة ال
- النظراء: ويعني أن المقترض سيقترض من مقرض معين مباشرة.
- ويقوم المقرضون على أساس التجميع بتوفير أموال (سيولة) لمجمع يمكن للمقترضين الاقتراض منه.
-
+
اطلع على تطبيقات الاقتراض اللامركزية
@@ -183,7 +183,7 @@ summaryPoint3: استنادًا إلى التكنولوجيا مفتوحة ال
- ستزيد قيمة aDai لديك بناءً على معدلات الفائدة ويمكنك أن ترى رصيدك ينمو في محفظتك. اعتمادا على APR، سيظهر رصيد محفظتك مثل 100.1234 بعد بضعة أيام أو حتى ساعات!
- ثم يمكنك سحب مبلغ من Dai القياسي يعادل رصيد aDai الخاص بك في أي وقت.
-
+
اطلع على التطبيقات اللامركزية للإقراض
@@ -211,7 +211,7 @@ summaryPoint3: استنادًا إلى التكنولوجيا مفتوحة ال
على سبيل المثال، إذا كنت ترغب في استخدام اليانصيب دون خسارة PoolTogether (الموصوف أعلاه)، فستحتاج إلى رمز مميز مثل Dai أو USDC. تسمح لك هذا البورصات اللامركزية باستبدال عملة ETH مقابل هذه الرموز المميزة واستردادها لاحقًا عندما تنتهي.
-
+
اطلع على بورصات الرموز المميزة
@@ -223,7 +223,7 @@ summaryPoint3: استنادًا إلى التكنولوجيا مفتوحة ال
فعندما تُستخدم البورصة المركزية، عليك أن تودع أصولك قبل التداول، وأن تثق بأن هذه البورصات ستعتني بالأصول. عندما تكون أصولك مودعة، فهي معرضة للخطر لأن البورصات المركزية هي أهداف جذابة للقراصنة.
-
+
اطلع على التطبيقات اللامركزية للتداول
@@ -235,7 +235,7 @@ summaryPoint3: استنادًا إلى التكنولوجيا مفتوحة ال
ومن الأمثلة الجيدة على ذلك [DeFi Pluse Index fund (DPI)](https://defipulse.com/blog/defi-pulse-index/). هذا تمويل يعيد توازن الرصيد تلقائيًا لضمان أن محفظتك تحتوى دائمًا على [أعلى عملات التمويل اللامركزي في رأسمالية السوق](https://www.coingecko.com/en/defi). لا تحتاج أبدًا إلى إدارة أي من التفاصيل ويمكنك السحب من الصندوق متى ما رغبت.
-
+
شاهد التطبيقات اللامركزية للاستثمار
@@ -249,7 +249,7 @@ summaryPoint3: استنادًا إلى التكنولوجيا مفتوحة ال
- إنه يتمتع بالشفافية بحيث يستطيع جامعو الأموال أن يثبتوا مقدار الأموال التي تم جمعها. يمكنك حتى تتبع كيفية إنفاق هذه الأموال لاحقًا وفق الخط المحدد.
- ويمكن لجامعي الأموال إعداد الأموال تلقائيًا، على سبيل المثال، إذا كان هناك موعد نهائي محدد وحد أدنى للمبلغ لم يتم الوفاء به.
-
+
اطلع على التطبيقات اللامركزية لجمع الأموال
@@ -276,7 +276,7 @@ summaryPoint3: استنادًا إلى التكنولوجيا مفتوحة ال
يمكن لمنتجات إثيريوم، حالها حال جميع البرامج، أن تعاني من الأخطاء والاستغلال. لذا فإن الكثير من منتجات التأمين الموجودة في المجال تركز على حماية مستخدميها من فقدان أموالهم. إلا أن هناك مشاريع بدأت ببناء تغطية لكل ما يمكن للحياة أن تفاجئنا به. ومن الأمثلة الجيدة على ذلك غطاء Etherisc's Crop الذي يهدف إلى [حماية صغار المزارعين في كينيا من الجفاف والفيضانات](https://blog.etherisc.com/etherisc-teams-up-with-chainlink-to-deliver-crop-insurance-in-kenya-137e433c29dc). ويمكن للتأمين اللامركزي أن يوفر تغطية أرخص للمزارعين الذين يواجهون أسعارًا باهظة في التأمين التقليدي.
-
+
اطلع على تطبيقات التأمين اللامركزية
@@ -286,7 +286,7 @@ summaryPoint3: استنادًا إلى التكنولوجيا مفتوحة ال
مع الكثير من الأحداث، ستحتاج إلى طريقة لتتبع جميع استثماراتك، وقروضك، وتداولاتك. هناك مجموعة من المنتجات التي تسمح لك بتنسيق جميع أنشطة التمويل اللامركزي الخاصة بك من مكان واحد. هذا ما تمتاز به البنية المفتوحة للتمويل اللامركزي. يمكن للفرق بناء واجهات تتيح لك الاطلاع على أرصدتك عبر المنتجات، كما يمكنك استخدام ميزاتها أيضًا. قد تجد هذا مفيدًا وأنت تستكشف المزيد حول التمويل اللامركزي.
-
+
اطلع على التطبيقات اللامركزية للحافظة
diff --git a/public/content/translations/ar/desci/index.md b/public/content/translations/ar/desci/index.md
index ec0fbc31db8..14fe4e02317 100644
--- a/public/content/translations/ar/desci/index.md
+++ b/public/content/translations/ar/desci/index.md
@@ -68,7 +68,7 @@ summaryPoint3: يعتمد على حركة العلوم المفتوحة.
أظهرت الدراسات أن لجان مراجعة المنح تقوم بعمل ضعيف في اختيار المقترحات عالية الجودة، لأن المقترحات نفسها المقدمة إلى اللجان المختلفة لها نتائج مختلفة تمامًا. نظرًا لأن التمويل أصبح أكثر ندرة، فقد تركز على مجموعة أصغر من كبار الباحثين الذين لديهم مشاريع أكثر تحفظًا من الناحية الفكرية. وقد أدى التأثير إلى خلق مشهد تمويل شديد التنافسية، مما أدى إلى ترسيخ الحوافز الضارة وخنق الابتكار.
-Web3 لديه القدرة على تعطيل نموذج التمويل المعطل هذا من خلال تجربة نماذج الحوافز المختلفة التي طورتها DAOs وWeb3 على نطاق واسع. [تمويل السلع العامة بأثر رجعي](https://medium.com/ethereum-optimism/retroactive-public-goods-funding-33c9b7d00f0c)، [التمويل الرباعي](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2003531)، [حوكمة DAO](https://www.antler.co/blog/daos-and-web3-governance) و[هياكل الحوافز الرمزية](https://cdixon.org/2017/05/27/crypto-tokens-a-breakthrough-in-open-network-design) هي بعض أدوات Web3 التي يمكن أن تحدث ثورة في تمويل العلوم.
+Web3 لديه القدرة على تعطيل نموذج التمويل المعطل هذا من خلال تجربة نماذج الحوافز المختلفة التي طورتها DAOs وWeb3 على نطاق واسع. [تمويل السلع العامة بأثر رجعي](https://medium.com/ethereum-optimism/retroactive-public-goods-funding-33c9b7d00f0c)، [التمويل الرباعي](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2003531)، [حوكمة DAO](https://www.antler.co/blog/daos-and-web3-governance-the-promise-implications-and-challenges-ahead) و[هياكل الحوافز الرمزية](https://cdixon.org/2017/05/27/crypto-tokens-a-breakthrough-in-open-network-design) هي بعض أدوات Web3 التي يمكن أن تحدث ثورة في تمويل العلوم.
### ملكية الملكية الفكرية وتطويرها {#ip-ownership}
diff --git a/public/content/translations/ar/enterprise/index.md b/public/content/translations/ar/enterprise/index.md
index 5a3a4c5f1d2..ea38751a8ee 100644
--- a/public/content/translations/ar/enterprise/index.md
+++ b/public/content/translations/ar/enterprise/index.md
@@ -31,7 +31,7 @@ lang: ar
- [EEA](https://entethalliance.org/) _تحالف إيثريوم للمؤسسات هي منظمة معايير يدعمها أحد الأعضاء يتمثل ميثاقها في تطوير مواصفات سلسلة الكتل المفتوحة التي تدعم التجانس والعمل المشترك للشركات والمستهلكين في جميع انخاء العالم. يتكون مجتمعنا العالمي من الأعضاء من القادة والمتبنين والمبتكرين والمطورين والشركات الذين يتعاونون فيما بينهم لإنشاء موقع مفتوح لامركزي لصالح الجميع._
-- [مؤسسة Hyperledger](https://hyperledger.org) _Hyperledger هو جهد تعاوني مفتوح المصدر إُنشئ لتطوير تقنيات سلسلة الكتل على مستوى قطاعات الصناعة. وهو تعاون عالمي، تستضيفه مؤسسة Linux، بما في ذلك قادة في التمويل والأعمال المصرفية وإنترنت الأشياء وسلاسل الإمداد والتصنيع والتكنولوجيا._ _لدى المؤسسة بعض المشاريع تعمل فيها باستخدام حزمة إيثريوم:_ - [Hyperledger Besu](https://www.hyperledger.org/blog/2019/08/29/announcing-hyperledger-besu) - [Hyperledger Burrow](https://www.hyperledger.org/projects/hyperledger-burrow)
+- [مؤسسة Hyperledger](https://hyperledger.org) _Hyperledger هو جهد تعاوني مفتوح المصدر إُنشئ لتطوير تقنيات سلسلة الكتل على مستوى قطاعات الصناعة. وهو تعاون عالمي، تستضيفه مؤسسة Linux، بما في ذلك قادة في التمويل والأعمال المصرفية وإنترنت الأشياء وسلاسل الإمداد والتصنيع والتكنولوجيا._ _لدى المؤسسة بعض المشاريع تعمل فيها باستخدام حزمة إيثريوم:_ - [Hyperledger Besu](https://www.hyperledger.org/blog/2019/08/29/announcing-hyperledger-besu) - Hyperledger Burrow
## خدمات ترّكز علي المؤسسات {#enterprise-focused-services}
@@ -45,7 +45,6 @@ lang: ar
## البروتوكول والبنية التحتية {#protocol-and-infrastructure}
- [Hyperledger Besu](https://www.hyperledger.org/projects/besu) _عميل إيثريوم مفتوح المصدر تم تطويره بموجب ترخيص Apache 2.0 ومكتوب بلغة Java_
-- [Hyperledger Burrow](https://www.hyperledger.org/projects/hyperledger-burrow) _عميل سلسلة كتل قياسي لديه مترجم عقد ذكي بإذن مسبق تم تطويره جزئيًا حسب مواصفات جهاز إيثريوم الافتراضي (EVM)_
- [Infura](https://infura.io/) _API وصول API القابل للتوسع إلى إيثريوم وشبكات IPFS_
- [Kaleido](https://kaleido.io/) _منصة كاملة الحزم لبناء وتشغيل الأنظمة الأيكولوجية المؤسسية الهجينة عبر السحابة_
- [Autonity](https://www.clearmatics.com/about/) _مجموعة بروتوكولات تنفذ بروتوكولات p2p وتوفر برامج وبنية تحتية خاصة بالعميل_
diff --git a/public/content/translations/ar/roadmap/beacon-chain/index.md b/public/content/translations/ar/roadmap/beacon-chain/index.md
index dd2f4105f05..a7bad82b3c3 100644
--- a/public/content/translations/ar/roadmap/beacon-chain/index.md
+++ b/public/content/translations/ar/roadmap/beacon-chain/index.md
@@ -32,7 +32,7 @@ summaryPoint3: قدمت سلسلة المنارة منطق إجماع الآرا
قدمت سلسلة المنارة [إثبات الحصة](/developers/docs/consensus-mechanisms/pos/) إلى إثيريوم. وهذا يحافظ على أمان إثيريوم ويُكسب برامج المدققين المزيد من ETH في هذه العملية. وعمليًا، سيشتمل تجميد العملات على تجميد ETH من أجل تنشيط برنامج المدقق. وكأحد المراهنين، فإنك تشغل البرنامج الذي ينشئ ويصادق على كتل جديدة في السلسلة.
-إن تجميد العملات يقدم غرضًا مشابهًا لما يستخدمه [التنقيب](/developers/docs/mining/)، لكنه مختلف من عدة جوانب. ويتطلب التنقيب نفقات أولية طائلة في شكل أجهزة قوية واستهلاك كبير للطاقة، ما يؤدي إلى تحقيق وفورات للتوسع وتعزيز المركزية. ولا يفرض التنقيب أيضًا أي شروط لحجز الأصول كضمان إضافي، ما يحد من قدرة البروتوكول على معاقبة الأطراف المسيئة بعد الهجوم.
+إن تجميد العملات يقدم غرضًا مشابهًا لما يستخدمه [التنقيب](/developers/docs/consensus-mechanisms/pow/mining/)، لكنه مختلف من عدة جوانب. ويتطلب التنقيب نفقات أولية طائلة في شكل أجهزة قوية واستهلاك كبير للطاقة، ما يؤدي إلى تحقيق وفورات للتوسع وتعزيز المركزية. ولا يفرض التنقيب أيضًا أي شروط لحجز الأصول كضمان إضافي، ما يحد من قدرة البروتوكول على معاقبة الأطراف المسيئة بعد الهجوم.
وقد جعل الانتقال إلى إثبات الحصة إثيريوم أكثر أمنًا ولا مركزية بالمقارنة مع إثبات العمل. وكلما زاد عدد الأشخاص الذين يشاركون في الشبكة، زادت اللامركزية وأصبحت الشبكة أكثر أمانًا ضد الهجمات.
@@ -72,5 +72,5 @@ summaryPoint3: قدمت سلسلة المنارة منطق إجماع الآرا
## قراءة إضافية
-- [المزيد عن ترقيات إثيريوم في المستقبل](/roapmap/vision)
+- [المزيد عن ترقيات إثيريوم في المستقبل](/roadmap/vision/)
- [المزيد عن إثبات الحصة](/developers/docs/consensus-mechanisms/pos)
diff --git a/public/content/translations/ar/smart-contracts/index.md b/public/content/translations/ar/smart-contracts/index.md
index db427a921cc..07c6df11697 100644
--- a/public/content/translations/ar/smart-contracts/index.md
+++ b/public/content/translations/ar/smart-contracts/index.md
@@ -65,7 +65,7 @@ lang: ar
- [عملات ثابتة](/stablecoins/)
- [إنشاء أصول رقمية فريدة وتوزيعها](/nft/)
- [بورصة تداول عملات مفتوحة وتلقائية](/get-eth/#dex)
-- [ألعاب الفيديو اللامركزية](/dapps/?category=gaming)
+- [ألعاب الفيديو اللامركزية](/dapps/?category=gaming#explore)
- [بوليصة التأمين يتم دفعها تلقائيًا](https://etherisc.com/)
- [معيار قياسي يتيح للأشخاص إنشاء عملات مخصصة وقابلة للتشغيل المتبادل](/developers/docs/standards/tokens/)
diff --git a/public/content/translations/ar/staking/withdrawals/index.md b/public/content/translations/ar/staking/withdrawals/index.md
index b4f652d16b8..18333888f4d 100644
--- a/public/content/translations/ar/staking/withdrawals/index.md
+++ b/public/content/translations/ar/staking/withdrawals/index.md
@@ -154,7 +154,7 @@ eventName="read more">
إذا كنت جزءًا من تجمع الرهان أو تحمل رموز المراهنة المميزة، يجب عليك الرجوع إلى موفر الخدمة الخاص بك للحصول على مزيد من التفاصيل حول كيفية التعامل مع عمليات سحب المراهنة، حيث تعمل كل خدمة بشكل مختلف.
-بشكل عام، يجب أن يتمتع المستخدمون بالحرية في استعادة عملة ETH الأساسية الخاصة بهم التي تمت مراهنتها، أو تغيير موفر خدمة المراهنة الذي يستخدمونه. إذا أصبح عدد مجمع معين كبيرًا جدًّا، فيمكن الخروج من الأموال واستردادها وإعادة رهنها مع موفر خدمة أصغر. أو، إذا جمعت ما يكفي من عملة ETH، فيمكنك المراهنة من المنزل.
+بشكل عام، يجب أن يتمتع المستخدمون بالحرية في استعادة عملة ETH الأساسية الخاصة بهم التي تمت مراهنتها، أو تغيير موفر خدمة المراهنة الذي يستخدمونه. إذا أصبح عدد مجمع معين كبيرًا جدًّا، فيمكن الخروج من الأموال واستردادها وإعادة رهنها مع موفر خدمة أصغر. أو، إذا جمعت ما يكفي من عملة ETH، فيمكنك المراهنة من المنزل.
diff --git a/public/content/translations/bg/roadmap/beacon-chain/index.md b/public/content/translations/bg/roadmap/beacon-chain/index.md
index e1f2ea8eef5..aec7b8266c3 100644
--- a/public/content/translations/bg/roadmap/beacon-chain/index.md
+++ b/public/content/translations/bg/roadmap/beacon-chain/index.md
@@ -32,7 +32,7 @@ summaryPoint3: Бийкън чейн въведе логиката на конс
Бийкън чейн въведе [доказателство-за-залог](/developers/docs/consensus-mechanisms/pos/) в Eтереум. Това поддържа сигурността на Eтереум, а валидаторите печелят повече ETH в процеса. На практика залагането е свързано със залагане на ETH с цел активиране на валидаторския софтуер. Като залагащ вие управлявате софтуер, който създава и валидира нови блокове във веригата.
-Целта на залагането е подобна на тази, която имаше [добиването](/developers/docs/mining/), но се различава по много начини. Добиването изискваше да се правят големи инвестиции предварително под формата на мощен хардуер и консумация на енергия, което доведе до икономии по отношение на мащабируемостта и насърчаваше централизацията. Освен това, при добивът нямаше изисквания за заключване на активи като обезпечение, което ограничава способността на протокола да наказва некоректните участници след атака.
+Целта на залагането е подобна на тази, която имаше [добиването](/developers/docs/consensus-mechanisms/pow/mining/), но се различава по много начини. Добиването изискваше да се правят големи инвестиции предварително под формата на мощен хардуер и консумация на енергия, което доведе до икономии по отношение на мащабируемостта и насърчаваше централизацията. Освен това, при добивът нямаше изисквания за заключване на активи като обезпечение, което ограничава способността на протокола да наказва некоректните участници след атака.
След прехода към доказателство-за-залог Eтереум стана значително по-сигурен и децентрализиран в сравнение с механизма за доказателство-за-работа. Колкото повече хора участват в мрежата, толкова по-децентрализирана и защитена от атаки става тя.
diff --git a/public/content/translations/bn/decentralized-identity/index.md b/public/content/translations/bn/decentralized-identity/index.md
index 0f81a8c10d5..cbe67d4b6ef 100644
--- a/public/content/translations/bn/decentralized-identity/index.md
+++ b/public/content/translations/bn/decentralized-identity/index.md
@@ -49,7 +49,7 @@ summaryPoint3: ক্রিপ্টোকারেন্সির জন্য
## কিসে বিকেন্দ্রীভূত শনাক্তকারী সমূহ সম্ভব করে তোলে? {#what-makes-decentralized-identifiers-possible}
-### 1. পাবলিক কী অবকাঠামো (PKI) {#public-key-infrastructure}
+### 1. পাবলিক কী অবকাঠামো (PKI) {#public-key-cryptography}
পাবলিক-কী অবকাঠামো (PKI) হল একটি তথ্য নিরাপত্তা পরিমাপ যা একটি সত্তার জন্য [পাবলিক কী](/glossary/#public-key) এবং [প্রাইভেট কী](/glossary/#private-key) তৈরি করে। পাবলিক-কী ক্রিপ্টোগ্রাফি ব্লকচেইন নেটওয়ার্কে ব্যবহারকারীর পরিচয় প্রমাণীকরণ এবং ডিজিটাল সম্পদের মালিকানা প্রমাণ করতে ব্যবহৃত হয়।
diff --git a/public/content/translations/bn/defi/index.md b/public/content/translations/bn/defi/index.md
index 162f24cee2e..f51be6079cd 100644
--- a/public/content/translations/bn/defi/index.md
+++ b/public/content/translations/bn/defi/index.md
@@ -47,7 +47,7 @@ DeFi এর সম্ভাব্যতা দেখার সর্বোত্
| মার্কেট সবসময় খোলা থাকে। | কর্মীদের বিরতির প্রয়োজন হয় বিধার মার্কেট বন্ধ করা হয়। |
| এটি স্বচ্ছতার উপর নির্মিত – যে কেউ একটি পণ্যের ডেটা দেখতে পারে এবং সিস্টেমটি কীভাবে কাজ করে তা পরিদর্শন করতে পারে। | আর্থিক প্রতিষ্ঠানগুলি বন্ধ বই: আপনি তাদের ঋণের ইতিহাস, তাদের পরিচালিত সম্পদের রেকর্ড এবং আরও অনেক কিছু দেখতে চাইতে পারবেন না। |
-
+
DeFi অ্যাপগুলি ঘেটে দেখুন
@@ -65,7 +65,7 @@ DeFi এর সম্ভাব্যতা দেখার সর্বোত্
আপনি যদি ইথেরিয়াম-এ নতুন হন তবে চেষ্টা করতে DeFi অ্যাপ্লিকেশনগুলির জন্য আমাদের পরামর্শগুলি এক্সপ্লোর করুন।
-
+
DeFi অ্যাপগুলি ঘেটে দেখুন
@@ -92,7 +92,7 @@ DeFi এর সম্ভাব্যতা দেখার সর্বোত্
একটি ব্লকচেইন হিসাবে, ইথেরিয়াম একটি নিরাপদ এবং বিশ্বব্যাপী লেনদেন পাঠানোর জন্য ডিজাইন করা হয়েছে। বিটকয়েনের মতো, ইথেরিয়াম বিশ্বজুড়ে অর্থ প্রেরণকে একটি ইমেল পাঠানোর মতোই সহজ করে তোলে। আপনার ওয়ালেট থেকে শুধু আপনার প্রাপকের [ENS নাম](/nft/#nft-domains) (যেমন bob.eth) বা তাদের অ্যাকাউন্টের ঠিকানা লিখুন এবং আপনার অর্থপ্রদান মিনিটের মধ্যে সরাসরি তাদের কাছে যাবে (সাধারণত)। পেমেন্ট পাঠাতে বা গ্রহণ করতে, আপনার একটি [ওয়ালেট](/wallets/) প্রয়োজন হবে।
-
+
পেমেন্ট dapps গুলো দেখুন
@@ -123,7 +123,7 @@ Dai বা USDC-এর মতো কয়েনগুলির একটি ম
- পিয়ার-টু-পিয়ার, যার অর্থ একজন ঋণগ্রহীতা সরাসরি একটি নির্দিষ্ট ঋণদাতার কাছ থেকে ধার করবে।
- পুল-ভিত্তিক যেখানে ঋণদাতারা একটি পুলে ফান্ড (লিকুইডিটি) প্রদান করে যেখান থেকে ঋণগ্রহীতারা ধার নিতে পারে।
-
+
ঋণদাতা dapps গুলো দেখুন
@@ -183,7 +183,7 @@ Dai বা USDC-এর মতো কয়েনগুলির একটি ম
- সুদের হারের উপর ভিত্তি করে আপনার aDai বৃদ্ধি পাবে এবং আপনি আপনার ওয়ালেটে আপনার ব্যালেন্স বাড়তে দেখতে পাবেন। APR-এর উপর নির্ভর করে, আপনার ওয়ালেট ব্যালেন্স কয়েক দিন বা এমনকি কয়েক ঘন্টা পরে 100.1234 এর মত কিছু পড়বে!
- আপনি যেকোন সময় আপনার aDai ব্যালেন্সের সমান পরিমাণ নিয়মিত Dai তুলতে পারবেন।
-
+
ধার দেওয়া dapps গুলো দেখুন
@@ -211,7 +211,7 @@ PoolTogether-এর মতো নো-লস লটারি অর্থ সঞ
উদাহরণস্বরূপ, আপনি যদি নো-লস লটারি PoolTogether (উপরে বর্ণিত) ব্যবহার করতে চান, তাহলে আপনাকে Dai বা USDC-এর মতো একটি টোকেনের প্রয়োজন হবে। এই DEX গুলি আপনাকে সেই টোকেনগুলির জন্য আপনার ETH অদলবদল করতে এবং আপনার শেষ হয়ে গেলে আবার ফিরে আসতে দেয়।
-
+
টোকেন এক্সচেঞ্জ দেখুন
@@ -223,7 +223,7 @@ PoolTogether-এর মতো নো-লস লটারি অর্থ সঞ
যখন আপনি একটি কেন্দ্রীভূত এক্সচেঞ্জ ব্যবহার করেন তখন আপনাকে ট্রেডের আগে আপনার সম্পদ জমা করতে হবে এবং সেগুলির যত্ন নেওয়ার জন্য তাদের বিশ্বাস করতে হবে। আপনার সম্পদ জমা হওয়ার সময়, সেগুলি ঝুঁকির মধ্যে রয়েছে কারণ কেন্দ্রীভূত এক্সচেঞ্জগুলি হ্যাকারদের জন্য আকর্ষণীয় লক্ষ্য।
-
+
ট্রেডিং dapps দেখুন
@@ -235,7 +235,7 @@ PoolTogether-এর মতো নো-লস লটারি অর্থ সঞ
একটি ভাল উদাহরণ হল [DeFi পালস ইনডেক্স ফান্ড (DPI)](https://defipulse.com/blog/defi-pulse-index/)। এটি এমন একটি তহবিল যা আপনার পোর্টফোলিওতে সর্বদা [বাজার মূলধন দ্বারা শীর্ষ DeFi টোকেন](https://www.coingecko.com/en/defi) অন্তর্ভুক্ত থাকে তা নিশ্চিত করতে স্বয়ংক্রিয়ভাবে ভারসাম্য বজায় রাখে। আপনাকে কখনই কোনো বিবরণ পরিচালনা করতে হবে না এবং আপনি যখন খুশি ফান্ড থেকে উত্তোলন করতে পারেন।
-
+
বিনিয়োগ dapps গুলো দেখুন
@@ -249,7 +249,7 @@ PoolTogether-এর মতো নো-লস লটারি অর্থ সঞ
- এটি স্বচ্ছ তাই তহবিল সংগ্রহকারীরা প্রমাণ করতে পারেন যে কত টাকা তোলা হয়েছে। এমনকি আপনি পরবর্তীতে কীভাবে ফান্ড ব্যয় করা হচ্ছে তাও ট্রেস করতে পারেন।
- তহবিল সংগ্রহকারীরা স্বয়ংক্রিয় অর্থ ফেরত সেটআপ করতে পারে যদি, উদাহরণস্বরূপ, একটি নির্দিষ্ট সময়সীমা এবং ন্যূনতম পরিমাণ পূরণ না হয়।
-
+
ক্রাউডফান্ডিং dapps গুলো দেখুন
@@ -276,7 +276,7 @@ Quadratic funding makes sure that the projects that receive the most funding are
যেকোন সফ্টওয়্যারের মতো ইথেরিয়াম পণ্যগুলি বাগ এবং শোষণের শিকার হতে পারে। তাই এই মুহূর্তে এই ক্ষেত্রে প্রচুর বীমা পণ্য তাদের ব্যবহারকারীদের তহবিলের ক্ষতি থেকে রক্ষা করার উপর ফোকাস করে। যাইহোক, জীবন আমাদের দিকে এগিয়ে দিতে পারে এমন সবকিছুর জন্য কভারেজ তৈরি করতে শুরু করা প্রকল্প রয়েছে। এর একটি ভাল উদাহরণ হল Etherisc এর ক্রপ কভার যার লক্ষ্য [খরা এবং বন্যা থেকে কেনিয়ার ক্ষুদ্র কৃষকদের রক্ষা করুন](https://blog.etherisc.com/etherisc-teams-up-with-chainlink-to-deliver-crop-insurance-in-kenya-137e433c29dc)। বিকেন্দ্রীভূত বীমা কৃষকদের জন্য সস্তা কভার প্রদান করতে পারে যাদের প্রায়শই প্রথাগত বীমার বাইরে মূল্য দেওয়া হয়।
-
+
বীমা dapps গুলো দেখুন
@@ -286,7 +286,7 @@ Quadratic funding makes sure that the projects that receive the most funding are
এত কিছু করার সাথে, আপনার সমস্ত বিনিয়োগ, ঋণ এবং ব্যবসার ট্র্যাক রাখার জন্য আপনার একটি উপায় প্রয়োজন। অনেকগুলি পণ্য রয়েছে যা আপনাকে আপনার সমস্ত DeFi কার্যকলাপকে এক জায়গা থেকে সমন্বয় করতে দেয়। এটি DeFi এর উন্মুক্ত আর্কিটেকচারের সৌন্দর্য। দলগুলো এমন ইন্টারফেস তৈরি করতে পারে যেখানে আপনি কেবল পণ্য জুড়ে আপনার ব্যালেন্স দেখতে পাবেন না, আপনি তাদের বৈশিষ্ট্যগুলিও ব্যবহার করতে পারেন। আপনি DeFi এর আরও এক্সপ্লোর করার সাথে সাথে এটি দরকারী বলে মনে হতে পারে।
-
+
পোর্টফোলিও dapps সমূহ দেখুন
diff --git a/public/content/translations/bn/desci/index.md b/public/content/translations/bn/desci/index.md
index 389b6135973..24ce87c264e 100644
--- a/public/content/translations/bn/desci/index.md
+++ b/public/content/translations/bn/desci/index.md
@@ -68,7 +68,7 @@ DeSci একটি ইকোসিস্টেম তৈরি করার ল
গবেষণায় দেখা গেছে যে অনুদান পর্যালোচনা প্যানেলগুলি উচ্চ-মানের প্রস্তাবগুলি নির্বাচনে একটি ত্রুটিপূর্ণ কাজ করে কারণ বিভিন্ন প্যানেলে দেওয়া একই প্রস্তাবগুলির সম্পূর্ণ ভিন্ন ফলাফল রয়েছে। যেহেতু তহবিল আরও দুষ্প্রাপ্য হয়ে উঠেছে, এটি আরও বুদ্ধিবৃত্তিকভাবে রক্ষণশীল প্রকল্পের সাথে আরও সিনিয়র গবেষকদের একটি ছোট পুলে কেন্দ্রীভূত হয়েছে। প্রভাবটি একটি অতি-প্রতিযোগীতামূলক অর্থায়নের ল্যান্ডস্কেপ তৈরি করেছে, বিকৃত প্রণোদনা এবং উদ্ভাবনকে দমিয়ে দিয়েছে।
-DAO এবং Web3 ব্যাপকভাবে তৈরি করা বিভিন্ন প্রণোদনা মডেল নিয়ে পরীক্ষা-নিরীক্ষা করে Web3-এর এই ভাঙা অর্থায়ন মডেলটিকে ব্যাহত করার সম্ভাবনা রয়েছে। [পূর্ববর্তী পাবলিক পণ্য অর্থায়ন](https://medium.com/ethereum-optimism/retroactive-public-goods-funding-33c9b7d00f0c), [কোয়াড্রেটিক অর্থায়ন](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2003531), [DAO পরিচালনা](https://www.antler.co/blog/daos-and-web3-governance) a> এবং [টোকেনাইজড ইনসেনটিভ স্ট্রাকচার](https://cdixon.org/2017/05/27/crypto-tokens-a-breakthrough-in-open-network-design) হল কিছু Web3 টুলস যা বিজ্ঞানের অর্থায়নে বিপ্লব ঘটাতে পারে।
+DAO এবং Web3 ব্যাপকভাবে তৈরি করা বিভিন্ন প্রণোদনা মডেল নিয়ে পরীক্ষা-নিরীক্ষা করে Web3-এর এই ভাঙা অর্থায়ন মডেলটিকে ব্যাহত করার সম্ভাবনা রয়েছে। [পূর্ববর্তী পাবলিক পণ্য অর্থায়ন](https://medium.com/ethereum-optimism/retroactive-public-goods-funding-33c9b7d00f0c), [কোয়াড্রেটিক অর্থায়ন](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2003531), [DAO পরিচালনা](https://www.antler.co/blog/daos-and-web3-governance-the-promise-implications-and-challenges-ahead) a> এবং [টোকেনাইজড ইনসেনটিভ স্ট্রাকচার](https://cdixon.org/2017/05/27/crypto-tokens-a-breakthrough-in-open-network-design) হল কিছু Web3 টুলস যা বিজ্ঞানের অর্থায়নে বিপ্লব ঘটাতে পারে।
### IP মালিকানা এবং উন্নয়ন {#ip-ownership}
diff --git a/public/content/translations/bn/enterprise/index.md b/public/content/translations/bn/enterprise/index.md
index e9d61e9c471..9153b7717e2 100644
--- a/public/content/translations/bn/enterprise/index.md
+++ b/public/content/translations/bn/enterprise/index.md
@@ -31,7 +31,7 @@ lang: bn
- [EEA](https://entethalliance.org/)_ এন্টারপ্রাইজ ইথেরিয়াম অ্যালায়েন্স হ'ল একটি সদস্য-চালিত মানক সংস্থা, যার চার্টার হ'ল উন্মুক্ত, ব্লকচেইন স্পেসিফিকেশন বিকাশ করা যা বিশ্বব্যাপী ব্যবসায়ের এবং গ্রাহকদের জন্য হারমোনাইজেশন ও ইন্টারঅপারেবিলিটিকে চালিত করে। আমাদের সদস্যদের বিশ্বব্যাপী সম্প্রদায়টি নেতা, গ্রহণকারী, উদ্ভাবক, বিকাশকারী এবং ব্যবসায়ীদের সমন্বয়ে গঠিত যারা সবার সুবিধার জন্য একটি উন্মুক্ত, বিকেন্দ্রীভূত ওয়েব তৈরিতে সহযোগিতা করে।_
-- [Hyperledger Foundation](https://hyperledger.org)_ হাইপারলেজার হল বিভিন্ন শিল্পক্ষেত্র ব্যাপী ব্লকচেইন প্রযুক্তিগুলিকে এগিয়ে নিতে একটি ওপেন সোর্স সহযোগিতামূলক প্রচেষ্টা। এটি লিনাক্স ফাউন্ডেশন দ্বারা হোস্টেড একটি বৈশ্বিক সহযোগিতা, যার অন্তর্ভুক্ত হলেন অর্থ, ব্যাংকিং, ইন্টারনেট অফ থিংস, সাপ্লাই চেইন, উৎপাদন ও প্রযুক্তির নেতৃবৃন্দ। \_\_এতে ফাউন্ডেশনের কিছু প্রোজেক্ট আছে যা ইথেরিয়াম স্ট্যাকের সাথে কাজ করে:_ - [হাইপারলেজার বেসু](https://www.hyperledger.org/blog/2019/08/29/announcing-hyperledger-besu) - [হাইপারলেজার বারো](https://www.hyperledger.org/projects/hyperledger-burrow)
+- [Hyperledger Foundation](https://hyperledger.org)_ হাইপারলেজার হল বিভিন্ন শিল্পক্ষেত্র ব্যাপী ব্লকচেইন প্রযুক্তিগুলিকে এগিয়ে নিতে একটি ওপেন সোর্স সহযোগিতামূলক প্রচেষ্টা। এটি লিনাক্স ফাউন্ডেশন দ্বারা হোস্টেড একটি বৈশ্বিক সহযোগিতা, যার অন্তর্ভুক্ত হলেন অর্থ, ব্যাংকিং, ইন্টারনেট অফ থিংস, সাপ্লাই চেইন, উৎপাদন ও প্রযুক্তির নেতৃবৃন্দ। \_\_এতে ফাউন্ডেশনের কিছু প্রোজেক্ট আছে যা ইথেরিয়াম স্ট্যাকের সাথে কাজ করে:_ - [হাইপারলেজার বেসু](https://www.hyperledger.org/blog/2019/08/29/announcing-hyperledger-besu) - হাইপারলেজার বারো
## এন্টারপ্রাইজ ফোকাসড পরিষেবা {#enterprise-focused-services}
@@ -45,7 +45,6 @@ lang: bn
## প্রোটোকল এবং পরিকাঠামো {#protocol-and-infrastructure}
- [Hyperledger Besu](https://www.hyperledger.org/projects/besu) _Apache 2.0 লাইসেন্সের অধীনে বিকশিত এবং জাভায় লিখিত ওপেন সোর্স ইথেরিয়াম ক্লায়েন্ট প্রোগ্রাম_
-- [Hyperledger Burrow](https://www.hyperledger.org/projects/hyperledger-burrow) _একটি অনুমতিপ্রাপ্ত স্মার্ট কন্ট্রাক্ট ইন্টারপ্রেটার সহ মডুলার ব্লকচেইন ক্লায়েন্ট, যা ইথেরিয়াম ভার্চুয়াল মেশিন (ইভিএম) এর স্পেসিফিকেশন অনুযায়ী আংশিকভাবে তৈরী করা হয়েছে_
- [Infura](https://infura.io/) _ ইথেরিয়াম এবং IPFS নেটওয়ার্কগুলিতে স্কেলেবল API অ্যাক্সেস_
- [Kaleido](https://kaleido.io/) _ক্রস-ক্লাউড, হাইব্রিড এন্টারপ্রাইজ ইকোসিস্টেমগুলি তৈরি এবং চালনা করার জন্য ফুল-স্ট্যাক প্ল্যাটফর্ম_
- [Autonity](https://www.clearmatics.com/about/) _ প্রোটোকল স্যুট যা p2p প্রোটোকল বাস্তবায়ন করে এবং ক্লায়েন্ট সফ্টওয়্যার এবং অবকাঠামো সরবরাহ করে_
diff --git a/public/content/translations/bn/smart-contracts/index.md b/public/content/translations/bn/smart-contracts/index.md
index d5d646015e8..ad532d0f4fc 100644
--- a/public/content/translations/bn/smart-contracts/index.md
+++ b/public/content/translations/bn/smart-contracts/index.md
@@ -65,7 +65,7 @@ Szabo একটি ডিজিটাল মার্কেটপ্লেসে
- [স্টেবলকয়েন](/stablecoins/)
- [অনন্য ডিজিটাল সম্পদ তৈরি এবং বিতরণ](/nft/)
- [একটি স্বয়ংক্রিয়, উন্মুক্ত মুদ্রা বিনিময়](/get-eth/#dex)
-- [বিকেন্দ্রীভূত গেমিং](/dapps/?category=gaming)
+- [বিকেন্দ্রীভূত গেমিং](/dapps/?category=gaming#explore)
- [একটি বীমা পলিসি যা স্বয়ংক্রিয়ভাবে পরিশোধ করে](https://etherisc.com/)
- [একটি মান যা লোকেদের কাস্টমাইজড, ইন্টারঅপারেবল মুদ্রা তৈরি করতে দেয়](/developers/docs/standards/tokens/)
diff --git a/public/content/translations/ca/community/events/index.md b/public/content/translations/ca/community/events/index.md
index 1192af3342a..33cb1e26af7 100644
--- a/public/content/translations/ca/community/events/index.md
+++ b/public/content/translations/ca/community/events/index.md
@@ -4,7 +4,7 @@ description: Com involucrar-se amb la comunitat Ethereum.
lang: ca
---
-## Pròxims esdeveniments {#events}
+# Pròxims esdeveniments {#events}
**Cada mes, hi ha un gran nombre d'esdeveniments Ethereum a tot el món.** Teniu en consideració assistir a un que estigui a prop per conèixer més gent dins la comunitat, descobrir oportunitats de feina i desenvolupar noves habilitats.
diff --git a/public/content/translations/ca/community/get-involved/index.md b/public/content/translations/ca/community/get-involved/index.md
index 9fa3643bd62..2b7d0b44352 100644
--- a/public/content/translations/ca/community/get-involved/index.md
+++ b/public/content/translations/ca/community/get-involved/index.md
@@ -14,7 +14,7 @@ La comunitat Ethereum inclou gent de diferents àmbits i amb diferents habilitat
- [Trobeu una recompensa en Gitcoin](https://gitcoin.co/), treballeu en un problema tècnic gran o petit, guanyeu criptoactius!
- Assistiu a una convenció de programadors [ETHGlobal](http://ethglobal.co/) al vostre voltant!
- Doneu una ullada a [projectes relacionats amb la vostra àrea de coneixements o de llenguatge de programació de la vostra elecció](/developers/docs/programming-languages/)
-- Mireu o participeu en les [trucades de desenvolupament bàsic](https://www.youtube.com/playlist?list=PLaM7G4Llrb7zfMXCZVEXEABT8OSnd4-7w)
+- Mireu o participeu en les [trucades de desenvolupament bàsic](https://www.youtube.com/@EthereumProtocol)
- [Llistat de preferits del programa de suport a l'ecosistema](https://esp.ethereum.foundation/wishlist/) - eines, documentació i àrees d'infraestructura on el Programa de suport a l'ecosistema d'Ethereum cerca activament sol·licituds de subvenció
- [Web3Bridge](https://www.web3bridge.com/) - uniu- vos a la comunitat web3 aspirant en la seva iniciativa d'identificar, entrenar i donar suport a centenars de desenvolupadors i membres de la comunitat arreu d'Àfrica
diff --git a/public/content/translations/ca/defi/index.md b/public/content/translations/ca/defi/index.md
index 42ddb90a4a8..e9bdaf8cb45 100644
--- a/public/content/translations/ca/defi/index.md
+++ b/public/content/translations/ca/defi/index.md
@@ -47,7 +47,7 @@ Una de les millors maneres de veure el potencial de DeFi és entendre els proble
| Els mercats estan sempre oberts. | Els mercats tanquen perquè els empleats necessiten descansar. |
| Està construït de forma transparent: qualsevol pot mirar les dades d'un producte i inspeccionar com funciona el sistema. | Les institucions financeres són llibres tancats: no podeu veure el seu historial de préstecs, un informe dels seus actius sota gestió, etc. |
-
+
Exploreu aplicacions DeFi
@@ -65,7 +65,7 @@ Sona estrany... «per què he de voler programar els meus diners»? En tot cas,
Exploreu els nostres suggeriments d'aplicacions DeFi per provar-les, si sou novells a Ethereum.
-
+
Exploreu aplicacions DeFi
@@ -92,7 +92,7 @@ Hi ha una alternativa descentralitzada a la majoria dels serveis financers. Per
Com a cadena de blocs (o «blockchain»), Ethereum està dissenyat per enviar transaccions de forma segura i global. Igual que Bitcoin, Ethereum converteix l'acte d'enviar diners arreu del món en una cosa tan fàcil com enviar un correu electrònic. Només heu d'introduir el [el nom ENS](/nft/#nft-domains) del destinatari (com josep.eth) o l'adreça de la seva cartera i el vostre pagament li arribarà en qüestió de minuts (normalment). Per a enviar o rebre pagaments, necessiteu una [cartera](/wallets/).
-
+
Exploreu dapps de pagament
@@ -123,7 +123,7 @@ Obtenir diners prestats de proveïdors descentralitzats té dues varietats princ
- Persona-persona, és a dir el prestatari obtindrà el préstec directament d'un prestador específic.
- Basat en grups, on els prestadors proveeixen els fons (liquiditat) a un grup d'on els prestataris poden obtenir els préstecs.
-
+
Exploreu dapps per obtenir préstecs
@@ -183,7 +183,7 @@ Podeu guanyar interessos per les vostres criptomonedes fent préstecs i veure co
- Els vostres aDai s'incrementaran en base als tipus d'interès i podreu veure créixer el vostre saldo a la vostra cartera. En funció del tipus d'interès, el saldo de la vostra cartera serà de 100.1234 al cap d'uns pocs dies o, fins i tot, hores!
- Podeu retirar una quantitat de Dai normal, igual a la del vostre saldo, en qualsevol moment.
-
+
Veure dApps de préstecs
@@ -211,7 +211,7 @@ Hi ha milers de tókens a Ethereum. Els mercats d'intercanvi descentralitzats (D
Per exemple, si voleu fer servir la loteria sense pèrdues PoolTogether (descrita més amunt), necessitareu un token com Dai o USDC. Aquests DEX us permeten intercanviar els vostres ETH per aquets tókens i recuperar els ETH quan hàgiu acabat.
-
+
Veure intercanvi de tókens
@@ -223,7 +223,7 @@ Hi ha opcions més avançades per a qui vulgui una mica més de control sobre le
Quan feu servir un mercat (o casa de canvi) centralitzat heu de dipositar-hi els vostres actius abans d'executar la transacció i confiar que els vigilaran per tu. Mentre els vostres actius estan dipositats estan en risc, ja que els mercats centralitzats són objectius atractius per als hackers.
-
+
Veure dapps de comerç
@@ -235,7 +235,7 @@ Hi ha productes de gestió de fons a Ethereum que poden fer créixer la vostra c
Un bon exemple és el [fons DeFi Pulse Index (DPI)](https://defipulse.com/blog/defi-pulse-index/). Aquest és un fons que s'ajusta automàticament per assegurar que la vostra cartera sempre inclou [els tókens DeFi més rellevants en funció de la seva capitalització](https://www.coingecko.com/en/defi). Mai n'heu de gestionar cap detall i podeu retirar actius del fons en qualsevol moment.
-
+
Veure dapps d'inversió
@@ -249,7 +249,7 @@ Ethereum és una plataforma ideal per al crowfunding:
- És transparent, de manera que els receptors dels fons poden demostrar la quantitat de diners que han aixecat. Fins i tot podeu seguir el rastre de com els fons s'apliquen més endavant.
- Els receptors dels fons poden definir el retorn immediat dels diners si, per exemple, hi ha una data límit per aconseguir una quantitat mínima.
-
+
Veure dapps de crowfunding
@@ -276,7 +276,7 @@ Les assegurances descentralitzades pretenen ser més econòmiques, ràpides a co
Els productes Ethereum, com qualsevol software, poden tenir errors de codi i ser atacats. Així que, en aquests moments, moltes de les assegurances en aquest sector se centren en protegir els usuaris de la possible pèrdua dels seus fons. Tot i això hi ha projectes que estan treballant per donar cobertura a qualsevol accident habitual. Un bon exemple n'és la cobertura d'Etherisc Crop que pretén [protegir petits agricultors a Kènia de les pèrdues per sequeres i inundacions](https://blog.etherisc.com/etherisc-teams-up-with-chainlink-to-deliver-crop-insurance-in-kenya-137e433c29dc). Les assegurances descentralitzades poden proporcionar cobertures més econòmiques als agricultors que, sovint, no poden permetre's assegurances tradicionals.
-
+
Veure dapps d'assegurances
@@ -286,7 +286,7 @@ Els productes Ethereum, com qualsevol software, poden tenir errors de codi i ser
Amb tantes coses alhora, necessitareu una forma per fer un seguiment de totes les inversions, préstecs i compra-vendes. Hi ha una munió de productes que us permeten coordinar la vostra activitat DeFi des d'un mateix lloc. Aquesta és la bellesa de l'arquitectura oberta de les DeFi. Equips de desenvolupadors fan interfícies on no només podeu veure els saldos de tots els vostres productes, sinó que també podeu utilitzar les seves funcions. Això us pot ser útil alhora que continueu l'exploració de les DeFi.
-
+
Veure les dapps de gestió de carteres
diff --git a/public/content/translations/ca/energy-consumption/index.md b/public/content/translations/ca/energy-consumption/index.md
index a59ce3a004b..73bd59b11c2 100644
--- a/public/content/translations/ca/energy-consumption/index.md
+++ b/public/content/translations/ca/energy-consumption/index.md
@@ -24,7 +24,7 @@ La prova de treball és una via resistent per protegir la xarxa i reforçar canv
Un futur més sostenible per a Ethereum està éssent construït en la forma de cadena de [**proves de participació (PoS o «proof-of-stake» en anglès)**](/roadmap/beacon-chain/). Resoldre trencaclosques arbitraris és innecessari amb la [prova de participació](/developers/docs/consensus-mechanisms/pos/). Eliminar la resolució de trencaclosques redueix dràsticament el consum energètic requerit per a protegir la xarxa. Els miners són reemplaçats per validadors que fan la mateixa funció excepte que, en lloc de consumir els seus actius per endavant en forma de treball computacional, dipositen ETH com a garantia contra el comportament deshonest. Si el validador és gandul (està fora de línia quan se suposa que ha de complir amb el deure de validador) els seus ETH dipositats poden filtrar-se a poc a poc, mentre que un comportament deshonest fa que els actius dipositats siguin «retallats» («slashing»). Això incentiva fortament la participació activa i honesta en la protecció de la xarxa.
-De forma similar a la prova de treball, una entitat maliciosa requeriria com a mínim el 51% del total d'ETH dipositats a la xarxa per a executar un [atac al 51%](/glossary/#51-attack). No obstant, a diferència de la prova de treball, on la pèrdua potencial en un atac fallit només és el cost de generar la potència de processament necessària per a minar, en la prova de participació la possible pèrdua en un atac és la quantitat total d'ETH utilitzats com a garantia. Aquesta estructura desincentivadora permet la protecció de la xarxa amb la prova de participació mentre elimina la necessitat de consumir energia en computacions arbitràries. Es poden trobar explicacions detallades sobre la seguretat a la xarxa sota la prova de participació [aquí](/developers/docs/consensus-mechanisms/pos/) i [aquí](https://vitalik.eth.limo/general/2017/12/31/pos_faq.html).
+De forma similar a la prova de treball, una entitat maliciosa requeriria com a mínim el 51% del total d'ETH dipositats a la xarxa per a executar un [atac al 51%](/glossary/#51%-attack). No obstant, a diferència de la prova de treball, on la pèrdua potencial en un atac fallit només és el cost de generar la potència de processament necessària per a minar, en la prova de participació la possible pèrdua en un atac és la quantitat total d'ETH utilitzats com a garantia. Aquesta estructura desincentivadora permet la protecció de la xarxa amb la prova de participació mentre elimina la necessitat de consumir energia en computacions arbitràries. Es poden trobar explicacions detallades sobre la seguretat a la xarxa sota la prova de participació [aquí](/developers/docs/consensus-mechanisms/pos/) i [aquí](https://vitalik.eth.limo/general/2017/12/31/pos_faq.html).
## La Fusió {#the-merge}
diff --git a/public/content/translations/ca/roadmap/beacon-chain/index.md b/public/content/translations/ca/roadmap/beacon-chain/index.md
index 018d7aa98b2..b74e59fa8d3 100644
--- a/public/content/translations/ca/roadmap/beacon-chain/index.md
+++ b/public/content/translations/ca/roadmap/beacon-chain/index.md
@@ -27,7 +27,7 @@ El rol de la cadena de balisa canviarà amb el pas del temps, però és un eleme
La cadena de balisa introduirà la [prova de participació](/developers/docs/consensus-mechanisms/pos/) a Ethereum. És una manera nova d'ajudar a mantenir segur l'Ethereum. Ho podeu concebre com un bé públic que farà Ethereum més saludable i et farà guanyar més ETH en el procés. A la pràctica, haureu d'apostar ETH per tal d'activar el programari de validació. Com a validador, processareu les transaccions i creareu nous blocs a la cadena.
-Apostar i convertir-se en validador és més senzill que [minar](/developers/docs/mining/) (la manera actual de mantenir la xarxa segura). I s'espera que això contribueixi a fer Ethereum més segur a llarg termini. Com més gent participi a la xarxa, més descentralitzada i segura serà davant dels atacs.
+Apostar i convertir-se en validador és més senzill que [minar](/developers/docs/consensus-mechanisms/pow/mining/) (la manera actual de mantenir la xarxa segura). I s'espera que això contribueixi a fer Ethereum més segur a llarg termini. Com més gent participi a la xarxa, més descentralitzada i segura serà davant dels atacs.
Si us interessa ser validador i contribuir a protegir la cadena de balisa, aquí podeu aprendre més sobre les apostes.
diff --git a/public/content/translations/cs/decentralized-identity/index.md b/public/content/translations/cs/decentralized-identity/index.md
index 1601cac5cc9..bc3ab98ee07 100644
--- a/public/content/translations/cs/decentralized-identity/index.md
+++ b/public/content/translations/cs/decentralized-identity/index.md
@@ -49,7 +49,7 @@ Decentralizované identifikátory jsou uloženy v distribuovaných účetních k
## Co umožňuje decentralizované identifikátory? {#what-makes-decentralized-identifiers-possible}
-### 1. Infrastruktura veřejných klíčů (PKI) {#public-key-infrastructure}
+### 1. Infrastruktura veřejných klíčů (PKI) {#public-key-cryptography}
Infrastruktura veřejných klíčů (PKI) je opatřením v oblasti informační bezpečnosti, které pro entitu vytváří [veřejný klíč](/glossary/#public-key) a [privátní klíč](/glossary/#private-key). Kryptografie veřejných klídů se využívá v sítích blockchainu k ověření totožnosti uživatelů a k prokázání vlastnictví digitálních majetků.
diff --git a/public/content/translations/cs/defi/index.md b/public/content/translations/cs/defi/index.md
index a418fca6d69..27a69f6f845 100644
--- a/public/content/translations/cs/defi/index.md
+++ b/public/content/translations/cs/defi/index.md
@@ -47,7 +47,7 @@ Jedním z nejlepších způsobů, jak vidět potenciál DeFi je pochopit problé
| Trhy jsou vždy otevřené. | Trhy se zavírají, protože zaměstnanci potřebují přestávky. |
| Je postaveno na transparentnosti – kdokoli se může podívat na data produktu a zkontrolovat, jak systém funguje. | Finanční instituce jsou uzavřeným účetnictvím: nemůžete je požádat o nahlédnutí do jejich úvěrové historie, záznamu o spravovaných aktivech apod. |
-
+
Objevte DeFi aplikace
@@ -65,7 +65,7 @@ Zní to zvláštně... "Proč bych chtěl programovat své peníze"? Toto je vš
Prozkoumejte naše návrhy pro DeFi aplikace a vyzkoušet je, pokud jste v Ethereu noví.
-
+
Objevte DeFi aplikace
@@ -92,7 +92,7 @@ Existuje decentralizovaná alternativa k většině finančních služeb. Ethere
Protože je Ethereum blockchain, je navržen pro zasílání bezpečných a celosvětových transakcí. Stejně jako Bitcoin umožňuje Ethereum posílat peníze po celém světě stejně snadno jako poslat e-mail. Stačí zadat příjemcovo [ENS jméno](/nft/#nft-domains) (např. bob.eth) nebo adresu jeho účtu z vaší peněženky a vaše platba mu (obvykle) během několika minut přijde. Chcete-li posílat nebo přijímat platby, budete potřebovat [peněženku](/wallets/).
-
+
Zobrazit platební decentralizované aplikace
@@ -123,7 +123,7 @@ Půjčování peněz od decentralizovaných poskytovatelů má dvě hlavní vari
- Peer-to-peer, což znamená, že si dlužník půjčí přímo od konkrétního věřitele.
- Poolové půjčky, kde věřitelé poskytují finanční prostředky (likviditu) do poolu, ze kterého si poté dlužníci mohou půjčovat.
-
+
Zobrazit decentralizované aplikace na půjčky
@@ -183,7 +183,7 @@ Půjčováním kryptoměn můžete vydělávat na úrocích a sledovat růst sv
- Váš aDai se bude zvyšovat na základě úrokových sazeb a v peněžence uvidíte rostoucí zůstatek. V závislosti na RPSN bude zůstatek ve vaší peněžence po několika dnech nebo dokonce hodinách činit například 100,1234!
- Kdykoli si můžete vybrat částku běžných Dai, která se rovná vašemu zůstatku aDai.
-
+
Zobrazit decentralizované aplikace na půjčování
@@ -211,7 +211,7 @@ Na Ethereu jsou tisíce tokenů. Decentralizované burzy (DEXy) umožňují obch
Chcete-li se například zúčastnit bezztrátové loterie PoolTogether (popsané výše), budete potřebovat token Dai nebo USDC. Tyto DEXy vám umožní vyměnit ETH za tyto tokeny a zase zpět, až budete hotovi.
-
+
Zobrazit burzy tokenů
@@ -223,7 +223,7 @@ Pro obchodníky, kteří mají rádi větší kontrolu, jsou k dispozici pokroč
Když používáte centralizovanou burzu, musíte svá aktiva před obchodem uložit a důvěřovat jí, že se o ně postará. Zatímco jsou vaše aktiva uložena, jsou v ohrožení, protože centralizované burzy jsou atraktivním cílem pro hackery.
-
+
Zobrazit decentralizované aplikace na obchodování
@@ -235,7 +235,7 @@ Na Ethereu existují produkty pro správu fondů, které se snaží rozšířit
Dobrým příkladem je fond [DeFi Pulse Index (DPI)](https://defipulse.com/blog/defi-pulse-index/). Jedná se o fond, který se automaticky rebalancuje, aby vaše portfolio vždy zahrnovalo [nejlepší DeFi tokeny podle tržní kapitalizace](https://www.coingecko.com/en/defi). Nikdy se nemusíte starat o žádné podrobnosti a z fondu můžete vybírat, kdykoli se vám zachce.
-
+
Zobrazit investiční decentralizované aplikace
@@ -249,7 +249,7 @@ Ethereum je ideální platformou pro crowdfunding:
- Je transparentní, takže sponzoři mohou prokázat, kolik peněz se podařilo vybrat. Později můžete dokonce sledovat, jak je s prostředky vynaloženo.
- Sponzoři mohou nastavit automatické vracení peněz, například pokud není dodržen určitý termín a minimální částka.
-
+
Zobrazit decentralizované aplikace na crowdfunding
@@ -276,7 +276,7 @@ Cílem decentralizovaného pojištění je zlevnit pojištění, urychlit výpla
Ethereum produkty, stejně jako ostatní software, mohou trpět chybami a zneužíváním. Mnoho pojišťovacích produktů v této oblasti se nyní zaměřuje na ochranu uživatelů před ztrátou finančních prostředků. Existují ale i projekty, které začínají vytvářet krytí pro všechno, co nám život může přinést. Dobrým příkladem je projekt společnosti Etherisc Crop, jehož cílem je [ochránit drobné zemědělce v Keni před suchem a povodněmi](https://blog.etherisc.com/etherisc-teams-up-with-chainlink-to-deliver-crop-insurance-in-kenya-137e433c29dc). Decentralizované pojištění může poskytnout levnější krytí zemědělcům, kteří jsou často z tradičního pojištění vyřazeni.
-
+
Zobrazit decentralizované aplikace na pojištění
@@ -286,7 +286,7 @@ Ethereum produkty, stejně jako ostatní software, mohou trpět chybami a zneuž
Vzhledem k tomuto všemu potřebujete mít přehled o všech svých investicích, půjčkách a obchodech. Existuje celá řada produktů, které umožňují koordinovat všechny aktivity DeFi z jednoho místa. V tom spočívá krása otevřené architektury DeFi. Týmy mohou vytvořit rozhraní, ve kterých můžete nejen vidět své zůstatky napříč produkty, ale také používat jejich funkce. Mohlo by se vám to hodit, až budete prozkoumávat další části DeFi.
-
+
Zobrazit decentralizované aplikace na portfolia
diff --git a/public/content/translations/cs/desci/index.md b/public/content/translations/cs/desci/index.md
index bebd2140b41..aed0aa53137 100644
--- a/public/content/translations/cs/desci/index.md
+++ b/public/content/translations/cs/desci/index.md
@@ -68,7 +68,7 @@ Současný standardní model financování vědy spočívá v tom, že jednotliv
Studie ukázaly, že hodnotící panely pro udělování grantů nedokážou dobře vybírat kvalitní návrhy, protože stejné návrhy poskytnuté různým panelům mají zcela odlišné výsledky. Vzhledem k tomu, že financování je stále vzácnější, koncentrovalo se do menší skupiny zkušenějších výzkumníků s intelektuálně konzervativnějšími projekty. Tento efekt vytvořil hyperkonkurenční prostředí pro financování, posilující nepřirozené podněty a brzdící inovace.
-Web3 má potenciál narušit tento nefungující model financování tím, že experimentuje s různými modely podnětů vyvinutými DAO a Web3 obecně. [Retroaktivní financování veřejných statků](https://medium.com/ethereum-optimism/retroactive-public-goods-funding-33c9b7d00f0c), [kvadratické financování](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2003531), [řízení DAO](https://www.antler.co/blog/daos-and-web3-governance) a [tokenizované struktury podnětů](https://cdixon.org/2017/05/27/crypto-tokens-a-breakthrough-in-open-network-design) jsou některé z nástrojů Web3, které by mohly zásadně změnit financování vědy.
+Web3 má potenciál narušit tento nefungující model financování tím, že experimentuje s různými modely podnětů vyvinutými DAO a Web3 obecně. [Retroaktivní financování veřejných statků](https://medium.com/ethereum-optimism/retroactive-public-goods-funding-33c9b7d00f0c), [kvadratické financování](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2003531), [řízení DAO](https://www.antler.co/blog/daos-and-web3-governance-the-promise-implications-and-challenges-ahead) a [tokenizované struktury podnětů](https://cdixon.org/2017/05/27/crypto-tokens-a-breakthrough-in-open-network-design) jsou některé z nástrojů Web3, které by mohly zásadně změnit financování vědy.
### Vlastnictví a vývoj IP {#ip-ownership}
diff --git a/public/content/translations/cs/enterprise/index.md b/public/content/translations/cs/enterprise/index.md
index 19ab5763f54..5451c72cd99 100644
--- a/public/content/translations/cs/enterprise/index.md
+++ b/public/content/translations/cs/enterprise/index.md
@@ -32,7 +32,7 @@ Některé organizace vyvinuly společné úsilí směřující ke zlepšení pod
- [EEA](https://entethalliance.org/) _Enterprise Ethereum Alliance je organizace, jejíž členové vytvářejí standardy pro vývoj otevřených blockchainových specifikací s cílem sjednocovat a propojovat řešení pro podniky i jejich zákazníky po celém světě. Naše globální komunita se skládá z vedoucích osobností, prvních uživatelů, inovátorů, vývojářů a podniků, které spolupracují na vytvoření otevřeného, decentralizovaného webu ve prospěch všech._
-- [Hyperledger Foundation](https://hyperledger.org) _Hyperledger je společné open source úsilí o vytvoření pokročilých blockchainových technologií pro podnikové využití. Je to globální spolupráce zastřešená nadací The Linux Foundation a zahrnující vedoucí postavy z bankovnictví a finančního sektoru, Internetu věcí, dodavatelských řetězců, výroby a technologií._ _Některé projekty v této nadaci jsou určeny pro Ethereum:_ - [Hyperledger Besu](https://www.hyperledger.org/blog/2019/08/29/announcing-hyperledger-besu) - [Hyperledger Burrow](https://www.hyperledger.org/projects/hyperledger-burrow)
+- [Hyperledger Foundation](https://hyperledger.org) _Hyperledger je společné open source úsilí o vytvoření pokročilých blockchainových technologií pro podnikové využití. Je to globální spolupráce zastřešená nadací The Linux Foundation a zahrnující vedoucí postavy z bankovnictví a finančního sektoru, Internetu věcí, dodavatelských řetězců, výroby a technologií._ _Některé projekty v této nadaci jsou určeny pro Ethereum:_ - [Hyperledger Besu](https://www.hyperledger.org/blog/2019/08/29/announcing-hyperledger-besu) - Hyperledger Burrow
## Podnikově zaměřené služby {#enterprise-focused-services}
@@ -46,7 +46,6 @@ Následující projekty poskytují blockchainové služby pro firemní systémy:
## Protokol a infrastruktura {#protocol-and-infrastructure}
- [Hyperledger Besu](https://www.hyperledger.org/projects/besu) _open-source Ethereum klient vyvinutý pod licencí Apache 2.0 a napsaný v Javě_
-- [Hyperledger Burrow](https://www.hyperledger.org/projects/hyperledger-burrow) _modulární blockchain klient s interpreterem chytrých kontraktů s kontrolovaným přístupem, částečně vyvinutým podle specifikace virtuálního stroje Ethereum (EVM)_
- [Infura](https://infura.io/) _škálovatelné API pro přístup k sítím Ethereum a IPFS_
- [Kaleido](https://kaleido.io/) _kompletní platforma pro budování a provoz mezicloudových, hybridních firemních ekosystémů_
- [Autonity](https://www.clearmatics.com/about/) _sada protokolů, která implementuje p2p protokoly a poskytuje klientský software a infrastrukturu_
diff --git a/public/content/translations/cs/smart-contracts/index.md b/public/content/translations/cs/smart-contracts/index.md
index 076a43d5f37..5e2ea307a60 100644
--- a/public/content/translations/cs/smart-contracts/index.md
+++ b/public/content/translations/cs/smart-contracts/index.md
@@ -65,7 +65,7 @@ Mohou provádět výpočty, vytvářet měnu, ukládat data, těžit NFT, odesí
- [Stablecoiny](/stablecoins/)
- [Vytváření a distribuce jedinečných digitálních majetků](/nft/)
- [Automatická otevřená směnárna](/get-eth/#dex)
-- [Decentralizované počítačové hry](/dapps/?category=gaming)
+- [Decentralizované počítačové hry](/dapps/?category=gaming#explore)
- [Pojistná smlouva, která automaticky vyplatí plnění](https://etherisc.com/)
- [Standard, který umožňuje vytvářet interoperabilní měny dle konkrétních požadavků](/developers/docs/standards/tokens/)
diff --git a/public/content/translations/de/community/code-of-conduct/index.md b/public/content/translations/de/community/code-of-conduct/index.md
index e2332654972..3829b15aa86 100644
--- a/public/content/translations/de/community/code-of-conduct/index.md
+++ b/public/content/translations/de/community/code-of-conduct/index.md
@@ -4,6 +4,8 @@ description: Die grundlegenden Standards, die wir für alle Bereiche von ethereu
lang: de
---
+# Verhaltenskodex {#conduct-intro}
+
## Mission {#mission}
Die Entwicklung und Pflege der umfassendsten und barrierefreien Wissensplattform für Ethereum.
diff --git a/public/content/translations/de/community/events/index.md b/public/content/translations/de/community/events/index.md
index 0fa15014662..ea6d7664a1b 100644
--- a/public/content/translations/de/community/events/index.md
+++ b/public/content/translations/de/community/events/index.md
@@ -5,7 +5,7 @@ lang: de
hideEditButton: true
---
-## Kommende Veranstaltungen {#events}
+# Kommende Veranstaltungen {#events}
**Jeden Monat finden auf der ganzen Welt große Ethereum-Veranstaltungen statt.** Besuchen Sie doch eine Veranstaltung in Ihrer Nähe, so lernen Sie andere aus der Community kennen und können sich über mögliche Karrierechancen informieren und neue Kompetenzen aufbauen.
diff --git a/public/content/translations/de/community/get-involved/index.md b/public/content/translations/de/community/get-involved/index.md
index a552bf7a44c..34de01549ba 100644
--- a/public/content/translations/de/community/get-involved/index.md
+++ b/public/content/translations/de/community/get-involved/index.md
@@ -16,7 +16,7 @@ Machen Sie sich zunächst mit der Mission und den Grundsätze von ethereum.org i
- [Finden Sie ein Bounty auf Gitcoin](https://gitcoin.co/), arbeiten Sie an kleinen und großen technischen Problemen und verdienen Sie Kryptowährung.
- Besuchen Sie ein [ETHGlobal](http://ethglobal.co/)-Hakathon in Ihrer Nähe.
- Schauen Sie sich an, welche [Projekte im Zusammenhang mit Ihrem Fachgebiet oder der Programmiersprache Ihrer Wahl](/developers/docs/programming-languages/) es gibt
-- Nehmen Sie teil an den [Core DEV-Calls](https://www.youtube.com/playlist?list=PLaM7G4Llrb7zfMXCZVEXEABT8OSnd4-7w) oder sehen Sie sie sich an
+- Nehmen Sie teil an den [Core DEV-Calls](https://www.youtube.com/@EthereumProtocol) oder sehen Sie sie sich an
- [Wunschliste des Ethereum Ecosystem-Supportprogramms](https://esp.ethereum.foundation/wishlist/) – Tools, Dokumentation und Infrastrukturbereiche, für die das Ethereum Ecosystem-Supportprogramm aktiv nach Förderern sucht
- [Web3Bridge](https://www.web3bridge.com/) – beteiligen Sie sich an der Initiative der aufstrebenden web3-Community, Hunderte von Entwicklern und Mitgliedern der Community in ganz Afrika zu finden, zu schulen und zu unterstützen
- Trete dem [Ethereum Cat Herders Discord](https://discord.io/EthCatHerders) bei
@@ -62,7 +62,7 @@ Wenn Sie kein Entwickler sind, ist es nicht ganz so einfach, herauszufinden, wo
### Ethereum-Inhalte in Ihre Muttersprache übersetzen {#translate-ethereum}
- ethereum.org unterhält ein Übersetzungsprogramm, über das die Website und andere Ressourcen in viele verschiedene Sprachen übersetzt werden.
-- Wie Sie sich beteiligen können, erfahren Sie [hier](/Beitrag/Übersetzungsprogramm).
+- Wie Sie sich beteiligen können, erfahren Sie [hier](/contributing/translation-program/).
### Einen Knoten ausführen {#run-a-node}
diff --git a/public/content/translations/de/community/grants/index.md b/public/content/translations/de/community/grants/index.md
index 0759da1e17b..f92596e6246 100644
--- a/public/content/translations/de/community/grants/index.md
+++ b/public/content/translations/de/community/grants/index.md
@@ -18,7 +18,6 @@ Diese Programme unterstützen das breit gefächerte Ethereum-Ökosystem, indem s
- [MetaCartel](https://www.metacartel.org/grants/) - _DApp-Entwicklung, DAO-Erstellung_
- [Moloch DAO](https://www.molochdao.com/) – _Datenschutz, Layer-2-Skalierung, Client-Sicherheit und mehr_
- [DAO-Zuschüsse](https://docs.google.com/spreadsheets/d/1XHc-p_MHNRdjacc8uOEjtPoWL86olP4GyxAJOFO0zxY/edit#gid=0) – _Google-Tabelle der Organisationen, die Zuschüsse anbieten_
-- [Crunchbase für Web3-Zuschüsse](https://www.cryptoneur.xyz/web3-grants) – _Filtere und suche nach Zuschüssen nach Kategorie, Anwendungsfall, Betrag und mehr. Hilf anderen dabei, den richtigen Zuschuss zu finden._
- [Akademische Stipendien](https://esp.ethereum.foundation/academic-grants) – _Stipendien zur Untstützung akademischer Arbeiten in Bezug auf Ethereum_
- [Blockworks Grantfarm](https://blockworks.co/grants/programs) - _Blockworks hat ein umfassendes Verzeichnis aller Zuschüsse, Ausschreibungen und Bug-Bounties zusammengestellt._
@@ -35,7 +34,6 @@ Diese Projekte haben ihre eigenen Zuschüsse für Projektvorhaben zur Entwicklun
- [SKALE-Network-Förderprogramm](https://skale.space/developers#grants) – _[SKALE-Network](https://skale.space/)-Ökosystem_
- [The Graph](https://airtable.com/shrdfvnFvVch3IOVm) – _[The-Graph](https://thegraph.com/)-Ökosystem_
- [Uniswap-Förderprogramm](https://www.uniswapfoundation.org/apply-for-a-grant) – _[Uniswap](https://uniswap.org/)-Community_
-- [Web3-Zuschüsse](https://web3grants.net) – _Eine umfangreiche Liste von Förderprogrammen mit Bezug zu Web3/Krypto_
## Quadratische Finanzierung {#quadratic-funding}
diff --git a/public/content/translations/de/contributing/design-principles/index.md b/public/content/translations/de/contributing/design-principles/index.md
index 44da51c3434..0a38ba485db 100644
--- a/public/content/translations/de/contributing/design-principles/index.md
+++ b/public/content/translations/de/contributing/design-principles/index.md
@@ -10,7 +10,7 @@ description: Die Grundsätze hinter den Entscheidungen über Design und Inhalt v
Unsere Grundsätze prägen das Erscheinungsbild der Website und den Inhalt.
-Machen Sie sich mit den Informationen vertraut, bevor Sie einen [Beitrag zu ethereum.org](/beitrag/) leisten.
+Machen Sie sich mit den Informationen vertraut, bevor Sie einen [Beitrag zu ethereum.org](/contributing/) leisten.
## Was sind Designgrundsätze? {#ways-to-contribute}
diff --git a/public/content/translations/de/contributing/design/adding-design-resources/index.md b/public/content/translations/de/contributing/design/adding-design-resources/index.md
index f295e7f13d0..6cc547b3500 100644
--- a/public/content/translations/de/contributing/design/adding-design-resources/index.md
+++ b/public/content/translations/de/contributing/design/adding-design-resources/index.md
@@ -4,6 +4,8 @@ description: Richtlinien und Anforderungen zur Gewährleistung der Qualität von
lang: de
---
+# Design-Ressourcen hinzufügen {#adding-design-resources}
+
Jeder kann neue Designmaterialien für die Seite [Design und UX in web3](/developers/docs/design-and-ux/) vorschlagen.
Seien Sie sich bewusst, dass der Schwerpunkt dieser Seite darauf liegt, angehenden web3-Designern einen Mehrwert zu bieten. Der Designbereich ist nicht dazu da, um für Ihre Dienstleistungen, Produkte oder Plattformen zu werben.
diff --git a/public/content/translations/de/decentralized-identity/index.md b/public/content/translations/de/decentralized-identity/index.md
index e4214ec592e..0a348a472b9 100644
--- a/public/content/translations/de/decentralized-identity/index.md
+++ b/public/content/translations/de/decentralized-identity/index.md
@@ -49,7 +49,7 @@ Dezentralisierte Identifikatoren werden auf sogenannten dezentralen Ledgern (Blo
## Was ermöglicht dezentralisierte Identifikatoren? {#what-makes-decentralized-identifiers-possible}
-### 1. Öffentliche Schlüssel-Infrastruktur (Public Key Infrastructure, PKI) {#public-key-infrastructure}
+### 1. Öffentliche Schlüssel-Infrastruktur (Public Key Infrastructure, PKI) {#public-key-cryptography}
Öffentliche Schlüssel-Infrastruktur (PKI) ist ein Maß zur Informationssicherheit, die einen [öffentlichen Schlüssel](/glossary/#public-key) und [einen privaten Schlüssel](/glossary/#private-key) für eine Entität generiert. Öffentliche Schlüssel-Kryptografie wird in Blockchain-Netzwerken verwendet, um Benutzeridentitäten zu authentifizieren und das Eigentum an digitalen Gütern nachzuweisen.
diff --git a/public/content/translations/de/defi/index.md b/public/content/translations/de/defi/index.md
index 9c6eb76739a..4180b373a10 100644
--- a/public/content/translations/de/defi/index.md
+++ b/public/content/translations/de/defi/index.md
@@ -47,7 +47,7 @@ Um das wahre Potenzial von DeFi erkennen zu können, ist es wichtig, die aktuell
| Märkte sind rund um die Uhr geöffnet. | Märkte schließen, da es Beschränkungen für die Arbeitszeit von Angestellten gibt. |
| Basiert auf dem Transparenzprinzip – jeder kann die Daten eines Produktes einsehen und überprüfen, wie das System funktioniert. | Finanzinstitute sind wie geschlossene Bücher: Es ist nicht möglich, ihre Kredithistorie, Aufzeichnungen der verwalteten Vermögenswerte oder Ähnliches einzusehen. |
-
+
DeFi-Apps entdecken
@@ -65,7 +65,7 @@ Das klingt merkwürdig... „Warum würde ich mein Geld programmieren wollen?“
Machen Sie sich mit unseren Vorschlägen für DeFi-Anwendungen vertraut und testen sie, wenn Sie neu bei Ethereum sind.
-
+
DeFi-Apps entdecken
@@ -92,7 +92,7 @@ Für fast alle Finanzdienstleistungen gibt es dezentrale Alternativen. Ethereum
Als Blockchain ist Ethereum für sichere und globale Transaktionen konzipiert. Wie auch Bitcoin macht Ethereum das weltweite Senden von Geld so einfach wie das Versenden einer E-Mail. Geben Sie einfach den [ENS-Namen](/nft/#nft-domains) des Empfängers (z. B. bob.eth) oder die Account-Adresse der Wallet ein und schon geht die Zahlung (typischerweise) innerhalb von Minuten direkt beim Empfänger ein. Zum Senden oder Empfangen von Zahlungen ist eine [Wallet](/wallets/) erforderlich.
-
+
Siehe Zahlungs-dApps
@@ -123,7 +123,7 @@ Es gibt zwei etablierte Möglichkeiten, um Geld von dezentralen Anbietern zu lei
- Peer-to-Peer, das heißt der Kreditnehmer leiht direkt von einem bestimmten Kreditgeber.
- Pool-basiert, das heißt Kreditgeber stellen Geldmittel (Liquidität) für einen Pool bereit, aus dem Kreditnehmer die Mittel leihen können.
-
+
Siehe Lending-dApps
@@ -183,7 +183,7 @@ Sie können Ihrer Krypto in Echtzeit beim Wachsen zusehen, indem Sie sie verleih
- Ihr aDai steigt auf Grundlage der Zinssätze an und Sie können Ihr Guthaben in Ihrer Wallet wachsen sehen. Abhängig vom APR können Sie in Ihrer Wallet nach ein paar Tagen oder sogar Stunden ein Guthaben von beispielsweise 100,1234 ablesen.
- Sie können dann jederzeit normales Dai in Höhe Ihres aDai-Guthabens abheben.
-
+
Zu Lending-dApps
@@ -211,7 +211,7 @@ Auf Ethereum gibt es Tausende Token. Der Handel mit verschiedenen Token erfolgt
Wenn Sie zum Beispiel die No-Loss-Lotterie PoolTogether (wie oben beschrieben) nutzen möchten, benötigen Sie einen Token wie Dai oder USDC. An diesen DEXs können Sie Ihr ETH gegen solche Token eintauschen. Sobald Sie fertig sind, ist es wieder möglich, diese Token zurückzutauschen.
-
+
Zu Token-Handesplätzen
@@ -223,7 +223,7 @@ Für Trader, die sich mehr Kontrolle wünschen, gibt es fortgeschrittenere Optio
Wenn Sie sich für einen zentralen Handelsplatz entscheiden, müssen Sie Ihre Assets vor dem Handeln zuerst hinterlegen und darauf vertrauen, dass der Anbieter diese sicher verwahrt. Während Ihre Assets bei dem Anbieter hinterlegt sind, sind sie dem Risiko von Hackerangriffen ausgesetzt.
-
+
Zu Trading-dApps
@@ -235,7 +235,7 @@ Auf Ethereum gibt es auch Produkte für das Portfoliomanagement, deren Ziel es i
Ein gutes Beispiel ist der [DeFi Pulse Index Fund (DPI)](https://defipulse.com/blog/defi-pulse-index/). Es handelt sich um einen Fonds, der automatisch ein Rebalancing durchführt, um sicherzustellen, dass Ihr Portfolio immer [die besten DeFi-Token nach Marktkapitalisierung](https://www.coingecko.com/en/defi) enthält. Sie werden niemals irgendwelche Details verwalten müssen und können jederzeit Abhebungen aus dem Fonds tätigen.
-
+
Zu Investment-dApps
@@ -249,7 +249,7 @@ Ethereum ist die ideale Platform für Crowdfunding:
- Das System ist transparent, so dass Spendensammler beweisen können, wie viel Geld gesammelt wurde. Es lässt sich sogar nachverfolgen, wie die Mittel später ausgegeben werden.
- Spendensammler können automatische Erstattungen einrichten, wenn es beispielsweise eine bestimmte Frist und einen Mindestbetrag gibt, die bzw. der nicht eingehalten oder erreicht wird.
-
+
Zu Crowdfunding-dApps
@@ -276,7 +276,7 @@ Eine dezentralisierte Versicherung zielt darauf ab, Versicherungen billiger und
Bei Ethereum-Produkten gibt es wie auch bei jeder anderen Software Fehler und Exploits. Derzeit liegt beispielsweise bei vielen Versicherungsprodukten in diesem Bereich der Schwerpunkt auf dem Schutz der Benutzer vor finanziellen Verlusten. Es gibt jedoch Projekte, die damit beginnen, einen Versicherungsschutz für alles Unwägbarkeiten aufzubauen, die das Leben uns bescheren kann. Ein gutes Beispiel ist die Ernteversicherung von Etherisc. Es wird versucht, [Kleinbauern in Kenia gegen Dürren und Überschwemmungen abzusichern](https://blog.etherisc.com/etherisc-teams-up-with-chainlink-to-deliver-crop-insurance-in-kenya-137e433c29dc). Dezentrale Versicherungen können Landwirten, denen herkömmliche Versicherungen oft zu teuer sind, einen erschwinglichen Versicherungsschutz bieten.
-
+
Zu Versicherungs-dApps
@@ -286,7 +286,7 @@ Bei Ethereum-Produkten gibt es wie auch bei jeder anderen Software Fehler und Ex
Bei all diesen Entwicklungen brauchen Sie einen Weg, um alle Ihre Investitionen, Darlehen und Trades im Auge zu behalten. Es gibt eine Reihe von Produkten, mit denen Sie alle Ihre DeFi-Aktivitäten zentral koordinieren können. Das ist der Vorteil der offenen Architektur von DeFi. Teams können Schnittstellen entwickeln, über die Sie nicht nur Ihr Guthaben für alle Produkte sehen, sondern zusätzlich auch deren Funktionen nutzen können. Das finden Sie vielleicht nützlich, wenn Sie sich umfassender mit DeFi vertraut machen.
-
+
Zu Portfolio-dApps
diff --git a/public/content/translations/de/desci/index.md b/public/content/translations/de/desci/index.md
index 058bf9280b8..dac6b5f4a37 100644
--- a/public/content/translations/de/desci/index.md
+++ b/public/content/translations/de/desci/index.md
@@ -68,7 +68,7 @@ Das derzeitige Standardmodell der Wissenschaftsförderung besteht darin, dass Ei
Studien haben gezeigt, dass die Bewilligungsgremien bei der Auswahl von qualitativ hochwertigen Anträgen schlecht abschneiden: Gleiche Anträge, die verschiedenen Gremien vorgelegt werden, führen zu sehr unterschiedlichen Ergebnissen. Aufgrund der Mittelknappheit konzentrierten sie sich auf einen kleineren Pool älterer Forscher mit intellektuell konservativeren Projekten. Dies hat zu einer extrem wettbewerbsorientierten Förderlandschaft geführt, die falsche Anreize setzt und die Innovation im Keim erstickt.
-Web3 hat das Potenzial, dieses kaputte Finanzierungsmodell zu durchbrechen, indem es mit verschiedenen Anreizmodellen experimentiert, die von DAOs und Web3 im Allgemeinen entwickelt werden. [Retroaktive Fördermittel für öffentliche Güter](https://medium.com/ethereum-optimism/retroactive-public-goods-funding-33c9b7d00f0c), [quadratische Förderung](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2003531), [DAO Governance](https://www.antler.co/blog/daos-and-web3-governance) und [tokenisierte Anreizstrukturen](https://cdixon.org/2017/05/27/crypto-tokens-a-breakthrough-in-open-network-design) sind einige der Web3-Tools, die die Wissenschaftsförderung revolutionieren könnten.
+Web3 hat das Potenzial, dieses kaputte Finanzierungsmodell zu durchbrechen, indem es mit verschiedenen Anreizmodellen experimentiert, die von DAOs und Web3 im Allgemeinen entwickelt werden. [Retroaktive Fördermittel für öffentliche Güter](https://medium.com/ethereum-optimism/retroactive-public-goods-funding-33c9b7d00f0c), [quadratische Förderung](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2003531), [DAO Governance](https://www.antler.co/blog/daos-and-web3-governance-the-promise-implications-and-challenges-ahead) und [tokenisierte Anreizstrukturen](https://cdixon.org/2017/05/27/crypto-tokens-a-breakthrough-in-open-network-design) sind einige der Web3-Tools, die die Wissenschaftsförderung revolutionieren könnten.
### IP-Eigentum und -Entwicklung {#ip-ownership}
diff --git a/public/content/translations/de/developers/docs/consensus-mechanisms/pow/mining/index.md b/public/content/translations/de/developers/docs/consensus-mechanisms/pow/mining/index.md
index ac42edb3de6..6158aad9bcb 100644
--- a/public/content/translations/de/developers/docs/consensus-mechanisms/pow/mining/index.md
+++ b/public/content/translations/de/developers/docs/consensus-mechanisms/pow/mining/index.md
@@ -16,7 +16,7 @@ Mining ist der Prozess zur Erstellung eines Blocks aus Transaktionen, der zur Et
Ethereum verwendet derzeit, genau wie Bitcoin, einen [Proof-of-Work (PoW)](/developers/docs/consensus-mechanisms/pow/)-Konsensmechanismus. Mining ist das Lebenselixier des Proof-of-Work. Ethereum-Miner (Computer, die eine Software ausführen) nutzen ihre Zeit und Rechenleistung zur Verarbeitung von Transaktionen und Erstellung von Blöcken.
- Proof-of-Stake wird im Laufe des nächsten Jahres Mining und Proof-of-Work ersetzen. Du kannst schon heute mit dem Staking deiner ETH beginnen. Mehr zum Staking
+ Proof-of-Stake wird im Laufe des nächsten Jahres Mining und Proof-of-Work ersetzen. Du kannst schon heute mit dem Staking deiner ETH beginnen. Mehr zum Staking
## Warum gibt es Miner? {#why-do-miners-exist}
diff --git a/public/content/translations/de/developers/docs/data-and-analytics/block-explorers/index.md b/public/content/translations/de/developers/docs/data-and-analytics/block-explorers/index.md
index 106c3a46664..ea27d74acfb 100644
--- a/public/content/translations/de/developers/docs/data-and-analytics/block-explorers/index.md
+++ b/public/content/translations/de/developers/docs/data-and-analytics/block-explorers/index.md
@@ -16,15 +16,15 @@ Sie sollten das Basiskonzept von Ethereum verstehen, damit Sie die Daten, die Si
- [Etherscan](https://etherscan.io/) -_Auch in Chinesisch, Koreanisch, Russisch und Japanisch verfügbar_
- [Beaconcha.in](https://beaconcha.in/)
- [Blockchair](https://blockchair.com/ethereum) -_Auch in Spanisch, Französisch, Italienisch, Niederländisch, Portugiesisch, Russisch, Chinesisch und Farsi verfügbar_
-- [Blockscout](https://blockscout.com/)
+- [Blockscout](https://eth.blockscout.com/)
+- [Chainlens](https://www.chainlens.com/)
+- [DexGuru Block Explorer](https://ethereum.dex.guru/)
- [Etherchain](https://www.etherchain.org/)
- [Ethplorer](https://ethplorer.io/) -_Auch in Chinesisch, Spanisch, Französisch, Türkisch, Russisch, Koreanisch und Vietnamesisch verfügbar_
+- [EthVM](https://www.ethvm.com/)
- [OKLink](https://www.oklink.com/eth)
- [Otterscan](https://otterscan.io/)
- [Rantom](https://rantom.app/)
-- [Sirato](https://www.web3labs.com/sirato)
-- [EthVM](https://www.ethvm.com/)
-- [DexGuru Block Explorer](https://ethereum.dex.guru/)
## Daten {#data}
diff --git a/public/content/translations/de/developers/docs/gas/index.md b/public/content/translations/de/developers/docs/gas/index.md
index a368ee37592..4117a592922 100644
--- a/public/content/translations/de/developers/docs/gas/index.md
+++ b/public/content/translations/de/developers/docs/gas/index.md
@@ -152,4 +152,4 @@ Wenn Sie die Gaspreise überwachen möchten, damit Sie Ihre ETH günstiger versc
- [Proof-of-Stake und Proof-of-Work im Vergleich](https://blockgeeks.com/guides/proof-of-work-vs-proof-of-stake/)
- [Strategien für Programmierer zur Optimierung des Gasverbrauchs](https://www.alchemy.com/overviews/solidity-gas-optimization)
- [Spezifikationen zu EIP-1559](https://eips.ethereum.org/EIPS/eip-1559).
-- [Ressourcen von Time Beiko zu EIP-1559](https://hackmd.io/@timbeiko/1559-resources).
+- [Ressourcen von Tim Beiko zu EIP-1559](https://hackmd.io/@timbeiko/1559-resources).
diff --git a/public/content/translations/de/developers/docs/networks/index.md b/public/content/translations/de/developers/docs/networks/index.md
index 0131cc16499..ecf2792ce75 100644
--- a/public/content/translations/de/developers/docs/networks/index.md
+++ b/public/content/translations/de/developers/docs/networks/index.md
@@ -60,7 +60,6 @@ Die beiden öffentlichen Testnets, die die Client-Entwickler derzeit betreiben,
- [Faucet für Alchemy Sepolia](https://sepoliafaucet.com/)
- [Faucet für Infura Sepolia](https://www.infura.io/faucet)
- [Faucet für Chainstack Sepolia](https://faucet.chainstack.com/sepolia-faucet)
-- [Testnetz-Faucet | Sepolia](https://testnet-faucet.com/sepolia/)
#### Goerli _(Langzeit-Support)_ {#goerli}
diff --git a/public/content/translations/de/developers/docs/nodes-and-clients/node-architecture/index.md b/public/content/translations/de/developers/docs/nodes-and-clients/node-architecture/index.md
index e532eb3ee45..1e4822e399f 100644
--- a/public/content/translations/de/developers/docs/nodes-and-clients/node-architecture/index.md
+++ b/public/content/translations/de/developers/docs/nodes-and-clients/node-architecture/index.md
@@ -39,7 +39,7 @@ Der Konsensclient nimmt nicht an Attestierungen oder dem Vorschlagen von Blöcke
Knotenbetreiber können Validatoren zu ihren Konsensclients hinzufügen, indem sie 32 ETH in den Einzahlungsvertrag einzahlen. Der Validatorclient kommt gebündelt mit dem Konsensclient und kann zu jeder Zeit einem Knoten hinzugefügt werden. Der Validator bearbeitet Attestierungen und Blockvorschläge. Sie ermöglichen einem Knoten, Prämien zu sammeln oder ETH über Strafen oder Slashing zu verlieren. Durch das Betreiben der Validatorensoftware kann ein Knoten ausgewählt werden, um einen neuen Block vorzuschlagen.
-[Mehr über Staking](/abstecken/).
+[Mehr über Staking](/staking/).
## Vergleich der Knotenkomponenten {#node-comparison}
diff --git a/public/content/translations/de/developers/docs/programming-languages/python/index.md b/public/content/translations/de/developers/docs/programming-languages/python/index.md
index 9eba7a28b36..2014cfad11b 100644
--- a/public/content/translations/de/developers/docs/programming-languages/python/index.md
+++ b/public/content/translations/de/developers/docs/programming-languages/python/index.md
@@ -82,7 +82,7 @@ Die folgenden Ethereum-basierten Projekte verwenden die auf dieser Seite erwähn
## Python Community-Diskussionen {#python-community-contributors}
- [Ethereum Python Community Discord](https://discord.gg/9zk7snTfWe) für Web3.py und andere Python Framework-Diskussionen
-- [Vyper Discord](<[https://discord.gg/9zk7snTfWe](https://discord.gg/SdvKC79cJk)>) für Diskussionen zu Vyper Smart Contract-Programmierung
+- [Vyper Discord](https://discord.gg/SdvKC79cJk) für Diskussionen zu Vyper Smart Contract-Programmierung
## Andere aggregierte Listen {#other-aggregated-lists}
diff --git a/public/content/translations/de/developers/docs/smart-contracts/testing/index.md b/public/content/translations/de/developers/docs/smart-contracts/testing/index.md
index 60a07e1bdeb..f705599b516 100644
--- a/public/content/translations/de/developers/docs/smart-contracts/testing/index.md
+++ b/public/content/translations/de/developers/docs/smart-contracts/testing/index.md
@@ -37,7 +37,7 @@ incomplete: true
- [Solidity and Truffle Continuous Integration Setup](/developers/tutorials/solidity-and-truffle-continuous-integration-setup/) _ – So richten Sie Travis oder Circle CI für Trüffel-Tests zusammen mit nützlichen Plugins ein._
- [Übersicht über Testprodukte](/developers/tutorials/guide-to-smart-contract-security-tools/) _ – Eine Übersicht und ein Vergleich verschiedener Testprodukte_
- [So verwenden Sie Echidna zum Testen von Smart Contracts](/developers/tutorials/how-to-use-echidna-to-test-smart-contracts/)
-- [So finden Sie mit Manticore Fehler in Smart Contracts](/developers/tutorials/how-to-use-manticor-to-find-smart-contract-bugs/)
+- [So finden Sie mit Manticore Fehler in Smart Contracts](/developers/tutorials/how-to-use-manticore-to-find-smart-contract-bugs/)
- [So finden Sie mit Slither Fehler in Smart Contracts](/developers/tutorials/how-to-use-slither-to-find-smart-contract-bugs/)
- [So simulieren Sie Solidity-Verträge zum Testen](/developers/tutorials/how-to-mock-solidity-contracts-for-testing/)
- [So migrieren Sie von Truffle-Tests zur OpenZeppelin-Testumgebung](https://docs.openzeppelin.com/test-environment/0.1/migrating-from-truffle)
diff --git a/public/content/translations/de/developers/docs/standards/index.md b/public/content/translations/de/developers/docs/standards/index.md
index e41e131aaba..5164062d76b 100644
--- a/public/content/translations/de/developers/docs/standards/index.md
+++ b/public/content/translations/de/developers/docs/standards/index.md
@@ -18,7 +18,7 @@ Normalerweise werden diese als [Ethereum Improvement Proposals](/eips/) (EIPs) e
- [Einführung die Ethereum Governance](/governance/)
- [Ethereum Governance Overview](https://web.archive.org/web/20201107234050/https://blog.bmannconsulting.com/Ethereum-Governance/) _31. März 2019 - Boris Mann_
- [Ethereum Protokoll Entwicklungs- und Netzwerk-Upgrade-Koordination](https://hudsonjameson.com/2020-03-23-ethereum-protocol-development-governance-and-network-upgrade-coordination/) _23. März 2020 - Hudson Jameson_
-- [Playlist aller Ethereum Core Dev Meetings](https://www.youtube.com/playlist?list=PLaM7G4Llrb7zfMXCZVEXEABT8OSnd4-7w) _(YouTube Playlist)_
+- [Playlist aller Ethereum Core Dev Meetings](https://www.youtube.com/@EthereumProtocol) _(YouTube Playlist)_
## Arten von Standards {#types-of-standards}
diff --git a/public/content/translations/de/enterprise/index.md b/public/content/translations/de/enterprise/index.md
index 1c6bc3f6d03..d547a6c98bb 100644
--- a/public/content/translations/de/enterprise/index.md
+++ b/public/content/translations/de/enterprise/index.md
@@ -52,7 +52,7 @@ Verschiedene Organisationen unternahmen gemeinsame Anstrengungen, um Ethereum un
- [Alchemy](https://www.alchemy.com/)_ bietet API-Dienste und Tools für die Entwicklung und das Monitoring von Anwendungen auf Ethereum_
- [Blockapps](https://blockapps.net/) _Implementierung des Enterprise-Ethereum-Protokolls, von Tools und APIs, die die STRATO-Plattform bilden_
- [Chainstack](https://chainstack.com/)_ öffentlich gehostete Mainnet- und Testnetz-Ethereum-Infrastruktur und isolierte Kunden-Clouds_
-- [ConsenSys](https://consensys.net/) _ bietet eine Reihe von Produkten und Tools für das Aufbauen auf Ethereum sowie Beratungs- und Custom-Development-Dienste_
+- [ConsenSys](https://consensys.io/) _ bietet eine Reihe von Produkten und Tools für das Aufbauen auf Ethereum sowie Beratungs- und Custom-Development-Dienste_
- [Envision Blockchain](https://envisionblockchain.com/)_ bietet unternehmensorientierte Beratungs- und Entwicklungsdienstleistungen, die auf das Ethereum-Mainnet spezialisiert sind_
- [EY OpsChain](https://blockchain.ey.com/products/contract-manager) _ bietet einen Beschaffungsworkflow durch die Ausgabe von RFQs, Verträgen, Bestellungen und Rechnungen im Netzwerk von vertrauenswürdigen Geschäftspartnern_
- [Hyperledger Besu](https://www.hyperledger.org/use/besu) _ ein unternehmensorientierter Open-Source-Ethereum-Client, entwickelt unter der Apache-2.0-Lizenz und in Java geschrieben_
@@ -64,7 +64,7 @@ Verschiedene Organisationen unternahmen gemeinsame Anstrengungen, um Ethereum un
### Tools und Bibliotheken {#tooling-and-libraries}
- [Alethio](https://explorer.aleth.io/) _Ethereum-Data-Analytics-Plattform_
-- [Epirus](https://www.web3labs.com/epirus) _eine Plattform zur Entwicklung, Bereitstellung und Überwachung von Blockchain-Anwendungen durch Web3 Labs_
+- [Chainlens](https://www.chainlens.com/) _eine Plattform zur Entwicklung, Bereitstellung und Überwachung von Blockchain-Anwendungen durch Web3 Labs_
- [Ernst & Youngs 'Nightfall'](https://github.com/EYBlockchain/nightfall) _ein Toolkit für private Transaktionen_
- [EthSigner](https://github.com/ConsenSys/ethsigner) _eine Transaktionssignierungsanwendung zur Verwendung mit einem Web3-Anbieter_
- [Tenderly](https://tenderly.co/) _, eine Datenplattform, die Echtzeit-Analysen, Alarmierung und Überwachung mit Unterstützung für private Netzwerke bereitstellt_
@@ -131,7 +131,6 @@ Nachfolgend werden einige der Anwendungen für Unternehmen aufgelistet, die bisl
### Notarisierung von Daten {#notarization-of-data}
- [BBVA](https://www.ledgerinsights.com/bbva-blockchain-loan-banking-tech-award/) _Details von finalisierten Darlehen werden gehasht und im Hauptnetz aufgezeichnet_
-- [Splunk](https://www.splunk.com/en_us/blog/security/the-newest-data-attack.html) _Datenintegrität kann durch periodisches Schreiben von Hashes indexierter Daten in das Mainnet gewährleistet werden_
- [ANSA](https://cointelegraph.com/news/italys-top-news-agency-uses-blockchain-to-fight-fake-coronavirus-news) _Italiens größte Nachrichtenagentur kämpft gegen gefälschte Nachrichten und ermöglicht es Lesern, den Ursprung der Nachrichten zu überprüfen, indem sie im Mainnet aufgezeichnet werden_
- [Verizon](https://decrypt.co/46745/verizon-news-press-releases-ethereum-full-transparency) _protokolliert Pressemitteilungen auf Ethereum, um die Rechenschaftspflicht und das Vertrauen von Unternehmen zu gewährleisten_
- [Breitling](https://www.coindesk.com/breitling-arianee-all-new-watches-ethereum) _erfasst den Herkunfts- und Reparaturverlauf von Uhren auf Ethereum_
@@ -139,14 +138,12 @@ Nachfolgend werden einige der Anwendungen für Unternehmen aufgelistet, die bisl
### Lieferkette {#supply-chain}
-- [CargoX](https://cargox.io/press-releases/full/cargox-becomes-first-public-blockchain-ethereum-bill-lading-provider-approved-international-group-pi-clubs) _Bill of Lading und Dokumententransferanbieter_
- [Morpheus.network](https://morpheus.network/) _Lieferketten-Automatisierungsplattform, die einen Hybrid aus privaten Blockchains mit notarisierten Daten im Ethereum-Mainnet implementiert und von Unternehmen wie Canadian Food, Oil & Gas Distributor Federated Co-op Ltd. und vom argentinischen Haustierspeiseanbieter Vitalcan verwendet wird._
- [Minespider](https://www.minespider.com/) _Lieferketten-Tracking_
- [Folge unseren Fasern](https://www.followourfibre.com) _Viskose-Lieferkettenverfolgbarkeit_
- [EY OpsChain Netzwerkbeschaffung](https://blockchain.ey.com/products/contract-manager) _bietet einen Beschaffungsworkflow durch die Ausgabe von RFQs, Verträgen, Bestellungen und Rechnungen in Ihrem Netzwerk vertrauenswürdiger Geschäftspartner_
- [Treum](https://treum.io/) _bringt Transparenz, Rückverfolgbarkeit und Handelbarkeit in Lieferketten mithilfe der Blockchain-Technologie_
- [TradeTrust](https://www.tradetrust.io/) _überprüft elektronische Frachtbriefe (eBLs) für den internationalen Versand_
-- [Birra Peroni](https://www.ey.com/en_gl/news/2021/05/birra-peroni-is-the-first-industrial-organization-to-mint-unique-non-fungible-tokens-using-ey-opschain-traceability)_ prägt für jede neue Charge Bier NFTs, was eine größere Transparenz und Effizienz in der gesamten Lieferkette ermöglicht_
### Referenzen und Zertifizierungen {#credentials}
diff --git a/public/content/translations/de/enterprise/private-ethereum/index.md b/public/content/translations/de/enterprise/private-ethereum/index.md
index e1a3989c697..d9004dde517 100644
--- a/public/content/translations/de/enterprise/private-ethereum/index.md
+++ b/public/content/translations/de/enterprise/private-ethereum/index.md
@@ -24,4 +24,3 @@ Einige gemeinsame Anstrengungen, um Ethereum unternehmensfreundlich zu gestalten
- [Hyperledger Besu](https://www.hyperledger.org/use/besu) _Open-Source-Ethereum-Client, entwickelt unter der Apache-2.0-Lizenz und in Java geschrieben, der mehrere Konsensalgorithmen wie PoW und PoA (IBFT, IBFT 2.0, Etherhash, Clique) enthält. Seine umfassenden Genehmigungsschemata sind speziell für den Einsatz in einer Konsortiumumgebung konzipiert._
- [Hyperledger Burrow](https://www.hyperledger.org/projects/hyperledger-burrow) _modularer Blockchain-Client mit einem zugelassenen Smart Contract Interpreter, der teilweise auf der Spezifikation der Ethereum Virtual Machine (EVM) entwickelt wurde_
- [Kaleido](https://kaleido.io/) _Full-Stack-Plattform für die Entwicklung und den Betrieb von Cross-Cloud-Hybrid-Unternehmensökosystemen_
-- [Quorum](https://consensys.net/quorum/) _eine Ethereum-basierte Open-Source-Enterprise-Blockchain-Plattform mit erweiterten Enterprise-Grade-Funktionen, die Privatsphäre, Erlaubniskontrolle und Leistung ermöglichen_
diff --git a/public/content/translations/de/glossary/index.md b/public/content/translations/de/glossary/index.md
index 4b4e0e4aec4..01639d3d1ea 100644
--- a/public/content/translations/de/glossary/index.md
+++ b/public/content/translations/de/glossary/index.md
@@ -378,7 +378,7 @@ Eine Kennzeichnung, die einigen [EIPs](#eip) zugewiesen wurde, die versuchen, ei
Ein [Proof-Work](#pow)-Algorithmus, der bei Ethereum verwendet wurde, bevor er zu [Proof-of-Stake](#pos) gewechselt ist.
-[Weiterlesen](/developers/docs/consensus-mechanisms/pow/mining-algorithms/ethash)
+[Weiterlesen](/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/ethash)
### Ether {#ether}
diff --git a/public/content/translations/de/history/index.md b/public/content/translations/de/history/index.md
index 0c7e8b1d4e7..45a585c075f 100644
--- a/public/content/translations/de/history/index.md
+++ b/public/content/translations/de/history/index.md
@@ -26,11 +26,11 @@ Suchen Sie nach weiteren Protokoll-Upgrades? [Erfahren Sie mehr über anstehende
## 2023 {#2023}
-### Shanghai {#shanghai}
+### Shanghai-Capella ("Shapella") {#shapella}
-
+
-#### Zusammenfassung {#shanghai-summary}
+#### Shanghai-Zusammenfassung {#shanghai-summary}
Das Shanghai-Update ebnete den Weg für Staking-Auszahlungen auf der Ausführungsebene. Die Fusion mit dem Capella-Upgrade ermöglichte es Blöcken, Auszahlungen zu akzeptieren, wodurch Stakern erlaubt wurde, ihre ETH von der Beacon Chain auf der Ausführungsebene abzuheben.
@@ -48,13 +48,7 @@ Das Shanghai-Update ebnete den Weg für Staking-Auszahlungen auf der Ausführung
- [Lesen Sie die Spezifikation für das Shanghai-Upgrade](https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/shanghai.md)
----
-
-### Capella {#capella}
-
-
-
-#### Zusammenfassung {#capella-summary}
+#### Capella-Zusammenfassung {#capella-summary}
Das Capella-Update war das drittgrößte Upgrade für die Konsensebene (Beacon Chain) und ermöglichte Staking-Abhebungen. Mit Capella, das gleichzeitig mit dem Upgrade der Ausführungsebene, Shanghai, erfolgte, wurde die Staking-Abhebungsfunktion zur Verfügung gestellt.
diff --git a/public/content/translations/de/roadmap/beacon-chain/index.md b/public/content/translations/de/roadmap/beacon-chain/index.md
index 11446851595..f8a33ce6ca0 100644
--- a/public/content/translations/de/roadmap/beacon-chain/index.md
+++ b/public/content/translations/de/roadmap/beacon-chain/index.md
@@ -28,7 +28,7 @@ Die Beacon Chain ist die Bezeichnung für ein Kontenbuch, das das Netzwerk von E
Die Beacon Chain brachte [Proof-of-Stake](/developers/docs/consensus-mechanisms/pos/) zu Ethereum. Dieser Mechanismus sichert Ethereum und sorgt dafür, dass die Validatoren dabei ETH verdienen. In der Praxis bedeutet dies ETH einzusetzen, um die Validierungssoftware zu aktivieren. Als Staker führen Sie die Software aus die in der Chain neue Blöcke erstellt und validiert.
-Staking erfüllt denselben Zweck wie einst [Mining](/developers/docs/mining/), aber unterscheidet sich davon in vielerlei Hinsicht. Mining erforderte hohe Voraufwendungen in Form von mächtiger Hardware und hohem Energieverbrauch. Dies führte zu Skaleneffekten und förderte Zentralisierung. Mining sah auch keine Verpflichtung vor Vermögenswerte, als Sicherheiten zu sperren. Das Protokoll hatte dadurch weniger Möglichkeiten feindselige Akteure nach einer Attacke zu bestrafen.
+Staking erfüllt denselben Zweck wie einst [Mining](/developers/docs/consensus-mechanisms/pow/mining/), aber unterscheidet sich davon in vielerlei Hinsicht. Mining erforderte hohe Voraufwendungen in Form von mächtiger Hardware und hohem Energieverbrauch. Dies führte zu Skaleneffekten und förderte Zentralisierung. Mining sah auch keine Verpflichtung vor Vermögenswerte, als Sicherheiten zu sperren. Das Protokoll hatte dadurch weniger Möglichkeiten feindselige Akteure nach einer Attacke zu bestrafen.
Der Wechsel zu Proof-of-Stake machte Ethereum wesentlich sicherer und dezentralisierte im Vergleich zu Proof-of-Work. Je mehr Menschen sich am Netzwerk beteiligen, desto dezentralisierter und sicherer wird es vor Angriffen.
diff --git a/public/content/translations/de/roadmap/danksharding/index.md b/public/content/translations/de/roadmap/danksharding/index.md
index 9f7e1ce229d..f87881edb0e 100644
--- a/public/content/translations/de/roadmap/danksharding/index.md
+++ b/public/content/translations/de/roadmap/danksharding/index.md
@@ -15,7 +15,7 @@ summaryPoints:
## Was ist Proto-Danksharding? {#what-is-protodanksharding}
-Proto-Danksharding, auch bekannt als [EIP-4844](https://eips.ethereum.org/EIPS/eip-4844), ist eine Möglichkeit für [Rollups](/layer2/#rollups), kostengünstigere Daten zu Blöcken hinzuzufügen. Der Name stammt von den beiden Forschern, die die Idee vorgeschlagen haben: Protolambda und Dankrad Feist. Derzeit sind Rollups in ihrer Fähigkeit eingeschränkt, Benutzertransaktionen kostengünstig zu gestalten, da sie ihre Transaktionen in `CALLDATA` posten. Das ist teuer, weil es von allen Ethereum-Nodes verarbeitet wird und für immer in der Kette bleibt, obwohl Rollups die Daten nur für kurze Zeit benötigen. Proto-Danksharding führt Datenblobs ein, die gesendet und an Blöcke angehängt werden können. Die Daten in diesen Blobs sind für die EVM nicht zugänglich und werden automatisch nach einer festgelegten Zeitspanne (1-3 Monate) gelöscht. Das bedeutet, dass Rollups ihre Daten viel kostengünstiger senden und die Einsparungen in Form von günstigeren Transaktionen an die Endbenutzer weitergeben können.
+Proto-Danksharding, auch bekannt als [EIP-4844](https://eips.ethereum.org/EIPS/eip-4844), ist eine Möglichkeit für [Rollups](/layer-2/#rollups), kostengünstigere Daten zu Blöcken hinzuzufügen. Der Name stammt von den beiden Forschern, die die Idee vorgeschlagen haben: Protolambda und Dankrad Feist. Derzeit sind Rollups in ihrer Fähigkeit eingeschränkt, Benutzertransaktionen kostengünstig zu gestalten, da sie ihre Transaktionen in `CALLDATA` posten. Das ist teuer, weil es von allen Ethereum-Nodes verarbeitet wird und für immer in der Kette bleibt, obwohl Rollups die Daten nur für kurze Zeit benötigen. Proto-Danksharding führt Datenblobs ein, die gesendet und an Blöcke angehängt werden können. Die Daten in diesen Blobs sind für die EVM nicht zugänglich und werden automatisch nach einer festgelegten Zeitspanne (1-3 Monate) gelöscht. Das bedeutet, dass Rollups ihre Daten viel kostengünstiger senden und die Einsparungen in Form von günstigeren Transaktionen an die Endbenutzer weitergeben können.
diff --git a/public/content/translations/de/roadmap/pbs/index.md b/public/content/translations/de/roadmap/pbs/index.md
index b20468cf7f8..fb3cd3f670a 100644
--- a/public/content/translations/de/roadmap/pbs/index.md
+++ b/public/content/translations/de/roadmap/pbs/index.md
@@ -41,7 +41,7 @@ Danksharding ist der Weg, auf dem Ethereum zu >100000 Transaktionen pro Sekunde
## Aktueller Fortschritt {#current-progress}
-PBS ist in einer fortgeschrittenen Phase der Forschung, aber es gibt immer noch ein paar wichtige Designfragen, die gelöst werden müssen, bevor es in Ethereum Clients implementiert werden kann. Es gibt noch keine endgültige Spezifikation. Das heißt, dass PBS wahrscheinlich noch mindestens ein Jahr oder länger entfernt ist. Informieren Sie sich über den neuesten [Forschungsstand](https://notes.ethereum.org/@vbuterin/pbs_zensur_resistance).
+PBS ist in einer fortgeschrittenen Phase der Forschung, aber es gibt immer noch ein paar wichtige Designfragen, die gelöst werden müssen, bevor es in Ethereum Clients implementiert werden kann. Es gibt noch keine endgültige Spezifikation. Das heißt, dass PBS wahrscheinlich noch mindestens ein Jahr oder länger entfernt ist. Informieren Sie sich über den neuesten [Forschungsstand](https://notes.ethereum.org/@vbuterin/pbs_censorship_resistance).
## Weiterführende Informationen {#further-reading}
diff --git a/public/content/translations/de/roadmap/single-slot-finality/index.md b/public/content/translations/de/roadmap/single-slot-finality/index.md
index 97b109ac4ae..b988eafe741 100644
--- a/public/content/translations/de/roadmap/single-slot-finality/index.md
+++ b/public/content/translations/de/roadmap/single-slot-finality/index.md
@@ -58,7 +58,7 @@ Das Problem mit dem Skalieren von Aggregationen mit einer Erhöhung der Validato
## Aktueller Fortschritt {#current-progress}
-SSF ist in der Forschungsphase. Es ist nicht zu erwarten, dass es in den nächsten Jahren entsendet werden kann, wahrscheinlich wird dies erst nach anderen wesentlichen Verbesserungen wie [Verkle Bäumen](/roadmap/verkle-trees/) und [Danksharding](/roadmap/danksharding]) passieren können.
+SSF ist in der Forschungsphase. Es ist nicht zu erwarten, dass es in den nächsten Jahren entsendet werden kann, wahrscheinlich wird dies erst nach anderen wesentlichen Verbesserungen wie [Verkle Bäumen](/roadmap/verkle-trees/) und [Danksharding](/roadmap/danksharding/) passieren können.
## Weiterführende Informationen {#further-reading}
diff --git a/public/content/translations/de/smart-contracts/index.md b/public/content/translations/de/smart-contracts/index.md
index 878288ac2d4..0bf43351956 100644
--- a/public/content/translations/de/smart-contracts/index.md
+++ b/public/content/translations/de/smart-contracts/index.md
@@ -65,7 +65,7 @@ Sie können Berechnungen durchführen, Währungen erzeugen, Daten speichern, NFT
- [Stablecoins](/stablecoins/)
- [Einzigartige digitale Vermögenswerte erstellen und verteilen](/nft/)
- [Ein automatischer, offener Währungsumtausch](/get-eth/#dex)
-- [Dezentralisiertes Gaming](/dapps/?category=gaming)
+- [Dezentralisiertes Gaming](/dapps/?category=gaming#explore)
- [Eine Versicherungspolice mit automatisierter Auszahlung](https://etherisc.com/)
- [Ein Standard, der es Menschen ermöglicht, individuelle, interoperable Währungen zu schaffen](/developers/docs/standards/tokens/)
diff --git a/public/content/translations/de/zero-knowledge-proofs/index.md b/public/content/translations/de/zero-knowledge-proofs/index.md
index 1b6e11d2316..986b91b2318 100644
--- a/public/content/translations/de/zero-knowledge-proofs/index.md
+++ b/public/content/translations/de/zero-knowledge-proofs/index.md
@@ -4,7 +4,7 @@ description: Eine nicht-technische Einführung in Null-Wissen-Beweise für Anfä
lang: de
---
-## Was sind Null-Wissen-Beweise? {#what-are-zk-proofs}
+# Was sind Null-Wissen-Beweise? {#what-are-zk-proofs}
Ein Null-Wissen-Beweis ist eine Methode, um die Gültigkeit einer Aussage zu beweisen, ohne die Aussage selbst offenzulegen. Der „Beweisanführer“ ist die Partei, die versucht, eine Aussage zu beweisen, während der „Verifizierer“ für die Validierung der Aussage verantwortlich ist.
diff --git a/public/content/translations/el/community/code-of-conduct/index.md b/public/content/translations/el/community/code-of-conduct/index.md
index 322a1e10894..fb669a51e13 100644
--- a/public/content/translations/el/community/code-of-conduct/index.md
+++ b/public/content/translations/el/community/code-of-conduct/index.md
@@ -4,6 +4,8 @@ description: Τα βασικά πρότυπα που επιδιώκουμε σε
lang: el
---
+# Κώδικας Δεοντολογίας {#conduct-intro}
+
## Αποστολή {#mission}
Να αναπτύξει και να διατηρήσει τον πιο ολοκληρωμένο και προσβάσιμο κόμβο γνώσης για το Ethereum.
diff --git a/public/content/translations/el/community/events/index.md b/public/content/translations/el/community/events/index.md
index 95c7206c016..382c0b546d6 100644
--- a/public/content/translations/el/community/events/index.md
+++ b/public/content/translations/el/community/events/index.md
@@ -5,7 +5,7 @@ lang: el
hideEditButton: true
---
-## Προσεχείς εκδηλώσεις {#events}
+# Προσεχείς εκδηλώσεις {#events}
**Κάθε μήνα, πραγματοποιούνται εκδηλώσεις του Ethereum σε όλο τον κόσμο.** Μπορείτε να παρακολουθήσετε μια εκδήλωση κοντά σας για να γνωρίσετε περισσότερους ανθρώπους της κοινότητας, να μάθετε για τις ευκαιρίες απασχόλησης και να αναπτύξετε νέες δεξιότητες.
diff --git a/public/content/translations/el/community/get-involved/index.md b/public/content/translations/el/community/get-involved/index.md
index 0653de226f6..c1c127a5347 100644
--- a/public/content/translations/el/community/get-involved/index.md
+++ b/public/content/translations/el/community/get-involved/index.md
@@ -16,7 +16,7 @@ lang: el
- [Εντοπίστε ένα σφάλμα στο Gitcoin](https://gitcoin.co/), εργαστείτε σε ένα μικρό ή μεγάλο τεχνικό ζήτημα και κερδίστε κρυπτονομίσματα!
- Παρακολουθήστε ένα [ETHGlobal](http://ethglobal.co/) hackathon κοντά σας!
- Δείτε τα [έργα που σχετίζονται με τον τομέα που γνωρίζετε καλύτερα ή τη γλώσσα προγραμματισμού της επιλογής σας](/developers/docs/programming-languages/).
-- Παρακολουθήστε ή συμμετέχετε στις [Συγκεντρώσεις των βασικών προγραμματιστών](https://www.youtube.com/playlist?list=PLaM7G4Llrb7zfMXCZVEXEABT8OSnd4-7w).
+- Παρακολουθήστε ή συμμετέχετε στις [Συγκεντρώσεις των βασικών προγραμματιστών](https://www.youtube.com/@EthereumProtocol).
- [Λίστα επιθυμιών του Προγράμματος Υποστήριξης Οικοσυστήματος](https://esp.ethereum.foundation/wishlist/) - περιοχές εργαλείων, τεκμηρίωσης και υποδομής όπου το Πρόγραμμα Υποστήριξης Οικοσυστημάτων Ethereum αναζητά ενεργά αιτήσεις χορήγησης
- [Web3Bridge](https://www.web3bridge.com/) - ένταξη στη φιλοδοξία της κοινότητας web3 και την πρωτοβουλία τους να εντοπίσουν, να εκπαιδεύσουν και να υποστηρίξουν εκατοντάδες προγραμματιστές και μέλη της κοινότητας σε όλη την Αφρική
- Εγγραφείτε στο [Ethereum Cat Herders Discord](https://discord.io/EthCatHerders)
diff --git a/public/content/translations/el/community/grants/index.md b/public/content/translations/el/community/grants/index.md
index 3ba5e1c64ef..e19a687cc40 100644
--- a/public/content/translations/el/community/grants/index.md
+++ b/public/content/translations/el/community/grants/index.md
@@ -18,7 +18,6 @@ lang: el
- [MetaCartel](https://www.metacartel.org/grants/) - _Ανάπτυξη Dapp, δημιουργία DAO_
- [Moloch DAO](https://www.molochdao.com/) - _Απόρρητο, αναβάθμιση επιπέδου 2, ασφάλεια πελάτη και πολλά άλλα_
- [Χορηγίες DAO](https://docs.google.com/spreadsheets/d/1XHc-p_MHNRdjacc8uOEjtPoWL86olP4GyxAJOFO0zxY/edit#gid=0) - _Υπολογιστικό φύλλο Google για οργανισμούς που προσφέρουν επιχορηγήσεις_
-- [Crunchbase για επιχορηγήσεις Web3](https://www.cryptoneur.xyz/web3-grants) - _Φιλτράρισμα και αναζήτηση επιχορηγήσεων ανά κατηγορία, περίπτωση χρήσης, ποσό και πολλά άλλα. Συνεισφέρετε για να βοηθήσετε και άλλους να βρουν τη σωστή επιχορήγηση._
- [Ακαδημαϊκές υποτροφίες](https://esp.ethereum.foundation/academic-grants) - _Χορηγίες για την υποστήριξη ακαδημαϊκής εργασίας που σχετίζεται με το Ethereum_
- [Blockworks Grantfarm](https://blockworks.co/grants/programs) - _Η Blockworks έχει συντάξει έναν ολοκληρωμένο κατάλογο με όλες τις επιχορηγήσεις, τα RFP και τις αμοιβές εύρεσης σφαλμάτων._
@@ -35,7 +34,6 @@ lang: el
- [Πρόγραμμα επιχορήγησης δικτύου SKALE](https://skale.space/developers#grants) - _[SKALE](https://skale.space/)δίκτυο οικοσυστήματος_
- [The Graph](https://airtable.com/shrdfvnFvVch3IOVm) – _[The Graph](https://thegraph.com/) οικοσύστημα _
- [Πρόγραμμα επιχορήγησης Uniswap](https://www.uniswapfoundation.org/apply-for-a-grant) - _[Κοινότητα Uniswap](https://uniswap.org/)_
-- [Χορηγίες Web3](https://web3grants.net) - _Μια εκτενής λίστα προγραμμάτων επιχορήγησης που σχετίζονται με το web3/crypto_
## Τετραγωνική χρηματοδότηση {#quadratic-funding}
diff --git a/public/content/translations/el/decentralized-identity/index.md b/public/content/translations/el/decentralized-identity/index.md
index 7bb5f709c06..451fd490e7e 100644
--- a/public/content/translations/el/decentralized-identity/index.md
+++ b/public/content/translations/el/decentralized-identity/index.md
@@ -49,7 +49,7 @@ summaryPoint3: Χάρη στα κρυπτονομίσματα, οι χρήστε
## Τι καθιστά τα αποκεντρωμένα αναγνωριστικά υλοποιήσιμα; {#what-makes-decentralized-identifiers-possible}
-### 1. Υποδομή Δημόσιου Κλειδιού (PKI) {#public-key-infrastructure}
+### 1. Υποδομή Δημόσιου Κλειδιού (PKI) {#public-key-cryptography}
Το Public-key infrastructure (PKI) είναι ένα μέτρο ασφάλειας πληροφοριών που δημιουργεί ένα [δημόσιο κλειδί](/glossary/#public-key) και [ ένα ιδιωτικό κλειδί](/glossary/#private-key) για μια οντότητα. Η κρυπτογραφία δημόσιου κλειδιού χρησιμοποιείται σε δίκτυα blockchain για τον έλεγχο ταυτότητας των χρηστών και την απόδειξη της ιδιοκτησίας των ψηφιακών τους στοιχείων.
diff --git a/public/content/translations/el/defi/index.md b/public/content/translations/el/defi/index.md
index f05cadbc84c..fd10cdb16d9 100644
--- a/public/content/translations/el/defi/index.md
+++ b/public/content/translations/el/defi/index.md
@@ -47,7 +47,7 @@ H DeFi είναι ένας γενικός όρος για οικονομικά
| Οι αγορές είναι πάντα ανοικτές. | Οι αγορές κλείνουν επειδή οι υπάλληλοι έχουν ωράριο εργασίας. |
| Είναι φτιαγμένη ώστε να υπάρχει διαφάνεια και ο καθένας μπορεί να δει τα δεδομένα ενός προϊόντος και να επιθεωρήσει πώς λειτουργεί το σύστημα. | Τα χρηματοπιστωτικά ιδρύματα είναι κλειστά βιβλία: δεν μπορείτε να ζητήσετε να δείτε το ιστορικό των δανείων τους, το αρχείο των περιουσιακών τους στοιχείων που διαχειρίζονται και ούτω καθεξής. |
-
+
Εξερευνήστε εφαρμογές DeFi
@@ -65,7 +65,7 @@ H DeFi είναι ένας γενικός όρος για οικονομικά
Δείτε τις προτάσεις μας για τις DeFi εφαρμογές για να τις δοκιμάσετε, αν είστε νέοι στο Ethereum.
-
+
Εξερευνήστε εφαρμογές DeFi
@@ -92,7 +92,7 @@ H DeFi είναι ένας γενικός όρος για οικονομικά
Ως blockchain, το Ethereum έχει σχεδιαστεί για την αποστολή συναλλαγών με ένα ασφαλή και παγκόσμιο τρόπο. Όπως το Bitcoin, το Ethereum κάνει την αποστολή χρημάτων σε όλο τον κόσμο τόσο εύκολα, όπως την αποστολή email. Απλά εισαγάγετε το [όνομα ENS](/nft/#nft-domains) των παραληπτών σας (όπως bob.eth) ή τη διεύθυνση του λογαριασμού τους από το πορτοφόλι σας και η πληρωμή σας θα πάει απευθείας σε αυτούς σε μερικά λεπτά (συνήθως). Για να στείλετε ή να λάβετε πληρωμές, θα χρειαστείτε ένα [πορτοφόλι](/wallets/).
-
+
Δείτε τις dapps πληρωμών
@@ -123,7 +123,7 @@ H DeFi είναι ένας γενικός όρος για οικονομικά
- Το «peer-to-peer», που σημαίνει ότι ένας δανειολήπτης θα δανειστεί απευθείας από ένα συγκεκριμένο δανειστή.
- Το «pool-based» όπου οι δανειστές παρέχουν κεφάλαιο (ρευστότητα) σε μια δεξαμενή από την οποία μπορούν να δανειστούν οι δανειολήπτες.
-
+
Δείτε τις dapps δανεισμού
@@ -183,7 +183,7 @@ H DeFi είναι ένας γενικός όρος για οικονομικά
- Τα aDai σας θα αυξηθούν με βάση το επιτόκιο και μπορείτε να δείτε το υπόλοιπό σας να αυξάνεται στο πορτοφόλι σας. Ανάλογα το ετήσιο ποσοστό επιτοκίου, το υπόλοιπο του πορτοφολιού σας θα εμφανίζεται σαν 100.1234 μετά από λίγες ημέρες ή ακόμα και ώρες!
- Μπορείτε να κάνετε ανάληψη ένα ποσό των κανονικών Dai που είναι ίσο με το υπόλοιπό aDai σας ανά πάσα στιγμή.
-
+
Δείτε dapps για δανεισμό
@@ -211,7 +211,7 @@ H DeFi είναι ένας γενικός όρος για οικονομικά
Για παράδειγμα, εάν θέλετε να χρησιμοποιήσετε τη λοταρία χωρίς απώλειες PoolTogether (που περιγράφεται παραπάνω), θα χρειαστείτε ένα κρυπτονόμισμα όπως το Dai ή το USDC. Αυτά τα DEX σάς επιτρέπουν να ανταλλάξετε τα ETH σας με αυτά τα κρυπτονομίσματα και να τα επιστρέψετε ξανά με την ολοκλήρωση.
-
+
Δείτε ανταλλακτήρια κρύπτο
@@ -223,7 +223,7 @@ H DeFi είναι ένας γενικός όρος για οικονομικά
Όταν χρησιμοποιείτε ένα κεντρικό χρηματιστήριο, πρέπει να καταθέτετε τα περιουσιακά σας στοιχεία πριν από τη συναλλαγή και να τα εμπιστεύεστε σε αυτό. Ενώ τα περιουσιακά σας στοιχεία κατατίθενται, διατρέχουν κίνδυνο, καθώς τα κεντρικά ανταλλακτήρια αποτελούν ελκυστικούς στόχους για τους χάκερ.
-
+
Δείτε εφαρμογές συναλλαγών
@@ -235,7 +235,7 @@ H DeFi είναι ένας γενικός όρος για οικονομικά
Ένα καλό παράδειγμα είναι το [ταμείο DeFi Pulse Index (DPI)](https://defipulse.com/blog/defi-pulse-index/). Αυτό είναι ένα αμοιβαίο κεφάλαιο που ισορροπεί ξανά αυτόματα για να διασφαλίσει ότι το χαρτοφυλάκιό σας περιλαμβάνει πάντα [τα κορυφαία κρυπτονομίσματα DeFi ανά κεφαλαιοποίηση αγοράς](https://www.coingecko.com/en/defi). Δε χρειάζεται ποτέ να διαχειριστείτε καμία από τις λεπτομέρειες και μπορείτε να κάνετε ανάληψη από το ταμείο όποτε θέλετε.
-
+
Δείτε εφαρμογές επενδύσεων
@@ -249,7 +249,7 @@ H DeFi είναι ένας γενικός όρος για οικονομικά
- Είναι διαφανές, ώστε οι έρανοι να μπορούν να αποδείξουν πόσα χρήματα έχουν συγκεντρωθεί. Μπορείτε ακόμη και να εντοπίσετε πώς δαπανώνται τα κεφάλαια αργότερα.
- Οι έρανοι μπορούν να ορίσουν αυτόματες επιστροφές χρημάτων εάν, για παράδειγμα, υπάρχει συγκεκριμένη προθεσμία και ελάχιστο ποσό που δε θα συμπληρωθεί.
-
+
Δείτε εφαρμογές χρηματοδότησης
@@ -276,7 +276,7 @@ H DeFi είναι ένας γενικός όρος για οικονομικά
Τα προϊόντα Ethereum, όπως κάθε λογισμικό, μπορεί να υστερούν από σφάλματα και εκμεταλλεύσεις. Έτσι, αυτή τη στιγμή πολλά προϊόντα ασφάλισης στον χώρο, επικεντρώνονται στην προστασία των χρηστών τους από την απώλεια κεφαλαίων. Ωστόσο, υπάρχουν έργα που αρχίζουν να δημιουργούν κάλυψη για οτιδήποτε μπορεί να μας συμβεί. Ένα καλό παράδειγμα αυτού είναι η κάλυψη Crop της Etherisc που στοχεύει να [προστατέψει τους μικροκαλλιεργητές στην Κένυα από ξηρασίες και πλημμύρες](https://blog.etherisc.com/etherisc-teams-up-with-chainlink-to-deliver-crop-insurance-in-kenya-137e433c29dc). Η αποκεντρωμένη ασφάλιση μπορεί να προσφέρει φθηνότερη κάλυψη για τους αγρότες που συχνά αποτιμώνται από την παραδοσιακή ασφάλιση.
-
+
Δείτε εφαρμογές ασφάλισης
@@ -286,7 +286,7 @@ H DeFi είναι ένας γενικός όρος για οικονομικά
Με τόσα πολλά που συμβαίνουν, θα χρειαστείτε έναν τρόπο να παρακολουθείτε όλες τις επενδύσεις, τα δάνεια και τις συναλλαγές σας. Υπάρχουν πολλά προϊόντα που σας επιτρέπουν να συντονίζετε όλη τη δραστηριότητά σας στο DeFi από ένα μέρος. Αυτή είναι η ομορφιά της ανοιχτής αρχιτεκτονικής του DeFi. Οι ομάδες μπορούν να δημιουργήσουν διεπαφές όπου δεν μπορείτε απλώς να δείτε το υπόλοιπο κεφαλαίου σας στα προϊόντα, αλλά μπορείτε να χρησιμοποιήσετε και τις δυνατότητές τους. Μπορεί να σας φανεί χρήσιμο καθώς εξερευνάτε περισσότερο το DeFi.
-
+
Δείτε εφαρμογές χαρτοφυλακίου
diff --git a/public/content/translations/el/desci/index.md b/public/content/translations/el/desci/index.md
index f75a3265c0b..56d24a2ab54 100644
--- a/public/content/translations/el/desci/index.md
+++ b/public/content/translations/el/desci/index.md
@@ -68,7 +68,7 @@ summaryPoint3: Δημιουργία πάνω στο ανοιχτό επιστη
Μελέτες έχουν δείξει ότι οι επιτροπές αναθεώρησης επιχορηγήσεων κάνουν κακή δουλειά όσον αφορά την επιλογή προτάσεων υψηλής ποιότητας, καθώς οι ίδιες προτάσεις που δίνονται σε διαφορετικές ομάδες έχουν εξαιρετικά διαφορετικά αποτελέσματα. Καθώς η χρηματοδότηση γίνεται πιο σπάνια, συγκεντρώνεται σε μια μικρότερη δεξαμενή γνωστών ερευνητών με πιο ιδιαίτερα έργα. Το αποτέλεσμα έχει δημιουργήσει ένα υπερανταγωνιστικό τοπίο χρηματοδότησης, εδραιώνει διεστραμμένα κίνητρα και καταπνίγει την καινοτομία.
-Το Web3 έχει τη δυνατότητα να διαταράξει αυτό το μοντέλο χρηματοδότησης πειραματιζόμενο με διαφορετικά μοντέλα κινήτρων που αναπτύχθηκαν από τους DAO και γενικά το Web3. [Η αναδρομική χρηματοδότηση δημοσίων αγαθών](https://medium.com/ethereum-optimism/retroactive-public-goods-funding-33c9b7d00f0c), [η τετραγωνική χρηματοδότηση](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2003531), [η διακυβέρνηση DAO](https://www.antler.co/blog/daos-and-web3-governance) και οι [δομές κινήτρων με ψηφιακά στοιχεία](https://cdixon.org/2017/05/27/crypto-tokens-a-breakthrough-in-open-network-design) είναι μερικά από τα εργαλεία Web3 που θα μπορούσαν να φέρουν επανάσταση στη χρηματοδότηση της επιστήμης.
+Το Web3 έχει τη δυνατότητα να διαταράξει αυτό το μοντέλο χρηματοδότησης πειραματιζόμενο με διαφορετικά μοντέλα κινήτρων που αναπτύχθηκαν από τους DAO και γενικά το Web3. [Η αναδρομική χρηματοδότηση δημοσίων αγαθών](https://medium.com/ethereum-optimism/retroactive-public-goods-funding-33c9b7d00f0c), [η τετραγωνική χρηματοδότηση](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2003531), [η διακυβέρνηση DAO](https://www.antler.co/blog/daos-and-web3-governance-the-promise-implications-and-challenges-ahead) και οι [δομές κινήτρων με ψηφιακά στοιχεία](https://cdixon.org/2017/05/27/crypto-tokens-a-breakthrough-in-open-network-design) είναι μερικά από τα εργαλεία Web3 που θα μπορούσαν να φέρουν επανάσταση στη χρηματοδότηση της επιστήμης.
### Ιδιοκτησία ΙΡ και ανάπτυξη {#ip-ownership}
diff --git a/public/content/translations/el/roadmap/beacon-chain/index.md b/public/content/translations/el/roadmap/beacon-chain/index.md
index 5b43c77f51e..a42752afcd7 100644
--- a/public/content/translations/el/roadmap/beacon-chain/index.md
+++ b/public/content/translations/el/roadmap/beacon-chain/index.md
@@ -27,7 +27,7 @@ summaryPoint4: Μπορεί να το γνωρίζετε αυτό ως "Φάση
Η κύρια αλυσίδα θα εισαγάγει το [proof-of-stake](/developers/docs/consensus-mechanisms/pos/) στο Ethereum. Ένα νέο τρόπο για να σας βοηθήσει να διατηρήσετε το Ethereum ασφαλές. Σκεφτείτε το σαν δημόσιο αγαθό που θα κάνει το Ethereum πιο υγιές και θα σας αποδώσει περισσότερο ETH κατά την παραγωγή του. Στην πράξη, θα σας εμπλέξει στην αποθήκευση (staking) ETH προκειμένου να ενεργοποιήσετε το λογισμικό επικύρωσης. Ως επικυρωτής θα επεξεργάζεστε συναλλαγές και θα δημιουργείτε νέα μπλοκ στην αλυσίδα (chain).
-Το Staking (αποθήκευση) και η λειτουργία σας ως επικυρωτής, είναι ευκολότερη από την [εξόρυξη](/developers/docs/mining/) (πώς είναι το δίκτυο ασφαλισμένο επί του παρόντος). Με την ελπίδα να βοηθήσει το Ethereum να γίνει πιο ασφαλές μακροπρόθεσμα. Όσο περισσότεροι άνθρωποι συμμετέχουν στο δίκτυο, τόσο πιο αποκεντρωμένο και ασφαλές από μια επίθεση θα μπορέσει να γίνει.
+Το Staking (αποθήκευση) και η λειτουργία σας ως επικυρωτής, είναι ευκολότερη από την [εξόρυξη](/developers/docs/consensus-mechanisms/pow/mining/) (πώς είναι το δίκτυο ασφαλισμένο επί του παρόντος). Με την ελπίδα να βοηθήσει το Ethereum να γίνει πιο ασφαλές μακροπρόθεσμα. Όσο περισσότεροι άνθρωποι συμμετέχουν στο δίκτυο, τόσο πιο αποκεντρωμένο και ασφαλές από μια επίθεση θα μπορέσει να γίνει.
Αν ενδιαφέρεστε να γίνετε επικυρωτής και να βοηθήσετε στην ασφάλιση του Beacon Chain, μάθετε περισσότερα για το staking.
diff --git a/public/content/translations/el/smart-contracts/index.md b/public/content/translations/el/smart-contracts/index.md
index 5527b12554b..7074ff28557 100644
--- a/public/content/translations/el/smart-contracts/index.md
+++ b/public/content/translations/el/smart-contracts/index.md
@@ -65,7 +65,7 @@ lang: el
- [Κρυπτονομίσματα σταθερής αξίας](/stablecoins/)
- [Δημιουργία και διανομή μοναδικών ψηφιακών περιουσιακών στοιχείων](/nft/)
- [Ένα αυτόματο, ανοικτό ανταλλακτήριο νομισμάτων](/get-eth/#dex)
-- [Αποκεντρωμένα παιχνίδια](/dapps/?category=gaming)
+- [Αποκεντρωμένα παιχνίδια](/dapps/?category=gaming#explore)
- [Μια πολιτική ασφάλισης που πληρώνει αυτόματα](https://etherisc.com/)
- [Ένα πρότυπο που επιτρέπει στους ανθρώπους να δημιουργήσουν προσαρμοσμένα και διαλειτουργικά νομίσματα](/developers/docs/standards/tokens/)
diff --git a/public/content/translations/es/community/code-of-conduct/index.md b/public/content/translations/es/community/code-of-conduct/index.md
index 4a07faf31db..a3bf1acb53b 100644
--- a/public/content/translations/es/community/code-of-conduct/index.md
+++ b/public/content/translations/es/community/code-of-conduct/index.md
@@ -4,6 +4,8 @@ description: Los estándares básicos por los que nos esforzamos en todos los es
lang: es
---
+# Código de conducta {#conduct-intro}
+
## Misión {#mission}
Desarrollar y mantener el centro de conocimiento más completo y accesible para Ethereum.
diff --git a/public/content/translations/es/community/events/index.md b/public/content/translations/es/community/events/index.md
index 9556c96f5ea..38f4f753c17 100644
--- a/public/content/translations/es/community/events/index.md
+++ b/public/content/translations/es/community/events/index.md
@@ -5,7 +5,7 @@ lang: es
hideEditButton: true
---
-## Próximos eventos {#events}
+# Próximos eventos {#events}
**Cada mes, se celebran grandes eventos de Ethereum en todo el mundo.** Plantéese asistir a alguno cerca suyo para conocer a más gente en la comunidad, aprender sobre oportunidades de empleo y desarrollar nuevas habilidades.
diff --git a/public/content/translations/es/community/get-involved/index.md b/public/content/translations/es/community/get-involved/index.md
index 0c7f400e4b5..b89b9fb6b54 100644
--- a/public/content/translations/es/community/get-involved/index.md
+++ b/public/content/translations/es/community/get-involved/index.md
@@ -16,7 +16,7 @@ Le sugerimos que comience enterándose de la misión y los valores de ethereum.o
- [Encuentre una recompensa en Gitcoin](https://gitcoin.co/), ¡solucione problemas técnicos sencillos o complejos y gane criptomonedas!
- ¡Participe en un hackaton (o encuentro de programadores) [ETHGlobal](http://ethglobal.co/) cerca de donde viveo
- Consulte [los proyectos relacionados con su área especialidad o el lenguaje de programación de su elección](/developers/docs/programming-languages/).
-- Mire o participe en las [reuniones Core Dev](https://www.youtube.com/playlist?list=PLaM7G4Llrb7zfMXCZVEXEABT8OSnd4-7w)
+- Mire o participe en las [reuniones Core Dev](https://www.youtube.com/@EthereumProtocol)
- [Lista de deseos del Programa de apoyo al ecosistema](https://esp.ethereum.foundation/wishlist/): herramientas, documentación e infraestructura donde el Programa de apoyo al ecosistema de Ethereum está buscando activamente propuestas para becar.
- [Web3Bridge](https://www.web3bridge.com/): únase a la iniciativa de la inspiradora comunidad web3 para buscar, formar y apoyar a cientos de desarrolladores y miembros de la comunidad en toda África.
- Únase a [Ethereum Cat Herders en Discord](https://discord.io/EthCatHerders)
diff --git a/public/content/translations/es/community/grants/index.md b/public/content/translations/es/community/grants/index.md
index 597c6b59bb5..2de547597bd 100644
--- a/public/content/translations/es/community/grants/index.md
+++ b/public/content/translations/es/community/grants/index.md
@@ -18,7 +18,6 @@ Estos programas apoyan al ecosistema Ethereum ofreciendo subvenciones para una a
- [MetaCartel](https://www.metacartel.org/grants/): _desarrollo de DApp, creación de DAO_
- [Moloch DAO](https://www.molochdao.com/): _privacidad, escalabilidad en capa 2, seguridad del cliente y más_.
- [Subvenciones DAO](https://docs.google.com/spreadsheets/d/1XHc-p_MHNRdjacc8uOEjtPoWL86olP4GyxAJOFO0zxY/edit#gid=0): _hoja de cálculo de Google de organizaciones que ofrecen subvenciones_
-- [Crunchbase para subvenciones Web3](https://www.cryptoneur.xyz/web3-grants): _filtrar y buscar subvenciones por categoría, caso de uso y cantidad, entre otras opciones. Contribuya para que otros puedan encontrar la subvención correcta._
- [Becas académicas](https://esp.ethereum.foundation/academic-grants): _becas para apoyar el trabajo académico relacionado con Ethereum_
- [Blockworks Grantfarm](https://blockworks.co/grants/programs) - _Blockworks ha elaborado un directorio exhaustivo de todas las subvenciones, solicitudes de propuestas (o RFP) y recompensas por detección de errores_
@@ -35,7 +34,6 @@ Estos proyectos han creado sus propias subvenciones para proyectos con fines de
- [Programa de subvenciones para la red SKALE](https://skale.space/developers#grants): _[ecosistema](https://skale.space/) de la red SKALE_
- [The Graph](https://airtable.com/shrdfvnFvVch3IOVm): _[ecosistema The Graph](https://thegraph.com/)_
- [Programa de subvenciones Uniswap](https://www.uniswapfoundation.org/apply-for-a-grant): _[Comunidad](https://uniswap.org/)Uniswap_
-- [Subvenciones Web3](https://web3grants.net): _una exhaustiva lista de programas de subvenciones relacionados con la Web3/crypto_
## Financiamiento cuadrático {#quadratic-funding}
diff --git a/public/content/translations/es/contributing/design/adding-design-resources/index.md b/public/content/translations/es/contributing/design/adding-design-resources/index.md
index 78a48940a41..4cc870fbf92 100644
--- a/public/content/translations/es/contributing/design/adding-design-resources/index.md
+++ b/public/content/translations/es/contributing/design/adding-design-resources/index.md
@@ -4,6 +4,8 @@ description: Pautas y requerimientos para asegurar la calidad de los materiales
lang: es
---
+# Añadiendo recursos de diseño {#adding-design-resources}
+
Cualquiera puede sugerir nuevos materiales de diseño para la [página de diseño y experiencia del usuario en Web3](/developers/docs/design-and-ux/).
Tenga en cuenta que la finalidad de esta página es proporcionar valor a los usuarios que aspiran ser diseñadores en Web3. La sección de diseño no está ahí para que la uses para anunciar tus servicios, productos o plataformas.
diff --git a/public/content/translations/es/decentralized-identity/index.md b/public/content/translations/es/decentralized-identity/index.md
index aebbde7fb3d..617ee492379 100644
--- a/public/content/translations/es/decentralized-identity/index.md
+++ b/public/content/translations/es/decentralized-identity/index.md
@@ -49,7 +49,7 @@ Los identificadores descentralizados se almacenan en las cadenas de bloques o re
## ¿Qué hace que los identificadores descentralizados sean posibles? {#what-makes-decentralized-identifiers-possible}
-### 1. Infraestructura de clave pública (ICP) {#public-key-infrastructure}
+### 1. Infraestructura de clave pública (ICP) {#public-key-cryptography}
La infraestructura de clave pública (ICP) es una medida de seguridad de la información que genera una [clave pública](/glossary/#public-key) y una [clave privada](/glossary/#private-key) para una entidad. La criptografía de clave pública se utiliza en las redes de cadena de bloques para autenticar las identidades del usuario y demostrar la propiedad de los activos digitales.
diff --git a/public/content/translations/es/defi/index.md b/public/content/translations/es/defi/index.md
index 7c379d149a7..4dddd3acb22 100644
--- a/public/content/translations/es/defi/index.md
+++ b/public/content/translations/es/defi/index.md
@@ -47,7 +47,7 @@ Una de las mejores maneras de determinar el potencial de las DeFi es entender lo
| Los mercados siempre están abiertos. | Los mercados cierran debido a que los empleados necesitan descanso. |
| Construido sobre la transparencia: cualquier persona puede mirar los datos del producto e inspeccionar el funcionamiento del sistema. | Las instituciones financieras son como libros cerrados: no puede preguntar por el historial de préstamos, el registro de sus activos administrados, etc. |
-
+
Explorar las aplicaciones DeFi
@@ -65,7 +65,7 @@ Esto puede sonar extraño... ¿por qué querría programar mi dinero? Sin embarg
Si es nuevo en Ethereum, explore y pruebe algunas de nuestras sugerencias de aplicaciones DeFi.
-
+
Explorar las aplicaciones DeFi
@@ -92,7 +92,7 @@ Existe una alternativa descentralizada para la mayoría de servicios financieros
Como cadena de bloques, Ethereum está diseñado para realizar transacciones de una manera segura y con un alcance global. Al igual que Bitcoin, Ethereum hace que enviar dinero alrededor del mundo sea tan fácil como enviar un correo electrónico. Solo se necesita ingresar el [nombre ENS](/nft/#nft-domains) del beneficiario (p. ej. bob.eth) o la dirección de cuenta usando la cartera y este recibirá directamente el pago en cuestión de minutos (por lo general). Para enviar o recibir pagos, necesitará tener una [cartera](/wallets/).
-
+
Ver DApps de pagos
@@ -123,7 +123,7 @@ Los préstamos de dinero de proveedores descentralizados se llevan a cabo de dos
- Entre pares (también conocido como P2P), en que un prestatario tomará prestado directamente de un prestamista específico.
- En función de las reservas (o «pools»), cuando los prestamistas proporcionan reservas (liquidez) a una reserva de la que los prestatarios pueden pedir préstamos.
-
+
Ver DApps de préstamos
@@ -183,7 +183,7 @@ Puede ganar un interés en criptomonedas al prestar dinero: verá cómo aumentan
- Sus tókenes aDai crecerán en base al tipo de interés y podrá ver cómo aumenta el valor total de su cartera. Dependiendo de la tasa efectiva anual (APR, por sus siglas en inglés), el valor de su cartera será aproximadamente de 100.1234 tras pocos días ¡o incluso horas!
- Puede retirar una cantidad de Dai que sea igual a sus fondos de aDai siempre que quiera.
-
+
Ver DApps de préstamos
@@ -211,7 +211,7 @@ Hay miles de tókenes en Ethereum. Los intercambios descentralizados (DEX) le pe
Por ejemplo, si quiere usar la lotería sin pérdidas PoolTogether (explicada arriba) necesitará un token como Dai o USDC. Estos DEX le permiten cambiar sus ETH por tókenes y viceversa cuando haya acabado.
-
+
Ver intercambios de tókenes
@@ -223,7 +223,7 @@ Hay más opciones avanzadas para los inversores que quieren tener más control.
Cuando usa un intercambio centralizado, tiene que depositar sus activos antes de la operación y confiar en ellos. A pesar de que sus activos sí son depositados, están en riesgo, ya que los intercambios descentralizados son objetivos atractivos para los hackers.
-
+
Ver DApps de transacciones
@@ -235,7 +235,7 @@ Hay productos de gestión de fondos en Ethereum que tratarán de hacer crecer su
Un buen ejemplo es el [fondo DeFi Pulse Index (DPI)](https://defipulse.com/blog/defi-pulse-index/). Este es un fondo que se reequilibra automáticamente para asegurar que su portafolio siempre incluya [los mejores tókenes DeFi por capitalización de mercado](https://www.coingecko.com/en/defi). Nunca tendrá que gestionar ninguno de los detalles y puede retirar del fondo cuando usted quiera.
-
+
Ver DApps de inversión
@@ -249,7 +249,7 @@ Ethereum es una plataforma ideal para la recaudación de fondos:
- Es transparente, por lo que los recaudadores pueden demostrar cuánto dinero se ha recaudado. Incluso puede rastrear cómo se están usando los fondos.
- Los recaudadores pueden configurar reembolsos automáticos si, por ejemplo, hay una fecha límite y una cantidad mínima a la que no se ha llegado.
-
+
Ver DApps de recaudación de fondos
@@ -276,7 +276,7 @@ El aseguramiento descentralizado tiene como objetivo hacer que el aseguramiento
Los productos de Ethereum —al igual que el software— pueden sufrir virus y aprovechamiento. Ahora mismo hay muchos productos de seguros enfocándose en proteger a sus usuarios de pérdidas de fondos. Sin embargo, existen proyectos que empiezan a crear cobertura para todo lo que la vida nos depare. Un buen ejemplo es la cobertura de Etherisc Crop, que pretende [proteger a los pequeños agricultores en Kenia contra las sequías y las inundaciones](https://blog.etherisc.com/etherisc-teams-up-with-chainlink-to-deliver-crop-insurance-in-kenya-137e433c29dc). El aseguramiento descentralizado ofrece una cobertura más barata para los granjeros a los que se les cobra con precios fuera del de los seguros tradicionales.
-
+
Ver DApps de aseguramiento
@@ -286,7 +286,7 @@ Los productos de Ethereum —al igual que el software— pueden sufrir virus y a
Con tantas cosas en marcha, necesitará una forma de realizar un seguimiento de todas sus inversiones, préstamos y operaciones. Existen una gran cantidad de productos que le permiten coordinar toda su actividad de DeFi (Finanzas Descentralizadas) desde un solo lugar. Esta es la belleza de la arquitectura abierta de DeFi. Los equipos pueden crear interfaces en las que no solo puede ver sus saldos entre productos, sino que también puede usar sus funciones. Le resultará más útil a medida que explora más sobre DeFi.
-
+
Ver DApps de portafolios
diff --git a/public/content/translations/es/desci/index.md b/public/content/translations/es/desci/index.md
index 592240eef68..e965173c97a 100644
--- a/public/content/translations/es/desci/index.md
+++ b/public/content/translations/es/desci/index.md
@@ -68,7 +68,7 @@ El modelo estándar actual para la financiación de la ciencia es que los indivi
Los estudios han demostrado que los paneles de revisión de subvenciones hacen un mal trabajo al seleccionar propuestas de alta calidad, ya que las mismas propuestas entregadas a diferentes paneles tienen resultados muy diferentes. A medida que la financiación se ha vuelto más escasa, se ha concentrado en un grupo más pequeño de investigadores más experimentados con proyectos intelectualmente más conservadores. El efecto ha creado un panorama de financiación altamente competitivo, enquistando incentivos perversos y ahogando la innovación.
-Web3 tiene el potencial de interrumpir este modelo de financiación roto al experimentar con diferentes modelos de incentivos desarrollados por DAO y Web3 en general. [Financiación retroactiva de bienes públicos](https://medium.com/ethereum-optimism/retroactive-public-goods-funding-33c9b7d00f0c), [financiación cuadrática](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2003531), [Gobernanza de DAO](https://www.antler.co/blog/daos-and-web3-governance) y [estructuras de incentivos tokenizados](https://cdixon.org/2017/05/27/crypto-tokens-a-breakthrough-in-open-network-design) son algunas de las herramientas Web3 que podrían revolucionar la financiación de la ciencia.
+Web3 tiene el potencial de interrumpir este modelo de financiación roto al experimentar con diferentes modelos de incentivos desarrollados por DAO y Web3 en general. [Financiación retroactiva de bienes públicos](https://medium.com/ethereum-optimism/retroactive-public-goods-funding-33c9b7d00f0c), [financiación cuadrática](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2003531), [Gobernanza de DAO](https://www.antler.co/blog/daos-and-web3-governance-the-promise-implications-and-challenges-ahead) y [estructuras de incentivos tokenizados](https://cdixon.org/2017/05/27/crypto-tokens-a-breakthrough-in-open-network-design) son algunas de las herramientas Web3 que podrían revolucionar la financiación de la ciencia.
### Tenencia y desarrollo de la propiedad intelectual {#ip-ownership}
diff --git a/public/content/translations/es/developers/docs/consensus-mechanisms/pow/mining/index.md b/public/content/translations/es/developers/docs/consensus-mechanisms/pow/mining/index.md
index ec4007951ee..79948d9e581 100644
--- a/public/content/translations/es/developers/docs/consensus-mechanisms/pow/mining/index.md
+++ b/public/content/translations/es/developers/docs/consensus-mechanisms/pow/mining/index.md
@@ -70,9 +70,9 @@ Observe a Austin mientras le guía por el proceso de minado y la cadena de bloqu
## El algoritmo de minería {#mining-algorithm}
-Ethereum Mainnet sólo ha usado un algoritmo de minería- ['Ethash'](/developers/docs/consensus-mechanisms/pow/mining-algorithms/ethash/). Ethhash fue el sucesor de un algoritmo de R&D original conocido como ['Dagger-Hashimoto'](/developers/docs/consensus-mechanisms/pow/mining-algorithms/dagger-hashimoto/).
+Ethereum Mainnet sólo ha usado un algoritmo de minería- ['Ethash'](/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/ethash/). Ethhash fue el sucesor de un algoritmo de R&D original conocido como ['Dagger-Hashimoto'](/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/dagger-hashimoto/).
-[Más información sobre los algoritmos de minería](/developers/docs/consensus-mechanisms/pow/mining-algorithms/).
+[Más información sobre los algoritmos de minería](/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/).
## Temas relacionados {#related-topics}
diff --git a/public/content/translations/es/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/dagger-hashimoto/index.md b/public/content/translations/es/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/dagger-hashimoto/index.md
index d44cffea04e..9c9aa81d681 100644
--- a/public/content/translations/es/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/dagger-hashimoto/index.md
+++ b/public/content/translations/es/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/dagger-hashimoto/index.md
@@ -4,7 +4,7 @@ description: Un examen detallado del algoritmo Dagger-Hashimoto.
lang: es
---
-Dagger Hashimoto fue la implementación y especificación de investigación original para el algoritmo de minería de Ethereum. Dagger Hashimoto fue reemplazado por [Ethash](#ethash). La minería se apagó por completo en [La fusión](/updates/merge) el 15 de septiembre de 2022. Desde entonces, Ethereum se ha asegurado a través de un mecanismo [de prueba de participación](/developers/docs/consensus-mechanisms/pos) en su lugar. Esta página es de interés histórico: la información que contiene ya no es relevante para Ethereum después de La fusión.
+Dagger Hashimoto fue la implementación y especificación de investigación original para el algoritmo de minería de Ethereum. Dagger Hashimoto fue reemplazado por [Ethash](#ethash). La minería se apagó por completo en [La fusión](/roadmap/merge/) el 15 de septiembre de 2022. Desde entonces, Ethereum se ha asegurado a través de un mecanismo [de prueba de participación](/developers/docs/consensus-mechanisms/pos) en su lugar. Esta página es de interés histórico: la información que contiene ya no es relevante para Ethereum después de La fusión.
## Pre-requisitos: {#prerequisites}
diff --git a/public/content/translations/es/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/ethash/index.md b/public/content/translations/es/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/ethash/index.md
index b98edc2b18e..26be15c16f9 100644
--- a/public/content/translations/es/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/ethash/index.md
+++ b/public/content/translations/es/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/ethash/index.md
@@ -8,7 +8,7 @@ lang: es
Ethash era el algoritmo de minería de prueba de trabajo de Ethereum. La prueba de trabajo ahora se ha **desactivado por completo** y Ethereum ahora está protegido utilizando la prueba de participación en su lugar. Descubra más en La fusión, prueba de participación (PoS) y la participación. ¡Esta página es de interés histórico!
-[Ethash](https://github.com/ethereum/wiki/wiki/Ethash) es una versión modificada del algoritmo [Dagger-Hashimoto](/developers/docs/consensus-mechanisms/pow/mining-algorithms/dagger-hashimoto). La prueba de trabajo de Ethash es [memoria dura](https://wikipedia.org/wiki/Memory-hard_function), lo que se pensaba que hacía que el algoritmo fuera resistente a ASIC. Finalmente se desarrollaron los ASIC de Ethash, pero la minería de GPU seguía siendo una opción viable hasta que se desactivó la prueba de trabajo. Ethash todavía se utiliza para minar otras monedas en otras redes de prueba de trabajo que no son de Ethereum.
+[Ethash](https://github.com/ethereum/wiki/wiki/Ethash) es una versión modificada del algoritmo [Dagger-Hashimoto](/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/dagger-hashimoto). La prueba de trabajo de Ethash es [memoria dura](https://wikipedia.org/wiki/Memory-hard_function), lo que se pensaba que hacía que el algoritmo fuera resistente a ASIC. Finalmente se desarrollaron los ASIC de Ethash, pero la minería de GPU seguía siendo una opción viable hasta que se desactivó la prueba de trabajo. Ethash todavía se utiliza para minar otras monedas en otras redes de prueba de trabajo que no son de Ethereum.
## ¿Cómo funciona Ethash? {#how-does-ethash-work}
@@ -44,7 +44,7 @@ ACCESSES = 64 # number of accesses in hashimoto loop
### El uso de SHA3 {#sha3}
-El desarrollo de Ethereum coincidió con el desarrollo del estándar SHA3, y el proceso de estándares hizo un cambio tardío en el relleno del algoritmo hash finalizado, de modo que los hashes de Ethereum sha3_256 y sha3_512 no son hashes SHA3 estándar, sino una variante a la que se hace referencia a menudo referida a menudo como Keccak-256 y Keccak-512 en otros contextos. Vea el conversación [aquí](https://eips.ethereum.org/EIPS-1803), [aquí](http://ethereum.stackexchange.com/questions/550/which-cryptographic-hash-function-does-ethereum-use), o [aquí](http://bitcoin.stackexchange.com/questions/42055/what-is-the-approach-to-calculate-an-ethereum-address-from-a-256-bit-private-key/42057#42057).
+El desarrollo de Ethereum coincidió con el desarrollo del estándar SHA3, y el proceso de estándares hizo un cambio tardío en el relleno del algoritmo hash finalizado, de modo que los hashes de Ethereum sha3_256 y sha3_512 no son hashes SHA3 estándar, sino una variante a la que se hace referencia a menudo referida a menudo como Keccak-256 y Keccak-512 en otros contextos. Vea el conversación [aquí](https://eips.ethereum.org/EIPS/eip-1803), [aquí](http://ethereum.stackexchange.com/questions/550/which-cryptographic-hash-function-does-ethereum-use), o [aquí](http://bitcoin.stackexchange.com/questions/42055/what-is-the-approach-to-calculate-an-ethereum-address-from-a-256-bit-private-key/42057#42057).
Por favor, tenga esto en cuenta, ya que los hashes SHA3 se mencionan en la descripción del algoritmo a continuación.
diff --git a/public/content/translations/es/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/index.md b/public/content/translations/es/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/index.md
index 7dcc7004632..25e2a4a7344 100644
--- a/public/content/translations/es/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/index.md
+++ b/public/content/translations/es/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/index.md
@@ -24,13 +24,13 @@ Dagger Hashimoto fue un algoritmo de investigación precursor para la minería d
Dagger-Hashimoto utilizó versiones modificadas de los algoritmos Dagger y Hashimoto. La diferencia entre Dagger Hashimoto y Hashimoto es que, en lugar de usar la cadena de bloques como fuente de datos, Dagger Hashimoto utiliza un conjunto de datos generados a medida, que se actualiza en función de los datos de bloque cada N bloques. El conjunto de datos se genera utilizando el algoritmo Dagger, lo que permite calcular de manera eficiente un subconjunto específico de cada nonce para el algoritmo de verificación del cliente ligero. La diferencia entre Dagger Hashimoto y Dagger es que, a diferencia del Dagger original, el conjunto de datos utilizado para consultar el bloque es semipermanente y solo se actualiza a intervalos ocasionales (por ejemplo, una vez por semana). Esto significa que la parte del esfuerzo de generar el conjunto de datos es cercana a cero, por lo que los argumentos de Sergio Lerner con respecto a las aceleraciones de memoria compartida se vuelven insignificantes.
-Descubra más sobre [Dagger-Hashimoto](/developers/docs/consensus-mechanisms/pow/mining-algorithms/dagger-hashimoto).
+Descubra más sobre [Dagger-Hashimoto](/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/dagger-hashimoto).
## Ethash {#ethash}
Ethash era el algoritmo de minería que en realidad se usaba en la verdadera red principal de Ethereum bajo la estructura de prueba de trabajo, que ahora ha quedado obsoleta. Ethash fue esencialmente el nuevo nombre dado a una versión específica de Dagger-Hashimoto después de que el algoritmo se actualizara considerablemente, aunque aun heredando los principios fundamentales de su predecesor. La red principal de Ethereum solo usó Ethash - Dagger Hashimoto era una versión de R&D del algoritmo de minería que fue reemplazado antes de que comenzara la minería en la red principal de Ethereum.
-Descubra más sobre [Ethash](/developers/docs/consensus-mechanisms/pow/mining-algorithms/ethash).
+Descubra más sobre [Ethash](/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/ethash).
## Más información {#further-reading}
diff --git a/public/content/translations/es/developers/docs/data-and-analytics/block-explorers/index.md b/public/content/translations/es/developers/docs/data-and-analytics/block-explorers/index.md
index 13db26d0a39..0bf60fe5b1a 100644
--- a/public/content/translations/es/developers/docs/data-and-analytics/block-explorers/index.md
+++ b/public/content/translations/es/developers/docs/data-and-analytics/block-explorers/index.md
@@ -16,15 +16,15 @@ Es necesario que comprendas los conceptos básicos de Ethereum para poder entend
- [Etherscan:](https://etherscan.io/) _También disponible en chino, coreano, ruso y japonés_
- [Beaconcha.in](https://beaconcha.in/)
- [Blockchair:](https://blockchair.com/ethereum) _También disponible en inglés, francés, italiano, neerlandés, portugués, ruso, chino y farsi_
-- [Blockscout](https://blockscout.com/)
+- [Blockscout](https://eth.blockscout.com/)
+- [Chainlens](https://www.chainlens.com/)
- [Etherchain](https://www.etherchain.org/)
- [Ethplorer:](https://ethplorer.io/) _También disponible en chino, español, francés, turco, ruso, coreano y vietnamita_
+- [EthVM](https://www.ethvm.com/)
+- [Explorador de bloques DexGuru](https://ethereum.dex.guru/)
- [OKLink](https://www.oklink.com/eth)
- [Otterscan](https://otterscan.io/)
- [Rantom](https://rantom.app/)
-- [Sirato](https://www.web3labs.com/sirato)
-- [EthVM](https://www.ethvm.com/)
-- [Explorador de bloques DexGuru](https://ethereum.dex.guru/)
## Datos {#data}
diff --git a/public/content/translations/es/developers/docs/gas/index.md b/public/content/translations/es/developers/docs/gas/index.md
index 9172790dadc..73087ceb239 100644
--- a/public/content/translations/es/developers/docs/gas/index.md
+++ b/public/content/translations/es/developers/docs/gas/index.md
@@ -152,4 +152,4 @@ Si desea supervisar las tarifas de gas, para poder enviar sus ETH por menos, pue
- [Prueba de participación frente a prueba de trabajo](https://blockgeeks.com/guides/proof-of-work-vs-proof-of-stake/)
- [Estrategias de optimización de gas para desarrolladores](https://www.alchemy.com/overviews/solidity-gas-optimization)
- [Documentacion sobre EIP-1559](https://eips.ethereum.org/EIPS/eip-1559).
-- [ Recursos de Time Beiko sobre EIP-1559](https://hackmd.io/@timbeiko/1559-resources).
+- [ Recursos de Tim Beiko sobre EIP-1559](https://hackmd.io/@timbeiko/1559-resources).
diff --git a/public/content/translations/es/developers/docs/networks/index.md b/public/content/translations/es/developers/docs/networks/index.md
index b7230e663d1..fe2853d0716 100644
--- a/public/content/translations/es/developers/docs/networks/index.md
+++ b/public/content/translations/es/developers/docs/networks/index.md
@@ -60,7 +60,6 @@ Las dos redes públicas de prueba que los desarrolladores de clientes están man
- [Alchemy Sepolia faucet](https://sepoliafaucet.com/)
- [Faucet Infura Sepolia](https://www.infura.io/faucet)
- [Faucet Chainstack Sepolia](https://faucet.chainstack.com/sepolia-faucet)
-- [Faucet de red de prueba | Sepolia](https://testnet-faucet.com/sepolia/)
#### Goerli _(soporte a largo plazo)_ {#goerli}
diff --git a/public/content/translations/es/developers/docs/scaling/validium/index.md b/public/content/translations/es/developers/docs/scaling/validium/index.md
index 1e2ce6fd846..e8e7d9a66e5 100644
--- a/public/content/translations/es/developers/docs/scaling/validium/index.md
+++ b/public/content/translations/es/developers/docs/scaling/validium/index.md
@@ -153,7 +153,7 @@ Múltiples proyectos proporcionan implementaciones de Validium y voliciones que
**Matter Labs zkPorter:**_zkPorter es un protocolo de escalado de capa 2 que aborda la disponibilidad de datos con un enfoque híbrido que combina las ideas de zkRollup y el sharding. Puede soportar arbitrariamente muchos fragmentos (shards), cada uno con su propia política de disponibilidad de datos. _
-- [Documentación](https://docs.zksync.io/zkevm/#what-is-zkporter)
+- [Documentación](https://docs.zksync.io/zk-stack/concepts/hyperchains-hyperscaling.html#logical-state-partitions-in-zk-porters)
- [Sitio web](https://zksync.io/)
## Más información {#further-reading}
diff --git a/public/content/translations/es/developers/docs/standards/index.md b/public/content/translations/es/developers/docs/standards/index.md
index 57bc5ae53a1..5cd95218f39 100644
--- a/public/content/translations/es/developers/docs/standards/index.md
+++ b/public/content/translations/es/developers/docs/standards/index.md
@@ -18,7 +18,7 @@ Normalmente se introducen estándares como [Propuestas de mejora de Ethereum](/e
- [Introducción a la Gobernanza de Ethereum](/governance/)
- [Resumen de gobernanza de Ethereum](https://web.archive.org/web/20201107234050/https://blog.bmannconsulting.com/ethereum-governance/) _31 de marzo de 2019, Mann Boris_
- [Gobernanza de desarrollo del protocolo de Ethereum y coordinación de actualización de la red](https://hudsonjameson.com/2020-03-23-ethereum-protocol-development-governance-and-network-upgrade-coordination/) _23 de marzo de 2020, Hudson Jameson_
-- [Lista de reproducción de todas las reuniones de desarrolladores principales de Ethereum](https://www.youtube.com/playlist?list=PLaM7G4Llrb7zfMXCZVEXEABT8OSnd4-7w) _(lista de reproducción de YouTube)_
+- [Lista de reproducción de todas las reuniones de desarrolladores principales de Ethereum](https://www.youtube.com/@EthereumProtocol) _(lista de reproducción de YouTube)_
## Tipos de estándares {#types-of-standards}
diff --git a/public/content/translations/es/developers/tutorials/erc20-with-safety-rails/index.md b/public/content/translations/es/developers/tutorials/erc20-with-safety-rails/index.md
index 909cf1672da..07511ef0c15 100644
--- a/public/content/translations/es/developers/tutorials/erc20-with-safety-rails/index.md
+++ b/public/content/translations/es/developers/tutorials/erc20-with-safety-rails/index.md
@@ -24,7 +24,7 @@ Si quieres ver el código fuente completo:
## Creando un contrato ERC-20 {#creating-an-erc-20-contract}
-Antes de agregar la funcionalidad del riel de seguridad, necesitamos un contrato ERC-20. En este artículo usaremos [el Asistente de Contratos de OpenZeppelin](https://docs.openzeppelin.com/contracts/4.x/wizard). Ábrelo en otra ventana del navegador y sigue estas instrucciones:
+Antes de agregar la funcionalidad del riel de seguridad, necesitamos un contrato ERC-20. En este artículo usaremos [el Asistente de Contratos de OpenZeppelin](https://docs.openzeppelin.com/contracts/5.x/wizard). Ábrelo en otra ventana del navegador y sigue estas instrucciones:
1. Selecciona **ERC-20**.
2. Ingresa estos ajustes:
diff --git a/public/content/translations/es/developers/tutorials/how-to-mint-an-nft/index.md b/public/content/translations/es/developers/tutorials/how-to-mint-an-nft/index.md
index 7c17cdcc7d6..0fb5944f198 100644
--- a/public/content/translations/es/developers/tutorials/how-to-mint-an-nft/index.md
+++ b/public/content/translations/es/developers/tutorials/how-to-mint-an-nft/index.md
@@ -3,7 +3,7 @@ title: Como acuñar un NFT (parte 2/3 de la serie de tutoriales de NFT)
description: Este tutorial describe como acuñar un NFT en la cadena de bloques de Ethereum usando nuestro contrato inteligente y Web3.
author: "Sumi Mudgil"
tags:
- - "NTF"
+ - "NFT"
- "ERC-721"
- "alchemy"
- "solidity"
diff --git a/public/content/translations/es/developers/tutorials/how-to-view-nft-in-metamask/index.md b/public/content/translations/es/developers/tutorials/how-to-view-nft-in-metamask/index.md
index 29db95491bc..6fce1b7a1bc 100644
--- a/public/content/translations/es/developers/tutorials/how-to-view-nft-in-metamask/index.md
+++ b/public/content/translations/es/developers/tutorials/how-to-view-nft-in-metamask/index.md
@@ -3,7 +3,7 @@ title: Cómo visualizar su NFT en su cartera (parte 3/3 de la serie de tutoriale
description: Este tutorial explica cómo visualizar un NFT en MetaMask
author: "Sumi Mudgil"
tags:
- - "NTF"
+ - "NFT"
- "ERC-721"
- "Alchemy"
- "tókenes no fungibles"
diff --git a/public/content/translations/es/developers/tutorials/how-to-write-and-deploy-an-nft/index.md b/public/content/translations/es/developers/tutorials/how-to-write-and-deploy-an-nft/index.md
index 3f16fdb450a..f20dba165cc 100644
--- a/public/content/translations/es/developers/tutorials/how-to-write-and-deploy-an-nft/index.md
+++ b/public/content/translations/es/developers/tutorials/how-to-write-and-deploy-an-nft/index.md
@@ -3,7 +3,7 @@ title: Cómo escribir & y desplegar un NFT (parte 1/3 de la serie de tutoriales
description: Este tutorial es la parte 1 de una serie sobre NFT que le indicará cómo escribir y desplegar un contrato inteligente de un token no fungible o NFT (ERC-721 token) paso a paso usando Ethereum y el sistema de archivos interplanetario (IPFS).
author: "Sumi Mudgil"
tags:
- - "NTF"
+ - "NFT"
- "ERC-721"
- "Alchemy"
- "Solidity"
diff --git a/public/content/translations/es/developers/tutorials/send-token-etherjs/index.md b/public/content/translations/es/developers/tutorials/send-token-ethersjs/index.md
similarity index 100%
rename from public/content/translations/es/developers/tutorials/send-token-etherjs/index.md
rename to public/content/translations/es/developers/tutorials/send-token-ethersjs/index.md
diff --git a/public/content/translations/es/developers/tutorials/waffle-dynamic-mocking-and-testing-calls/index.md b/public/content/translations/es/developers/tutorials/waffle-dynamic-mocking-and-testing-calls/index.md
index 5a02a57cd90..6179fb3a2b5 100644
--- a/public/content/translations/es/developers/tutorials/waffle-dynamic-mocking-and-testing-calls/index.md
+++ b/public/content/translations/es/developers/tutorials/waffle-dynamic-mocking-and-testing-calls/index.md
@@ -295,4 +295,4 @@ El código fuente de este tutorial puedes econtrarlo [aquí](https://github.com/
Otros tutoriales que podrían interesarte:
-- [Probar contratos inteligentes con Waffle](/developers/tutorials/testing-smart-contract-with-waffle/)
+- [Probar contratos inteligentes con Waffle](/developers/tutorials/waffle-test-simple-smart-contract/)
diff --git a/public/content/translations/es/developers/tutorials/waffle-test-simple-smart-contract/index.md b/public/content/translations/es/developers/tutorials/waffle-test-simple-smart-contract/index.md
index 8b03bddf19a..fb12fcb84fa 100644
--- a/public/content/translations/es/developers/tutorials/waffle-test-simple-smart-contract/index.md
+++ b/public/content/translations/es/developers/tutorials/waffle-test-simple-smart-contract/index.md
@@ -200,4 +200,4 @@ Si la prueba sale bien, nos garantizará que se ha revertido la transacción. Si
- [Probar ERC20 con Waffle](/developers/tutorials/testing-erc-20-tokens-with-waffle/)
- [Waffle: Llamadas dinámicas de simulación y prueba de contratos](/developers/tutorials/waffle-dynamic-mocking-and-testing-calls/#gatsby-focus-wrapper)
-- [Tutorial de Waffle "Hola, Mundo" con hardhat y ethers](/developers/tutorials/waffle-hello-world-with-buidler-tutorial/)
+- [Tutorial de Waffle "Hola, Mundo" con hardhat y ethers](/developers/tutorials/waffle-say-hello-world-with-hardhat-and-ethers/)
diff --git a/public/content/translations/es/enterprise/index.md b/public/content/translations/es/enterprise/index.md
index b963da6d5bf..6eccba624ba 100644
--- a/public/content/translations/es/enterprise/index.md
+++ b/public/content/translations/es/enterprise/index.md
@@ -51,7 +51,7 @@ Diferentes organizaciones han emprendido iniciativas de colaboración para que E
- [Blast](https://blastapi.io/)_es una plataforma API que proporciona API RPC/WSS para la red principal del archivo de Ethereum y redes de prueba._
- Implementación de [blockapps](https://blockapps.net/) _ del protocolo de Ethereum para empresas, herramientas y API, que forman la plataforma STRATO._
- [Chainstack](https://chainstack.com/) _es la red principal y red de prueba Ethereum alojada en & nubes públicas aisladas de clientes._
-- [ConsenSys](https://consensys.net/) _proporciona una gama de productos y herramientas para construir en Ethereum, así como servicios de asesoramiento y desarrollo personalizado._
+- [ConsenSys](https://consensys.io/) _proporciona una gama de productos y herramientas para construir en Ethereum, así como servicios de asesoramiento y desarrollo personalizado._
- [Envision Blockchain](https://envisionblockchain.com/) _proporciona servicios de consultoría y desarrollo enfocados a empresas, especializándose en la red principal de Ethereum._
- [EY OpsChain](https://blockchain.ey.com/products/contract-manager) _proporciona un flujo de trabajo de compras mediante la emisión de RFQ, contratos, órdenes de compra y facturas a través de su red de socios comerciales de confianza._
- [Hyperledger Besu](https://www.hyperledger.org/use/besu) _ es un cliente Ethereum de código abierto enfocado en empresas, desarrollado bajo licencia Apache 2.0 y escrito en Java._
@@ -68,7 +68,7 @@ Diferentes organizaciones han emprendido iniciativas de colaboración para que E
### Herramientas y bibliotecas {#tooling-and-libraries}
- [Alethio:](https://explorer.aleth.io/) _plataforma de análisis de datos de Ethereum_
-- [Sirato](https://www.web3labs.com/sirato)_es una plataforma de datos y análisis para redes públicas y privadas de Web3 Labs compatibles con Ethereum._
+- [Chainlens](https://www.chainlens.com/)_es una plataforma de datos y análisis para redes públicas y privadas de Web3 Labs compatibles con Ethereum._
- [Ernst & Nightfall's "Nightfall"](https://github.com/EYBlockchain/nightfall) _: un conjunto de herramientas para realizar transacciones privadas_
- [EthSigner](https://github.com/ConsenSys/ethsigner) _: una aplicación de firmado de transacción para utilizarse con un proveedor de web3_
- [Anteriormente](https://tenderly.co/) _era una plataforma de datos que proporciona análisis en tiempo real, alertas y monitoreo con soporte para redes privadas._
@@ -102,13 +102,12 @@ Estas son algunas de las aplicaciones empresariales que se han apoyándose en la
- [Tinlake](https://tinlake.centrifuge.io/) _recibe financiación mediante activos tokenizados del mundo real como facturas, hipotecas o recaudaciones por derechos de autor en retransmisiones._
- [RealT](https://realt.co/) _Los inversores de todo el mundo pueden comprar en el mercado inmobiliario estadounidense a través de una propiedad completamente compatible, fraccionada y tokenizada._
-- [AgroToken](https://agrotoken.io/en/) _tokenizar y comerciar con productos agrícolas._
+- [AgroToken](https://agrotoken.io/en/home) _tokenizar y comerciar con productos agrícolas._
- [Fasset](https://www.fasset.com/) _es una plataforma para apoyar la infraestructura sostenible._
### Notarización de datos {#notarization-of-data}
- [BBVA](https://www.ledgerinsights.com/bbva-blockchain-loan-banking-tech-award/) _los detalles de los préstamos finalizados se cifran y se registran en la red principal._
-- [La integridad de los datos de Splunk](https://www.splunk.com/en_us/blog/security/the-newest-data-attack.html) _se puede garantizar escribiendo periódicamente el código de los datos indexados a la red principal._
- [ANSA](https://cointelegraph.com/news/italys-top-news-agency-uses-blockchain-to-fight-fake-coronavirus-news) _es la agencia de noticias más grande de Italia, lucha contra noticias falsas y permite a los lectores verificar el origen de las noticias registrándolas en la red principal._
- [Verizon](https://decrypt.co/46745/verizon-news-press-releases-ethereum-full-transparency) _registra comunicados de prensa en Ethereum para asegurar la responsabilidad corporativa y la confianza._
- [Breitling](https://www.coindesk.com/breitling-arianee-all-new-watches-ethereum) _registra la procedencia y el historial de reparación de relojes en Ethereum._
@@ -116,13 +115,11 @@ Estas son algunas de las aplicaciones empresariales que se han apoyándose en la
### Cadena de suministro {#supply-chain}
-- [CargoX](https://cargox.io/press-releases/full/cargox-becomes-first-public-blockchain-ethereum-bill-lading-provider-approved-international-group-pi-clubs) _es la factura de embarque y proveedor de transferencia de documentos._
- [Morfeo. network](https://morpheus.network/) _es una plataforma de automatización de cadena de suministro que implementa un híbrido de cadenas privadas con datos notariados en la red principal de Ethereum. La utilizan empresas como el distribuidor canadiense de alimentos, petróleo y gas Federated Co-op Ltd. y el proveedor argentino de comida para animales domésticos Vitalcan._
- [Minespider](https://www.minespider.com/) _se encarga del seguimiento de la cadena de suministro._
- [EY OpsChain Contract Manager](https://blockchain.ey.com/products/contract-manager) _proporciona un flujo de trabajo de compras mediante la emisión de RFQ, contratos, órdenes de compra y facturas a través de su red de socios comerciales de confianza._
- [Treum](https://treum.io/) _ofrece transparencia, trazabilidad y comerciabilidad para cadenas de suministro mediante la tecnología de cadena de bloques._
- [TradeTrust](https://www.tradetrust.io/) _verifica facturas electrónicas de Lading (eBLs) para envío internacionales._
-- [Birra Peroni](https://www.ey.com/en_gl/news/2021/05/birra-peroni-is-the-first-industrial-organization-to-mint-unique-non-fungible-tokens-using-ey-opschain-traceability) _acuña NFT por cada nuevo lote de cerveza, lo que permite una mayor visibilidad y eficiencia en toda su cadena de suministros._
### Seguros {#insurance}
diff --git a/public/content/translations/es/enterprise/private-ethereum/index.md b/public/content/translations/es/enterprise/private-ethereum/index.md
index 13b5e7b5187..4feab86464a 100644
--- a/public/content/translations/es/enterprise/private-ethereum/index.md
+++ b/public/content/translations/es/enterprise/private-ethereum/index.md
@@ -24,5 +24,4 @@ Diferentes organizaciones han elaborado iniciativas de colaboración para que Et
- [Hyperledger Besu](https://www.hyperledger.org/use/besu) _Cliente de Ethereum de código abierto que se ha desarrollado con la licencia Apache 2.0 y se ha escrito en Java. Incluye varios algoritmos de consenso como PoW y PoA (IBFT, IBFT 2.0, Etherhash y Clique). Sus completos esquemas de permisos se han diseñado específicamente para utilizarse en un entorno de consorcio._
- [Burrow Hyperledger:](https://www.hyperledger.org/projects/hyperledger-burrow) _ cliente de cadena de bloques modular con un intérprete de contratos inteligentes autorizado, parcialmente desarrollado para la especificación de máquina virtual de Ethereum (EVM)_
- [Kaleido:](https://kaleido.io/) _Plataforma de bloque completo para construir y ejecutar ecosistemas híbridos y presentes en toda la nube_
-- [Quorum:](https://consensys.net/quorum/) _plataforma empresarial de cadena de bloques de código abierto basada en Ethereum con características avanzadas de grado empresarial que permiten privacidad, permisos y rendimiento._
- [Zeeve](https://www.zeeve.io/) _proporciona un rango de productos y herramientas para construir en Ethereum, también en infraestructura y API para aplicaciones de empresas en Web3._
diff --git a/public/content/translations/es/foundation/index.md b/public/content/translations/es/foundation/index.md
index 4af3d7b22e9..6c26e088a0c 100644
--- a/public/content/translations/es/foundation/index.md
+++ b/public/content/translations/es/foundation/index.md
@@ -27,7 +27,7 @@ Desde 2014, Ethereum Foundation ha organizado Devcon, la conferencia anual para
Puede acceder al contenido en vídeo de las presentaciones de la conferencia para cada año desde su inicio en el [sitio](https://archive.devcon.org/).
-Obtenga más información en [devcon.org](https://devcon.org/), consulte el blog [Devcon](https://blog.ethereum.org/category/devcon/), o siga [@efdevcon](https://twitter.com/EFDevcon) para ver los últimos anuncios.
+Obtenga más información en [devcon.org](https://devcon.org/), consulte el blog [Devcon](https://blog.ethereum.org/category/events/), o siga [@efdevcon](https://twitter.com/EFDevcon) para ver los últimos anuncios.
### Programa de becas {#fellowship-program}
diff --git a/public/content/translations/es/glossary/index.md b/public/content/translations/es/glossary/index.md
index ac6a19bd617..924a004c013 100644
--- a/public/content/translations/es/glossary/index.md
+++ b/public/content/translations/es/glossary/index.md
@@ -378,7 +378,7 @@ Una etiqueta dada a algunas [EIP](#eip) que intentan definir un estándar espec
Un algoritmo de [prueba de trabajo](#pow) que se utilizó en Ethereum antes de hacer la transición a la [prueba de participación](#pos).
-[Más información](/developers/docs/consensus-mechanisms/pow/mining-algorithms/ethash)
+[Más información](/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/ethash)
### ether {#ether}
diff --git a/public/content/translations/es/history/index.md b/public/content/translations/es/history/index.md
index a18532ae078..a861be575aa 100644
--- a/public/content/translations/es/history/index.md
+++ b/public/content/translations/es/history/index.md
@@ -27,11 +27,11 @@ Vaya directamente a la información sobre algunas de las actualizaciones anterio
## 2023 {#2023}
-### Shanghai {#shanghai}
+### Shanghai-Capella {#shapella}
-
+
-#### Resumen {#shanghai-summary}
+#### Resumen de Shangai {#shanghai-summary}
La actualizacion Shangai permite retirar la participación a la capa de ejecución. Junto con la actualización Capella, habilitó los bloques para aceptar las operaciones de retirada, que permitieran a los interesados retirar sus ETH provenientes de la cadena de baliza para ejecutarlos posteriormente.
@@ -49,13 +49,7 @@ La actualizacion Shangai permite retirar la participación a la capa de ejecuci
- [Lea la especificación de la actualización Shanghai](https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/shanghai.md)
----
-
-### Capella {#capella}
-
-
-
-#### Resumen {#capella-summary}
+#### Resumen de Capella {#capella-summary}
La actualizacion Capella es la tercera actualización importante a la capa de consenso (cadena de baliza), que le permite retirar su participación. Capella se produjo de forma sincrónica a la actualización de la capa de ejecución, Shanghai, y activó la funcionalidad de retirada de participaciones.
diff --git a/public/content/translations/es/roadmap/beacon-chain/index.md b/public/content/translations/es/roadmap/beacon-chain/index.md
index b6d69f37bed..5ddcfc4318a 100644
--- a/public/content/translations/es/roadmap/beacon-chain/index.md
+++ b/public/content/translations/es/roadmap/beacon-chain/index.md
@@ -28,7 +28,7 @@ Cadena de baliza es el nombre que se le ha dado a un libro mayor de cuentas que
La cadena de baliza introdujo la [prueba de participación](/developers/docs/consensus-mechanisms/pos/) en Ethereum. Esta mantiene la seguridad de Ethereum y permite a los validadores obtener más ETH en el proceso. En la práctica, la participación supone comprometer ETH para poder activar el software de validación. Como participante, se encargará de ejecutar el software que crea y valida los nuevos bloques de la cadena.
-La participación cumple un propósito similar al que solía realizar la [minería](/developers/docs/mining/), pero con muchas diferencias entre ambos. La minería requería de una inversión inicial significativa destinada a la adquisición de un productivo hardware y a cubrir los gastos de consumo energético, lo que derivó en economías de escala y en la promoción de la centralización. La minería tampoco requería la retención de activos colaterales, lo que limitaba los alcances del protocolo a castigar las acciones incorrectas solo tras un ataque.
+La participación cumple un propósito similar al que solía realizar la [minería](/developers/docs/consensus-mechanisms/pow/mining/), pero con muchas diferencias entre ambos. La minería requería de una inversión inicial significativa destinada a la adquisición de un productivo hardware y a cubrir los gastos de consumo energético, lo que derivó en economías de escala y en la promoción de la centralización. La minería tampoco requería la retención de activos colaterales, lo que limitaba los alcances del protocolo a castigar las acciones incorrectas solo tras un ataque.
La transición de Ethereum a la prueba de participación hace que la red sea significativamente más segura y descentralizada en comparación con la prueba de trabajo. Cuantas más personas participan en la red, más descentralizada y menos segura frente a ataques se vuelve.
diff --git a/public/content/translations/es/roadmap/danksharding/index.md b/public/content/translations/es/roadmap/danksharding/index.md
index 64f1b63ac0d..a7f43beb821 100644
--- a/public/content/translations/es/roadmap/danksharding/index.md
+++ b/public/content/translations/es/roadmap/danksharding/index.md
@@ -15,11 +15,11 @@ Gracias a **Danksharding** (es decir, a la fragmentación), Ethereum se conviert
## ¿Qué es ProtoDanksharding? {#what-is-protodanksharding}
-ProtoDanksharding, también conocido como [EIP-4844](https://eips.ethereum.org/EIPS/eip-4844), es una manera para que las [acumulaciones](/layer2/#rollups) añadan datos más baratos a bloques. El nombre proviene de los investigadores que propusieron la idea: Protolambda y Dankrad Feist. En la actualidad, las acumulaciones no abaratan precisamente el coste de las transacciones para los usuarios, ya que tienen que enviarlas en `CALLDATA`. Su coste es elevado, ya que requiere del procesamiento de todos los nodos de Ethereum y viven siempre en la cadena, aunque las acumulaciones solo necesitan datos por un tiempo limitado. ProtoDanksharding introduce los blobs de datos que se pueden enviar y adjuntar a los bloques. Los datos en estos blobs no son accesibles a la EVM y se eliminan automáticamente después de un periodo de tiempo fijo (1-3 meses). Esto significa que las acumulaciones pueden enviar datos de forma más barata y repercutir el ahorro al usuario final en la forma de transacciones baratas.
+ProtoDanksharding, también conocido como [EIP-4844](https://eips.ethereum.org/EIPS/eip-4844), es una manera para que las [acumulaciones](/layer-2/#rollups) añadan datos más baratos a bloques. El nombre proviene de los investigadores que propusieron la idea: Protolambda y Dankrad Feist. En la actualidad, las acumulaciones no abaratan precisamente el coste de las transacciones para los usuarios, ya que tienen que enviarlas en `CALLDATA`. Su coste es elevado, ya que requiere del procesamiento de todos los nodos de Ethereum y viven siempre en la cadena, aunque las acumulaciones solo necesitan datos por un tiempo limitado. ProtoDanksharding introduce los blobs de datos que se pueden enviar y adjuntar a los bloques. Los datos en estos blobs no son accesibles a la EVM y se eliminan automáticamente después de un periodo de tiempo fijo (1-3 meses). Esto significa que las acumulaciones pueden enviar datos de forma más barata y repercutir el ahorro al usuario final en la forma de transacciones baratas.
-Las acumulaciones son una forma de escalar en Ethereum por lotes de transacciones fuera de la cadena y después publicar los resultados en Ethereum. Una acumulación se compone básicamente de dos partes: de datos y de verificación de la ejecución. Los datos son la secuencia total de transacciones que procesa una acumulación para producir un cambio en el estado publicado por Ethereum. La verificación de ejecución es la reejecución de esas transacciones por algún actor honesto (un «proveedor») para asegurarse de que el cambio del estado propuesto sea correcto. Para verificar la ejecución, los datos de las transacciones tienen que estar disponibles durante un tiempo para que cualquiera los descargue y verifique. Esto significa que el proveedor puede identificar y cuestionar cualquier mala conducta del secuenciador de acumulaciones. Sin embargo, no tiene que estar dispobible para siempre.
+Las acumulaciones son una forma de escalar en Ethereum por lotes de transacciones fuera de la cadena y después publicar los resultados en Ethereum. Una acumulación se compone básicamente de dos partes: de datos y de verificación de la ejecución. Los datos son la secuencia total de transacciones que procesa una acumulación para producir un cambio en el estado publicado por Ethereum. La verificación de ejecución es la reejecución de esas transacciones por algún actor honesto (un «proveedor») para asegurarse de que el cambio del estado propuesto sea correcto. Para verificar la ejecución, los datos de las transacciones tienen que estar disponibles durante un tiempo para que cualquiera los descargue y verifique. Esto significa que el proveedor puede identificar y cuestionar cualquier mala conducta del secuenciador de acumulaciones. Sin embargo, no tiene que estar disponible para siempre.
@@ -65,7 +65,7 @@ Esto funciona mediante la expansión de las masas de datos adjuntos a los bloque
-La separación entre generador de propuestas y constructor de bloques es necesaria para evitar que los validadores individuales tengan que generar compromisos y pruebas costosas para 32 Mb de masas de datos. Esto ejercería demasiada presión sobre los participantes domésticos y les obligaría a invertir en hardware más potente, lo que perjudica la descentralización. En su lugar, los constructores de bloques especializados asumen la responsabilidad de este costoso trabajo computacional. Luego, ponen sus bloques a disposición de los proponentes de bloques para su difusión. El proponente de bloques simplemente elige el bloque que sea más rentable. Cualquiera puede verificar las masas de datos de manera económica y rápida, lo que significa que cualquier validador normal puede comprobar que los constructores de bloques se están comportando de manera honesta. Esto permite procesar grandes masas sin sacrificar la descentralización. Los constructores de bloques que se comporten de manera incorrecta simplemente podrían ser expulsados de la red con un recorte como penalización, y otros ocuparían su lugar debido a que la construcción de bloques es una actividad rentable.
+La separación entre generador de propuestas y constructor de bloques es necesaria para evitar que los validadores individuales tengan que generar compromisos y pruebas costosas para 32 MB de masas de datos. Esto ejercería demasiada presión sobre los participantes domésticos y les obligaría a invertir en hardware más potente, lo que perjudica la descentralización. En su lugar, los constructores de bloques especializados asumen la responsabilidad de este costoso trabajo computacional. Luego, ponen sus bloques a disposición de los proponentes de bloques para su difusión. El proponente de bloques simplemente elige el bloque que sea más rentable. Cualquiera puede verificar las masas de datos de manera económica y rápida, lo que significa que cualquier validador normal puede comprobar que los constructores de bloques se están comportando de manera honesta. Esto permite procesar grandes masas sin sacrificar la descentralización. Los constructores de bloques que se comporten de manera incorrecta simplemente podrían ser expulsados de la red con un recorte como penalización, y otros ocuparían su lugar debido a que la construcción de bloques es una actividad rentable.
diff --git a/public/content/translations/es/roadmap/index.md b/public/content/translations/es/roadmap/index.md
index db36ca332d1..10484a27d80 100644
--- a/public/content/translations/es/roadmap/index.md
+++ b/public/content/translations/es/roadmap/index.md
@@ -61,7 +61,7 @@ Ethereum se actualiza periódciamente para mejorar su escalabilidad, seguridad o
La hoja de ruta es principalmente el resultado de años de trabajo de investigadores y desarrolladores, dado que el protocolo es muy técnico. No obstante cualquier persona motivada puede participar. Las ideas usualmente empiezan como discusiones en un foro del estilo [ethresear.ch](https://ethresear.ch/), [Ethereum magicians](https://ethereum-magicians.org/) o el servidor de Discord de Eth. Pueden haber respuestas a nuevos puntos flacos que se descubren, sugerencias de organizaciones que trabajan en la capa de aplicaciones (como DApps e intercambios) o disuasiones conocidas para los usuarios finales (como costes o velocidades de transacción). Cuando estas ideas maduren, se pueden proponer como [propuestas de mejora de Ethereum o EIP] (https://eips.ethereum.org/). Todo esto se hace en público para que cualquier persona de la comunidad pueda intervenir en cualquier momento.
-[Más información sobre la gobernanza de Ethereum](/gobernanza/)
+[Más información sobre la gobernanza de Ethereum](/governance/)
diff --git a/public/content/translations/es/roadmap/single-slot-finality/index.md b/public/content/translations/es/roadmap/single-slot-finality/index.md
index 14aa0f70c0a..46691d6951e 100644
--- a/public/content/translations/es/roadmap/single-slot-finality/index.md
+++ b/public/content/translations/es/roadmap/single-slot-finality/index.md
@@ -58,7 +58,7 @@ La agregación de escalabilidad aumentando el número de validadores por subred
## Progreso actual {#current-progress}
-SSF está en su fase de investigación. No se espera que se lance en varios años, probablemente después de mejoras sustanciales como [árboles de Verkle](/roadmap/verkle-trees/)y[Danksharding](/roadmap/danksharding]).
+SSF está en su fase de investigación. No se espera que se lance en varios años, probablemente después de mejoras sustanciales como [árboles de Verkle](/roadmap/verkle-trees/)y[Danksharding](/roadmap/danksharding/).
## Más información {#further-reading}
diff --git a/public/content/translations/es/smart-contracts/index.md b/public/content/translations/es/smart-contracts/index.md
index c51bf058930..30e7b93b42f 100644
--- a/public/content/translations/es/smart-contracts/index.md
+++ b/public/content/translations/es/smart-contracts/index.md
@@ -65,7 +65,7 @@ Se pueden realizar cálculos, crear una divisa, almacenar datos, acuñar NFT, en
- [Monedas estables](/stablecoins/)
- [Crear y distribuir activos digitales únicos](/nft/)
- [Un cambio de divisas automático y abierto](/get-eth/#dex)
-- [Juegos descentralizados](/dapps/?category=gaming)
+- [Juegos descentralizados](/dapps/?category=gaming#explore)
- [Una póliza de seguro que paga automáticamente](https://etherisc.com/)
- [Un estándar que permite a las personas crear divisas interoperables y personalizadas](/developers/docs/standards/tokens/)
diff --git a/public/content/translations/es/zero-knowledge-proofs/index.md b/public/content/translations/es/zero-knowledge-proofs/index.md
index 7c3355f6aa7..5dd6b4331ba 100644
--- a/public/content/translations/es/zero-knowledge-proofs/index.md
+++ b/public/content/translations/es/zero-knowledge-proofs/index.md
@@ -4,7 +4,7 @@ description: Introducción no técnica a pruebas de conocimiento cero para princ
lang: es
---
-## ¿Qué son las pruebas de conocimiento cero? {#what-are-zk-proofs}
+# ¿Qué son las pruebas de conocimiento cero? {#what-are-zk-proofs}
Una prueba de conocimiento cero es una forma de probar la validez de una sentencia sin revelar la sentencia en sí. El "probador" (también conocido como tirador de pruebas) es la parte que intenta probar o demostrar una afirmación, mientras que el "verificador" es el responsable de validarla.
diff --git a/public/content/translations/fa/community/code-of-conduct/index.md b/public/content/translations/fa/community/code-of-conduct/index.md
index cfea8ebd12e..50c1b45311f 100644
--- a/public/content/translations/fa/community/code-of-conduct/index.md
+++ b/public/content/translations/fa/community/code-of-conduct/index.md
@@ -4,6 +4,8 @@ description: استانداردهای اصلی که ما در کل فضای ethe
lang: fa
---
+# آییننامه رفتاری {#conduct-intro}
+
## مأموریت {#mission}
توسعه و حفظ جامعترین و دسترسپذیرترین مرکز دانش برای شبکۀ اتریوم.
diff --git a/public/content/translations/fa/community/events/index.md b/public/content/translations/fa/community/events/index.md
index 42452e9287c..373618a54a3 100644
--- a/public/content/translations/fa/community/events/index.md
+++ b/public/content/translations/fa/community/events/index.md
@@ -5,7 +5,7 @@ lang: fa
hideEditButton: true
---
-## رویدادهای پیشرو {#events}
+# رویدادهای پیشرو {#events}
**هر ماه، رویدادهای مهم اتریوم در سرتاسر جهان برگزار میشود.** شرکت در یکی از رویدادهای نزدیک به خود را در نظر داشته باشید تا با افراد بیشتری در جامعه آشنا شوید، درباره فرصتهای شغلی اطلاع کسب کنید و مهارتهای جدید را توسعه دهید.
diff --git a/public/content/translations/fa/community/get-involved/index.md b/public/content/translations/fa/community/get-involved/index.md
index 98ed273b84c..639acc22457 100644
--- a/public/content/translations/fa/community/get-involved/index.md
+++ b/public/content/translations/fa/community/get-involved/index.md
@@ -16,7 +16,7 @@ lang: fa
- [یک جایزه در Gitcoin پیدا کنید](https://gitcoin.co/)، روی یک مشکل فنی کوچک یا بزرگ کار کنید، ارز دیجیتال کسب کنید!
- در یک هکاتون [ETHGlobal](http://ethglobal.co/) در نزدیکی خود شرکت کنید!
- [پروژههای مرتبط با حوزهی تخصصی یا زبان برنامهنویسی انتخابی خود را بررسی کنید](/developers/docs/programming-languages/)
-- [تماسهای Core Dev](https://www.youtube.com/playlist?list=PLaM7G4Llrb7zfMXCZVEXEABT8OSnd4-7w) را تماشا کنید و یا در آن شرکت کنید
+- [تماسهای Core Dev](https://www.youtube.com/@EthereumProtocol) را تماشا کنید و یا در آن شرکت کنید
- [فهرست نیازمندیهای برنامه پشتیبانی اکوسیستم](https://esp.ethereum.foundation/wishlist/) - ابزار، اسناد و مناطق زیرساختی که در آن برنامه حمایت از اکوسیستم اتوریوم فعالانه به دنبال کمک به برنامههای کمکی است
- [Web3Bridge](https://www.web3bridge.com/) - برای شناسایی، آموزش و حمایت از صدها توسعهدهنده و اعضای انجمن در سراسر آفریقا به جامعهی مشتاق web3 بپیوندید
- به [Ethereum Cat Herders Discord](https://discord.io/EthCatHerders) بپیوندید
diff --git a/public/content/translations/fa/community/grants/index.md b/public/content/translations/fa/community/grants/index.md
index 6ee82d8915a..3d2a3c83d33 100644
--- a/public/content/translations/fa/community/grants/index.md
+++ b/public/content/translations/fa/community/grants/index.md
@@ -18,7 +18,6 @@ lang: fa
- [MetaCartel](https://www.metacartel.org/grants/) - _توسعهی Dapp، ساخت DAO_
- [Moloch DAO](https://www.molochdao.com/) - _حریم خصوصی، مقیاسپذیری لایهی 2، امنیت کاربر و غیره_
- [ کمکهای مالی DAO](https://docs.google.com/spreadsheets/d/1XHc-p_MHNRdjacc8uOEjtPoWL86olP4GyxAJOFO0zxY/edit#gid=0) - _صفحهگسترده Google از سازمانهای ارائهدهندهی کمکهای مالی_
-- [Crunchbase برای کمکهای مالی Web3](https://www.cryptoneur.xyz/web3-grants)-_کمکهای مالی را بر اساس دسته، کاربرد، مبلغ، و غیره فیلتر و جستجو کنید. کمک کنید که دیگران کمک مالی مناسب خود را بهتر بیابند._
- [کمکهای مالی تحصیلی](https://esp.ethereum.foundation/academic-grants)-_کمکهای مالی برای تحقیقات آکادمیک مربوط به اتریوم_
- [Blockworks Grantfarm](https://blockworks.co/grants/programs) - _Blockworks یک مجموعه جامع از تمامی کمکهای مالی، RFPها، و پاداشهای گزارش اشکالات._
@@ -35,7 +34,6 @@ lang: fa
- [برنامه کمکهای مالی شبکه SKALE](https://skale.space/developers#grants) - _[اکوسیستم شبکه](https://skale.space/)SKALE_
- [The Graph](https://airtable.com/shrdfvnFvVch3IOVm) – _اکوسیستم [The Graph](https://thegraph.com/)_
- [برنامه کمکهای مالی Uniswap](https://www.uniswapfoundation.org/apply-for-a-grant) - _[جامعه](https://uniswap.org/)Uniswap_
-- [کمکهای مالی Web3](https://web3grants.net) - _یک فهرست گسترده از برنامههای کمکهای مالی مرتبط با web3/رمزارز_
## کمک مالی درجهی دوم {#quadratic-funding}
diff --git a/public/content/translations/fa/decentralized-identity/index.md b/public/content/translations/fa/decentralized-identity/index.md
index 69d70a58ae9..17456159a97 100644
--- a/public/content/translations/fa/decentralized-identity/index.md
+++ b/public/content/translations/fa/decentralized-identity/index.md
@@ -49,7 +49,7 @@ summaryPoint3: به لطف رمزنگاری، کاربران اکنون ابزا
## چه چیزی شناسه های غیرمتمرکز را ممکن می کند? {#what-makes-decentralized-identifiers-possible}
-### 1. زیرساخت کلید عمومی (PKI) {#public-key-infrastructure}
+### 1. زیرساخت کلید عمومی (PKI) {#public-key-cryptography}
زیرساخت کلید عمومی (PKI) یک اقدام امنیتی اطلاعاتی است که یک [کلید عمومی](/glossary/#public-key) و [ ایجاد میکند. کلید خصوصی](/glossary/#private-key) برای یک موجودیت. رمزنگاری کلید عمومی در شبکه های بلاک چین برای احراز هویت کاربران و اثبات مالکیت دارایی های دیجیتال استفاده می شود.
diff --git a/public/content/translations/fa/defi/index.md b/public/content/translations/fa/defi/index.md
index b6976ed8b09..1568f693a0a 100644
--- a/public/content/translations/fa/defi/index.md
+++ b/public/content/translations/fa/defi/index.md
@@ -47,7 +47,7 @@ DeFi یک واژهی کلی برای محصولات و خدمات مالی د
| بازارها همواره باز هستند. | بازارها بسته میشوند چرا که کارمندان نیاز به استراحت دارند. |
| بر پایهی شفافیت ساختهشدهاست – هر کس میتواند اطلاعات محصول را نگاه کند و نحوهی کار سیستم را بررسی کند. | نهادهای مالی همانند کتابهای بسته هستند: نمیتوانید از آنها درخواست کنید که تاریخچهی وامها، تاریخچهی داراییهای مدیریتشدهی آنها و غیره را ببینید. |
-
+
مشاهدهی برنامههای DeFi
@@ -65,7 +65,7 @@ DeFi یک واژهی کلی برای محصولات و خدمات مالی د
اگر تازه پا به جهان اتریوم گذاشتهاید، نگاهی به پیشنهادهای ما برای برنامههای DeFi جهت استفاده بیاندازید.
-
+
مشاهدهی برنامههای DeFi
@@ -92,7 +92,7 @@ DeFi یک واژهی کلی برای محصولات و خدمات مالی د
اتریوم به عنوان یک زنجیرهی بلوکی، برای ارسال تراکنشها به شکلی ایمن و در تمام جهان ساخته شده است. همانند بیتکوین، فرستادن پول به تمام نقاط جهان از طریق اتریوم بهسادگی فرستادن یک ایمیل انجام میشود. تنها کافی است که [نام ENS](/nft/#nft-domains) دریافتکنندهی خود ( مثل bob.eth) یا آدرس حسابشان را در کیفپول خود وارد کنید و پرداخت شما ظرف چند دقیقه (بهطور معمول) به دست آنها میرسد. برای دریافت و پرداخت پول شما نیاز به یک [کیف پول](/wallets/) دارید.
-
+
مشاهدهی برنامههای غیرمتمرکز پرداخت
@@ -123,7 +123,7 @@ DeFi یک واژهی کلی برای محصولات و خدمات مالی د
- همتا به همتا، به این معنی که قرضگیرنده بهطور مستقیم از یک قرضدهندهی مشخص قرض میگیرد.
- بر پایهی استخر که در آن قرضدهندگان وجوه (نقدینگی) را به یک استخر ارائه میدهند و قرضگیرندگان میتوانند از آن قرض بگیرند.
-
+
مشاهدهی برنامههای غیرمتمرکز برای قرض گرفتن
@@ -183,7 +183,7 @@ DeFi یک واژهی کلی برای محصولات و خدمات مالی د
- aDai شما بر اساس نرخ بهره زیاد میشود و میتوانید شاهد افزایش میزان موجودی خود در کیف پولتان باشید. بسته به نرخ درصدی سالانه، موجودی کیفپول شما پس از چند روز یا حتی چند ساعت چیزی شبیه 100.1234 خواهد بود!
- شما میتوانید بهاندازهی aDaiهای موجودی خود در هر زمانی از حساب خود Dai برداشت کنید.
-
+
مشاهدهی برنامههای غیرمتمرکز قرضدهی
@@ -211,7 +211,7 @@ DeFi یک واژهی کلی برای محصولات و خدمات مالی د
برای مثال، اگر بخواهید از بختآزمایی بدون باخت PoolTogether استفاده کنید (بالاتر توضیح دادهایم)، به توکنی مثل Dai یا USDC نیاز خواهید داشت. این صرافیهای غیرمتمرکز به شما اجازه میدهند که اتر (ETH) خود را به این توکنها تبدیل کنید و وقتی کارتان تمام شد به حالت اول تبدیل کنید.
-
+
مشاهدهی صرافیهای توکنها
@@ -223,7 +223,7 @@ DeFi یک واژهی کلی برای محصولات و خدمات مالی د
وقتی از صرافیهای متمرکز استفاده میکنید مجبور هستید که داراییتان را پیش از معامله به آنها منتقل کنید و برای نگهداری داراییتان به آنها اعتماد کنید. داراییهای شما وقتی به صرافیهای متمرکز منتقل شدهاند در خطر هستند، چون صرافیهای متمرکز اهداف جذابی برای هکرها هستند.
-
+
مشاهدهی برنامههای غیرمتمرکز معامله
@@ -235,7 +235,7 @@ DeFi یک واژهی کلی برای محصولات و خدمات مالی د
یک مثال خوب برای این موضوع [صندوق مبتنی بر شاخص DeFi Pulse (DPI)](https://defipulse.com/blog/defi-pulse-index/) است. این صندوق بهطور خودکار در موجودی خود تغییر ایجاد میکند تا مطمئن شود که سبد داراییهای شما همواره شامل [بهترین توکنهای DeFi از نظر ارزش بازار](https://www.coingecko.com/en/defi) است. شما هیچ گاه نیاز به مدیریت هیچ یک از جزییات ندارید و هر زمان بخواهید میتوانید سرمایهی خود را خارج کنید.
-
+
مشاهدهی برنامههای غیرمتمرکز سرمایهگذاری
@@ -249,7 +249,7 @@ DeFi یک واژهی کلی برای محصولات و خدمات مالی د
- برای همه شفاف است و در نتیجه سرمایهگذاران میتوانند اثبات کنند که چه قدر سرمایه افزودهاند. حتی میتوانید بررسی کنید که این سرمایهها چگونه و در چه جهتی استفاده میشوند.
- سرمایهگذاران میتوانند بازگشت سرمایهی خودکار تعیین کنند؛ مثلاً برای زمانی که تا یک مهلت زمانی مشخص، حداقل مبلغ به دست نیامده است.
-
+
مشاهدهی برنامههای غیرمتمرکز تأمین مالی جمعی
@@ -276,7 +276,7 @@ DeFi یک واژهی کلی برای محصولات و خدمات مالی د
محصولات اتریوم، همچون هر نرمافزار دیگر، ممکن است دچار باگ یا مشکل شوند. بنابراین اکنون محصول بیمهای بسیار زیادی در این فضا روی محافظت از کاربرانشان در برابر از دست دادن سرمایه تمرکز دارند. با این حال، پروژههایی وجود دارند که برای پوشش تمام خطرات مربوط به زندگی اجرا میشوند. یک مثال خوب، پوشش Etherisc's Crop است که هدفش [ محافظت از مالکان مزارع کوچک در کنیا در مقابل خشکی و سیل](https://blog.etherisc.com/etherisc-teams-up-with-chainlink-to-deliver-crop-insurance-in-kenya-137e433c29dc) است. بیمهی غیرمتمرکز میتواند بهنسبت بیمهی سنتی، پوشش ارزانتری به کشاورزان ارائه دهد.
-
+
مشاهدهی برنامههای غیرمتمرکز بیمهای
@@ -286,7 +286,7 @@ DeFi یک واژهی کلی برای محصولات و خدمات مالی د
با در نظر گرفتن همهی این مسائل، شما به راهی نیاز دارید که بتوانید بر همهی سرمایهگذاریهایتان، وامهایتان و معاملاتتان نظارت داشته باشید. محصولاتی وجود دارند که به شما امکان میدهند بتوانید از یکجا بر همهی فعالیتهای DeFiتان نظارت کنید. این زیبایی مهندسی باز DeFi است. تیمها میتوانند رابطهای کاربریای بسازند که نهتنها بتوانید موجودی حسابهایتان را از طریق آنها ببینید، بلکه بتوانید از ویژگیهای آنها نیز بهره ببرید. شاید وقتی در دنیای DeFi بیشتر کاوش کردید، این ویژگی را کارگشا بیابید.
-
+
مشاهدهی برنامههای غیرمتمرکز سبدگردانی
diff --git a/public/content/translations/fa/desci/index.md b/public/content/translations/fa/desci/index.md
index d0163f8870e..760d70c61b7 100644
--- a/public/content/translations/fa/desci/index.md
+++ b/public/content/translations/fa/desci/index.md
@@ -68,7 +68,7 @@ DeSci در حال ساخت مجموعه ابزار علمی برای ورود د
مطالعات نشان داده اند که پانل های بررسی کمک هزینه در انتخاب پیشنهادهای با کیفیت بالا کار ضعیفی انجام می دهند، زیرا همان پیشنهادات ارائه شده به پانل های مختلف نتایج بسیار متفاوتی دارند. از آنجایی که بودجه کمیابتر شده است، این بودجه در مجموعه کوچکتری از محققان ارشد با پروژههای محافظهکارانهتر متمرکز شده است. این اثر یک چشم انداز سرمایه گذاری بیش از حد رقابتی ایجاد کرده است، انگیزه های انحرافی را تقویت می کند و نوآوری را خفه می کند.
-Web3 این پتانسیل را دارد که با آزمایش مدلهای انگیزشی مختلف که توسط DAOs و Web3 به طور گسترده ایجاد شدهاند، این مدل بودجه شکسته را مختل کند. [تأمین مالی ماسبق برای کالاهای عمومی](https://medium.com/ethereum-optimism/retroactive-public-goods-funding-33c9b7d00f0c)، [تأمین مالی درجه](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2003531)، [حاکمیت DAO](https://www.antler.co/blog/daos-and-web3-governance) و [ساختارهای تشویقی نمادین](https://cdixon.org/2017/05/27/crypto-tokens-a-breakthrough-in-open-network-design) برخی از ابزارهای Web3 هستند که می توانند تأمین مالی علمی را متحول کنند.
+Web3 این پتانسیل را دارد که با آزمایش مدلهای انگیزشی مختلف که توسط DAOs و Web3 به طور گسترده ایجاد شدهاند، این مدل بودجه شکسته را مختل کند. [تأمین مالی ماسبق برای کالاهای عمومی](https://medium.com/ethereum-optimism/retroactive-public-goods-funding-33c9b7d00f0c)، [تأمین مالی درجه](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2003531)، [حاکمیت DAO](https://www.antler.co/blog/daos-and-web3-governance-the-promise-implications-and-challenges-ahead) و [ساختارهای تشویقی نمادین](https://cdixon.org/2017/05/27/crypto-tokens-a-breakthrough-in-open-network-design) برخی از ابزارهای Web3 هستند که می توانند تأمین مالی علمی را متحول کنند.
### مالکیت و توسعه IP {#ip-ownership}
diff --git a/public/content/translations/fa/developers/docs/networks/index.md b/public/content/translations/fa/developers/docs/networks/index.md
index 905c4494af0..6d1c0df1bf9 100644
--- a/public/content/translations/fa/developers/docs/networks/index.md
+++ b/public/content/translations/fa/developers/docs/networks/index.md
@@ -60,7 +60,6 @@ lang: fa
- [فاست Alchemy Sepolia](https://sepoliafaucet.com/)
- [فاست Infura Sepolia](https://www.infura.io/faucet)
- [فاست Chainstack Sepolia](https://faucet.chainstack.com/sepolia-faucet)
-- [فاست Testnet | Sepolia](https://testnet-faucet.com/sepolia/)
#### Goerli_(پشتیبانی طولانی مدت)_ {#goerli}
diff --git a/public/content/translations/fa/developers/docs/nodes-and-clients/index.md b/public/content/translations/fa/developers/docs/nodes-and-clients/index.md
index cef246b9782..04ecebd6da6 100644
--- a/public/content/translations/fa/developers/docs/nodes-and-clients/index.md
+++ b/public/content/translations/fa/developers/docs/nodes-and-clients/index.md
@@ -233,8 +233,6 @@ Erigon که قبلاً به عنوان Erigon شناخته میشد، یک ف
`geth --syncmode "light"`
-برای جزئیات بیشتر آموزش [اجرای گرهی سبک geth](/developers/tutorials/run-light-node-geth/) را مشاهده کنید.
-
**تنظیم همگامسازی کامل با آرشیو در [Besu](https://besu.hyperledger.org/)**
`besu --sync-mode=FULL`
@@ -312,5 +310,4 @@ Erigon که قبلاً به عنوان Erigon شناخته میشد، یک ف
## آموزشهای مرتبط {#related-tutorials}
-- [اجرای یک گره با geth](/developers/tutorials/run-light-node-geth/) _- چگونه geth را بارگیری، نصب و اجرا کنیم. Covering syncmodes, the JavaScript console, and more._
- [Raspberry Pi 4 خود را فقط با اتصال کارت MicroSD به یک گرهی اعتبارسنج تبدیل کنید - راهنمای نصب](/developers/tutorials/run-node-raspberry-pi/) _- Raspberry Pi 4 خود را متصل کنید، یک کابل اترنت وصل کنید، دیسک SSD را وصل کنید و دستگاه را روشن کنید تا Raspberry Pi 4 را به یک گرهی کامل اتریوم که لایهی اجرا (شبکهی اصلی) و / یا لایهی اجماع (زنجیرهی بیکن / اعتبارسنج) را اجرا میکند تبدیل کنید._
diff --git a/public/content/translations/fa/developers/docs/nodes-and-clients/run-a-node/index.md b/public/content/translations/fa/developers/docs/nodes-and-clients/run-a-node/index.md
index c983032e2c3..a39b8e4a4c5 100644
--- a/public/content/translations/fa/developers/docs/nodes-and-clients/run-a-node/index.md
+++ b/public/content/translations/fa/developers/docs/nodes-and-clients/run-a-node/index.md
@@ -88,7 +88,7 @@ If you're new to the topic of running a node, or looking for a less technical pa
- زمان و تاریخ سیستم درست است.
- روتر و فایروال شما اتصالات را در پورتهای شنونده (listening ports) میپذیرند. به طور پیشفرض کلاینتهای اتریوم از یک پورت شنونده (TCP) و یک پورت یابنده (UDP) که هر دو بهطور پیشفرض روی 30303 هستند استفاده میکنند.
-کلاینت خود را ابتدا روی شبکهی تست اجرا کنید تا مطمئن شوید که همهچیز بهدرستی کار میکند. [اجرای یک گره سبک geth](/developers/tutorials/run-light-node-geth/) باید کارگشا باشد. شما باید هرگونه تنظیمات کلاینت که به صورت پیشفرض وجود ندارند را در ابتدا مشخص کنید. میتوانید از پرچمها و فایلهای پیکربندی برای مشخص کردن پیکربندی موردنظر استفاده کنید. برای اطلاع از جزئیات، مستندات کلاینت خود را بررسی کنید. اجرای کلاینت، توابع اصلی، نقاط پایانی انتخاب شده و جستجوی همتایان را آغاز میکند. پس از یافتن موفق همتایان، کلاینت شروع به همگامسازی میکند. دادهی کنونی زنجیرهی بلوکی زمانی آماده خواهد بود که کلاینت بهطور موفقیتآمیز با وضعیت فعلی همگامسازی کرده باشد.
+کلاینت خود را ابتدا روی شبکهی تست اجرا کنید تا مطمئن شوید که همهچیز بهدرستی کار میکند. اجرای یک گره سبک geth باید کارگشا باشد. شما باید هرگونه تنظیمات کلاینت که به صورت پیشفرض وجود ندارند را در ابتدا مشخص کنید. میتوانید از پرچمها و فایلهای پیکربندی برای مشخص کردن پیکربندی موردنظر استفاده کنید. برای اطلاع از جزئیات، مستندات کلاینت خود را بررسی کنید. اجرای کلاینت، توابع اصلی، نقاط پایانی انتخاب شده و جستجوی همتایان را آغاز میکند. پس از یافتن موفق همتایان، کلاینت شروع به همگامسازی میکند. دادهی کنونی زنجیرهی بلوکی زمانی آماده خواهد بود که کلاینت بهطور موفقیتآمیز با وضعیت فعلی همگامسازی کرده باشد.
### استفاده از کلاینت {#using-the-client}
diff --git a/public/content/translations/fa/roadmap/beacon-chain/index.md b/public/content/translations/fa/roadmap/beacon-chain/index.md
index 522f695b3ed..ae979013f93 100644
--- a/public/content/translations/fa/roadmap/beacon-chain/index.md
+++ b/public/content/translations/fa/roadmap/beacon-chain/index.md
@@ -27,7 +27,7 @@ summaryPoint3: زنجیره بیکن منطق اجماع و پروتکل شای
زنجیره بیکن [اثبات سهام](/developers/docs/consensus-mechanisms/pos/) را برای اولین بار به اتریوم وارد کرد. این زنجیره شبکۀ اتریوم را امن نگه میدارد و در این فرایند، اعتبار اتریوم بیشتری را به اعتبارسنجها میرساند. در عمل، سهامگذاری شامل سهامگذاری روی اتریوم به منظور فعال کردن نرمافزار اعتبارسنج است. شما به عنوان یک سهامگذار، نرمافزاری را اجرا میکنید که بلوکهای جدیدی را در زنجیره ایجاد و تأیید میکند.
-سهامگذاری هدفی مشابه با [استخراج (ماینینگ)](/developers/docs/mining/) دارد، اما از بسیاری جهات متفاوت است. استخراج نیاز به سرمایۀ اولیۀ زیادی در قالب سختافزار قدرتمند و مصرف انرژی داشت که منجر به صرفه به مقیاس (مزیت مقیاس) و افزایش متمرکزسازی میشد. ضمناً، استخراج هیچ الزامی برای قفل کردن داراییها به عنوان وثیقه نداشت و همین، توانایی پروتکل را برای مجازات نقشآفرینان بدکار پس از حمله محدود میکرد.
+سهامگذاری هدفی مشابه با [استخراج (ماینینگ)](/developers/docs/consensus-mechanisms/pow/mining/) دارد، اما از بسیاری جهات متفاوت است. استخراج نیاز به سرمایۀ اولیۀ زیادی در قالب سختافزار قدرتمند و مصرف انرژی داشت که منجر به صرفه به مقیاس (مزیت مقیاس) و افزایش متمرکزسازی میشد. ضمناً، استخراج هیچ الزامی برای قفل کردن داراییها به عنوان وثیقه نداشت و همین، توانایی پروتکل را برای مجازات نقشآفرینان بدکار پس از حمله محدود میکرد.
جایگزینی اثبات سهام به جای اثبات کار، اتریوم را به طور قابل توجهی امنتر و غیرمتمرکزتر کرد. هرچه افراد بیشتری در شبکه شرکت کنند، غیرمتمرکزتر و در برابر حملات امنتر میشود.
diff --git a/public/content/translations/fa/roadmap/danksharding/index.md b/public/content/translations/fa/roadmap/danksharding/index.md
index d4b1454f698..15476089f0d 100644
--- a/public/content/translations/fa/roadmap/danksharding/index.md
+++ b/public/content/translations/fa/roadmap/danksharding/index.md
@@ -15,7 +15,7 @@ summaryPoints:
## Proto-Danksharding چیست؟ {#what-is-protodanksharding}
-Proto-Danksharding با نام [EIP-4844](https://eips.ethereum.org/EIPS/eip-4844) هم شناخته میشود و راهی است برای [رولآپها](/layer2/#rollups) تا دادههای ارزانتری به بلوکها افزوده شوند. این اسم از نام دو محقق (Protolambda و Dankrad Feist) که این ایده را مطرح کردند گرفته شده است. درحال حاضر، رولآپها برای کمتر کردن هزینهها محدودیتهایی دارند چون تراکنشهای خود را با `CALLDATA` انتقال میدهند. این فرایند پرهزینه است چون تمام گرههای اتریوم باید آن را پردازش کنند و باید همیشه در زنجیره فعال باشند، گرچه رولآپها فقط برای مدت کوتاهی به دادهها نیاز دارند. Proto-Danksharding تودههایی از دادهها را ارائه میکند که قابل ارسال و الصاق به بلوکها هستند. EVM به این تودهها دسترسی ندارد و پس از یک دوره زمانی مشخص (1-3 ماه) به طور خودکار حذف میشوند. بهعبارتی، رولآپها اطلاعات را با هزینه کمتری ارسال میکنند و مقدار صرفهجوییشده را در قالب تراکنشهای ارزانتر به کاربران نهایی منتقل میکنند.
+Proto-Danksharding با نام [EIP-4844](https://eips.ethereum.org/EIPS/eip-4844) هم شناخته میشود و راهی است برای [رولآپها](/layer-2/#rollups) تا دادههای ارزانتری به بلوکها افزوده شوند. این اسم از نام دو محقق (Protolambda و Dankrad Feist) که این ایده را مطرح کردند گرفته شده است. درحال حاضر، رولآپها برای کمتر کردن هزینهها محدودیتهایی دارند چون تراکنشهای خود را با `CALLDATA` انتقال میدهند. این فرایند پرهزینه است چون تمام گرههای اتریوم باید آن را پردازش کنند و باید همیشه در زنجیره فعال باشند، گرچه رولآپها فقط برای مدت کوتاهی به دادهها نیاز دارند. Proto-Danksharding تودههایی از دادهها را ارائه میکند که قابل ارسال و الصاق به بلوکها هستند. EVM به این تودهها دسترسی ندارد و پس از یک دوره زمانی مشخص (1-3 ماه) به طور خودکار حذف میشوند. بهعبارتی، رولآپها اطلاعات را با هزینه کمتری ارسال میکنند و مقدار صرفهجوییشده را در قالب تراکنشهای ارزانتر به کاربران نهایی منتقل میکنند.
diff --git a/public/content/translations/fa/roadmap/single-slot-finality/index.md b/public/content/translations/fa/roadmap/single-slot-finality/index.md
index 29e512c006e..9c4601bb66a 100644
--- a/public/content/translations/fa/roadmap/single-slot-finality/index.md
+++ b/public/content/translations/fa/roadmap/single-slot-finality/index.md
@@ -58,7 +58,7 @@ lang: fa
## پیشرفت فعلی {#current-progress}
-SSF در مرحله تحقیقاتی است. انتظار نمیرود تا چندین سال آتی تحقق یابد، و احتمالاً باید ابتدا ارتقاهای اساسی دیگر مانند [درختان ورکل](/roadmap/verkle-trees/) و [Danksharding](/roadmap/danksharding]) را پشت سر گذاشت.
+SSF در مرحله تحقیقاتی است. انتظار نمیرود تا چندین سال آتی تحقق یابد، و احتمالاً باید ابتدا ارتقاهای اساسی دیگر مانند [درختان ورکل](/roadmap/verkle-trees/) و [Danksharding](/roadmap/danksharding/) را پشت سر گذاشت.
## بیشتر بخوانید {#further-reading}
diff --git a/public/content/translations/fa/smart-contracts/index.md b/public/content/translations/fa/smart-contracts/index.md
index 60b654b2e3d..ebf6e83bad3 100644
--- a/public/content/translations/fa/smart-contracts/index.md
+++ b/public/content/translations/fa/smart-contracts/index.md
@@ -65,7 +65,7 @@ lang: fa
- [پایدارزها](/stablecoins/)
- [ایجاد و توزیع داراییهای یکتای دیجیتال](/nft/)
- [یک صرافی خودکار و باز یکاهای پولی](/get-eth/#dex)
-- [بازی کردن غیرمتمرکز](/dapps/?category=gaming)
+- [بازی کردن غیرمتمرکز](/dapps/?category=gaming#explore)
- [یک بیمهنامه که بهصورت خودکار پرداخت میکند.](https://etherisc.com/)
- [استانداردی که به افراد امکان میدهد ارزهای سفارشیشده و قابل تعامل ایجاد کنند](/developers/docs/standards/tokens/)
diff --git a/public/content/translations/fa/zero-knowledge-proofs/index.md b/public/content/translations/fa/zero-knowledge-proofs/index.md
index 0859706939d..1df97ca54b6 100644
--- a/public/content/translations/fa/zero-knowledge-proofs/index.md
+++ b/public/content/translations/fa/zero-knowledge-proofs/index.md
@@ -4,7 +4,7 @@ description: یک مقدمه غیرتخصصی درباره اثبات دانش
lang: fa
---
-## اثبات دانش صفر چیست؟ {#what-are-zk-proofs}
+# اثبات دانش صفر چیست؟ {#what-are-zk-proofs}
اثبات دانش صفر، روشی برای اثبات اعتبار یک گزاره بدون افشای خود گزاره است. «ثابت کننده» طرفی است که تلاش می کند ادعایی را ثابت کند، در حالی که «تایید کننده» مسئولیت تایید آن ادعا را دارد.
diff --git a/public/content/translations/fi/enterprise/index.md b/public/content/translations/fi/enterprise/index.md
index f5a97482ccc..aab9de6a63b 100644
--- a/public/content/translations/fi/enterprise/index.md
+++ b/public/content/translations/fi/enterprise/index.md
@@ -32,7 +32,7 @@ Monet organisaatiot ovat tehneet yhteistyötä Ethereumin yritysystävällisyyde
- [EEA](https://entethalliance.org/) _The Enterprise Ethereum Alliance on jäsenlähtöinen standardointiorganisaatio, jonka tavoitteena on kehittää avointen lohkoketjumääritysten yhdenmukaistamista ja yhteentoimivuutta yrityksille ja kuluttajille maailmanlaajuisesti. Kansainvälisen yhteisön jäsenet ovat johtajia, adoptoijia, innovaattoreita, kehittäjiä ja yrityksiä, joiden yhteisenä tavoitteena on luoda avoin, hajautettu verkko kaikkien hyödyksi._
-- [Hyperledger Foundation](https://hyperledger.org) _Hyperledger on avoimen lähdekoodin yhteistyöprojekti, joka on luotu edistämään toimialariippumattomia lohkoketjuteknologioita. Se on The Linux Foundationin isännöimänä globaali yhteistyöverkosto, johon kuuluu finanssialan, pankkimaailman, IoT:n, toimitusketjujen, tuotannon ja teknologian johtavia toimijoita._ _Säätiöllä on joitakin projekteja, jotka toimivat Ethereum stackissa:_ - [Hyperledger Besu](https://www.hyperledger.org/blog/2019/08/29/announcing-hyperledger-besu) - [Hyperledger Burrow](https://www.hyperledger.org/projects/hyperledger-burrow)
+- [Hyperledger Foundation](https://hyperledger.org) _Hyperledger on avoimen lähdekoodin yhteistyöprojekti, joka on luotu edistämään toimialariippumattomia lohkoketjuteknologioita. Se on The Linux Foundationin isännöimänä globaali yhteistyöverkosto, johon kuuluu finanssialan, pankkimaailman, IoT:n, toimitusketjujen, tuotannon ja teknologian johtavia toimijoita._ _Säätiöllä on joitakin projekteja, jotka toimivat Ethereum stackissa:_ - [Hyperledger Besu](https://www.hyperledger.org/blog/2019/08/29/announcing-hyperledger-besu) - Hyperledger Burrow
## Yrityksille suunnatut palvelut {#enterprise-focused-services}
@@ -46,7 +46,6 @@ Seuraavat projektit tarjoavat lohkoketjupalveluja yritystason järjestelmille:
## Protokolla ja Infrastruktuuri {#protocol-and-infrastructure}
- [Hyperledger Besu](https://www.hyperledger.org/projects/besu) _avoimella lähdekoodilla oleva Ethereum-asiakasohjelma, joka on kehitetty Apache 2.0 -lisenssillä ja kirjoitettu Javalla_
-- [Hyperledger Burrow](https://www.hyperledger.org/projects/hyperledger-burrow) _modulaarinen lohkoketjuasiakasohjelma oikeutetulla älysopimustulkilla, osittain kehitetty Ethereum Virtual Machinen (EVM) määritysten mukaan_
- [Infura](https://infura.io/) _skaalattava API-yhteys Ethereumiin ja IPFS-verkkoihin_
- [Kaleido](https://kaleido.io/) _full-stack-alusta cross-cloud, hybridi yritysekosysteemien rakentamiseen ja ajamiseen_
- [Autonity](https://www.clearmatics.com/about/) _protokollakokoelma, joka toteuttaa p2p-protokollat ja tarjoaa asiakasohjelmiston ja infrastruktuurin_
diff --git a/public/content/translations/fil/decentralized-identity/index.md b/public/content/translations/fil/decentralized-identity/index.md
index 467cabc314f..861f71e518b 100644
--- a/public/content/translations/fil/decentralized-identity/index.md
+++ b/public/content/translations/fil/decentralized-identity/index.md
@@ -49,7 +49,7 @@ Ang mga decentralized identifier ay sino-store sa mga distributed ledger (blockc
## Paano naging posible ang mga decentralized identifier? {#what-makes-decentralized-identifiers-possible}
-### 1. Public Key Infrastructure (PKI) {#public-key-infrastructure}
+### 1. Public Key Infrastructure (PKI) {#public-key-cryptography}
Ang public-key infrastructure (PKI) ay isang hakbang para sa seguridad ng impormasyon na bumubuo ng [pampublikong key](/glossary/#public-key) at [ pribadong key](/glossary/#private-key) para sa isang entity. Ang public-key cryptography ay ginagamit sa mga blockchain network upang patunayan ang identity ng user at patunayan ang pagmamay-ari sa mga digital asset.
diff --git a/public/content/translations/fil/defi/index.md b/public/content/translations/fil/defi/index.md
index 140b72df7c4..5b1cd6d0408 100644
--- a/public/content/translations/fil/defi/index.md
+++ b/public/content/translations/fil/defi/index.md
@@ -47,7 +47,7 @@ Ang isa sa mga pinakamagandang paraan upang makita ang potensyal ng DeFi ay unaw
| Ang mga market ay palaging bukas. | Nagsasara ang mga market dahil kailangang magpahinga ng mga empleyado. |
| Transparency ang pundasyon nito – puwedeng tingnan ng kahit sino ang data ng produkto at suriin kung paano gumagana ang system. | Ang mga pinansyal institusyon ay parang mga saradong libro: hindi mo maaaring tingnan ang kanilang kasaysayan ng pautang, record ng mga pinapamahalaan nilang asset, at iba pa. |
-
+
I-explore ang mga DeFi app
@@ -65,7 +65,7 @@ Medyo kakaiba itong pakinggan... "bakit ko gugustuhing i-program ang pera ko"? N
Tingnan ang aming mga rekomendasyon para sa mga DeFi application na dapat subukan kung bago ka sa Ethereum.
-
+
I-explore ang mga DeFi app
@@ -92,7 +92,7 @@ May decentralized na alternatibo sa karamihan sa mga serbisyong pinansyal. Nguni
Bilang isang blockchain, ang Ethereum ay idinisenyo para magpadala ng mga transaksyon sa ligtas at pandaigdigang paraan. Tulad ng Bitcoin, pinapadali ng Ethereum ang pagpapadala ng pera sa iba't ibang bahagi ng mundo, na parang nagpapadala lang ng email. Ilagay lang ang [ENS name](/nft/#nft-domains) (tulad ng bob.eth) ng recipient mo o ang kanyang account address mula sa iyong wallet at sa loob ng ilang minuto (karaniwan), direkta na niyang matatanggap ang bayad mo. Upang magpadala o tumanggap ng mga pagbabayad, kakailanganin mo ng [wallet](/wallets/).
-
+
Tingnan ang mga decentralized application (dapps) para sa pagbabayad
@@ -123,7 +123,7 @@ Ang paghiram ng pera mula sa mga decentralized provider ay may dalawang pangunah
- Peer-to-peer, na nangangahulugang direktang hihiram ang borrower sa isang partikular na lender.
- Pool-based kung saan nagbibigay ng pondo (liquidity) ang mga lender sa isang pool na mahihiraman ng mga borrower.
-
+
Tingnan ang dapps para sa panghihiram
@@ -183,7 +183,7 @@ Maaari kang kumita ng interes sa iyong crypto sa pamamagitan ng pagpapautang nit
- Ang iyong aDai ay tataas base sa interes at makikita mo ang paglaki ng iyong balanse sa iyong wallet. Depende sa APR, maaaring maging 100.1234 ang balanse ng iyong wallet pagkatapos ng ilang araw o maging oras!
- Maaari kang mag-withdraw ng regular na Dai na katumbas ng iyong balanse sa aDai anumang oras.
-
+
Tingnan ang mga decentralized application (dapps) para sa pagpapautang
@@ -211,7 +211,7 @@ May libo-libong token sa Ethereum. Sa tulong ng mga decentralized exchange (DEXs
Halimbawa, kung nais mong gamitin ang no-loss lottery na PoolTogether (na inilalarawan sa itaas), kakailanganin mo ng token tulad ng Dai o USDC. Ang mga DEX na ito ay nagbibigay-daan sa iyo na i-swap ang iyong ETH sa mga token na iyon at i-swap ito ulit kapag tapos ka na.
-
+
Tingnan ang mga token exchange
@@ -223,7 +223,7 @@ Mayroong mga mas advanced na opsyon para sa mga trader na gusto ng kaunti pang k
Kapag gumagamit ka ng centralized exchange, dapat mong ideposito ang mga asset mo bago mag-trade at dapat mong ipaubaya sa kanila ang mga ito. Habang nakadeposito ang iyong mga asset, nanganganib ang mga ito dahil mainit sa mata ng mga hacker ang mga centralized exchange.
-
+
Tingnan ang mga decentralized application (dapps) para sa trading
@@ -235,7 +235,7 @@ May mga produkto para sa pamamahala ng pondo sa Ethereum na susubukang palaguin
Isang magandang halimbawa ang [ DeFi Pulse Index fund (DPI)](https://defipulse.com/blog/defi-pulse-index/). Ito ay isang pondo na awtomatikong nagre-rebalance upang tiyaking palaging makikita sa portfolio mo [ang mga nangungunang DeFi token ayon sa market capitalization](https://www.coingecko.com/en/defi). Hindi mo kailangang pamahalaan ang alinman sa mga detalye at puwede kang umalis sa pondo kung kailan mo gusto.
-
+
Tingnan ang mga decentralized application (dapps) para sa investment
@@ -249,7 +249,7 @@ Magandang platform ang Ethereum para sa crowdfunding:
- Transparent ito kaya maipapakita ng mga fundraiser kung magkano na ang naipong pera. At malalaman mo kung saan napupunta o nagagastos ang lahat ng ito.
- Maaaring mag-set up ang mga fundraiser ng mga awtomatikong refund kung, halimbawa, may tiyak na takdang oras at minimum na halaga na hindi natugunan.
-
+
Tingnan ang mga decentralized application (dapps) para sa crowdfunding
@@ -276,7 +276,7 @@ Ang decentralized insurance ay may layuning gawing mas abot-kaya, mas pabilisin
Ang mga produkto ng Ethereum, gaya ng anumang software, ay puwedeng magkaroon ng mga bug at puwedeng abusuhin. Kaya sa ngayon, maraming produkto ng insurance ang nakatuon sa pagprotekta sa mga user laban sa pagkawala ng pondo. Gayunpaman, may mga proyekto na nagsisimulang bumuo ng coverage para sa lahat ng puwede nating harapin sa buhay. Isang magandang halimbawa nito ay ang Crop cover ng Etherisc na may layuning [ protektahan ang maliliit na magsasaka sa Kenya laban sa tagtuyot at pagbaha](https://blog.etherisc.com/etherisc-teams-up-with-chainlink-to-deliver-crop-insurance-in-kenya-137e433c29dc). Ang decentralized insurance ay maaaring magbigay ng mas abot-kayang presyo para sa mga magsasaka na kadalasang hindi kayang magbayad para sa tradisyonal na insurance.
-
+
Tingnan ang decentralized application (dapps) para sa insurance
@@ -286,7 +286,7 @@ Ang mga produkto ng Ethereum, gaya ng anumang software, ay puwedeng magkaroon ng
Sa dami ng mga nangyayari, kakailanganin mo ng paraan upang subaybayan ang lahat ng iyong mga investment, loan, at trade. May iba't ibang produkto na nagbibigay-daan sa iyong i-coordinate ang lahat ng iyong aktibidad sa DeFi mula sa isang lugar. Ito ang kagandahan ng open architecture ng DeFi. Ang mga team ay maaaring bumuo ng mga interface kung saan hindi mo lang makikita ang iyong mga balanse sa iba't ibang produkto, maaari mo ring gamitin ang kanilang mga feature. Maaaring maging kapaki-pakinabang ito para sa iyo habang tinitingnan mo ang iba pang bahagi ng DeFi.
-
+
Tingnan ang decentralized application (dapps) para sa portfolio
diff --git a/public/content/translations/fil/desci/index.md b/public/content/translations/fil/desci/index.md
index d1855d8056a..76f07cd780b 100644
--- a/public/content/translations/fil/desci/index.md
+++ b/public/content/translations/fil/desci/index.md
@@ -68,7 +68,7 @@ Sa kasalukuyan, ang standard model para sa pagpopondo sa agham ay sumusulat ang
Ayon sa mga pag-aaral, hindi napipili ng mga grant review panel ang mga de-kalidad na proposal dahil labis na naiiba ang resulta noong ibinigay ang mga parehong proposal sa ibang mga panel. Dahil sa kakulangan saa pondo, mas kaunti na lamang ang napagbibigyan nito, at mas nakatutok sa mga mas matagal nang mga mananaliksik na may mga proyektong konserbatibo. Dahil dito, naging sobrang kompetitibo ang pagkuha ng pondo, nagtakda ng mga hindi katanggap-tanggap na insentibo, at nalimitahan ang inobasyon.
-May potensyal ang Web3 na baguhin ang hindi epektibong funding model na ito sa pamamagitan ng pagsubok sa iba't ibang model para sa insentibo na ginawa ng DAO at Web3. Ang [retroactive public goods funding](https://medium.com/ethereum-optimism/retroactive-public-goods-funding-33c9b7d00f0c), [quadratic funding](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2003531), [DAO governance](https://www.antler.co/blog/daos-and-web3-governance) at [mga tokenized na incentive structure](https://cdixon.org/2017/05/27/crypto-tokens-a-breakthrough-in-open-network-design) ang ilan sa mga Web3 tool na maaaring bumago sa pagpopondo para sa agham.
+May potensyal ang Web3 na baguhin ang hindi epektibong funding model na ito sa pamamagitan ng pagsubok sa iba't ibang model para sa insentibo na ginawa ng DAO at Web3. Ang [retroactive public goods funding](https://medium.com/ethereum-optimism/retroactive-public-goods-funding-33c9b7d00f0c), [quadratic funding](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2003531), [DAO governance](https://www.antler.co/blog/daos-and-web3-governance-the-promise-implications-and-challenges-ahead) at [mga tokenized na incentive structure](https://cdixon.org/2017/05/27/crypto-tokens-a-breakthrough-in-open-network-design) ang ilan sa mga Web3 tool na maaaring bumago sa pagpopondo para sa agham.
### Pagmamay-ari at pag-develop sa IP {#ip-ownership}
diff --git a/public/content/translations/fil/smart-contracts/index.md b/public/content/translations/fil/smart-contracts/index.md
index 08cde513f60..ebcf7e8bbfd 100644
--- a/public/content/translations/fil/smart-contracts/index.md
+++ b/public/content/translations/fil/smart-contracts/index.md
@@ -65,7 +65,7 @@ Magagawa ng mga itong mag-compute, gumawa ng currency, mag-store ng data, mag-mi
- [Stablecoins](/stablecoins/)
- [Paggawa at pamamahagi ng mga natatangign digital asset](/nft/)
- [Isang awtomatiko at bukas na currency exchange](/get-eth/#dex)
-- [Decentralized gaming](/dapps/?category=gaming)
+- [Decentralized gaming](/dapps/?category=gaming#explore)
- [Isang insurance policy na awtomatikong nagbabayad](https://etherisc.com/)
- [Isang pamantayan na nagbibigay-daan sa mga tao na gumawa ng mga naka-customize at interoperable na currency](/developers/docs/standards/tokens/)
diff --git a/public/content/translations/fil/zero-knowledge-proofs/index.md b/public/content/translations/fil/zero-knowledge-proofs/index.md
index d0f39b461e5..64f9df3aa6c 100644
--- a/public/content/translations/fil/zero-knowledge-proofs/index.md
+++ b/public/content/translations/fil/zero-knowledge-proofs/index.md
@@ -4,7 +4,7 @@ description: Isang hindi teknikal na panimula sa mga zero-knowledge proof para s
lang: fil
---
-## Ano ang mga zero-knowledge proof? {#what-are-zk-proofs}
+# Ano ang mga zero-knowledge proof? {#what-are-zk-proofs}
Ang zero-knowledge proof ay isang paraan para patunayan ang validity ng isang pahayag nang hindi ipinapakita ang mismong pahayag. Ang ‘prover’ ang partidong sumusubok na patunayan ang isang pahayag, samantalang ang ‘verifier’ ang responsable sa pag-validate ng claim.
diff --git a/public/content/translations/fr/community/code-of-conduct/index.md b/public/content/translations/fr/community/code-of-conduct/index.md
index 91eb91d9bea..05c07e6c81e 100644
--- a/public/content/translations/fr/community/code-of-conduct/index.md
+++ b/public/content/translations/fr/community/code-of-conduct/index.md
@@ -4,6 +4,8 @@ description: Les normes de base que nous nous efforçons de respecter dans les e
lang: fr
---
+# Code de conduite {#conduct-intro}
+
## Mission {#mission}
Développer et maintenir le centre de connaissances le plus complet et le plus accessible pour Ethereum.
diff --git a/public/content/translations/fr/community/events/index.md b/public/content/translations/fr/community/events/index.md
index 4de2ddda52f..e149ee771b1 100644
--- a/public/content/translations/fr/community/events/index.md
+++ b/public/content/translations/fr/community/events/index.md
@@ -5,7 +5,7 @@ lang: fr
hideEditButton: true
---
-## Évènements à venir {#events}
+# Évènements à venir {#events}
**Chaque mois, il y a des événements Ethereum majeurs dans le monde entier.** Envisagez d'assister à un événement près de chez vous pour rencontrer plus de personnes dans la communauté, en savoir plus sur les opportunités d'emploi et développer de nouvelles compétences.
diff --git a/public/content/translations/fr/community/get-involved/index.md b/public/content/translations/fr/community/get-involved/index.md
index 66dd715d425..39ec0d20680 100644
--- a/public/content/translations/fr/community/get-involved/index.md
+++ b/public/content/translations/fr/community/get-involved/index.md
@@ -16,7 +16,7 @@ Commencez à lire la mission et les valeurs d'ethereum.org dans notre [code de c
- [Trouvez une prime sur Gitcoin](https://gitcoin.co/), travaillez sur un petit ou gros problème technique, gagnez de la crypto !
- Participez à un hackathon [ETHGlobal](http://ethglobal.co/) près de chez vous !
- Consultez les [projets liés à votre domaine d'expertise ou au langage de programmation de votre choix](/developers/docs/programming-languages/)
-- Regardez ou participez aux [appels Core Dev](https://www.youtube.com/playlist?list=PLaM7G4Llrb7zfMXCZVEXEABT8OSnd4-7w)
+- Regardez ou participez aux [appels Core Dev](https://www.youtube.com/@EthereumProtocol)
- [Liste de souhaits du programme de soutien à l'écosystème](https://esp.ethereum.foundation/wishlist/) - domaines d'outillage, de documentation et d'infrastructure où le programme de soutien à l'écosystème Ethereum recherche activement des demandes de subvention
- [Web3Bridge](https://www.web3bridge.com/) - rejoignez la communauté Web3 en herbe dans son initiative visant à identifier, former et soutenir des centaines de développeurs et de membres de la communauté à travers l'Afrique
- Rejoignez le [Discord Ethereum Cat Herders](https://discord.io/EthCatHerders)
diff --git a/public/content/translations/fr/community/grants/index.md b/public/content/translations/fr/community/grants/index.md
index d46cbfa92fb..87456e88066 100644
--- a/public/content/translations/fr/community/grants/index.md
+++ b/public/content/translations/fr/community/grants/index.md
@@ -18,7 +18,6 @@ Ces programmes soutiennent le vaste écosystème Ethereum en offrant des subvent
- [MetaCartel](https://www.metacartel.org/grants/) - _Développement de DApp, création DAO_
- [DAO Moloch](https://www.molochdao.com/) - _Confidentialité, mise à l'échelle de la couche 2, sécurité du client, etc._
- [Subventions DAO](https://docs.google.com/spreadsheets/d/1XHc-p_MHNRdjacc8uOEjtPoWL86olP4GyxAJOFO0zxY/edit#gid=0) - _Feuille de calcul Google regroupant les organisations offrant des subventions_
-- [Crunchbase pour les financements Web3](https://www.cryptoneur.xyz/web3-grants) - _Filtrer et rechercher des subventions par catégorie, cas d'utilisation, montant et bien plus encore. Contribuez à aider les autres à trouver la bonne subvention._
- [Academic Grants](https://esp.ethereum.foundation/academic-grants) - _Subventions pour soutenir les travaux universitaires liés à Ethereum_
- [Blockworks Grantfarm](https://blockworks.co/grants/programs) - _Blockworks a compilé un annuaire complet de toutes les subventions, appels d'offres et primes pour la découverte de bugs._
@@ -35,7 +34,6 @@ Ces projets ont crée leurs propres subventions pour encourager d'autres projets
- [Programme de subventions SKALE Network](https://skale.space/developers#grants) - _Écosystème [SKALE Network](https://skale.space/)_
- [TheGraph](https://airtable.com/shrdfvnFvVch3IOVm) – _Écosystème [TheGraph](https://thegraph.com/)_
- [Programme de subventions Uniswap](https://www.uniswapfoundation.org/apply-for-a-grant) - _Communauté [Uniswap](https://uniswap.org/)_
-- [Web3 Grants](https://web3grants.net) - _Une liste complète de programmes de subvention liés au web3/crypto_
## Financement quadratique {#quadratic-funding}
diff --git a/public/content/translations/fr/contributing/design/adding-design-resources/index.md b/public/content/translations/fr/contributing/design/adding-design-resources/index.md
index 9ed41c42376..3643266e869 100644
--- a/public/content/translations/fr/contributing/design/adding-design-resources/index.md
+++ b/public/content/translations/fr/contributing/design/adding-design-resources/index.md
@@ -4,6 +4,8 @@ description: Directives et exigences pour garantir la qualité des matériaux de
lang: fr
---
+# Ajout de ressources de conception {#adding-design-resources}
+
Toute personne peut suggérer de nouveaux matériaux de conception à la page [Design et UX dans le web3](/developers/docs/design-and-ux/).
Il est important de noter que l'objectif de cette page est de fournir une aide aux utilisateurs aspirant à devenir des concepteurs web3. Cette section n'est pas destinée à faire la publicité de vos services, produits ou plateformes.
diff --git a/public/content/translations/fr/decentralized-identity/index.md b/public/content/translations/fr/decentralized-identity/index.md
index 96d4cbf95fd..a1e7245b444 100644
--- a/public/content/translations/fr/decentralized-identity/index.md
+++ b/public/content/translations/fr/decentralized-identity/index.md
@@ -49,7 +49,7 @@ Les identifiants décentralisés sont stockés sur des registres distribués (bl
## Qu'est-ce qui rend possible les identifiants décentralisés ? {#what-makes-decentralized-identifiers-possible}
-### 1. Infrastructure à clé publique (ICP) {#public-key-infrastructure}
+### 1. Infrastructure à clé publique (ICP) {#public-key-cryptography}
L'infrastructure à clé publique (ICP) est une mesure de sécurité de l'information qui génère une [clé publique](/glossary/#public-key) et une [clé privée](/glossary/#private-key) pour une entité. La cryptographie à clé publique est utilisée dans les réseaux blockchain pour authentifier l'identité des utilisateurs et prouver la propriété des actifs numériques.
diff --git a/public/content/translations/fr/defi/index.md b/public/content/translations/fr/defi/index.md
index ef931315a87..ce513f30f59 100644
--- a/public/content/translations/fr/defi/index.md
+++ b/public/content/translations/fr/defi/index.md
@@ -47,7 +47,7 @@ L'une des meilleures façons de voir le potentiel de la DeFi est de comprendre l
| Les marchés sont toujours ouverts. | Les marchés ferment parce que les employés ont besoin de pauses. |
| Il est construit sur la transparence – tout le monde peut regarder les données d'un produit et inspecter le fonctionnement du système. | Les institutions financières sont des livres fermés : vous ne pouvez pas demander à voir leurs antécédents de prêts, un dossier de leurs actifs gérés, etc. |
-
+
Explorer la DeFi
@@ -65,7 +65,7 @@ Cela semble étrange... « pourquoi je voudrais programmer mon argent » ? Cepen
Explorez nos suggestions pour les applications de la DeFi pour essayer si vous êtes nouveau sur Ethereum.
-
+
Explorer la DeFi
@@ -92,7 +92,7 @@ Il existe une alternative décentralisée à la plupart des services financiers.
En tant que blockchain, Ethereum est conçu pour envoyer des transactions de manière sécurisée et globale. Tout comme Bitcoin, Ethereum vous permet d'envoyer de l'argent dans le monde entier aussi facilement qu'un un email. Entrez simplement le nom [ENS de votre destinataire](/nft/#nft-domains) (comme bob. th) ou l'adresse de leur compte à partir de votre portefeuille et votre paiement leur ira directement, en quelques minutes (habituellement). Pour envoyer ou recevoir des paiements, vous aurez besoin d'un [portefeuille](/wallets/).
-
+
Voir les applications de paiement
@@ -123,7 +123,7 @@ L'emprunt de l'argent auprès de prestataires décentralisés se compose de deux
- Pair-à-pair, ce qui signifie qu'un emprunteur empruntera directement auprès d'un prêteur spécifique.
- Basé sur une pool où les prêteurs fournissent des fonds (liquidités) à une réserve dans laquelle les emprunteurs peuvent emprunter.
-
+
Voir les dapp d'emprunt
@@ -183,7 +183,7 @@ Vous pouvez gagner de l'intérêt sur votre cryptomonnaie en le prêtant et en v
- Votre aDai augmentera en fonction des taux d'intérêt et vous pourrez ainsi voir votre solde croître dans votre portefeuille. Dépendant de l'APR, le solde de votre portefeuille va lire quelque chose comme 100.1234 après quelques jours ou même quelques heures !
- Vous pouvez retirer un montant de Dai égal à votre solde aDai à tout moment.
-
+
Voir les dApps de prêt
@@ -211,7 +211,7 @@ Il existe des milliers de jetons sur Ethereum. Les échanges décentralisés (DE
Par exemple, si vous voulez vous lancer dans une loterie sans risque (décrite au dessus), vous aurez besoin de jeton comme les Dai ou USDC. Les DEXs vous permettent d'échanger vos ETH avec des tokens, et de les reconvertir en ETH lorsque vous avez terminé.
-
+
Voir échanger des jetons
@@ -223,7 +223,7 @@ Pour les traders qui aiment le contrôle, il existe des options avancées. Les o
Avec le trading centralisé, vous devez déposer vos actifs avant les échanges et faire confiance à un tier pour en prendre soin. Lorsqu'ils sont déposés, vos actifs courent un risque par ce que les centres d'échange sont des cibles très attractives pour les hackers.
-
+
Voir Applications décentralisées (dapps)
@@ -235,7 +235,7 @@ Il existe des outils de gestion de fonds sur Ethereum qui vous permettront de d
Voilà un bon exemple [DeFi Pulse Index fund (DPI)](https://defipulse.com/blog/defi-pulse-index/). C'est un fond qui se rééquilibre automatiquement pour garantir qu'il inclue toujours [les jetons DeFi ayant la meilleure capitalisation boursière](https://www.coingecko.com/en/defi). Pas besoin de gérer les détails et vous pouvez retirer les fonds quand bon vous semble.
-
+
Voir les applications d'investissement dapps
@@ -249,7 +249,7 @@ Ethereum est une plateforme idéale pour le crowdfunding:
- La transparence permet à tous les collecteurs de fonds de prouver combien ils ont levé. Vous pouvez aussi tracer l'utilisation des fonds levés.
- Les collecteurs de fonds peuvent mettre en place des remboursements automatiques. Par exemple si un montant minimum n'est pas atteint à la deadline du projet.
-
+
Voir les dapps de crowdfunding
@@ -276,7 +276,7 @@ L'assurance décentralisée vise à rendre l'assurance moins chère, plus rapide
Les produits Ethereum, comme n'importe quel logiciel, peuvent souffrir de bugs et d'exploits. Actuellement, de nombreux produits d'assurance dans l'espace sont axés sur la protection de leurs utilisateurs contre la perte de fonds. Cependant, il y a des projets qui commencent à construire une couverture pour tous les événements de la vie. Un bon exemple de ceci est la couverture Etherisc's Crop qui vise à [protéger les petits agriculteurs kényans contre les sécheresses et les inondations](https://blog.etherisc.com/etherisc-teams-up-with-chainlink-to-deliver-crop-insurance-in-kenya-137e433c29dc). Les assurances décentralisées peuvent offrir une couverture moins chère aux agriculteurs qui n'ont souvent pas les moyens d'accéder aux assurances traditionnelles.
-
+
Voir les assurances Dapps
@@ -286,7 +286,7 @@ Les produits Ethereum, comme n'importe quel logiciel, peuvent souffrir de bugs e
Avec tant de choses en cours, vous aurez besoin d'un moyen de suivre tous vos investissements, vos prêts et vos transactions. Il y a une foule de produits qui vous permettent de coordonner toutes vos activités de DeFi à partir d'un seul endroit. C'est la beauté de l'architecture ouverte de DeFi. Les équipes peuvent construire des interfaces où vous ne pouvez pas simplement voir vos balances entre produits mais également utiliser leurs fonctionnalités. Vous pourriez trouver cela utile en explorant plus à propos de la DeFi.
-
+
Voir les dApps de portefeuille
diff --git a/public/content/translations/fr/desci/index.md b/public/content/translations/fr/desci/index.md
index fb632ffafde..f210332f3c8 100644
--- a/public/content/translations/fr/desci/index.md
+++ b/public/content/translations/fr/desci/index.md
@@ -68,7 +68,7 @@ Dans le cadre du modèle de financement actuel de la science, des personnes ou d
Des études ont montré que les comités d'étude des demandes de subventions ont du mal à sélectionner les propositions de qualité. En effet, les mêmes propositions soumises à des comités différents donnent des résultats très différents. Le financement étant de plus en plus limité, il s’est concentré sur un groupe plus restreint de chercheurs plus âgés, porteurs de projets plus classiques sur le plan intellectuel. Cela a eu pour effet de créer un paysage de financement hyperconcurrentiel, d'ancrer des incitations perverses et d'étouffer l'innovation.
-Le Web3 a le potentiel d'ébranler ce modèle de financement dépassé en expérimentant différents modèles d'incitation développés par les DAO et le Web3 dans l'ensemble. [Le financement rétroactif de biens publics](https://medium.com/ethereum-optimism/retroactive-public-goods-funding-33c9b7d00f0c), [le financement quadratique](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2003531), la [gouvernance de DAO](https://www.antler.co/blog/daos-and-web3-governance) et les [structures incitatives basées sur l'utilisation de jetons](https://cdixon.org/2017/05/27/crypto-tokens-a-breakthrough-in-open-network-design) sont quelques-uns des outils Web3 qui pourraient révolutionner le financement de la science.
+Le Web3 a le potentiel d'ébranler ce modèle de financement dépassé en expérimentant différents modèles d'incitation développés par les DAO et le Web3 dans l'ensemble. [Le financement rétroactif de biens publics](https://medium.com/ethereum-optimism/retroactive-public-goods-funding-33c9b7d00f0c), [le financement quadratique](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2003531), la [gouvernance de DAO](https://www.antler.co/blog/daos-and-web3-governance-the-promise-implications-and-challenges-ahead) et les [structures incitatives basées sur l'utilisation de jetons](https://cdixon.org/2017/05/27/crypto-tokens-a-breakthrough-in-open-network-design) sont quelques-uns des outils Web3 qui pourraient révolutionner le financement de la science.
### Propriété et développement de la PI {#ip-ownership}
diff --git a/public/content/translations/fr/developers/docs/consensus-mechanisms/pos/index.md b/public/content/translations/fr/developers/docs/consensus-mechanisms/pos/index.md
index 5780e415170..0b8dcfb4b7d 100644
--- a/public/content/translations/fr/developers/docs/consensus-mechanisms/pos/index.md
+++ b/public/content/translations/fr/developers/docs/consensus-mechanisms/pos/index.md
@@ -24,7 +24,7 @@ Alors qu'avec le consensus de preuve de travail, la fréquence des blocs est dé
Ce qui suit fournit une explication de bout en bout de la façon dont une transaction est exécutée avec la preuve d'enjeu Ethereum (PoS).
-1. Un utilisateur crée et [signe une](/developers/docs/transaction/) avec sa clé privée. Ceci est généralement géré par un portefeuille ou une bibliothèque telle que l'éther [. s](https://docs.ethers.io/v5/), [web3js](https://docs.web3js.org/), [web3py](https://web3py.readthedocs.io/en/v5/) etc mais sous le capuchon l'utilisateur fait une requête à un noeud en utilisant l'API [JSON-RPC](/developers/docs/apis/json-rpc/). L'utilisateur définit la quantité de gaz qu'il est prêt à payer comme un pourboire au validateur pour l'encourager à inclure la transaction dans un bloc. Les [pourboires](/developers/docs/gas/#priority-fee) sont payés au validateur alors que les [frais de base](/developers/docs/gas/#base-fee) sont brûlés.
+1. Un utilisateur crée et [signe une](/developers/docs/transactions/) avec sa clé privée. Ceci est généralement géré par un portefeuille ou une bibliothèque telle que l'éther [. s](https://docs.ethers.io/v5/), [web3js](https://docs.web3js.org/), [web3py](https://web3py.readthedocs.io/en/v5/) etc mais sous le capuchon l'utilisateur fait une requête à un noeud en utilisant l'API [JSON-RPC](/developers/docs/apis/json-rpc/). L'utilisateur définit la quantité de gaz qu'il est prêt à payer comme un pourboire au validateur pour l'encourager à inclure la transaction dans un bloc. Les [pourboires](/developers/docs/gas/#priority-fee) sont payés au validateur alors que les [frais de base](/developers/docs/gas/#base-fee) sont brûlés.
2. La transaction est soumise à un client d'exécution [Ethereum](/developers/docs/nodes-and-clients/#execution-client) qui vérifie sa validité. Cela signifie s'assurer que l'expéditeur a suffisamment d'ETH pour remplir la transaction et qu'il l'a signée avec la bonne clé.
3. Si la transaction est valide, le client d'exécution l'ajoute à son mempool local (liste des transactions en attente) et le transmet également à d'autres nœuds sur le réseau d'informations de la couche d'exécution. Quand d'autres nœuds reçoivent la transaction, ils l'ajoutent également à leur mempool local. Les utilisateurs avancés peuvent s'abstenir de diffuser leur transaction et la transmettre à des créateurs de blocs spécialisés tels que [Flashbots Auction](https://docs.flashbots.net/flashbots-auction/overview). Cela leur permet d'organiser les transactions dans les blocs à venir pour un profit maximal ([MEV](/developers/docs/mev/#mev-extraction)).
4. Un des nœuds sur le réseau est le bloc proposant pour le créneau actuel, ayant précédemment été sélectionné pseudo-aléatoirement à l'aide de RANDAO. Ce noeud est responsable de la construction et de la diffusion du prochain bloc à ajouter à la blockchain Ethereum et de la mise à jour de l'état global. Le noeud est composé de trois parties : un client d'exécution, un client de consensus et un client validateur. Le client d'exécution relie les transactions depuis le mempool local à une « charge utile d'exécution » et les exécute localement pour générer un changement d'état. Ces informations sont transmises au client de consensus où la charge utile d'exécution est enveloppée dans un « bloc balise » qui contient également des informations sur les récompenses, les pénalités, les réductions, les attestations, etc. qui permettent au réseau de se mettre d'accord sur la séquence de blocs en tête de la chaîne. La communication entre l'exécution et les clients de consensus est décrite plus en détail dans [Connecting the Consensus and Execution Clients](/developers/docs/networking-layer/#connecting-clients).
diff --git a/public/content/translations/fr/developers/docs/consensus-mechanisms/pow/mining/index.md b/public/content/translations/fr/developers/docs/consensus-mechanisms/pow/mining/index.md
index b266855f5ae..cdd91ab8a41 100644
--- a/public/content/translations/fr/developers/docs/consensus-mechanisms/pow/mining/index.md
+++ b/public/content/translations/fr/developers/docs/consensus-mechanisms/pow/mining/index.md
@@ -70,9 +70,9 @@ Regardez Austin vous guider à travers le minage et la blockchain de la preuve d
## L'algorithme de minage {#mining-algorithm}
-Le réseau principal Ethereum n'a jamais utilisé qu'un seul algorithme de minage - ['Ethash'](/developers/docs/consensus-mechanisms/pow/mining-algorithms/ethash/). Ethhash était le successeur d'un algorithme R&D original connu sous le nom de ["Dagger-Hashimoto"](/developers/docs/consensus-mechanisms/pow/mining-algorithms/dagger-hashimoto/).
+Le réseau principal Ethereum n'a jamais utilisé qu'un seul algorithme de minage - ['Ethash'](/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/ethash/). Ethhash était le successeur d'un algorithme R&D original connu sous le nom de ["Dagger-Hashimoto"](/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/dagger-hashimoto/).
-[Plus de détails sur les algorithmes de minage](/developers/docs/consensus-mechanisms/pow/mining-algorithms/).
+[Plus de détails sur les algorithmes de minage](/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/).
## Sujets connexes {#related-topics}
diff --git a/public/content/translations/fr/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/dagger-hashimoto/index.md b/public/content/translations/fr/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/dagger-hashimoto/index.md
index 73b6e39b976..49a08c7a3b3 100644
--- a/public/content/translations/fr/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/dagger-hashimoto/index.md
+++ b/public/content/translations/fr/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/dagger-hashimoto/index.md
@@ -4,7 +4,7 @@ description: Un regard détaillé sur l'algorithme Dagger-Hashimoto.
lang: fr
---
-Dagger-Hashimoto représentait l'implémentation et la spécification originales de recherche pour l'algorithme de minage d'Ethereum. Dagger-Hashimoto a été remplacé par [Ethash](#ethash). Le minage a été complètement arrêté avec [La Fusion](/updates/merge) du 15 septembre 2022. Depuis lors, Ethereum a été sécurisé en utilisant à la place un mécanisme de [preuve d'enjeu](/developers/docs/consensus-mechanisms/pos). Cette page a un intérêt historique - l'information fournie n'est plus pertinente depuis La Fusion Ethereum.
+Dagger-Hashimoto représentait l'implémentation et la spécification originales de recherche pour l'algorithme de minage d'Ethereum. Dagger-Hashimoto a été remplacé par [Ethash](#ethash). Le minage a été complètement arrêté avec [La Fusion](/roadmap/merge/) du 15 septembre 2022. Depuis lors, Ethereum a été sécurisé en utilisant à la place un mécanisme de [preuve d'enjeu](/developers/docs/consensus-mechanisms/pos). Cette page a un intérêt historique - l'information fournie n'est plus pertinente depuis La Fusion Ethereum.
## Prérequis {#prerequisites}
diff --git a/public/content/translations/fr/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/ethash/index.md b/public/content/translations/fr/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/ethash/index.md
index c91d7602500..31182efaafa 100644
--- a/public/content/translations/fr/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/ethash/index.md
+++ b/public/content/translations/fr/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/ethash/index.md
@@ -8,7 +8,7 @@ lang: fr
Ethash était l'algorithme de minage par preuve de travail d'Ethereum. La preuve de travail est maintenant **arrêtée entièrement** et Ethereum est maintenant sécurisé en utilisant la preuve d'enjeu à la place. En savoir plus sur La Fusion, la preuve d'enjeu et la mise en jeu. Cette page n'a qu'un intérêt historique !
-[Ethash](https://github.com/ethereum/wiki/wiki/Ethash) est une version modifiée de l'algorithme [Dagger-Hashimoto](/developers/docs/consensus-mechanisms/pow/mining-algorithms/dagger-hashimoto). La preuve de travail d'Ethash est une [mémoire solide](https://wikipedia.org/wiki/Memory-hard_function), qui était censée rendre l'algorithme ASIC plus résistant. Les Ethash ASIC ont finalement été développés, mais le minage via GPU restait encore une option viable jusqu’à ce que la preuve de travail soit désactivée. Ethash est toujours utilisé pour miner d'autres jetons sur des réseaux autres qu'Ethereum fonctionnant avec la preuve de travail.
+[Ethash](https://github.com/ethereum/wiki/wiki/Ethash) est une version modifiée de l'algorithme [Dagger-Hashimoto](/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/dagger-hashimoto). La preuve de travail d'Ethash est une [mémoire solide](https://wikipedia.org/wiki/Memory-hard_function), qui était censée rendre l'algorithme ASIC plus résistant. Les Ethash ASIC ont finalement été développés, mais le minage via GPU restait encore une option viable jusqu’à ce que la preuve de travail soit désactivée. Ethash est toujours utilisé pour miner d'autres jetons sur des réseaux autres qu'Ethereum fonctionnant avec la preuve de travail.
## Comment fonctionne Ethash ? {#how-does-ethash-work}
diff --git a/public/content/translations/fr/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/index.md b/public/content/translations/fr/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/index.md
index f251fa3ce68..1312eaecc81 100644
--- a/public/content/translations/fr/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/index.md
+++ b/public/content/translations/fr/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/index.md
@@ -24,13 +24,13 @@ Dagger Hashimoto était un algorithme de recherche précurseur pour le minage Et
Dagger-Hashimoto a utilisé des versions modifiées des algorithmes Dagger et Hashimoto. La différence entre Dagger Hashimoto et Hashimoto réside dans le fait qu'au lieu d'utiliser la blockchain comme une source de données, Dagger Hashimoto utilise un ensemble de données générées sur mesure, qui se met à jour en fonction des données de chaque bloc N. L'ensemble de données est généré à l'aide de l'algorithme Dagger permettant de calculer efficacement un sous-ensemble spécifique à chaque nonce pour l'algorithme de vérification du client léger. La différence entre Dagger Hashimoto et Dagger est que, contrairement à l'original Dagger, le jeu de données utilisé pour interroger le bloc est semi-permanent, mis à jour uniquement à intervalles occasionnels (par exemple une fois par semaine). Cela signifie que la partie de l'effort de génération du jeu de données est proche de zéro. Les arguments de Sergio Lerner concernant les vitesses de mémoires partagées deviennent donc négligeables.
-En savoir plus sur [Dagger-Hashimoto](/developers/docs/consensus-mechanisms/pow/mining-algorithms/dagger-hashimoto).
+En savoir plus sur [Dagger-Hashimoto](/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/dagger-hashimoto).
## Ethash {#ethash}
Ethash était l'algorithme de minage qui était en fait utilisé sur le véritable réseau principal Ethereum sous l'architecture désormais obsolète de la preuve de travail. Ethash a été en fait un nouveau nom donné à une version spécifique de Dagger-Hashimoto après que l'algorithme a été mis à jour de manière significative, tout en héritant des principes fondamentaux de son prédécesseur. Le réseau principal Ethereum a toujours utilisé Ethash - Dagger Hashimoto était une version R&D de l'algorithme de minage qui a été remplacé avant que le minage ne démarre sur le réseau principal Ethereum.
-[En savoir plus sur Ethash](/developers/docs/consensus-mechanisms/pow/mining-algorithms/ethash).
+[En savoir plus sur Ethash](/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/ethash).
## Complément d'information {#further-reading}
diff --git a/public/content/translations/fr/developers/docs/data-and-analytics/block-explorers/index.md b/public/content/translations/fr/developers/docs/data-and-analytics/block-explorers/index.md
index 603f78e2956..eaf0f0d8ebe 100644
--- a/public/content/translations/fr/developers/docs/data-and-analytics/block-explorers/index.md
+++ b/public/content/translations/fr/developers/docs/data-and-analytics/block-explorers/index.md
@@ -16,15 +16,15 @@ Pour que les données fournies par un explorateur de blocs aient du sens, vous d
- [Etherscan](https://etherscan.io/) - _Également disponible en chinois, coréen, russe et japonais_
- [Beaconcha.in](https://beaconcha.in/)
- [Blockchair](https://blockchair.com/ethereum) - _Également disponible en espagnol, français, italien, néerlandais, portugais, russe, chinois et Farsi_
-- [Blockscout](https://blockscout.com/)
+- [Blockscout](https://eth.blockscout.com/)
+- [Chainlens](https://www.chainlens.com/)
- [Etherchain](https://www.etherchain.org/)
- [Ethplorer](https://ethplorer.io/) - _Aussi disponible en chinois, espagnol, français, turc, russe, coréen et vietnamien_
+- [EthVM](https://www.ethvm.com/)
+- [Explorateurs de bloc DexGuru](https://ethereum.dex.guru/)
- [OKLink](https://www.oklink.com/eth)
- [Otterscan](https://otterscan.io/)
- [Rantom](https://rantom.app/)
-- [Sirato](https://www.web3labs.com/sirato)
-- [EthVM](https://www.ethvm.com/)
-- [Explorateurs de bloc DexGuru](https://ethereum.dex.guru/)
## Données {#data}
diff --git a/public/content/translations/fr/developers/docs/gas/index.md b/public/content/translations/fr/developers/docs/gas/index.md
index 4a997852f4f..282312ff2fb 100644
--- a/public/content/translations/fr/developers/docs/gas/index.md
+++ b/public/content/translations/fr/developers/docs/gas/index.md
@@ -152,4 +152,4 @@ Si vous voulez surveiller les prix du gaz et pouvoir envoyer votre ETH à moindr
- [Preuve d'enjeu contre preuve de travail](https://blockgeeks.com/guides/proof-of-work-vs-proof-of-stake/)
- [Des Stratégies pour Optimiser la Consommation de Gas, pour les Développeurs](https://www.alchemy.com/overviews/solidity-gas-optimization)
- [documentation EIP-1559](https://eips.ethereum.org/EIPS/eip-1559).
-- [Ressources EIP-1559 de Time Beiko](https://hackmd.io/@timbeiko/1559-resources).
+- [Ressources EIP-1559 de Tim Beiko](https://hackmd.io/@timbeiko/1559-resources).
diff --git a/public/content/translations/fr/developers/docs/networks/index.md b/public/content/translations/fr/developers/docs/networks/index.md
index 949b603c472..73d153da3c9 100644
--- a/public/content/translations/fr/developers/docs/networks/index.md
+++ b/public/content/translations/fr/developers/docs/networks/index.md
@@ -60,7 +60,6 @@ Les deux réseaux de test publics que les développeurs de clients conservent ac
- [Alchemy Sepolia faucet](https://sepoliafaucet.com/)
- [Infura Sepolia faucet](https://www.infura.io/faucet)
- [Robinet Sepolia Chainstack](https://faucet.chainstack.com/sepolia-faucet)
-- [Robinet pour le réseau de test Sepolia](https://testnet-faucet.com/sepolia/)
#### Goerli _(support à long terme)_ {#goerli}
diff --git a/public/content/translations/fr/developers/docs/scaling/validium/index.md b/public/content/translations/fr/developers/docs/scaling/validium/index.md
index 244ffb3cc7b..7f405fa7138 100644
--- a/public/content/translations/fr/developers/docs/scaling/validium/index.md
+++ b/public/content/translations/fr/developers/docs/scaling/validium/index.md
@@ -153,7 +153,7 @@ De multiples projets fournissent des implémentations de Validium et de volition
**Matter Labs zkPorter**- _zkPorter est un protocole de mise à l'échelle de couche 2 s'attaquant à la disponibilité des données avec une approche hybride qui combine les idées de rollup ZK et de fragmentation. Il peut prendre en charge un nombre arbitraire de fragments, chacun ayant sa propre politique de disponibilité des données._
-- [Documentation](https://docs.zksync.io/zkevm/#what-is-zkporter)
+- [Documentation](https://docs.zksync.io/zk-stack/concepts/hyperchains-hyperscaling.html#logical-state-partitions-in-zk-porters)
- [Site Web](https://zksync.io/)
## Complément d'information {#further-reading}
diff --git a/public/content/translations/fr/developers/docs/smart-contracts/languages/index.md b/public/content/translations/fr/developers/docs/smart-contracts/languages/index.md
index bd06f874e0c..0f51ca65572 100644
--- a/public/content/translations/fr/developers/docs/smart-contracts/languages/index.md
+++ b/public/content/translations/fr/developers/docs/smart-contracts/languages/index.md
@@ -23,7 +23,7 @@ La connaissance de langages de programmation comme JavaScript ou Python peut vou
- Un langage orienté objet et de haut niveau pour la mise en œuvre de contrats intelligents.
- Un langage à accolades principalement influencé par C++.
-- Typé statistiquement (le type d'une variable est connu au moment de la compilation)
+- Typé statiquement (le type d'une variable est connu au moment de la compilation)
- Prend en charge les éléments suivants :
- Héritage : Vous pouvez prolonger d'autres contrats.
- Bibliothèques : Vous pouvez créer du code réutilisable que vous pouvez appeler à partir de différents contrats, comme les fonctions statiques d'une classe statique dans d'autres langages de programmation orientés objets.
diff --git a/public/content/translations/fr/developers/docs/standards/index.md b/public/content/translations/fr/developers/docs/standards/index.md
index 511460c5136..bd785f65a4b 100644
--- a/public/content/translations/fr/developers/docs/standards/index.md
+++ b/public/content/translations/fr/developers/docs/standards/index.md
@@ -18,7 +18,7 @@ Ces normes sont généralement présentées via les [propositions d'amélioratio
- [Introduction à la gouvernance d'Ethereum](/governance/)
- [Ethereum Governance Overview](https://web.archive.org/web/20201107234050/https://blog.bmannconsulting.com/ethereum-governance/) _- Boris Mann, 31 mars 2019_
- [Ethereum Protocol Development Governance and Network Upgrade Coordination](https://hudsonjameson.com/2020-03-23-ethereum-protocol-development-governance-and-network-upgrade-coordination/) _- Hudson Jameson, 23 mars 2020_
-- [Playlist de toutes les rencontres de l'équipe de développement clé Ethereum](https://www.youtube.com/playlist?list=PLaM7G4Llrb7zfMXCZVEXEABT8OSnd4-7w) _(YouTube Playlist)_
+- [Playlist de toutes les rencontres de l'équipe de développement clé Ethereum](https://www.youtube.com/@EthereumProtocol) _(YouTube Playlist)_
## Types de normes {#types-of-standards}
diff --git a/public/content/translations/fr/developers/tutorials/kickstart-your-dapp-frontend-development-wth-create-eth-app/index.md b/public/content/translations/fr/developers/tutorials/kickstart-your-dapp-frontend-development-wth-create-eth-app/index.md
deleted file mode 100644
index b756c45d627..00000000000
--- a/public/content/translations/fr/developers/tutorials/kickstart-your-dapp-frontend-development-wth-create-eth-app/index.md
+++ /dev/null
@@ -1,110 +0,0 @@
----
-title: Démarrer le développement de votre interface dApp avec create-eth-app
-description: Aperçu de l'utilisation de create-eth-app et de ses fonctionnalités
-author: "Markus Waas"
-tags:
- - "create-eth-app"
- - "frontend"
- - "javascript"
- - "ethers.js"
- - "the graph"
- - "DeFi"
-skill: beginner
-lang: fr
-published: 2020-04-27
-source: soliditydeveloper.com
-sourceUrl: https://soliditydeveloper.com/create-eth-app
----
-
-La dernière fois nous nous sommes intéressés à [Solidity](https://soliditydeveloper.com/solidity-overview-2020) et avons mentionné [create-eth-app](https://github.com/PaulRBerg/create-eth-app). Vous allez maintenant découvrir comment l'utiliser, quelles fonctionnalités y sont intégrées et comment l'étendre encore. Initiée par Paul Razvan Berg, fondateur de [Sablier](http://sablier.com/), cette application livrée avec plusieurs intégrations facultatives au choix va vous permettre de débuter le développement de votre interface.
-
-## Installation {#installation}
-
-L'installation nécessite au minimum Yarn 0.25 (`npm install yarn --global`). L'installation est aussi simple que l'exécution :
-
-```bash
-yarn create eth-app my-eth-app
-cd my-eth-app
-yarn react-app:start
-```
-
-Elle s'appuie sur [create-react-app](https://github.com/facebook/create-react-app). Pour voir votre application, ouvrez `http://localhost:3000/`. Lorsque vous êtes prêt à déployer en production, créez un paquet minifié avec le constructeur yarn. Un moyen simple de l'héberger est [Netlify](https://www.netlify.com/). Vous pouvez créer un dépôt GitHub, l'ajouter à Netlify, configurer la commande de construction et le tour est joué ! Votre application sera hébergée et utilisable par tout le monde. Et tout ceci gratuitement.
-
-## Fonctionnalités {#features}
-
-### React & create-react-app {#react--create-react-app}
-
-Premièrement, le coeur de l'application : React et toutes les fonctionnalités additionnelles livrées avec _create-react-app_. Utiliser cette seule application est une excellente option si vous ne souhaitez pas intégrer Ethereum. [React](https://reactjs.org/) rend la construction d'interfaces utilisateur interactives très facile. La prise en main n'est peut-être pas aussi facile qu'avec [Vue](https://vuejs.org/), mais l'application est encore largement utilisée, possède plus de fonctionnalités et surtout offre un choix de plusieurs milliers de bibliothèques supplémentaires. Avec _create-react-app_, le démarrage est très simple. L'application inclut :
-
-- React, JSX, ES6, TypeScript et le support pour Flow syntax.
-- Langages complémentaires à ES6 comme l'opérateur de propagation d'objet.
-- CSS auto-préfixé, pour se passer de -webkit- ou d'autres préfixes.
-- Un exécuteur de test unitaire interactif rapide avec une prise en charge intégrée pour les rapports de couverture.
-- Un serveur de développement en direct qui signale les erreurs courantes.
-- Un script de construction pour associer du JS, du CSS et des images en vue de la mise en production, avec des hachages et une cartographie du code source.
-
-_create-react-app_, en particulier, fait usage des nouveaux [effets hooks](https://reactjs.org/docs/hooks-effect.html). Une méthode pour écrire de puissants mais très petits composants, dits fonctionnels. Voir ci-dessous la section sur Apollo pour savoir comment ils sont utilisés dans _create-react-app_.
-
-### Espaces de travail Yarn {#yarn-workspaces}
-
-[Les espaces de travail Yarn](https://classic.yarnpkg.com/en/docs/workspaces/) vous permettent de disposer de plusieurs paquets, mais également d'être en mesure de tous les gérer à partir du dossier racine et d'installer toutes leurs dépendances en une fois en utilisant `yarn install`. Ceci est particulièrement adapté pour les petits packs additionnels, tels que les adresses de contrats intelligents/la gestion ABI (les informations sur l'endroit où vous avez déployé tels contrats intelligents et comment communiquer avec eux) ou l'intégration de graphes, les deux parties de `create-eth-app`.
-
-### ethers.js {#ethersjs}
-
-Si [Web3](https://docs.web3js.org/) est encore largement utilisé, [ethers.js](https://docs.ethers.io/) a davantage été employé comme alternative l'année dernière et est intégré à _create-eth-app_. Vous pouvez travailler avec celui-ci, le faire évoluer vers Web3 ou envisager une mise à niveau pour passer à [ethers.js v5](https://docs-beta.ethers.io/) qui n'est pratiquement plus en version bêta.
-
-### Le réseau Graph {#the-graph}
-
-[GraphQL](https://graphql.org/) est un moyen alternatif de gérer les données par rapport à une [API Restful](https://restfulapi.net/). Il offre plusieurs avantages par rapport aux APIs REST, en particulier pour les données décentralisées de la blockchain. Si vous êtes intéressé par le raisonnement qui le sous-tend, jetez un œil à [GraphQL va propulser le Web décentralisé](https://medium.com/graphprotocol/graphql-will-power-the-decentralized-web-d7443a69c69a).
-
-Vous récupérez normalement directement les données de votre contrat intelligent. Vous souhaitez connaître l'instant précis de la dernière transaction ? Appelez simplement `MyContract.methods.latestTradeTime().call()` qui récupère les données d'un nœud Ethereum comme Infura dans votre dApp. Mais que faire si vous avez besoin de centaines de points de données différents ? Il en résulterait des centaines d'extractions de données vers le nœud, nécessitant à chaque fois un [RTT](https://wikipedia.org/wiki/Round-trip_delay_time) qui ralentirait votre dApp et lui ferait perdre son efficacité. Pour éviter cela, une solution pourrait être d'utiliser une fonction d'appel de récupération dans votre contrat qui restitue plusieurs données à la fois. Ce n'est cependant pas toujours idéal.
-
-Vous pourriez également être intéressé par les données historiques. Vous souhaitez peut-être connaître non seulement le moment de la dernière transaction mais également le moment de chacune des transactions que vous avez réalisées vous-même. Utilisez le paquet subgraph de _create-eth-app_, lisez la [documentation](https://thegraph.com/docs/define-a-subgraph) et adaptez-la à vos propres contrats. Si vous êtes à la recherche de contrats intelligents populaires, il se peut même qu'il en existe déjà un avec subgraph. Jetez un œil à [l'explorateur de sous-graphes](https://thegraph.com/explorer/).
-
-Une fois que vous disposez d'un subgraph, vous pouvez écrire une simple requête dans votre dApp afin de récupérer toutes les données importantes de la blockchain, y compris les données historiques dont vous avez besoin. Une seule demande de récupération suffit.
-
-### Apollo {#apollo}
-
-Grâce à l'intégration d'[Apollo Boost](https://www.apollographql.com/docs/react/get-started/), vous pouvez facilement intégrer Graph dans votre dApp React. Surtout lorsque vous utilisez [des hooks React et Apollo](https://www.apollographql.com/blog/apollo-client-now-with-react-hooks-676d116eeae2), récupérer des données est aussi simple que d'écrire une requête GraphQl dans votre composant:
-
-```js
-const { loading, error, data } = useQuery(myGraphQlQuery)
-
-React.useEffect(() => {
- if (!loading && !error && data) {
- console.log({ data })
- }
-}, [loading, error, data])
-```
-
-## Modèles (Templates) {#templates}
-
-En haut, il est possible de choisir parmi différents modèles. À ce jour, vous pouvez utiliser une intégration Aave, Compound, UniSwap ou Sablier. Ces modèles ajoutent tous des adresses importantes de contrats intelligents de service ainsi que des intégrations pré-construites de subgraph. Il suffit d'ajouter le modèle à la commande de création comme `yarn create eth-app my-eth-app --with-template aav`.
-
-### Aave {#aave}
-
-[Aave](https://aave.com/) est un marché décentralisé de prêt d'argent. Les déposants fournissent des liquidités au marché pour gagner un revenu passif, tandis que les emprunteurs peuvent emprunter avec des garanties. Une fonctionnalité exclusive d'Aave réside dans ces [prêts flash](https://docs.aave.com/developers/guides/flash-loans) qui vous permettent d'emprunter de l'argent sans aucune garantie, pour autant que vous remboursiez le prêt en une seule transaction. Cela peut être utile par exemple pour vous donner de l'argent supplémentaire sur l'arbitrage d'échange.
-
-Les jetons échangés qui vous rapportent des intérêts sont appelés _aTokens_.
-
-Si vous choisissez d'intégrer Aave avec _create-eth-app_, vous obtiendrez une [intégration subgraph](https://docs.aave.com/developers/getting-started/using-graphql). Aave utilise The Graph et vous fournit déjà plusieurs Subgraphs prêts à l'emploi sur [Ropsten](https://thegraph.com/explorer/subgraph/aave/protocol-ropsten) et [le réseau principal](https://thegraph.com/explorer/subgraph/aave/protocol) en formulaire [brut](https://thegraph.com/explorer/subgraph/aave/protocol-raw) ou [formaté](https://thegraph.com/explorer/subgraph/aave/protocol).
-
-![Aave Flash Loan meme - "Ouah, si je pouvais garder mon prêt flash plus longtemps qu'une transaction, ce serait génial" ;](./flashloan-meme.png)
-
-### Compound {#compound}
-
-[Compound](https://compound.finance/) est similaire à Aave. L'intégration inclut déjà le nouveau [Compound v2 Subgraph](https://medium.com/graphprotocol/https-medium-com-graphprotocol-compound-v2-subgraph-highlight-a5f38f094195). Les intérêts gagnés des jetons sont ici étonnamment appelés _cTokens_.
-
-### Uniswap {#uniswap}
-
-[Uniswap](https://uniswap.exchange/) est un système d'échange décentralisé (DEX). Les fournisseurs de liquidités peuvent percevoir des commissions en fournissant les jetons ou l'éther requis pour les deux parties d'une transaction. Le protocole est largement utilisé et dispose donc de liquidités très nombreuses pour une très large gamme de jetons. Vous pouvez facilement l'intégrer dans votre dApp pour permettre, par exemple, aux utilisateurs d'échanger leur ETH contre du DAI.
-
-Malheureusement, à l'heure où ces lignes sont écrites, l'intégration est uniquement proposée pour Uniswap v1 et non pour la toute nouvelle version [v2](https://uniswap.org/blog/uniswap-v2/).
-
-### Sablier {#sablier}
-
-[Sablier](https://sablier.com/) permet aux utilisateurs d'effectuer des paiements en continu. Au lieu d'un seul versement, vous recevez en fait votre argent en continu sans avoir rien d'autre à faire après la mise en place initiale. L'intégration inclut son [propre sous-graphe](https://thegraph.com/explorer/subgraph/sablierhq/sablier).
-
-## Et après ? {#whats-next}
-
-Si vous avez des questions sur _create-eth-app_, allez sur le [serveur de la Communauté Sablier](https://discord.gg/bsS8T47), où vous pouvez entrer en contact avec les auteurs de _create-eth-app_. Dans un premier temps, vous pourriez vouloir intégrer un framework d'interface utilisateur comme [Material UI](https://material-ui.com/), écrire des requêtes GraphQL pour les données dont vous avez réellement besoin et configurer le déploiement.
diff --git a/public/content/translations/fr/developers/tutorials/send-token-etherjs/index.md b/public/content/translations/fr/developers/tutorials/send-token-etherjs/index.md
deleted file mode 100644
index 8352a365b03..00000000000
--- a/public/content/translations/fr/developers/tutorials/send-token-etherjs/index.md
+++ /dev/null
@@ -1,212 +0,0 @@
----
-title: Envoyer des jetons avec ethers.js
-description: Guide à l'intention des débutants sur l'envoi de jetons à l'aide d'ether.js.
-author: Kim YongJun
-tags:
- - "ETHERS.JS"
- - "ERC-20"
- - "JETONS"
-skill: beginner
-lang: fr
-published: 2021-04-06
----
-
-## Envoyer un jeton avec ethers.js (5.0) {#send-token}
-
-### Dans ce tutoriel, vous allez apprendre à {#you-learn-about}
-
-- Importer ethers.js
-- Transférer un jeton
-- Définir le prix du gaz en fonction de l'état du trafic réseau
-
-### Pour commencer {#to-get-started}
-
-Pour commencer, nous devons d'abord importer la bibliothèque ethers.js dans notre JavaScript en intégrant ethers.js (5.0)
-
-### Installation {#install-ethersjs}
-
-```shell
-/home/ricmoo> npm install --save ethers
-```
-
-ES6 dans le navigateur :
-
-```html
-
-```
-
-ES3 (UMD) dans le navigateur :
-
-```html
-
-```
-
-### Paramètres {#param}
-
-1. **`contract_address`** : l'adresse du contrat du jeton (l'adresse du contrat est nécessaire lorsque le jeton que vous voulez transférer n'est pas de l'ether)
-2. **`send_token_amount`** : le montant que vous désirez envoyer au destinataire
-3. **`to_address`** : l'adresse du destinataire
-4. **`send_account`** : l'adresse de l'expéditeur
-5. **`private_key`** : clé privée de l'expéditeur afin de signer la transaction et de transférer véritablement les jetons
-
-## Remarque {#notice}
-
-`signTransaction(tx)` est retiré car `sendTransaction()` le fait en interne.
-
-## Procédure d'envoi {#procedure}
-
-### 1. Se connecter au réseau (testnet) {#connect-to-network}
-
-#### Définir le fournisseur (Infura) {#set-provider}
-
-Se connecter au réseau de test Ropsten
-
-```javascript
-window.ethersProvider = new ethers.providers.InfuraProvider("ropsten")
-```
-
-### 2. Créer un portefeuille {#create-wallet}
-
-```javascript
-let wallet = new ethers.Wallet(private_key)
-```
-
-### 3. Connecter le portefeuille au réseau {#connect-wallet-to-net}
-
-```javascript
-let walletSigner = wallet.connect(window.ethersProvider)
-```
-
-### 4. Obtenir le prix actuel du gaz {#get-gas}
-
-```javascript
-window.ethersProvider.getGasPrice() // gasPrice
-```
-
-### 5. Définir la transaction {#define-transaction}
-
-Les variables définies ci-dessous sont dépendantes de `send_token()`
-
-### Paramètres de la transaction {#transaction-params}
-
-1. **`send_account`** : adresse de l'expéditeur du jeton
-2. **`to_address`** : adresse du destinataire du jeton
-3. **`send_token_amount`** : nombre de jetons à envoyer
-4. **`gas_limit`** : limite de gaz
-5. **`gas_price`** : prix du gaz
-
-[Voir ci-dessous pour savoir comment les utiliser](#how-to-use)
-
-```javascript
-const tx = {
- from: send_account,
- to: to_address,
- value: ethers.utils.parseEther(send_token_amount),
- nonce: window.ethersProvider.getTransactionCount(send_account, "latest"),
- gasLimit: ethers.utils.hexlify(gas_limit), // 100000
- gasPrice: gas_price,
-}
-```
-
-### 6. Transférer {#transfer}
-
-```javascript
-walletSigner.sendTransaction(tx).then((transaction) => {
- console.dir(transaction)
- alert("Send finished!")
-})
-```
-
-## Comment l’utiliser {#how-to-use}
-
-```javascript
-let private_key =
- "41559d28e936dc92104ff30691519693fc753ffbee6251a611b9aa1878f12a4d"
-let send_token_amount = "1"
-let to_address = "0x4c10D2734Fb76D3236E522509181CC3Ba8DE0e80"
-let send_address = "0xda27a282B5B6c5229699891CfA6b900A716539E6"
-let gas_limit = "0x100000"
-let wallet = new ethers.Wallet(private_key)
-let walletSigner = wallet.connect(window.ethersProvider)
-let contract_address = ""
-window.ethersProvider = new ethers.providers.InfuraProvider("ropsten")
-
-send_token(
- contract_address,
- send_token_amount,
- to_address,
- send_address,
- private_key
-)
-```
-
-### Réussi ! {#success}
-
-![image de la transaction effectuée avec succès](./successful-transaction.png)
-
-## send_token() {#send-token-method}
-
-```javascript
-function send_token(
- contract_address,
- send_token_amount,
- to_address,
- send_account,
- private_key
-) {
- let wallet = new ethers.Wallet(private_key)
- let walletSigner = wallet.connect(window.ethersProvider)
-
- window.ethersProvider.getGasPrice().then((currentGasPrice) => {
- let gas_price = ethers.utils.hexlify(parseInt(currentGasPrice))
- console.log(`gas_price: ${gas_price}`)
-
- if (contract_address) {
- // general token send
- let contract = new ethers.Contract(
- contract_address,
- send_abi,
- walletSigner
- )
-
- // How many tokens?
- let numberOfTokens = ethers.utils.parseUnits(send_token_amount, 18)
- console.log(`numberOfTokens: ${numberOfTokens}`)
-
- // Send tokens
- contract.transfer(to_address, numberOfTokens).then((transferResult) => {
- console.dir(transferResult)
- alert("sent token")
- })
- } // ether send
- else {
- const tx = {
- from: send_account,
- to: to_address,
- value: ethers.utils.parseEther(send_token_amount),
- nonce: window.ethersProvider.getTransactionCount(
- send_account,
- "latest"
- ),
- gasLimit: ethers.utils.hexlify(gas_limit), // 100000
- gasPrice: gas_price,
- }
- console.dir(tx)
- try {
- walletSigner.sendTransaction(tx).then((transaction) => {
- console.dir(transaction)
- alert("Send finished!")
- })
- } catch (error) {
- alert("failed to send!!")
- }
- }
- })
-}
-```
diff --git a/public/content/translations/fr/developers/tutorials/uniswap-v2-annotated-code/index.md b/public/content/translations/fr/developers/tutorials/uniswap-v2-annotated-code/index.md
index 932255920d8..310de316a09 100644
--- a/public/content/translations/fr/developers/tutorials/uniswap-v2-annotated-code/index.md
+++ b/public/content/translations/fr/developers/tutorials/uniswap-v2-annotated-code/index.md
@@ -743,7 +743,7 @@ C'est la fonction principale de l'usine : créer un échange de paires entre deu
(address token0, address token1) = tokenA < tokenB ? (tokenA, tokenB) : (tokenB, tokenA);
```
-Nous souhaitons que l'adresse du nouvel échange soit déterminable de sorte qu'elle puisse être calculée à l'avance hors chaîne (cela peut être utile pour [les transactions de couche 2](/developers/docs/layer-2-scaling/)). Pour cela, nous devons avoir les adresses de jetons dans un ordre cohérent indépendant de l'ordre dans lequel nous les avons reçus. Aussi les trions-nous ici.
+Nous souhaitons que l'adresse du nouvel échange soit déterminable de sorte qu'elle puisse être calculée à l'avance hors chaîne (cela peut être utile pour [les transactions de couche 2](/developers/docs/scaling/)). Pour cela, nous devons avoir les adresses de jetons dans un ordre cohérent indépendant de l'ordre dans lequel nous les avons reçus. Aussi les trions-nous ici.
```solidity
require(token0 != address(0), 'UniswapV2: ZERO_ADDRESS');
diff --git a/public/content/translations/fr/developers/tutorials/waffle-dynamic-mocking-and-testing-calls/index.md b/public/content/translations/fr/developers/tutorials/waffle-dynamic-mocking-and-testing-calls/index.md
index 295af215f85..994532ecc8b 100644
--- a/public/content/translations/fr/developers/tutorials/waffle-dynamic-mocking-and-testing-calls/index.md
+++ b/public/content/translations/fr/developers/tutorials/waffle-dynamic-mocking-and-testing-calls/index.md
@@ -295,4 +295,4 @@ Le code source de ce tutoriel est disponible [ici](https://github.com/EthWorks/W
Voici d'autres tutoriels qui pourraient vous intéresser :
-- [Tester des contrats intelligents avec Waffle](/developers/tutorials/testing-smart-contract-with-waffle/)
+- [Tester des contrats intelligents avec Waffle](/developers/tutorials/waffle-test-simple-smart-contract/)
diff --git a/public/content/translations/fr/developers/tutorials/waffle-test-simple-smart-contract/index.md b/public/content/translations/fr/developers/tutorials/waffle-test-simple-smart-contract/index.md
index dfec15096da..4945aecd75f 100644
--- a/public/content/translations/fr/developers/tutorials/waffle-test-simple-smart-contract/index.md
+++ b/public/content/translations/fr/developers/tutorials/waffle-test-simple-smart-contract/index.md
@@ -200,4 +200,4 @@ Vous avez fait votre premier (grand) pas vers les tests des contrats intelligent
- [Tester ERC20 avec Waffle](/developers/tutorials/testing-erc-20-tokens-with-waffle/)
- [Waffle : Bouchonnage dynamique et tests de contrats](/developers/tutorials/waffle-dynamic-mocking-and-testing-calls/#gatsby-focus-wrapper)
-- [Tutoriel pour "dire bonjour au monde" avec hardhat et ethers](/developers/tutorials/waffle-hello-world-with-buidler-tutorial/)
+- [Tutoriel pour "dire bonjour au monde" avec hardhat et ethers](/developers/tutorials/waffle-say-hello-world-with-hardhat-and-ethers/)
diff --git a/public/content/translations/fr/enterprise/index.md b/public/content/translations/fr/enterprise/index.md
index 26e30dcd0d7..120acf8eac0 100644
--- a/public/content/translations/fr/enterprise/index.md
+++ b/public/content/translations/fr/enterprise/index.md
@@ -51,7 +51,7 @@ Différentes organisations sont à l'origine d'initiatives collaboratives afin d
- [Blast](https://blastapi.io/) _plateforme API qui fournit des API RPC/WSS pour le réseau principal archiveur Ethereum et les réseaux de test._
- [Blockapps](https://blockapps.net/)_ - Implémentation du protocole Ethereum pour les entreprises, outils et API constituant la plateforme STRATO_
- [Chainstack](https://chainstack.com/) _- Infrastructure du réseau principal et du réseau de test Ethereum hébergée dans des clouds clients isolés & publics_
-- [ConsenSys](https://consensys.net/) _ fournit une gamme de produits et d'outils pour construire sur Ethereum, ainsi que des services de conseil et de développement personnalisé_
+- [ConsenSys](https://consensys.io/) _ fournit une gamme de produits et d'outils pour construire sur Ethereum, ainsi que des services de conseil et de développement personnalisé_
- [Envision Blockchain](https://envisionblockchain.com/) _ fournit des services de conseil et de développement axés sur les entreprises, et spécialisés dans le réseau principal Ethereum_
- [EY OpsChain](https://blockchain.ey.com/products/contract-manager)_ fournit un workflow d'approvisionnement en émettant des demandes de devis (RFQ), des contrats, des bons de commande et des factures à travers votre réseau de partenaires commerciaux de confiance_
- [- Hyperledger Besu](https://www.hyperledger.org/use/besu) _- Client Ethereum en open source axé sur les entreprises, développé sous la licence Apache 2.0 et rédigé en Java_
@@ -68,7 +68,7 @@ Différentes organisations sont à l'origine d'initiatives collaboratives afin d
### Outils et bibliothèques {#tooling-and-libraries}
- [Alethio](https://explorer.aleth.io/) _- Plateforme d'analyse des données Ethereum_
-- [Sirato](https://www.web3labs.com/sirato) _- Plateforme de données et d'analyse, pour les réseaux publics et privés compatibles avec Ethereum (EVM) par Web3 Labs_
+- [Chainlens](https://www.chainlens.com/) _- Plateforme de données et d'analyse, pour les réseaux publics et privés compatibles avec Ethereum (EVM) par Web3 Labs_
- [Ernst & Young Nightfall](https://github.com/EYBlockchain/nightfall) _- Boîte à outils pour les transactions privées_
- [EthSigner](https://github.com/ConsenSys/ethsigner) _- Application de signature de transactions à utiliser avec un prestataire Web3_
- [Tenderly](https://tenderly.co/) _ - Plateforme de données fournissant des analyses en temps réel, des alertes et une surveillance avec support pour les réseaux privés_
@@ -102,13 +102,12 @@ Voici quelques-unes des applications d'entreprise qui ont été construites sur
- [Tinlake](https://tinlake.centrifuge.io/) _ - Financement de créances via des actifs réels tokenisés comme des factures, des hypothèques ou des redevances de streaming_
- [RealT](https://realt.co/) _- Les investisseurs du monde entier peuvent acheter sur le marché de l'immobilier américain par le biais d'une propriété entièrement conforme, fractionnée et tokenisée._
-- [AgroToken](https://agrotoken.io/en/) _- Tokenisation et négociation de produits agricoles_
+- [AgroToken](https://agrotoken.io/en/home) _- Tokenisation et négociation de produits agricoles_
- [Fasset](https://www.fasset.com/) _ - Plateforme pour soutenir l'infrastructure durable_
### Authentification des données {#notarization-of-data}
- [BBVA](https://www.ledgerinsights.com/bbva-blockchain-loan-banking-tech-award/) _ - Les détails des prêts finalisés sont hachés et enregistrés sur le réseau principal._
-- [Splunk](https://www.splunk.com/en_us/blog/security/the-newest-data-attack.html) _ - L'intégrité des données peut être garantie en écrivant périodiquement des hachages de données indexées sur le réseau principal._
- [ANSA](https://cointelegraph.com/news/italys-top-news-agency-uses-blockchain-to-fight-fake-coronavirus-news) _- La plus grande agence de presse d'Italie lutte contre les fake news et permet aux lecteurs de vérifier l'origine des nouvelles en les enregistrant sur le réseau principal._
- [Verizon](https://decrypt.co/46745/verizon-news-press-releases-ethereum-full-transparency) _ enregistre les communiqués de presse sur Ethereum en vue de garantir la responsabilité et la confiance des entreprises._
- [Breitling](https://www.coindesk.com/breitling-arianee-all-new-watches-ethereum) _ enregistre la provenance et l'historique de réparation de montres sur Ethereum._
@@ -116,13 +115,11 @@ Voici quelques-unes des applications d'entreprise qui ont été construites sur
### Chaîne logistique {#supply-chain}
-- [CargoX](https://cargox.io/press-releases/full/cargox-becomes-first-public-blockchain-ethereum-bill-lading-provider-approved-international-group-pi-clubs) _- Prestataire de services de connaissement et de transfert de documents_
- [Morpheus.network](https://morpheus.network/) _- Plateforme d'automatisation de la chaîne logistique qui implémente un hybride de chaînes privées et de données authentifiées sur le réseau principal Ethereum. Utilisée par des entreprises comme le distributeur canadien de produits alimentaires, de pétrole et de gaz Federated Co-op Ltd. et le fournisseur argentin d'aliments pour animaux Vitalcan._
- [Minespion](https://www.minespider.com/) _- Suivi de la chaîne logistique_
- [Gestionnaire de Contrats EY OpsChain](https://blockchain.ey.com/products/contract-manager) _- Permet aux entreprises de lancer un flux d'approvisionnement en émettant des demandes de devis (RFQ), des contrats, des bons de commande et des factures à travers leur réseau de partenaires commerciaux de confiance_
- [Treum](https://treum.io/) _- Apporte transparence, traçabilité et négociabilité aux chaînes logistiques, en utilisant la technologie blockchain_
- [TradeTrust](https://www.tradetrust.io/) _- Vérifie les connaissements électroniques (eBL) pour l'expédition à l'international_
-- [Birra Peroni](https://www.ey.com/en_gl/news/2021/05/birra-peroni-is-the-first-industrial-organization-to-mint-unique-non-fungible-tokens-using-ey-opschain-traceability) _frappe des jetons non fongibles (NFT) pour chaque nouveau lot de bière, offrant une plus grande visibilité et efficacité à travers sa chaîne logistique_
### Assurance {#insurance}
diff --git a/public/content/translations/fr/enterprise/private-ethereum/index.md b/public/content/translations/fr/enterprise/private-ethereum/index.md
index 60987ce1132..165498f5bfa 100644
--- a/public/content/translations/fr/enterprise/private-ethereum/index.md
+++ b/public/content/translations/fr/enterprise/private-ethereum/index.md
@@ -24,5 +24,4 @@ Différentes organisations sont à l'origine d'initiatives collaboratives afin d
- [Hyperledger Besu](https://www.hyperledger.org/use/besu) _- Client Ethereum open source développé sous Apache 2 et rédigé en Java, qui comprend plusieurs algorithmes de consensus, y compris PoW, et PoA (IBFT, IBFT 2.0, Etherhash et Clique). Ses systèmes d'autorisation complets sont conçus spécifiquement pour être utilisés dans un environnement de consortium._
- [Hyperledger Burrow](https://www.hyperledger.org/projects/hyperledger-burrow) _ - Client de blockchain modulaire avec interprète de contrats intelligents autorisé, partiellement développé pour la spécification de la machine virtuelle Ethereum (EVM)_
- [Kaleido](https://kaleido.io/) _ - Plateforme full-stack pour la construction et l'exécution d'écosystèmes d'entreprise hybrides et multicloud_
-- [Quorum](https://consensys.net/quorum/) _ - Plateforme de blockchain d'entreprise open source basée sur Ethereum, avec des fonctionnalités avancées de niveau entreprise offrant confidentialité, autorisations et performances_
- [Zeeve](https://www.zeeve.io/) _offre un large panel de produits et d'outils pour le développement d'Ethereum, c'est-à-dire des infrastructures et des API pour les applications d'entreprise Web3_
diff --git a/public/content/translations/fr/history/index.md b/public/content/translations/fr/history/index.md
index 599357519ef..07211535abc 100644
--- a/public/content/translations/fr/history/index.md
+++ b/public/content/translations/fr/history/index.md
@@ -27,11 +27,11 @@ Vous cherchez les prochaines mises à jour de protocole ? [Découvrez les mises
## 2023 {#2023}
-### Shanghai {#shanghai}
+### Shanghai-Capella ("Shapella") {#shapella}
-
+
-#### Résumé {#shanghai-summary}
+#### Résumé de Shanghai {#shanghai-summary}
La mise à jour Shanghai a ouvert la voie à des opérations de retrait et de basculement vers la couche d'exécution Couplée à la mise à jour Capella, cette mise à jour permet aux blocs d'accepter des opérations de retrait, permettant ainsi aux validateurs de retirer leur ETH de la chaîne phare et de le basculer vers la couche d'exécution.
@@ -49,13 +49,7 @@ La mise à jour Shanghai a ouvert la voie à des opérations de retrait et de ba
- [Lire les spécificités de la mise à jour Shanghai](https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/shanghai.md)
----
-
-### Capella {#capella}
-
-
-
-#### Résumé {#capella-summary}
+#### Résumé de Capella {#capella-summary}
La mise à jour Capella est la troisième mise à jour majeure vers la couche de consensus (Chaine phare). Elle a permis d'effectuer des retraits de mise en jeu. Capella est entrée en action en même temps que la mise à niveau de la couche d'exécution, Shanghai, et a activé la fonctionnalité de retrait de mise en jeu.
diff --git a/public/content/translations/fr/roadmap/beacon-chain/index.md b/public/content/translations/fr/roadmap/beacon-chain/index.md
index 9f1b49cb8c2..146cde12188 100644
--- a/public/content/translations/fr/roadmap/beacon-chain/index.md
+++ b/public/content/translations/fr/roadmap/beacon-chain/index.md
@@ -27,7 +27,7 @@ La chaîne Beacon est le nom donné au registre de comptes utilisé pour la cond
La Chaîne phare introduit la [preuve d'enjeu](/developers/docs/consensus-mechanisms/pos/) dans Ethereum. Cela permet de sécuriser Ethereum et pour les validateurs de gagner plus d'ETH au cours du processus. En pratique, le staking implique de miser des ETH pour activer le logiciel de validation. En tant que validateur, vous exécutez le logiciel qui créé et valide de nouveaux blocs dans la chaîne.
-La mise en jeu a un objectif similaire au [minage](/developers/docs/mining/), mais diffère à plusieurs titres. Le minage nécessitait d’importantes dépenses initiales sous la forme d’une puissante consommation en matériel et énergie, entraînant des économies d’échelle et promouvant la centralisation. Le minage n'impliquait pas non plus l'obligation de bloquer les actifs en tant que garantie, ce qui limite la capacité du protocole à punir les mauvais acteurs après une attaque.
+La mise en jeu a un objectif similaire au [minage](/developers/docs/consensus-mechanisms/pow/mining/), mais diffère à plusieurs titres. Le minage nécessitait d’importantes dépenses initiales sous la forme d’une puissante consommation en matériel et énergie, entraînant des économies d’échelle et promouvant la centralisation. Le minage n'impliquait pas non plus l'obligation de bloquer les actifs en tant que garantie, ce qui limite la capacité du protocole à punir les mauvais acteurs après une attaque.
La transition vers la preuve d'enjeu a rendu Ethereum nettement plus sûr et décentralisé par comparaison avec la preuve de travail. Plus le nombre de participants sera élevé sur le réseau, plus celui-ci sera décentralisé et à l'abri des attaques.
diff --git a/public/content/translations/fr/roadmap/danksharding/index.md b/public/content/translations/fr/roadmap/danksharding/index.md
index f868614f064..1c64826e45e 100644
--- a/public/content/translations/fr/roadmap/danksharding/index.md
+++ b/public/content/translations/fr/roadmap/danksharding/index.md
@@ -15,7 +15,7 @@ Le **Danksharding** est la façon dont Ethereum devient une blockchain à grande
## Qu'est-ce que le Proto-Danksharding ? {#what-is-protodanksharding}
-Le Proto-Danksharding, également connu sous le nom d'[EIP-4844](https://eips.ethereum.org/EIPS/eip-4844), est une manière pour les [rollups](/layer2/#rollups) d'ajouter des données aux blocs, à moindre frais. Le nom provient des deux chercheurs qui ont proposé l'idée : Protolambda et Dankrad Feist. À l'heure actuelle, les rollups sont limités dans la mesure où ils peuvent effectuer des transactions utilisateur à moindre coût du fait qu'ils publient leurs transactions dans `CALDATA`. Cette solution est onéreuse car ces données sont traitées par l’ensemble des nœuds d’Ethereum et restent sur la blockchain pour toujours, même si les rollups n'ont besoin des données que pendant une courte période. Le Proto-Danksharding introduit des « blobs » de données qui peuvent être envoyés et ajoutés aux blocs. Les données dans ces « blobs » ne sont pas accessibles par l'EVM et sont automatiquement supprimées après une période fixe (de 1 à 3 mois). Cela signifie que les rollups peuvent envoyer leurs données à moindre frais et répercuter ces économies aux utilisateurs finaux sous forme de transactions moins onéreuses.
+Le Proto-Danksharding, également connu sous le nom d'[EIP-4844](https://eips.ethereum.org/EIPS/eip-4844), est une manière pour les [rollups](/layer-2/#rollups) d'ajouter des données aux blocs, à moindre frais. Le nom provient des deux chercheurs qui ont proposé l'idée : Protolambda et Dankrad Feist. À l'heure actuelle, les rollups sont limités dans la mesure où ils peuvent effectuer des transactions utilisateur à moindre coût du fait qu'ils publient leurs transactions dans `CALDATA`. Cette solution est onéreuse car ces données sont traitées par l’ensemble des nœuds d’Ethereum et restent sur la blockchain pour toujours, même si les rollups n'ont besoin des données que pendant une courte période. Le Proto-Danksharding introduit des « blobs » de données qui peuvent être envoyés et ajoutés aux blocs. Les données dans ces « blobs » ne sont pas accessibles par l'EVM et sont automatiquement supprimées après une période fixe (de 1 à 3 mois). Cela signifie que les rollups peuvent envoyer leurs données à moindre frais et répercuter ces économies aux utilisateurs finaux sous forme de transactions moins onéreuses.
diff --git a/public/content/translations/fr/roadmap/single-slot-finality/index.md b/public/content/translations/fr/roadmap/single-slot-finality/index.md
index c4ee30c87fd..ae46bdd68fe 100644
--- a/public/content/translations/fr/roadmap/single-slot-finality/index.md
+++ b/public/content/translations/fr/roadmap/single-slot-finality/index.md
@@ -58,7 +58,7 @@ Le problème avec l'évolutivité de l'agrégation en augmentant le nombre de va
## Progrès actuels {#current-progress}
-La Finalité à créneau unique (SSF) est en phase d'études. Celle-ci ne devrait pas être opérationnelle avant plusieurs années, probablement après que d'autres avancées substantielles aient été réalisées, telles que [l'Arbre de Verkle](/roadmap/verkle-trees/) et la [solution Danksharding](/roadmap/danksharding]).
+La Finalité à créneau unique (SSF) est en phase d'études. Celle-ci ne devrait pas être opérationnelle avant plusieurs années, probablement après que d'autres avancées substantielles aient été réalisées, telles que [l'Arbre de Verkle](/roadmap/verkle-trees/) et la [solution Danksharding](/roadmap/danksharding/).
## Complément d'information {#further-reading}
diff --git a/public/content/translations/fr/security/index.md b/public/content/translations/fr/security/index.md
index 2e9acd71b3e..6172d6a1ff8 100644
--- a/public/content/translations/fr/security/index.md
+++ b/public/content/translations/fr/security/index.md
@@ -104,7 +104,7 @@ Les extensions de navigateur comme les extensions Chrome ou les modules complém
L'une des principales raisons pour lesquelles les gens se font arnaquer dans l'univers des cryptomonnaies est souvent le manque de compréhension. Par exemple, si vous ne comprenez pas que le réseau Ethereum est décentralisé et n'appartient à personne, il est facile de devenir la cible de quelqu'un qui prétend faire partie de l'équipe de support et qui vous promet de vous rendre vos ETH perdus en échange de vos clés privées. S'informer sur le fonctionnement d'Ethereum est un investissement qui en vaut la peine.
- Qu'est-ce qu'Ethereum ?
+ Qu'est-ce qu'Ethereum ?
diff --git a/public/content/translations/fr/smart-contracts/index.md b/public/content/translations/fr/smart-contracts/index.md
index abb6c00b245..f0d00aafe26 100644
--- a/public/content/translations/fr/smart-contracts/index.md
+++ b/public/content/translations/fr/smart-contracts/index.md
@@ -65,7 +65,7 @@ Ils peuvent effectuer des calculs, produire de la monnaie, stocker des données,
- [Stablecoins](/stablecoins/)
- [Création et distribution d'actifs numériques uniques](/nft/)
- [Plateforme d'échange ouverte et automatisée](/get-eth/#dex)
-- [Jeu décentralisé](/dapps/?category=gaming)
+- [Jeu décentralisé](/dapps/?category=gaming#explore)
- [Police d'assurance qui paie automatiquement](https://etherisc.com/)
- [Norme qui permet aux gens de créer des devises personnalisées et interopérables](/developers/docs/standards/tokens/)
diff --git a/public/content/translations/fr/zero-knowledge-proofs/index.md b/public/content/translations/fr/zero-knowledge-proofs/index.md
index faf22b6fd6f..0ffe42025cb 100644
--- a/public/content/translations/fr/zero-knowledge-proofs/index.md
+++ b/public/content/translations/fr/zero-knowledge-proofs/index.md
@@ -4,7 +4,7 @@ description: Une introduction non technique aux preuves à divulgation nulle de
lang: fr
---
-## Que sont les preuves à divulgation nulle de connaissance ? {#what-are-zk-proofs}
+# Que sont les preuves à divulgation nulle de connaissance ? {#what-are-zk-proofs}
Une preuve à divulgation nulle est un moyen de prouver la validité d'une information sans révéler l'information elle-même. Le « prouveur » est la partie qui tente de prouver une affirmation, tandis que le « vérificateur » est responsable de la validation de l'affirmation.
diff --git a/public/content/translations/hi/decentralized-identity/index.md b/public/content/translations/hi/decentralized-identity/index.md
index 12e5ff7b4dc..e5ea1acd33f 100644
--- a/public/content/translations/hi/decentralized-identity/index.md
+++ b/public/content/translations/hi/decentralized-identity/index.md
@@ -49,7 +49,7 @@ summaryPoint3: क्रिप्टो को धन्यवाद, उपय
## विकेन्द्रीकृत पहचानकर्ताओं को संभाव बनाने वाला क्या है? {#what-makes-decentralized-identifiers-possible}
-### १ सार्वजनिक कुंजी इन्फ्रास्ट्रक्चर (PKI) {#public-key-infrastructure}
+### १ सार्वजनिक कुंजी इन्फ्रास्ट्रक्चर (PKI) {#public-key-cryptography}
सार्वजनिक-कुंजी इन्फ्रास्ट्रक्चर (PKI) एक जानकारी सुरक्षा उपाय है, जो किसी इकाई के लिए एक [सार्वजनिक कुंजी](/glossary/#public-key) और [निजी कुंजी](/glossary/#private-key) उत्पन्न करता है। सार्वजनिक-कुंजी क्रिप्टोग्राफी को ब्लॉकचेन नेटवर्क में उपयोग किया जाता है, ताकि उपयोगकर्ता पहचानों की पुष्टि की जा सके और डिजिटल संपत्ति के स्वामित्व को साबित किया जा सके।
diff --git a/public/content/translations/hi/defi/index.md b/public/content/translations/hi/defi/index.md
index 25bef9d2b9d..34cc49ed147 100644
--- a/public/content/translations/hi/defi/index.md
+++ b/public/content/translations/hi/defi/index.md
@@ -47,7 +47,7 @@ DeFi की क्षमता को देखने का एक सबसे
| बाजार हमेशा खुले रहते हैं। | बाजार बंद हैं क्योंकि कर्मचारियों को ब्रेक की जरूरत है। |
| यह पारदर्शिता पर आधारित है – कोई भी उत्पाद के डेटा को देख सकता है और निरीक्षण कर सकता है कि सिस्टम कैसे काम करता है। | वित्तीय संस्थान बंद किताबें हैं: आप उनके ऋण इतिहास, उनकी प्रबंधित संपत्तियों का रिकॉर्ड इत्यादि देखने के लिए नहीं कह सकते। |
-
+
DeFi ऐप्स खोजें
@@ -65,7 +65,7 @@ DeFi की क्षमता को देखने का एक सबसे
अगर आप इथेरियम में नए हैं, तो DeFi एप्लिकेशन्स के लिए हमारे सुझावों का अन्वेषण करें।
-
+
DeFi ऐप्स खोजें
@@ -92,7 +92,7 @@ DeFi की क्षमता को देखने का एक सबसे
एक ब्लॉकचेन के रूप में, इथेरियम को सुरक्षित और वैश्विक तरीके से लेन-देन भेजने के लिए डिज़ाइन किया गया है। बिटकॉइन की तरह, इथेरियम भी विश्वभर में पैसे भेजने को एक ईमेल भेजने की तरह आसान बनाता है। आपके प्राप्तकर्ता के [ENS नाम](/nft/#nft-domains) (जैसे bob.eth) या अपने वॉलेट से उनका खाता पता दर्ज करें और आपका भुगतान कुछ मिनटों में (आमतौर पर) सीधे उनके पास जाएगा। भुगतान भेजने या प्राप्त करने के लिए, आपको एक [वॉलेट](/wallets/) की आवश्यकता होगी।
-
+
भुगतान संबंधित dapps देखें
@@ -123,7 +123,7 @@ DeFi की क्षमता को देखने का एक सबसे
- पीयर-टू-पीयर, यानी एक उधारकर्ता सीधे एक विशिष्ट उधारदाता से मुद्रा उधार लेगा।
- पूल-आधारित, जहां ऋणदाता पूल में निधियाँ (लिक्विडिटी) प्रदान करते हैं, जिससे उधारकर्ता उधार ले सकते हैं।
-
+
उधार लेने वाले dapps देखें
@@ -183,7 +183,7 @@ DeFi की क्षमता को देखने का एक सबसे
- ब्याज दरों के आधार पर आपका aDai बढ़ेगा और आप अपने वॉलेट में अपना बैलेंस बढ़ता हुआ देख सकते हैं। एपीआर पर निर्भर करते हुए, आपके वॉलेट का बैलेंस कुछ दिनों या घंटों के बाद 100.1234 ऐसा कुछ दिखाई देगा!
- आप किसी भी समय नियमित Dai की राशि निकाल सकते हैं जो आपके aDai बैलेंस के बराबर है।
-
+
लेनदेन वाले dapps देखें
@@ -211,7 +211,7 @@ PoolTogether जैसी नो-लॉस लॉटरी पैसे बच
उदाहरण के लिए, अगर आप नो-लॉस लॉटरी PoolTogether (ऊपर वर्णित) का उपयोग करना चाहते हैं, तो आपको Dai या USDC जैसे टोकन की आवश्यकता होगी। ये DEX आपको अपने ETH को उन टोकन के लिए स्वैप करने और काम पूरा होने पर फिर से वापस करने की अनुमति देते हैं।
-
+
टोकन एक्सचेंजेस देखें
@@ -223,7 +223,7 @@ PoolTogether जैसी नो-लॉस लॉटरी पैसे बच
जब आप एक केंद्रीकृत एक्सचेंज का उपयोग करते हैं तो आपको व्यापार से पहले अपनी संपत्ति जमा करनी होगी और उनकी देखभाल करने के लिए केंद्रीकृत एक्सचेंज पर भरोसा करना होगा। जब आपकी संपत्ति जमा की जाती है, वे जोखिम में हैं क्योंकि केंद्रीकृत एक्सचेंज हैकर्स के लिए आकर्षक लक्ष्य हैं।
-
+
ट्रेडिंग dapps देखें
@@ -235,7 +235,7 @@ PoolTogether जैसी नो-लॉस लॉटरी पैसे बच
एक अच्छा उदाहरण [DeFi पल्स इंडेक्स फंड (DPI) है](https://defipulse.com/blog/defi-pulse-index/)। यह एक ऐसा फंड है जो यह सुनिश्चित करने के लिए स्वचालित रूप से पुनर्संतुलन करता है कि आपके पोर्टफोलियो में हमेशा [बाजार पूंजीकरण द्वारा शीर्ष DeFi टोकन](https://www.coingecko.com/en/defi) शामिल हों। आपको कभी भी किसी भी विवरण का प्रबंधन नहीं करना पड़ता है और आप जब चाहें फंड से निकाल सकते हैं।
-
+
निवेश के dapps देखें।
@@ -249,7 +249,7 @@ PoolTogether जैसी नो-लॉस लॉटरी पैसे बच
- यह पारदर्शी है ताकि धन जुटाने वाले साबित कर सकें कि कितना धन जुटाया गया है। आप यह भी पता लगा सकते हैं कि बाद में धन कैसे खर्च किया जा रहा है।
- फंड जुटाने वाले स्वचालित रिफंड सेट कर सकते हैं, उदाहरण के लिए, एक विशिष्ट समय सीमा और न्यूनतम राशि जो पूरी नहीं होती है।
-
+
क्राउडफंडिंग dapps देखें
@@ -276,7 +276,7 @@ Quadratic funding makes sure that the projects that receive the most funding are
इथेरियम उत्पाद, किसी भी सॉफ्टवेयर की तरह, सॉफ्टवेयर बग और शोषण से पीड़ित हो सकते हैं। इसलिए अभी इस क्षेत्र में बहुत सारे बीमा उत्पाद अपने उपयोगकर्ताओं को धन के नुकसान से बचाने पर ध्यान केंद्रित करते हैं। हालांकि, ऐसी परियोजनाएं हैं जो जीवन में सब कुछ के लिए कवरेज का निर्माण करना शुरू कर रही हैं। इसका एक अच्छा उदाहरण Etherisc का फसल कवर है जिसका उद्देश्य सूखे और बाढ़ के खिलाफ [केन्या में छोटे किसानों की रक्षा](https://blog.etherisc.com/etherisc-teams-up-with-chainlink-to-deliver-crop-insurance-in-kenya-137e433c29dc) करना है। विकेन्द्रीकृत बीमा उन किसानों के लिए सस्ता कवर प्रदान कर सकता है जिनकी कीमत अक्सर बीमा से बाहर होती है।
-
+
dapps बीमा देखें
@@ -286,7 +286,7 @@ Quadratic funding makes sure that the projects that receive the most funding are
इतना कुछ होने के साथ, आपको अपने सभी निवेशों, ऋणों और ट्रेडों पर नज़र रखने का एक तरीका चाहिए। ऐसे कई उत्पाद हैं जो आपको एक ही स्थान से अपनी सभी DeFi गतिविधि का समन्वय करने देते हैं। यह DeFi की खुली वास्तुकला की सुंदरता है। टीम इंटरफेस का निर्माण कर सकती है जहां आप न केवल उत्पादों में अपना संतुलन देख सकते हैं, आप उनकी सुविधाओं का भी उपयोग कर सकते हैं। जैसा कि आप DeFi के बारे में अधिक पता लगाते हैं, आपको यह उपयोगी लग सकता है।
-
+
पोर्टफोलियो dapps देखें
diff --git a/public/content/translations/hi/desci/index.md b/public/content/translations/hi/desci/index.md
index 2051987d80b..6933716a6cd 100644
--- a/public/content/translations/hi/desci/index.md
+++ b/public/content/translations/hi/desci/index.md
@@ -68,7 +68,7 @@ DeSci Web2 शिक्षा जगत को डिजिटल दुनि
अध्ययनों से पता चला है कि अनुदान समीक्षा पैनल उच्च गुणवत्ता वाले प्रस्तावों का चयन करने का खराब काम करते हैं क्योंकि विभिन्न पैनलों को दिए गए एक ही प्रस्ताव के बेतहाशा अलग-अलग परिणाम होते हैं। चूंकि फंडिंग अधिक दुर्लभ हो गई है, इसलिए यह अधिक बौद्धिक रूप से रूढ़िवादी परियोजनाओं के साथ अधिक वरिष्ठ शोधकर्ताओं के एक छोटे पूल में केंद्रित हो गया है। इस प्रभाव ने एक अति-प्रतिस्पर्धी वित्त पोषण परिदृश्य बनाया है, विकृत प्रोत्साहनों को कम कर दिया है और नवाचार को रोक दिया है।
-Web3 में DAO और Web3 द्वारा विकसित विभिन्न प्रोत्साहन मॉडल के साथ प्रयोग करके इस टूटे हुए फंडिंग मॉडल को बाधित करने की क्षमता है। [रेट्रोएक्टिव पब्लिक गुड फंडिंग](https://medium.com/ethereum-optimism/retroactive-public-goods-funding-33c9b7d00f0c), [द्विघात वित्त पोषण](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2003531), [DAO शासन](https://www.antler.co/blog/daos-and-web3-governance) और [टोकन प्रोत्साहन संरचनाएं](https://cdixon.org/2017/05/27/crypto-tokens-a-breakthrough-in-open-network-design) Web3 टूल में से कुछ हैं जो विज्ञान वित्त पोषण में क्रांति ला सकती हैं।
+Web3 में DAO और Web3 द्वारा विकसित विभिन्न प्रोत्साहन मॉडल के साथ प्रयोग करके इस टूटे हुए फंडिंग मॉडल को बाधित करने की क्षमता है। [रेट्रोएक्टिव पब्लिक गुड फंडिंग](https://medium.com/ethereum-optimism/retroactive-public-goods-funding-33c9b7d00f0c), [द्विघात वित्त पोषण](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2003531), [DAO शासन](https://www.antler.co/blog/daos-and-web3-governance-the-promise-implications-and-challenges-ahead) और [टोकन प्रोत्साहन संरचनाएं](https://cdixon.org/2017/05/27/crypto-tokens-a-breakthrough-in-open-network-design) Web3 टूल में से कुछ हैं जो विज्ञान वित्त पोषण में क्रांति ला सकती हैं।
### IP स्वामित्व और विकास {#ip-ownership}
diff --git a/public/content/translations/hi/roadmap/beacon-chain/index.md b/public/content/translations/hi/roadmap/beacon-chain/index.md
index 99181a16beb..b086ae0241d 100644
--- a/public/content/translations/hi/roadmap/beacon-chain/index.md
+++ b/public/content/translations/hi/roadmap/beacon-chain/index.md
@@ -32,7 +32,7 @@ summaryPoint3: बीकन चेन ने सहमति तर्क और
बीकन चेन ने एथेरियम के लिए [हिस्सेदारी का सबूत](/developers/docs/consensus-mechanisms/pos/) की शुरुआत की। यह एथेरियम को सुरक्षित रखता है और इस प्रोसेस में सत्यापनकर्ता ज़्यादा ETH अर्जित करते हैं। व्यवहार में, स्टेकिंग, सत्यापनकर्ता सॉफ़्टवेयर को सक्रिय करने के लिए स्टेकिंग ETH शामिल करता है। एक स्टेकर के तौर पर, आप उस सॉफ़्टवेयर को चलाते हैं जो चेन में नए ब्लॉक बनाता और मान्य करता है।
-स्टेकिंग उसी तरह के उद्देश्य को पूरा करता है जिसका इस्तेमाल [माईनिंग](/Developers/docs/mining/) में किया जाता है, लेकिन यह कई मायनों में अलग है। माईनिंग के लिए शक्तिशाली हार्डवेयर और ऊर्जा खपत के रूप में बड़े अग्रिम व्यय की आवश्यकता होती है, जिसके परिणामस्वरूप बड़े व्यय (बड़ी आर्थिक इकाई) और केंद्रीकरण को बढ़ावा मिलता है। माईनिंग भी एसेट को आनुषंगिक के रूप में बंद करने की आवश्यकता के साथ नहीं आया, बल्कि इसका उद्देश्य हमले के बाद बुरे लोगों को दंडित करने की प्रोटोकॉल की क्षमता को सीमित करना है।
+स्टेकिंग उसी तरह के उद्देश्य को पूरा करता है जिसका इस्तेमाल [माईनिंग](/developers/docs/consensus-mechanisms/pow/mining/) में किया जाता है, लेकिन यह कई मायनों में अलग है। माईनिंग के लिए शक्तिशाली हार्डवेयर और ऊर्जा खपत के रूप में बड़े अग्रिम व्यय की आवश्यकता होती है, जिसके परिणामस्वरूप बड़े व्यय (बड़ी आर्थिक इकाई) और केंद्रीकरण को बढ़ावा मिलता है। माईनिंग भी एसेट को आनुषंगिक के रूप में बंद करने की आवश्यकता के साथ नहीं आया, बल्कि इसका उद्देश्य हमले के बाद बुरे लोगों को दंडित करने की प्रोटोकॉल की क्षमता को सीमित करना है।
हिस्सेदारी के सबूत में बदलाव ने एथेरियम को काम के सबूत की तुलना में बहुत ज़्यादा सुरक्षित और विकेंद्रीकृत बना दिया। जितने अधिक लोग नेटवर्क में भाग लेंगे, हमले से यह उतना ही अधिक विकेंद्रीकृत और सुरक्षित होगा।
diff --git a/public/content/translations/hi/roadmap/merge/index.md b/public/content/translations/hi/roadmap/merge/index.md
index 725361016e7..92de9ce0d25 100644
--- a/public/content/translations/hi/roadmap/merge/index.md
+++ b/public/content/translations/hi/roadmap/merge/index.md
@@ -100,7 +100,7 @@ id="developers">
- ऑन-चेन रैंडमनेस के स्रोत
- _सुरक्षित शीर्ष_ और _अंतिम रूप दिए गए ब्लॉक_ की अवधारणा
-अधिक जानकारी के लिए, टिम बीको के इस ब्लॉग पोस्ट को देखें [एथेरियम के एप्लिकेशन को मर्ज कैसे प्रभावित करता है] (https://blog.ethereum.org/2021/11/29/how-the-merge-impacts-app-layer/)।
+अधिक जानकारी के लिए, टिम बीको के इस ब्लॉग पोस्ट को देखें [एथेरियम के एप्लिकेशन को मर्ज कैसे प्रभावित करता है](https://blog.ethereum.org/2021/11/29/how-the-merge-impacts-app-layer/)।
## मर्ज और ऊर्जा की खपत {#merge-and-energy}
@@ -135,7 +135,7 @@ title="ग़लत धारणा: "मर्ज गैस शुल्
contentPreview="False. The Merge was a change of consensus mechanism, not an expansion of network capacity, and was never intended to lower gas fees.">
गैस शुल्क नेटवर्क की क्षमता के सापेक्ष नेटवर्क की माँग का एक उत्पाद है। मर्ज ने काम का सबूत के उपयोग को हटा दिया, सहमति के लिए हिस्सेदारी का सबूत में बदल गया, लेकिन नेटवर्क क्षमता या थ्रूपुट को सीधे प्रभावित करने वाले किसी भी पैरामीटर को महत्वपूर्ण रूप से नहीं बदला।
-[रोलअप-केंद्रित रोडमैप](https://ethereum-magicians.org/t/a-rollup-centric-ethereum-roadmap/4698) के साथ, [परत 2](/परत-2/) पर उपयोगकर्ता गतिविधि को बढ़ाने पर ध्यान केंद्रित किया जा रहा है, परत 1 मेननेट को एक सुरक्षित विकेंद्रीत सेटमलमेंट परत के रूप में सक्षम करते हुए रोलअप डेटा स्टोरेज के लिए अनुकूलित किया गया है, ताकि रोलअप लेनदेन को तेज़ी से किफ़ायती बनाया जा सके। इसे समझने के लिए हिस्सेदारी के सबूत में ट्रांज़िशन की महत्वपूर्ण भूमिका होती है। [गैस और फीस के बारे में और जानकारी।](/डेवलपर/दस्तावेज़/गैस/)
+[रोलअप-केंद्रित रोडमैप](https://ethereum-magicians.org/t/a-rollup-centric-ethereum-roadmap/4698) के साथ, [परत 2](/layer-2/) पर उपयोगकर्ता गतिविधि को बढ़ाने पर ध्यान केंद्रित किया जा रहा है, परत 1 मेननेट को एक सुरक्षित विकेंद्रीत सेटमलमेंट परत के रूप में सक्षम करते हुए रोलअप डेटा स्टोरेज के लिए अनुकूलित किया गया है, ताकि रोलअप लेनदेन को तेज़ी से किफ़ायती बनाया जा सके। इसे समझने के लिए हिस्सेदारी के सबूत में ट्रांज़िशन की महत्वपूर्ण भूमिका होती है। [गैस और फीस के बारे में और जानकारी।](/developers/docs/gas/)
+
Fedezze fel a DeFi alkalmazásokat
@@ -65,7 +65,7 @@ Ez furcsán hangzik... „miért akarnám programozni a pénzemet”? Ez azonban
Tekintse át azokat a DeFi alkalmazásokat, melyeket kipróbálásra javaslunk, amennyiben Ön most ismerkedik az Ethereummal.
-
+
Fedezze fel a DeFi alkalmazásokat
@@ -92,7 +92,7 @@ A legtöbb pénzügyi szolgáltatásnak létezik decentralizált alternatívája
Az Ethereum-blokklánc úgy van kialakítva, hogy biztonságosan és globálisan kezeljen tranzakciókat. A Bitcoinhoz hasonlóan az Ethereumon is olyan könnyen lehet pénzt utalni, akár egy e-mailt elküldeni. Csak írja be a fogadó fél [ENS-nevét](/nft/#nft-domains) (például bob.eth) vagy számlacímét a tárcájában, és az utalás közvetlenül megérkezik hozzá általában percek alatt. Az utalások küldéséhez vagy fogadásához szükség van egy [tárcára](/wallets/).
-
+
Tovább a fizetési dappokhoz
@@ -123,7 +123,7 @@ A kölcsönfelvétel a decentralizált szolgáltatóktól kétféle módon való
- Peer-to-peer (P2P), amikor a kölcsön felvevője közvetlenül egy meghatározott kölcsönadótól kap pénzt.
- Gyűjtőszámlás (pool), amikor a kölcsönadó pénzeszközt biztosít (likviditás) a gyűjtőszámlának, amelytől a kölcsönvevők pénzt tudnak szerezni.
-
+
Tovább a kölcsönfelvételi dappokhoz
@@ -183,7 +183,7 @@ A rendelkezésére álló kriptovaluta kölcsönadásával kamatot kaphat, így
- Az aDai növekedni fog a kamatráta alapján, így Ön láthatja, ahogy az egyenlege növekszik a tárcájában. Az éves ráta (APR) függvényében az Ön tárcaegyenlege akár néhány napon vagy órán belül már 100,1234 összeget mutathat!
- Bármikor visszavonhat bármekkora Dai összeget, ami megegyezik az Ön aDai egyenlegével.
-
+
Tovább a kölcsönadási dappokhoz
@@ -211,7 +211,7 @@ Az Ethereumon ezernyi token elérhető. A decentralizált tőzsdék (DEX) lehet
Például, ha Ön szeretné használni a veszteség nélküli lottózást, a PoolTogether-t (ahogy fentebb írtuk), szüksége lesz Dai vagy USDC tokenre. A decentralizált tőzsdén átválthatja a kívánt ETH-összeget ezekre a tokenekre, majd vissza, amikor végzett az ügylettel.
-
+
Tovább a tokenes tőzsdékre
@@ -223,7 +223,7 @@ Haladóbb lehetőségek is rendelkezésre állnak azoknak a kereskedőknek, akik
A centralizált tőzsdéken ehhez képest letétbe kell helyezni az eszközöket a kereskedés előtt, és meg kell bízni bennük, hogy azt megfelelően kezelik. Miközben az eszköz letétben van náluk, nincs biztonságban, mert a centralizált tőzsdék a hackerek kedvelt célpontjai.
-
+
Tovább a kereskedő dappokhoz
@@ -235,7 +235,7 @@ Az Ethereumon találhatók olyan alapkezelő termékek, melyek az Ön által vá
Egy jó példa erre a [DeFi Pulse Index fund (DPI)](https://defipulse.com/blog/defi-pulse-index/). Ez az alap automatikusan kiigazítja az Ön portfólióját, hogy az állandóan [a legjobb DeFi-tokeneket tartalmazza az aktuális piaci értékük alapján](https://www.coingecko.com/en/defi). Önnek nem kell foglalkoznia a részletekkel, és bármikor visszavonhatja pénzeszközeit az alapból.
-
+
Tovább a befektetési dappokhoz
@@ -249,7 +249,7 @@ Az Ethereum egy tökéletes platform arra, hogy a közösség segítségével fi
- Átlátható, így az adománygyűjtők igazolni tudják, hogy mennyi pénz jött össze. Azt is nyomon lehet követni, hogy a pénz hogyan lett elköltve.
- Az adománygyűjtők automatikus visszatérítést is be tudnak állítani, például ha egy adott határidőre nem jön össze a minimális összeg.
-
+
Tovább a közösségi finanszírozás dappokhoz
@@ -276,7 +276,7 @@ A decentralizált biztosítások célja, hogy azok olcsóbbak, sokkal átláthat
Az Ethereum termékei, mint bármelyik szoftver, tartalmazhatnak hibákat és sebezhető pontokat. Emiatt jelenleg sok biztosítási megoldás a felhasználók eszközeinek elvesztése ellen ad védelmet. Ugyanakkor vannak olyan projektek, melyek elkezdtek kialakítani az élet többi eseményére vonatkozóan is biztosításokat. Egy jó példa erre az Etherisc's Crop biztosítása, melynek célja [a kisméretű, kenyai gazdálkodók védelme az aszály és az árvíz ellen](https://blog.etherisc.com/etherisc-teams-up-with-chainlink-to-deliver-crop-insurance-in-kenya-137e433c29dc). A decentralizált biztosítás olcsóbb megoldást tud kínálni a gazdálkodóknak, akiknek a hagyományos biztosítók általában megfizethetetlenek.
-
+
Tovább a biztosítási dappokhoz
@@ -286,7 +286,7 @@ Az Ethereum termékei, mint bármelyik szoftver, tartalmazhatnak hibákat és se
Amikor ennyi minden zajlik, Önnek is szüksége lehet egy olyan megoldásra, mellyel a befektetéseit, kölcsöneit és kereskedéseit figyelemmel követheti. Rengeteg olyan termék elérhető, melyekkel egyetlen helyről tudja az összes DeFi tevékenységét koordinálni. Ez a DeFi nyílt architektúrájának szépsége. A csapatok olyan interface-eket építenek, melyekkel nemcsak az összes termék kapcsán láthatja az egyenlegét, hanem használhatja azok tulajdonságait is. Amint Ön is jobban elmélyül a DeFi világában, hasznosnak fogja ezt találni.
-
+
Tovább a portfóliós dappokhoz
diff --git a/public/content/translations/hu/desci/index.md b/public/content/translations/hu/desci/index.md
index fcd2ead7e1e..9243ce4401e 100644
--- a/public/content/translations/hu/desci/index.md
+++ b/public/content/translations/hu/desci/index.md
@@ -68,7 +68,7 @@ A jelenlegi elterjedt modell a tudományos tevékenységek finanszírozására a
Az elemzések kimutatták, hogy ezek a bizottságok kvázi alkalmatlanok arra, hogy kiválasszák a jó minőségű jelentkezéseket, mivel ugyanazt a jelentkezést más-más bizottságok teljesen másképpen ítélik meg. Mivel a finanszírozási keretek szűkösek, ezért a tudományos tevékenység az idősebb kutatók kis csoportjára szűkül le, akik konzervatívabb projekteken dolgoznak. Ennek következtében egy szélsőségesen versenyző finanszírozási helyzet alakult ki, mely torz ösztönzésekkel és fullasztó innovációkkal jár.
-A web3 képes arra, hogy megbontsa ezt a megtört, torz finanszírozási modellt azáltal, hogy különféle ösztönzési módszereket tud alkalmazni, melyeket a DAO-k és a web3 résztvevők már széles körben alkalmaznak. [A retroaktív közjó-finanszírozás](https://medium.com/ethereum-optimism/retroactive-public-goods-funding-33c9b7d00f0c), [a kvadratikus finanszírozás](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2003531), [a DAO-k általi irányítás](https://www.antler.co/blog/daos-and-web3-governance) és [a tokenizált ösztönzési struktúrák](https://cdixon.org/2017/05/27/crypto-tokens-a-breakthrough-in-open-network-design) csak néhány web3-eszköz, melyek forradalmasítani tudnák a tudományos finanszírozás világát.
+A web3 képes arra, hogy megbontsa ezt a megtört, torz finanszírozási modellt azáltal, hogy különféle ösztönzési módszereket tud alkalmazni, melyeket a DAO-k és a web3 résztvevők már széles körben alkalmaznak. [A retroaktív közjó-finanszírozás](https://medium.com/ethereum-optimism/retroactive-public-goods-funding-33c9b7d00f0c), [a kvadratikus finanszírozás](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2003531), [a DAO-k általi irányítás](https://www.antler.co/blog/daos-and-web3-governance-the-promise-implications-and-challenges-ahead) és [a tokenizált ösztönzési struktúrák](https://cdixon.org/2017/05/27/crypto-tokens-a-breakthrough-in-open-network-design) csak néhány web3-eszköz, melyek forradalmasítani tudnák a tudományos finanszírozás világát.
### A szellemi tulajdon (IP) birtoklása és fejlesztése {#ip-ownership}
diff --git a/public/content/translations/hu/developers/docs/consensus-mechanisms/pos/attack-and-defense/index.md b/public/content/translations/hu/developers/docs/consensus-mechanisms/pos/attack-and-defense/index.md
index 2eb0c36a410..4d5df77fc35 100644
--- a/public/content/translations/hu/developers/docs/consensus-mechanisms/pos/attack-and-defense/index.md
+++ b/public/content/translations/hu/developers/docs/consensus-mechanisms/pos/attack-and-defense/index.md
@@ -8,7 +8,7 @@ A tolvajok és szabotőrök folyamatosan keresik a lehetőséget, hogy megtámad
## Előfeltételek {#prerequisites}
-A [proof-of-stake](/developers/docs/consensus-mechanisms/pos/) alapszintű ismerete szükséges. Hasznos lesz továbbá, ha alapszintű ismeretekkel rendelkezel az Ethereum [ösztönzési réteg](/developers/docs/docs/consensus-mechanisms/pos/rewards-and-penalties) és az elágazásválasztási algoritmus, [LMD-GHOST](/developers/docs/consensus-mechanisms/pos/gasper) működéséről.
+A [proof-of-stake](/developers/docs/consensus-mechanisms/pos/) alapszintű ismerete szükséges. Hasznos lesz továbbá, ha alapszintű ismeretekkel rendelkezel az Ethereum [ösztönzési réteg](/developers/docs/consensus-mechanisms/pos/rewards-and-penalties) és az elágazásválasztási algoritmus, [LMD-GHOST](/developers/docs/consensus-mechanisms/pos/gasper) működéséről.
## Mit akarnak a támadók? {#what-do-attackers-want}
diff --git a/public/content/translations/hu/developers/docs/consensus-mechanisms/pow/mining/index.md b/public/content/translations/hu/developers/docs/consensus-mechanisms/pow/mining/index.md
index a99e02880f4..25a55adfa59 100644
--- a/public/content/translations/hu/developers/docs/consensus-mechanisms/pow/mining/index.md
+++ b/public/content/translations/hu/developers/docs/consensus-mechanisms/pow/mining/index.md
@@ -70,9 +70,9 @@ Tekintse meg, ahogy Austin elmagyarázza a bányászatot és a proof-of-work blo
## A bányászati algoritmus {#mining-algorithm}
-Az Ethereum főhálózat csak egy bányászati algoritmust használt: [Ethash](/developers/docs/consensus-mechanisms/pow/mining-algorithms/ethash/). Az Ethash volt az utódja az eredeti kutatási-fejlesztési algoritmusnak, melyet [Dagger-Hashimoto-nak](/developers/docs/consensus-mechanisms/pow/mining-algorithms/dagger-hashimoto/) neveztek.
+Az Ethereum főhálózat csak egy bányászati algoritmust használt: [Ethash](/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/ethash/). Az Ethash volt az utódja az eredeti kutatási-fejlesztési algoritmusnak, melyet [Dagger-Hashimoto-nak](/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/dagger-hashimoto/) neveztek.
-[Bővebben a bányászati algoritmusokról](/developers/docs/consensus-mechanisms/pow/mining-algorithms/).
+[Bővebben a bányászati algoritmusokról](/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/).
## Kapcsolódó témák {#related-topics}
diff --git a/public/content/translations/hu/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/dagger-hashimoto/index.md b/public/content/translations/hu/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/dagger-hashimoto/index.md
index 90bd1a8137d..fb45ba79cee 100644
--- a/public/content/translations/hu/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/dagger-hashimoto/index.md
+++ b/public/content/translations/hu/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/dagger-hashimoto/index.md
@@ -4,7 +4,7 @@ description: A Dagger-Hashimoto algoritmus részletes áttekintése.
lang: hu
---
-A Dagger-Hashimoto volt az Ethereum bányászati algoritmusának eredeti fejlesztési implementációja és specifikációja. A Dagger-Hashimoto algoritmust az [Ethash](#ethash) váltotta le. A bányászatot teljesen kikapcsolták az [egyesítés (Merge)](/updates/merge) frissítés életbe lépésekor, 2022. szeptember 15-én. Azóta az Ethereumot a [proof-of-stake (letéti igazolás)](/developers/docs/consensus-mechanisms/pos) mechanizmusa biztosítja. Ez az oldal elavult témákat tartalmaz, amelyek többé már nem relevánsak az egyesítés (Merge) utáni Ethereummal kapcsolatban.
+A Dagger-Hashimoto volt az Ethereum bányászati algoritmusának eredeti fejlesztési implementációja és specifikációja. A Dagger-Hashimoto algoritmust az [Ethash](#ethash) váltotta le. A bányászatot teljesen kikapcsolták az [egyesítés (Merge)](/roadmap/merge/) frissítés életbe lépésekor, 2022. szeptember 15-én. Azóta az Ethereumot a [proof-of-stake (letéti igazolás)](/developers/docs/consensus-mechanisms/pos) mechanizmusa biztosítja. Ez az oldal elavult témákat tartalmaz, amelyek többé már nem relevánsak az egyesítés (Merge) utáni Ethereummal kapcsolatban.
## Előfeltételek {#prerequisites}
diff --git a/public/content/translations/hu/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/ethash/index.md b/public/content/translations/hu/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/ethash/index.md
index 3aad06ea2ba..c90daf5b6e1 100644
--- a/public/content/translations/hu/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/ethash/index.md
+++ b/public/content/translations/hu/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/ethash/index.md
@@ -8,7 +8,7 @@ lang: hu
Az Ethash volt az Ethereum proof-of-work (munkaigazolás) bányászati algoritmusa. A proof-of-work jelenleg **teljesen ki van kapcsolva**, az Ethereumot pedig a proof-of-stake mechanizmus biztosítja. Tudjon meg többet az egyesítés (Merge), proof-of-stake (letéti igazolás) és letétbe helyezés témákról. Ez az oldal elavult témákat tartalmaz!
-Az [Ethash](https://github.com/ethereum/wiki/wiki/Ethash) a [Dagger-Hashimoto](/developers/docs/consensus-mechanisms/pow/mining-algorithms/dagger-hashimoto) algoritmus egy módosított változata. Az Ethash proof-of-work egy [ memóriaigényes (memory hard)](https://wikipedia.org/wiki/Memory-hard_function) működés, ami miatt ez az algoritmus ASIC-ellenálló. Az Ethash ASIC-t végül kifejlesztették, de a GPU-bányászat még mindig működő opció volt addig, amíg a proof-of-work metódust ki nem kapcsolták. Az Ethasht még használják más érmék bányászatánál, nem Ethereumon és nem proof-of-work hálózatokon.
+Az [Ethash](https://github.com/ethereum/wiki/wiki/Ethash) a [Dagger-Hashimoto](/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/dagger-hashimoto) algoritmus egy módosított változata. Az Ethash proof-of-work egy [ memóriaigényes (memory hard)](https://wikipedia.org/wiki/Memory-hard_function) működés, ami miatt ez az algoritmus ASIC-ellenálló. Az Ethash ASIC-t végül kifejlesztették, de a GPU-bányászat még mindig működő opció volt addig, amíg a proof-of-work metódust ki nem kapcsolták. Az Ethasht még használják más érmék bányászatánál, nem Ethereumon és nem proof-of-work hálózatokon.
## Hogyan működik az Ethash? {#how-does-ethash-work}
diff --git a/public/content/translations/hu/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/index.md b/public/content/translations/hu/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/index.md
index bcba3173e15..153a248dc7b 100644
--- a/public/content/translations/hu/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/index.md
+++ b/public/content/translations/hu/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/index.md
@@ -24,13 +24,13 @@ A [Hashimoto](http://diyhpl.us/%7Ebryan/papers2/bitcoin/meh/hashimoto.pdf) egy o
A Dagger-Hashimoto a Dagger és a Hashimoto algoritmusok módosított változatát használta. A Dagger-Hashimoto és a Hashimoto között az a különbség, hogy nem blokkláncot használ adatforrásként, hanem egy személyre szabott adathalmazt, amely a blokkadatokból frissül minden N-edik blokknál. Az adathalmaz a Dagger-algoritmussal készült, amellyel hatékonyan lehetett minden nonce-ra egy alhalmazt kikalkulálni a könnyű kliens ellenőrzéshez. A Dagger-Hashimoto és a Dagger közötti különbség az, hogy a blokklekérdezéshez használt adathalmaz félig állandó, és esetileg frissítik (például hetente). Így az adathalmaz létrehozásának erőfeszítése nullához közelít, így a megosztott memória felgyorsításával kapcsolatos problémák (lásd Sergio Lerner) elhanyagolhatóvá váltak.
-Bővebben a [Dagger-Hashimoto-ról](/developers/docs/consensus-mechanisms/pow/mining-algorithms/dagger-hashimoto).
+Bővebben a [Dagger-Hashimoto-ról](/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/dagger-hashimoto).
## Ethash {#ethash}
Az Ethash az a bányászati algoritmus, melyet az Ethereum főhálózaton használtak a ma már kivezetett proof-of-work architektúrában. Az Ethash az új neve a Dagger-Hashimoto egy specifikus verziójának, mivel azt jelentősen megváltoztatták, de mégis megmaradtak az alapvető elvei az elődjének. Az Ethereum-főhálózat csak az Ethasht használta, mivel Dagger-Hashimoto a kutatás-fejlesztés idején működött, és még a bányászat megkezdése előtt lecserélték.
-[Bővebben az Ethashről](/developers/docs/consensus-mechanisms/pow/mining-algorithms/ethash).
+[Bővebben az Ethashről](/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/ethash).
## További olvasnivaló {#further-reading}
diff --git a/public/content/translations/hu/developers/docs/data-and-analytics/block-explorers/index.md b/public/content/translations/hu/developers/docs/data-and-analytics/block-explorers/index.md
index d6fa4c2cb17..b659b1b9913 100644
--- a/public/content/translations/hu/developers/docs/data-and-analytics/block-explorers/index.md
+++ b/public/content/translations/hu/developers/docs/data-and-analytics/block-explorers/index.md
@@ -16,15 +16,15 @@ Először meg kellene értened az Ethereum alapvető fogalmait ahhoz, hogy érte
- [Etherscan](https://etherscan.io/) –_ elérhető kínai, koreai, orosz és japán nyelven is_
- [Beaconcha.in](https://beaconcha.in/)
- [Blockchair](https://blockchair.com/ethereum) –_ Spanyol, francia, olasz, holland, portugál, orosz, kínai és fárszi nyelven is elérhető_
-- [Blockscout](https://blockscout.com/)
+- [Blockscout](https://eth.blockscout.com/)
+- [Chainlens](https://www.chainlens.com/)
+- [DexGuru Block Explorer](https://ethereum.dex.guru/)
- [Etherchain](https://www.etherchain.org/)
- [Ethplorer](https://ethplorer.io/) –_Kínai, spanyol, francia, török, orosz, koreai és vietnámi nyelven is elérhető_
+- [EthVM](https://www.ethvm.com/)
- [OKLink](https://www.oklink.com/eth)
- [Otterscan](https://otterscan.io/)
- [Rantom](https://rantom.app/)
-- [Sirato](https://www.web3labs.com/sirato)
-- [EthVM](https://www.ethvm.com/)
-- [DexGuru Block Explorer](https://ethereum.dex.guru/)
## Adat {#data}
diff --git a/public/content/translations/hu/developers/docs/networks/index.md b/public/content/translations/hu/developers/docs/networks/index.md
index c2d3a960b3c..96fe3088fb3 100644
--- a/public/content/translations/hu/developers/docs/networks/index.md
+++ b/public/content/translations/hu/developers/docs/networks/index.md
@@ -60,7 +60,6 @@ A két nyilvános teszthálózat, amelyet a kliens fejlesztők jelenleg fenntart
- [Alchemy Sepolia csap](https://sepoliafaucet.com/)
- [Infura Sepolia csap](https://www.infura.io/faucet)
- [Chainstack Sepolia csap](https://faucet.chainstack.com/sepolia-faucet)
-- [Testnet csap | Sepolia](https://testnet-faucet.com/sepolia/)
#### Goerli _(hosszútávú támogatás)_ {#goerli}
diff --git a/public/content/translations/hu/developers/docs/nodes-and-clients/index.md b/public/content/translations/hu/developers/docs/nodes-and-clients/index.md
index 60aadc3bb34..17d93b81389 100644
--- a/public/content/translations/hu/developers/docs/nodes-and-clients/index.md
+++ b/public/content/translations/hu/developers/docs/nodes-and-clients/index.md
@@ -225,5 +225,4 @@ Az interneten rengeteg utasítás és információ található az Ethereum klien
## Kapcsolódó útmutatók {#related-tutorials}
-- [Csomópont futtatása Geth-tel](/developers/tutorials/run-light-node-geth/) _– Hogyan lehet letölteni, telepíteni és futtatni a Geth-et. Lefedi a szinkronizációs módokat, a JavaScript konzolt és még sok mást._
- [Alakítsd át a Raspberry Pi 4-edet egy Eth 1.0 vagy egy Eth 2.0 csomóponttá csak a MicroSD kártya flashelésével - Telepítési útmutató](/developers/tutorials/run-node-raspberry-pi/) _– Flasheld a Raspberry Pi 4-et, csatlakoztass egy ethernet kábelt, csatlakoztasd az SSD-t, és kapcsold be az eszközt, hogy a Raspberry Pi 4 teljes Ethereum 1.0 vagy Ethereum 2.0 csomópontokká (beacon chain / validátor) váljon._
diff --git a/public/content/translations/hu/developers/docs/smart-contracts/testing/index.md b/public/content/translations/hu/developers/docs/smart-contracts/testing/index.md
index 9e8311cf2ce..a8334c9c076 100644
--- a/public/content/translations/hu/developers/docs/smart-contracts/testing/index.md
+++ b/public/content/translations/hu/developers/docs/smart-contracts/testing/index.md
@@ -37,7 +37,7 @@ incomplete: true
- [Solidity and Truffle Continuous Integration Setup](/developers/tutorials/solidity-and-truffle-continuous-integration-setup/) _– A Travis vagy a Circle CI telepítése a Truffle-höz, valamint hasznos tesztelési pluginok._
- [Testing products overview](/developers/tutorials/guide-to-smart-contract-security-tools/) _– A külöböző tesztelési termékek bemutatása és összehasonlítása._
- [Echinda használata okosszerződés teszteléshez](/developers/tutorials/how-to-use-echidna-to-test-smart-contracts/)
-- [A Manticore használata okosszerződés bugok felderítésére](/developers/tutorials/how-to-use-manticor-to-find-smart-contract-bugs/)
+- [A Manticore használata okosszerződés bugok felderítésére](/developers/tutorials/how-to-use-manticore-to-find-smart-contract-bugs/)
- [A Slither használata okosszerződés bugok felderítésére](/developers/tutorials/how-to-use-slither-to-find-smart-contract-bugs/)
- [Solidity szerződés mockup-ok teszteléshez](/developers/tutorials/how-to-mock-solidity-contracts-for-testing/)
- [Truffle Test migráció az OpenZeppelin Teszt környezetbe](https://docs.openzeppelin.com/test-environment/0.1/migrating-from-truffle)
diff --git a/public/content/translations/hu/developers/docs/standards/index.md b/public/content/translations/hu/developers/docs/standards/index.md
index 6ee59264e6f..6aac06d79f2 100644
--- a/public/content/translations/hu/developers/docs/standards/index.md
+++ b/public/content/translations/hu/developers/docs/standards/index.md
@@ -17,7 +17,7 @@ Az Ethereum közösség sok szabványt vezetett be, hogy a projektek (mint az [E
- [EIP vita fórum](https://ethereum-magicians.org/c/eips)
- [Ethereum Governance Overview](https://blog.bmannconsulting.com/ethereum-governance/) _March 31, 2019 - Boris Mann_
- [Ethereum Protocol Development Governance and Network Upgrade Coordination](https://hudsonjameson.com/2020-03-23-ethereum-protocol-development-governance-and-network-upgrade-coordination/) _March 23, 2020 - Hudson Jameson_
-- [Playlist of all Ethereum Core Dev Meetings](https://www.youtube.com/playlist?list=PLaM7G4Llrb7zfMXCZVEXEABT8OSnd4-7w) _(YouTube Playlist)_
+- [Playlist of all Ethereum Core Dev Meetings](https://www.youtube.com/@EthereumProtocol) _(YouTube Playlist)_
## Szabvány típusok {#types-of-standards}
diff --git a/public/content/translations/hu/developers/docs/standards/tokens/index.md b/public/content/translations/hu/developers/docs/standards/tokens/index.md
index 3b049014063..3d098c07e2d 100644
--- a/public/content/translations/hu/developers/docs/standards/tokens/index.md
+++ b/public/content/translations/hu/developers/docs/standards/tokens/index.md
@@ -29,5 +29,5 @@ _Ismersz olyan közösségi anyagot, amely segített neked? Módosítsd az oldal
- [Token integrációs checklista](/developers/tutorials/token-integration-checklist/) _– Egy checklista, melyet figyelembe kell venni tokenekkel történő interakcióknál_
- [Az ERC20 token okosszerződés megértése](/developers/tutorials/understand-the-erc-20-token-smart-contract/) _– Bevezetés az első okosszerződésed telepítésébe egy Ethereum teszt hálózaton._
-- [ERC20 tokenek átutalása és jóváhagyása egy Solidity okosszerződésből](/developers/tutorials/transfers-and-approval-of-erc20-tokens-from-a-solidity-smart-contract/) _– Egy okosszerződés használata token interakcióhoz a Solidity nyelv használatával._
+- [ERC20 tokenek átutalása és jóváhagyása egy Solidity okosszerződésből](/developers/tutorials/transfers-and-approval-of-erc-20-tokens-from-a-solidity-smart-contract/) _– Egy okosszerződés használata token interakcióhoz a Solidity nyelv használatával._
- [ERC721 piac implementáció [egy how-to segédleg]](/developers/tutorials/how-to-implement-an-erc721-market/) _– Hogyan lehet tokenizált tárgyakat eladásra kínálni egy decentralizált és titkosított felületen._
diff --git a/public/content/translations/hu/enterprise/index.md b/public/content/translations/hu/enterprise/index.md
index 2c5b3ab99e7..4de70219af7 100644
--- a/public/content/translations/hu/enterprise/index.md
+++ b/public/content/translations/hu/enterprise/index.md
@@ -51,7 +51,7 @@ Különféle szervezetek számtalan együttműködésen alapuló erőfeszítést
- A [Blast](https://blastapi.io/) _egy API platform, ami RPC/WSS API-okat biztosít az Ethereum archív főhálózathoz és a teszthálózatokhoz._
- A [Blockapps](https://blockapps.net/) _a vállalati Ethereum protokoll, az eszközök és az API-ok implementációja, melyek a STRATO platformot alkotják_
- A [Chainstack](https://chainstack.com/) _az Ethereum főhálózatára és teszthálózataira biztosít infrastruktúrást, melyet publikus & elkülönített vevői felhőkben hosztol_
-- A [ConsenSys](https://consensys.net/) _számos terméket és eszközt kínál az Ethereum fejlesztésére, valamint tanácsadási és egyedi fejlesztési szolgáltatásokat nyújt_
+- A [ConsenSys](https://consensys.io/) _számos terméket és eszközt kínál az Ethereum fejlesztésére, valamint tanácsadási és egyedi fejlesztési szolgáltatásokat nyújt_
- Az [Envision Blockchain](https://envisionblockchain.com/) _az Ethereum főhálózatra szakosodott, vállalati fókuszú, tanácsadási és fejlesztési szolgáltatásokat nyújt_
- Az [EY OpsChain](https://blockchain.ey.com/products/contract-manager) _egy beszerzési munkafolyamatot biztosít, melynek során ajánlat bekéréseket (RFQ), szerződéseket, rendeléseket és számlákat bocsát ki az Ön megbízható üzleti partnereiből álló hálózatán keresztül_
- A [Hyperledger Besu](https://www.hyperledger.org/use/besu) _egy vállalati fókuszú, nyílt forráskódú Ethereum kliens Apache 2.0 licensszel fejlesztve és Java-ban írva_
@@ -68,7 +68,7 @@ Különféle szervezetek számtalan együttműködésen alapuló erőfeszítést
### Eszközök és könyvtárak {#tooling-and-libraries}
- Az [Alethio](https://explorer.aleth.io/) _egy Ethereum adatelemzési platform_
-- A [Sirato](https://www.web3labs.com/sirato) _egy adat és elemzési platform publikus és privát, Ethereum kompatibilis hálózatokhoz, melyet a Web3 Labs fejlesztett_
+- A [Chainlens](https://www.chainlens.com/) _egy adat és elemzési platform publikus és privát, Ethereum kompatibilis hálózatokhoz, melyet a Web3 Labs fejlesztett_
- Az [Ernst & Young Nightfall](https://github.com/EYBlockchain/nightfall) _ egy eszköztár privát tranzakciókhoz_
- Az [EthSigner](https://github.com/ConsenSys/ethsigner) _egy tranzakció aláírási alkalmazás, amelyet egy web3 szolgáltatóval kell használni_
- A [Tenderly](https://tenderly.co/) _egy adatplatform, mely valós idejű elemzéseket, figyelmeztetéseket és monitorozást kínál támogatással együtt privát láncoknak._
@@ -102,13 +102,12 @@ Az alábbiakban néhány vállalati alkalmazást talál, melyek telepítve lette
- A [Tinlake](https://tinlake.centrifuge.io/) _követelések finanszírozását végzi tokenizált valós eszközökön keresztül, mint például a számlák, jelzálogok vagy műsorszolgáltatási jogdíjak_
- A [RealT](https://realt.co/) _révén a befektetők a világ minden részéről vásárolhatnak az amerikai ingatlanpiacon a szabályozásnak megfelelő, tokenizált résztulajdont._
-- Az [AgroToken](https://agrotoken.io/en/) _ mezőgazdasági anyagokat tokenizál és kereskedik velük_
+- Az [AgroToken](https://agrotoken.io/en/home) _ mezőgazdasági anyagokat tokenizál és kereskedik velük_
- A [Fasset](https://www.fasset.com/) _egy platform a fenntartható infrastruktúráért_
### Adatok notarizációja {#notarization-of-data}
- A [BBVA](https://www.ledgerinsights.com/bbva-blockchain-loan-banking-tech-award/) _a véglegesített kölcsönök részleteit hasheli és feljegyzi a főhálózatra_
-- A [Splunk](https://www.splunk.com/en_us/blog/security/the-newest-data-attack.html) _az adatok integritását biztosítja azzal, hogy az indexelt adatok hashét rendszeresen feljegyzi a főhálózatra_
- Az [ANSA](https://cointelegraph.com/news/italys-top-news-agency-uses-blockchain-to-fight-fake-coronavirus-news) _Olaszország legnagyobb hírügynöksége, mely küzd a hamis hírek ellen, és a főhálózatra történő feljegyzéssel lehetővé teszi az olvasók számára, hogy ellenőrizzék az új hírek eredetiségét_
- A [Verizon](https://decrypt.co/46745/verizon-news-press-releases-ethereum-full-transparency) _az Ethereumra naplózza a sajtókiadványokat, biztosítva ezzel a vállalati elszámoltathatóságot és bizalmat_
- A [Breitling](https://www.coindesk.com/breitling-arianee-all-new-watches-ethereum) _rögzíti az órák származását és javítási részleteit az Ethereumra_
@@ -116,13 +115,11 @@ Az alábbiakban néhány vállalati alkalmazást talál, melyek telepítve lette
### Ellátási lánc {#supply-chain}
-- A [CargoX](https://cargox.io/press-releases/full/cargox-becomes-first-public-blockchain-ethereum-bill-lading-provider-approved-international-group-pi-clubs) _egy fuvarlevél és dokumentumátviteli szolgáltató_
- A [Morpheus.network](https://morpheus.network/) _egy ellátási lánc automatizálási platform, mely egy privát láncokból és a notarizált adatokat tartalmazó Ethereum főhálózatból álló hibridet vezetett be, és olyan cégek használják, mint a kanadai élelmiszer, olaj & gáz elosztó Federated Co-op Ltd. és az argentín kisállateledel gyártó Vitalcan_
- A [Minespider](https://www.minespider.com/) _ellátási lánc nyomonkövetést biztosít_
- Az [EY OpsChain Network Procurement](https://blockchain.ey.com/products/contract-manager) _egy beszerzési munkafolyamatot biztosít a cégek számára, melynek során ajánlat bekéréseket (RFQ), szerződéseket, rendeléseket és számlákat bocsát ki az Ön megbízható üzleti partnereiből álló hálózatán keresztül_
- A [Treum](https://treum.io/) _átláthatóságot, nyomonkövethetőséget és kereskedési lehetőséget biztosít ellátási láncoknak blokklánctechnológia használatával_
- A [TradeTrust](https://www.tradetrust.io/) _az elektronikus fuvarleveleket (eBLs) ellenőriz a nemzetközi szállításban_
-- A [Birra Peroni](https://www.ey.com/en_gl/news/2021/05/birra-peroni-is-the-first-industrial-organization-to-mint-unique-non-fungible-tokens-using-ey-opschain-traceability) _ minden egyes új söradaghoz NFT-t hoz létre, hogy ezzel nagyobb rálátása legyen a teljes ellátási láncra, s így nagyobb hatékonyságot érjen el_
### Biztosítás {#insurance}
diff --git a/public/content/translations/hu/enterprise/private-ethereum/index.md b/public/content/translations/hu/enterprise/private-ethereum/index.md
index 373e257248e..b29e799e2ca 100644
--- a/public/content/translations/hu/enterprise/private-ethereum/index.md
+++ b/public/content/translations/hu/enterprise/private-ethereum/index.md
@@ -24,5 +24,4 @@ Az Ethereum vállalkozásbaráttá tételére irányuló egyes együttműködés
- A [Hyperledger Besu](https://www.hyperledger.org/use/besu) _egy nyílt forráskódú Ethereum-kliens, melyet az Apache 2.0 licensszel fejlesztettek és Java-ban írtak, számos konszenzusalgoritmust tartalmaz, többek között a PoW-t és a PoA-t (IBFT, IBFT 2.0, Ethhash és Clique). Az átfogó engedélyező sémái kimondottan a konzorcium környezetre lettek tervezve._
- A [Hyperledger Burrow](https://www.hyperledger.org/projects/hyperledger-burrow) _egy moduláris blokklánckliens engedélyköteles okosszerződés fordítóval, melyet részben az Ethereum Virtuális Gép (EVM) specifikációjára fejlesztettek_
- A [Kaleido](https://kaleido.io/) _egy teljes technikai rendszert biztosító platform arra, hogy felhők közötti, hibrid vállalati ökoszisztémákat lehessen építeni és futtatni_
-- A [Quorum](https://consensys.net/quorum/) _egy Ethereum-alapú, nyílt forráskódú, vállalati blokkláncplatform fejlett, vállalati szintű funkciókkal, melyek lehetővé teszik az adatvédelmet, az engedélyezést és a megfelelő teljesítményt_
- A [Zeeve](https://www.zeeve.io/) _az Ethereumra való építéshez nyújt termékeket és eszközöket, valamint infrastruktúrát és API-okat biztosít vállalati web3 alkalmazásoknak_
diff --git a/public/content/translations/hu/history/index.md b/public/content/translations/hu/history/index.md
index 3f1c4cb751e..b47240854af 100644
--- a/public/content/translations/hu/history/index.md
+++ b/public/content/translations/hu/history/index.md
@@ -27,11 +27,11 @@ Az elkövetkező protokollfrissítések érdeklik? [Tudjon meg többet a követk
## 2023 {#2023}
-### Shanghai {#shanghai}
+### Shanghai-Capella ("Shapella") {#shapella}
-
+
-#### Összegzés {#shanghai-summary}
+#### Shanghai összefoglaló {#shanghai-summary}
A Shanghai frissítés bevezette a letétek kivonási lehetőségét a végrehajtási rétegen. A Capella frissítéssel együtt ez lehetővé tette, hogy a blokkok kivonási műveletet fogadjanak el, amivel a letétesek ki tudják venni az ETH a Beacon láncról a végrehajtási rétegre.
@@ -49,13 +49,7 @@ A Shanghai frissítés bevezette a letétek kivonási lehetőségét a végrehaj
- [Olvassa el a Shanghai frissítés specifikációit](https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/shanghai.md)
----
-
-### Capella {#capella}
-
-
-
-#### Összegzés {#capella-summary}
+#### Capella összefoglaló {#capella-summary}
A Capella frissítés a harmadik legnagyobb frissítés volt a konszenzusrétegen (Beacon lánc) és lehetővé tette a letétek kivételét. A Capella egyszerre történt a Shanghai frissítéssel, ami a végrehajtási réteget változtatta meg, s így lehetővé vált a letét kivétele.
diff --git a/public/content/translations/hu/roadmap/beacon-chain/index.md b/public/content/translations/hu/roadmap/beacon-chain/index.md
index 1624261f221..96c27947beb 100644
--- a/public/content/translations/hu/roadmap/beacon-chain/index.md
+++ b/public/content/translations/hu/roadmap/beacon-chain/index.md
@@ -27,7 +27,7 @@ Beacon lánc a neve annak a számlafőkönyvek, amely az Ethereum-[letétesek](/
A Beacon lánc vezette be a [proof-of-stake-et](/developers/docs/consensus-mechanisms/pos/) az Ethereum rendszerébe. Ez tartja fent az Ethereum biztonságát, és a folyamat során a validátorokat több ETH-hoz juttatja. A gyakorlatban a letétbe helyezés úgy néz ki, hogy ETH-t helyez letétbe a validátorszoftver aktiválásához. Letétesként futtatja a szoftvert, amely új blokkokat hoz létre és validál a láncon.
-A letétbe helyezés hasonló célt szolgál, mint korábban a [bányászat](/developers/docs/mining/), de számos tekintetben különbözik attól. A bányászat nagy összegű kezdeti kiadásokkal járt, nagy teljesítményű hardverek beszerzésével és nagy energiafogyasztással, ami a tehetősebbeknek kedvezett, és elősegítette a centralizációt. Emellett a bányászat nem követelte meg a fedezetként szolgáló eszközök zárolását, ezzel korlátozta a protokoll képességét a rosszindulatú szereplők megbüntetésére egy támadás után.
+A letétbe helyezés hasonló célt szolgál, mint korábban a [bányászat](/developers/docs/consensus-mechanisms/pow/mining/), de számos tekintetben különbözik attól. A bányászat nagy összegű kezdeti kiadásokkal járt, nagy teljesítményű hardverek beszerzésével és nagy energiafogyasztással, ami a tehetősebbeknek kedvezett, és elősegítette a centralizációt. Emellett a bányászat nem követelte meg a fedezetként szolgáló eszközök zárolását, ezzel korlátozta a protokoll képességét a rosszindulatú szereplők megbüntetésére egy támadás után.
A proof-of-stake mechanizmusra való áttérés jelentősen fokozta az Ethereum biztonságát és decentralizációját a proof-of-work rendszerhez képest. Minél több ember vesz részt a hálózatban, annál decentralizáltabb és védettebb lesz a támadásokkal szemben.
diff --git a/public/content/translations/hu/roadmap/danksharding/index.md b/public/content/translations/hu/roadmap/danksharding/index.md
index 29d4b2211a9..bd0c5ccbdf7 100644
--- a/public/content/translations/hu/roadmap/danksharding/index.md
+++ b/public/content/translations/hu/roadmap/danksharding/index.md
@@ -15,7 +15,7 @@ A **Danksharding** az a módszer, amivel az Ethereum egy valóban skálázható
## Mi az a Proto-Danksharding? {#what-is-protodanksharding}
-A Proto-Danksharding, vagy más néven [EIP-4844](https://eips.ethereum.org/EIPS/eip-4844), egy olyan módszer a [összevont tranzakciók](/layer2/#rollups) számára, amellyel olcsón tudnak adatokat hozzáadni a blokkokhoz. A név attól a két kutatótól származik, akik ezt a módszert javasolták: Protolambda és Dankrad Feist. Jelenleg az összevont tranzakciókat a tranzakciók költségének csökkentésében behatárolja az a tény, hogy a tranzakciókat a `CALLDATA` mezőbe posztolják. Ez egy drága megoldás, mert az Ethereum-csomópontok dolgozzák fel és a láncon örökre élő adat marad, miközben az összevont tranzakcióknak csak egy rövid időre lenne szükségük ezekre. A Proto-Danksharding az adatblobokat vezeti be, amelyeket el lehet küldeni és hozzá lehet csatolni a blokkokhoz. Az ezekben a blobokban lévő adatok nem elérhetők az EVM számára, és automatikusan törlődnek egy meghatározott idő (1–3 hónap) után. Így az összevont tranzakciók sokkal olcsóbban be tudják küldeni az adatokat, és ez a felhasználóknak olcsóbb tranzakciókat eredményez.
+A Proto-Danksharding, vagy más néven [EIP-4844](https://eips.ethereum.org/EIPS/eip-4844), egy olyan módszer a [összevont tranzakciók](/layer-2/#rollups) számára, amellyel olcsón tudnak adatokat hozzáadni a blokkokhoz. A név attól a két kutatótól származik, akik ezt a módszert javasolták: Protolambda és Dankrad Feist. Jelenleg az összevont tranzakciókat a tranzakciók költségének csökkentésében behatárolja az a tény, hogy a tranzakciókat a `CALLDATA` mezőbe posztolják. Ez egy drága megoldás, mert az Ethereum-csomópontok dolgozzák fel és a láncon örökre élő adat marad, miközben az összevont tranzakcióknak csak egy rövid időre lenne szükségük ezekre. A Proto-Danksharding az adatblobokat vezeti be, amelyeket el lehet küldeni és hozzá lehet csatolni a blokkokhoz. Az ezekben a blobokban lévő adatok nem elérhetők az EVM számára, és automatikusan törlődnek egy meghatározott idő (1–3 hónap) után. Így az összevont tranzakciók sokkal olcsóbban be tudják küldeni az adatokat, és ez a felhasználóknak olcsóbb tranzakciókat eredményez.
diff --git a/public/content/translations/hu/roadmap/single-slot-finality/index.md b/public/content/translations/hu/roadmap/single-slot-finality/index.md
index 21e774a6bac..ca0f469eb8a 100644
--- a/public/content/translations/hu/roadmap/single-slot-finality/index.md
+++ b/public/content/translations/hu/roadmap/single-slot-finality/index.md
@@ -58,7 +58,7 @@ Ha az aggregáció skálázásához az alhálózatokban megnövelnék a validát
## Jelenlegi helyzet {#current-progress}
-Az SSF még kutatási fázisban van. Nem várható, hogy a következő években bevezetésre kerül, inkább más lényeges fejlesztések után eszközölése várható, mint például a [Verkle-fák](/roadmap/verkle-trees/) és a [Danksharding](/roadmap/danksharding]).
+Az SSF még kutatási fázisban van. Nem várható, hogy a következő években bevezetésre kerül, inkább más lényeges fejlesztések után eszközölése várható, mint például a [Verkle-fák](/roadmap/verkle-trees/) és a [Danksharding](/roadmap/danksharding/).
## További olvasnivaló {#further-reading}
diff --git a/public/content/translations/hu/smart-contracts/index.md b/public/content/translations/hu/smart-contracts/index.md
index 1560fba6018..f5fc73d66af 100644
--- a/public/content/translations/hu/smart-contracts/index.md
+++ b/public/content/translations/hu/smart-contracts/index.md
@@ -65,7 +65,7 @@ Többek között képesek számításokat végezni, valutát létrehozni, adatot
- [Stablecoin-ok](/stablecoins/)
- [Egyedi digitális eszközök létrehozása és szétosztása](/nft/)
- [Automatikus, nyílt valutaátváltás](/get-eth/#dex)
-- [Decentralizált játékok](/dapps/?category=gaming)
+- [Decentralizált játékok](/dapps/?category=gaming#explore)
- [Biztosítási szerződés, mely automatikus kifizetést alkalmaz](https://etherisc.com/)
- [Szabvány, melyet alapul véve az emberek egyéni, interoperábilis valutákat hoznak létre](/developers/docs/standards/tokens/)
diff --git a/public/content/translations/hu/zero-knowledge-proofs/index.md b/public/content/translations/hu/zero-knowledge-proofs/index.md
index dead07c9fe6..e548b01b01a 100644
--- a/public/content/translations/hu/zero-knowledge-proofs/index.md
+++ b/public/content/translations/hu/zero-knowledge-proofs/index.md
@@ -4,7 +4,7 @@ description: A zero-knowledge bizonyítékok nem technikai bemutatása kezdők s
lang: hu
---
-## Mik azok a zero-knowledge (nullaismeret-alapú) bizonyítékok? {#what-are-zk-proofs}
+# Mik azok a zero-knowledge (nullaismeret-alapú) bizonyítékok? {#what-are-zk-proofs}
A zero-knowledge bizonyíték annak módja, hogy egy állítás érvényességét úgy igazoljuk, hogy magát az állítást nem fedjük fel. A bizonyító próbálja az állítást elfogadtatni, miközben az ellenőrző felelős annak validálásáért.
diff --git a/public/content/translations/id/community/events/index.md b/public/content/translations/id/community/events/index.md
index 0f5dbd6f527..6aced63ea22 100644
--- a/public/content/translations/id/community/events/index.md
+++ b/public/content/translations/id/community/events/index.md
@@ -5,7 +5,7 @@ hideEditButton: true
lang: id
---
-## Aksi mendatang {#events}
+# Aksi mendatang {#events}
**Setiap bulan, ada aksi besar Ethereum di seluruh dunia.** Pertimbangkanlah untuk menghadiri salah satunya di dekat area Anda untuk bertemu dengan lebih banyak orang di komunitas, mendapatkan informasi tentang lowongan pekerjaan, dan mengembangkan keahlian baru.
diff --git a/public/content/translations/id/community/get-involved/index.md b/public/content/translations/id/community/get-involved/index.md
index 16a7792d2fb..955a8947de2 100644
--- a/public/content/translations/id/community/get-involved/index.md
+++ b/public/content/translations/id/community/get-involved/index.md
@@ -14,7 +14,7 @@ Komunitas Ethereum meliputi orang-orang dari beragam latar belakang dan kemampua
- [Temukan hadiah bounty di Gitcoin](https://gitcoin.co/), selesaikan masalah teknis kecil atau besar, dapatkan kripto!
- Datanglah ke hackathon [ETHGlobal](http://ethglobal.co/) di dekat Anda!
- Lihat [proyek yang terkait dengan bidang keahlian atau bahasa pemrograman pilihan Anda](/developers/docs/programming-languages/)
-- Tonton atau berpartisipasilah dalam [Panggilan Dev Core](https://www.youtube.com/playlist?list=PLaM7G4Llrb7zfMXCZVEXEABT8OSnd4-7w)
+- Tonton atau berpartisipasilah dalam [Panggilan Dev Core](https://www.youtube.com/@EthereumProtocol)
- [Daftar keinginan Program Dukungan Ekosistem](https://esp.ethereum.foundation/wishlist/) - perangkat, dokumentasi, dan area infrastruktur tempat Program Dukungan Ekosistem Ethereum secara aktif mencari pengajuan hibah
- [Web3Bridge](https://www.web3bridge.com/) - bergabunglah dengan komunitas web3 yang bervisi dalam inisiatif mereka untuk mengenali, melatih, dan mendukung ratusan pengembang dan anggota komunitas di seluruh Afrika
diff --git a/public/content/translations/id/contributing/translation-program/index.md b/public/content/translations/id/contributing/translation-program/index.md
index 5352562fdff..3430534a439 100644
--- a/public/content/translations/id/contributing/translation-program/index.md
+++ b/public/content/translations/id/contributing/translation-program/index.md
@@ -46,7 +46,7 @@ Program Terjemahan ethereum.org bertujuan untuk membuat Ethereum dapat diakses o
Kami menyarankan Anda untuk melihat Panduan Gaya Penerjemahan ethereum.org. Ini berisi beberapa panduan, instruksi, dan tips yang paling penting bagi para penerjemah dan bisa menjadi rujukan saat melokalkan situs web.
- {" "}Lihat Panduan Gaya Penerjemahan
+ {" "}Lihat Panduan Gaya Penerjemahan
1. **[Bergabung dengan projek kami di Crowdin](https://crowdin.com/project/ethereum-org/)**
@@ -115,7 +115,7 @@ Jika Anda adalah seorang penerjemah ethereum.org atau ingin menjadi salah satuny
Jika Anda membantu kami dengan terjemahan, Anda mungkin menemukan beberapa informasi yang berguna dalam Pertanyaan yang Sering Diajukan tentang terjemahan kami.
- {" "}Pertanyaan yang Sering Diajukan tentang menerjemahkan ethereum.org
+ {" "}Pertanyaan yang Sering Diajukan tentang menerjemahkan ethereum.org
## Sumber Daya {#resources}
diff --git a/public/content/translations/id/decentralized-identity/index.md b/public/content/translations/id/decentralized-identity/index.md
index 3b451cc89bc..10684434635 100644
--- a/public/content/translations/id/decentralized-identity/index.md
+++ b/public/content/translations/id/decentralized-identity/index.md
@@ -49,7 +49,7 @@ Tanda pengenal terdesentralisasi disimpan pada buku besar yang terdistribusi (ra
## Apa yang menjadikan tanda pengenal terdesentralisasi mungkin? {#what-makes-decentralized-identifiers-possible}
-### 1. Infrastruktur kunci publik (PKI) {#public-key-infrastructure}
+### 1. Infrastruktur kunci publik (PKI) {#public-key-cryptography}
Infrastruktur kunci publik (PKI) adalah suatu informasi pengukuran keamanan yang menciptakan sebuah [kunci publik](/glossary/#public-key) dan [kunci pribadi](/glossary/#private-key) untuk sebuah entitas. Kriptografi dari kunci publik digunakan pada jaringan rantai blok untuk mengautentikasi identitas pengguna dan membuktikan kepemilikan dari aset digital.
diff --git a/public/content/translations/id/defi/index.md b/public/content/translations/id/defi/index.md
index 44fdaf9f2b0..a7def0aed19 100644
--- a/public/content/translations/id/defi/index.md
+++ b/public/content/translations/id/defi/index.md
@@ -47,7 +47,7 @@ Salah satu cara terbaik untuk melihat potensi DeFi adalah dengan memahami permas
| Pasar selalu terbuka. | Pasar tutup karena para karyawan perlu istirahat. |
| Dibangun di atas prinsip transparansi – siapa pun dapat melihat data produk dan memeriksa cara kerja sistem. | Lembaga keuangan adalah buku tertutup: Anda tidak dapat meminta untuk melihat riwayat pinjaman mereka, catatan aset yang mereka kelola, dan sebagainya. |
-
+
Jelajahi aplikasi DeFi
@@ -65,7 +65,7 @@ Ini terdengar aneh... "mengapa saya ingin memrogram uang saya"? Namun, ini lebih
Jelajahi saran kami untuk aplikasi DeFi yang dapat dicoba jika Anda baru mengenal Ethereum.
-
+
Jelajahi aplikasi DeFi
@@ -92,7 +92,7 @@ Ada sebuah alternatif terdesentralisasi untuk kebanyakan layanan keuangan. Tetap
Sebagai sebuah blockchain, Ethereum dirancang untuk mengirim transaksi dalam cara yang aman dan global. Seperti Bitcoin, Ethereum membuat pengiriman uang ke seluruh dunia semudah mengirimkan email. Cukup masukkan [nama ENS](/nft/#nft-domains) penerima Anda (seperti bob.eth) atau alamat akun mereka dari dompet Anda dan pembayaran Anda akan berpindah langsung ke mereka dalam hitungan menit (biasanya). Untuk mengirim atau menerima pembayaran, Anda akan memerlukan sebuah [dompet](/wallets/).
-
+
Lihat dapp pembayaran
@@ -123,7 +123,7 @@ Layanan meminjam uang dari para penyedia terdesentralisasi hadir dalam dua varia
- Peer-to-peer, yang berarti peminjam akan meminjam secara langsung dari pemberi pinjaman tertentu.
- Berbasis pool di mana para pemberi pinjaman menyediakan dana (likuiditas) ke sebuah pool yang darinya para peminjam dapat memperoleh pinjaman.
-
+
Lihat dapp peminjaman
@@ -183,7 +183,7 @@ Anda dapat menghasilkan bunga pada kripto Anda dengan meminjamkannya dan melihat
- aDai Anda akan bertambah sesuai dengan tingkat bunga dan Anda dapat melihat saldo bertambah di dompet. Tergantung pada APR, saldo dompet Anda akan membaca sesuatu seperti 100,1234 setelah beberapa hari atau bahkan beberapa jam!
- Anda dapat menarik sejumlah Dai reguler yang setara dengan salso aDai Anda kapan saja.
-
+
Lihat dapp pemberi pinjaman
@@ -211,7 +211,7 @@ Ada ribuan token di Ethereum. Decentralized exchange (DEX) memungkinkan Anda mem
Misalnya, jika Anda ingin menggunakan lotre anti kerugian PoolTogether (yang dideskripsikan di atas), Anda akan memerlukan token seperti Dai atau USDC. DEX ini memungkinkan Anda menukar ETH dengan token tersebut dan menukarkannya kembali bila sudah selesai.
-
+
Lihat penukaran token
@@ -223,7 +223,7 @@ Ada lebih banyak opsi tingkat lanjut bagi para pedagang yang menginginkan sediki
Ketika Anda menggunakan bursa terpusat, Anda harus mendepositokan aset Anda sebelum perdagangannya dilakukan dan mempercayakan mereka untuk mengelolanya. Ketika aset Anda didepositokan, aset ini berisiko karena bursa terpusat adalah sasaran yang empuk bagi para peretas.
-
+
Lihat dapp perdagangan
@@ -235,7 +235,7 @@ Ada produk manajemen dana di Ethereum yang akan mencoba mengembangkan portofolio
Sebuah contoh yang baik untuk ini adalah [dana DeFi Pulse Index (DPI)](https://defipulse.com/blog/defi-pulse-index/). Ini adalah dana yang menyeimbangkan kembali secara otomatis untuk memastikan portofolio Anda selalu menyertakan [token DeFi teratas berdasarkan kapitalisasi pasar](https://www.coingecko.com/en/defi). Anda tidak perlu mengelola detail apa pun dan Anda dapat menarik dananya kapan pun Anda menginginkannya.
-
+
Lihat dapp investasi
@@ -249,7 +249,7 @@ Ethereum merupakan platform yang ideal untuk penggalangan dana:
- Bersifat transparan sehingga penggalang dana dapat membuktikan berapa banyak uang yang telah dikumpulkan. Anda bahkan dapat melacak berapa banyak dana yang dipakai nantinya.
- Penggalang dana dapat menyiapkan pengembalian dana secara otomatis, misalnya, ada tenggat waktu tertentu dan jumlah minimum yang tidak dicapai.
-
+
Lihat dapp penggalangan dana
@@ -276,7 +276,7 @@ Asuransi terdesentralisasi bertujuan untuk membuat asuransi lebih murah, lebih c
Produk Ethereum, seperti perangkat lunak mana pun, dapat mengalami masalah karena bug dan eksploitasi. Jadi saat ini, banyak produk asuransi yang ada berfokus untuk melindungi penggunanya dari kerugian dana. Namun, ada proyek-proyek yang mulai membangun cakupan untuk segala hal yang dapat terjadi dalam kehidupan kita. Contoh yang bagus untuk ini adalah jaminan Etherisc Crop yang bertujuan [melindungi para petani kecil di Kenya terhadap bencana kekeringan dan banjir](https://blog.etherisc.com/etherisc-teams-up-with-chainlink-to-deliver-crop-insurance-in-kenya-137e433c29dc). Asuransi terdesentralisasi dapat menyediakan jaminan yang murah bagi para petani yang sering ditolak oleh asuransi tradisional.
-
+
Lihat dapp asuransi
@@ -286,7 +286,7 @@ Produk Ethereum, seperti perangkat lunak mana pun, dapat mengalami masalah karen
Dengan begitu banyak hal yang terjadi, Anda akan memerlukan cara untuk tetap melacak semua investasi, pinjaman, dan perdagangan Anda. Ada sebuah host produk yang memungkinkan Anda mengkoordinir semua aktivitas DeFi dari satu tempat. Inilah keindahan dari arsitektur terbuka DeFi. Tim dapat menysusun antarmuka di mana Anda tidak hanya dapat melihat saldo di seluruh produk, Anda juga dapat menggunakan fiturnya. Anda mungkin menemukan manfaatnya saat menjelajahi lebih lanjut tentang DeFi.
-
+
Lihat dapp portofolio
diff --git a/public/content/translations/id/desci/index.md b/public/content/translations/id/desci/index.md
index 2fe1718e641..d44f0cacedd 100644
--- a/public/content/translations/id/desci/index.md
+++ b/public/content/translations/id/desci/index.md
@@ -68,7 +68,7 @@ Model standar saat ini untuk pendanaan ilmu pengetahuan adalah bahwa individu at
Studi telah menunjukkan bahwa panel peninjau hibah sering kali tidak efektif dalam memilih proposal berkualitas tinggi, karena proposal yang sama yang diberikan kepada panel-panel yang berbeda memiliki hasil yang sangat berbeda. Seiring dengan semakin langka dana pendanaan, dana tersebut telah terkonsentrasi dalam kelompok kecil peneliti senior dengan proyek-proyek yang lebih konservatif secara intelektual. Dampak ini menciptakan lanskap pendanaan yang sangat kompetitif sehingga mengakibatkan insentif yang tidak sehat dan meredam inovasi.
-Web3 memiliki potensi untuk mengganggu model pendanaan yang rusak ini dengan menguji model insentif berbeda yang dikembangkan oleh DAO dan Web3 secara luas. [Pendanaan barang publik retroaktif](https://medium.com/ethereum-optimism/retroactive-public-goods-funding-33c9b7d00f0c), [pendanaan kuadratik](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2003531), [pengelolaan DAO](https://www.antler.co/blog/daos-and-web3-governance), dan [struktur insentif ter-tokenisasi](https://cdixon.org/2017/05/27/crypto-tokens-a-breakthrough-in-open-network-design) adalah beberapa perangkat Web3 yang dapat merevolusi pendanaan ilmiah.
+Web3 memiliki potensi untuk mengganggu model pendanaan yang rusak ini dengan menguji model insentif berbeda yang dikembangkan oleh DAO dan Web3 secara luas. [Pendanaan barang publik retroaktif](https://medium.com/ethereum-optimism/retroactive-public-goods-funding-33c9b7d00f0c), [pendanaan kuadratik](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2003531), [pengelolaan DAO](https://www.antler.co/blog/daos-and-web3-governance-the-promise-implications-and-challenges-ahead), dan [struktur insentif ter-tokenisasi](https://cdixon.org/2017/05/27/crypto-tokens-a-breakthrough-in-open-network-design) adalah beberapa perangkat Web3 yang dapat merevolusi pendanaan ilmiah.
### Kepemilikan dan pengembangan Hak Kekayaan Intelektual (HKI) {#ip-ownership}
diff --git a/public/content/translations/id/developers/docs/apis/javascript/index.md b/public/content/translations/id/developers/docs/apis/javascript/index.md
index cbf960f4b40..6c2e0446e67 100644
--- a/public/content/translations/id/developers/docs/apis/javascript/index.md
+++ b/public/content/translations/id/developers/docs/apis/javascript/index.md
@@ -6,7 +6,7 @@ lang: id
Agar aplikasi web dapat berinteraksi dengan blockchain Ethereum (yaitu membaca data blockchain dan/atau mengirim transaksi ke jaringan), aplikasi harus terhubung ke node Ethereum.
-Untuk keperluan ini, setiap klien Ethereum mengimplementasikan spesifikasi [JSON-RPC](/developers/docs/apis/json-rpc/), sehingga ada keseragaman kumpulan [titik akhir](/developers/docs/apis/json-rpc/endpoints/) yang bisa menjadi tumpuan aplikasi.
+Untuk keperluan ini, setiap klien Ethereum mengimplementasikan spesifikasi [JSON-RPC](/developers/docs/apis/json-rpc/), sehingga ada keseragaman kumpulan [titik akhir](/developers/docs/apis/json-rpc/) yang bisa menjadi tumpuan aplikasi.
Jika ingin Anda menggunakan JavaScript untuk terhubung dengan node Ethereum, dimungkinkan menggunakan JavaScript vanilla, tetapi beberapa pustaka praktis telah ada di dalam ekosistem yang akan membuat proses ini jauh lebih mudah. Dengan pustaka ini, pengembang dapat menulis metode satu baris yang intuitif untuk memulai permintaan JSON RPC (di bawah tenda) yang berinteraksi dengan Ethereum.
diff --git a/public/content/translations/id/developers/docs/data-and-analytics/block-explorers/index.md b/public/content/translations/id/developers/docs/data-and-analytics/block-explorers/index.md
index d8624742e5a..450367544e9 100644
--- a/public/content/translations/id/developers/docs/data-and-analytics/block-explorers/index.md
+++ b/public/content/translations/id/developers/docs/data-and-analytics/block-explorers/index.md
@@ -17,7 +17,7 @@ Anda harus memahami konsep dasar Ethereum agar Anda dapat memahami data yang dib
- [Etherchain](https://www.etherchain.org/)
- [Ethplorer](https://ethplorer.io/) –_Juga tersedia dalam bahasa Mandarin, Spanyol, Prancis, Turki, Rusia, Korea, dan Vietnam_
- [Blockchair](https://blockchair.com/ethereum) –_Juga tersedia dalam bahasa Spanyol, Prancis, Italia, Belanda, Portugis, Rusia, Mandarin, dan Persia_
-- [Blockscout](https://blockscout.com/)
+- [Blockscout](https://eth.blockscout.com/)
- [OKLink](https://www.oklink.com/eth)
## Data {#data}
@@ -245,7 +245,7 @@ Data tingkat atas lapisan konsensus mencakup berikut ini:
## Penjelajah blok {#block-explorers}
- [Etherscan](https://etherscan.io/) – penjelajah blok yang bisa Anda gunakan mengambil data untuk Jaringan Utama Ethereum, Testnet Ropsten, Testnet Kovan, Testnet Rinkeby, dan Testnet Goerli.
-- [Blockscout](https://blockscout.com/) – berfokus pada jaringan berikut:
+- [Blockscout](https://eth.blockscout.com/) – berfokus pada jaringan berikut:
- xDai – kombinasi pintar dari stablecoin DAI MakerDAO dan sidechain POA serta teknologi tokenbridge.
- POA – Sidechain dan jaringan otonom yang diamankan oleh satu grup validator terpercaya. Semua validator pada jaringan adalah notaris Amerika Serikat, dan informasi mereka tersedia secara publik.
- Testnet Sokol POA.
diff --git a/public/content/translations/id/developers/docs/nodes-and-clients/index.md b/public/content/translations/id/developers/docs/nodes-and-clients/index.md
index 57e12dc6333..bccc501394c 100644
--- a/public/content/translations/id/developers/docs/nodes-and-clients/index.md
+++ b/public/content/translations/id/developers/docs/nodes-and-clients/index.md
@@ -231,8 +231,6 @@ Perhatikan dokumentasi klien atau halaman bantuan untuk menemukan mode sinkronis
`geth --syncmode "light"`
-Untuk detail lebih lanjut, lihat tutorialnya di [menjalankan node ringan Geth](/developers/tutorials/run-light-node-geth/).
-
**Menyiapkan sinkronisasi penuh dengan arsip di [Besu](https://besu.hyperledger.org/)**
`besu --sync-mode=FULL`
@@ -310,5 +308,4 @@ Ada banyak informasi tentang klien Ethereum di internet. Berikut adalah beberapa
## Tutorial terkait {#related-tutorials}
-- [Menjalankan Node dengan Geth](/developers/tutorials/run-light-node-geth/) _– Cara mengunduh, menginstal, dan menjalankan Geth. Covering syncmodes, the JavaScript console, and more._
- [Ubah Raspberry Pi 4 Anda menjadi node validator cukup dengan mem-flash kartu MicroSD – Panduan instalasi](/developers/tutorials/run-node-raspberry-pi/) _– Flash Raspberry Pi 4, colokkan kabel ethernet, hubungkan SSD dan nyalakan perangkat untuk mengubah Raspberry Pi 4 menjadi node penuh Ethereum yang menjalankan lapisan eksekusi (Jaringan Utama) dan / atau lapisan konsensus (Rantai Suar / validator)._
diff --git a/public/content/translations/id/developers/docs/nodes-and-clients/run-a-node/index.md b/public/content/translations/id/developers/docs/nodes-and-clients/run-a-node/index.md
index 95d4d45c56e..cc2244be4c1 100644
--- a/public/content/translations/id/developers/docs/nodes-and-clients/run-a-node/index.md
+++ b/public/content/translations/id/developers/docs/nodes-and-clients/run-a-node/index.md
@@ -88,7 +88,7 @@ Sebelum memulai perangkat lunak klien Ethereum, lakukan pemeriksaan terakhir bah
- Sistem memiliki waktu dan tanggal yang tepat.
- Router dan firewall Anda menerima koneksi pada port pendengar. Secara default, klien Ethereum menggunakan port pendengar (TCP) dan port penemuan (UDP), keduanya pada 30303 secara default.
-Jalankan klien Anda pada testnet terlebih dahulu untuk menolong memastikan semuanya bekerja dengan benar. [Menjalankan node ringan Geth](/developers/tutorials/run-light-node-geth/) seharusnya membantu. Anda perlu mendeklarasikan pengaturan klien mana pun yang bukan default pada awalnya. Anda dapat menggunakan bendera atau berkas konfigurasi untuk mendeklarasikan konfigurasi yang diinginkan. Lihat dokumentasi klien Anda untuk eksekusi Klien khusus yang akan memulai fungsi inti, titik akhir terpilihnya, dan mulai mencari peer. Setelah berhasil menemukan peer, klien memulai sinkronisasi. Data rantai blok saat ini akan tersedia setelah klien berhasil disinkronisasikan dengan state saat ini.
+Jalankan klien Anda pada testnet terlebih dahulu untuk menolong memastikan semuanya bekerja dengan benar. Anda perlu mendeklarasikan pengaturan klien mana pun yang bukan default pada awalnya. Anda dapat menggunakan bendera atau berkas konfigurasi untuk mendeklarasikan konfigurasi yang diinginkan. Lihat dokumentasi klien Anda untuk eksekusi Klien khusus yang akan memulai fungsi inti, titik akhir terpilihnya, dan mulai mencari peer. Setelah berhasil menemukan peer, klien memulai sinkronisasi. Data rantai blok saat ini akan tersedia setelah klien berhasil disinkronisasikan dengan state saat ini.
### Menggunakan klien {#using-the-client}
diff --git a/public/content/translations/id/developers/docs/smart-contracts/testing/index.md b/public/content/translations/id/developers/docs/smart-contracts/testing/index.md
index a48c83ad503..2fec20609ef 100644
--- a/public/content/translations/id/developers/docs/smart-contracts/testing/index.md
+++ b/public/content/translations/id/developers/docs/smart-contracts/testing/index.md
@@ -37,7 +37,7 @@ incomplete: true
- [Pengaturan Integrasi Berkelanjutan Solidity dan Truffle](/developers/tutorials/solidity-and-truffle-continuous-integration-setup/) _– Cara menyiapkan Travis atau Circle CI untuk pengujian Truffle bersama dengan plugin yang berguna._
- [Gambaran umum produk pengujian](/developers/tutorials/guide-to-smart-contract-security-tools/) _– Gambaran umum dan perbandingan dari produk pengujian berbeda._
- [Cara menggunakan Echidna untuk menguji kontrak pintar](/developers/tutorials/how-to-use-echidna-to-test-smart-contracts/)
-- [Cara menggunakan Manticore untuk menemukan bug kontrak pintar](/developers/tutorials/how-to-use-manticor-to-find-smart-contract-bugs/)
+- [Cara menggunakan Manticore untuk menemukan bug kontrak pintar](/developers/tutorials/how-to-use-manticore-to-find-smart-contract-bugs/)
- [Cara menggunakan Slither untuk menemukan bug kontrak pintar](/developers/tutorials/how-to-use-slither-to-find-smart-contract-bugs/)
- [Cara meniru kontrak Solidity untuk pengujian](/developers/tutorials/how-to-mock-solidity-contracts-for-testing/)
- [Cara berpindah dari Uji Truffle ke Lingkungan Uji OpenZeppelin](https://docs.openzeppelin.com/test-environment/0.1/migrating-from-truffle)
diff --git a/public/content/translations/id/developers/docs/standards/index.md b/public/content/translations/id/developers/docs/standards/index.md
index fdd4515cc96..ae273f67421 100644
--- a/public/content/translations/id/developers/docs/standards/index.md
+++ b/public/content/translations/id/developers/docs/standards/index.md
@@ -18,7 +18,7 @@ Biasanya standar diperkenalkan sebagai [Proposal Peningkatan Ethereum](/eips/) (
- [Pengantar tentang Tata Kelola Ethereum](/governance/)
- [Gambaran Umum Tata Kelola Ethereum](https://web.archive.org/web/20201107234050/https://blog.bmannconsulting.com/ethereum-governance/) _31 Maret 2019 - Boris Mann_
- [Tata Kelola Pengembangan Protokol Ethereum dan Koordinasi Peningkatan Jaringan](https://hudsonjameson.com/2020-03-23-ethereum-protocol-development-governance-and-network-upgrade-coordination/) _23 Maret 2020 - Hudson Jameson_
-- [Daftar Putar semua Rapat Pengembang Inti Ethereum](https://www.youtube.com/playlist?list=PLaM7G4Llrb7zfMXCZVEXEABT8OSnd4-7w) _(Daftar Putar YouTube)_
+- [Daftar Putar semua Rapat Pengembang Inti Ethereum](https://www.youtube.com/@EthereumProtocol) _(Daftar Putar YouTube)_
## Tipe standar {#types-of-standards}
diff --git a/public/content/translations/id/developers/tutorials/run-light-node-geth/index.md b/public/content/translations/id/developers/tutorials/run-light-node-geth/index.md
deleted file mode 100644
index a481e451498..00000000000
--- a/public/content/translations/id/developers/tutorials/run-light-node-geth/index.md
+++ /dev/null
@@ -1,104 +0,0 @@
----
-title: Cara menjalankan node ringan dengan Geth
-description: How to download, install and run a lightclient with Geth.
-author: "Brain Gu"
-tags:
- - "klien"
- - "node"
-skill: beginner
-lang: id
-published: 2022-03-04
----
-
-Anda mungkin tertarik menjalankan [node Ethereum](/developers/docs/nodes-and-clients/). Salah satu cara termudah untuk melakukannya adalah dengan mengunduh, menginstal, dan menjalankan Geth. Dengan Geth, kita bisa mengaktifkan node ringan dan menjalankannya dalam hitungan menit.
-
-A light client requires less than 400MB of storage whilst still allowing full interactivity with the Ethereum state. Light clients retrieve data from remote peers, so some queries may take longer to respond in comparison to other sync modes.
-
-For an explanation of the differences between the different sync modes, read our [nodes and clients developer docs](/developers/docs/nodes-and-clients/#node-types).
-
-## Install and run {#install-and-run}
-
-First, [install Geth](https://geth.ethereum.org/docs/install-and-build/installing-geth).
-
-After installing Geth, you can run an Ethereum node in "light" mode by running the following command in a Terminal window:
-
-```bash
-geth --syncmode light
-```
-
-Once launched, Geth will begin connecting to other nodes on Ethereum - known as "peers". The process of connecting to peers may take a while.
-
-When your Geth node has enough peers, it will import headers from new blocks on the chain.
-
-When new block headers no longer have an "age", Geth will be synced to the chain's head.
-
-## Menghentikan dan memulai kembali node Anda {#stopping-and-restarting-your-node}
-
-You can stop your node at any time by pressing CTRL+C.
-
-When restarting the node, Geth will take a few minutes to download block headers created since the node was last run.
-
-## Enable the HTTP-RPC server {#enable-the-http-rpc-server}
-
-Enabling the HTTP-RPC server lets you connect your Ethereum node to other software like wallets, browser extensions, or custom software libraries.
-
-You can enable the HTTP-RPC server by running the following command when launching Geth:
-
-```bash
-geth --syncmode light --http
-```
-
-Once enabled, run `curl http://127.0.0.1:8545`. This should report no error.
-
-### Allow remote connections {#allow-remote-connections}
-
-To allow remote hosts to connect to your node, launch Geth with the following command:
-
-```
-geth --syncmode light --http --http.addr 0.0.0.0
-```
-
-Note: this assumes that there is no process blocking requests to your localhost, such as a firewall.
-
-## Geth JavaScript console {#geth-javascript-console}
-
-Geth has a built-in JavaScript console and a JavaScript API called [web3js](https://github.com/ethereum/web3.js/) that you can use to interact with your node.
-
-To use the JavaScript console run:
-
-```bash
-geth attach
-```
-
-This console allows direct interaction with Ethereum. For example, running the `eth.blockNumber` command will print the latest known block number.
-
-[Dokumentasi web3js lengkap](http://web3js.readthedocs.io/)
-
-## Mainnet and testnets {#mainnet-and-testnets}
-
-Geth runs your node on [Ethereum Mainnet](/glossary/#mainnet) by default.
-
-It is also possible to use Geth to run a node on one of the [public test networks](/networks/#testnets), by running one of the following commands in Terminal:
-
-```bash
-geth --syncmode light --ropsten
-geth --syncmode light --rinkeby
-geth --syncmode light --goerli
-```
-
-## Di mana data blockchain dan EVM disimpan? {#where-is-the-blockchain-and-evm-data-stored}
-
-Direktori yang digunakan Geth untuk menyimpan data blockchain mentah tergantung pada sistem operasi Anda. Upon running Geth, look for a message that looks like this:
-
-```bash
-INFO [11-18|14:04:47] Allocated cache and file handles database=/Users/bgu/Library/Ethereum/testnet/geth/lightchaindata cache=768 handles=128
-```
-
-Jalur yang mengikuti `“database=”` akan memberi tahu Anda di mana data blockchain disimpan dalam mesin Anda. Jika Anda menjalankan node penuh, direktori ini akan berisi semua data tentang setiap blok yang pernah diserahkan ke blockchain. Karena kita menjalankan node ringan, direktori ini hanya berisi header blok.
-
-Penting untuk ditekankan di sini bahwa, pada tingkat paling bawah, inilah tempat di mana blockchain tinggal. Konten lengkap blockchain dan state EVM disimpan dalam setiap node penuh di jaringan Ethereum, dalam direktori yang tampak sangat mirip dengan direktori di komputer Anda.
-
-## Bacaan lebih lanjut {#further-reading}
-
-- [Pelajari selengkapnya tentang jaringan yang berbeda](/developers/docs/networks/).
-- [Run a full node](/run-a-node/)
diff --git a/public/content/translations/id/developers/tutorials/uniswap-v2-annotated-code/index.md b/public/content/translations/id/developers/tutorials/uniswap-v2-annotated-code/index.md
index 9bdb7c2d11c..35059ed062b 100644
--- a/public/content/translations/id/developers/tutorials/uniswap-v2-annotated-code/index.md
+++ b/public/content/translations/id/developers/tutorials/uniswap-v2-annotated-code/index.md
@@ -743,7 +743,7 @@ Ini adalah fungsi utama dari pabrik, untuk membuat bursa pasangan di antara dua
(address token0, address token1) = tokenA < tokenB ? (tokenA, tokenB) : (tokenB, tokenA);
```
-Kita menginginkan alamat dari bursa baru yang bersifat deterministik, sehingga dapat dihitung sebelum di luar rantai (dapat bermanfaat untuk [transaksi lapisan ke-2](/developers/docs/layer-2-scaling/)). Untuk melakukan hal tersebut, kita perlu memiliki urutan alamat token yang konsisten, terlepas dari urutan di mana kita menerimanya, sehingga kita memilahnya di sini.
+Kita menginginkan alamat dari bursa baru yang bersifat deterministik, sehingga dapat dihitung sebelum di luar rantai (dapat bermanfaat untuk [transaksi lapisan ke-2](/developers/docs/scaling/)). Untuk melakukan hal tersebut, kita perlu memiliki urutan alamat token yang konsisten, terlepas dari urutan di mana kita menerimanya, sehingga kita memilahnya di sini.
```solidity
require(token0 != address(0), 'UniswapV2: ZERO_ADDRESS');
diff --git a/public/content/translations/id/developers/tutorials/waffle-dynamic-mocking-and-testing-calls/index.md b/public/content/translations/id/developers/tutorials/waffle-dynamic-mocking-and-testing-calls/index.md
index d519a35b046..653f0ca5d46 100644
--- a/public/content/translations/id/developers/tutorials/waffle-dynamic-mocking-and-testing-calls/index.md
+++ b/public/content/translations/id/developers/tutorials/waffle-dynamic-mocking-and-testing-calls/index.md
@@ -295,4 +295,4 @@ Sumber kode untuk tutorial ini bisa ditemukan [di sini](https://github.com/EthWo
Tutorial yang mungkin juga Anda minati:
-- [Menguji kontrak pintar dengan Waffle](/developers/tutorials/testing-smart-contract-with-waffle/)
+- [Menguji kontrak pintar dengan Waffle](/developers/tutorials/waffle-test-simple-smart-contract/)
diff --git a/public/content/translations/id/energy-consumption/index.md b/public/content/translations/id/energy-consumption/index.md
index 1bf3ad914f7..7926a42d370 100644
--- a/public/content/translations/id/energy-consumption/index.md
+++ b/public/content/translations/id/energy-consumption/index.md
@@ -24,7 +24,7 @@ Bukti kerja adalah cara yang kuat untuk mengamankan jaringan dan menegakkan peru
Masa depan yang lebih ramah lingkungan untuk Ethereum sedang dibangun dalam [bentuk rantai **bukti taruhan (PoS)**](/roadmap/beacon-chain/). Di bawah [bukti taruhan](/developers/docs/consensus-mechanisms/pos/), penyelesaian teka-teki arbitrari tidak diperlukan. Menghilangkan penyelesaian teka-teki secara drastis mengurangi pemakaian energi yang diperlukan untuk mengamankan jaringan. Para penambang digantikan oleh para validator yang melakukan fungsi yang sama, kecuali alih-alih membayarkan aset mereka di muka dalam bentuk daya komputasional, mereka menaruhkan ETH sebagai jaminan terhadap perilaku curang. Jika validator malas (luring ketika mereka seharusnya memenuhi beberapa tugas validator) ETH mereka yang ditaruhkan dapat secara perlahan berkurang, sedangkan perilaku curang yang dapat dibuktikan menyebabkan aset yang ditaruhkan "dipotong". Ini sangat mendorong partisipasi aktif dan jujur dalam mengamankan jaringan.
-Sama dengan bukti kerja, entitas yang jahat akan mengharuskan setidaknya 51% total ETH yang ditaruhkan dalam jaringan untuk mengeksekusi [serangan 51%](/glossary/#51-attack). Namun, tidak seperti pada bukti kerja, di mana kerugian potensial dari serangan yang gagal hanya merupakan biaya pembuatan daya hash yang diperlukan untuk menambang, pada bukti taruhan, kerugian yang mungkin dari suatu serangan adalah seluruh jumlah ETH yang digunakan sebagai jaminan. Struktur yang tidak mendukung ini memungkinkan keamanan jaringan dengan bukti taruhan, sekaligus menghapus kebutuhan untuk memakai energi pada komputasi arbitrari. Penjelasan lengkap dari keamanan jaringan di bawah bukti taruhan dapat ditemukan [di sini](/developers/docs/consensus-mechanisms/pos/) dan [di sini](https://vitalik.eth.limo/general/2017/12/31/pos_faq.html).
+Sama dengan bukti kerja, entitas yang jahat akan mengharuskan setidaknya 51% total ETH yang ditaruhkan dalam jaringan untuk mengeksekusi [serangan 51%](/glossary/#51%-attack). Namun, tidak seperti pada bukti kerja, di mana kerugian potensial dari serangan yang gagal hanya merupakan biaya pembuatan daya hash yang diperlukan untuk menambang, pada bukti taruhan, kerugian yang mungkin dari suatu serangan adalah seluruh jumlah ETH yang digunakan sebagai jaminan. Struktur yang tidak mendukung ini memungkinkan keamanan jaringan dengan bukti taruhan, sekaligus menghapus kebutuhan untuk memakai energi pada komputasi arbitrari. Penjelasan lengkap dari keamanan jaringan di bawah bukti taruhan dapat ditemukan [di sini](/developers/docs/consensus-mechanisms/pos/) dan [di sini](https://vitalik.eth.limo/general/2017/12/31/pos_faq.html).
## Penggabungan {#the-merge}
diff --git a/public/content/translations/id/enterprise/index.md b/public/content/translations/id/enterprise/index.md
index 5b0060ce92c..95621a5af84 100644
--- a/public/content/translations/id/enterprise/index.md
+++ b/public/content/translations/id/enterprise/index.md
@@ -33,7 +33,7 @@ Banyak bisnis dan konsorsium telah menyebarkan blockchain pribadi yang diizinkan
Perusahaan telah bereksperimen dengan teknologi blockchain sejak sekitar 2016, ketika proyek Hyperledger, Quorum, dan Corda diluncurkan. Fokusnya terutama pada blockchain perusahaan privat yang diizinkan, tapi sejak awal 2019 ada perubahan dalam pemikiran tentang blockchain publik vs privat untuk aplikasi bisnis. Sebuah [survei](https://assets.ey.com/content/dam/ey-sites/ey-com/en_gl/topics/blockchain/ey-public-blockchain-opportunity-snapshot.pdf) yang diadakan oleh Forrester menunjukkan bahwa "Responden survey ... melihat potensi ini, dengan 75% mengatakan bahwa mereka kemungkinan besar akan memanfaatkan blockchain publik di masa depan, dan hampir sepertiga mengatakan mereka sangat mungkin melakukan itu". Paul Brody dari EY telah [membahas](https://www.youtube.com/watch?v=-ycu5vGDdZw&feature=youtu.be&t=3668) tentang keuntungan membangun pada blockchain publik, yang (bergantung pada aplikasi) bisa mencakup keamanan/kekebalan yang lebih kuat, transparansi, biaya total kepemilikan yang lebih rendah, dan kemampuan untuk bekerja sama dengan semua aplikasi lainnya yang juga ada di Jaringan Utama (efek jaringan). Berbagi kerangka acuan umum antar perusahaan menghindari munculnya sejumlah silo terisolasi yang tidak perlu yang tidak bisa saling berkomunikasi dan berbagi atau sinkron satu sama lain.
-Pengembangan lainnya yang menggeser fokus ke blockchain publik adalah [Lapisan 2](/developers/docs/scaling/layer-2). Lapisan 2 terutama untuk kategori teknologi skalabilitas yang membuat aplikasi throughput tinggi mungkin ada di rantai publik. Tetapi solusi Lapisan 2 juga bisa [mengatasi beberapa tantangan lainnya yang mendorong pengembang perusahaan memilih rantai privat di masa lalu](https://entethalliance.org/how-ethereum-layer-2-scaling-solutions-address-barriers-to-enterprises-building-on-mainnet/).
+Pengembangan lainnya yang menggeser fokus ke blockchain publik adalah [Lapisan 2](/developers/docs/scaling/#layer-2-scaling). Lapisan 2 terutama untuk kategori teknologi skalabilitas yang membuat aplikasi throughput tinggi mungkin ada di rantai publik. Tetapi solusi Lapisan 2 juga bisa [mengatasi beberapa tantangan lainnya yang mendorong pengembang perusahaan memilih rantai privat di masa lalu](https://entethalliance.org/how-ethereum-layer-2-scaling-solutions-address-barriers-to-enterprises-building-on-mainnet/).
Protokol Baseline adalah salah satu proyek utama yang menentukan satu protokol yang memungkinkan kolaborasi rahasia dan rumit di antara perusahaan tanpa meninggalkan data sensitif apa pun secara on-chain. Proyek ini telah mendapatkan [momentum](https://www.oasis-open.org/2020/08/26/baseline-protocol-achieves-key-milestone-with-release-of-v0-1-implementation-for-enterprise/) signifikan sepanjang 2020.
@@ -52,7 +52,7 @@ Beberapa usaha kolaboratif untuk membuat Ethereum ramah bagi perusahaan telah di
- [Alchemy](https://www.alchemy.com/) _menyediakan layanan dan peralatan API untuk membangun dan mengawasi aplikasi di Ethereum_
- [Blockapps](https://blockapps.net/) _implementasi protokol Enterprise Ethereum, peralatan, dan API yang membentuk platform STRATO_
- [Chainstack](https://chainstack.com/) _infrastruktur jaringan utama dan testnet Ethereum yang dihost di cloud pelanggan publik dan terisolasi_
-- [ConsenSys](https://consensys.net/) _menyediakan daftar produk dan peralatan untuk membangun di Ethereum, maupun layanan konsultasi dan pengembangan kustom_
+- [ConsenSys](https://consensys.io/) _menyediakan daftar produk dan peralatan untuk membangun di Ethereum, maupun layanan konsultasi dan pengembangan kustom_
- [Envision Blockchain](https://envisionblockchain.com/) _menyediakan layanan konsultasi dan pengembangan yang berfokus pada perusahaan yang dikhususkan di Jaringan Utama Ethereum_
- [EY OpsChain](https://blockchain.ey.com/products/contract-manager) _menyediakan alur kerja pengadaan dengan menerbitkan RFQ, kontrak, pesanan pembelian, dan faktur di keseluruhan jaringan partner bisnis terpercaya Anda_
- [Hyperledger Besu](https://www.hyperledger.org/use/besu) _sebuah klien Ethereum sumber terbuka berfokus pada perusahaan yang dikembangkan di bawah lisensi Apache 2.0 dan ditulis dalam bahasa Java_
@@ -130,7 +130,6 @@ Berikut adalah beberapa aplikasi perusahaan yang telah digunakan pada Jaringan U
### Notarisasi data {#notarization-of-data}
- [BBVA](https://www.ledgerinsights.com/bbva-blockchain-loan-banking-tech-award/) _detail pinjaman terakhir di-hash dan dicatat di Jaringan Utama_
-- [Splunk](https://www.splunk.com/en_us/blog/security/the-newest-data-attack.html) _integritas data bisa dipastikan secara berkala dengan menulis hash dari data diindeks di Jaringan Utama_
- [ANSA](https://cointelegraph.com/news/italys-top-news-agency-uses-blockchain-to-fight-fake-coronavirus-news) _agensi berita terbesar di Italia yang melawan berita palsu dan memungkinkan pembaca memverifikasi sumber berita dengan mencatatnya di Jaringan Utama_
- [Verizon](https://decrypt.co/46745/verizon-news-press-releases-ethereum-full-transparency) _mencatat rilis berita di Ethereum untuk memastikan akuntabilitas dan kepercayaan perusahaan_
- [Breitling](https://www.coindesk.com/breitling-arianee-all-new-watches-ethereum) _mencatat sumber dan riwayat perbaikan pengawasan di Ethereum_
@@ -138,7 +137,6 @@ Berikut adalah beberapa aplikasi perusahaan yang telah digunakan pada Jaringan U
### Rantai pasokan {#supply-chain}
-- [CargoX](https://cargox.io/press-releases/full/cargox-becomes-first-public-blockchain-ethereum-bill-lading-provider-approved-international-group-pi-clubs) _penyedia konosemen dan pemindahan dokumen_
- [Morpheus.network](https://morpheus.network/) _platform otomatisasi rantai pasokan yang mengimplementasikan gabungan rantai privat dengan data ternotarisasi di Jaringan Utama Ethereum, dan digunakan oleh perusahaan seperti distributor makanan, minyak, dan gas di Kanada yaitu Federated Co-op Ltd. dan penyedia makanan binatang peliharaan di Argentina Vitalcan_
- [Minespider](https://www.minespider.com/) _pelacakan rantai pasokan_
- [ShipChain](https://shipchain.io) _sidechain Ethereum publik dan sistem perusahaan untuk visibilitas dan kepercayaan rantai pasokan, khususnya untuk logistik multimodal_
@@ -146,7 +144,6 @@ Berikut adalah beberapa aplikasi perusahaan yang telah digunakan pada Jaringan U
- [Pengadaan Jaringan EY OpsChain](https://blockchain.ey.com/products/contract-manager) _memungkinkan perusahaan terlibat dalam sebuah alur kerja pengadaan dengan menerbitkan RFQ, kontrak, pemesanan pembelian, dan faktur di keseluruhan jaringan dari rekan bisnis terpercaya Anda_
- [Treum](https://treum.io/) _menghadirkan transparansi, keterlacakan, dan kemampuan untuk diperdagangan pada rantai pasokan, menggunakan teknologi blockchain_
- [TradeTrust](https://www.tradetrust.io/) _memverifikasi electronic Bills of Lading (eBLs) untuk pengiriman internasional_
-- [Birra Peroni](https://www.ey.com/en_gl/news/2021/05/birra-peroni-is-the-first-industrial-organization-to-mint-unique-non-fungible-tokens-using-ey-opschain-traceability) _mencetak NFT untuk setiap batch bir baru, memungkinkan visibilitas dan efisiensi yang lebih baik di seluruh rantai pasokan_
### Kredensial dan sertifikasi {#credentials}
diff --git a/public/content/translations/id/enterprise/private-ethereum/index.md b/public/content/translations/id/enterprise/private-ethereum/index.md
index 0c7b94b3739..27a22731e36 100644
--- a/public/content/translations/id/enterprise/private-ethereum/index.md
+++ b/public/content/translations/id/enterprise/private-ethereum/index.md
@@ -24,4 +24,3 @@ Beberapa usaha kolaboratif untuk membuat Ethereum menjadi lebih ramah terhadap p
- [Hyperledger Besu](https://www.hyperledger.org/use/besu) _Klien Ethereum sumber terbuka yang dikembangkan di bawah lisensi Apache 2.0 dan ditulis dalam bahasa Java, yang mencakup beberapa algoritma konsensus termasuk PoW, dan PoA (IBFT, IBFT 2.0, Etherhash, dan Clique). Ini adalah skema pemberian izin lengkap yang dirancang secara khusus untuk digunakan dalam lingkungan konsorsium._
- [Hyperledger Burrow](https://www.hyperledger.org/projects/hyperledger-burrow) _klien blockchain modular dengan interpreter kontrak pintar yang berizin, dikembangkan sebagian untuk memenuhi spesifikasi Ethereum Virtual Machine (EVM)_
- [Kaleido](https://kaleido.io/) _platform tumpukan penuh untuk membangun dan menjalankan ekosistem perusahaan hibrida dan lintas-cloud_
-- [Quorum](https://consensys.net/quorum/) _sebuah platform blockchain perusahaan sumber terbuka berbasis Ethereum dengan fitur tingkat perusahaan lanjutan yang memungkinkan privasi, pemberian izin, dan kinerja_
diff --git a/public/content/translations/id/glossary/index.md b/public/content/translations/id/glossary/index.md
index 2af4f24e5e1..f2fa2e94b54 100644
--- a/public/content/translations/id/glossary/index.md
+++ b/public/content/translations/id/glossary/index.md
@@ -378,7 +378,7 @@ Label yang diberikan ke beberapa [EIP](#eip) yang berusaha untuk menentukan stan
Sebuah algoritma [bukti kerja](#pow) yang digunakan pada Ethereum sebelum bertransisi ke [bukti taruhan](#pos).
-[Baca lebih lanjut](/developers/docs/consensus-mechanisms/pow/mining-algorithms/ethash)
+[Baca lebih lanjut](/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/ethash)
### ether {#ether}
diff --git a/public/content/translations/id/history/index.md b/public/content/translations/id/history/index.md
index 43d3369792a..38f65bd40e3 100644
--- a/public/content/translations/id/history/index.md
+++ b/public/content/translations/id/history/index.md
@@ -27,11 +27,11 @@ Sedang mencari peningkatan protokol di masa mendatang? [Pelajari tentang upgrade
## 2023 {#2023}
-### Shanghai {#shanghai}
+### Shanghai-Capella ("Shapella") {#shapella}
-
+
-#### Ringkasan {#shanghai-summary}
+#### Ringkasan Shanghai {#shanghai-summary}
Peningkatan Shanghai membawa penarikan penaruhan ke Lapisan Eksekusi. Bersamaan dengan peningkatan Capella, ini memungkinkan blok menerima operasi penarikan, yang memungkinkan para staker menarik ETH mereka dari Rantai Suar ke lapisan eksekusi.
@@ -49,13 +49,7 @@ Peningkatan Shanghai membawa penarikan penaruhan ke Lapisan Eksekusi. Bersamaan
- [Baca spesifikasi meningkatkan Shanghai](https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/shanghai.md)
----
-
-### Capella {#capella}
-
-
-
-#### Ringkasan {#capella-summary}
+#### Ringkasan Capella {#capella-summary}
Peningkatan Capella adalah peningkatan utama ketiga pada lapisan konsensus (Rantai Suar) dan memungkinkan penarikan penaruhan. Capella terjadi secara bersamaan dengan upgrade lapisan eksekusi, Shanghai, dan mengaktifkan fungsionalitas penarikan penaruhan.
diff --git a/public/content/translations/id/roadmap/beacon-chain/index.md b/public/content/translations/id/roadmap/beacon-chain/index.md
index 36aba00e25d..899485564bc 100644
--- a/public/content/translations/id/roadmap/beacon-chain/index.md
+++ b/public/content/translations/id/roadmap/beacon-chain/index.md
@@ -28,7 +28,7 @@ Rantai Suar adalah nama yang diberikan kepada buku besar akun yang melakukan dan
Rantai Suar memperkenalkan [bukti taruhan](/developers/docs/consensus-mechanisms/pos/) pada Ethereum. Hal ini membuat Ethereum tetap aman dan membuat validator mendapatkan lebih banyak ETH dalam prosesnya. Dalam praktiknya, penaruhan melibatkan penaruhan ETH untuk mengaktifkan perangkat lunak validator. Sebagai penaruh, Anda menjalankan perangkat lunak yang membuat dan memvalidasi blok baru dalam chain.
-Penaruhan memiliki tujuan yang serupa dengan [penambangan](/developers/docs/mining/), tetapi berbeda dalam banyak hal. Penambangan membutuhkan pengeluaran besar di muka dalam bentuk perangkat keras yang kuat dan konsumsi energi, yang menghasilkan skala ekonomi, dan mendorong sentralisasi. Penambangan juga tidak dilengkapi dengan persyaratan untuk mengunci aset sebagai jaminan, membatasi kemampuan protokol untuk menghukum pelaku kejahatan setelah terjadi serangan.
+Penaruhan memiliki tujuan yang serupa dengan [penambangan](/developers/docs/consensus-mechanisms/pow/mining/), tetapi berbeda dalam banyak hal. Penambangan membutuhkan pengeluaran besar di muka dalam bentuk perangkat keras yang kuat dan konsumsi energi, yang menghasilkan skala ekonomi, dan mendorong sentralisasi. Penambangan juga tidak dilengkapi dengan persyaratan untuk mengunci aset sebagai jaminan, membatasi kemampuan protokol untuk menghukum pelaku kejahatan setelah terjadi serangan.
Transisi ke bukti taruhan membuat Ethereum secara signifikan lebih aman dan terdesentralisasi dibandingkan dengan bukti kerja. Semakin banyak orang yang berpartisipasi dalam jaringan, semakin terdesentralisasi dan aman dari serangan.
diff --git a/public/content/translations/id/roadmap/danksharding/index.md b/public/content/translations/id/roadmap/danksharding/index.md
index 2f374f1908a..8b092ba7714 100644
--- a/public/content/translations/id/roadmap/danksharding/index.md
+++ b/public/content/translations/id/roadmap/danksharding/index.md
@@ -15,7 +15,7 @@ summaryPoints:
## Apa yang dimaksud dengan Proto-Danksharding? {#what-is-protodanksharding}
-Proto-Danksharding, juga dikenal sebagai [EIP-4844](https://eips.ethereum.org/EIPS/eip-4844), adalah sebuah cara [rollup](/layer2/#rollups) untuk menambahkan data yang lebih murah ke dalam blok. Nama ini berasal dari dua peneliti yang mengusulkan ide tersebut: Protolambda dan Dankrad Feist. Saat ini, rollup terbatas pada seberapa murahnya mereka dapat melakukan transaksi pengguna karena mereka memposting transaksi mereka dalam `CALLDATA`. Ini mahal karena diproses oleh semua simpul Ethereum dan berada di rantai selamanya, meskipun rollup hanya membutuhkan data untuk waktu yang singkat. Proto-Danksharding memperkenalkan blob data yang dapat dikirim dan dilampirkan ke blok. Data dalam blob ini tidak dapat diakses oleh EVM dan secara otomatis dihapus setelah periode waktu tertentu (1-3 bulan). Ini berarti rollup dapat mengirimkan data mereka dengan lebih murah dan meneruskan penghematan tersebut kepada pengguna akhir dalam bentuk transaksi yang lebih murah.
+Proto-Danksharding, juga dikenal sebagai [EIP-4844](https://eips.ethereum.org/EIPS/eip-4844), adalah sebuah cara [rollup](/layer-2/#rollups) untuk menambahkan data yang lebih murah ke dalam blok. Nama ini berasal dari dua peneliti yang mengusulkan ide tersebut: Protolambda dan Dankrad Feist. Saat ini, rollup terbatas pada seberapa murahnya mereka dapat melakukan transaksi pengguna karena mereka memposting transaksi mereka dalam `CALLDATA`. Ini mahal karena diproses oleh semua simpul Ethereum dan berada di rantai selamanya, meskipun rollup hanya membutuhkan data untuk waktu yang singkat. Proto-Danksharding memperkenalkan blob data yang dapat dikirim dan dilampirkan ke blok. Data dalam blob ini tidak dapat diakses oleh EVM dan secara otomatis dihapus setelah periode waktu tertentu (1-3 bulan). Ini berarti rollup dapat mengirimkan data mereka dengan lebih murah dan meneruskan penghematan tersebut kepada pengguna akhir dalam bentuk transaksi yang lebih murah.
diff --git a/public/content/translations/id/roadmap/index.md b/public/content/translations/id/roadmap/index.md
index 91b0879f1dd..1d426ea829b 100644
--- a/public/content/translations/id/roadmap/index.md
+++ b/public/content/translations/id/roadmap/index.md
@@ -3,7 +3,7 @@ title: Peta Perjalanan Ethereum
description: Jalan menuju peningkatan skalabilitas, keamanan, dan keberlanjutan Ethereum.
lang: id
template: roadmap
-image: /roadmap/roadmap-main.png
+image: /heroes/roadmap-hub-hero.jpg
alt: "Peta Perjalanan Ethereum"
summaryPoints:
buttons:
@@ -59,7 +59,7 @@ Ethereum ditingkatkan secara rutin untuk meningkatkan skalabilitas, keamanan, at
-Peta jalan ini sebagian besar adalah hasil kerja bertahun-tahun dari para peneliti dan pengembang - karena protokol ini sangat teknis - tetapi setiap orang yang berminat boleh ikut serta. Ide-ide biasanya dimulai dari diskusi di forum seperti [ethresear.ch](https://ethresear.ch/), [Ethereum magicians](https://www.figma.com/exit?url=https%3A%2F%2Fethereum-magicians.org%2F) atau server discord Eth R&D. Ide-ide tersebut mungkin tanggapan terhadap kerentanan baru yang ditemukan, saran dari organisasi yang bekerja di lapisan aplikasi (seperti dapps dan bursa pertukaran) atau dari perselisihan yang diketahui oleh pengguna akhir (seperti biaya atau kecepatan transaksi). Ketika sudah matang, ide-ide ini dapat diusulkan sebagai [Proposal Peningkatan Ethereum](https://eips.ethereum.org/). Semua ini dilakukan di ruang publik sehingga setiap anggota komunitas dapat memberi masukan kapan saja.
+Peta jalan ini sebagian besar adalah hasil kerja bertahun-tahun dari para peneliti dan pengembang - karena protokol ini sangat teknis - tetapi setiap orang yang berminat boleh ikut serta. Ide-ide biasanya dimulai dari diskusi di forum seperti [ethresear.ch](https://ethresear.ch/), [Ethereum magicians](https://ethereum-magicians.org/) atau server discord Eth R&D. Ide-ide tersebut mungkin tanggapan terhadap kerentanan baru yang ditemukan, saran dari organisasi yang bekerja di lapisan aplikasi (seperti dapps dan bursa pertukaran) atau dari perselisihan yang diketahui oleh pengguna akhir (seperti biaya atau kecepatan transaksi). Ketika sudah matang, ide-ide ini dapat diusulkan sebagai [Proposal Peningkatan Ethereum](https://eips.ethereum.org/). Semua ini dilakukan di ruang publik sehingga setiap anggota komunitas dapat memberi masukan kapan saja.
[Selengkapnya tentang tata kelola Ethereum](/governance/)
diff --git a/public/content/translations/id/roadmap/single-slot-finality/index.md b/public/content/translations/id/roadmap/single-slot-finality/index.md
index efce220168a..a14515ebe6c 100644
--- a/public/content/translations/id/roadmap/single-slot-finality/index.md
+++ b/public/content/translations/id/roadmap/single-slot-finality/index.md
@@ -58,7 +58,7 @@ Masalah dengan penskalaan agregasi dengan meningkatkan jumlah validator per subn
## Kemajuan saat ini {#current-progress}
-SSF sedang dalam tahap penelitian. Ini tidak diharapkan akan diluncurkan dalam beberapa tahun ke depan, kemungkinan setelah peningkatan besar lainnya seperti [Verkle trees](/roadmap/verkle-trees/) dan [Danksharding](/roadmap/danksharding]).
+SSF sedang dalam tahap penelitian. Ini tidak diharapkan akan diluncurkan dalam beberapa tahun ke depan, kemungkinan setelah peningkatan besar lainnya seperti [Verkle trees](/roadmap/verkle-trees/) dan [Danksharding](/roadmap/danksharding/).
## Bacaan lebih lanjut {#further-reading}
diff --git a/public/content/translations/id/smart-contracts/index.md b/public/content/translations/id/smart-contracts/index.md
index 2e363aa8e6b..d0f10abdb1e 100644
--- a/public/content/translations/id/smart-contracts/index.md
+++ b/public/content/translations/id/smart-contracts/index.md
@@ -65,7 +65,7 @@ Mereka dapat melakukan komputasi, membuat mata uang, menyimpan data, mencetak NF
- [Stablecoin](/stablecoins/)
- [Membuat dan mendistribusikan aset digital unik](/nft/)
- [Bursa mata uang otomatis dan terbuka](/get-eth/#dex)
-- [Aktivitas game terdesentralisasi](/dapps/?category=gaming)
+- [Aktivitas game terdesentralisasi](/dapps/?category=gaming#explore)
- [Kebijakan asuransi yang melakukan pembayaran secara otomatis](https://etherisc.com/)
- [Standar yang memungkinkan orang untuk membuat mata uang yang disesuaikan dan dapat saling beroperasi](/developers/docs/standards/tokens/)
diff --git a/public/content/translations/it/about/index.md b/public/content/translations/it/about/index.md
index bc49cccc237..9ce78d79810 100644
--- a/public/content/translations/it/about/index.md
+++ b/public/content/translations/it/about/index.md
@@ -104,7 +104,7 @@ Usiamo una serie di [principi di progettazione](/contributing/design-principles/
Abbiamo costruito e implementato un [sistema la cui architettura](https://www.figma.com/file/NrNxGjBL0Yl1PrNrOT8G2B/ethereum.org-Design-System?node-id=0%3A1&t=QBt9RkhpPqzE3Aa6-1) consente una distribuzione più rapida delle funzioni, dando la possibilità ai membri della community di accedere alla progettazione aperta di ethereum.org.
-Voglia di far parte della squadra?[Scopri di più su Figma](https://www.figma.com/file/NrNxGjBL0Yl1PrNrOT8G2B/ethereum.org-Design-System), sul [ticket di GitHub](https://github.com/ethereum/ethereum-org-website/issues/6284) e unisciti alla conversazione nel nostro [canale #design di Discord](https://discord.gg/ethereum-org).
+Voglia di far parte della squadra?[Scopri di più su Figma](https://www.figma.com/file/NrNxGjBL0Yl1PrNrOT8G2B/ethereum.org-Design-System), sul [ticket di GitHub](https://github.com/ethereum/ethereum-org-website/issues/6284) e unisciti alla conversazione nel nostro [canale #design di Discord](https://discord.gg/bKycYhVUwV).
## Guida di stile {#style-guide}
diff --git a/public/content/translations/it/bridges/index.md b/public/content/translations/it/bridges/index.md
index c012e52508d..ba05086da97 100644
--- a/public/content/translations/it/bridges/index.md
+++ b/public/content/translations/it/bridges/index.md
@@ -6,7 +6,7 @@ lang: it
# Ponti della blockchain {#prerequisites}
-_Web3 si è evoluto in un ecosistema delle blockchain del L1 e soluzioni di ridimensionamento del L2, ognuna progettata con capacità e compromessi unici. All'aumentare del numero di protocolli delle blockchain, aumenta anche [la domanda di spostare risorse tra le catene](). Per soddisfare questa domanda, necessitiamo dei ponti._
+_Web3 si è evoluto in un ecosistema delle blockchain del L1 e soluzioni di ridimensionamento del L2, ognuna progettata con capacità e compromessi unici. All'aumentare del numero di protocolli delle blockchain, aumenta anche [la domanda di spostare risorse tra le catene](https://dune.xyz/eliasimos/Bridge-Away-(from-Ethereum)). Per soddisfare questa domanda, necessitiamo dei ponti._
@@ -30,7 +30,7 @@ I ponti esistono per connettere le blockchain, consentendo il trasferimento di i
I ponti consentono:
-- il trasferimento incrociato tra catene di risorse e informazioni
+- il trasferimento tra catene di risorse e informazioni.
- alle dapp, l'accesso ai punti di forza di varie blockchain, dunque, migliorandone le capacità (poiché i protocolli hanno ora più spazio di design per l'innovazione).
- agli utenti di accedere a nuove piattaforme e sfruttare i benefici di catene differenti.
- agli sviluppatori da ecosistemi della blockchain differenti, di collaborare e creare nuove piattaforme per gli utenti.
diff --git a/public/content/translations/it/community/code-of-conduct/index.md b/public/content/translations/it/community/code-of-conduct/index.md
index 4e20dda63e7..8fb7dd51747 100644
--- a/public/content/translations/it/community/code-of-conduct/index.md
+++ b/public/content/translations/it/community/code-of-conduct/index.md
@@ -4,6 +4,8 @@ description: Gli standard di base che ci impegniamo a rispettare negli spazi di
lang: it
---
+# Codice di condotta {#conduct-intro}
+
## Missione {#mission}
Sviluppare e mantenere l'hub più completo ed accessibile di conoscenza Ethereum.
@@ -52,7 +54,7 @@ Esempi di comportamenti inaccettabili da parte dei partecipanti sono:
- Violenza fisica, minaccia di violenza fisica o incitamento alla violenza fisica di qualsiasi tipo
- Utilizzare un linguaggio o un immaginario sessualizzato o imporre attenzioni sessuali indesiderate
-- Fingersi un'altra persona o dichiarare in altro modo disonesto l'affiliazione a una persona o a un'organizzazione.
+- Fingersi un'altra persona o dichiarare in altro modo disonesto l'affiliazione a una persona o a un'organizzazione
- Trolling, commenti offensivi/dispregiativi e attacchi personali o politici
- Molestare altri membri della community in canali pubblici o privati
- Pubblicare informazioni private altrui, come un indirizzo fisico o elettronico, senza un'autorizzazione esplicita
diff --git a/public/content/translations/it/community/events/index.md b/public/content/translations/it/community/events/index.md
index 8c301d3e7ec..d16f6c4ed27 100644
--- a/public/content/translations/it/community/events/index.md
+++ b/public/content/translations/it/community/events/index.md
@@ -5,7 +5,7 @@ lang: it
hideEditButton: true
---
-## Eventi in arrivo {#events}
+# Eventi in arrivo {#events}
**Ogni mese, ci sono importanti eventi Ethereum in tutto il mondo.** Prendi in considerazione di partecipare a un evento vicino a te per incontrare altre persone nella community, conoscere le opportunità di lavoro e sviluppare nuove competenze.
diff --git a/public/content/translations/it/community/get-involved/index.md b/public/content/translations/it/community/get-involved/index.md
index c7c8d27ab6a..ed744bb70e7 100644
--- a/public/content/translations/it/community/get-involved/index.md
+++ b/public/content/translations/it/community/get-involved/index.md
@@ -16,7 +16,7 @@ Inizia leggendo la missione e i valori di ethereum.org nel nostro [codice di con
- [Trova una ricompensa su Gitcoin](https://gitcoin.co/), lavora su una segnalazione tecnica di piccola o grande entità, guadagna in crypto!
- Partecipa ad un Hackathon vicino a te!
- Dai un'occhiata a [progetti relativi alla tua area di competenza o a linguaggi di programmazione di tua scelta](/developers/docs/programming-languages/)
-- Segui o partecipa alle [riunioni dei Core Dev](https://www.youtube.com/playlist?list=PLaM7G4Llrb7zfMXCZVEXEABT8OSnd4-7w)
+- Segui o partecipa alle [riunioni dei Core Dev](https://www.youtube.com/@EthereumProtocol)
- [Lista del programma di supporto degli ecosistemi](https://esp.ethereum.foundation/wishlist/) - strumenti, documentazione, e infrastrutture dove il programma di supporto per l'ecosistema Ethereum è attivamente alla ricerca di domande di sovvenzione
- [Web3Bridge](https://www.web3bridge.com/) - unisciti alla community di aspiranti web3 nella loro iniziativa per identificare, formare e supportare centinaia di sviluppatori e membri della community in tutta l'Africa
- Unisciti al [Discord Ethereum Cat Herders](https://discord.io/EthCatHerders)
@@ -28,7 +28,7 @@ Hai conoscenze di matematica, crittografia o economia? Potresti essere interessa
- Scrivi o revisiona una proposta di miglioramento di Ethereum (EIP)
- Scrivi una EIP
1. Manda la tua idea su [Ethereum Magicians](https://ethereum-magicians.org)
- 2. Leggi [EIP-1](https://eip.ethereum.org/EIPS/eip-1) - **Sì, questo è _l'intero_ documento.**
+ 2. Leggi [EIP-1](https://eips.ethereum.org/EIPS/eip-1) - **Sì, questo è _l'intero_ documento.**
3. Segui le indicazioni nella EIP-1. Fai riferimento a questo documento mentre scrivi la tua bozza.
- Scopri come diventare un [editor di EIP](https://eips.ethereum.org/EIPS/eip-5069)
- Puoi effettuare la revisione delle EIP dei colleghi proprio ora! Vedi [le PR aperte con l'etichetta `e-review`](https://github.com/ethereum/EIPs/pulls?q=is%3Apr+is%3Aopen+label%3Ae-review). Fornisci un feedback tecnico al collegamento `discussion-to`.
diff --git a/public/content/translations/it/community/grants/index.md b/public/content/translations/it/community/grants/index.md
index 36700de7138..a22f8fdb6f6 100644
--- a/public/content/translations/it/community/grants/index.md
+++ b/public/content/translations/it/community/grants/index.md
@@ -15,31 +15,25 @@ Questo elenco è curato dalla nostra comunità. Se c'è qualcosa di mancante o i
Questi programmi supportano il grande ecosistema di Ethereum offrendo sovvenzioni per un'ampia gamma di progetti, tra cui soluzioni per la scalabilità, la costruzione di community, la sicurezza, la privacy e molto altro. Queste sovvenzioni non sono specifiche per una data piattaforma Ethereum, e sono un buon punto di partenza per chi è ancora in fase esplorativa.
- [Programma di supporto per l'ecosistema EF](https://esp.ethereum.foundation) - _Finanziamento di progetti open source a favore di Ethereum, con particolare interesse agli strumenti universali, alle infrastrutture, alla ricerca e ai beni pubblici_
-- [Ethereum RFPs](https://github.com/ethereum/requests-for-proposals) - _Richieste di proposte (RFP) da parte della Fondazione Ethereum relative a progetti lavori e progetti nell'ecosistema Ethereum_
-- [MetaCartel](https://www.metacartel.org/grants/) - _Sviluppo di Dapp, creazione di DAO_
-- [Moloch DAO](https://www.molochdao.com/) - _Privacy, ridimensionamento di livello 2, sicurezza del client e molto altro_
-- [Sovvenzioni aperte](https://opengrants.com/explore)
+- [MetaCartel](https://www.metacartel.org/grants/) - _Sviluppo di dApp, creazione di DAO_
+- [Moloch DAO](https://www.molochdao.com/): _Privacy, ridimensionamento del livello 2, sicurezza del client e molto altro_
- [DAO Grants](https://docs.google.com/spreadsheets/d/1XHc-p_MHNRdjacc8uOEjtPoWL86olP4GyxAJOFO0zxY/edit#gid=0) - _Foglio di calcolo di Google delle organizzazioni che offrono sovvenzioni_
-- [Crunchbase per sovvenzioni Web3](https://www.cryptoneur.xyz/web3-grants) - _Filtra e cerca sovvenzioni per categorie, casi d'uso, importi e altro. Contribuisci ad aiutare gli altri a trovare la giusta sovvenzione._
- [Sovvenzioni accademiche](https://esp.ethereum.foundation/academic-grants) - _Sovvenzioni per sostenere il lavoro accademico correlato a Ethereum_
+- [Grantfarm di Blockworks](https://blockworks.co/grants/programs) - _Blockworks ha compilato una directory esaustiva di tutte le sovvenzioni, RDP e bug bounty._
## Programmi per progetti specifici {#project-specific}
Questi progetti hanno creato le proprie sovvenzioni per progetti volti a sviluppare e sperimentare la propria tecnologia.
- [Aave Grants Program](https://aavegrants.org/) – _[Aave](https://aave.com/) sovvenzioni DAO_
-- [Balancer](https://balancergrants.notion.site/Balancer-Community-Grants-23e562c5bc4347cd8304637bff0058e6) – _[Balancer](https://balancer.fi/) ecosystem fund_
+- [Balancer](https://quark-ceres-740.notion.site/Balancer-Grants-938f1b979810427f8d903a904315da41) – _[Balancer](https://balancer.fi/) ecosystem fund_
- [Chainlink Grants Program](https://chain.link/community/grants) - _Sovvenzioni per la comunity di [Chainlink](https://chain.link/)_
-- [Compound Grants Program](https://compoundgrants.org/) – _Ecosistema finanziario [Compound](https://compound.finance/)_
- [Decentraland Grants Program](https://governance.decentraland.org/grants/) - _Metaverso DAO di [Decentraland](https://decentraland.org/)_
-- [Lido Ecosystem Grants Organisation (LEGO)](https://lego.lido.fi/) – _Ecosistema finanziario di [Lido](https://lido.fi/)_
+- [Lido Ecosystem Grants Organisation (LEGO)](https://lido.fi/lego) – _Ecosistema finanziario di [Lido](https://lido.fi/)_
- [MetaMask Program](https://metamaskgrants.org/): _DAO di sovvenzioni operata dai dipendenti di [MetaMask](https://metamask.io/)_
-- [mStable Grants Program](https://docs.mstable.org/advanced/grants-program) - _Community [mStable](https://mstable.org/)_
-- [Programma di sovvenzioni della rete di SKALE](https://skale.space/developers#grants): _ecosistema della [rete di SKALE](https://skale.space/)_
-- [The Graph](https://airtable.com/shrdfvnFvVch3IOVm) – _ecosistema di [The Graph](https://thegraph.com/)_
-- [Programma di sovvenzioni UMA](https://grants.umaproject.org/): _supporto per sviluppatori di [UMA](https://umaproject.org/)_
-- [Programma di sovvenzioni di Uniswap](https://www.unigrants.org/) – _Comunità di [Uniswap](https://uniswap.org/)_
-- [Sovvenzioni Web3](https://web3grants.net): _un elenco completo di programmi di sovvenzione relativi a web3/cripto_
+- [SKALE Network Grants Program](https://skale.space/developers#grants): _ecosistema della [rete SKALE](https://skale.space/)_
+- [The Graph](https://airtable.com/shrdfvnFvVch3IOVm) – _Ecosistema di [The Graph](https://thegraph.com/)_
+- [Uniswap Grants Program](https://www.uniswapfoundation.org/apply-for-a-grant) - _Community di [Uniswap](https://uniswap.org/)_
## Finanziamento quadratico {#quadratic-funding}
diff --git a/public/content/translations/it/community/language-resources/index.md b/public/content/translations/it/community/language-resources/index.md
index 7d94c10d633..cdacbf750a4 100644
--- a/public/content/translations/it/community/language-resources/index.md
+++ b/public/content/translations/it/community/language-resources/index.md
@@ -72,7 +72,7 @@ Se sei bilingue e vuoi aiutarci a raggiungere più persone, puoi anche essere co
- [Gwei.cz](https://gwei.cz) - community locale sul Web3, crea contenuti educativi, organizza eventi online e di persona
- [Gwei.cz Příručka](https://prirucka.gwei.cz/) - Guida per principianti di Ethereum
- [DAO Příručka](https://dao.gwei.cz/) - guida per principianti alle DAO
-- [Mastering Ethereum](https://ipfs.infura-ipfs.io/ipfs/bafybeidvuxhnsgfx3tncpfxheqglkjwmdxclknlgd7s7qggd2a6bzgb27m) - Padroneggiare Ethereum in ceco
+- [Mastering Ethereum](https://ipfs.io/ipfs/bafybeidvuxhnsgfx3tncpfxheqglkjwmdxclknlgd7s7qggd2a6bzgb27m) - Padroneggiare Ethereum in ceco
### Francese {#fr}
diff --git a/public/content/translations/it/community/online/index.md b/public/content/translations/it/community/online/index.md
index e4501968092..39889358408 100644
--- a/public/content/translations/it/community/online/index.md
+++ b/public/content/translations/it/community/online/index.md
@@ -24,18 +24,18 @@ Centinaia di migliaia di appassionati di Ethereum si riuniscono in questi forum
Ethereum Cat Herders - community orientata all'offerta di assistenza per la gestione dei progetti per lo sviluppo di EthereumEthereum Hackers - Chat Discord gestita da ETHGlobal: una community online per gli hacker di Ethereum in tutto il mondoCryptoDevs - Community Discord focalizzata sullo sviluppo di Ethereum
-EthStaker Discord: guida, istruzione, assistenza e risorse gestite dalla comunità per gli staker esistenti e potenziali
+EthStaker Discord: guida, istruzione, assistenza e risorse gestite dalla comunità per gli staker esistenti e potenzialiEthereum.org website team - date un'occhiata e chattate sullo sviluppo e la progettazione di ethereum.org con il team e le persone della communityMatos Discord - community dei creatori di web3; un luogo di incontro per costruttori, figure industriali e appassionati di Ethereum. Siamo appassionati di sviluppo, progettazione e cultura del web3. Vieni a costruire con noi.
-Solidity Gitter - chat per lo sviluppo in solidity (Gitter)
+Solidity Gitter - chat per lo sviluppo in solidity (Gitter)Solidity Matrix - chat per lo sviluppo in solidity (Matrix)
-Ethereum Stack Exchange - _forum di domande e risposte_
-Peeranha _-forum decentralizzato di domande e risposte_
+Ethereum Stack Exchange - forum di domande e risposte
+Peeranha - forum decentralizzato di domande e risposte
## YouTube e Twitter {#youtube-and-twitter}
Ethereum Foundation - Mantieniti aggiornato con le ultime notizie dalla Ethereum Foundation
-@ethereum: Profilo ufficiale della Ethereum Foundation
+@ethereum - Profilo ufficiale della Ethereum Foundation@ethdotorg - Il portale per Ethereum, costruito per la nostra community globale in espansioneElenco di profili Twitter influenti di Ethereum
diff --git a/public/content/translations/it/community/research/index.md b/public/content/translations/it/community/research/index.md
index 181e0576898..4d066578c06 100644
--- a/public/content/translations/it/community/research/index.md
+++ b/public/content/translations/it/community/research/index.md
@@ -124,7 +124,7 @@ Una particolare area di Livello 2 che richiede maggior ricerca e sviluppo è que
- [Introduzione ai ponti della blockchain](/bridges/)
- [Vitalik riguardo ai ponti](https://old.reddit.com/r/ethereum/comments/rwojtk/ama_we_are_the_efs_research_team_pt_7_07_january/hrngyk8/)
- [Articolo sui ponti blockchain](https://medium.com/1kxnetwork/blockchain-bridges-5db6afac44f8)
-- [Il valore bloccato nei ponti]()
+- [Il valore bloccato nei ponti](https://dune.com/eliasimos/Bridge-Away-(from-Ethereum))
#### Ricerca recente {#recent-research-3}
@@ -156,7 +156,7 @@ L'[esecuzione di nodi](/developers/docs/nodes-and-clients/run-a-node/) su hardwa
#### Ricerca recente {#recent-research-5}
-- [ecdsa sui FGPA](https://ethresear.ch/t/does-ecdsa-on-fpga-solve-the-scaling-problem/6738)
+- [ecdsa su FPGA](https://ethresear.ch/t/does-ecdsa-on-fpga-solve-the-scaling-problem/6738)
## Sicurezza {#security}
@@ -346,7 +346,6 @@ Gli strumenti per gli sviluppatori di Ethereum stanno rapidamente migliorando. C
- [Quadri di sviluppo](/developers/docs/frameworks/)
- [Lista di strumenti per sviluppatori del livello di consenso](https://github.com/ConsenSys/ethereum-developer-tools-list)
- [Standard per i token](/developers/docs/standards/tokens/)
-- [Biastek: strumenti per Ethereum](https://biastek.com/ethereum-tools/)
- [CryptoDevHub: Strumenti per la EVM](https://cryptodevhub.io/wiki/ethereum-virtual-machine-tools)
#### Ricerca recente {#recent-research-17}
diff --git a/public/content/translations/it/community/support/index.md b/public/content/translations/it/community/support/index.md
index a509f632761..7e2ac219dad 100644
--- a/public/content/translations/it/community/support/index.md
+++ b/public/content/translations/it/community/support/index.md
@@ -39,7 +39,7 @@ Cerchi un portafoglio Ethereum? [Esplora il nostro elenco completo di portafogli
La costruzione può essere difficile. Ecco alcuni spazi focalizzati sullo sviluppo, con sviluppatori Ethereum esperti che sono felici di aiutarti.
- [Alchemy University](https://university.alchemy.com/#starter_code)
-- [CryptoDevs discord](https://discord.gg/Z9TA39m8Yu)
+- [CryptoDevs discord](https://discord.com/invite/5W5tVb3)
- [StackExchange Ethereum](https://ethereum.stackexchange.com/)
- [StackOverflow](https://stackoverflow.com/questions/tagged/web3)
- [Web3 University](https://www.web3.university/)
@@ -53,7 +53,7 @@ La tua domanda riguarda un particolare strumento, progetto o libreria? La maggio
Ecco alcuni esempi più diffusi:
-- [Solidity](https://gitter.im/ethereum/solidity)
+- [Solidity](https://gitter.im/ethereum/solidity/)
- [ethers.js](https://discord.gg/6jyGVDK6Jx)
- [web3.js](https://discord.gg/GsABYQu4sC)
- [Hardhat](https://discord.gg/xtrMGhmbfZ)
@@ -65,7 +65,7 @@ Ecco alcuni esempi più diffusi:
Se stai eseguendo un nodo o un validatore, ecco alcune community che sono dedicate ad aiutarti ad iniziare.
-- [EthStaker discord](https://discord.io/ethstaker)
+- [EthStaker discord](https://discord.gg/ethstaker)
- [EthStaker reddit](https://www.reddit.com/r/ethstaker)
La maggior parte dei team che costruiscono client di Ethereum hanno anche spazi dedicati, rivolti al pubblico, dove è possibile ottenere supporto e fare domande.
diff --git a/public/content/translations/it/contributing/adding-desci-projects/index.md b/public/content/translations/it/contributing/adding-desci-projects/index.md
index 8d2346205b6..19949dea063 100644
--- a/public/content/translations/it/contributing/adding-desci-projects/index.md
+++ b/public/content/translations/it/contributing/adding-desci-projects/index.md
@@ -37,7 +37,7 @@ In linea con la natura fluida di Ethereum, team e prodotti vanno e vengono e l'i
- assicurarsi che tutti i progetti soddisfino ancora i nostri criteri
- verificare che non ci siano prodotti suggeriti che soddisfano più criteri rispetto a quelli attualmente elencati
-Ethereum.org è mantenuto dalla comunità open source e ci affidiamo a essa per mantenere aggiornato questo elenco. Se noti che qualche informazione sui progetti elencati dev'essere aggiornata, sei pregato di aprire un ticket o una richiesta di pull sulla nostra repository di GitHub.
+Ethereum.org è mantenuto dalla comunità open source e ci affidiamo a essa per mantenere aggiornato questo elenco. Se noti qualche informazione sui progetti elencati che necessita di essere aggiornata, ti preghiamo di aprire un ticket o una richiesta di pull sulla nostra repository di GitHub.
## Condizioni d'uso {#terms-of-use}
diff --git a/public/content/translations/it/contributing/adding-exchanges/index.md b/public/content/translations/it/contributing/adding-exchanges/index.md
index e6e7906aa31..64605ccab51 100644
--- a/public/content/translations/it/contributing/adding-exchanges/index.md
+++ b/public/content/translations/it/contributing/adding-exchanges/index.md
@@ -20,7 +20,7 @@ Alla luce di ciò, abbiamo bisogno di ottenere alcune informazioni specifiche qu
## Di cosa abbiamo bisogno {#what-we-need}
-- Le limitazioni geografiche applicate alla piattaforma di scambio
+- Le limitazioni geografiche applicate alla piattaforma di scambio. Le restrizioni geografiche associate a un exchange devono essere spiegate nel dettaglio in una pagina o sezione dedicata sul sito dell'exchange.
- Le valute che gli utenti possono usare per acquistare ETH
- La prova che la piattaforma di scambio sia una società di trading legittima
- Qualsiasi altra informazione aggiuntiva in tuo possesso, ad esempio dati sulla società come gli anni di attività, il supporto finanziario, ecc.
diff --git a/public/content/translations/it/contributing/design/adding-design-resources/index.md b/public/content/translations/it/contributing/design/adding-design-resources/index.md
index a2f7b400f08..f696b61a581 100644
--- a/public/content/translations/it/contributing/design/adding-design-resources/index.md
+++ b/public/content/translations/it/contributing/design/adding-design-resources/index.md
@@ -4,6 +4,8 @@ description: Linee guida e requisiti per assicurare la qualità dei materiali di
lang: it
---
+# Aggiungere risorse di progettazione {#adding-design-resources}
+
Chiunque può suggerire nuovi materiali di progettazione per il [design e l'UX nella pagina Web3](/developers/docs/design-and-ux/).
Si prega di notare che questa pagina si occupa di fornire il valore dell'utente agli aspiranti designer in Web3. La sezione di progettazione non serve per pubblicizzare i tuoi servizi, prodotti o piattaforme.
diff --git a/public/content/translations/it/contributing/index.md b/public/content/translations/it/contributing/index.md
index 60905f99df7..2891fd19fe7 100644
--- a/public/content/translations/it/contributing/index.md
+++ b/public/content/translations/it/contributing/index.md
@@ -4,7 +4,7 @@ description: Scopri i vari modi in cui puoi contribuire a ethereum.org
lang: it
---
-# Contribuire a ethereum.org {#contributing-to-ethereumorg}
+# Contribuire a ethereum.org {#contributing-to-ethereumorg}
Il sito web di ethereum.org e, più in generale, Ethereum, è un progetto open-source. Quindi, se vuoi contribuire a migliorare [il nostro portale per Ethereum](/about/), ecco come puoi fare.
@@ -33,7 +33,7 @@ Il sito web di ethereum.org e, più in generale, Ethereum, è un progetto open-s
- [Quiz](/contributing/quizzes/)_: aggiungi, aggiorna ed elimina le banche di domande dei quiz per una pagina rilevante_
- [Suggerisci una risorsa di progettazione](/contributing/design/adding-design-resources/)_: aggiungi, aggiorna ed elimina le risorse di progettazione utili_
-_Hai domande?_ Consulta il nostro [server Discord](https://discord.gg/ethereum-org)
+_Hai domande?_ Consulta il nostro [server Discord](https://discord.gg/ethereum-org)
## Come lavorare su ethereum.org {#how-to-update-content}
@@ -77,13 +77,24 @@ Se il tuo contributo viene inserito su ethereum.org, conieremo per te un POAP di
### Come richiederlo {#how-to-claim}
-1. Unisciti al nostro [server Discord](https://discord.gg/ethereum-org).
+1. Unisciti al nostro [server Discord](https://discord.gg/E8dET2ux8y).
2. Incolla un link al tuo contributo nel [canale](https://discord.com/channels/714888181740339261/804005643211898911) `# | poaps`.
3. Attendi che un membro del nostro team ti invii un link al tuo POAP.
4. Richiedi il tuo POAP!
Dovresti usare solo portafogli autosufficienti per rivendicare i POAP. Non usare conti di scambio o altri conti di cui non possiedi le chiavi private, poiché non ti consentiranno di accedere a e di gestire i tuoi POAP.
-## Collaboratori {#contributors}
+## Rivendica il tuo GitPOAP {#claim-gitpoap}
+
+Inoltre, GitPOAP riconoscerà automaticamente il tuo contributo, consentendoti di coniare un POAP unico e separato per i collaboratori, sulla sua stessa piattaforma!
+
+### Come reclamare {#how-to-claim}
+
+1. Visita [GitPOAP](https://www.gitpoap.io).
+2. Connettilo con il tuo portafoglio, o persino con la tua email tramite l'opzione d'accesso.
+3. Cerca il tuo nome utente di GitHub, l'indirizzo ETH, i nomi ENS o qualsiasi GitPOAP per verificare se sei idoneo.
+4. Se il tuo profilo di GitHub è idoneo, potrai coniare un GitPOAP!
+
+## Hanno contribuito {#contributors}
diff --git a/public/content/translations/it/contributing/translation-program/faq/index.md b/public/content/translations/it/contributing/translation-program/faq/index.md
index 7746001a38b..fcd38a9dad8 100644
--- a/public/content/translations/it/contributing/translation-program/faq/index.md
+++ b/public/content/translations/it/contributing/translation-program/faq/index.md
@@ -116,4 +116,4 @@ A breve prevediamo di aggiungere il supporto per l'inserimento di contenuti non
## Contattaci {#contact}
-Grazie per aver letto tutte queste informazioni. Speriamo che ti aiutino a muovere i primi passi nel nostro programma. Sentiti libero/a di unirti al nostro [canale di traduzione Discord](https://discord.gg/ethereum-org) per fare domande e collaborare con altri traduttori, o contattarci a translations@ethereum.org!
+Grazie per aver letto tutte queste informazioni. Speriamo che ti aiutino a muovere i primi passi nel nostro programma. Sentiti libero/a di unirti al nostro [canale di traduzione Discord](https://discord.gg/XVepFu7sqR) per fare domande e collaborare con altri traduttori, o contattarci a translations@ethereum.org!
diff --git a/public/content/translations/it/contributing/translation-program/how-to-translate/index.md b/public/content/translations/it/contributing/translation-program/how-to-translate/index.md
index d31666d10a9..65dd54651b2 100644
--- a/public/content/translations/it/contributing/translation-program/how-to-translate/index.md
+++ b/public/content/translations/it/contributing/translation-program/how-to-translate/index.md
@@ -18,7 +18,7 @@ Se preferisci un approccio più visivo, consulta la guida di Luka per l'impostaz
Dovrai accedere al tuo profilo di Crowdin o registrarti se non ne hai già uno. Per iscriversi bastano un account di posta elettronica e una password.
-
+
Unisciti al progetto
diff --git a/public/content/translations/it/contributing/translation-program/index.md b/public/content/translations/it/contributing/translation-program/index.md
index 8b409f7d3fd..4c7ee00926e 100644
--- a/public/content/translations/it/contributing/translation-program/index.md
+++ b/public/content/translations/it/contributing/translation-program/index.md
@@ -22,7 +22,7 @@ Il Programma di Traduzione di ethereum.org è aperto e tutti possono contribuire
_Unisciti a [Discord di ethereum.org](/discord/) per collaborare alle traduzioni, fare domande, condividere feedback e idee, o unirsi a un gruppo di traduzione._
-
+
Inizia a tradurre
@@ -77,7 +77,7 @@ Per altri utili strumenti di traduzione, le comunità di traduttori e i post del
## Contattaci {#get-in-touch}
-Hai domande? O desideri collaborare con il nostro team e altri traduttori? Ti invitiamo a pubblicare nel canale #translations del nostro [server Discord ethereum.org](https://discord.gg/ethereum-org)
+Hai domande? O desideri collaborare con il nostro team e altri traduttori? Ti invitiamo a pubblicare nel canale #translations del nostro [server Discord ethereum.org](https://discord.gg/6WX7E97)
Puoi anche contattarci all'indirizzo translations@ethereum.org
diff --git a/public/content/translations/it/decentralized-identity/index.md b/public/content/translations/it/decentralized-identity/index.md
index b4465c87025..a80d6b0abd8 100644
--- a/public/content/translations/it/decentralized-identity/index.md
+++ b/public/content/translations/it/decentralized-identity/index.md
@@ -49,7 +49,7 @@ Gli identificativi decentralizzati sono memorizzati su libri mastri distribuiti
## Cosa rende possibili gli identificativi decentralizzati? {#what-makes-decentralized-identifiers-possible}
-### 1. Infrastruttura a Chiave Pubblica (PKI) {#public-key-infrastructure}
+### 1. Infrastruttura a Chiave Pubblica (PKI) {#public-key-cryptography}
L'infrastruttura a chiave pubblica (PKI) è una misura di sicurezza delle informazioni che genera una [chiave pubblica](/glossary/#public-key) e una [chiave privata](/glossary/#private-key), per un'entità. La criittografia della chiave pubblica è utilizzata nelle reti blockchain per autenticare le identità degli utenti e dimostrare la proprietà delle risorse digitali.
@@ -161,6 +161,7 @@ Esistono molti progetti ambiziosi che utilizzano Ethereum come base, per le solu
- **[Prova di Umanità](https://www.proofofhumanity.id)**: _La Prova di Umanità (o PoH), è un sistema di verifica dell'identità sociale, basato su Ethereum._
- **[BrightID](https://www.brightid.org/)**: _Una rete decentralizzata e open source di identità sociale, ideata per riformare la verifica dell'identità tramite la creazione e analisi di un grafico sociale._
- **[Passaporto di Prova di Personalità](https://proofofpersonhood.com/)**: _Un aggregatore decentralizzato di identità digitali._
+- **[walt.id](https://walt.id)**: _Infrastruttura open source di identità decentralizzata e portafoglio che consente a sviluppatori e organizzazioni di sfruttare l'identità auto-sovrana e gli NFT/SBT._
## Lettura consigliate {#further-reading}
@@ -170,16 +171,19 @@ Esistono molti progetti ambiziosi che utilizzano Ethereum come base, per le solu
- [Cos'è l'ERC-725 di Ethereum? Gestione dell'Identità Sovrana Personale sulla Blockchain](https://cryptoslate.com/what-is-erc725-self-sovereign-identity-management-on-the-blockchain/) — _Sam Town_
- [Come la Blockchain potrebbe risolvere il problema dell'Identità Digitale](https://time.com/6142810/proof-of-humanity/) — _Andrew R. Chow_
- [Cos'è l'Identità Decentralizzata e Perché Dovrebbe Interessarti?](https://web3.hashnode.com/what-is-decentralized-identity) — _Emmanuel Awosika_
+- [Introduzione all'Identità decentralizzata](https://walt.id/white-paper/digital-identity) - _Dominik Beron_
### Video {#videos}
- [Identità Decentralizzata (Sessione Live Bonus)](https://www.youtube.com/watch?v=ySHNB1za_SE&t=539s) — _Un ottimo video esplicativo sull'identità decentralizzata, di Andreas Antonopolous_
- [Accedi con Ethereum e l'Identità Decentralizzata con Ceramic, IDX, React e 3ID Connect](https://www.youtube.com/watch?v=t9gWZYJxk7c) — _Tutorial di YouTube sulla creazione di un sistema di gestione dell'identità, per creare, leggere e aggiornare il profilo di un utente, utilizzandone il portafoglio di Ethereum; di Nader Dabit_
- [BrightID: Identità Decentralizzata su Ethereum](https://www.youtube.com/watch?v=D3DbMFYGRoM) — _Episodio del podcast "Bankless", incentrato su BrightID, una soluzione di identità decentralizzata per Ethereum_
-- [L'Internet esterno alla Catena: Identità Decentralizzata e Credenziali Verificabili](https://www.youtube.com/watch?v=EZ_Bb6j87mg) — Presentazione dell'EthDenver del 2022, di Evin McMullen
+- [L'Internet esterno alla Catena: Identità Decentralizzata e Credenziali Verificabili](https://www.youtube.com/watch?v=EZ_Bb6j87mg) — _Presentazione dell'EthDenver del 2022, di Evin McMullen_
+- [Credenziali verificabili spiegate](https://www.youtube.com/watch?v=ce1IdSr-Kig) _Video esplicativo su YouTube con dimostrazione di Tamino Baumann_
### Community {#communities}
- [ERC-725 Alliance su GitHub](https://github.com/erc725alliance) — _Sostenitori dello standard ERC-725 per la gestione dell'identità sulla blockchain di Ethereum_
- [Server Discord di SpruceID](https://discord.com/invite/Sf9tSFzrnt) — _Community per appassionati e sviluppatori, al lavoro su "Accedi con Ethereum"_
- [Veramo Labs](https://discord.gg/sYBUXpACh4) — _Una community di sviluppatori, che contribuiscono alla creazione di un quadro per i dati verificabili per le applicazioni_
+- [walt.id](https://discord.com/invite/AW8AgqJthZ) -- _Una comunità di sviluppatori e costruttori che lavorano a casi d'uso dell'identità decentralizzata che coinvolgono diversi settori_
diff --git a/public/content/translations/it/defi/index.md b/public/content/translations/it/defi/index.md
index 58943a37eb2..4aecd77b8df 100644
--- a/public/content/translations/it/defi/index.md
+++ b/public/content/translations/it/defi/index.md
@@ -47,7 +47,7 @@ Uno dei metodi migliori per individuare il potenziale della DeFi, è comprendere
| I mercati sono sempre aperti. | I mercati chiudono, poiché i dipendenti necessitano di pause. |
| Si basa sulla trasparenza: chiunque può esaminare i dati di un prodotto e ispezionare il funzionamento del sistema. | Gli istituti finanziari sono libri chiusi: non puoi chiedere di visualizzarne lo storico dei prestiti o i registri delle risorse gestite, e così via. |
-
+
Esplora le app della DeFi
@@ -65,7 +65,7 @@ Sembra strano... "perché dovrei voler programmare il mio denaro"? Eppure, quest
Esplora i nostri suggerimenti per le applicazioni della DeFi da provare, se sei nuovo su Ethereum.
-
+
Esplora le app di DeFi
@@ -92,7 +92,7 @@ Esiste un'alternativa decentralizzata a gran parte dei servizi finanziari. Ma Et
Essendo una blockchain, Ethereum è progettato per inviare le transazioni in modo sicuro e globale. Come Bitcoin, anche Ethereum rende l'invio di denaro in tutto il mondo, tanto facile quanto inviare un'email. È sufficiente inserire il [nome ENS](/nft/#nft-domains) del destinatario (come bob.eth), o l'indirizzo del suo conto, dal proprio portafoglio, e il pagamento arriverà (solitamente) in pochi minuti. Per inviare o ricevere pagamenti, necessiterai di un [portafoglio](/wallets/).
-
+
Visualizza le dApp di pagamento
@@ -123,7 +123,7 @@ L'assunzione di prestiti dai fornitori decentralizzati, si presenta in due varie
- Tra pari: un debitore assume un prestito direttamente da un creditore specifico.
- In un gruppo: in cui creditori forniscono fondi (liquidità) a un gruppo, da cui i debitori possono assumere un prestito.
-
+
Vedi le dApp di assunzione di prestiti
@@ -183,7 +183,7 @@ Puoi maturare interessi sulle tue criptovalute, erogandole e accrescendo i tuoi
- Le tue aDai incrementerebbero a seconda dei tassi di interesse, e potresti visualizzare l'accrescimento del tuo saldo nel tuo portafoglio. A seconda dell'APR, il saldo del tuo portafoglio raggiungerebbe all'incirca 100,1234, doopo pochi giorni, o persino dopo poche ore!
- Puoi prelevare un importo di DAI regolare, pari al tuo saldo di aDai, in qualsiasi momento.
-
+
Consulta le dapp di erogazione di prestiti
@@ -211,7 +211,7 @@ Esistono migliaia di token su Ethereum. Le piattaforme di scambio decentralizzat
Ad esempio, se desideri utilizzare la lotteria priva di perdite di PoolTogheter (descritta sopra), necessiterai di un token come DAI o USDC. Queste DEX ti consentono di scambiare i tuoi ETH per tali token, e viceversa quando hai finito.
-
+
Visualizza le piattaforme di scambio di token
@@ -223,7 +223,7 @@ Esistono delle opzioni più avanzate per i trader che preferiscono avere un po'
Se utilizzi una piattaforma di scambio centralizzata, devi depositare le tue risorse prima di scambiarle e affidarti a essa, affinché se ne occupi. Mentre le tue risorse sono depositate, sono a rischio, poiché le piattaforme di scambio centralizzate sono bersagli attraenti per gli hacker.
-
+
Consulta le dapp di trading
@@ -235,7 +235,7 @@ Su Ethereum, esistono dei prodotti di gestione dei fondi, che proveranno ad accr
Un buon esempio è il [fondo DeFi Pulse Index (DPI)](https://defipulse.com/blog/defi-pulse-index/). Si tratta di un fondo che si ribilancia automaticamente per garantire che il tuo portafoglio includa sempre [i migliori token DeFi per capitalizzazione di mercato](https://www.coingecko.com/en/defi). Non dovrai mai gestire alcun dettaglio e potrai prelevare dai fondi, in qualsiasi momento.
-
+
Consulta le dapp d'investimento
@@ -249,7 +249,7 @@ Ethereum è una piattaforma ideale per il crowdfunding:
- È trasparente, così che i finanziatori possano dimostrare quanto denaro è stato raccolto. È persino possibile tracciare quanti fondi sono stati spesi in seguito.
- I finanziatori possono configurare dei rimborsi automatici se, ad esempio, ci sono scadenze specifiche o se un importo minimo non è soddisfatto.
-
+
Consulta le dapp di crowdfunding
@@ -276,7 +276,7 @@ Le assicurazioni decentralizzate mirano a rendere le assicurazioni più economic
I prodotti di Ethereum, come qualsiasi altro software, possono essere soggetti a bug ed exploit. Quindi, al momento, molti prodotti assicurativi nello spazio, si incentrano sulla protezione degli utenti dalla perdita dei fondi. Esistono però progetti che iniziano a proporre coperture contro tutti i possibili eventi che la vita può portare con sé. Un ottimo esempio è la copertura Etherisc's Corp, mirata a [proteggere i piccoli agricoltori in Kenya dalle siccità e le inondazioni](https://blog.etherisc.com/etherisc-teams-up-with-chainlink-to-deliver-crop-insurance-in-kenya-137e433c29dc). L'assicurazione decentralizzata può fornire coperture più economiche per gli agricoltori, spesso tagliati fuori dalle assicurazioni tradizionali.
-
+
Consulta le dApp assicurative
@@ -286,7 +286,7 @@ I prodotti di Ethereum, come qualsiasi altro software, possono essere soggetti a
Con così tante cose in ballo, necessiterai di un metodo per monitorare tutti i tuoi investimenti, prestiti e scambi. Esistono molti prodotti che ti consentono di coordinare tutte le tue attività di DeFi, da un singolo posto. È il bello dell'architettura aperta della DeFi. I team possono creare interfacce da cui puoi non soltanto visualizzare i tuoi saldi tra i vari prodotti, ma puoi anche utilizzarne le funzionalità. Potresti trovarlo utile, esplorando di più sulla DeFi.
-
+
Consulta le dapp del portfolio
diff --git a/public/content/translations/it/desci/index.md b/public/content/translations/it/desci/index.md
index 092c70193c9..32bc5f29a60 100644
--- a/public/content/translations/it/desci/index.md
+++ b/public/content/translations/it/desci/index.md
@@ -18,7 +18,7 @@ La scienza decentralizzata (DeSci) è un movimento che mira alla creazione di un
La DeSci vuole creare un ecosistema in cui gli scienziati siano incentivati alla condivisione aperta delle proprie ricerche, ricevendo credito per il proprio operato, pur consentendo a chiunque di accedere e contribuire facilmente alla ricerca. La DeSci sfrutta l'idea che la conoscenza scientifica dovrebbe essere accessibile a tutti e che il procedimento di ricerca scientifica dovrebbe essere trasparente. La DeSci punta a creare un modello di ricerca scientifica più decentralizzato e distribuito, rendendolo più resistente alla censura e al controllo delle autorità centrali. La DeSci spera di creare un ambiente in cui le idee innovative e non convenzionali, possano prosperare, decentralizzando l'accesso a finanziamenti, strumenti scientifici e canali di comunicazione.
-La scienza decentralizzata consente fonti di finanziamento più diversificate (dalle [DAO](/dao/) alle [donazioni quadratiche](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2003531), fino al crowdfunding, e molto altro), accesso a dati e metodi più accessibile, fornendo incentivi per la riproducibilità.
+La scienza decentralizzata consente fonti di finanziamento più diversificate (dalle [DAO](/dao/), le [donazioni quadratiche](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2003531), al crowdfunding e molto altro), dati e metodi più accessibili, e fornendo incentivi per la riproducibilità.
### Juan Benet: Il Movimento della DeSci
@@ -68,7 +68,7 @@ Il modello standard odierno per il finanziamento scientifico, prevede che indivi
Degli studi hanno dimostrato che i comitati di revisione delle sovvenzioni, svolgono un lavoro mediocre nella selezione di proposte di alta qualità, poiché le stesse proposte, date a diversi comitati, producono risultati ampiamente differenti. Al ridursi dei finanziamenti, questi si concentrano su un gruppo più piccolo di ricercatori più anziani, con progetti intellettualmente più conservatori. L'effetto ha creato un panorama di finanziamento super competitivo, radicando incentivi perversi e asfissiando l'innovazione.
-Il Web3 ha il potenziale di sconvolgere tale modello corrotto di finanziamento, sperimentando con svariati modelli d'incentivazione, ampiamente sviluppati dalle DAO e dal Web3. Il [finanziamento retroattivo dei beni pubblici](https://medium.com/ethereum-optimism/retroactive-public-goods-funding-33c9b7d00f0c), il [finanziamento quadratico](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2003531), la [governance delle DAO](https://www.antler.co/blog/daos-and-web3-governance) e le [strutture d'incentivazione tokenizzate](https://cdixon.org/2017/05/27/crypto-tokens-a-breakthrough-in-open-network-design), sono solo alcuni degli strumenti del Web3 che potrebbero rivoluzionare il finanziamento scientifico.
+Il Web3 ha il potenziale di sconvolgere tale modello corrotto di finanziamento, sperimentando con svariati modelli d'incentivazione, ampiamente sviluppati dalle DAO e dal Web3. Il [finanziamento retroattivo dei beni pubblici](https://medium.com/ethereum-optimism/retroactive-public-goods-funding-33c9b7d00f0c), il [finanziamento quadratico](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2003531), la [governance delle DAO](https://www.antler.co/blog/daos-and-web3-governance-the-promise-implications-and-challenges-ahead) e le [strutture d'incentivazione tokenizzate](https://cdixon.org/2017/05/27/crypto-tokens-a-breakthrough-in-open-network-design), sono solo alcuni degli strumenti del Web3 che potrebbero rivoluzionare il finanziamento scientifico.
### Proprietà e sviluppo della IP {#ip-ownership}
@@ -103,7 +103,7 @@ Esplora i progetti e unisciti alla community della DeSci.
- [OceanDAO: finanziamenti governati dalla DAO per la scienza relativa ai dati](https://oceanprotocol.com/dao)
- [Opscientia: flussi di lavoro scientifici decentralizzati e aperti](https://opsci.io/research/)
- [LabDAO: piega una proteina in silico](https://alphafodl.vercel.app/)
-- [Bio.xyz: ricevi finanziamenti per la tua DAO biotecnologica o il tuo progetto di DeSci](https://www.molecule.to/)
+- [Bio.xyz: ricevi finanziamenti per la tua DAO biotecnologica o il tuo progetto di DeSci](https://www.bio.xyz/)
- [ResearchHub: pubblica un risultato scientifico e conversa con i colleghi](https://www.researchhub.com/)
- [VitaDAO: ricevi finanziamenti tramite accordi di ricerca sponsorizzati per la ricerca di longevità](https://www.vitadao.com/)
- [Fleming Protocol: economia dei dati open source che alimenta la scoperta biomedica collaborativa](https://medium.com/@FlemingProtocol/a-data-economy-for-patient-driven-biomedical-innovation-9d56bf63d3dd)
diff --git a/public/content/translations/it/developers/docs/accounts/index.md b/public/content/translations/it/developers/docs/accounts/index.md
index 04895dd9a25..f1e9c887e49 100644
--- a/public/content/translations/it/developers/docs/accounts/index.md
+++ b/public/content/translations/it/developers/docs/accounts/index.md
@@ -1,6 +1,6 @@
---
title: Conti di Ethereum
-description: "Una spiegazione dei conti di Ethereum: loro struttura dei dati e relazioni con la crittografia con coppie di chiavi."
+description: 'Una spiegazione dei conti di Ethereum: loro struttura dei dati e relazioni con la crittografia con coppie di chiavi.'
lang: it
---
diff --git a/public/content/translations/it/developers/docs/apis/backend/index.md b/public/content/translations/it/developers/docs/apis/backend/index.md
index 6b1169a0915..b412ba43f6d 100644
--- a/public/content/translations/it/developers/docs/apis/backend/index.md
+++ b/public/content/translations/it/developers/docs/apis/backend/index.md
@@ -164,8 +164,8 @@ Queste librerie eliminano buona parte della complessità legata al dover interag
**Tokenview -** **_La piattaforma generale per API blockchain multi-criptovaluta._**
- [services.tokenview.io](https://services.tokenview.io/)
-- [Documentazione](https://services.tokeniew/docs?type=api)
-- [Github](https://github.com/Tokenview)
+- [Documentazione](https://services.tokenview.io/docs?type=api)
+- [GitHub](https://github.com/Tokenview)
## Letture consigliate {#further-reading}
diff --git a/public/content/translations/it/developers/docs/apis/json-rpc/index.md b/public/content/translations/it/developers/docs/apis/json-rpc/index.md
index e046243bd82..bd0fd1ee645 100644
--- a/public/content/translations/it/developers/docs/apis/json-rpc/index.md
+++ b/public/content/translations/it/developers/docs/apis/json-rpc/index.md
@@ -149,13 +149,13 @@ Nessuno
**Esempio**
```js
-// Request
+// Richiesta
curl -X POST --data '{"jsonrpc":"2.0","method":"web3_clientVersion","params":[],"id":67}'
-// Result
+// Risultato
{
"id":67,
"jsonrpc":"2.0",
- "result": "Mist/v0.9.3/darwin/go1.4.1"
+ "result": "Geth/v1.12.1-stable/linux-amd64/go1.19.1"
}
```
@@ -304,18 +304,63 @@ Nessuno
**Restituisce**
-`Object|Boolean`, Un oggetto con i dati dello stato di sincronizzazione o `FALSE`, quando non è in sincronizzazione:
+I dati restituiti precisi variano a seconda delle implementazioni del client. Tutti i client restituiscono `False` quando il nodo non si sta sincronizzando, e tutti i client restituiscono i seguenti campi.
+
+`Object|Boolean`, un oggetto con i dati dello stato di sincronizzazione o `FALSE`, quando non è in sincronizzazione:
- `startingBlock`: `QUANTITY` - Il blocco in cui è iniziata l'importazione (si ripristina soltanto dopo che la sincronizzazione ha raggiunto la sua testa)
- `currentBlock`: `QUANTITY` - Il blocco corrente, uguale a eth_blockNumber
- `highestBlock`: `QUANTITY` - Il blocco più alto stimato
+Tuttavia, i singoli client potrebbero anche fornire ulteriori dati. Ad esempio, Geth, restituisce quanto segue:
+
+```json
+{
+ "jsonrpc": "2.0",
+ "id": 1,
+ "result": {
+ "currentBlock": "0x3cf522",
+ "healedBytecodeBytes": "0x0",
+ "healedBytecodes": "0x0",
+ "healedTrienodes": "0x0",
+ "healingBytecode": "0x0",
+ "healingTrienodes": "0x0",
+ "highestBlock": "0x3e0e41",
+ "startingBlock": "0x3cbed5",
+ "syncedAccountBytes": "0x0",
+ "syncedAccounts": "0x0",
+ "syncedBytecodeBytes": "0x0",
+ "syncedBytecodes": "0x0",
+ "syncedStorage": "0x0",
+ "syncedStorageBytes": "0x0"
+ }
+}
+```
+
+Mentre Besu restituisce:
+
+```json
+{
+ "jsonrpc": "2.0",
+ "id": 51,
+ "result": {
+ "startingBlock": "0x0",
+ "currentBlock": "0x1518",
+ "highestBlock": "0x9567a3",
+ "pulledStates": "0x203ca",
+ "knownStates": "0x200636"
+ }
+}
+```
+
+Si rimanda alla documentazione del client specifico per ulteriori dettagli.
+
**Esempio**
```js
-// Request
+// Richiesta
curl -X POST --data '{"jsonrpc":"2.0","method":"eth_syncing","params":[],"id":1}'
-// Result
+// Risultato
{
"id":1,
"jsonrpc": "2.0",
@@ -325,7 +370,7 @@ curl -X POST --data '{"jsonrpc":"2.0","method":"eth_syncing","params":[],"id":1}
highestBlock: '0x454'
}
}
-// Or when not syncing
+// O quando non sta sincronizzando
{
"id":1,
"jsonrpc": "2.0",
@@ -343,14 +388,14 @@ Nessuno
**Restituisce**
-`DATA`, 20 byte; l'indirizzo di coinbase corrente.
+`DATA`, 20 byte - l'indirizzo di coinbase corrente.
**Esempio**
```js
-// Request
+// Richiesta
curl -X POST --data '{"jsonrpc":"2.0","method":"eth_coinbase","params":[],"id":64}'
-// Result
+// Risultato
{
"id":64,
"jsonrpc": "2.0",
@@ -373,9 +418,9 @@ Nessuno
**Esempio**
```js
-// Request
+// Richiesta
curl -X POST --data '{"jsonrpc":"2.0","method":"eth_chainId","params":[],"id":67}'
-// Result
+// Risultato
{
"id":67,
"jsonrpc": "2.0",
@@ -385,7 +430,7 @@ curl -X POST --data '{"jsonrpc":"2.0","method":"eth_chainId","params":[],"id":67
### eth_mining {#eth_mining}
-Restituisce `true` se il client sta minando attivamente nuovi blocchi.
+Restituisce `true` se il client sta minando attivamente nuovi blocchi. Può restituire `true` soltanto per le reti di proof-of-work e potrebbe non essere disponibile in alcuni client da [La Fusione](/roadmap/merge/).
**Parametri**
@@ -398,7 +443,7 @@ Nessuno
**Esempio**
```js
-// Request
+// Richiesta
curl -X POST --data '{"jsonrpc":"2.0","method":"eth_mining","params":[],"id":71}'
//
{
@@ -410,7 +455,7 @@ curl -X POST --data '{"jsonrpc":"2.0","method":"eth_mining","params":[],"id":71}
### eth_hashrate {#eth_hashrate}
-Restituisce il numero di hash al secondo con cui il nodo sta minando.
+Restituisce il numero di hash al secondo con cui il nodo sta minando. Può restituire `true` soltanto per le reti di proof-of-work e potrebbe non essere disponibile in alcuni client da [La Fusione](/roadmap/merge/).
**Parametri**
@@ -423,9 +468,9 @@ Nessuno
**Esempio**
```js
-// Request
+// Richiesta
curl -X POST --data '{"jsonrpc":"2.0","method":"eth_hashrate","params":[],"id":71}'
-// Result
+// Risultato
{
"id":71,
"jsonrpc": "2.0",
@@ -435,7 +480,7 @@ curl -X POST --data '{"jsonrpc":"2.0","method":"eth_hashrate","params":[],"id":7
### eth_gasPrice {#eth_gasprice}
-Restituisce il prezzo corrente del carburante in wei.
+Restituisce una stima del prezzo corrente per gas, in wei. Ad esempio, il client di Besu esamina gli ultimi 100 blocchi e restituisce il prezzo unitario medio del gas di default.
**Parametri**
@@ -443,14 +488,14 @@ Nessuno
**Restituisce**
-`QUANTITY` - intero del prezzo corrente del carburante in wei.
+`QUANTITY` - intero del prezzo corrente del gas in wei.
**Esempio**
```js
-// Request
+// Richiesta
curl -X POST --data '{"jsonrpc":"2.0","method":"eth_gasPrice","params":[],"id":73}'
-// Result
+// Risultato
{
"id":73,
"jsonrpc": "2.0",
@@ -468,14 +513,14 @@ Nessuno
**Restituisce**
-`Array of DATA`, 20 byte; indirizzi posseduti dal client.
+`Array of DATA`, 20 Byte - indirizzi posseduti dal client.
**Esempio**
```js
-// Request
+// Richiesta
curl -X POST --data '{"jsonrpc":"2.0","method":"eth_accounts","params":[],"id":1}'
-// Result
+// Risultato
{
"id":1,
"jsonrpc": "2.0",
@@ -498,9 +543,9 @@ Nessuno
**Esempio**
```js
-// Request
+// Richiesta
curl -X POST --data '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":83}'
-// Result
+// Risultato
{
"id":83,
"jsonrpc": "2.0",
@@ -510,7 +555,7 @@ curl -X POST --data '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id
### eth_getBalance {#eth_getbalance}
-Restituisce il saldo del conto dell'indirizzo dato.
+Restituisce il saldo del conto del dato indirizzo.
**Parametri**
@@ -528,9 +573,9 @@ params: ["0x407d73d8a49eeb85d32cf465507dd71d507100c1", "latest"]
**Esempio**
```js
-// Request
+// Richiesta
curl -X POST --data '{"jsonrpc":"2.0","method":"eth_getBalance","params":["0x407d73d8a49eeb85d32cf465507dd71d507100c1", "latest"],"id":1}'
-// Result
+// Risultato
{
"id":1,
"jsonrpc": "2.0",
@@ -607,7 +652,7 @@ curl -X POST --data '{"jsonrpc":"2.0", "method": "eth_getStorageAt", "params": [
### eth_getTransactionCount {#eth_gettransactioncount}
-Restituisce il numero di transazioni _inviate_ da un indirizzo.
+Restituisce il numero di transazioni _inviate_da un indirizzo.
**Parametri**
@@ -617,20 +662,20 @@ Restituisce il numero di transazioni _inviate_ da un indirizzo.
```js
params: [
"0x407d73d8a49eeb85d32cf465507dd71d507100c1",
- "latest", // state at the latest block
+ "latest", // stato all'ultimo blocco
]
```
**Restituisce**
-`QUANTITY` - Intero del numero di transazioni inviate da questo indirizzo.
+`QUANTITY` - intero del numero di transazioni inviate da questo indirizzo.
**Esempio**
```js
-// Request
+// Richiesta
curl -X POST --data '{"jsonrpc":"2.0","method":"eth_getTransactionCount","params":["0x407d73d8a49eeb85d32cf465507dd71d507100c1","latest"],"id":1}'
-// Result
+// Risultato
{
"id":1,
"jsonrpc": "2.0",
@@ -657,9 +702,9 @@ params: ["0xb903239f8543d04b5dc1ba6579132b143087c68db1b2168786408fcbce568238"]
**Esempio**
```js
-// Request
+// Richiesta
curl -X POST --data '{"jsonrpc":"2.0","method":"eth_getBlockTransactionCountByHash","params":["0xb903239f8543d04b5dc1ba6579132b143087c68db1b2168786408fcbce568238"],"id":1}'
-// Result
+// Risultato
{
"id":1,
"jsonrpc": "2.0",
@@ -688,9 +733,9 @@ params: [
**Esempio**
```js
-// Request
+// Richiesta
curl -X POST --data '{"jsonrpc":"2.0","method":"eth_getBlockTransactionCountByNumber","params":["0xe8"],"id":1}'
-// Result
+// Risultato
{
"id":1,
"jsonrpc": "2.0",
@@ -700,7 +745,7 @@ curl -X POST --data '{"jsonrpc":"2.0","method":"eth_getBlockTransactionCountByNu
### eth_getUncleCountByBlockHash {#eth_getunclecountbyblockhash}
-Restituisce il numero di ommer in un blocco da un blocco corrispondente all'hash del blocco specificato.
+Restituisce il numero di ommer in un blocco da un blocco che corrisponde all'hash del blocco specificato.
**Parametri**
@@ -717,9 +762,9 @@ params: ["0xb903239f8543d04b5dc1ba6579132b143087c68db1b2168786408fcbce568238"]
**Esempio**
```js
-// Request
+// Richiesta
curl -X POST --data '{"jsonrpc":"2.0","method":"eth_getUncleCountByBlockHash","params":["0xb903239f8543d04b5dc1ba6579132b143087c68db1b2168786408fcbce568238"],"id":1}'
-// Result
+// Risultato
{
"id":1,
"jsonrpc": "2.0",
@@ -748,9 +793,9 @@ params: [
**Esempio**
```js
-// Request
+// Richiesta
curl -X POST --data '{"jsonrpc":"2.0","method":"eth_getUncleCountByBlockNumber","params":["0xe8"],"id":1}'
-// Result
+// Risultato
{
"id":1,
"jsonrpc": "2.0",
@@ -760,7 +805,7 @@ curl -X POST --data '{"jsonrpc":"2.0","method":"eth_getUncleCountByBlockNumber",
### eth_getCode {#eth_getcode}
-Restituisce il codice ad un indirizzo specificato.
+Restituisce il codice ad un dato indirizzo.
**Parametri**
@@ -776,14 +821,14 @@ params: [
**Restituisce**
-`DATA` - il codice dall'indirizzo specificato.
+`DATA` - il codice dal dato indirizzo.
**Esempio**
```js
-// Request
+// Richiesta
curl -X POST --data '{"jsonrpc":"2.0","method":"eth_getCode","params":["0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b", "0x2"],"id":1}'
-// Result
+// Risultato
{
"id":1,
"jsonrpc": "2.0",
@@ -811,9 +856,9 @@ Nota: l'indirizzo con cui firmare deve essere sbloccato.
**Esempio**
```js
-// Request
+// Richiesta
curl -X POST --data '{"jsonrpc":"2.0","method":"eth_sign","params":["0x9b2055d370f73ec7d8a03e965129118dc8f5bf83", "0xdeadbeaf"],"id":1}'
-// Result
+// Risultato
{
"id":1,
"jsonrpc": "2.0",
@@ -829,24 +874,25 @@ Firma una transazione che può essere inviata alla rete in un secondo momento ut
1. `Object` - L'oggetto della transazione
-- `from`: `DATI`, 20 Bytes - L'indirizzo da cui viene inviata la transazione.
-- `to`: `DATI`, 20 Bytes - (opzionale quando si crea un nuovo contratto) L'indirizzo a cui è indirizzata la transazione.
-- `gas`: `QUANTITY`: (facoltativo, prededfinito: 90000) Intero del gas fornito per l'esecuzione della transazione. Restituirà il gas inutilizzato.
+- `type`:
+- `from`: `DATA`, 20 byte - L'indirizzo da cui viene inviata la transazione.
+- `to`: `DATA`, 20 byte - (facoltativo quando si crea un nuovo contratto) L'indirizzo a cui è indirizzata la transazione.
+- `gas`: `QUANTITY` - (facoltativo, predefinito: 90000) Intero del carburante fornito per l'esecuzione della transazione. Restituirà il carburante inutilizzato.
- `gasPrice`: `QUANTITY` - (facoltativo, predefinito: To-Be-Determined) Intero del gasPrice usato per ogni unità di carburante pagata, in Wei.
- `value`: `QUANTITY` - (facoltativo) Intero del valore inviato con questa transazione, in Wei.
-- `data`: `DATI` - Il codice compilato di un contratto OPPURE l'hash della firma del metodo richiamato e i parametri codificati.
-- `nonce`: `QUANTITÀ` - (opzionale) Intero di una nonce. Questo permette di sovrascrivere le tue transazioni in sospeso che utilizzano la stessa nonce.
+- `data`: `DATA` - Il codice compilato di un contratto OPPURE l'hash della firma del metodo richiamato e i parametri codificati.
+- `nonce`: `QUANTITY` - (facoltativo) Intero di un nonce. Ciò permette di sovrascrivere le proprie transazioni in sospeso che utilizzano lo stesso nonce.
**Restituisce**
-`DATA`, L'oggetto della transazione firmato.
+`DATA`, L'oggetto della transazione codificata in RLP, firmato dal conto specificato.
**Esempio**
```js
-// Request
+// Richiesta
curl -X POST --data '{"id": 1,"jsonrpc": "2.0","method": "eth_signTransaction","params": [{"data":"0xd46e8dd67c5d32be8d46e8dd67c5d32be8058bb8eb970870f072445675058bb8eb970870f072445675","from": "0xb60e8dd61c5d32be8058bb8eb970870f07233155","gas": "0x76c0","gasPrice": "0x9184e72a000","to": "0xd46e8dd67c5d32be8058bb8eb970870f07244567","value": "0x9184e72a"}]}'
-// Result
+// Risultato
{
"id": 1,
"jsonrpc": "2.0",
@@ -856,7 +902,7 @@ curl -X POST --data '{"id": 1,"jsonrpc": "2.0","method": "eth_signTransaction","
### eth_sendTransaction {#eth_sendtransaction}
-Se il campo dati contiene codice, crea una nuova transazione di chiamata di messaggio o la stipula di un contratto.
+Crea la transazione di chiamata del nuovo messaggio o la creazione di un contratto, se il campo dei dati contiene del codice, e la firma utilizzando il conto specificato in `from`.
**Parametri**
@@ -867,7 +913,7 @@ Se il campo dati contiene codice, crea una nuova transazione di chiamata di mess
- `gas`: `QUANTITY` - (facoltativo, predefinito: 90000) Intero del carburante fornito per l'esecuzione della transazione. Restituirà il carburante inutilizzato.
- `gasPrice`: `QUANTITY` - (facoltativo, predefinito: To-Be-Determined) Intero del gasPrice usato per ogni unità di carburante pagata.
- `value`: `QUANTITY` - (facoltativo) Intero del valore inviato con questa transazione, in Wei.
-- `data`: `DATA` - Il codice compilato di un contratto OPPURE l'hash della firma del metodo richiamato e i parametri codificati.
+- `input`: `DATA` - Il codice compilato di un contratto O l'hash della firma del metodo invocato e i parametri codificati.
- `nonce`: `QUANTITY` - (facoltativo) Intero di un nonce. Ciò permette di sovrascrivere le proprie transazioni in sospeso che utilizzano lo stesso nonce.
```js
@@ -878,23 +924,24 @@ params: [
gas: "0x76c0", // 30400
gasPrice: "0x9184e72a000", // 10000000000000
value: "0x9184e72a", // 2441406250
- data: "0xd46e8dd67c5d32be8d46e8dd67c5d32be8058bb8eb970870f072445675058bb8eb970870f072445675",
+ input:
+ "0xd46e8dd67c5d32be8d46e8dd67c5d32be8058bb8eb970870f072445675058bb8eb970870f072445675",
},
]
```
**Restituisce**
-`DATI`, 32 Bytes - l'hash della transazione, o l'hash zero se la transazione non è ancora disponibile.
+`DATA`, 32 Bytes - l'hash della transazione, o l'hash zero se la transazione non è ancora disponibile.
-Usa [eth_getTransactionReceipt](#eth_gettransactionreceipt) quando hai creato un contratto per ottenere l'indirizzo del contratto, dopo che la transazione è stata minata.
+Usa [eth_getTransactionReceipt](#eth_gettransactionreceipt) quando hai creato un contratto per ottenere l'indirizzo del contratto dopo che la transazione è stata minata.
**Esempio**
```js
-// Request
+// Richiesta
curl -X POST --data '{"jsonrpc":"2.0","method":"eth_sendTransaction","params":[{see above}],"id":1}'
-// Result
+// Risultato
{
"id":1,
"jsonrpc": "2.0",
@@ -918,16 +965,16 @@ params: [
**Restituisce**
-`DATA`, 32 byte - l'hash della transazione, o l'hash zero se la transazione non è ancora disponibile.
+`DATA`, 32 Bytes - l'hash della transazione, o l'hash zero se la transazione non è ancora disponibile.
Usa [eth_getTransactionReceipt](#eth_gettransactionreceipt) quando hai creato un contratto per ottenere l'indirizzo del contratto dopo che la transazione è stata minata.
**Esempio**
```js
-// Request
+// Richiesta
curl -X POST --data '{"jsonrpc":"2.0","method":"eth_sendRawTransaction","params":[{see above}],"id":1}'
-// Result
+// Risultato
{
"id":1,
"jsonrpc": "2.0",
@@ -937,7 +984,7 @@ curl -X POST --data '{"jsonrpc":"2.0","method":"eth_sendRawTransaction","params"
### eth_call {#eth_call}
-Esegue immediatamente una nuova chiamata di messaggio senza creare una transazione nella blockchain.
+Esegue immediatamente una nuova chiamata di messaggio senza creare una transazione nella blockchain. Spesso utilizzato per eseguire le funzioni dei contratti intelligenti di sola lettura, ad esempio `balanceOf` per un contratto ERC-20.
**Parametri**
@@ -948,7 +995,7 @@ Esegue immediatamente una nuova chiamata di messaggio senza creare una transazio
- `gas`: `QUANTITY` - (facoltativo) Intero del carburante fornito per l'esecuzione della transazione. eth_call consuma zero carburante, ma questo parametro potrebbe essere necessario per alcune esecuzioni.
- `gasPrice`: `QUANTITY` - (facoltativo) Intero del gasPrice usato per ogni unità di carburante pagata
- `value`: `QUANTITY` - (facoltativo) Intero del valore inviato con questa transazione
-- `data`: `DATA` - (facoltativo) Hash della firma del metodo e dei parametri codificati. Per maggiori dettagli consulta [Ethereum Contract ABI nella documentazione di Solidity](https://docs.soliditylang.org/en/latest/abi-spec.html)
+- `input`: `DATA` - (facoltativo) Hash della firma del metodo e dei parametri codificati. Per i dettagli, consulta [ABI del Contratto di Ethereum nella documentazione di Solidity](https://docs.soliditylang.org/en/latest/abi-spec.html).
2. `QUANTITY|TAG` - numero intero del blocco, o stringa `"latest"`, `"earliest"` o `"pending"`. Vedere il [parametro predefinito del blocco](/developers/docs/apis/json-rpc/#default-block)
@@ -959,9 +1006,9 @@ Esegue immediatamente una nuova chiamata di messaggio senza creare una transazio
**Esempio**
```js
-// Request
+// Richiesta
curl -X POST --data '{"jsonrpc":"2.0","method":"eth_call","params":[{see above}],"id":1}'
-// Result
+// Risultato
{
"id":1,
"jsonrpc": "2.0",
@@ -971,22 +1018,22 @@ curl -X POST --data '{"jsonrpc":"2.0","method":"eth_call","params":[{see above}]
### eth_estimateGas {#eth_estimategas}
-Genera e restituisce una stima di quanto carburante è necessario per consentire il completamento della transazione. La transazione non verrà aggiunta alla blockchain. Nota che la stima potrebbe esser significativamente superiore all'importo di carburante effettivamente usato dall'operazione, per vari motivi, incluse le meccaniche dell'EVM e le prestazioni del nodo.
+Genera e restituisce una stima di quanto gas è necessario per consentire il completamento della transazione. La transazione non verrà aggiunta alla blockchain. Si noti che la stima potrebbe esser significativamente superiore all'importo di gas effettivamente usato dalla transazione, per vari motivi, incluse le meccaniche dell'EVM e le prestazioni del nodo.
**Parametri**
-Vedi i parametri di [eth_call](#eth_call), tranne che tutte le proprietà sono facoltative. Se non è specificato alcun limite di carburante, geth usa il limite di carburante del blocco dal blocco in sospeso come limite massimo. Di conseguenza, la stima restituita potrebbe non esser sufficiente per eseguire la chiamata/transazione quando l'importo di carburante è superiore al limite di carburante del blocco.
+Vedi i parametri di [eth_call](#eth_call), tranne che tutte le proprietà sono facoltative. Se non è specificato alcun limite di gas, geth usa il limite di gas del blocco dal blocco in sospeso come limite massimo. Di conseguenza, la stima restituita potrebbe non esser sufficiente per eseguire la chiamata/transazione quando l'importo di gas è superiore al limite di gas del blocco.
**Restituisce**
-`QUANTITY` - la quantità di carburante utilizzato.
+`QUANTITY` - la quantità di gas utilizzato.
**Esempio**
```js
-// Request
+// Richiesta
curl -X POST --data '{"jsonrpc":"2.0","method":"eth_estimateGas","params":[{see above}],"id":1}'
-// Result
+// Risultato
{
"id":1,
"jsonrpc": "2.0",
@@ -1037,9 +1084,9 @@ params: [
**Esempio**
```js
-// Request
+// Richiesta
curl -X POST --data '{"jsonrpc":"2.0","method":"eth_getBlockByHash","params":["0xdc0818cf78f21a8e70579cb46a43643f78291264dda342ae31049421c82d21ae", false],"id":1}'
-// Result
+// Risultato
{
{
"jsonrpc": "2.0",
@@ -1092,11 +1139,11 @@ params: [
**Esempio**
```js
-// Request
+// Richiesta
curl -X POST --data '{"jsonrpc":"2.0","method":"eth_getBlockByNumber","params":["0x1b4", true],"id":1}'
```
-Risultato vedi [eth_getBlockByHash](#eth_getblockbyhash)
+Per il risultato vedi [eth_getBlockByHash](#eth_getblockbyhash)
### eth_getTransactionByHash {#eth_gettransactionbyhash}
@@ -1132,9 +1179,9 @@ params: ["0x88df016429689c079f3b2f6ad39fa052532c56795b733da78a91ebe6a713944b"]
**Esempio**
```js
-// Request
+// Richiesta
curl -X POST --data '{"jsonrpc":"2.0","method":"eth_getTransactionByHash","params":["0x88df016429689c079f3b2f6ad39fa052532c56795b733da78a91ebe6a713944b"],"id":1}'
-// Result
+// Risultato
{
"jsonrpc":"2.0",
"id":1,
@@ -1178,7 +1225,7 @@ params: [
**Esempio**
```js
-// Request
+// Richiesta
curl -X POST --data '{"jsonrpc":"2.0","method":"eth_getTransactionByBlockHashAndIndex","params":["0xc6ef2fc5426d6ad6fd9e2a26abeab0aa2411b7ab17f30a99d3cb96aed1d1055b", "0x0"],"id":1}'
```
@@ -1205,7 +1252,7 @@ params: [
**Esempio**
```js
-// Request
+// Richiesta
curl -X POST --data '{"jsonrpc":"2.0","method":"eth_getTransactionByBlockNumberAndIndex","params":["0x29c", "0x0"],"id":1}'
```
@@ -1241,7 +1288,7 @@ params: ["0x85d995eba9763907fdf35cd2034144dd9d53ce32cbec21349d4b12823c6860c5"]
- `logsBloom`: `DATA`, 256 byte - Filtro Bloom per i client leggeri per recuperare rapidamente i registri correlati.
- `type`: `QUANTITY`: intero del tipo di transazione, `0x0` per le transazioni ereditarie, `0x1` per i tipi di elenco d'accesso, `0x2` per le commissioni dinamiche.
-Restituisce anche _either_:
+Restituisce anche _in alternativa_:
- `root` : `DATA` 32 bytes dello stateRoot post-transazione (pre Byzantium)
- `status`: `QUANTITY` o `1` (successo) o `0` (insuccesso)
@@ -1249,9 +1296,9 @@ Restituisce anche _either_:
**Esempio**
```js
-// Request
+// Richiesta
curl -X POST --data '{"jsonrpc":"2.0","method":"eth_getTransactionReceipt","params":["0x85d995eba9763907fdf35cd2034144dd9d53ce32cbec21349d4b12823c6860c5"],"id":1}'
-// Result
+// Risultato
{
"jsonrpc": "2.0",
"id": 1,
@@ -1299,13 +1346,13 @@ params: [
**Esempio**
```js
-// Request
+// Richiesta
curl -X POST --data '{"jsonrpc":"2.0","method":"eth_getUncleByBlockHashAndIndex","params":["0xc6ef2fc5426d6ad6fd9e2a26abeab0aa2411b7ab17f30a99d3cb96aed1d1055b", "0x0"],"id":1}'
```
-Risultato vedi [eth_getBlockByHash](#eth_getblockbyhash)
+Per il risultato vedi [eth_getBlockByHash](#eth_getblockbyhash)
-**Nota**: un ommer non contiene transazioni individuali.
+**Nota**: Un ommer non contiene transazioni individuali.
### eth_getUncleByBlockNumberAndIndex {#eth_getunclebyblocknumberandindex}
@@ -1325,156 +1372,20 @@ params: [
**Restituisce** Vedi [eth_getBlockByHash](#eth_getblockbyhash)
-**Nota**: un ommer non contiene transazioni individuali.
+**Nota**: Un ommer non contiene transazioni individuali.
**Esempio**
```js
-// Request
+// Richiesta
curl -X POST --data '{"jsonrpc":"2.0","method":"eth_getUncleByBlockNumberAndIndex","params":["0x29c", "0x0"],"id":1}'
```
-Risultato vedi [eth_getBlockByHash](#eth_getblockbyhash)
-
-### eth_getCompilers {#eth_getcompilers}
-
-Restituisce un elenco di compilatori disponibili nel client.
-
-**Parametri** Nessuno
-
-**Restituisce** `Array` - Array dei compilatori disponibili.
-
-**Esempio**
-
-```js
-// Request
-curl -X POST --data '{"jsonrpc":"2.0","method":"eth_getCompilers","params":[],"id":1}'
-// Result
-{
- "id":1,
- "jsonrpc": "2.0",
- "result": ["solidity", "lll", "serpent"]
-}
-```
-
-### eth_compileSolidity {#eth_compile_solidity}
-
-Restituisce il codice Solidity compilato.
-
-**Parametri**
-
-1. `Stringa` - Il codice sorgente.
-
-```js
-params: [
- "contract test { function multiply(uint a) returns(uint d) { return a * 7; } }",
-]
-```
-
-**Restituisce** `DATA` - Il codice sorgente compilato.
-
-**Esempio**
-
-```js
-// Request
-curl -X POST --data '{"jsonrpc":"2.0","method":"eth_compileSolidity","params":["contract test { function multiply(uint a) returns(uint d) { return a * 7; } }"],"id":1}'
-// Result
-{
- "id":1,
- "jsonrpc": "2.0",
- "result": {
- "code": "0x605880600c6000396000f3006000357c010000000000000000000000000000000000000000000000000000000090048063c6888fa114602e57005b603d6004803590602001506047565b8060005260206000f35b60006007820290506053565b91905056",
- "info": {
- "source": "contract test {\n function multiply(uint a) constant returns(uint d) {\n return a * 7;\n }\n}\n",
- "language": "Solidity",
- "languageVersion": "0",
- "compilerVersion": "0.9.19",
- "abiDefinition": [
- {
- "constant": true,
- "inputs": [
- {
- "name": "a",
- "type": "uint256"
- }
- ],
- "name": "multiply",
- "outputs": [
- {
- "name": "d",
- "type": "uint256"
- }
- ],
- "type": "function"
- }
- ],
- "userDoc": {
- "methods": {}
- },
- "developerDoc": {
- "methods": {}
- }
- }
-}
-```
-
-### eth_compileLLL {#eth_compileLLL}
-
-Restituisce il codice LLL compilato.
-
-**Parametri**
-
-1. `String` - Il codice sorgente.
-
-```js
-params: ["(returnlll (suicide (caller)))"]
-```
-
-**Restituisce** `DATA` - Il codice sorgente compilato.
-
-**Esempio**
-
-```js
-// Request
-curl -X POST --data '{"jsonrpc":"2.0","method":"eth_compileLLL","params":["(returnlll (suicide (caller)))"],"id":1}'
-// Result
-{
- "id":1,
- "jsonrpc": "2.0",
- "result": "0x603880600c6000396000f3006001600060e060020a600035048063c6888fa114601857005b6021600435602b565b8060005260206000f35b600081600702905091905056" // the compiled source code
-}
-```
-
-### eth_compileSerpent {#eth_compileserpent}
-
-Restituisce il codice Serpent compilato.
-
-**Parametri**
-
-1. `String` - Il codice sorgente.
-
-```js
-params: ["/* some serpent */"]
-```
-
-**Restituisce** `DATA` - Il codice sorgente compilato.
-
-**Esempio**
-
-```js
-// Request
-curl -X POST --data '{"jsonrpc":"2.0","method":"eth_compileSerpent","params":["/* some serpent */"],"id":1}'
-// Result
-{
- "id":1,
- "jsonrpc": "2.0",
- "result": "0x603880600c6000396000f3006001600060e060020a600035048063c6888fa114601857005b6021600435602b565b8060005260206000f35b600081600702905091905056" // the compiled source code
-}
-```
+Per il risultato vedi [eth_getBlockByHash](#eth_getblockbyhash)
### eth_newFilter {#eth_newfilter}
-Crea un oggetto filtro, basato sulle opzioni di filtro, per avvisare quando lo stato cambia (registri). Per verificare se lo stato è cambiato, chiama [eth_getFilterChanges](#eth_getfilterchanges).
+Crea un oggetto filtro, basato sulle opzioni di filtro, per avvertire quando lo stato cambia (registri). Per verificare se lo stato è cambiato, chiama [eth_getFilterChanges](#eth_getfilterchanges).
**Una nota per specificare i filtri degli argomenti:** Gli argomenti dipendono dall'ordine. Una transazione con un registro con argomenti [A, B] sarà abbinata ai seguenti filtri tematici:
@@ -1485,7 +1396,7 @@ Crea un oggetto filtro, basato sulle opzioni di filtro, per avvisare quando lo s
- `[[A, B], [A, B]]`: "(A OR B) in prima posizione e (A OR B) in seconda posizione (e tutto il resto segue)"
- **Parametri**
-1. `Object` - Le opzioni di filtro:
+1. `Object` - Le opzioni del filtro:
- `fromBlock`: `QUANTITY|TAG` - (facoltativo, predefinito: `"latest"`) Numero intero del blocco, oppure `"latest"` per l'ultimo blocco minato oppure `"pending"`, `"earliest"` per le transazioni non ancora minate.
- `toBlock`: `QUANTITY|TAG` - (facoltativo, predefinito: `"latest"`) numero intero del blocco, oppure `"latest"` per l'ultimo blocco minato, oppure `"pending"`, `"earliest"` per le transazioni non ancora minate.
@@ -1515,9 +1426,9 @@ params: [
**Esempio**
```js
-// Request
+// Richiesta
curl -X POST --data '{"jsonrpc":"2.0","method":"eth_newFilter","params":[{"topics":["0x12341234"]}],"id":73}'
-// Result
+// Risultato
{
"id":1,
"jsonrpc": "2.0",
@@ -1536,9 +1447,9 @@ Crea un filtro nel nodo, per avvisare quando arriva un nuovo blocco. Per verific
**Esempio**
```js
-// Request
+// Richiesta
curl -X POST --data '{"jsonrpc":"2.0","method":"eth_newBlockFilter","params":[],"id":73}'
-// Result
+// Risultato
{
"id":1,
"jsonrpc": "2.0",
@@ -1557,9 +1468,9 @@ Crea un filtro nel nodo, per avvisare quando arrivano nuove transazioni in sospe
**Esempio**
```js
-// Request
+// Richiesta
curl -X POST --data '{"jsonrpc":"2.0","method":"eth_newPendingTransactionFilter","params":[],"id":73}'
-// Result
+// Risultato
{
"id":1,
"jsonrpc": "2.0",
@@ -1569,7 +1480,7 @@ curl -X POST --data '{"jsonrpc":"2.0","method":"eth_newPendingTransactionFilter"
### eth_uninstallFilter {#eth_uninstallfilter}
-Disinstalla un filtro con un ID specificato. Dovrebbe essere chiamato sempre quando l'orologio non è più necessario. Inoltre i filtri scadono quando non vengono richiesti con [eth_getFilterChanges](#eth_getfilterchanges) per un periodo di tempo.
+Disinstalla un filtro con un dato ID. Dovrebbe essere sempre chiamato quando l'orologio non è più necessario. Inoltre i filtri scadono quando non vengono richiesti con [eth_getFilterChanges](#eth_getfilterchanges) per un periodo di tempo.
**Parametri**
@@ -1586,9 +1497,9 @@ params: [
**Esempio**
```js
-// Request
+// Richiesta
curl -X POST --data '{"jsonrpc":"2.0","method":"eth_uninstallFilter","params":["0xb"],"id":73}'
-// Result
+// Risultato
{
"id":1,
"jsonrpc": "2.0",
@@ -1622,14 +1533,14 @@ params: [
- `blockHash`: `DATA`, 32 byte - hash del blocco in cui si trovava questo registro. `null` quando è in sospeso. `null` quando il registro è in sospeso.
- `blockNumber`: `QUANTITY` il numero di blocco in cui si trovava questo registro. `null` quando è in sospeso. `null` quando il registro è in sospeso.
- `address`: `DATI`, 20 byte - indirizzo da cui è nato questo registro.
- - `data`: `DATA` - contiene uno o più argomenti a 32 byte non indicizzati del registro.
+ - `data`: `DATA` - contiene zero o più argomenti non indicizzati da 32 byte del registro.
- `topics`: `Array of DATA` - Array da 0 a 432 byte di `DATA` di argomenti di registro indicizzati. (In _solidity_: il primo argomento è l'_hash_ della firma dell'evento (ad es. `Deposit(address,bytes32,uint256)`), tranne se hai dichiarato l'evento con lo specificatore `anonymous`
- **Esempio**
```js
-// Request
+// Richiesta
curl -X POST --data '{"jsonrpc":"2.0","method":"eth_getFilterChanges","params":["0x16"],"id":73}'
-// Result
+// Risultato
{
"id":1,
"jsonrpc":"2.0",
@@ -1667,7 +1578,7 @@ params: [
**Esempio**
```js
-// Request
+// Richiesta
curl -X POST --data '{"jsonrpc":"2.0","method":"eth_getFilterLogs","params":["0x16"],"id":74}'
```
@@ -1679,7 +1590,7 @@ Restituisce un array di tutti i registri che corrispondono a un dato oggetto fil
**Parametri**
-1. `Oggetto` - Le opzioni di filtro:
+1. `Object` - Le opzioni del filtro:
- `fromBlock`: `QUANTITY|TAG` - (facoltativo, predefinito: `"latest"`) Numero intero del blocco, oppure `"latest"` per l'ultimo blocco minato oppure `"pending"`, `"earliest"` per le transazioni non ancora minate.
- `toBlock`: `QUANTITY|TAG` - (facoltativo, predefinito: `"latest"`) numero intero del blocco, oppure `"latest"` per l'ultimo blocco minato, oppure `"pending"`, `"earliest"` per le transazioni non ancora minate.
@@ -1702,548 +1613,19 @@ params: [
**Esempio**
```js
-// Request
+// Richiesta
curl -X POST --data '{"jsonrpc":"2.0","method":"eth_getLogs","params":[{"topics":["0x000000000000000000000000a94f5374fce5edbc8e2a8697c15331677e6ebf0b"]}],"id":74}'
```
Risultato vedi [eth_getFilterChanges](#eth_getfilterchanges)
-### eth_getWork {#eth_getwork}
-
-Restituisce l'hash del blocco corrente, il seedHash e la condizione limite da soddisfare ("target").
-
-**Parametri** Nessuno
-
-**Restituisce** `Array` - Array con le seguenti proprietà:
-
-1. `DATA`, 32 byte - intestazione pow-hash del blocco corrente
-2. `DATA`, 32 byte - il seed hash utilizzato per il DAG.
-3. `DATA`, 32 byte - la condizione di confine ("target"), 2^256 / difficoltà.
-
-**Esempio**
-
-```js
-// Request
-curl -X POST --data '{"jsonrpc":"2.0","method":"eth_getWork","params":[],"id":73}'
-// Result
-{
- "id":1,
- "jsonrpc":"2.0",
- "result": [
- "0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef",
- "0x5EED00000000000000000000000000005EED0000000000000000000000000000",
- "0xd1ff1c01710000000000000000000000d1ff1c01710000000000000000000000"
- ]
-}
-```
-
-### eth_submitWork {#eth_submitwork}
-
-Utilizzato per presentare una soluzione proof-of-work.
-
-**Parametri**
-
-1. `DATA`, 8 byte - Il nonce trovato (64 bit)
-2. `DATA`, 32 byte - il pow-hash dell'intestazione (256 bit)
-3. `DATA`, 32 byte - Il mix digest (256 bit)
-
-```js
-params: [
- "0x0000000000000001",
- "0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef",
- "0xD1FE5700000000000000000000000000D1FE5700000000000000000000000000",
-]
-```
-
-**Restituisce** `Boolean` - restituisce `true` se la soluzione fornita è valida, altrimenti `false`.
-
-**Esempio**
-
-```js
-// Request
-curl -X POST --data '{"jsonrpc":"2.0", "method":"eth_submitWork", "params":["0x0000000000000001", "0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef", "0xD1GE5700000000000000000000000000D1GE5700000000000000000000000000"],"id":73}'
-// Result
-{
- "id":73,
- "jsonrpc":"2.0",
- "result": true
-}
-```
-
-### eth_submitHashrate {#eth_submithashrate}
-
-Usato per inviare hashrate di mining.
-
-**Parametri**
-
-1. `Hashrate`, una rappresentazione esadecimale della stringa (32 byte) dell'hashrate
-2. `ID`, Stringa - Un ID esadecimale casuale (32 byte) che identifica il client
-
-```js
-params: [
- "0x0000000000000000000000000000000000000000000000000000000000500000",
- "0x59daa26581d0acd1fce254fb7e85952f4c09d0915afd33d3886cd914bc7d283c",
-]
-```
-
-**Restituisce** `Boolean` - restituisce `true` se l'invio è andato a buon fine e `falso` in caso contrario.
-
-**Esempio**
-
-```js
-// Request
-curl -X POST --data '{"jsonrpc":"2.0", "method":"eth_submitHashrate", "params":["0x0000000000000000000000000000000000000000000000000000000000500000", "0x59daa26581d0acd1fce254fb7e85952f4c09d0915afd33d3886cd914bc7d283c"],"id":73}'
-// Result
-{
- "id":73,
- "jsonrpc":"2.0",
- "result": true
-}
-```
-
-### db_putString (deprecato) {#db_putstring}
-
-Memorizza una stringa nel database locale.
-
-**Nota** questa funzione è superata.
-
-**Parametri**
-
-1. `String` - Nome del database.
-2. `String` - Nome della chiave.
-3. `String` - Stringa da archiviare.
-
-```js
-params: ["testDB", "myKey", "myString"]
-```
-
-**Restituisce** `Boolean` - `true` se il valore è stato memorizzato, in caso contrario `false`.
-
-**Esempio**
-
-```js
-// Request
-curl -X POST --data '{"jsonrpc":"2.0","method":"db_putString","params":["testDB","myKey","myString"],"id":73}'
-// Result
-{
- "id":1,
- "jsonrpc":"2.0",
- "result": true
-}
-```
-
-### db_getString (deprecato) {#db_getstring}
-
-Memorizza una stringa nel database locale. **Nota** questa funzione è superata.
-
-**Parametri**
-
-1. `String` - Nome del database.
-2. `String` - Nome della chiave.
-
-```js
-params: ["testDB", "myKey"]
-```
-
-**Restituisce** `String` - La stringa precedentemente memorizzata.
-
-**Esempio**
-
-```js
-// Request
-curl -X POST --data '{"jsonrpc":"2.0","method":"db_getString","params":["testDB","myKey"],"id":73}'
-// Result
-{
- "id":1,
- "jsonrpc":"2.0",
- "result": "myString"
-}
-```
-
-### db_putHex (deprecato) {#db_puthex}
-
-Memorizza i dati binari nel database locale. **Nota** questa funzione è superata.
-
-**Parametri**
-
-1. `String` - Nome del database.
-2. `String` - Nome della chiave.
-3. `DATA` - I dati da archiviare.
-
-```js
-params: ["testDB", "myKey", "0x68656c6c6f20776f726c64"]
-```
-
-**Restituisce** `Boolean` - `true` se il valore è stato memorizzato, in caso contrario `false`.
-
-**Esempio**
-
-```js
-// Request
-curl -X POST --data '{"jsonrpc":"2.0","method":"db_putHex","params":["testDB","myKey","0x68656c6c6f20776f726c64"],"id":73}'
-// Result
-{
- "id":1,
- "jsonrpc":"2.0",
- "result": true
-}
-```
-
-### db_getHex (deprecato) {#db_gethex}
-
-Memorizza i dati binari nel database locale. **Nota** questa funzione è superata.
-
-**Parametri**
-
-1. `String` - Nome del database.
-2. `String` - Nome della chiave.
-
-```js
-params: ["testDB", "myKey"]
-```
-
-**Restituisce** `DATI` - I dati precedentemente memorizzati.
-
-**Esempio**
-
-```js
-// Request
-curl -X POST --data '{"jsonrpc":"2.0","method":"db_getHex","params":["testDB","myKey"],"id":73}'
-// Result
-{
- "id":1,
- "jsonrpc":"2.0",
- "result": "0x68656c6c6f20776f726c64"
-}
-```
-
-### shh_version (deprecato) {#shh_post}
-
-Restituisce la versione corrente del protocollo Whisper.
-
-**Nota** questa funzione è superata.
-
-**Parametri** Nessuno
-
-**Restituisce** `Stringa` - La versione corrente del protocollo Whisper
-
-**Esempio**
-
-```js
-// Request
-curl -X POST --data '{"jsonrpc":"2.0","method":"shh_version","params":[],"id":67}'
-// Result
-{
- "id":67,
- "jsonrpc": "2.0",
- "result": "2"
-}
-```
-
-### shh_post (deprecato) {#shh_version}
-
-Invia un messaggio Whisper.
-
-**Nota** questa funzione è superata.
-
-**Parametri**
-
-1. `Object` -Il contenuto dei post di Whisper:
-
-- `da`: `DATA`, 60 byte - (facoltativo) L'identità del mittente.
-- `to`: `DATA`, 60 byte - (facoltativo) L'identità del destinatario. Se presente, Whisper cifrerà il messaggio in modo che solo il destinatario possa decifrarlo.
-- `topics`: `Array of DATA` - Array di argomenti `DATA`, affinché il destinatario possa identificare i messaggi.
-- `payload`: `DATA` - Il payload del messaggio.
-- `priority`: `QUANTITY` - L'intero della priorità in un intervallo da ... (?).
-- `ttl`: `QUANTITY` - intero del tempo residuo in secondi.
-
-```js
-params: [
- {
- from: "0x04f96a5e25610293e42a73908e93ccc8c4d4dc0edcfa9fa872f50cb214e08ebf61a03e245533f97284d442460f2998cd41858798ddfd4d661997d3940272b717b1",
- to: "0x3e245533f97284d442460f2998cd41858798ddf04f96a5e25610293e42a73908e93ccc8c4d4dc0edcfa9fa872f50cb214e08ebf61a0d4d661997d3940272b717b1",
- topics: [
- "0x776869737065722d636861742d636c69656e74",
- "0x4d5a695276454c39425154466b61693532",
- ],
- payload: "0x7b2274797065223a226d6",
- priority: "0x64",
- ttl: "0x64",
- },
-]
-```
-
-**Restituisce** `Boolean` - restituisce `true` se il messaggio è stato inviato, altrimenti `false`.
-
-**Esempio**
-
-```js
-// Request
-curl -X POST --data '{"jsonrpc":"2.0","method":"shh_post","params":[{"from":"0xc931d93e97ab07fe42d923478ba2465f2..","topics": ["0x68656c6c6f20776f726c64"],"payload":"0x68656c6c6f20776f726c64","ttl":0x64,"priority":0x64}],"id":73}'
-// Result
-{
- "id":1,
- "jsonrpc":"2.0",
- "result": true
-}
-```
-
-### shh_newIdentity (deprecato){#shh_newidentity}
-
-Crea una nuova identità di Whisper nel client.
-
-**Nota** questa funzione è superata.
-
-**Parametri** Nessuno
-
-**Restituisce** `DATA`, 60 byte - l'indirizzo della nuova identità.
-
-**Esempio**
-
-```js
-// Request
-curl -X POST --data '{"jsonrpc":"2.0","method":"shh_newIdentity","params":[],"id":73}'
-// Result
-{
- "id":1,
- "jsonrpc": "2.0",
- "result": "0xc931d93e97ab07fe42d923478ba2465f283f440fd6cabea4dd7a2c807108f651b7135d1d6ca9007d5b68aa497e4619ac10aa3b27726e1863c1fd9b570d99bbaf"
-}
-```
-
-### shh_hasIdentity (deprecato){#shh_hasidentity}
-
-Controlla se il client possiede le chiavi private per una data identità.
-
-**Nota** questa funzione è superata.
-
-**Parametri**
-
-1. `DATA`, 60 byte - L'indirizzo di identità da controllare.
-
-```js
-params: [
- "0x04f96a5e25610293e42a73908e93ccc8c4d4dc0edcfa9fa872f50cb214e08ebf61a03e245533f97284d442460f2998cd41858798ddfd4d661997d3940272b717b1",
-]
-```
-
-**Restituisce** `Boolean` - restituisce `true` se il client detiene la chiave privata di tale identità, altrimenti `false`.
-
-**Esempio**
-
-```js
-// Request
-curl -X POST --data '{"jsonrpc":"2.0","method":"shh_hasIdentity","params":["0x04f96a5e25610293e42a73908e93ccc8c4d4dc0edcfa9fa872f50cb214e08ebf61a03e245533f97284d442460f2998cd41858798ddfd4d661997d3940272b717b1"],"id":73}'
-// Result
-{
- "id":1,
- "jsonrpc": "2.0",
- "result": true
-}
-```
-
-### shh_newGroup (deprecato){#shh_newgroup}
-
-**Nota** questa funzione è superata.
-
-**Parametri** Nessuno
-
-**Restituisce** `DATA`, 60 byte - l'indirizzo di un nuovo gruppo. (?)
-
-**Esempio**
-
-```js
-// Request
-curl -X POST --data '{"jsonrpc":"2.0","method":"shh_newGroup","params":[],"id":73}'
-// Result
-{
- "id":1,
- "jsonrpc": "2.0",
- "result": "0xc65f283f440fd6cabea4dd7a2c807108f651b7135d1d6ca90931d93e97ab07fe42d923478ba2407d5b68aa497e4619ac10aa3b27726e1863c1fd9b570d99bbaf"
-}
-```
-
-### shh_addToGroup (deprecato){#shh_addtogroup}
-
-**Nota** questa funzione è superata.
-
-**Parametri**
-
-1. `DATA`, 60 byte - L'indirizzo di identità da aggiungere a un gruppo (?).
-
-```js
-params: [
- "0x04f96a5e25610293e42a73908e93ccc8c4d4dc0edcfa9fa872f50cb214e08ebf61a03e245533f97284d442460f2998cd41858798ddfd4d661997d3940272b717b1",
-]
-```
-
-**Restituisce** `Boolean` - restituisce `true` se l'identità è stata aggiunta con successo al gruppo, altrimenti `false` (?).
-
-**Esempio**
-
-```js
-// Request
-curl -X POST --data '{"jsonrpc":"2.0","method":"shh_addToGroup","params":["0x04f96a5e25610293e42a73908e93ccc8c4d4dc0edcfa9fa872f50cb214e08ebf61a03e245533f97284d442460f2998cd41858798ddfd4d661997d3940272b717b1"],"id":73}'
-// Result
-{
- "id":1,
- "jsonrpc": "2.0",
- "result": true
-}
-```
-
-### shh_newFilter (deprecato){#shh_newfilter}
-
-Crea un filtro per avvisare quando il client riceve un messaggio Whisper corrispondente alle opzioni del filtro. **Nota** questa funzione è superata.
-
-**Parametri**
-
-1. `Oggetto` - Le opzioni del filtro:
-
-- `to`: `DATA`, 60 byte - (facoltativo) L'identità del destinatario. _Quando è presente, proverà a decifrare qualsiasi messaggio in arrivo se il client detiene la chiave privata di questa identità._
-- `topics`: `Array of DATA` - Array di argomenti `DATA` a cui dovrebbero corrispondere gli argomenti del messaggio in entrata. Possono essere utilizzate le seguenti combinazioni:
- - `[A, B] = A && B`
- - `[A, [B, C]] = A && (B || C)`
- - `[null, A, B] = ANYTHING && A && B` `null` funge da jolly
- -
-
-```js
-params: [
- {
- topics: ["0x12341234bf4b564f"],
- to: "0x04f96a5e25610293e42a73908e93ccc8c4d4dc0edcfa9fa872f50cb214e08ebf61a03e245533f97284d442460f2998cd41858798ddfd4d661997d3940272b717b1",
- },
-]
-```
-
-**Restituisce** `QUANTITY` - Il filtro appena creato.
-
-**Esempio**
-
-```js
-// Request
-curl -X POST --data '{"jsonrpc":"2.0","method":"shh_newFilter","params":[{"topics": ['0x12341234bf4b564f'],"to": "0x2341234bf4b2341234bf4b564f..."}],"id":73}'
-// Result
-{
- "id":1,
- "jsonrpc":"2.0",
- "result": "0x7" // 7
-}
-```
-
-### shh_uninstallFilter (deprecato){#shh_uninstallfilter}
-
-Disinstalla un filtro con un ID specificato. Dovrebbe essere chiamato sempre quando l'orologio non è più necessario. Inoltre i filtri scadono quando non vengono richiesti con [shh_getFilterChange](#shh_getfilterchanges) per un periodo di tempo. **Nota** questa funzione è superata.
-
-**Parametri**
-
-1. `QUANTITY` - L'ID del filtro.
-
-```js
-params: [
- "0x7", // 7
-]
-```
-
-**Restituisce** `Boolean` - `true` se il filtro è stato disinstallato con successo, altrimenti `false`.
-
-**Esempio**
-
-```js
-// Request
-curl -X POST --data '{"jsonrpc":"2.0","method":"shh_uninstallFilter","params":["0x7"],"id":73}'
-// Result
-{
- "id":1,
- "jsonrpc":"2.0",
- "result": true
-}
-```
-
-### shh_getFilterChanges (deprecato){#shh_getfilterchanges}
-
-Metodo di sondaggio per i filtri Whisper. Restituisce nuovi messaggi dall'ultima chiamata di questo metodo. **Nota** chiamando il metodo [shh_getMessages](#shh_getmessages) verrà resettato il buffer per questo metodo, in modo da non ricevere messaggi duplicati. **Nota** questa funzione è superata.
-
-**Parametri**
-
-1. `QUANTITY` - L'ID del filtro.
-
-```js
-params: [
- "0x7", // 7
-]
-```
-
-**Restituisce** `Array` - Array di messaggi ricevuti dall'ultimo sondaggio:
-
-- `hash`: `DATA`, 32 byte (?) - L'hash del messaggio.
-- `da`: `DATA`, 60 byte - Il mittente del messaggio, se è stato specificato un mittente.
-- `to`: `DATA`, 60 byte - Il destinatario del messaggio, se è stato specificato un destinatario.
-- `expiry`: `QUANTITY` - Intero del tempo in secondi che esprime la scadenza presunta del messaggio (?).
-- `ttl`: `QUANTITY` - Intero del tempo durante il quale il messaggio dovrebbe fluttuare nel sistema, in secondi (?).
-- `sent`: `QUANTITY` - Intero della marca temporale unix quando il messaggio è stato inviato.
-- `topics`: `Array of DATA` - Array di argomenti `DATA` contenuti nel messaggio.
-- `payload`: `DATA` - Il payload del messaggio.
-- `workProved`: `QUANTITY` - Intero del lavoro richiesto da questo messaggio prima che fosse inviato (?).
-
-**Esempio**
-
-```js
-// Request
-curl -X POST --data '{"jsonrpc":"2.0","method":"shh_getFilterChanges","params":["0x7"],"id":73}'
-// Result
-{
- "id":1,
- "jsonrpc":"2.0",
- "result": [{
- "hash": "0x33eb2da77bf3527e28f8bf493650b1879b08c4f2a362beae4ba2f71bafcd91f9",
- "from": "0x3ec052fc33..",
- "to": "0x87gdf76g8d7fgdfg...",
- "expiry": "0x54caa50a", // 1422566666
- "sent": "0x54ca9ea2", // 1422565026
- "ttl": "0x64", // 100
- "topics": ["0x6578616d"],
- "payload": "0x7b2274797065223a226d657373616765222c2263686...",
- "workProved": "0x0"
- }]
-}
-```
-
-### shh_getMessages (deprecato) {#shh_getmessages}
-
-Ottieni tutti i messaggi corrispondenti a un filtro. A differenza di `shh_getFilterChanges`, questo restituisce tutti i messaggi.
-
-**Nota** questa funzione è superata.
-
-**Parametri**
-
-1. `QUANTITY` - L'ID del filtro.
-
-```js
-params: [
- "0x7", // 7
-]
-```
-
-**Restituisce** Vedi [shh_getFilterChanges](#shh_getfilterchanges)
-
-**Esempio**
-
-```js
-// Request
-curl -X POST --data '{"jsonrpc":"2.0","method":"shh_getMessages","params":["0x7"
-],"id":73}'
-```
-
-Risultato vedi [shh_getFilterChanges](#shh_getfilterchanges)
-
## Esempio di utilizzo {#usage-example}
### Distribuire un contratto utilizzando JSON_RPC {#deploying-contract}
Questa sezione include una dimostrazione di come distribuire un contratto utilizzando solo l'interfaccia RPC. Esistono vie alternative per la distribuzione di contratti in cui questa complessità viene eliminata tramite astrazione, ad esempio utilizzando librerie costruite partendo dall'interfaccia RPC, come [web3. s](https://web3js.readthedocs.io/) e [web3.py](https://github.com/ethereum/web3.py). Queste astrazioni sono generalmente più facili da capire e meno soggette a errori, ma è comunque utile capire cosa succede dietro le quinte.
-Di seguito, trovi un semplice contratto intelligente, detto `Multiply7`, che sarà distribuito usando l'interfaccia JSON-RPC a un nodo di Ethereum. Questo tutorial presuppone che il lettore stia già eseguendo un nodo Geth. Maggiori informazioni sui nodi e sui client sono disponibili [qui](/developers/docs/nodes-and-clients/run-a-node). Fare riferimento alla documentazione del [client](/developers/docs/nodes-and-clients/) individuale per capire come avviare HTTP JSON-RPC per i client non-Geth. La maggior parte dei client serve di default su `localhost:8545`.
+Di seguito, trovi un semplice contratto intelligente chiamato `Multiply7`, che sarà distribuito usando l'interfaccia JSON-RPC a un nodo di Ethereum. Questo tutorial presuppone che il lettore stia già eseguendo un nodo Geth. Maggiori informazioni sui nodi e sui client sono disponibili [qui](/developers/docs/nodes-and-clients/run-a-node). Fare riferimento alla documentazione del singolo [client](/developers/docs/nodes-and-clients/) per capire come avviare HTTP JSON-RPC per i client non-Geth. La maggior parte dei client serve di default su `localhost:8545`.
```javascript
contract Multiply7 {
@@ -2263,7 +1645,7 @@ geth --http --dev console 2>>geth.log
Questo avvierà l'interfaccia HTTP RPC su `http://localhost:8545`.
-Possiamo verificare che l'interfaccia sia in esecuzione recuperando l'indirizzo Coinbase e il saldo utilizzando [curl](https://curl.se). Si prega di notare che i dati in questi esempi saranno diversi sul nodo locale. Se vuoi provare questi comandi, sostituisci i parametri di richiesta nella seconda richiesta di Curl con il risultato restituito dalla prima.
+Possiamo verificare che l'interfaccia sia in esecuzione recuperando l'indirizzo di Coinbase e il saldo utilizzando [curl](https://curl.se). Si noti che i dati in questi esempi saranno diversi sul nodo locale. Se vuoi provare questi comandi, sostituisci i parametri di richiesta nella seconda richiesta di curl con il risultato restituito dalla prima.
```bash
curl --data '{"jsonrpc":"2.0","method":"eth_coinbase", "id":1}' -H "Content-Type: application/json" localhost:8545
@@ -2273,14 +1655,14 @@ curl --data '{"jsonrpc":"2.0","method":"eth_getBalance", "params": ["0x9b1d35635
{"id":2,"jsonrpc":"2.0","result":"0x1639e49bba16280000"}
```
-Poiché i numeri sono soggetti a codifica esadecimale, il saldo viene restituito in wei sotto forma di stringa esadecimale. Se vogliamo ottenere il saldo in Ether sotto forma di numero possiamo utilizzare web3 dalla console Geth.
+Poiché i numeri sono soggetti a codifica esadecimale, il saldo viene restituito in wei sotto forma di stringa esadecimale. Se vogliamo ottenere il saldo in ether sotto forma di numero possiamo utilizzare web3 dalla console Geth.
```javascript
web3.fromWei("0x1639e49bba16280000", "ether")
// "410"
```
-Ora che vi sono Ether nella nostra catena di sviluppo privata, possiamo distribuire il contratto. Il primo passo è quello di compilare il contratto Multiply7 al codice di byte che può essere inviato all'EVM. Per installare solc, il compilatore Solidity, seguire la documentazione [Solidity](https://docs.soliditylang.org/en/latest/installing-solidity.html). (Potresti voler utilizzare una versione `solc` più vecchia per abbinare [la versione del compilatore utilizzata per il nostro esempio](https://github.com/ethereum/solidity/releases/tag/v0.4.20).)
+Ora che ci sono ether nella nostra catena di sviluppo privata, possiamo distribuire il contratto. Il primo passo è quello di compilare il contratto Multiply7 al codice di byte che può essere inviato all'EVM. Per installare solc, il compilatore Solidity, seguire la [documentazione Solidity](https://docs.soliditylang.org/en/latest/installing-solidity.html). (Potresti voler utilizzare una versione `solc` più vecchia che corrisponda [ alla versione del compilatore utilizzata per il nostro esempio](https://github.com/ethereum/solidity/releases/tag/v0.4.20).)
Il passo successivo è quello di compilare il contratto Multiply7 al codice di byte che può essere inviato all'EVM.
@@ -2306,14 +1688,14 @@ curl --data '{"jsonrpc":"2.0","method": "eth_sendTransaction", "params": [{"from
{"id":6,"jsonrpc":"2.0","result":"0xe1f3095770633ab2b18081658bad475439f6a08c902d0915903bafff06e6febf"}
```
-La transazione è accettata dal nodo e viene restituito un hash di transazione. Questo hash può essere usato per tracciare la transazione. Il passo successivo è quello di determinare l'indirizzo dove il nostro contratto è distribuito. Ogni transazione eseguita creerà una ricevuta. Questa ricevuta contiene varie informazioni sulla transazione, ad esempio, in quale blocco è stata inclusa e quanto carburante è stato usato dall'EVM. Se una transazione crea un contratto, conterrà anche l'indirizzo dello stesso. Possiamo recuperare la ricevuta con il metodo `eth_getTransactionReceipt` RPC.
+La transazione è accettata dal nodo e viene restituito un hash di transazione. Questo hash può essere usato per tracciare la transazione. Il passo successivo è quello di determinare l'indirizzo dove il nostro contratto è distribuito. Ogni transazione eseguita creerà una ricevuta. Questa ricevuta contiene varie informazioni sulla transazione, ad esempio, in quale blocco è stata inclusa e quanto carburante è stato usato dall'EVM. Se una transazione crea un contratto, ne conterrà anche l'indirizzo. Possiamo recuperare la ricevuta con il metodo RPC `eth_getTransactionReceipt`.
```bash
curl --data '{"jsonrpc":"2.0","method": "eth_getTransactionReceipt", "params": ["0xe1f3095770633ab2b18081658bad475439f6a08c902d0915903bafff06e6febf"], "id": 7}' -H "Content-Type: application/json" localhost:8545
{"jsonrpc":"2.0","id":7,"result":{"blockHash":"0x77b1a4f6872b9066312de3744f60020cbd8102af68b1f6512a05b7619d527a4f","blockNumber":"0x1","contractAddress":"0x4d03d617d700cf81935d7f797f4e2ae719648262","cumulativeGasUsed":"0x1c31e","from":"0x9b1d35635cc34752ca54713bb99d38614f63c955","gasUsed":"0x1c31e","logs":[],"logsBloom":"0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","status":"0x1","to":null,"transactionHash":"0xe1f3095770633ab2b18081658bad475439f6a08c902d0915903bafff06e6febf","transactionIndex":"0x0"}}
```
-Il nostro contratto è stato creato su `0x4d03d617d700cf81935d7f797f4e2ae719648262`. Un risultato nullo invece di una ricevuta significa che la transazione non è ancora stata inclusa in un blocco. Attendere un attimo e controllare se il miner è in esecuzione, quindi riprovare.
+Il nostro contratto è stato creato su `0x4d03d617d700cf81935d7f797f4e2ae719648262`. Un risultato null invece di una ricevuta significa che la transazione non è ancora stata inclusa in un blocco. Attendere un attimo e controllare se il miner è in esecuzione, quindi riprovare.
#### Interagire con i contratti intelligenti {#interacting-with-smart-contract}
@@ -2328,11 +1710,11 @@ web3.sha3("multiply(uint256)").substring(0, 10)
// "0xc6888fa1"
```
-Il passo successivo è la codifica degli argomenti. Vi è solo un uint256, ad esempio il valore 6. L'ABI ha una sezione che specifica come codificare i tipi uint256.
+Il passo successivo è codificare gli argomenti. Vi è solo un uint256, ad esempio il valore 6. L'ABI ha una sezione che specifica come codificare i tipi uint256.
`int: enc(X)` è la codifica big-endian in complemento a due di X, riempita sul lato di ordine superiore (sinistro) con 0xff per X negativo e con zero > byte per X positivo, in modo tale che la lunghezza sia un multiplo di 32 byte.
-Si ottiene la codifica `0000000000000000000000000000000000000000000000000000000000000000000000000006`.
+Si ottiene la codifica `0000000000000000000000000000000000000000000000000000000000000006`.
Combinando il selettore di funzione e l'argomento codificato, otterremo i dati `0xc6888fa100000000000000000000000000000000000000000000000000000000000000000000000000000006`.
@@ -2367,14 +1749,14 @@ Dall'invio di una transazione, è stato restituito un hash di transazione. Recup
}
```
-La ricevuta contiene un registro. Questo registro è stato generato dall'EVM sull'esecuzione della transazione e incluso nella ricevuta. La funzione `multiply` mostra che l'evento `Print` è stato lanciato con i tempi di input 7. Poiché l'argomento per l'evento `Print` era un uint256, possiamo decodificarlo secondo le regole ABI, ottenendo così il decimale 42 previsto. Oltre ai dati, vale la pena notare che gli argomenti possono essere utilizzati per determinare quale evento ha creato il registro:
+La ricevuta contiene un registro. Questo registro è stato generato da EVM sull'esecuzione della transazione e incluso nella ricevuta. La funzione `multiply` mostra che l'evento `Print` è stato lanciato con i tempi di input 7. Poiché l'argomento per l'evento `Print` era un uint256, possiamo decodificarlo secondo le regole ABI, ottenendo così il decimale 42 previsto. Oltre ai dati, vale la pena notare che gli argomenti possono essere utilizzati per determinare quale evento ha creato il registro:
```javascript
web3.sha3("Print(uint256)")
// "24abdb5865df5079dcc5ac590ff6f01d5c16edbc5fab4e195d9febd1114503da"
```
-Questa è stata solo una breve introduzione su alcune delle attività più comuni, dimostrando l'uso diretto di JSON-RPC.
+Questa è stata solo una breve introduzione su alcuni dei compiti più comuni, dimostrando l'uso diretto del JSON-RPC.
## Argomenti correlati {#related-topics}
diff --git a/public/content/translations/it/developers/docs/blocks/index.md b/public/content/translations/it/developers/docs/blocks/index.md
index beded084845..65e73f5427d 100644
--- a/public/content/translations/it/developers/docs/blocks/index.md
+++ b/public/content/translations/it/developers/docs/blocks/index.md
@@ -1,6 +1,6 @@
---
title: Blocchi
-description: "Panoramica dei blocchi nella blockchain Ethereum: struttura dati, a cosa servono e come sono fatti."
+description: 'Panoramica dei blocchi nella blockchain Ethereum: struttura dati, a cosa servono e come sono fatti.'
lang: it
---
@@ -40,7 +40,7 @@ Proof of Stake significa quanto segue:
In un blocco sono contenute molte informazioni. Al livello più alto, un blocco contiene i seguenti campi:
| Campo | Descrizione |
-| :------------------ | :-------------------------------------------------------- |
+|:------------------- |:--------------------------------------------------------- |
| `slot` | lo slot a cui appartiene il blocco |
| `indice_proponente` | l'ID del validatore che propone il blocco |
| `parent_root` | l'hash del blocco precedente |
@@ -50,7 +50,7 @@ In un blocco sono contenute molte informazioni. Al livello più alto, un blocco
Il blocco `body` contiene a sua volta diversi campi:
| Campo | Descrizione |
-| :------------------- | :--------------------------------------------------------------------- |
+|:-------------------- |:---------------------------------------------------------------------- |
| `randao_reveal` | un valore utilizzato per selezionare il prossimo proponente di blocchi |
| `et1_data` | informazioni sul contratto di deposito |
| `graffiti` | dati arbitrari utilizzati per contrassegnare blocchi |
@@ -65,7 +65,7 @@ Il blocco `body` contiene a sua volta diversi campi:
Il campo `attestations` contiene un elenco di tutte le attestazioni nel blocco. Le attestazioni hanno il proprio tipo di dati, contenente diversi pezzi di dati. Ogni attestazione contiene:
| Campo | Descrizione |
-| :----------------- | :------------------------------------------------------------------- |
+|:------------------ |:-------------------------------------------------------------------- |
| `aggregation_bits` | un elenco dei validatori che hanno partecipato a questa attestazione |
| `dati` | un contenitore con diversi campi secondari |
| `firma` | firma aggregata di tutti i validatori attestanti |
@@ -73,7 +73,7 @@ Il campo `attestations` contiene un elenco di tutte le attestazioni nel blocco.
Il campo `data` nell'`attestation` contiene quanto segue:
| Campo | Descrizione |
-| :------------------ | :-------------------------------------------------------- |
+|:------------------- |:--------------------------------------------------------- |
| `slot` | lo slot cui si riferisce l'attestazione |
| `indice` | indici per l'attestazione dei validatori |
| `beacon_block_root` | l'hash radice del blocco Beacon contenente questo oggetto |
@@ -85,7 +85,7 @@ L'esecuzione delle transazioni nell'`execution_payload` aggiorna lo stato global
L'`execution_payload_header` contiene i seguenti campi:
| Campo | Descrizione |
-| :------------------ | :------------------------------------------------------------------------------------ |
+|:------------------- |:------------------------------------------------------------------------------------- |
| `parent_hash` | hash del blocco padre |
| `fee_recipient` | indirizzo del conto a cui pagare le commissioni sulla transazione |
| `state_root` | hash radice per lo stato globale dopo l'applicazione delle modifiche in questo blocco |
@@ -105,7 +105,7 @@ L'`execution_payload_header` contiene i seguenti campi:
Lo stesso `execution_payload` contiene quanto segue (si noti che è identico all'intestazione, tranne per il fatto che, invece dell'hash radice delle transazioni, include l'elenco effettivo delle transazioni e informazioni sui prelievi):
| Campo | Descrizione |
-| :----------------- | :---------------------------------------------------------------------------------- |
+|:------------------ |:----------------------------------------------------------------------------------- |
| `parent_hash` | hash del blocco genitore |
| `fee_recipient` | indirizzo del conto a cui pagare le commissioni di transazione |
| `stato_del_root` | hash radice per lo stato globale, dopo l'applicazione di modifiche in questo blocco |
@@ -125,7 +125,7 @@ Lo stesso `execution_payload` contiene quanto segue (si noti che è identico all
L'elenco dei `withdrawals` contiene oggetti `withdrawal` strutturati nel modo seguente:
| Campo | Descrizione |
-| :--------------- | :----------------------------------- |
+|:---------------- |:------------------------------------ |
| `address` | indirizzo del conto che ha prelevato |
| `amount` | importo del prelievo |
| `indice` | valore dell'indice di prelievo |
diff --git a/public/content/translations/it/developers/docs/consensus-mechanisms/pos/block-proposal/index.md b/public/content/translations/it/developers/docs/consensus-mechanisms/pos/block-proposal/index.md
index 4f6767562c5..43ec2ad31d1 100644
--- a/public/content/translations/it/developers/docs/consensus-mechanisms/pos/block-proposal/index.md
+++ b/public/content/translations/it/developers/docs/consensus-mechanisms/pos/block-proposal/index.md
@@ -64,6 +64,6 @@ Il propositore del blocco riceve il pagamento per il proprio lavoro. Esiste una
- [Introduzione ai blocchi](/developers/docs/blocks/)
- [Introduzione al proof-of-stake](/developers/docs/consensus-mechanisms/pos/)
-- [Specifiche del consenso di Ethereum](https://www.github.com/ethereum/consensus-specs)
+- [Specifiche del consenso di Ethereum](https://github.com/ethereum/consensus-specs)
- [Introduzione a Gasper](/developers/docs/consensus-mechanisms/pos/)
- [Aggiornare Ethereum](https://eth2book.info/)
diff --git a/public/content/translations/it/developers/docs/consensus-mechanisms/pos/index.md b/public/content/translations/it/developers/docs/consensus-mechanisms/pos/index.md
index 3130d86f953..311db7bb2a4 100644
--- a/public/content/translations/it/developers/docs/consensus-mechanisms/pos/index.md
+++ b/public/content/translations/it/developers/docs/consensus-mechanisms/pos/index.md
@@ -12,11 +12,11 @@ Per capire meglio questa pagina ti consigliamo di leggere i [meccanismi di conse
## Cos'è la proof-of-stake (PoS)? {#what-is-pos}
-Proof-of-stake è un modo per dimostrare che i validatori hanno messo qualcosa di valore nella rete che può essere distrutto se agiscono in maniera disonesta. Nel proof-of-stake di Ethereum, i validatori mettono esplicitamente in stakaing il capitale sotto forma di ETH, in un contratto intelligente su Ethereum. Il validatore è poi responsabile di verificare che i nuovi blocchi propagati sulla rete siano validi e, occasionalmente, di creare e propagare nuovi blocchi. Se prova a frodare la rete (ad esempio proponendo blocchi multipli quando dovrebbe inviarne uno o inviando attestazioni conflittuali) alcuni o tutti i suoi ETH in staking possono venire distrutti.
+Proof-of-stake è un modo per dimostrare che i validatori hanno messo qualcosa di valore nella rete che può essere distrutto se agiscono in maniera disonesta. Nel proof-of-stake di Ethereum, i validatori mettono esplicitamente in stakaing il capitale sotto forma di ETH, in un contratto intelligente su Ethereum. Il validatore è poi responsabile di verificare che i nuovi blocchi propagati sulla rete siano validi e, occasionalmente, di creare e propagare nuovi blocchi. Se prova a frodare la rete (ad esempio proponendo blocchi multipli quando dovrebbe inviarne uno o inviando attestazioni conflittuali) alcuni o tutti i suoi ETH in staking possono venire distrutti.
## Validatori {#validators}
-Per partecipare come validatore, un utente deve depositare 32 ETH nel contratto di deposito ed eseguire tre software distinti: un client di esecuzione, uno di consenso e un validatore. Depositando i propri ETH, l'utente si unisce alla coda di attivazione che limita la frequenza di partecipazione alla rete dei nuovi validatori. Una volta attivati, i validatori ricevono nuovi blocchi dai pari sulla rete di Ethereum. Le transazioni inviate nel blocco sono eseguite nuovamente per controllare che i cambiamenti dello stato di Ethereum proposti siano validi e che la firma del blocco sia controllata. Il validatore invia poi nella rete un voto (detto attestazione) a favore di quel blocco.
+Per partecipare come validatore, un utente deve depositare 32 ETH nel contratto di deposito ed eseguire tre software separati: un client di esecuzione, un client di consenso e un client del validatore. Depositando i propri ETH, l'utente si unisce alla coda di attivazione che limita la frequenza di partecipazione alla rete dei nuovi validatori. Una volta attivati, i validatori ricevono nuovi blocchi dai pari sulla rete di Ethereum. Le transazioni inviate nel blocco sono eseguite nuovamente per controllare che i cambiamenti dello stato di Ethereum proposti siano validi e che la firma del blocco sia controllata. Il validatore invia poi nella rete un voto (detto attestazione) a favore di quel blocco.
Se con il proof-of-work la tempistica dei blocchi è determinata dalla difficoltà di mining, nel proof-of-stake il ritmo invece è fisso. Il tempo in Ethereum di proof-of-stake è diviso in slot (12 secondi) ed epoche (32 slot). In ogni slot viene selezionato casualmente un validatore come propositore di blocchi. Questo validatore è responsabile della creazione di un nuovo blocco e del suo invio ad altri nodi sulla rete. Inoltre, in ogni slot, è scelto casualmente un comitato di validatori, i cui voti sono usati per determinare la validità del blocco proposto. Dividere le impostazioni del validatore in comitati è importante per mantenere gestibile il carico della rete. I comitati suddividono la serie di validatori affinché ogni validatore attivo attesti in ogni epoca ma non in ogni slot.
diff --git a/public/content/translations/it/developers/docs/consensus-mechanisms/pow/index.md b/public/content/translations/it/developers/docs/consensus-mechanisms/pow/index.md
index 00360f7f791..f148d992374 100644
--- a/public/content/translations/it/developers/docs/consensus-mechanisms/pow/index.md
+++ b/public/content/translations/it/developers/docs/consensus-mechanisms/pow/index.md
@@ -68,7 +68,7 @@ Per complicare ulteriormente le cose, le transazioni che erano state rifiutate s
## Consumo energetico del Proof of Work {#energy}
-Una delle principali critiche mosse al Proof of Work riguarda la quantità di energia necessaria per mantenere la rete sicura. Per mantenere la sicurezza e la decentralizzazione, Ethereum sul Proof of Work consumava elevate quantità di energia. Poco prima di passare al Proof of Stake, i miner di Ethereum consumavano collettivamente circa 70 TWh/anno (quasi quanto la Repubblica ceca, secondo [digiconomist](https://digiconomist.net), il 18 luglio 2022).
+Una delle principali critiche mosse al Proof of Work riguarda la quantità di energia necessaria per mantenere la rete sicura. Per mantenere la sicurezza e la decentralizzazione, Ethereum sul Proof of Work consumava elevate quantità di energia. Poco prima di passare al Proof of Stake, i miner di Ethereum consumavano collettivamente circa 70 TWh/anno (quasi quanto la Repubblica ceca, secondo [digiconomist](https://digiconomist.net/), il 18 luglio 2022).
## Pro e contro {#pros-and-cons}
diff --git a/public/content/translations/it/developers/docs/consensus-mechanisms/pow/mining-algorithms/dagger-hashamoto/index.md b/public/content/translations/it/developers/docs/consensus-mechanisms/pow/mining-algorithms/dagger-hashamoto/index.md
deleted file mode 100644
index acf9c387f9c..00000000000
--- a/public/content/translations/it/developers/docs/consensus-mechanisms/pow/mining-algorithms/dagger-hashamoto/index.md
+++ /dev/null
@@ -1,334 +0,0 @@
----
-title: Dagger-Hashimoto
-description: Uno sguardo dettagliato all'algoritmo di Dagger-Hashimoto.
-lang: it
----
-
-Dagger-Hashimoto era l'implementazione e specifica di ricerca originale per l'algoritmo di mining di Ethereum. Dagger-Hashimoto è stato sostituito da [Ethash](#ethash). Il mining sarà disattivato completamente dopo [La Fusione](/updates/merge), a partire dalla quale Ethereum sarà invece protetto usando un meccanismo di [proof-of-stake](/developers/docs/consensus-mechanisms/pos).
-
-## Prerequisiti {#prerequisites}
-
-Per meglio comprendere questa pagina, ti consigliamo prima di informarti sul [consenso proof-of-work](/developers/docs/consensus-mechanisms/pow), sul [mining](/developers/docs/consensus-mechanisms/pow/mining) e sugli [algoritmi di mining](/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms).
-
-## Dagger-Hashimoto {#dagger-hashimoto}
-
-Dagger-Hashimoto punta a soddisfare due obiettivi:
-
-1. **Resistenza ASIC**: la creazione di hardware specializzato per l'algoritmo dovrebbe apportare un beneficio minimo
-2. **Verificabilità da un client leggero**: un blocco dovrebbe essere efficientemente verificabile da un client leggero.
-
-Con una modifica aggiuntiva, specifichiamo anche come raggiungere un terzo obiettivo se desiderato, ma al costo di una maggiore complessità:
-
-**Archiviazione della catena completa**: il mining dovrebbe richiedere l'archiviazione dello stato completo della blockchain (a causa della struttura irregolare dell'albero di stato di Ethereum, prevediamo la possibilità di alcune potature (pruning), soprattutto dopo alcuni contratti usati spesso, che vogliamo comunque mantenere al minimo).
-
-## Generazione del DAG {#dag-generation}
-
-Il codice per l'algoritmo sarà definito in Python, di seguito. Per prima cosa, diamo `encode_int` per il marshaling in stringhe di interi non firmati con una precisione specificata. È dato anche il suo opposto:
-
-```python
-NUM_BITS = 512
-
-def encode_int(x):
- "Encode an integer x as a string of 64 characters using a big-endian scheme"
- o = ''
- for _ in range(NUM_BITS / 8):
- o = chr(x % 256) + o
- x //= 256
- return o
-
-def decode_int(s):
- "Unencode an integer x from a string using a big-endian scheme"
- x = 0
- for c in s:
- x *= 256
- x += ord(c)
- return x
-```
-
-Poi supponiamo che `sha3` sia una funzione che prende un intero e produce un intero e che `dbl_sha3` sia una funzione double-sha3; se vogliamo convertire questo codice di riferimento in un uso d'implementazione:
-
-```python
-from pyethereum import utils
-def sha3(x):
- if isinstance(x, (int, long)):
- x = encode_int(x)
- return decode_int(utils.sha3(x))
-
-def dbl_sha3(x):
- if isinstance(x, (int, long)):
- x = encode_int(x)
- return decode_int(utils.sha3(utils.sha3(x)))
-```
-
-### Parametri {#parameters}
-
-I parametri usati per l'algoritmo sono:
-
-```python
-SAFE_PRIME_512 = 2**512 - 38117 # Largest Safe Prime less than 2**512
-
-params = {
- "n": 4000055296 * 8 // NUM_BITS, # Size of the dataset (4 Gigabytes); MUST BE MULTIPLE OF 65536
- "n_inc": 65536, # Increment in value of n per period; MUST BE MULTIPLE OF 65536
- # with epochtime=20000 gives 882 MB growth per year
- "cache_size": 2500, # Size of the light client's cache (can be chosen by light
- # client; not part of the algo spec)
- "diff": 2**14, # Difficulty (adjusted during block evaluation)
- "epochtime": 100000, # Length of an epoch in blocks (how often the dataset is updated)
- "k": 1, # Number of parents of a node
- "w": w, # Used for modular exponentiation hashing
- "accesses": 200, # Number of dataset accesses during hashimoto
- "P": SAFE_PRIME_512 # Safe Prime for hashing and random number generation
-}
-```
-
-`P` in questo caso è un numero primo scelto in modo che `log₂(P)` sia solo di poco inferiore a 512, che corrisponde ai 512 bit che abbiamo usato per rappresentare i nostri numeri. Nota che in realtà deve essere memorizzata solo la seconda metà del DAG, quindi il requisito de-facto di RAM parte da 1 GB e cresce di 441 MB l'anno.
-
-### Costruzione del grafico dagger {#dagger-graph-building}
-
-Il primitivo di costruzione del grafico dagger è definito come segue:
-
-```python
-def produce_dag(params, seed, length):
- P = params["P"]
- picker = init = pow(sha3(seed), params["w"], P)
- o = [init]
- for i in range(1, length):
- x = picker = (picker * init) % P
- for _ in range(params["k"]):
- x ^= o[x % i]
- o.append(pow(x, params["w"], P))
- return o
-```
-
-Essenzialmente, avvia un grafico come un singolo nodo, `sha3(seed)` e da lì si inizia ad aggiungere sequenzialmente gli altri nodi, a seconda dei nodi casuali precedenti. Quando viene creato un nuovo nodo, è calcolata una potenza modulare del seed per selezionare casualmente degli indici inferiori a `i` (usando il suddetto `x % i`) e i valori dei nodi a questi indici sono usati all'interno di un calcolo per generare un nuovo valore per `x`, che viene poi passato a una piccola funzione di proof-of-work (basata su XOR) per generare, infine, il valore del grafico all'indice `i`. La logica dietro questa costruzione particolare è forzare l'accesso sequenziale del DAG; il valore successivo del DAG che sarà accessibile non è determinabile finché non sia noto il valore corrente. Infine, l'esponenziazione modulare genera ulteriormente un hashing del risultato.
-
-Questo algoritmo si basa su diversi risultati dalla teoria dei numeri. Vedere l'appendice più avanti per una discussione.
-
-## Valutazione da client leggero {#light-client-evaluation}
-
-Questa costruzione del grafico intende consentire a ogni nodo nel grafico di essere ricostruito calcolando solamente l'albero secondario di un piccolo numero di nodi, in modo da richiedere solo una piccola quantità di memoria ausiliaria. Nota che, con k=1, l'albero secondario è solo una catena di valori che cresce al primo elemento nel DAG.
-
-La funzione di calcolo del client leggero per il DAG funziona così:
-
-```python
-def quick_calc(params, seed, p):
- w, P = params["w"], params["P"]
- cache = {}
-
- def quick_calc_cached(p):
- if p in cache:
- pass
- elif p == 0:
- cache[p] = pow(sha3(seed), w, P)
- else:
- x = pow(sha3(seed), (p + 1) * w, P)
- for _ in range(params["k"]):
- x ^= quick_calc_cached(x % p)
- cache[p] = pow(x, w, P)
- return cache[p]
-
- return quick_calc_cached(p)
-```
-
-essenzialmente, è semplicemente una riscrittura dell'algoritmo di cui sopra, che elimina il ciclo di calcolo dei valori per l'intero DAG e sostituisce la ricerca del nodo precedente con una chiamata ricorsiva o una ricerca della cache. Nota che per `k=1`, la cache non è necessaria, anche se in realtà un'ulteriore ottimizzazione pre-calcola le prime migliaia di valori del DAG e li mantiene come una cache statica per i calcoli; vedi l'appendice per l'implementazione di un codice a riguardo.
-
-## Doppio buffer di DAG {#double-buffer}
-
-In un client completo, è usato un [_doppio buffer_](https://wikipedia.org/wiki/Multiple_buffering) di 2 DAG prodotti dalla suddetta formula. L'idea è che i DAG siano prodotti ogni `epochtime` numero di blocchi, secondo i parametri indicati sopra. Il client non usa l'ultimo DAG prodotto, ma quello precedente. Il beneficio è che consente ai DAG di essere sostituiti nel tempo senza dover prevedere un passaggio in cui i miner devono improvvisamente ricalcolare tutti i dati. In caso contrario vi sarebbe il rischio, a intervalli regolari, di un brusco rallentamento temporaneo nell'elaborazione della catena e l'aumento drastico della centralizzazione. In quei pochi minuti prima che tutti i dati siano ricalcolati sussiste quindi il rischio di un attacco 51%.
-
-L'algoritmo usato per generare la serie di DAG usati per calcolare il lavoro per un blocco è il seguente:
-
-```python
-def get_prevhash(n):
- from pyethereum.blocks import GENESIS_PREVHASH
- from pyethereum import chain_manager
- if num <= 0:
- return hash_to_int(GENESIS_PREVHASH)
- else:
- prevhash = chain_manager.index.get_block_by_number(n - 1)
- return decode_int(prevhash)
-
-def get_seedset(params, block):
- seedset = {}
- seedset["back_number"] = block.number - (block.number % params["epochtime"])
- seedset["back_hash"] = get_prevhash(seedset["back_number"])
- seedset["front_number"] = max(seedset["back_number"] - params["epochtime"], 0)
- seedset["front_hash"] = get_prevhash(seedset["front_number"])
- return seedset
-
-def get_dagsize(params, block):
- return params["n"] + (block.number // params["epochtime"]) * params["n_inc"]
-
-def get_daggerset(params, block):
- dagsz = get_dagsize(params, block)
- seedset = get_seedset(params, block)
- if seedset["front_hash"] <= 0:
- # No back buffer is possible, just make front buffer
- return {"front": {"dag": produce_dag(params, seedset["front_hash"], dagsz),
- "block_number": 0}}
- else:
- return {"front": {"dag": produce_dag(params, seedset["front_hash"], dagsz),
- "block_number": seedset["front_number"]},
- "back": {"dag": produce_dag(params, seedset["back_hash"], dagsz),
- "block_number": seedset["back_number"]}}
-```
-
-## Hashimoto {#hashimoto}
-
-L'idea dietro all'Hashimoto originale è usare la blockchain come dataset, eseguendo un calcolo che selezioni N indici dalla blockchain, raccolga le transazioni a quegli indici, esegua uno XOR di questi dati e restituisca l'hash del risultato. L'algoritmo originale di Thaddeus Dryja, tradotto in Python per coerenza, è il seguente:
-
-```python
-def orig_hashimoto(prev_hash, merkle_root, list_of_transactions, nonce):
- hash_output_A = sha256(prev_hash + merkle_root + nonce)
- txid_mix = 0
- for i in range(64):
- shifted_A = hash_output_A >> i
- transaction = shifted_A % len(list_of_transactions)
- txid_mix ^= list_of_transactions[transaction] << i
- return txid_max ^ (nonce << 192)
-```
-
-Sfortunatamente, anche se Hashimoto è considerato gravoso per la RAM, si affida a un'aritmetica a 256 bit, che richiede molti calcoli. Per risolvere questo problema, Dagger-Hashimoto usa comunque solo i 64 bit meno significativi, indicizzando il proprio dataset.
-
-```python
-def hashimoto(dag, dagsize, params, header, nonce):
- m = dagsize / 2
- mix = sha3(encode_int(nonce) + header)
- for _ in range(params["accesses"]):
- mix ^= dag[m + (mix % 2**64) % m]
- return dbl_sha3(mix)
-```
-
-L'uso di SHA3 doppi consente una forma di dati zero, una pre-verifica quasi istantanea, che verifica solo che sia stato fornito un valore intermedio corretto. Questo livello esterno di proof-of-work è altamente pro-ASIC e abbastanza debole, ma è pensato per rendere ancora più complicati gli attacchi DDoS, poiché per produrre un blocco che non sarà immediatamente scartato deve essere eseguito un po’ di lavoro. Ecco la versione del client leggero:
-
-```python
-def quick_hashimoto(seed, dagsize, params, header, nonce):
- m = dagsize // 2
- mix = sha3(nonce + header)
- for _ in range(params["accesses"]):
- mix ^= quick_calc(params, seed, m + (mix % 2**64) % m)
- return dbl_sha3(mix)
-```
-
-## Mining e verifica {#mining-and-verifying}
-
-Mettiamo ora tutto insieme nell'algoritmo di mining:
-
-```python
-def mine(daggerset, params, block):
- from random import randint
- nonce = randint(0, 2**64)
- while 1:
- result = hashimoto(daggerset, get_dagsize(params, block),
- params, decode_int(block.prevhash), nonce)
- if result * params["diff"] < 2**256:
- break
- nonce += 1
- if nonce >= 2**64:
- nonce = 0
- return nonce
-```
-
-Ecco l'algoritmo di verifica:
-
-```python
-def verify(daggerset, params, block, nonce):
- result = hashimoto(daggerset, get_dagsize(params, block),
- params, decode_int(block.prevhash), nonce)
- return result * params["diff"] < 2**256
-```
-
-Verifica adatta a un client leggero:
-
-```python
-def light_verify(params, header, nonce):
- seedset = get_seedset(params, block)
- result = quick_hashimoto(seedset["front_hash"], get_dagsize(params, block),
- params, decode_int(block.prevhash), nonce)
- return result * params["diff"] < 2**256
-```
-
-Inoltre, nota che Dagger-Hashimoto impone anche altri requisiti sull'intestazione del blocco:
-
-- Perché la verifica a due livelli funzioni, l'intestazione di un blocco deve avere sia il nonce che il valore medio di pre-sha3
-- Da qualche parte, l'intestazione di un blocco deve memorizzare la sha3 del set di seed corrente
-
-## Letture consigliate {#further-reading}
-
-_Conosci una risorsa della community che ti è stata utile? Modifica questa pagina e aggiungila!_
-
-## Appendice {#appendix}
-
-Come notato sopra, l'RNG usato per la generazione del DAG si affida ad alcuni risultati dalla teoria dei numeri. Per prima cosa, accertiamoci che l'RNG di Lehmer che è la base per la variabile `picker` abbia un periodo ampio. In secondo luogo, mostriamo che `pow(x,3,P)` non mapperà `x` a `1` o `P-1`, a condizione che all’inizio `x ∈ [2,P-2]`. Infine, mostriamo che `pow(x,3,P)` ha un basso tasso di collisione se trattato come funzione di hashing.
-
-### Generatore di numeri casuali di Lehmer {#lehmer-random-number}
-
-Sebbene la funzione `produce_dag` non necessiti di produrre numeri casuali imparziali, un possibile rischio è dato dal fatto che `seed**i % P` prende solo una manciata di valori. Questo potrebbe fornire un vantaggio ai miner che riconoscono lo schema, rispetto a quelli che non lo conoscono.
-
-Per evitarlo, si è fatto ricorso a un risultato dalla teoria dei numeri. Un [_Numero primo sicuro_](https://en.wikipedia.org/wiki/Safe_prime) si definisce come numero primo `P` tale per cui anche `(P-1)/2` è un numero primo. L'_ordine_ di un membro `x` del [gruppo moltiplicativo](https://en.wikipedia.org/wiki/Multiplicative_group_of_integers_modulo_n) `ℤ/nℤ` è definito come il valore minimo di `m` tale per cui
xᵐ mod P ≡ 1
-Date queste definizioni, abbiamo:
-
-> Osservazione 1. Ipotizziamo che `x` sia un membro del gruppo moltiplicativo `ℤ/Pℤ` per un numero primo sicuro `P`. Se `x mod P ≠ 1 mod P` e `x mod P ≠ P-1 mod P`, allora l'ordine di `x` è `P-1` o `(P-1)/2`.
-
-_Dimostrazione_. Poiché `P` è un numero primo sicuro, allora per il \[Teorema di Lagrange\]\[lagrange\], l'ordine di `x` è `1`, `2`, `(P-1)/2` o `P-1`.
-
-L'ordine di `x` non può essere `1`, poiché secondo il Piccolo teorema di Fermat:
-
-
xP-1 mod P ≡ 1
-
-Quindi, `x`, deve essere un'identità moltiplicativa di `ℤ/nℤ`, che è univoca. Poiché abbiamo presupposto che `x ≠ 1`, ciò è impossibile.
-
-L'ordine di `x` non può essere `2` a meno che `x = P-1`, poiché ciò violerebbe il fatto che `P` sia un numero primo.
-
-Dalla suddetta proposizione possiamo capire che iterando `(picker * init) % P`, avrà una lunghezza del ciclo di almeno `(P-1)/2`. Questo perché abbiamo selezionato `P` come un numero primo sicuro, approssimativamente pari a una potenza superiore di due e che `init` è nell'intervallo `[2,2**256+1]`. Data la magnitudine di `P`, non dovremmo mai aspettarci un ciclo dall'esponenziazione modulare.
-
-Quando assegniamo la prima cella nel DAG (la variabile etichettata come `init`), calcoliamo `pow(sha3(seed) + 2, 3, P)`. A prima vista, questo non garantisce che il risultato sia `1` né `P-1`. Tuttavia, poiché `P-1` è un numero primo sicuro, abbiamo la seguente garanzia aggiuntiva, che è un corollario dell'Osservazione 1:
-
-> Osservazione 2. Ipotizziamo che `x` sia un membro del gruppo moltiplicativo `ℤ/Pℤ` per un numero primo sicuro `P`, e prendiamo `w` come numero naturale. Se `x mod P ≠ 1 mod P` e `x mod P ≠ P-1 mod P`, nonché `w mod P ≠ P-1 mod P` e `w mod P ≠ 0 mod P`, allora `xʷ mod P ≠ 1 mod P` e `xʷ mod P ≠ P-1 mod P`
-
-### Esponenziazione modulare come funzione di hash {#modular-exponentiation}
-
-Per certi valori di `P` e `w`, la funzione `pow(x, w, P)` potrebbe avere molte collisioni. Ad esempio, `pow(x,9,19)` prende solo i valori `{1,18}`.
-
-Dato che `P` è primo, allora è possibile scegliere un'appropriata `w` per una funzione di hashing di esponenziazione modulare usando il seguente risultato:
-
-> Osservazione 3. Prendiamo `P` come numero primo; `w` e `P-1` sono coprimi se e solo se per ogni `a` e `b` in `ℤ/Pℤ`:
->
->
-> `aʷ mod P ≡ bʷ mod P` se e solo se `a mod P ≡ b mod P`
->
-
-Dunque, dato che `P` è primo e `w` è coprimo rispetto a `P-1`, abbiamo che `|{pow(x, w, P) : x ∈ ℤ}| = P`, e questo implica che la funzione di hashing ha la frequenza di collisione minima possibile.
-
-Nel caso speciale in cui `P` sia un numero primo sicuro, come da noi selezionato, allora `P-1` ha solo i fattori 1, 2, `(P-1)/2` e `P-1`. Poiché `P` > 7, sappiamo che 3 è primo rispetto a `P-1`, quindi `w=3` soddisfa la proposizione precedente.
-
-## Algoritmo di valutazione più efficiente basato sulla cache {#cache-based-evaluation}
-
-```python
-def quick_calc(params, seed, p):
- cache = produce_dag(params, seed, params["cache_size"])
- return quick_calc_cached(cache, params, p)
-
-def quick_calc_cached(cache, params, p):
- P = params["P"]
- if p < len(cache):
- return cache[p]
- else:
- x = pow(cache[0], p + 1, P)
- for _ in range(params["k"]):
- x ^= quick_calc_cached(cache, params, x % p)
- return pow(x, params["w"], P)
-
-def quick_hashimoto(seed, dagsize, params, header, nonce):
- cache = produce_dag(params, seed, params["cache_size"])
- return quick_hashimoto_cached(cache, dagsize, params, header, nonce)
-
-def quick_hashimoto_cached(cache, dagsize, params, header, nonce):
- m = dagsize // 2
- mask = 2**64 - 1
- mix = sha3(encode_int(nonce) + header)
- for _ in range(params["accesses"]):
- mix ^= quick_calc_cached(cache, params, m + (mix & mask) % m)
- return dbl_sha3(mix)
-```
diff --git a/public/content/translations/it/developers/docs/consensus-mechanisms/pow/mining-algorithms/ethash/index.md b/public/content/translations/it/developers/docs/consensus-mechanisms/pow/mining-algorithms/ethash/index.md
deleted file mode 100644
index f460ab4985b..00000000000
--- a/public/content/translations/it/developers/docs/consensus-mechanisms/pow/mining-algorithms/ethash/index.md
+++ /dev/null
@@ -1,1014 +0,0 @@
----
-title: Ethash
-description: Uno sguardo dettagliato all'algoritmo Ethash.
-lang: it
----
-
-
- Ethash era l'algoritmo di mining di proof-of-work di Ethereum. Il proof-of-work è stato ora **interamente disattivato** ed Ethereum è ora protetto usando invece il [proof-of-stake](/developers/docs/consensus-mechanisms/pos). Leggi di più su La Fusione, sul proof-of-stake e sullo staking. Questa pagina è per interesse storico!
-
-
-[Ethash](https://github.com/ethereum/wiki/wiki/Ethash) è una versione modificata dell'algoritmo [Dagger-Hashimoto](/developers/docs/consensus-mechanisms/pow/mining-algorithms/dagger-hashimoto). Il proof-of-work di Ethash è [a elevato consumo di memoria](https://wikipedia.org/wiki/Memory-hard_function), cosa pensata per rendere l'algoritmo resistente agli ASIC. Gli ASIC di Ethash sono infine stati sviluppati, ma il mining della GPU è stata un'opzione ancora valida fino alla disattivazione del proof-of-work. Ethash è ancora usato per minare altre valute su altre reti di proof-of-work non di Ethereum.
-
-## Come funziona Ethash? {#how-does-ethash-work}
-
-La gravosità sulla memoria è ottenuta con un algoritmo di proof-of-work che richiede la scelta di sotto-serie di una risorsa fissa, dipendente dal nonce e dall'intestazione del blocco. Questa risorsa (di pochi gigabyte di dimensioni) è detta DAG. Il DAG è modificato ogni 30.000 blocchi, una finestra di circa 125 ore detta un'epoca (circa 5,2 giorni) e richiede un po' di tempo per generarsi. Poiché il DAG dipende solo dall'altezza del blocco, può esser pre-generato, ma se non è il client, deve attendere fino alla fine di questo processo per produrre un blocco. Se i client non si pre-generano e salvano anticipatamente nella cache i DAG, la rete potrebbe subire un enorme ritardo dei blocchi a ogni transizione d'epoca. Il DAG non deve necessariamente essere generato per verificare il proof-of-work, perché è essenzialmente possibile eseguire la verifica con poca CPU e poca memoria.
-
-Il percorso generale intrapreso dall'algoritmo è il seguente:
-
-1. Esiste un **seed**, calcolabile per ogni blocco scansionando fino a quel punto le intestazioni dei blocchi.
-2. Dal seed, si può calcolare una **cache pseudo-casuale di 16 MB**. I client leggeri memorizzano la cache.
-3. Dalla cache, possiamo generare un **dataset di 1 GB**, caratterizzato dal fatto che ogni elemento nel dataset dipende solo da una piccola quantità di elementi dalla cache. I client completi e i miner memorizzano il dataset. Il dataset cresce linearmente col tempo.
-4. Durante il mining vengono prese delle fette (slice) casuali del dataset, eseguendone l'hashing. La verifica può essere effettuata con poca memoria usando la cache per rigenerare le parti specifiche del dataset necessarie, così da dover solo memorizzare la cache.
-
-Il grande dataset è aggiornato una volta ogni 30.000 blocchi, in questo modo l'impegno di un miner sarà per lo più quello di leggere il dataset, non effettuare modifiche a esso.
-
-## Definizioni {#definitions}
-
-Adottiamo le seguenti definizioni:
-
-```
-WORD_BYTES = 4 # bytes in word
-DATASET_BYTES_INIT = 2**30 # bytes in dataset at genesis
-DATASET_BYTES_GROWTH = 2**23 # dataset growth per epoch
-CACHE_BYTES_INIT = 2**24 # bytes in cache at genesis
-CACHE_BYTES_GROWTH = 2**17 # cache growth per epoch
-CACHE_MULTIPLIER=1024 # Size of the DAG relative to the cache
-EPOCH_LENGTH = 30000 # blocks per epoch
-MIX_BYTES = 128 # width of mix
-HASH_BYTES = 64 # hash length in bytes
-DATASET_PARENTS = 256 # number of parents of each dataset element
-CACHE_ROUNDS = 3 # number of rounds in cache production
-ACCESSES = 64 # number of accesses in hashimoto loop
-```
-
-### L'uso di "SHA3" {#sha3}
-
-Lo sviluppo di Ethereum è coinciso con lo sviluppo dello standard SHA3 e il processo standard ha effettuato una modifica tardiva al padding dell'algoritmo di hash finalizzato, quindi, gli hash "sha3_256" e "sha3_512" di Ethereum non sono hash dello standard sha3, ma una variante, spesso definita "Keccak-256" e "Keccak-512" in altri contesti. Vedi la discussione, es. [qui](https://github.com/ethereum/EIPs/issues/59), [qui](http://ethereum.stackexchange.com/questions/550/which-cryptographic-hash-function-does-ethereum-use) o [qui](http://bitcoin.stackexchange.com/questions/42055/what-is-the-approach-to-calculate-an-ethereum-address-from-a-256-bit-private-key/42057#42057).
-
-Si ricorda che gli hash "sha3" siano presentati nella descrizione dell'algoritmo più avanti.
-
-## Parametri {#parameters}
-
-I parametri della cache e del dataset di Ethash dipendono dal numero del blocco. Le dimensioni della cache e del dataset crescono entrambe linearmente; tuttavia, prendiamo sempre il numero primo maggiore successivo alla soglia di crescita lineare, per ridurre il rischio di regolarità accidentali che determinano un comportamento ciclico.
-
-```python
-def get_cache_size(block_number):
- sz = CACHE_BYTES_INIT + CACHE_BYTES_GROWTH * (block_number // EPOCH_LENGTH)
- sz -= HASH_BYTES
- while not isprime(sz / HASH_BYTES):
- sz -= 2 * HASH_BYTES
- return sz
-
-def get_full_size(block_number):
- sz = DATASET_BYTES_INIT + DATASET_BYTES_GROWTH * (block_number // EPOCH_LENGTH)
- sz -= MIX_BYTES
- while not isprime(sz / MIX_BYTES):
- sz -= 2 * MIX_BYTES
- return sz
-```
-
-Nell'appendice sono presentate tabelle delle dimensioni del dataset e della cache.
-
-## Generazione della cache {#cache-generation}
-
-Specifichiamo ora la funzione per produrre una cache:
-
-```python
-def mkcache(cache_size, seed):
- n = cache_size // HASH_BYTES
-
- # Sequentially produce the initial dataset
- o = [sha3_512(seed)]
- for i in range(1, n):
- o.append(sha3_512(o[-1]))
-
- # Use a low-round version of randmemohash
- for _ in range(CACHE_ROUNDS):
- for i in range(n):
- v = o[i][0] % n
- o[i] = sha3_512(map(xor, o[(i-1+n) % n], o[v]))
-
- return o
-```
-
-Il processo di produzione della cache richiede dapprima il riempimento sequenziale di 32 MB di memoria, poi l'esecuzione di due passaggi dell'algoritmo _RandMemoHash_ di Sergio Demian Lerner da [_Strict Memory Hard Hashing Functions_ (2014)](http://www.hashcash.org/papers/memohash.pdf). L'output è una serie di valori a 64 byte 524288.
-
-## Funzione di aggregazione dei dati {#date-aggregation-function}
-
-Usiamo un algoritmo ispirato dall'[hash FNV](https://en.wikipedia.org/wiki/Fowler%E2%80%93Noll%E2%80%93Vo_hash_function) in alcuni casi come un sostituto non associativo per XOR. Nota che moltiplichiamo il numero primo con l'intero input a 32 bit, a differenza della specifica FNV-1, che moltiplica invece il numero primo con un byte (ottetto).
-
-```python
-FNV_PRIME = 0x01000193
-
-def fnv(v1, v2):
- return ((v1 * FNV_PRIME) ^ v2) % 2**32
-```
-
-Anche lo yellow paper specifica fnv come v1\*(FNV_PRIME ^ v2), tutte le implementazioni correnti usano attualmente la suddetta definizione.
-
-## Calcolo dell'intero dataset {#full-dataset-calculation}
-
-Ogni elemento da 64 byte nell'intero dataset da 1 GB è calcolato come segue:
-
-```python
-def calc_dataset_item(cache, i):
- n = len(cache)
- r = HASH_BYTES // WORD_BYTES
- # initialize the mix
- mix = copy.copy(cache[i % n])
- mix[0] ^= i
- mix = sha3_512(mix)
- # fnv it with a lot of random cache nodes based on i
- for j in range(DATASET_PARENTS):
- cache_index = fnv(i ^ j, mix[j % r])
- mix = map(fnv, mix, cache[cache_index % n])
- return sha3_512(mix)
-```
-
-Essenzialmente, combiniamo i dati da 256 nodi della cache selezionati pseudo-casualmente e ne eseguiamo l'hash per calcolare il nodo del dataset. L'intero dataset è quindi generato da:
-
-```python
-def calc_dataset(full_size, cache):
- return [calc_dataset_item(cache, i) for i in range(full_size // HASH_BYTES)]
-```
-
-## Ciclo principale {#main-loop}
-
-Ora, specifichiamo il ciclo principale in stile "hashimoto", dove aggreghiamo i dati dal dataset completo per poter produrre il valore finale per un'intestazione e nonce in particolare. Nel codice seguente, `header` rappresenta l'_hash_ SHA3-256 della rappresentazione RLP di un'intestazione del blocco _troncata_, ovvero, di un'intestazione che esclude i campi **mixHash** e **nonce**. Un `nonce` si compone degli otto byte di un intero non firmato da 64 bit, con ordinamento big-endian. Quindi `nonce[::-1]` è la rappresentazione little-endian di otto byte di quel valore:
-
-```python
-def hashimoto(header, nonce, full_size, dataset_lookup):
- n = full_size / HASH_BYTES
- w = MIX_BYTES // WORD_BYTES
- mixhashes = MIX_BYTES / HASH_BYTES
- # combine header+nonce into a 64 byte seed
- s = sha3_512(header + nonce[::-1])
- # start the mix with replicated s
- mix = []
- for _ in range(MIX_BYTES / HASH_BYTES):
- mix.extend(s)
- # mix in random dataset nodes
- for i in range(ACCESSES):
- p = fnv(i ^ s[0], mix[i % w]) % (n // mixhashes) * mixhashes
- newdata = []
- for j in range(MIX_BYTES / HASH_BYTES):
- newdata.extend(dataset_lookup(p + j))
- mix = map(fnv, mix, newdata)
- # compress mix
- cmix = []
- for i in range(0, len(mix), 4):
- cmix.append(fnv(fnv(fnv(mix[i], mix[i+1]), mix[i+2]), mix[i+3]))
- return {
- "mix digest": serialize_hash(cmix),
- "result": serialize_hash(sha3_256(s+cmix))
- }
-
-def hashimoto_light(full_size, cache, header, nonce):
- return hashimoto(header, nonce, full_size, lambda x: calc_dataset_item(cache, x))
-
-def hashimoto_full(full_size, dataset, header, nonce):
- return hashimoto(header, nonce, full_size, lambda x: dataset[x])
-```
-
-Essenzialmente, manteniamo un mix di 128 byte e recuperiamo sequenzialmente e ripetutamente 128 byte dal dataset completo e usiamo la funzione `fnv` per combinarli col mix. Vengono usati 128 byte di accesso sequenziale così che ogni ciclo dell'algoritmo recuperi sempre una pagina intera dalla RAM, minimizzando le ricerche a vuoto nel lookaside buffer che gli ASIC dovrebbero teoricamente poter evitare.
-
-Se l'output di questo algoritmo è inferiore all'obiettivo desiderato, allora il nonce è valido. Nota che l'applicazione aggiuntiva di `sha3_256` alla fine assicura che esista un nonce intermedio, che può essere fornito per provare che almeno una piccola quantità di lavoro è stata eseguita; questa rapida verifica di PoW esterna è utilizzabile per scopi anti-DDoS. Serve anche a fornire la garanzia statistica che il risultato sia un numero a 256 bit imparziale.
-
-## Mining {#mining}
-
-L'algoritmo di mining è definito come segue:
-
-```python
-def mine(full_size, dataset, header, difficulty):
- # zero-pad target to compare with hash on the same digit
- target = zpad(encode_int(2**256 // difficulty), 64)[::-1]
- from random import randint
- nonce = randint(0, 2**64)
- while hashimoto_full(full_size, dataset, header, nonce) > target:
- nonce = (nonce + 1) % 2**64
- return nonce
-```
-
-## Definire l'hash del seed {#seed-hash}
-
-Per poter calcolare l'hash del seed da usare per fare mining su un dato blocco, usiamo il seguente algoritmo:
-
-```python
- def get_seedhash(block):
- s = '\x00' * 32
- for i in range(block.number // EPOCH_LENGTH):
- s = serialize_hash(sha3_256(s))
- return s
-```
-
-Nota che per la fluidità delle attività di mining e verifica, consigliamo di pre-calcolare gli hash dei seed futuri e i dataset in un thread separato.
-
-## Letture consigliate {#further-reading}
-
-_Conosci una risorsa della community che ti è stata utile? Modifica questa pagina e aggiungila!_
-
-## Appendice {#appendix}
-
-Il seguente codice dovrebbe essere anteposto se sei interessato all'esecuzione della suddetta specifica di Python come codice.
-
-```python
-import sha3, copy
-
-# Assumes little endian bit ordering (same as Intel architectures)
-def decode_int(s):
- return int(s[::-1].encode('hex'), 16) if s else 0
-
-def encode_int(s):
- a = "%x" % s
- return '' if s == 0 else ('0' * (len(a) % 2) + a).decode('hex')[::-1]
-
-def zpad(s, length):
- return s + '\x00' * max(0, length - len(s))
-
-def serialize_hash(h):
- return ''.join([zpad(encode_int(x), 4) for x in h])
-
-def deserialize_hash(h):
- return [decode_int(h[i:i+WORD_BYTES]) for i in range(0, len(h), WORD_BYTES)]
-
-def hash_words(h, sz, x):
- if isinstance(x, list):
- x = serialize_hash(x)
- y = h(x)
- return deserialize_hash(y)
-
-def serialize_cache(ds):
- return ''.join([serialize_hash(h) for h in ds])
-
-serialize_dataset = serialize_cache
-
-# sha3 hash function, outputs 64 bytes
-def sha3_512(x):
- return hash_words(lambda v: sha3.sha3_512(v).digest(), 64, x)
-
-def sha3_256(x):
- return hash_words(lambda v: sha3.sha3_256(v).digest(), 32, x)
-
-def xor(a, b):
- return a ^ b
-
-def isprime(x):
- for i in range(2, int(x**0.5)):
- if x % i == 0:
- return False
- return True
-```
-
-### Dimensioni dei dati {#data-sizes}
-
-Le seguenti tabelle di ricerca forniscono approssimativamente 2048 epoche tabulate di dimensioni dei dati e della cache.
-
-```python
-def get_datasize(block_number):
- return data_sizes[block_number // EPOCH_LENGTH]
-
-def get_cachesize(block_number):
- return cache_sizes[block_number // EPOCH_LENGTH]
-
-data_sizes = [
-1073739904, 1082130304, 1090514816, 1098906752, 1107293056,
-1115684224, 1124070016, 1132461952, 1140849536, 1149232768,
-1157627776, 1166013824, 1174404736, 1182786944, 1191180416,
-1199568512, 1207958912, 1216345216, 1224732032, 1233124736,
-1241513344, 1249902464, 1258290304, 1266673792, 1275067264,
-1283453312, 1291844992, 1300234112, 1308619904, 1317010048,
-1325397376, 1333787776, 1342176128, 1350561664, 1358954368,
-1367339392, 1375731584, 1384118144, 1392507008, 1400897408,
-1409284736, 1417673344, 1426062464, 1434451072, 1442839168,
-1451229056, 1459615616, 1468006016, 1476394112, 1484782976,
-1493171584, 1501559168, 1509948032, 1518337664, 1526726528,
-1535114624, 1543503488, 1551892096, 1560278656, 1568669056,
-1577056384, 1585446272, 1593831296, 1602219392, 1610610304,
-1619000192, 1627386752, 1635773824, 1644164224, 1652555648,
-1660943488, 1669332608, 1677721216, 1686109312, 1694497664,
-1702886272, 1711274624, 1719661184, 1728047744, 1736434816,
-1744829056, 1753218944, 1761606272, 1769995904, 1778382464,
-1786772864, 1795157888, 1803550592, 1811937664, 1820327552,
-1828711552, 1837102976, 1845488768, 1853879936, 1862269312,
-1870656896, 1879048064, 1887431552, 1895825024, 1904212096,
-1912601216, 1920988544, 1929379456, 1937765504, 1946156672,
-1954543232, 1962932096, 1971321728, 1979707264, 1988093056,
-1996487552, 2004874624, 2013262208, 2021653888, 2030039936,
-2038430848, 2046819968, 2055208576, 2063596672, 2071981952,
-2080373632, 2088762752, 2097149056, 2105539712, 2113928576,
-2122315136, 2130700672, 2139092608, 2147483264, 2155872128,
-2164257664, 2172642176, 2181035392, 2189426048, 2197814912,
-2206203008, 2214587264, 2222979712, 2231367808, 2239758208,
-2248145024, 2256527744, 2264922752, 2273312128, 2281701248,
-2290086272, 2298476672, 2306867072, 2315251072, 2323639168,
-2332032128, 2340420224, 2348808064, 2357196416, 2365580416,
-2373966976, 2382363008, 2390748544, 2399139968, 2407530368,
-2415918976, 2424307328, 2432695424, 2441084288, 2449472384,
-2457861248, 2466247808, 2474637184, 2483026816, 2491414144,
-2499803776, 2508191872, 2516582272, 2524970368, 2533359232,
-2541743488, 2550134144, 2558525056, 2566913408, 2575301504,
-2583686528, 2592073856, 2600467328, 2608856192, 2617240448,
-2625631616, 2634022016, 2642407552, 2650796416, 2659188352,
-2667574912, 2675965312, 2684352896, 2692738688, 2701130624,
-2709518464, 2717907328, 2726293376, 2734685056, 2743073152,
-2751462016, 2759851648, 2768232832, 2776625536, 2785017728,
-2793401984, 2801794432, 2810182016, 2818571648, 2826959488,
-2835349376, 2843734144, 2852121472, 2860514432, 2868900992,
-2877286784, 2885676928, 2894069632, 2902451584, 2910843008,
-2919234688, 2927622784, 2936011648, 2944400768, 2952789376,
-2961177728, 2969565568, 2977951616, 2986338944, 2994731392,
-3003120256, 3011508352, 3019895936, 3028287104, 3036675968,
-3045063808, 3053452928, 3061837696, 3070228352, 3078615424,
-3087003776, 3095394944, 3103782272, 3112173184, 3120562048,
-3128944768, 3137339264, 3145725056, 3154109312, 3162505088,
-3170893184, 3179280256, 3187669376, 3196056704, 3204445568,
-3212836736, 3221224064, 3229612928, 3238002304, 3246391168,
-3254778496, 3263165824, 3271556224, 3279944576, 3288332416,
-3296719232, 3305110912, 3313500032, 3321887104, 3330273152,
-3338658944, 3347053184, 3355440512, 3363827072, 3372220288,
-3380608384, 3388997504, 3397384576, 3405774208, 3414163072,
-3422551936, 3430937984, 3439328384, 3447714176, 3456104576,
-3464493952, 3472883584, 3481268864, 3489655168, 3498048896,
-3506434432, 3514826368, 3523213952, 3531603584, 3539987072,
-3548380288, 3556763264, 3565157248, 3573545344, 3581934464,
-3590324096, 3598712704, 3607098752, 3615488384, 3623877248,
-3632265856, 3640646528, 3649043584, 3657430144, 3665821568,
-3674207872, 3682597504, 3690984832, 3699367808, 3707764352,
-3716152448, 3724541056, 3732925568, 3741318016, 3749706368,
-3758091136, 3766481536, 3774872704, 3783260032, 3791650432,
-3800036224, 3808427648, 3816815488, 3825204608, 3833592704,
-3841981568, 3850370432, 3858755968, 3867147904, 3875536256,
-3883920512, 3892313728, 3900702592, 3909087872, 3917478784,
-3925868416, 3934256512, 3942645376, 3951032192, 3959422336,
-3967809152, 3976200064, 3984588416, 3992974976, 4001363584,
-4009751168, 4018141312, 4026530432, 4034911616, 4043308928,
-4051695488, 4060084352, 4068472448, 4076862848, 4085249408,
-4093640576, 4102028416, 4110413696, 4118805632, 4127194496,
-4135583104, 4143971968, 4152360832, 4160746112, 4169135744,
-4177525888, 4185912704, 4194303616, 4202691968, 4211076736,
-4219463552, 4227855488, 4236246656, 4244633728, 4253022848,
-4261412224, 4269799808, 4278184832, 4286578048, 4294962304,
-4303349632, 4311743104, 4320130432, 4328521088, 4336909184,
-4345295488, 4353687424, 4362073472, 4370458496, 4378852736,
-4387238528, 4395630208, 4404019072, 4412407424, 4420790656,
-4429182848, 4437571456, 4445962112, 4454344064, 4462738048,
-4471119232, 4479516544, 4487904128, 4496289664, 4504682368,
-4513068416, 4521459584, 4529846144, 4538232704, 4546619776,
-4555010176, 4563402112, 4571790208, 4580174464, 4588567936,
-4596957056, 4605344896, 4613734016, 4622119808, 4630511488,
-4638898816, 4647287936, 4655675264, 4664065664, 4672451968,
-4680842624, 4689231488, 4697620352, 4706007424, 4714397056,
-4722786176, 4731173248, 4739562368, 4747951744, 4756340608,
-4764727936, 4773114496, 4781504384, 4789894784, 4798283648,
-4806667648, 4815059584, 4823449472, 4831835776, 4840226176,
-4848612224, 4857003392, 4865391488, 4873780096, 4882169728,
-4890557312, 4898946944, 4907333248, 4915722368, 4924110976,
-4932499328, 4940889728, 4949276032, 4957666432, 4966054784,
-4974438016, 4982831488, 4991221376, 4999607168, 5007998848,
-5016386432, 5024763776, 5033164672, 5041544576, 5049941888,
-5058329728, 5066717056, 5075107456, 5083494272, 5091883904,
-5100273536, 5108662144, 5117048192, 5125436032, 5133827456,
-5142215296, 5150605184, 5158993024, 5167382144, 5175769472,
-5184157568, 5192543872, 5200936064, 5209324928, 5217711232,
-5226102656, 5234490496, 5242877312, 5251263872, 5259654016,
-5268040832, 5276434304, 5284819328, 5293209728, 5301598592,
-5309986688, 5318374784, 5326764416, 5335151488, 5343542144,
-5351929472, 5360319872, 5368706944, 5377096576, 5385484928,
-5393871232, 5402263424, 5410650496, 5419040384, 5427426944,
-5435816576, 5444205952, 5452594816, 5460981376, 5469367936,
-5477760896, 5486148736, 5494536832, 5502925952, 5511315328,
-5519703424, 5528089984, 5536481152, 5544869504, 5553256064,
-5561645696, 5570032768, 5578423936, 5586811264, 5595193216,
-5603585408, 5611972736, 5620366208, 5628750464, 5637143936,
-5645528192, 5653921408, 5662310272, 5670694784, 5679082624,
-5687474048, 5695864448, 5704251008, 5712641408, 5721030272,
-5729416832, 5737806208, 5746194304, 5754583936, 5762969984,
-5771358592, 5779748224, 5788137856, 5796527488, 5804911232,
-5813300608, 5821692544, 5830082176, 5838468992, 5846855552,
-5855247488, 5863636096, 5872024448, 5880411008, 5888799872,
-5897186432, 5905576832, 5913966976, 5922352768, 5930744704,
-5939132288, 5947522432, 5955911296, 5964299392, 5972688256,
-5981074304, 5989465472, 5997851008, 6006241408, 6014627968,
-6023015552, 6031408256, 6039796096, 6048185216, 6056574848,
-6064963456, 6073351808, 6081736064, 6090128768, 6098517632,
-6106906496, 6115289216, 6123680896, 6132070016, 6140459648,
-6148849024, 6157237376, 6165624704, 6174009728, 6182403712,
-6190792064, 6199176064, 6207569792, 6215952256, 6224345216,
-6232732544, 6241124224, 6249510272, 6257899136, 6266287744,
-6274676864, 6283065728, 6291454336, 6299843456, 6308232064,
-6316620928, 6325006208, 6333395584, 6341784704, 6350174848,
-6358562176, 6366951296, 6375337856, 6383729536, 6392119168,
-6400504192, 6408895616, 6417283456, 6425673344, 6434059136,
-6442444672, 6450837376, 6459223424, 6467613056, 6476004224,
-6484393088, 6492781952, 6501170048, 6509555072, 6517947008,
-6526336384, 6534725504, 6543112832, 6551500672, 6559888768,
-6568278656, 6576662912, 6585055616, 6593443456, 6601834112,
-6610219648, 6618610304, 6626999168, 6635385472, 6643777408,
-6652164224, 6660552832, 6668941952, 6677330048, 6685719424,
-6694107776, 6702493568, 6710882176, 6719274112, 6727662976,
-6736052096, 6744437632, 6752825984, 6761213824, 6769604224,
-6777993856, 6786383488, 6794770816, 6803158144, 6811549312,
-6819937664, 6828326528, 6836706176, 6845101696, 6853491328,
-6861880448, 6870269312, 6878655104, 6887046272, 6895433344,
-6903822208, 6912212864, 6920596864, 6928988288, 6937377152,
-6945764992, 6954149248, 6962544256, 6970928768, 6979317376,
-6987709312, 6996093824, 7004487296, 7012875392, 7021258624,
-7029652352, 7038038912, 7046427776, 7054818944, 7063207808,
-7071595136, 7079980928, 7088372608, 7096759424, 7105149824,
-7113536896, 7121928064, 7130315392, 7138699648, 7147092352,
-7155479168, 7163865728, 7172249984, 7180648064, 7189036672,
-7197424768, 7205810816, 7214196608, 7222589824, 7230975104,
-7239367552, 7247755904, 7256145536, 7264533376, 7272921472,
-7281308032, 7289694848, 7298088832, 7306471808, 7314864512,
-7323253888, 7331643008, 7340029568, 7348419712, 7356808832,
-7365196672, 7373585792, 7381973888, 7390362752, 7398750592,
-7407138944, 7415528576, 7423915648, 7432302208, 7440690304,
-7449080192, 7457472128, 7465860992, 7474249088, 7482635648,
-7491023744, 7499412608, 7507803008, 7516192384, 7524579968,
-7532967296, 7541358464, 7549745792, 7558134656, 7566524032,
-7574912896, 7583300992, 7591690112, 7600075136, 7608466816,
-7616854912, 7625244544, 7633629824, 7642020992, 7650410368,
-7658794112, 7667187328, 7675574912, 7683961984, 7692349568,
-7700739712, 7709130368, 7717519232, 7725905536, 7734295424,
-7742683264, 7751069056, 7759457408, 7767849088, 7776238208,
-7784626816, 7793014912, 7801405312, 7809792128, 7818179968,
-7826571136, 7834957184, 7843347328, 7851732352, 7860124544,
-7868512384, 7876902016, 7885287808, 7893679744, 7902067072,
-7910455936, 7918844288, 7927230848, 7935622784, 7944009344,
-7952400256, 7960786048, 7969176704, 7977565312, 7985953408,
-7994339968, 8002730368, 8011119488, 8019508096, 8027896192,
-8036285056, 8044674688, 8053062272, 8061448832, 8069838464,
-8078227328, 8086616704, 8095006592, 8103393664, 8111783552,
-8120171392, 8128560256, 8136949376, 8145336704, 8153726848,
-8162114944, 8170503296, 8178891904, 8187280768, 8195669632,
-8204058496, 8212444544, 8220834176, 8229222272, 8237612672,
-8246000768, 8254389376, 8262775168, 8271167104, 8279553664,
-8287944064, 8296333184, 8304715136, 8313108352, 8321497984,
-8329885568, 8338274432, 8346663296, 8355052928, 8363441536,
-8371828352, 8380217984, 8388606592, 8396996224, 8405384576,
-8413772672, 8422161536, 8430549376, 8438939008, 8447326592,
-8455715456, 8464104832, 8472492928, 8480882048, 8489270656,
-8497659776, 8506045312, 8514434944, 8522823808, 8531208832,
-8539602304, 8547990656, 8556378752, 8564768384, 8573154176,
-8581542784, 8589933952, 8598322816, 8606705024, 8615099264,
-8623487872, 8631876992, 8640264064, 8648653952, 8657040256,
-8665430656, 8673820544, 8682209152, 8690592128, 8698977152,
-8707374464, 8715763328, 8724151424, 8732540032, 8740928384,
-8749315712, 8757704576, 8766089344, 8774480768, 8782871936,
-8791260032, 8799645824, 8808034432, 8816426368, 8824812928,
-8833199488, 8841591424, 8849976448, 8858366336, 8866757248,
-8875147136, 8883532928, 8891923328, 8900306816, 8908700288,
-8917088384, 8925478784, 8933867392, 8942250368, 8950644608,
-8959032704, 8967420544, 8975809664, 8984197504, 8992584064,
-9000976256, 9009362048, 9017752448, 9026141312, 9034530688,
-9042917504, 9051307904, 9059694208, 9068084864, 9076471424,
-9084861824, 9093250688, 9101638528, 9110027648, 9118416512,
-9126803584, 9135188096, 9143581312, 9151969664, 9160356224,
-9168747136, 9177134464, 9185525632, 9193910144, 9202302848,
-9210690688, 9219079552, 9227465344, 9235854464, 9244244864,
-9252633472, 9261021824, 9269411456, 9277799296, 9286188928,
-9294574208, 9302965888, 9311351936, 9319740032, 9328131968,
-9336516736, 9344907392, 9353296768, 9361685888, 9370074752,
-9378463616, 9386849408, 9395239808, 9403629184, 9412016512,
-9420405376, 9428795008, 9437181568, 9445570688, 9453960832,
-9462346624, 9470738048, 9479121536, 9487515008, 9495903616,
-9504289664, 9512678528, 9521067904, 9529456256, 9537843584,
-9546233728, 9554621312, 9563011456, 9571398784, 9579788672,
-9588178304, 9596567168, 9604954496, 9613343104, 9621732992,
-9630121856, 9638508416, 9646898816, 9655283584, 9663675776,
-9672061312, 9680449664, 9688840064, 9697230464, 9705617536,
-9714003584, 9722393984, 9730772608, 9739172224, 9747561088,
-9755945344, 9764338816, 9772726144, 9781116544, 9789503872,
-9797892992, 9806282624, 9814670464, 9823056512, 9831439232,
-9839833984, 9848224384, 9856613504, 9865000576, 9873391232,
-9881772416, 9890162816, 9898556288, 9906940544, 9915333248,
-9923721088, 9932108672, 9940496512, 9948888448, 9957276544,
-9965666176, 9974048384, 9982441088, 9990830464, 9999219584,
-10007602816, 10015996544, 10024385152, 10032774016, 10041163648,
-10049548928, 10057940096, 10066329472, 10074717824, 10083105152,
-10091495296, 10099878784, 10108272256, 10116660608, 10125049216,
-10133437312, 10141825664, 10150213504, 10158601088, 10166991232,
-10175378816, 10183766144, 10192157312, 10200545408, 10208935552,
-10217322112, 10225712768, 10234099328, 10242489472, 10250876032,
-10259264896, 10267656064, 10276042624, 10284429184, 10292820352,
-10301209472, 10309598848, 10317987712, 10326375296, 10334763392,
-10343153536, 10351541632, 10359930752, 10368318592, 10376707456,
-10385096576, 10393484672, 10401867136, 10410262144, 10418647424,
-10427039104, 10435425664, 10443810176, 10452203648, 10460589952,
-10468982144, 10477369472, 10485759104, 10494147712, 10502533504,
-10510923392, 10519313536, 10527702656, 10536091264, 10544478592,
-10552867712, 10561255808, 10569642368, 10578032768, 10586423168,
-10594805632, 10603200128, 10611588992, 10619976064, 10628361344,
-10636754048, 10645143424, 10653531776, 10661920384, 10670307968,
-10678696832, 10687086464, 10695475072, 10703863168, 10712246144,
-10720639616, 10729026688, 10737414784, 10745806208, 10754190976,
-10762581376, 10770971264, 10779356288, 10787747456, 10796135552,
-10804525184, 10812915584, 10821301888, 10829692288, 10838078336,
-10846469248, 10854858368, 10863247232, 10871631488, 10880023424,
-10888412032, 10896799616, 10905188992, 10913574016, 10921964672,
-10930352768, 10938742912, 10947132544, 10955518592, 10963909504,
-10972298368, 10980687488, 10989074816, 10997462912, 11005851776,
-11014241152, 11022627712, 11031017344, 11039403904, 11047793024,
-11056184704, 11064570752, 11072960896, 11081343872, 11089737856,
-11098128256, 11106514816, 11114904448, 11123293568, 11131680128,
-11140065152, 11148458368, 11156845696, 11165236864, 11173624192,
-11182013824, 11190402688, 11198790784, 11207179136, 11215568768,
-11223957376, 11232345728, 11240734592, 11249122688, 11257511296,
-11265899648, 11274285952, 11282675584, 11291065472, 11299452544,
-11307842432, 11316231296, 11324616832, 11333009024, 11341395584,
-11349782656, 11358172288, 11366560384, 11374950016, 11383339648,
-11391721856, 11400117376, 11408504192, 11416893568, 11425283456,
-11433671552, 11442061184, 11450444672, 11458837888, 11467226752,
-11475611776, 11484003968, 11492392064, 11500780672, 11509169024,
-11517550976, 11525944448, 11534335616, 11542724224, 11551111808,
-11559500672, 11567890304, 11576277376, 11584667008, 11593056128,
-11601443456, 11609830016, 11618221952, 11626607488, 11634995072,
-11643387776, 11651775104, 11660161664, 11668552576, 11676940928,
-11685330304, 11693718656, 11702106496, 11710496128, 11718882688,
-11727273088, 11735660416, 11744050048, 11752437376, 11760824704,
-11769216128, 11777604736, 11785991296, 11794381952, 11802770048,
-11811157888, 11819548544, 11827932544, 11836324736, 11844713344,
-11853100928, 11861486464, 11869879936, 11878268032, 11886656896,
-11895044992, 11903433088, 11911822976, 11920210816, 11928600448,
-11936987264, 11945375872, 11953761152, 11962151296, 11970543488,
-11978928512, 11987320448, 11995708288, 12004095104, 12012486272,
-12020875136, 12029255552, 12037652096, 12046039168, 12054429568,
-12062813824, 12071206528, 12079594624, 12087983744, 12096371072,
-12104759936, 12113147264, 12121534592, 12129924992, 12138314624,
-12146703232, 12155091584, 12163481216, 12171864704, 12180255872,
-12188643968, 12197034112, 12205424512, 12213811328, 12222199424,
-12230590336, 12238977664, 12247365248, 12255755392, 12264143488,
-12272531584, 12280920448, 12289309568, 12297694592, 12306086528,
-12314475392, 12322865024, 12331253632, 12339640448, 12348029312,
-12356418944, 12364805248, 12373196672, 12381580928, 12389969024,
-12398357632, 12406750592, 12415138432, 12423527552, 12431916416,
-12440304512, 12448692352, 12457081216, 12465467776, 12473859968,
-12482245504, 12490636672, 12499025536, 12507411584, 12515801728,
-12524190592, 12532577152, 12540966272, 12549354368, 12557743232,
-12566129536, 12574523264, 12582911872, 12591299456, 12599688064,
-12608074624, 12616463488, 12624845696, 12633239936, 12641631616,
-12650019968, 12658407296, 12666795136, 12675183232, 12683574656,
-12691960192, 12700350592, 12708740224, 12717128576, 12725515904,
-12733906816, 12742295168, 12750680192, 12759071872, 12767460736,
-12775848832, 12784236928, 12792626816, 12801014656, 12809404288,
-12817789312, 12826181504, 12834568832, 12842954624, 12851345792,
-12859732352, 12868122496, 12876512128, 12884901248, 12893289088,
-12901672832, 12910067584, 12918455168, 12926842496, 12935232896,
-12943620736, 12952009856, 12960396928, 12968786816, 12977176192,
-12985563776, 12993951104, 13002341504, 13010730368, 13019115392,
-13027506304, 13035895168, 13044272512, 13052673152, 13061062528,
-13069446272, 13077838976, 13086227072, 13094613632, 13103000192,
-13111393664, 13119782528, 13128157568, 13136559232, 13144945024,
-13153329536, 13161724288, 13170111872, 13178502784, 13186884736,
-13195279744, 13203667072, 13212057472, 13220445824, 13228832128,
-13237221248, 13245610624, 13254000512, 13262388352, 13270777472,
-13279166336, 13287553408, 13295943296, 13304331904, 13312719488,
-13321108096, 13329494656, 13337885824, 13346274944, 13354663808,
-13363051136, 13371439232, 13379825024, 13388210816, 13396605056,
-13404995456, 13413380224, 13421771392, 13430159744, 13438546048,
-13446937216, 13455326848, 13463708288, 13472103808, 13480492672,
-13488875648, 13497269888, 13505657728, 13514045312, 13522435712,
-13530824576, 13539210112, 13547599232, 13555989376, 13564379008,
-13572766336, 13581154432, 13589544832, 13597932928, 13606320512,
-13614710656, 13623097472, 13631477632, 13639874944, 13648264064,
-13656652928, 13665041792, 13673430656, 13681818496, 13690207616,
-13698595712, 13706982272, 13715373184, 13723762048, 13732150144,
-13740536704, 13748926592, 13757316224, 13765700992, 13774090112,
-13782477952, 13790869376, 13799259008, 13807647872, 13816036736,
-13824425344, 13832814208, 13841202304, 13849591424, 13857978752,
-13866368896, 13874754688, 13883145344, 13891533184, 13899919232,
-13908311168, 13916692096, 13925085056, 13933473152, 13941866368,
-13950253696, 13958643584, 13967032192, 13975417216, 13983807616,
-13992197504, 14000582272, 14008973696, 14017363072, 14025752192,
-14034137984, 14042528384, 14050918016, 14059301504, 14067691648,
-14076083584, 14084470144, 14092852352, 14101249664, 14109635968,
-14118024832, 14126407552, 14134804352, 14143188608, 14151577984,
-14159968384, 14168357248, 14176741504, 14185127296, 14193521024,
-14201911424, 14210301824, 14218685056, 14227067264, 14235467392,
-14243855488, 14252243072, 14260630144, 14269021568, 14277409408,
-14285799296, 14294187904, 14302571392, 14310961792, 14319353728,
-14327738752, 14336130944, 14344518784, 14352906368, 14361296512,
-14369685376, 14378071424, 14386462592, 14394848128, 14403230848,
-14411627392, 14420013952, 14428402304, 14436793472, 14445181568,
-14453569664, 14461959808, 14470347904, 14478737024, 14487122816,
-14495511424, 14503901824, 14512291712, 14520677504, 14529064832,
-14537456768, 14545845632, 14554234496, 14562618496, 14571011456,
-14579398784, 14587789184, 14596172672, 14604564608, 14612953984,
-14621341312, 14629724288, 14638120832, 14646503296, 14654897536,
-14663284864, 14671675264, 14680061056, 14688447616, 14696835968,
-14705228416, 14713616768, 14722003328, 14730392192, 14738784128,
-14747172736, 14755561088, 14763947648, 14772336512, 14780725376,
-14789110144, 14797499776, 14805892736, 14814276992, 14822670208,
-14831056256, 14839444352, 14847836032, 14856222848, 14864612992,
-14872997504, 14881388672, 14889775744, 14898165376, 14906553472,
-14914944896, 14923329664, 14931721856, 14940109696, 14948497024,
-14956887424, 14965276544, 14973663616, 14982053248, 14990439808,
-14998830976, 15007216768, 15015605888, 15023995264, 15032385152,
-15040768384, 15049154944, 15057549184, 15065939072, 15074328448,
-15082715008, 15091104128, 15099493504, 15107879296, 15116269184,
-15124659584, 15133042304, 15141431936, 15149824384, 15158214272,
-15166602368, 15174991232, 15183378304, 15191760512, 15200154496,
-15208542592, 15216931712, 15225323392, 15233708416, 15242098048,
-15250489216, 15258875264, 15267265408, 15275654528, 15284043136,
-15292431488, 15300819584, 15309208192, 15317596544, 15325986176,
-15334374784, 15342763648, 15351151744, 15359540608, 15367929728,
-15376318336, 15384706432, 15393092992, 15401481856, 15409869952,
-15418258816, 15426649984, 15435037568, 15443425664, 15451815296,
-15460203392, 15468589184, 15476979328, 15485369216, 15493755776,
-15502146944, 15510534272, 15518924416, 15527311232, 15535699072,
-15544089472, 15552478336, 15560866688, 15569254528, 15577642624,
-15586031488, 15594419072, 15602809472, 15611199104, 15619586432,
-15627975296, 15636364928, 15644753792, 15653141888, 15661529216,
-15669918848, 15678305152, 15686696576, 15695083136, 15703474048,
-15711861632, 15720251264, 15728636288, 15737027456, 15745417088,
-15753804928, 15762194048, 15770582656, 15778971008, 15787358336,
-15795747712, 15804132224, 15812523392, 15820909696, 15829300096,
-15837691264, 15846071936, 15854466944, 15862855808, 15871244672,
-15879634816, 15888020608, 15896409728, 15904799104, 15913185152,
-15921577088, 15929966464, 15938354816, 15946743424, 15955129472,
-15963519872, 15971907968, 15980296064, 15988684928, 15997073024,
-16005460864, 16013851264, 16022241152, 16030629248, 16039012736,
-16047406976, 16055794816, 16064181376, 16072571264, 16080957824,
-16089346688, 16097737856, 16106125184, 16114514816, 16122904192,
-16131292544, 16139678848, 16148066944, 16156453504, 16164839552,
-16173236096, 16181623424, 16190012032, 16198401152, 16206790528,
-16215177344, 16223567744, 16231956352, 16240344704, 16248731008,
-16257117824, 16265504384, 16273898624, 16282281856, 16290668672,
-16299064192, 16307449216, 16315842176, 16324230016, 16332613504,
-16341006464, 16349394304, 16357783168, 16366172288, 16374561664,
-16382951296, 16391337856, 16399726208, 16408116352, 16416505472,
-16424892032, 16433282176, 16441668224, 16450058624, 16458448768,
-16466836864, 16475224448, 16483613056, 16492001408, 16500391808,
-16508779648, 16517166976, 16525555328, 16533944192, 16542330752,
-16550719616, 16559110528, 16567497088, 16575888512, 16584274816,
-16592665472, 16601051008, 16609442944, 16617832064, 16626218624,
-16634607488, 16642996096, 16651385728, 16659773824, 16668163712,
-16676552576, 16684938112, 16693328768, 16701718144, 16710095488,
-16718492288, 16726883968, 16735272832, 16743661184, 16752049792,
-16760436608, 16768827008, 16777214336, 16785599104, 16793992832,
-16802381696, 16810768768, 16819151744, 16827542656, 16835934848,
-16844323712, 16852711552, 16861101952, 16869489536, 16877876864,
-16886265728, 16894653056, 16903044736, 16911431296, 16919821696,
-16928207488, 16936592768, 16944987776, 16953375616, 16961763968,
-16970152832, 16978540928, 16986929536, 16995319168, 17003704448,
-17012096896, 17020481152, 17028870784, 17037262208, 17045649536,
-17054039936, 17062426496, 17070814336, 17079205504, 17087592064,
-17095978112, 17104369024, 17112759424, 17121147776, 17129536384,
-17137926016, 17146314368, 17154700928, 17163089792, 17171480192,
-17179864192, 17188256896, 17196644992, 17205033856, 17213423488,
-17221811072, 17230198912, 17238588032, 17246976896, 17255360384,
-17263754624, 17272143232, 17280530048, 17288918912, 17297309312,
-17305696384, 17314085504, 17322475136, 17330863744, 17339252096,
-17347640192, 17356026496, 17364413824, 17372796544, 17381190016,
-17389583488, 17397972608, 17406360704, 17414748544, 17423135872,
-17431527296, 17439915904, 17448303232, 17456691584, 17465081728,
-17473468288, 17481857408, 17490247552, 17498635904, 17507022464,
-17515409024, 17523801728, 17532189824, 17540577664, 17548966016,
-17557353344, 17565741184, 17574131584, 17582519168, 17590907008,
-17599296128, 17607687808, 17616076672, 17624455808, 17632852352,
-17641238656, 17649630848, 17658018944, 17666403968, 17674794112,
-17683178368, 17691573376, 17699962496, 17708350592, 17716739968,
-17725126528, 17733517184, 17741898112, 17750293888, 17758673024,
-17767070336, 17775458432, 17783848832, 17792236928, 17800625536,
-17809012352, 17817402752, 17825785984, 17834178944, 17842563968,
-17850955648, 17859344512, 17867732864, 17876119424, 17884511872,
-17892900224, 17901287296, 17909677696, 17918058112, 17926451072,
-17934843776, 17943230848, 17951609216, 17960008576, 17968397696,
-17976784256, 17985175424, 17993564032, 18001952128, 18010339712,
-18018728576, 18027116672, 18035503232, 18043894144, 18052283264,
-18060672128, 18069056384, 18077449856, 18085837184, 18094225792,
-18102613376, 18111004544, 18119388544, 18127781248, 18136170368,
-18144558976, 18152947328, 18161336192, 18169724288, 18178108544,
-18186498944, 18194886784, 18203275648, 18211666048, 18220048768,
-18228444544, 18236833408, 18245220736]
-
-cache_sizes = [
-16776896, 16907456, 17039296, 17170112, 17301056, 17432512, 17563072,
-17693888, 17824192, 17955904, 18087488, 18218176, 18349504, 18481088,
-18611392, 18742336, 18874304, 19004224, 19135936, 19267264, 19398208,
-19529408, 19660096, 19791424, 19922752, 20053952, 20184896, 20315968,
-20446912, 20576576, 20709184, 20840384, 20971072, 21102272, 21233216,
-21364544, 21494848, 21626816, 21757376, 21887552, 22019392, 22151104,
-22281536, 22412224, 22543936, 22675264, 22806464, 22935872, 23068096,
-23198272, 23330752, 23459008, 23592512, 23723968, 23854912, 23986112,
-24116672, 24247616, 24378688, 24509504, 24640832, 24772544, 24903488,
-25034432, 25165376, 25296704, 25427392, 25558592, 25690048, 25820096,
-25951936, 26081728, 26214208, 26345024, 26476096, 26606656, 26737472,
-26869184, 26998208, 27131584, 27262528, 27393728, 27523904, 27655744,
-27786688, 27917888, 28049344, 28179904, 28311488, 28441792, 28573504,
-28700864, 28835648, 28966208, 29096768, 29228608, 29359808, 29490752,
-29621824, 29752256, 29882816, 30014912, 30144448, 30273728, 30406976,
-30538432, 30670784, 30799936, 30932672, 31063744, 31195072, 31325248,
-31456192, 31588288, 31719232, 31850432, 31981504, 32110784, 32243392,
-32372672, 32505664, 32636608, 32767808, 32897344, 33029824, 33160768,
-33289664, 33423296, 33554368, 33683648, 33816512, 33947456, 34076992,
-34208704, 34340032, 34471744, 34600256, 34734016, 34864576, 34993984,
-35127104, 35258176, 35386688, 35518528, 35650624, 35782336, 35910976,
-36044608, 36175808, 36305728, 36436672, 36568384, 36699968, 36830656,
-36961984, 37093312, 37223488, 37355072, 37486528, 37617472, 37747904,
-37879232, 38009792, 38141888, 38272448, 38403392, 38535104, 38660672,
-38795584, 38925632, 39059264, 39190336, 39320768, 39452096, 39581632,
-39713984, 39844928, 39974848, 40107968, 40238144, 40367168, 40500032,
-40631744, 40762816, 40894144, 41023552, 41155904, 41286208, 41418304,
-41547712, 41680448, 41811904, 41942848, 42073792, 42204992, 42334912,
-42467008, 42597824, 42729152, 42860096, 42991552, 43122368, 43253696,
-43382848, 43515712, 43646912, 43777088, 43907648, 44039104, 44170432,
-44302144, 44433344, 44564288, 44694976, 44825152, 44956864, 45088448,
-45219008, 45350464, 45481024, 45612608, 45744064, 45874496, 46006208,
-46136768, 46267712, 46399424, 46529344, 46660672, 46791488, 46923328,
-47053504, 47185856, 47316928, 47447872, 47579072, 47710144, 47839936,
-47971648, 48103232, 48234176, 48365248, 48496192, 48627136, 48757312,
-48889664, 49020736, 49149248, 49283008, 49413824, 49545152, 49675712,
-49807168, 49938368, 50069056, 50200256, 50331584, 50462656, 50593472,
-50724032, 50853952, 50986048, 51117632, 51248576, 51379904, 51510848,
-51641792, 51773248, 51903296, 52035136, 52164032, 52297664, 52427968,
-52557376, 52690112, 52821952, 52952896, 53081536, 53213504, 53344576,
-53475776, 53608384, 53738816, 53870528, 54000832, 54131776, 54263744,
-54394688, 54525248, 54655936, 54787904, 54918592, 55049152, 55181248,
-55312064, 55442752, 55574336, 55705024, 55836224, 55967168, 56097856,
-56228672, 56358592, 56490176, 56621888, 56753728, 56884928, 57015488,
-57146816, 57278272, 57409216, 57540416, 57671104, 57802432, 57933632,
-58064576, 58195264, 58326976, 58457408, 58588864, 58720192, 58849984,
-58981696, 59113024, 59243456, 59375552, 59506624, 59637568, 59768512,
-59897792, 60030016, 60161984, 60293056, 60423872, 60554432, 60683968,
-60817216, 60948032, 61079488, 61209664, 61341376, 61471936, 61602752,
-61733696, 61865792, 61996736, 62127808, 62259136, 62389568, 62520512,
-62651584, 62781632, 62910784, 63045056, 63176128, 63307072, 63438656,
-63569216, 63700928, 63831616, 63960896, 64093888, 64225088, 64355392,
-64486976, 64617664, 64748608, 64879424, 65009216, 65142464, 65273792,
-65402816, 65535424, 65666752, 65797696, 65927744, 66060224, 66191296,
-66321344, 66453056, 66584384, 66715328, 66846656, 66977728, 67108672,
-67239104, 67370432, 67501888, 67631296, 67763776, 67895104, 68026304,
-68157248, 68287936, 68419264, 68548288, 68681408, 68811968, 68942912,
-69074624, 69205568, 69337024, 69467584, 69599168, 69729472, 69861184,
-69989824, 70122944, 70253888, 70385344, 70515904, 70647232, 70778816,
-70907968, 71040832, 71171648, 71303104, 71432512, 71564992, 71695168,
-71826368, 71958464, 72089536, 72219712, 72350144, 72482624, 72613568,
-72744512, 72875584, 73006144, 73138112, 73268672, 73400128, 73530944,
-73662272, 73793344, 73924544, 74055104, 74185792, 74316992, 74448832,
-74579392, 74710976, 74841664, 74972864, 75102784, 75233344, 75364544,
-75497024, 75627584, 75759296, 75890624, 76021696, 76152256, 76283072,
-76414144, 76545856, 76676672, 76806976, 76937792, 77070016, 77200832,
-77331392, 77462464, 77593664, 77725376, 77856448, 77987776, 78118336,
-78249664, 78380992, 78511424, 78642496, 78773056, 78905152, 79033664,
-79166656, 79297472, 79429568, 79560512, 79690816, 79822784, 79953472,
-80084672, 80214208, 80346944, 80477632, 80608576, 80740288, 80870848,
-81002048, 81133504, 81264448, 81395648, 81525952, 81657536, 81786304,
-81919808, 82050112, 82181312, 82311616, 82443968, 82573376, 82705984,
-82835776, 82967744, 83096768, 83230528, 83359552, 83491264, 83622464,
-83753536, 83886016, 84015296, 84147776, 84277184, 84409792, 84540608,
-84672064, 84803008, 84934336, 85065152, 85193792, 85326784, 85458496,
-85589312, 85721024, 85851968, 85982656, 86112448, 86244416, 86370112,
-86506688, 86637632, 86769344, 86900672, 87031744, 87162304, 87293632,
-87424576, 87555392, 87687104, 87816896, 87947968, 88079168, 88211264,
-88341824, 88473152, 88603712, 88735424, 88862912, 88996672, 89128384,
-89259712, 89390272, 89521984, 89652544, 89783872, 89914816, 90045376,
-90177088, 90307904, 90438848, 90569152, 90700096, 90832832, 90963776,
-91093696, 91223744, 91356992, 91486784, 91618496, 91749824, 91880384,
-92012224, 92143552, 92273344, 92405696, 92536768, 92666432, 92798912,
-92926016, 93060544, 93192128, 93322816, 93453632, 93583936, 93715136,
-93845056, 93977792, 94109504, 94240448, 94371776, 94501184, 94632896,
-94764224, 94895552, 95023424, 95158208, 95287744, 95420224, 95550016,
-95681216, 95811904, 95943872, 96075328, 96203584, 96337856, 96468544,
-96599744, 96731072, 96860992, 96992576, 97124288, 97254848, 97385536,
-97517248, 97647808, 97779392, 97910464, 98041408, 98172608, 98303168,
-98434496, 98565568, 98696768, 98827328, 98958784, 99089728, 99220928,
-99352384, 99482816, 99614272, 99745472, 99876416, 100007104,
-100138048, 100267072, 100401088, 100529984, 100662592, 100791872,
-100925248, 101056064, 101187392, 101317952, 101449408, 101580608,
-101711296, 101841728, 101973824, 102104896, 102235712, 102366016,
-102498112, 102628672, 102760384, 102890432, 103021888, 103153472,
-103284032, 103415744, 103545152, 103677248, 103808576, 103939648,
-104070976, 104201792, 104332736, 104462528, 104594752, 104725952,
-104854592, 104988608, 105118912, 105247808, 105381184, 105511232,
-105643072, 105774784, 105903296, 106037056, 106167872, 106298944,
-106429504, 106561472, 106691392, 106822592, 106954304, 107085376,
-107216576, 107346368, 107478464, 107609792, 107739712, 107872192,
-108003136, 108131392, 108265408, 108396224, 108527168, 108657344,
-108789568, 108920384, 109049792, 109182272, 109312576, 109444928,
-109572928, 109706944, 109837888, 109969088, 110099648, 110230976,
-110362432, 110492992, 110624704, 110755264, 110886208, 111017408,
-111148864, 111279296, 111410752, 111541952, 111673024, 111803456,
-111933632, 112066496, 112196416, 112328512, 112457792, 112590784,
-112715968, 112852672, 112983616, 113114944, 113244224, 113376448,
-113505472, 113639104, 113770304, 113901376, 114031552, 114163264,
-114294592, 114425536, 114556864, 114687424, 114818624, 114948544,
-115080512, 115212224, 115343296, 115473472, 115605184, 115736128,
-115867072, 115997248, 116128576, 116260288, 116391488, 116522944,
-116652992, 116784704, 116915648, 117046208, 117178304, 117308608,
-117440192, 117569728, 117701824, 117833024, 117964096, 118094656,
-118225984, 118357312, 118489024, 118617536, 118749632, 118882112,
-119012416, 119144384, 119275328, 119406016, 119537344, 119668672,
-119798464, 119928896, 120061376, 120192832, 120321728, 120454336,
-120584512, 120716608, 120848192, 120979136, 121109056, 121241408,
-121372352, 121502912, 121634752, 121764416, 121895744, 122027072,
-122157632, 122289088, 122421184, 122550592, 122682944, 122813888,
-122945344, 123075776, 123207488, 123338048, 123468736, 123600704,
-123731264, 123861952, 123993664, 124124608, 124256192, 124386368,
-124518208, 124649024, 124778048, 124911296, 125041088, 125173696,
-125303744, 125432896, 125566912, 125696576, 125829056, 125958592,
-126090304, 126221248, 126352832, 126483776, 126615232, 126746432,
-126876608, 127008704, 127139392, 127270336, 127401152, 127532224,
-127663552, 127794752, 127925696, 128055232, 128188096, 128319424,
-128449856, 128581312, 128712256, 128843584, 128973632, 129103808,
-129236288, 129365696, 129498944, 129629888, 129760832, 129892288,
-130023104, 130154048, 130283968, 130416448, 130547008, 130678336,
-130807616, 130939456, 131071552, 131202112, 131331776, 131464384,
-131594048, 131727296, 131858368, 131987392, 132120256, 132250816,
-132382528, 132513728, 132644672, 132774976, 132905792, 133038016,
-133168832, 133299392, 133429312, 133562048, 133692992, 133823296,
-133954624, 134086336, 134217152, 134348608, 134479808, 134607296,
-134741056, 134872384, 135002944, 135134144, 135265472, 135396544,
-135527872, 135659072, 135787712, 135921472, 136052416, 136182848,
-136313792, 136444864, 136576448, 136707904, 136837952, 136970048,
-137099584, 137232064, 137363392, 137494208, 137625536, 137755712,
-137887424, 138018368, 138149824, 138280256, 138411584, 138539584,
-138672832, 138804928, 138936128, 139066688, 139196864, 139328704,
-139460032, 139590208, 139721024, 139852864, 139984576, 140115776,
-140245696, 140376512, 140508352, 140640064, 140769856, 140902336,
-141032768, 141162688, 141294016, 141426496, 141556544, 141687488,
-141819584, 141949888, 142080448, 142212544, 142342336, 142474432,
-142606144, 142736192, 142868288, 142997824, 143129408, 143258944,
-143392448, 143523136, 143653696, 143785024, 143916992, 144045632,
-144177856, 144309184, 144440768, 144570688, 144701888, 144832448,
-144965056, 145096384, 145227584, 145358656, 145489856, 145620928,
-145751488, 145883072, 146011456, 146144704, 146275264, 146407232,
-146538176, 146668736, 146800448, 146931392, 147062336, 147193664,
-147324224, 147455936, 147586624, 147717056, 147848768, 147979456,
-148110784, 148242368, 148373312, 148503232, 148635584, 148766144,
-148897088, 149028416, 149159488, 149290688, 149420224, 149551552,
-149683136, 149814976, 149943616, 150076352, 150208064, 150338624,
-150470464, 150600256, 150732224, 150862784, 150993088, 151125952,
-151254976, 151388096, 151519168, 151649728, 151778752, 151911104,
-152042944, 152174144, 152304704, 152435648, 152567488, 152698816,
-152828992, 152960576, 153091648, 153222976, 153353792, 153484096,
-153616192, 153747008, 153878336, 154008256, 154139968, 154270912,
-154402624, 154533824, 154663616, 154795712, 154926272, 155057984,
-155188928, 155319872, 155450816, 155580608, 155712064, 155843392,
-155971136, 156106688, 156237376, 156367424, 156499264, 156630976,
-156761536, 156892352, 157024064, 157155008, 157284416, 157415872,
-157545536, 157677248, 157810496, 157938112, 158071744, 158203328,
-158334656, 158464832, 158596288, 158727616, 158858048, 158988992,
-159121216, 159252416, 159381568, 159513152, 159645632, 159776192,
-159906496, 160038464, 160169536, 160300352, 160430656, 160563008,
-160693952, 160822208, 160956352, 161086784, 161217344, 161349184,
-161480512, 161611456, 161742272, 161873216, 162002752, 162135872,
-162266432, 162397888, 162529216, 162660032, 162790976, 162922048,
-163052096, 163184576, 163314752, 163446592, 163577408, 163707968,
-163839296, 163969984, 164100928, 164233024, 164364224, 164494912,
-164625856, 164756672, 164887616, 165019072, 165150016, 165280064,
-165412672, 165543104, 165674944, 165805888, 165936832, 166067648,
-166198336, 166330048, 166461248, 166591552, 166722496, 166854208,
-166985408, 167116736, 167246656, 167378368, 167508416, 167641024,
-167771584, 167903168, 168034112, 168164032, 168295744, 168427456,
-168557632, 168688448, 168819136, 168951616, 169082176, 169213504,
-169344832, 169475648, 169605952, 169738048, 169866304, 169999552,
-170131264, 170262464, 170393536, 170524352, 170655424, 170782016,
-170917696, 171048896, 171179072, 171310784, 171439936, 171573184,
-171702976, 171835072, 171966272, 172097216, 172228288, 172359232,
-172489664, 172621376, 172747712, 172883264, 173014208, 173144512,
-173275072, 173407424, 173539136, 173669696, 173800768, 173931712,
-174063424, 174193472, 174325696, 174455744, 174586816, 174718912,
-174849728, 174977728, 175109696, 175242688, 175374272, 175504832,
-175636288, 175765696, 175898432, 176028992, 176159936, 176291264,
-176422592, 176552512, 176684864, 176815424, 176946496, 177076544,
-177209152, 177340096, 177470528, 177600704, 177731648, 177864256,
-177994816, 178126528, 178257472, 178387648, 178518464, 178650176,
-178781888, 178912064, 179044288, 179174848, 179305024, 179436736,
-179568448, 179698496, 179830208, 179960512, 180092608, 180223808,
-180354752, 180485696, 180617152, 180748096, 180877504, 181009984,
-181139264, 181272512, 181402688, 181532608, 181663168, 181795136,
-181926592, 182057536, 182190016, 182320192, 182451904, 182582336,
-182713792, 182843072, 182976064, 183107264, 183237056, 183368384,
-183494848, 183631424, 183762752, 183893824, 184024768, 184154816,
-184286656, 184417984, 184548928, 184680128, 184810816, 184941248,
-185072704, 185203904, 185335616, 185465408, 185596352, 185727296,
-185859904, 185989696, 186121664, 186252992, 186383552, 186514112,
-186645952, 186777152, 186907328, 187037504, 187170112, 187301824,
-187429184, 187562048, 187693504, 187825472, 187957184, 188087104,
-188218304, 188349376, 188481344, 188609728, 188743616, 188874304,
-189005248, 189136448, 189265088, 189396544, 189528128, 189660992,
-189791936, 189923264, 190054208, 190182848, 190315072, 190447424,
-190577984, 190709312, 190840768, 190971328, 191102656, 191233472,
-191364032, 191495872, 191626816, 191758016, 191888192, 192020288,
-192148928, 192282176, 192413504, 192542528, 192674752, 192805952,
-192937792, 193068608, 193198912, 193330496, 193462208, 193592384,
-193723456, 193854272, 193985984, 194116672, 194247232, 194379712,
-194508352, 194641856, 194772544, 194900672, 195035072, 195166016,
-195296704, 195428032, 195558592, 195690304, 195818176, 195952576,
-196083392, 196214336, 196345792, 196476736, 196607552, 196739008,
-196869952, 197000768, 197130688, 197262784, 197394368, 197523904,
-197656384, 197787584, 197916608, 198049472, 198180544, 198310208,
-198442432, 198573632, 198705088, 198834368, 198967232, 199097792,
-199228352, 199360192, 199491392, 199621696, 199751744, 199883968,
-200014016, 200146624, 200276672, 200408128, 200540096, 200671168,
-200801984, 200933312, 201062464, 201194944, 201326144, 201457472,
-201588544, 201719744, 201850816, 201981632, 202111552, 202244032,
-202374464, 202505152, 202636352, 202767808, 202898368, 203030336,
-203159872, 203292608, 203423296, 203553472, 203685824, 203816896,
-203947712, 204078272, 204208192, 204341056, 204472256, 204603328,
-204733888, 204864448, 204996544, 205125568, 205258304, 205388864,
-205517632, 205650112, 205782208, 205913536, 206044736, 206176192,
-206307008, 206434496, 206569024, 206700224, 206831168, 206961856,
-207093056, 207223616, 207355328, 207486784, 207616832, 207749056,
-207879104, 208010048, 208141888, 208273216, 208404032, 208534336,
-208666048, 208796864, 208927424, 209059264, 209189824, 209321792,
-209451584, 209582656, 209715136, 209845568, 209976896, 210106432,
-210239296, 210370112, 210501568, 210630976, 210763712, 210894272,
-211024832, 211156672, 211287616, 211418176, 211549376, 211679296,
-211812032, 211942592, 212074432, 212204864, 212334016, 212467648,
-212597824, 212727616, 212860352, 212991424, 213120832, 213253952,
-213385024, 213515584, 213645632, 213777728, 213909184, 214040128,
-214170688, 214302656, 214433728, 214564544, 214695232, 214826048,
-214956992, 215089088, 215219776, 215350592, 215482304, 215613248,
-215743552, 215874752, 216005312, 216137024, 216267328, 216399296,
-216530752, 216661696, 216790592, 216923968, 217054528, 217183168,
-217316672, 217448128, 217579072, 217709504, 217838912, 217972672,
-218102848, 218233024, 218364736, 218496832, 218627776, 218759104,
-218888896, 219021248, 219151936, 219281728, 219413056, 219545024,
-219675968, 219807296, 219938624, 220069312, 220200128, 220331456,
-220461632, 220592704, 220725184, 220855744, 220987072, 221117888,
-221249216, 221378368, 221510336, 221642048, 221772736, 221904832,
-222031808, 222166976, 222297536, 222428992, 222559936, 222690368,
-222820672, 222953152, 223083968, 223213376, 223345984, 223476928,
-223608512, 223738688, 223869376, 224001472, 224132672, 224262848,
-224394944, 224524864, 224657344, 224788288, 224919488, 225050432,
-225181504, 225312704, 225443776, 225574592, 225704768, 225834176,
-225966784, 226097216, 226229824, 226360384, 226491712, 226623424,
-226754368, 226885312, 227015104, 227147456, 227278528, 227409472,
-227539904, 227669696, 227802944, 227932352, 228065216, 228196288,
-228326464, 228457792, 228588736, 228720064, 228850112, 228981056,
-229113152, 229243328, 229375936, 229505344, 229636928, 229769152,
-229894976, 230030272, 230162368, 230292416, 230424512, 230553152,
-230684864, 230816704, 230948416, 231079616, 231210944, 231342016,
-231472448, 231603776, 231733952, 231866176, 231996736, 232127296,
-232259392, 232388672, 232521664, 232652608, 232782272, 232914496,
-233043904, 233175616, 233306816, 233438528, 233569984, 233699776,
-233830592, 233962688, 234092224, 234221888, 234353984, 234485312,
-234618304, 234749888, 234880832, 235011776, 235142464, 235274048,
-235403456, 235535936, 235667392, 235797568, 235928768, 236057152,
-236190272, 236322752, 236453312, 236583616, 236715712, 236846528,
-236976448, 237108544, 237239104, 237371072, 237501632, 237630784,
-237764416, 237895232, 238026688, 238157632, 238286912, 238419392,
-238548032, 238681024, 238812608, 238941632, 239075008, 239206336,
-239335232, 239466944, 239599168, 239730496, 239861312, 239992384,
-240122816, 240254656, 240385856, 240516928, 240647872, 240779072,
-240909632, 241040704, 241171904, 241302848, 241433408, 241565248,
-241696192, 241825984, 241958848, 242088256, 242220224, 242352064,
-242481856, 242611648, 242744896, 242876224, 243005632, 243138496,
-243268672, 243400384, 243531712, 243662656, 243793856, 243924544,
-244054592, 244187072, 244316608, 244448704, 244580032, 244710976,
-244841536, 244972864, 245104448, 245233984, 245365312, 245497792,
-245628736, 245759936, 245889856, 246021056, 246152512, 246284224,
-246415168, 246545344, 246675904, 246808384, 246939584, 247070144,
-247199552, 247331648, 247463872, 247593536, 247726016, 247857088,
-247987648, 248116928, 248249536, 248380736, 248512064, 248643008,
-248773312, 248901056, 249036608, 249167552, 249298624, 249429184,
-249560512, 249692096, 249822784, 249954112, 250085312, 250215488,
-250345792, 250478528, 250608704, 250739264, 250870976, 251002816,
-251133632, 251263552, 251395136, 251523904, 251657792, 251789248,
-251919424, 252051392, 252182464, 252313408, 252444224, 252575552,
-252706624, 252836032, 252968512, 253099712, 253227584, 253361728,
-253493056, 253623488, 253754432, 253885504, 254017216, 254148032,
-254279488, 254410432, 254541376, 254672576, 254803264, 254933824,
-255065792, 255196736, 255326528, 255458752, 255589952, 255721408,
-255851072, 255983296, 256114624, 256244416, 256374208, 256507712,
-256636096, 256768832, 256900544, 257031616, 257162176, 257294272,
-257424448, 257555776, 257686976, 257818432, 257949632, 258079552,
-258211136, 258342464, 258473408, 258603712, 258734656, 258867008,
-258996544, 259127744, 259260224, 259391296, 259522112, 259651904,
-259784384, 259915328, 260045888, 260175424, 260308544, 260438336,
-260570944, 260700992, 260832448, 260963776, 261092672, 261226304,
-261356864, 261487936, 261619648, 261750592, 261879872, 262011968,
-262143424, 262274752, 262404416, 262537024, 262667968, 262799296,
-262928704, 263061184, 263191744, 263322944, 263454656, 263585216,
-263716672, 263847872, 263978944, 264108608, 264241088, 264371648,
-264501184, 264632768, 264764096, 264895936, 265024576, 265158464,
-265287488, 265418432, 265550528, 265681216, 265813312, 265943488,
-266075968, 266206144, 266337728, 266468032, 266600384, 266731072,
-266862272, 266993344, 267124288, 267255616, 267386432, 267516992,
-267648704, 267777728, 267910592, 268040512, 268172096, 268302784,
-268435264, 268566208, 268696256, 268828096, 268959296, 269090368,
-269221312, 269352256, 269482688, 269614784, 269745856, 269876416,
-270007616, 270139328, 270270272, 270401216, 270531904, 270663616,
-270791744, 270924736, 271056832, 271186112, 271317184, 271449536,
-271580992, 271711936, 271843136, 271973056, 272105408, 272236352,
-272367296, 272498368, 272629568, 272759488, 272891456, 273022784,
-273153856, 273284672, 273415616, 273547072, 273677632, 273808448,
-273937088, 274071488, 274200896, 274332992, 274463296, 274595392,
-274726208, 274857536, 274988992, 275118656, 275250496, 275382208,
-275513024, 275643968, 275775296, 275906368, 276037184, 276167872,
-276297664, 276429376, 276560576, 276692672, 276822976, 276955072,
-277085632, 277216832, 277347008, 277478848, 277609664, 277740992,
-277868608, 278002624, 278134336, 278265536, 278395328, 278526784,
-278657728, 278789824, 278921152, 279052096, 279182912, 279313088,
-279443776, 279576256, 279706048, 279838528, 279969728, 280099648,
-280230976, 280361408, 280493632, 280622528, 280755392, 280887104,
-281018176, 281147968, 281278912, 281411392, 281542592, 281673152,
-281803712, 281935552, 282066496, 282197312, 282329024, 282458816,
-282590272, 282720832, 282853184, 282983744, 283115072, 283246144,
-283377344, 283508416, 283639744, 283770304, 283901504, 284032576,
-284163136, 284294848, 284426176, 284556992, 284687296, 284819264,
-284950208, 285081536]
-```
diff --git a/public/content/translations/it/developers/docs/consensus-mechanisms/pow/mining-algorithms/index.md b/public/content/translations/it/developers/docs/consensus-mechanisms/pow/mining-algorithms/index.md
deleted file mode 100644
index 14365daef39..00000000000
--- a/public/content/translations/it/developers/docs/consensus-mechanisms/pow/mining-algorithms/index.md
+++ /dev/null
@@ -1,39 +0,0 @@
----
-title: Algoritmi di mining
-description: Uno sguardo dettagliato agli algoritmi usati per il mining di Ethereum.
-lang: it
----
-
-
-
-Il proof-of-work non è più alla base del meccanismo di consenso di Ethereum, a significare che il mining è stato disattivato. Invece, Ethereum, è protetto dai validatori che mettono ETH in staking. Puoi iniziare oggi a mettere i tuoi ETH in staking. Leggi di più su [La Fusione](/roadmap/merge/), il [proof-of-stake](/developers/docs/consensus-mechanisms/pos/) e lo [staking](/staking/). Questa pagina è per solo interesse storico.
-
-
-
-Il mining di Ethereum usava un algoritmo noto come Ethash. L'idea fondamentale dell'algoritmo è che un miner prova a trovare l'input di un nonce usando il calcolo di forza bruta, così che l'hash risultante sia inferiore a una soglia determinata dalla difficoltà calcolata. Questo livello di difficoltà può esser regolato dinamicamente, consentendo alla produzione dei blocchi di verificarsi a un intervallo regolare.
-
-## Prerequisiti {#prerequisites}
-
-Per comprendere meglio questa pagina, ti consigliamo prima di leggere sul [consenso proof-of-work](/developers/docs/consensus-mechanisms/pow) e sul [mining](/developers/docs/consensus-mechanisms/pow/mining).
-
-## Dagger Hashimoto {#dagger-hashimoto}
-
-Dagger Hashimoto era un algoritmo di ricerca precursore del mining di Ethereum, sostituito da Ethash. Era un amalgama di due algoritmi differenti: Dagger e Hashimoto. È sempre e solo stato un'implementazione di ricerca e fu superato da Ethash prima del lancio della Rete Principale di Ethereum.
-
-[Dagger](http://www.hashcash.org/papers/dagger.html) prevede la generazione di un [Grafico Aciclico Diretto](https://en.wikipedia.org/wiki/Directed_acyclic_graph), porzioni casuali del quale ricevono un hashing insieme. Il principio fondamentale è che ogni nonce richiede solo una piccola porzione di un grande albero di dati totali. Ricalcolare l'albero secondario per ogni nonce è proibitivo per il mining, da cui l'esigenza di memorizzare l'albero, invece, va bene per verificare un singolo nonce. Dagger è stato progettato per essere un'alternativa agli algoritmi esistenti come Scrypt, che sono gravosi per la memoria (memory-hard) ma difficili da verificare all'aumentare dell'uso della memoria verso livelli veramente sicuri. Dagger era però vulnerabile all'accelerazione dell'hardware con memoria condiviso ed è stato abbandonato a favore di altre vie di ricerca.
-
-[Hashimoto](http://diyhpl.us/%7Ebryan/papers2/bitcoin/meh/hashimoto.pdf) è un algoritmo che aggiunge resistenza ASIC, essendo vincolato da aspetti I/O (cioè le letture di memoria rappresentano il fattore limitante nel processo di mining). La teoria è che vi sia più disponibilità di RAM che di calcolo: sono già stati usati miliardi di dollari in ricerca per l'ottimizzazione della RAM per diversi scenari d'uso, che spesso coinvolgono schemi d'accesso semi-casuale (da cui "memoria d'accesso casuale", Random Access Memory). Di conseguenza, è probabile che la RAM esistente sia abbastanza vicina all'ottimale per valutare l'algoritmo. Hashimoto usa la blockchain come una fonte di dati, perché soddisfa simultaneamente i punti (1) e (3) di cui sopra.
-
-Dagger-Hashimoto usava delle versioni modificate degli algoritmi di Dagger e Hashimoto. La differenza tra Dagger Hashimoto e Hashimoto è che, anziché usare la blockchain come una fonte di dati, Dagger Hashimoto usa una serie di dati generata e personalizzata, che si aggiorna a seconda dei dati del blocco ogni N blocchi. La serie di dati è generata usando l'algoritmo di Dagger, che consente di calcolare efficientemente una sotto-serie specifica a ogni nonce per l'algoritmo di verifica del client leggero. La differenza tra Dagger Hashimoto e Dagger è che, a differenza del Dagger originale, il dataset usato per interrogare il blocco è semi-permanente, in quanto viene aggiornato solo occasionalmente (es. una volta a settimana). Questo significa che la porzione dello sforzo per generare il dataset è prossima allo zero, e diventano quindi trascurabili gli argomenti di Sergio Lerner riguardanti le velocizzazioni della memoria condivisa.
-
-Maggiori informazioni su [Dagger-Hashimoto](/developers/docs/consensus-mechanisms/pow/mining-algorithms/dagger-hashimoto).
-
-## Ethash {#ethash}
-
-Ethash era l'algoritmo di mining che era effettiamente usato sulla vera Rete Principale di Ethereum sotto l'ora deprecata architettura del proof-of-work. Ethash in realtà è un nuovo nome assegnato a una versione specifica di Dagger-Hashimoto dopo un aggiornamento significativo dell'algoritmo, che comunque eredita i principi fondamentali del suo predecessore. La Rete Principale di Ethereum ha sempre e solo usato Ethash; Dagger Hashimoto era una versione R&D dell'algoritmo di mining che fu superata prima che il mining fosse avviato sulla rete principale di Ethereum.
-
-[Maggiori informazioni su Ethash](/developers/docs/consensus-mechanisms/pow/mining-algorithms/ethash).
-
-## Letture consigliate {#further-reading}
-
-_Conosci una risorsa della community che ti è stata utile? Modifica questa pagina e aggiungila!_
diff --git a/public/content/translations/it/developers/docs/consensus-mechanisms/pow/mining/index.md b/public/content/translations/it/developers/docs/consensus-mechanisms/pow/mining/index.md
index 92ad5e0cc68..c75e28ab0d7 100644
--- a/public/content/translations/it/developers/docs/consensus-mechanisms/pow/mining/index.md
+++ b/public/content/translations/it/developers/docs/consensus-mechanisms/pow/mining/index.md
@@ -60,7 +60,7 @@ Il mining di ogni transazione (cioè l'inclusione in un nuovo blocco e la prima
L'estrazione di blocchi basata sul proof-of-work era solo probabilistica, il che significa che a volte due blocchi validi venivano pubblicati simultaneamente a causa della latenza della rete. In questo caso, il protocollo doveva determinare la catena più lunga (e quindi più "valida") garantendo al tempo stesso un trattamento equo dei miner, ricompensando parzialmente il blocco valido proposto non incluso. Ciò incoraggiava l'ulteriore decentralizzazione della rete in quanto i piccoli miner, che potevano trovarsi ad affrontare una latenza più elevata, potevano comunque generare rendimenti tramite ricompense per blocchi [ommer](/glossary/#ommer).
-"Ommer" è il termine preferito, neutro dal punto di vista del genere, per lo stesso livello di un blocco padre, ma a volte viene anche indicato come "zio". **Da quando Ethereum è passato alla proof-of-stake, i blocchi ommer non vengono più estratti** poiché in ogni slot viene eletto solo un proponente. Questo cambiamento può essere osservato nel [grafico storico](https://ycharts.com/indicators/ethereum_uncle_rate) dei blocchi ommer estratti.
+"Ommer" è il termine preferito, neutro dal punto di vista del genere, per lo stesso livello di un blocco genitore, ma a volte viene anche indicato come "zio". **Da quando Ethereum è passato alla proof-of-stake, i blocchi ommer non vengono più estratti** poiché in ogni slot viene eletto solo un proponente. Questo cambiamento può essere osservato nel [grafico storico](https://ycharts.com/indicators/ethereum_uncle_rate) dei blocchi ommer estratti.
## Demo visiva {#a-visual-demo}
@@ -70,9 +70,9 @@ Austin ti guiderà attraverso il mining e la blockchain basata sul proof-of-work
## L'algoritmo di mining {#mining-algorithm}
-La Rete Principale di Ethereum ha sempre e solo usato un algoritmo di mining: ['Ethash'](/developers/docs/consensus-mechanisms/pow/mining-algorithms/ethash). Ethash era il successore di un algoritmo di R&S originale, noto come ['Dagger-Hashimoto'](/developers/docs/consensus-mechanisms/pow/mining-algorithms/dagger-hashimoto/).
+La Rete Principale di Ethereum ha sempre e solo usato un algoritmo di mining: ['Ethash'](/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/ethash). Ethash era il successore di un algoritmo di R&S originale, noto come ['Dagger-Hashimoto'](/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/dagger-hashimoto/).
-[Maggiori informazioni sugli algoritmi di mining](/developers/docs/consensus-mechanisms/pow/mining-algorithms/).
+[Maggiori informazioni sugli algoritmi di mining](/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/).
## Argomenti correlati {#related-topics}
diff --git a/public/content/translations/it/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/dagger-hashimoto/index.md b/public/content/translations/it/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/dagger-hashimoto/index.md
index 04537f99e8d..90282be1aed 100644
--- a/public/content/translations/it/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/dagger-hashimoto/index.md
+++ b/public/content/translations/it/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/dagger-hashimoto/index.md
@@ -4,7 +4,7 @@ description: Uno sguardo dettagliato all'algoritmo di Dagger-Hashimoto.
lang: it
---
-Dagger-Hashimoto era l'implementazione e specifica di ricerca originale per l'algoritmo di mining di Ethereum. Dagger-Hashimoto è stato sostituito da [Ethash](#ethash). Il Mining è stata disattivato completamente con[ il Merge](/updates/merge) il 15 settembre 2022. Da allora, Ethereum è stato assicurato utilizzando un meccanismo [proof-of-of-stake](/developers/docs/consensus-mechanisms/pos). Questa pagina è di interesse storico - le informazioni qui non sono più rilevanti per post-Merge Ethereum.
+Dagger-Hashimoto era l'implementazione e specifica di ricerca originale per l'algoritmo di mining di Ethereum. Dagger-Hashimoto è stato sostituito da [Ethash](#ethash). Il Mining è stata disattivato completamente con[ il Merge](/roadmap/merge/) il 15 settembre 2022. Da allora, Ethereum è stato assicurato utilizzando un meccanismo [proof-of-of-stake](/developers/docs/consensus-mechanisms/pos). Questa pagina è di interesse storico - le informazioni qui non sono più rilevanti per post-Merge Ethereum.
## Prerequisiti {#prerequisites}
@@ -294,7 +294,7 @@ Per certi valori di `P` e `w`, la funzione `pow(x, w, P)` potrebbe avere molte c
Dato che `P` è primo, allora è possibile scegliere un'appropriata `w` per una funzione di hashing di esponenziazione modulare usando il seguente risultato:
> Osservazione 3. Prendiamo `P` come numero primo; `w` e `P-1` sono coprimi se e solo se per ogni `a` e `b` in `ℤ/Pℤ`:
->
+>
>
> `aʷ mod P ≡ bʷ mod P` se e solo se `a mod P ≡ b mod P`
>
diff --git a/public/content/translations/it/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/ethash/index.md b/public/content/translations/it/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/ethash/index.md
index c49aa95c4a7..cc402a8dc32 100644
--- a/public/content/translations/it/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/ethash/index.md
+++ b/public/content/translations/it/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/ethash/index.md
@@ -8,7 +8,7 @@ lang: it
Ethash era l'algoritmo di mining di proof-of-work di Ethereum. Il proof-of-work è ora stato **disattivato interamente** e, invece, Ethereum è ora protetto utilizzando il proof-of-stake. Leggi di più su La Fusione, sul proof-of-stake e sullo staking. Questa pagina è per interesse storico!
-[Ethash](https://github.com/ethereum/wiki/wiki/Ethash) è una versione modificata dell'algoritmo [Dagger-Hashimoto](/developers/docs/consensus-mechanisms/pow/mining-algorithms/dagger-hashimoto). Il proof-of-work di Ethash è [a elevato consumo di memoria](https://wikipedia.org/wiki/Memory-hard_function), cosa pensata per rendere l'algoritmo resistente agli ASIC. Gli ASIC di Ethash sono infine stati sviluppati, ma il mining della GPU è stata un'opzione ancora valida fino alla disattivazione del proof-of-work. Ethash è ancora usato per minare altre valute su altre reti di proof-of-work non di Ethereum.
+[Ethash](https://github.com/ethereum/wiki/wiki/Ethash) è una versione modificata dell'algoritmo [Dagger-Hashimoto](/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/dagger-hashimoto). Il proof-of-work di Ethash è [a elevato consumo di memoria](https://wikipedia.org/wiki/Memory-hard_function), cosa pensata per rendere l'algoritmo resistente agli ASIC. Gli ASIC di Ethash sono infine stati sviluppati, ma il mining della GPU è stata un'opzione ancora valida fino alla disattivazione del proof-of-work. Ethash è ancora usato per minare altre valute su altre reti di proof-of-work non di Ethereum.
## Come funziona Ethash? {#how-does-ethash-work}
@@ -44,7 +44,7 @@ ACCESSES = 64 # number of accesses in hashimoto loop
### L'uso di "SHA3" {#sha3}
-Lo sviluppo di Ethereum è coinciso con lo sviluppo dello standard SHA3 e il processo standard ha effettuato una modifica tardiva al padding dell'algoritmo di hash finalizzato, quindi, gli hash "sha3_256" e "sha3_512" di Ethereum non sono hash dello standard sha3, ma una variante, spesso definita "Keccak-256" e "Keccak-512" in altri contesti. Vedi la discussione, es. [qui](https://eips.ethereum.org/EIPS-1803), [qui](http://ethereum.stackexchange.com/questions/550/which-cryptographic-hash-function-does-ethereum-use) o [qui](http://bitcoin.stackexchange.com/questions/42055/what-is-the-approach-to-calculate-an-ethereum-address-from-a-256-bit-private-key/42057#42057).
+Lo sviluppo di Ethereum è coinciso con lo sviluppo dello standard SHA3 e il processo standard ha effettuato una modifica tardiva al padding dell'algoritmo di hash finalizzato, quindi, gli hash "sha3_256" e "sha3_512" di Ethereum non sono hash dello standard sha3, ma una variante, spesso definita "Keccak-256" e "Keccak-512" in altri contesti. Vedi la discussione, es. [qui](https://eips.ethereum.org/EIPS/eip-1803), [qui](http://ethereum.stackexchange.com/questions/550/which-cryptographic-hash-function-does-ethereum-use) o [qui](http://bitcoin.stackexchange.com/questions/42055/what-is-the-approach-to-calculate-an-ethereum-address-from-a-256-bit-private-key/42057#42057).
Si ricorda che gli hash "sha3" siano presentati nella descrizione dell'algoritmo più avanti.
diff --git a/public/content/translations/it/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/index.md b/public/content/translations/it/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/index.md
index 5e33f935bd6..52235189c1d 100644
--- a/public/content/translations/it/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/index.md
+++ b/public/content/translations/it/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/index.md
@@ -24,13 +24,13 @@ Dagger Hashimoto era un algoritmo di ricerca precursore del mining di Ethereum,
Dagger-Hashimoto usava delle versioni modificate degli algoritmi di Dagger e Hashimoto. La differenza tra Dagger Hashimoto e Hashimoto è che, anziché usare la blockchain come una fonte di dati, Dagger Hashimoto usa una serie di dati generata e personalizzata, che si aggiorna a seconda dei dati del blocco ogni N blocchi. La serie di dati è generata usando l'algoritmo di Dagger, che consente di calcolare efficientemente una sotto-serie specifica a ogni nonce per l'algoritmo di verifica del client leggero. La differenza tra Dagger Hashimoto e Dagger è che, a differenza del Dagger originale, il dataset usato per interrogare il blocco è semi-permanente, in quanto viene aggiornato solo occasionalmente (es. una volta a settimana). Questo significa che la porzione dello sforzo per generare il dataset è prossima allo zero, e diventano quindi trascurabili gli argomenti di Sergio Lerner riguardanti le velocizzazioni della memoria condivisa.
-Maggiori informazioni su [Dagger-Hashimoto](/developers/docs/consensus-mechanisms/pow/mining-algorithms/dagger-hashimoto).
+Maggiori informazioni su [Dagger-Hashimoto](/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/dagger-hashimoto).
## Ethash {#ethash}
Ethash era l'algoritmo di mining che era effettiamente usato sulla vera Rete Principale di Ethereum sotto l'ora deprecata architettura del proof-of-work. Ethash in realtà è un nuovo nome assegnato a una versione specifica di Dagger-Hashimoto dopo un aggiornamento significativo dell'algoritmo, che comunque eredita i principi fondamentali del suo predecessore. La Rete Principale di Ethereum ha sempre e solo usato Ethash; Dagger Hashimoto era una versione R&D dell'algoritmo di mining che fu superata prima che il mining fosse avviato sulla rete principale di Ethereum.
-[Maggiori informazioni su Ethash](/developers/docs/consensus-mechanisms/pow/mining-algorithms/ethash).
+[Maggiori informazioni su Ethash](/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/ethash).
## Letture consigliate {#further-reading}
diff --git a/public/content/translations/it/developers/docs/dapps/index.md b/public/content/translations/it/developers/docs/dapps/index.md
index d25780ad14e..99834abb0a5 100644
--- a/public/content/translations/it/developers/docs/dapps/index.md
+++ b/public/content/translations/it/developers/docs/dapps/index.md
@@ -54,7 +54,7 @@ Un contratto intelligente è codice che risiede sulla blockchain di Ethereum e o
- [GitHub](https://github.com/austintgriffith/scaffold-eth)
- [Esempio di dApp](https://punkwallet.io/)
-**Crea Eth App*- Crea app basate su Ethereum con un comando.***
+**Crea Eth App_- Crea app basate su Ethereum con un comando._**
- [GitHub](https://github.com/paulrberg/create-eth-app)
diff --git a/public/content/translations/it/developers/docs/data-and-analytics/block-explorers/index.md b/public/content/translations/it/developers/docs/data-and-analytics/block-explorers/index.md
index 3f3bf20a992..e8d9786a710 100644
--- a/public/content/translations/it/developers/docs/data-and-analytics/block-explorers/index.md
+++ b/public/content/translations/it/developers/docs/data-and-analytics/block-explorers/index.md
@@ -16,15 +16,15 @@ I block explorer sono il tuo portale sui dati di Ethereum. Puoi usarli per visua
- [Etherscan](https://etherscan.io/): _disponibile anche in cinese, coreano, russo e giapponese_
- [Beaconcha.in](https://beaconcha.in/)
- [Blockchair](https://blockchair.com/ethereum): _disponibile anche in spagnolo, francese, italiano, olandese, portoghese, russo, cinese e farsi_
-- [Blockscout](https://blockscout.com/)
+- [Blockscout](https://eth.blockscout.com/)
+- [Chainlens](https://www.chainlens.com/)
+- [DexGuru Block Explorer](https://ethereum.dex.guru/)
- [Etherchain](https://www.etherchain.org/)
- [Ethplorer](https://ethplorer.io/): _disponibile anche in cinese, spagnolo, francese, turco, russo, coreano e vietnamita_
+- [EthVM](https://www.ethvm.com/)
- [OKLink](https://www.oklink.com/eth)
- [Otterscan](https://otterscan.io/)
- [Rantom](https://rantom.app/)
-- [Sirato](https://www.web3labs.com/sirato)
-- [EthVM](https://www.ethvm.com/)
-- [DexGuru Block Explorer](https://ethereum.dex.guru/)
## Dati {#data}
diff --git a/public/content/translations/it/developers/docs/data-and-analytics/index.md b/public/content/translations/it/developers/docs/data-and-analytics/index.md
index dbd7a13da9a..4b139fc467a 100644
--- a/public/content/translations/it/developers/docs/data-and-analytics/index.md
+++ b/public/content/translations/it/developers/docs/data-and-analytics/index.md
@@ -30,7 +30,7 @@ Usando [GraphQL](https://graphql.org/), gli sviluppatori possono interrogare una
## Diversità dei client
-La [diversità dei client](/developers/docs/nodes-and-clients/client-diversity/) è importante per la salute complessiva della rete di Ethereum, poiché fornisce resilienza a bug ed exploit. Attualmente esistono vari pannelli di controllo della diversità del client, tra cui [clientdiversity.org](https://clientdiversity.org/), [rated.network](https://rated.network), [execution-diversity.info](https://execution-diversity.info/) ed [Ethernodes](https://ethernodes.org/).
+La [diversità dei client](/developers/docs/nodes-and-clients/client-diversity/) è importante per la salute complessiva della rete di Ethereum, poiché fornisce resilienza a bug ed exploit. Attualmente esistono vari pannelli di controllo della diversità del client, tra cui [clientdiversity.org](https://clientdiversity.org/), [rated.network](https://www.rated.network), [execution-diversity.info](https://execution-diversity.info/) ed [Ethernodes](https://ethernodes.org/).
## Dune Analytics {#dune-analytics}
diff --git a/public/content/translations/it/developers/docs/data-structures-and-encoding/rlp/index.md b/public/content/translations/it/developers/docs/data-structures-and-encoding/rlp/index.md
index 714b3c5cb9e..090b4d17349 100644
--- a/public/content/translations/it/developers/docs/data-structures-and-encoding/rlp/index.md
+++ b/public/content/translations/it/developers/docs/data-structures-and-encoding/rlp/index.md
@@ -35,7 +35,7 @@ La codifica RLP è definita come segue:
- Per un singolo byte il cui valore è nell'intervallo `[0x00, 0x7f]` (decimale `[0, 127]`), quel byte è la propria codifica RLP.
- Altrimenti, se una stringa è lunga da 0 a 55 byte, la codifica RLP consiste in un singolo byte con valore **0x80** (dec. 128) più la lunghezza della stringa seguita dalla stringa. L'intervallo del primo byte è dunque `[0x80, 0xb7]` (dec. `[128, 183]`).
- Se una stringa è più lunga di 55 byte, la codifica RLP consiste in un singolo byte con valore **0xb7** (dec. 183) più la lunghezza in byte della lunghezza della stringa in forma binaria, seguita dalla lunghezza della stringa, seguita dalla stringa. Ad esempio, una stringa lunga 1024 byte sarebbe codificata come `\xb9\x04\x00` (dec. `185, 4, 0`), seguita dalla stringa. Qui, `0xb9` (183 + 2 = 185) come primo byte, seguito dai 2 byte `0x0400` (dec. 1024) che denotano la lunghezza della stringa effettiva. L'intervallo del primo byte è dunque `[0xb8, 0xbf]` (dec. `[184, 191]`).
-- Se il payload totale di una lista (es., la lunghezza combinata di tutti i suoi elementi codificata in RLP) è lungo da 0 a 55 byte, la codifica RLP consiste in un singolo byte con valore **0xc0**, oltre alla lunghezza dell'elenco seguita dalla concatenazione delle codifiche RLP degli elementi. L'intervallo del primo byte è dunque `[0xc0, 0xf7]` (dec. `[192, 247]`).
+- Se il payload totale di un elenco (cioè la lunghezza combinata di tutti i suoi elementi codificati in RLP) è lunga da 0 a 55 byte, la codifica RLP consiste in un singolo byte dal valore **0xc0**, più la lunghezza del payload, seguita dalla concatenazione delle codifiche RLP degli elementi. L'intervallo del primo byte è dunque `[0xc0, 0xf7]` (dec. `[192, 247]`).
- Se il carico utile totale di un elenco è più lungo di 55 byte, la codifica RLP consiste in un singolo byte con valore **oxf7**, più la lunghezza in byte della lunghezza del payload in forma binaria, seguita dalla lunghezza del carico utile, seguita dalla concatenazione delle codifiche RLP degli elementi. L'intervallo del primo byte è dunque `[0xf8, 0xff]` (dec. `[248, 255]`).
In codice è:
diff --git a/public/content/translations/it/developers/docs/development-networks/index.md b/public/content/translations/it/developers/docs/development-networks/index.md
index 5855afa04c6..e49ad287dbe 100644
--- a/public/content/translations/it/developers/docs/development-networks/index.md
+++ b/public/content/translations/it/developers/docs/development-networks/index.md
@@ -70,7 +70,7 @@ Il pacchetto Ethereum di Kurtosis istanzia localmente una rete di prova di Ether
- [Pacchetto rete Ethereum](https://github.com/kurtosis-tech/eth-network-package)
- [Sito Web](https://www.kurtosis.com/)
-- [Github](https://github.com/kurtosis-tech/kurtosis)
+- [GitHub](https://github.com/kurtosis-tech/kurtosis)
- [Documentazione](https://docs.kurtosis.com/)
## Letture consigliate {#further-reading}
diff --git a/public/content/translations/it/developers/docs/evm/index.md b/public/content/translations/it/developers/docs/evm/index.md
index 0becd0825f5..b0f5152d7e2 100644
--- a/public/content/translations/it/developers/docs/evm/index.md
+++ b/public/content/translations/it/developers/docs/evm/index.md
@@ -64,6 +64,7 @@ Tutti i [client Ethereum](/developers/docs/nodes-and-clients/#execution-clients)
- [evmone](https://github.com/ethereum/evmone) - _C++_
- [ethereumjs-vm](https://github.com/ethereumjs/ethereumjs-vm) - _JavaScript_
- [eEVM](https://github.com/microsoft/eevm) - _C++_
+- [revm](https://github.com/bluealloy/revm) - _Rust_
## Letture consigliate {#further-reading}
diff --git a/public/content/translations/it/developers/docs/frameworks/index.md b/public/content/translations/it/developers/docs/frameworks/index.md
index 884edca3d22..d4516606ebd 100644
--- a/public/content/translations/it/developers/docs/frameworks/index.md
+++ b/public/content/translations/it/developers/docs/frameworks/index.md
@@ -22,12 +22,14 @@ Prima di iniziare a studiare i framework, raccomandiamo la lettura della nostra
## Framework disponibili {#available-frameworks}
-**Truffle:** **_ ambiente di sviluppo, framework di test, pipeline di sviluppo e altri strumenti_**
+**Foundry** - **_Foundry è un toolkit dalla straordinaria velocità, portatile e modulare per lo sviluppo di applicazioni di Ethereum._**
-- [trufflesuite.com](https://www.trufflesuite.com/)
-- [GitHub](https://github.com/trufflesuite/truffle)
+- [Installa Foundry](https://book.getfoundry.sh/)
+- [Guida a Foundry](https://book.getfoundry.sh/)
+- [Chat della community di Foundry su Telegram](https://t.me/foundry_support)
+- [Awesome Foundry](https://github.com/crisgarner/awesome-foundry)
-**Hardhat:** **_ ambiente di sviluppo Ethereum per professionisti_**
+**Hardhat:** **_ambiente di sviluppo Ethereum per professionisti_**
- [hardhat.org](https://hardhat.org)
- [GitHub](https://github.com/nomiclabs/hardhat)
@@ -37,23 +39,12 @@ Prima di iniziare a studiare i framework, raccomandiamo la lettura della nostra
- [Documentazione](https://docs.apeworx.io/ape/stable/)
- [GitHub](https://github.com/ApeWorX/ape)
-**Brownie:** **_ ambiente di sviluppo e framework per il test basati su Python _**
-
-- [Documentazione](https://eth-brownie.readthedocs.io/en/latest/)
-- [GitHub](https://github.com/eth-brownie/brownie)
-
**Web3j -** **_Una piattaforma per sviluppare applicazioni della blockchain sulla JVM_**
- [Home page](https://www.web3labs.com/web3j-sdk)
- [Documentazione](https://docs.web3j.io)
- [GitHub](https://github.com/web3j/web3j)
-**OpenZeppelin SDK:** **_Il kit di strumenti definitivo per i contratti intelligenti: una suite di strumenti per aiutarti a sviluppare, compilare, aggiornare, distribuire e interagire con i contratti intelligenti_**
-
-- [SDK OpenZeppelin](https://openzeppelin.com/sdk/)
-- [GitHub](https://github.com/OpenZeppelin/openzeppelin-sdk)
-- [Forum della community](https://forum.openzeppelin.com/c/support/17)
-
**Create Eth App -** **_Crea app per Ethereum con un comando. Offre una vasta scelta di framework per l'interfaccia utente e modelli DeFI tra cui scegliere._**
- [GitHub](https://github.com/paulrberg/create-eth-app)
@@ -68,7 +59,7 @@ Prima di iniziare a studiare i framework, raccomandiamo la lettura della nostra
- [Sito Web](https://tenderly.co/)
- [Documentazione](https://docs.tenderly.co/ethereum-development-practices)
-**The Graph:** **_ The Graph per interrogare efficientemente i dati della blockchain_**
+**The Graph -** **_ The Graph per interrogare efficientemente i dati della blockchain_**
- [Sito Web](https://thegraph.com/)
- [Tutorial](/developers/tutorials/the-graph-fixing-web3-data-querying/)
@@ -79,19 +70,13 @@ Prima di iniziare a studiare i framework, raccomandiamo la lettura della nostra
- [GitHub](https://github.com/alchemyplatform)
- [Discord](https://discord.com/invite/A39JVCM)
-**Foundry -** **_Un toolkit velocissimo, portatile e modulare per lo sviluppo di applicazioni di Ethereum scritte in Rust._**
-
-- [Documentazione](https://book.getfoundry.sh/)
-- [GitHub](https://github.com/gakonst/foundry/)
-- [Strumenti per Foundry](https://github.com/crisgarner/awesome-foundry)
-
-**NodeReal**: **_Piattaforma di sviluppo per Ethereum._**
+**NodeReal -** **_Piattaforma di sviluppo per Ethereum._**
- [Nodereal.io](https://nodereal.io/)
- [GitHub](https://github.com/node-real)
- [Discord](https://discord.gg/V5k5gsuE)
-**SDK di thirdweb -** **_Sviluppa applicazioni web3 che possono interagire con i tuoi contratti intelligenti usando i nostri potenti SDK e CLI._**
+**thirdweb SDK -** **_Sviluppa applicazioni web3 che possono interagire con i tuoi contratti intelligenti usando i nostri potenti SDK e CLI._**
- [Documentazione](https://portal.thirdweb.com/sdk/)
- [GitHub](https://github.com/thirdweb-dev/)
@@ -102,6 +87,25 @@ Prima di iniziare a studiare i framework, raccomandiamo la lettura della nostra
- [GitHub](https://github.com/chainstack)
- [Discord](https://discord.gg/BSb5zfp9AT)
+**Brownie -** **_ Ambiente di sviluppo e framework per il test basati su Python _**
+
+- [Documentazione](https://eth-brownie.readthedocs.io/en/latest/)
+- [GitHub](https://github.com/eth-brownie/brownie)
+- **Brownie non è al momento mantenuto**
+
+**Truffle -** **_ Ambiente di sviluppo, framework di test, pipeline di sviluppo e altri strumenti_**
+
+- [trufflesuite.com](https://www.trufflesuite.com/)
+- [GitHub](https://github.com/trufflesuite/truffle)
+- **Lo sviluppo di Truffle è terminato**: [leggi di più](https://twitter.com/trufflesuite/status/1704946902393860589?t=NlIWeLTbBSAaJmS5uUAhSA&s=19)
+
+**OpenZeppelin SDK -** **_Il kit di strumenti definitivo per i contratti intelligenti: una suite di strumenti per aiutarti a sviluppare, compilare, aggiornare, distribuire e interagire con i contratti intelligenti_**
+
+- [OpenZeppelin SDK](https://openzeppelin.com/sdk/)
+- [GitHub](https://github.com/OpenZeppelin/openzeppelin-sdk)
+- [Forum della community](https://forum.openzeppelin.com/c/support/17)
+- **Lo sviluppo di OpenZeppelin SDK è terminato**
+
## Letture consigliate {#further-reading}
_Conosci una risorsa della comunità che ti è stata utile? Modifica questa pagina e aggiungila!_
diff --git a/public/content/translations/it/developers/docs/gas/index.md b/public/content/translations/it/developers/docs/gas/index.md
index 5902a7baa55..9fa51e2131f 100644
--- a/public/content/translations/it/developers/docs/gas/index.md
+++ b/public/content/translations/it/developers/docs/gas/index.md
@@ -55,7 +55,7 @@ Ogni blocco ha una commissione base che funge da prezzo di riserva. Per poter es
La commissione di base è calcolata con una formula che confronta le dimensioni del blocco precedente (la quantità di gas usata per tutte le transazioni) con le dimensioni di quello corrente. La commissione base aumenta di un massimo del 12,5% per blocco se la dimensione prevista del blocco viene superata. Questa crescita esponenziale rende economicamente impensabile che la dimensione del blocco resti elevata per un tempo indefinito.
| Numero del blocco | Gas Incluso | Aumento della commissione | Tariffa base corrente |
-| ----------------- | ----------: | ------------------------: | --------------------: |
+| ----------------- | -----------:| -------------------------:| ---------------------:|
| 1 | 15M | 0% | 100 gwei |
| 2 | 30M | 0% | 100 gwei |
| 3 | 30M | 12,5% | 112,5 gwei |
@@ -70,7 +70,7 @@ Secondo la tabella che precede, per creare una transazione sul blocco numero 9,
Inoltre, è importante notare che, vista la velocità con cui la commissione base aumenta mentre si avanza verso un blocco completo, è improbabile assistere a picchi prolungati di blocchi completi.
| Numero del blocco | Gas Incluso | Aumento della commissione | Tariffa base corrente |
-| ----------------- | ----------: | ------------------------: | --------------------: |
+| ----------------- | -----------:| -------------------------:| ---------------------:|
| 30 | 30M | 12,5% | 2.705,6 gwei |
| ... | ... | 12,5% | ... |
| 50 | 30M | 12,5% | 28.531,3 gwei |
diff --git a/public/content/translations/it/developers/docs/networking-layer/portal-network/index.md b/public/content/translations/it/developers/docs/networking-layer/portal-network/index.md
index eddf59ab9eb..6a5ed1e39cc 100644
--- a/public/content/translations/it/developers/docs/networking-layer/portal-network/index.md
+++ b/public/content/translations/it/developers/docs/networking-layer/portal-network/index.md
@@ -78,5 +78,5 @@ Se un client presenta problemi o vulnerabilità, gli altri client possono contin
## Letture consigliate {#futher-reading}
- [La Rete Portal (Piper Merriam al Devcon di Bogotà)](https://www.youtube.com/watch?v=0stc9jnQLXA).
-- [Discord della Rete Portal](https://discord.gg/6XFs56cX)
-- [Sito web della Rete Portal](https://ethportal.net)
+- [Discord della Rete Portal](https://discord.gg/CFFnmE7Hbs)
+- [Sito web della Rete Portal](https://www.ethportal.net/)
diff --git a/public/content/translations/it/developers/docs/networks/index.md b/public/content/translations/it/developers/docs/networks/index.md
index 29e38d4b4be..59f2854a698 100644
--- a/public/content/translations/it/developers/docs/networks/index.md
+++ b/public/content/translations/it/developers/docs/networks/index.md
@@ -59,7 +59,7 @@ Le due reti di prova pubbliche che gli sviluppatori di client stanno mantenendo
- [Faucet Coinbase Wallet | Sepolia](https://coinbase.com/faucets/ethereum-sepolia-faucet)
- [Faucet Alchemy Sepolia](https://sepoliafaucet.com/)
- [Faucet Infura Sepolia](https://www.infura.io/faucet)
-- [Faucet Sepolia di Chainstack](https://faucet.chainstack.com/sepolia-faucet)
+- [Faucet Chainstack Sepolia](https://faucet.chainstack.com/sepolia-faucet)
#### Goerli _(supporto a lungo termine)_ {#goerli}
@@ -111,6 +111,14 @@ Una rete di prova per [Optimism](https://www.optimism.io/).
- [Faucet Paradigm](https://faucet.paradigm.xyz/)
- [Faucet Coinbase Wallet | Optimism Goerli](https://coinbase.com/faucets/optimism-goerli-faucet)
+#### Starknet Goerli {#starknet-goerli}
+
+Una rete di prova per [Starknet](https://www.starknet.io).
+
+##### Faucet
+
+- [Faucet di Starknet](https://faucet.goerli.starknet.io)
+
## Reti private {#private-networks}
Una rete Ethereum è una rete privata se i relativi nodi non sono connessi a una rete pubblica (ossia Rete principale o una rete di prova). In questo contesto, privato significa solo riservato o isolato, e non protetto o sicuro.
@@ -129,7 +137,7 @@ Se una rete Ethereum pubblica è come la rete Internet pubblica, una rete di con
## Strumenti correlati {#related-tools}
-- Elenco di [Chainlist](https://chainlist.org/) _ di reti EVM per connettere portafogli e fornitori all'ID della Catena e ID di Rete appropriati._
+- [Chainlist](https://chainlist.org/) _Elenco di reti EVM per connettere portafogli e fornitori all'ID della Catena e ID di Rete appropriati._
- [Catene basate su EVM](https://github.com/ethereum-lists/chains) _Repository di GitHub di metadati della catena che alimentano Chainlist._
## Letture consigliate {#further-reading}
diff --git a/public/content/translations/it/developers/docs/nodes-and-clients/index.md b/public/content/translations/it/developers/docs/nodes-and-clients/index.md
index ff20633a278..be6c4edd653 100644
--- a/public/content/translations/it/developers/docs/nodes-and-clients/index.md
+++ b/public/content/translations/it/developers/docs/nodes-and-clients/index.md
@@ -136,6 +136,7 @@ Questa tabella riepiloga i diversi client. Tutti superano i [test dei client](ht
| [Nethermind](http://nethermind.io/) | C#, .NET | Linux, Windows, macOS | Rete Principale, Sepolia, Goerli e altre | Snap (senza servire), Rapida, Completa | Archiviata, Tagliata |
| [Besu](https://besu.hyperledger.org/en/stable/) | Java | Linux, Windows, macOS | Rete Principale, Sepolia, Goerli e altre | Snap, Veloce, Completo | Archiviata, Tagliata |
| [Erigon](https://github.com/ledgerwatch/erigon) | Go | Linux, Windows, macOS | Rete Principale, Sepolia, Goerli e altre | Completa | Archiviata, Tagliata |
+| [Reth](https://github.com/paradigmxyz/reth) | Rust | Linux, Windows, macOS | Rete Principale, Sepolia, Goerli e altre | Completa | Archiviata, Tagliata |
Per ulteriori informazioni sulle reti supportate, consulta [reti Ethereum](/developers/docs/networks/).
diff --git a/public/content/translations/it/developers/docs/nodes-and-clients/run-a-node/index.md b/public/content/translations/it/developers/docs/nodes-and-clients/run-a-node/index.md
index 0d953e675b7..9755ca30db6 100644
--- a/public/content/translations/it/developers/docs/nodes-and-clients/run-a-node/index.md
+++ b/public/content/translations/it/developers/docs/nodes-and-clients/run-a-node/index.md
@@ -151,7 +151,7 @@ Ecco le pagine delle release dei client, in cui puoi trovare i loro binari preco
##### Client di esecuzione
- [Besu](https://github.com/hyperledger/besu/releases)
-- [Erigon](https://github.com/ledgerwatch/erigon#usage) (Non fornisce un binario precompilato, dev'essere compilato)
+- [Erigon](https://github.com/ledgerwatch/erigon/releases)
- [Geth](https://geth.ethereum.org/downloads/)
- [Nethermind](https://downloads.nethermind.io/)
diff --git a/public/content/translations/it/developers/docs/programming-languages/dart/index.md b/public/content/translations/it/developers/docs/programming-languages/dart/index.md
index 902c4ad9800..abe05656ddc 100644
--- a/public/content/translations/it/developers/docs/programming-languages/dart/index.md
+++ b/public/content/translations/it/developers/docs/programming-languages/dart/index.md
@@ -14,7 +14,7 @@ incomplete: true
2. Scrivere un contratto intelligente in [Solidity](https://soliditylang.org/)
3. Scrivere un'interfaccia utente su Dart
- [Creare una dapp Mobile con Flutter](https://medium.com/dash-community/building-a-mobile-dapp-with-flutter-be945c80315a) è molto più breve, il che potrebbe esser meglio se conosci già le basi
-- Se preferisci imparare guardando un video, puoi guardare [Build Your First Blockchain Flutter App](https://www.youtube.com/watch?v=3Eeh3pJ6PeA), (crea la tua prima App di Flutter della Blockchain) che dura circa un'ora
+- Se preferisci imparare guardando un video, puoi guardare [Build Your First Blockchain Flutter App](https://www.youtube.com/watch?v=3Eeh3pJ6PeA), lungo all'incirca un'ora
- Se sei impaziente, questo potrebbe fare al caso tuo [Building a Blockchain Decentralized-app with Flutter and Dart on Ethereum](https://www.youtube.com/watch?v=jaMFEOCq_1s) (Creare un'app decentralizzata sulla Blockchain con Flutter e Dart su Ethereum), che dura solo circa venti minuti
- [Integrare MetaMask nell'applicazione di Flutter](https://youtu.be/8qzVDje3IWk); questo breve video ti guida ai passaggi necessari per integrare MetaMask nelle tue applicazioni di Flutter
diff --git a/public/content/translations/it/developers/docs/programming-languages/java/index.md b/public/content/translations/it/developers/docs/programming-languages/java/index.md
index dcfa8429f65..00dedc3c443 100644
--- a/public/content/translations/it/developers/docs/programming-languages/java/index.md
+++ b/public/content/translations/it/developers/docs/programming-languages/java/index.md
@@ -4,7 +4,6 @@ description: Scopri come sviluppare per Ethereum usando progetti e strumenti bas
lang: it
incomplete: true
---
-
Scopri come sviluppare per Ethereum usando progetti e strumenti basati su Java
Usa Ethereum per creare applicazioni decentralizzate (dette "dapp") che sfruttano i vantaggi delle criptovalute e della tecnologia blockchain. Queste dapp sono attendibili perché, una volta "caricate" su Ethereum, vengono eseguite sempre come sono state programmate. Possono controllare risorse digitali per creare nuove tipologie di applicazioni finanziarie. Possono essere decentralizzate, il che significa che nessuna singola entità o persona le controlla e sono quasi impossibile da censurare.
@@ -31,7 +30,7 @@ Scopri come utilizzare [Web3J](https://github.com/web3j/web3j) e Hyperledger Bes
- [Ascoltare per Eventi del Contratto Intelligente di Ethereum](https://kauri.io/article/760f495423db42f988d17b8c145b0874/listening-for-ethereum-smart-contract-events-in-java)
- [Using Besu (Pantheon), the Java Ethereum Client with Linux](https://kauri.io/article/276dd27f1458443295eea58403fd6965/using-pantheon-the-java-ethereum-client-with-linux)
- [Running a Hyperledger Besu (Pantheon) Node in Java Integration Tests](https://kauri.io/article/7dc3ecc391e54f7b8cbf4e5fa0caf780/running-a-pantheon-node-in-java-integration-tests)
-- [Web3j Cheat Sheet]()
+- [Web3j Cheat Sheet](https://kauri.io/web3j-cheat-sheet-(java-ethereum)/5dfa1ea941ac3d0001ce1d90/c)
## Articoli di livello intermedio {#intermediate-articles}
diff --git a/public/content/translations/it/developers/docs/programming-languages/javascript/index.md b/public/content/translations/it/developers/docs/programming-languages/javascript/index.md
index e6e69f0248c..81a821658c4 100644
--- a/public/content/translations/it/developers/docs/programming-languages/javascript/index.md
+++ b/public/content/translations/it/developers/docs/programming-languages/javascript/index.md
@@ -32,7 +32,7 @@ Di più sui [contratti intelligenti](/developers/docs/smart-contracts/).
### La macchina virtuale Ethereum {#the-ethereum-virtual-machine}
-Esiste un'implementazione JavaScript della [macchina virtuale di Ethereum](/en/developers/docs/evm/), che supporta le regole più recenti relative alle diramazioni della rete. Le regole relative alle diramazioni si riferiscono alle modifiche apportate alla macchina virtuale di Ethereum (EVM) a seguito di upgrade pianificati.
+Esiste un'implementazione JavaScript della [macchina virtuale di Ethereum](/developers/docs/evm/), che supporta le regole più recenti relative alle diramazioni della rete. Le regole relative alle diramazioni si riferiscono alle modifiche apportate alla macchina virtuale di Ethereum (EVM) a seguito di upgrade pianificati.
È suddivisa in vari pacchetti JavaScript che puoi leggere per comprendere meglio:
diff --git a/public/content/translations/it/developers/docs/programming-languages/rust/index.md b/public/content/translations/it/developers/docs/programming-languages/rust/index.md
index 7ea4813dc79..a3b2aaeed07 100644
--- a/public/content/translations/it/developers/docs/programming-languages/rust/index.md
+++ b/public/content/translations/it/developers/docs/programming-languages/rust/index.md
@@ -25,8 +25,7 @@ Hai prima bisogno di nozioni di base? Dai un'occhiata a [ethereum.org/learn](/le
- [Choosing an Ethereum Client](https://www.trufflesuite.com/docs/truffle/reference/choosing-an-ethereum-client)
- [The Rust Ethereum Client](https://openethereum.github.io/) \* **Notare che OpenEthereum [è ormai superato](https://medium.com/openethereum/gnosis-joins-erigon-formerly-turbo-geth-to-release-next-gen-ethereum-client-c6708dd06dd) e non viene più mantenuto.** Usalo con cautela e preferibilmente passa a un'altra implementazione client.
- [Sending Transaction to Ethereum Using Rust](https://kauri.io/#collections/A%20Hackathon%20Survival%20Guide/sending-ethereum-transactions-with-rust/)
-- [Un'Introduzione ai Contratti Intelligenti con il Client di Ethereum Parity](https://wiki.parity.io/Smart-Contracts)
-- [Una guida passo-passo su come scrivere un contratto in rust Wasm per Kovan](https://github.com/paritytech/pwasm-tutorial)
+- [Tutorial passo-passo per scrivere contratti in rust Wasm per Kovan (in inglese)](https://github.com/paritytech/pwasm-tutorial)
## Articoli di livello intermedio {#intermediate-articles}
@@ -36,7 +35,6 @@ Hai prima bisogno di nozioni di base? Dai un'occhiata a [ethereum.org/learn](/le
- [Creare una chat decentralizzata usando JavaScript e Rust (in inglese)](https://medium.com/perlin-network/build-a-decentralized-chat-using-javascript-rust-webassembly-c775f8484b52)
- [Creare un'app decentralizzata Todo usando Vue.js e Rust (in inglese)](https://medium.com/@jjmace01/build-a-decentralized-todo-app-using-vue-js-rust-webassembly-5381a1895beb)
-- [Introduzione ai contratti segreti (in inglese)](https://blog.enigma.co/getting-started-with-enigma-an-intro-to-secret-contracts-cdba4fe501c2)
- [Costruisci una blockchain in Rust](https://blog.logrocket.com/how-to-build-a-blockchain-in-rust/)
## Progetti e strumenti di Rust {#rust-projects-and-tools}
diff --git a/public/content/translations/it/developers/docs/scaling/validium/index.md b/public/content/translations/it/developers/docs/scaling/validium/index.md
index 57e324d0a37..64cd330b8fd 100644
--- a/public/content/translations/it/developers/docs/scaling/validium/index.md
+++ b/public/content/translations/it/developers/docs/scaling/validium/index.md
@@ -153,7 +153,7 @@ Diversi progetti forniscono implementazioni di validium e volizioni che puoi int
**Matter Labs zkPorter**- _zkPorter è un protocollo di ridimensionamento del Livello 2 che affronta la disponibilità dei dati con un approccio ibrido che combina le idee dei rollup Zk e dello sharding. Può supportare arbitrariamente molti shard, ognuno con la propria politica di disponibilità dei dati._
-- [Documentazione](https://docs.zksync.io/zkevm/#what-is-zkporter)
+- [Documentazione](https://docs.zksync.io/zk-stack/concepts/hyperchains-hyperscaling.html#logical-state-partitions-in-zk-porters)
- [Sito web](https://zksync.io/)
## Letture consigliate {#further-reading}
diff --git a/public/content/translations/it/developers/docs/scaling/zk-rollups/index.md b/public/content/translations/it/developers/docs/scaling/zk-rollups/index.md
index 148bbb485aa..db7c0ea8508 100644
--- a/public/content/translations/it/developers/docs/scaling/zk-rollups/index.md
+++ b/public/content/translations/it/developers/docs/scaling/zk-rollups/index.md
@@ -30,7 +30,7 @@ L'architettura principale del rollup ZK si compone dei seguenti componenti:
2. **Macchina virtuale (VM) off-chain**: benché il protocollo del rollup ZK risieda su Ethereum, l'esecuzione della transazione e l'archiviazione di stato si verificano su una macchina virtuale separata e indipendente dall'[EVM](/developers/docs/evm/). Questa VM off-chain è l'ambiente di esecuzione per le transazioni sul rollup ZK e serve da livello secondario o "livello 2" per il protocollo rollup ZK. Le prove di validità verificate sulla Rete principale di Ethereum garantiscono la correttezza delle transizioni di stato nella VM off-chain.
-I rollup ZK sono "soluzioni di ridimensionamento ibride": protocolli off-chain che operano indipendentemente ma derivano la sicurezza da Ethereum. Nello specifico, la rete di Ethereum impone la validità degli aggiornamenti di stato sul rollup ZK e garantisce la disponibilità dei dati dietro ogni aggiornamento allo stato del rollup. Di conseguenza, i rollup ZK sono considerevolmente più sicuri delle soluzioni di ridimensionamento off-chain, come le [sidechain](/developers/docs/scaling/sidechains/), responsabili delle proprie proprietà di sicurezza, o i [validium](/developers/docs/scaling/validiums/), che pur verificando le transazioni su Ethereum con le prove di validità, memorizzano altrove i dati della transazione.
+I rollup ZK sono "soluzioni di ridimensionamento ibride": protocolli off-chain che operano indipendentemente ma derivano la sicurezza da Ethereum. Nello specifico, la rete di Ethereum impone la validità degli aggiornamenti di stato sul rollup ZK e garantisce la disponibilità dei dati dietro ogni aggiornamento allo stato del rollup. Di conseguenza, i rollup ZK sono considerevolmente più sicuri delle soluzioni di ridimensionamento off-chain, come le [sidechain](/developers/docs/scaling/sidechains/), responsabili delle proprie proprietà di sicurezza, o i [validium](/developers/docs/scaling/validium/), che pur verificando le transazioni su Ethereum con le prove di validità, memorizzano altrove i dati della transazione.
I rollup ZK si affidano al protocollo principale di Ethereum per quanto segue:
diff --git a/public/content/translations/it/developers/docs/standards/index.md b/public/content/translations/it/developers/docs/standards/index.md
index 971d7f2a64d..dee7af5aa10 100644
--- a/public/content/translations/it/developers/docs/standards/index.md
+++ b/public/content/translations/it/developers/docs/standards/index.md
@@ -18,7 +18,7 @@ Normalmente, gli standard vengono introdotti come [proposte di miglioramento di
- [Introduzione alla Governance di Ethereum](/governance/)
- [Ethereum Governance Overview](https://web.archive.org/web/20201107234050/https://blog.bmannconsulting.com/ethereum-governance/) _March 31, 2019 - Boris Mann_
- [Ethereum Protocol Development Governance and Network Upgrade Coordination](https://hudsonjameson.com/2020-03-23-ethereum-protocol-development-governance-and-network-upgrade-coordination/) _March 23, 2020 - Hudson Jameson_
-- [Playlist of all Ethereum Core Dev Meetings](https://www.youtube.com/playlist?list=PLaM7G4Llrb7zfMXCZVEXEABT8OSnd4-7w) _(YouTube Playlist)_
+- [Playlist of all Ethereum Core Dev Meetings](https://www.youtube.com/@EthereumProtocol) _(YouTube Playlist)_
## Tipi di standard {#types-of-standards}
diff --git a/public/content/translations/it/developers/docs/storage/index.md b/public/content/translations/it/developers/docs/storage/index.md
index fb6351ad3ae..7ddd28e9802 100644
--- a/public/content/translations/it/developers/docs/storage/index.md
+++ b/public/content/translations/it/developers/docs/storage/index.md
@@ -154,7 +154,7 @@ Basata sul proof-of-stake:
- [Crust.network](https://crust.network)
- [Documentazione](https://wiki.crust.network)
-- [Github](https://github.com/crustio)
+- [GitHub](https://github.com/crustio)
**Swarm - _Una piattaforma di archiviazione distribuita e un servizio di distribuzione di contenuti per lo stack web3 di Ethereum._**
diff --git a/public/content/translations/it/developers/docs/transactions/index.md b/public/content/translations/it/developers/docs/transactions/index.md
index 426aa0d3827..fc3045799a6 100644
--- a/public/content/translations/it/developers/docs/transactions/index.md
+++ b/public/content/translations/it/developers/docs/transactions/index.md
@@ -1,6 +1,6 @@
---
title: Transazioni
-description: "Panoramica sulle transazioni Ethereum: come funzionano, struttura dati e come inviarle tramite un'applicazione."
+description: 'Panoramica sulle transazioni Ethereum: come funzionano, struttura dati e come inviarle tramite un''applicazione.'
lang: it
---
diff --git a/public/content/translations/it/developers/tutorials/a-developers-guide-to-ethereum-part-one/index.md b/public/content/translations/it/developers/tutorials/a-developers-guide-to-ethereum-part-one/index.md
index 1bdcb77dd42..5141e16c50f 100644
--- a/public/content/translations/it/developers/tutorials/a-developers-guide-to-ethereum-part-one/index.md
+++ b/public/content/translations/it/developers/tutorials/a-developers-guide-to-ethereum-part-one/index.md
@@ -182,7 +182,7 @@ Ora sei pronto a navigare sulla catena! In realtà non si dice così, l'ho inven
Per prima cosa, un bel sanity check:
```python
-In [5]: w3.isConnected()
+In [5]: w3.is_connected()
Out[5]: True
```
diff --git a/public/content/translations/it/developers/tutorials/how-to-mint-an-nft/index.md b/public/content/translations/it/developers/tutorials/how-to-mint-an-nft/index.md
index cb74c68b016..e2bddee083d 100644
--- a/public/content/translations/it/developers/tutorials/how-to-mint-an-nft/index.md
+++ b/public/content/translations/it/developers/tutorials/how-to-mint-an-nft/index.md
@@ -14,7 +14,7 @@ published: 2021-04-22
[Beeple](https://www.nytimes.com/2021/03/11/arts/design/nft-auction-christies-beeple.html): $69 milioni [3LAU](https://www.forbes.com/sites/abrambrown/2021/03/03/3lau-nft-nonfungible-tokens-justin-blau/?sh=5f72ef64643b): $11 milioni [Grimes](https://www.theguardian.com/music/2021/mar/02/grimes-sells-digital-art-collection-non-fungible-tokens): $6 milioni
-Tutti hanno coniato i propri NFT usando la potente API di Alchemy. In questo tutorial ti insegneremo come fare lo stesso in meno di 10 minuti.
+Tutti loro hanno coniato i propri NFT utilizzando la potente API di Alchemy. In questo tutorial ti insegneremo come fare lo stesso in meno di 10 minuti.
"Coniare un NFT" è l'atto di pubblicare un'istanza unica del tuo token ERC-721 sulla blockchain. Usando il nostro contratto intelligente dalla [Parte 1 di questa serie di tutorial sugli NFT](/developers/tutorials/how-to-write-and-deploy-an-nft/), dimostriamo le nostre abilità di Web3 e coniamo un NFT. Alla fine di questo tutorial, potrai coniare tutti gli NFT che desideri (e che può permettersi il tuo portafoglio)!
@@ -325,6 +325,6 @@ Vai quindi alla tua [mempool di Alchemy](https://dashboard.alchemyapi.io/mempool
Ecco fatto! Hai ora distribuito E coniato con un NFT sulla Blockchain di Ethereum
-Usando `mint-nft.js` puoi coniare tutti gli NFT che desideri (e che può permettersi il tuo portafoglio)! Basta che ti accerti di passare un nuovo tokenURI che descriva i metadati dell'NFT (altrimenti, finirai per crearne tanti identici con ID differenti).
+Utilizzando `mint-nft.js`, puoi coniare quanti NFT il tuo cuore, e portafoglio, desiderino! Basta che ti accerti di passare un nuovo tokenURI che descriva i metadati dell'NFT (altrimenti, finirai per crearne tanti identici con ID differenti).
Molto probabilmente vorrai visualizzare il tuo NFT nel tuo portafoglio, quindi assicurati di leggere la [Parte 3: come visualizzare il tuo NFT nel portafoglio](/developers/tutorials/how-to-view-nft-in-metamask/)!
diff --git a/public/content/translations/it/developers/tutorials/nft-minter/index.md b/public/content/translations/it/developers/tutorials/nft-minter/index.md
index 662d91736a9..d6392b874ea 100644
--- a/public/content/translations/it/developers/tutorials/nft-minter/index.md
+++ b/public/content/translations/it/developers/tutorials/nft-minter/index.md
@@ -195,7 +195,7 @@ Se vai al file `App.js`, che è il componente principale su React e che agisce c
Ora che ci è chiaro con cosa stiamo lavorando, configuriamo il portafoglio di Ethereum!
-## : Configura il tuo portafoglio di Ethereum {#set-up-your-ethereum-wallet}
+## Configura il tuo wallet Ethereum {#set-up-your-ethereum-wallet}
Per poter interagire con il tuo smart contract, gli utenti dovranno connettere il proprio portafoglio di Ethereum alla tua dapp.
diff --git a/public/content/translations/it/developers/tutorials/reverse-engineering-a-contract/index.md b/public/content/translations/it/developers/tutorials/reverse-engineering-a-contract/index.md
index 8634b5b7524..8c5929fa710 100644
--- a/public/content/translations/it/developers/tutorials/reverse-engineering-a-contract/index.md
+++ b/public/content/translations/it/developers/tutorials/reverse-engineering-a-contract/index.md
@@ -276,7 +276,7 @@ Se la dimensione dei dati della chiamata è di quattro byte o superiore, potrebb
| 10 | PUSH1 0xe0 | 0xE0 (((Prima parola (256 bit) dei dati della chiamata))) |
| 12 | SHR | (((primi 32 bit (4 byte) dei dati della chiamata))) |
-Etherscan ci dice che `1C` è un opcode sconosciuto, perché [è stato aggiunto dopo che Etherscan aveva scritto questa funzionalità](https://eips.ethereum.org/EIPS/eip-145) e non l'ha aggiornata. Una [tabella degli opcode aggiornata](https://github.com/wolflo/evm-opcodes) ci indica che questo è lo spostamento a destra
+Etherscan ci dice che `1C` è un opcode sconosciuto, perché [è stato aggiunto dopo che Etherscan aveva scritto questa funzionalità](https://eips.ethereum.org/EIPS/eip-145) e non l'ha aggiornata. An [up to date opcode table](https://github.com/wolflo/evm-opcodes) shows us that this is shift right
| Offset | Opcode | Stack |
| -----: | ---------------- | ------------------------------------------------------------------------------------------------------------------ |
diff --git a/public/content/translations/it/developers/tutorials/run-light-node-geth/index.md b/public/content/translations/it/developers/tutorials/run-light-node-geth/index.md
deleted file mode 100644
index 85baf203afa..00000000000
--- a/public/content/translations/it/developers/tutorials/run-light-node-geth/index.md
+++ /dev/null
@@ -1,104 +0,0 @@
----
-title: Come eseguire un nodo leggero con Geth
-description: Come scaricare, installare ed eseguire un client leggero con Geth.
-authors: "Brian Gu"
-tags:
- - "client"
- - "nodi"
-skill: beginner
-lang: it
-published: 2022-03-04
----
-
-Se ti interessa eseguire un [nodo Ethereum](/developers/docs/nodes-and-clients/), uno dei modi più facili è scaricare, installare ed eseguire Geth. Con Geth, possiamo ottenere un nodo leggero attivo in pochi minuti.
-
-Un client leggero richiede meno di 400MB d'archiviazione, pur consentendo la piena interattività con lo stato di Ethereum. I client leggeri recuperano i dati dai peer remoti, quindi alcune interrogazioni potrebbero richiedere un più di tempo per la risposta rispetto ad altre modalità di sincronizzazione.
-
-Per una spiegazione delle differenze tra le diverse modalità di sincronizzazione, leggi la nostra [documentazione per sviluppatori di nodi e client](/developers/docs/nodes-and-clients/#node-types).
-
-## Installa ed esegui {#install-and-run}
-
-Innanzitutto occorre [installare Geth](https://geth.ethereum.org/docs/install-and-build/installing-geth).
-
-Dopo aver installato Geth, puoi eseguire un nodo di Ethereum in modalità "light" eseguendo il seguente comando in una finestra del Terminale:
-
-```bash
-geth --syncmode light
-```
-
-Una volta avviato, Geth inizia a connettersi ad altri nodi su Ethereum, noti come "peer". Il processo di connessione ai peer potrebbe richiedere un po' di tempo.
-
-Quando il tuo nodo di Geth ha abbastanza peer, importerà le intestazioni dai nuovi blocchi sulla catena.
-
-Quando le intestazioni del nuovo blocco non avranno più una "età", Geth sarà sincronizzato all'inizio della catena.
-
-## Arrestare e riavviare il nodo {#stopping-and-restarting-your-node}
-
-Puoi interrompere il tuo nodo quando vuoi premendo CTRL+C.
-
-Riavviando il nodo, Geth impiegherà qualche minuto per scaricare le intestazioni del blocco create dall'ultima esecuzione del nodo.
-
-## Abilita il server HTTP-RPC {#enable-the-http-rpc-server}
-
-Abilitare il server HTTP-RPC ti consente di connettere il tuo nodo di Ethereum ad altri software come portafogli, estensioni del browser o librerie software personalizzate.
-
-Puoi abilitare il server HTTP-RPC eseguendo il seguente comando al lancio di Geth:
-
-```bash
-geth --syncmode light --http
-```
-
-Una volta abilitato, esegui `curl http://127.0.0.1:8545`. Non dovresti ricevere alcun errore.
-
-### Consenti le connessioni remote {#allow-remote-connections}
-
-Per consentire a host remoti di connettersi al tuo nodo, avvia Geth con il seguente comando:
-
-```
-geth --syncmode light --http --http.addr 0.0.0.0
-```
-
-Nota: questo presuppone che non ci sia alcun processo che blocca le richieste al tuo host locale, come ad esempio un firewall.
-
-## Console JavaScript di Geth {#geth-javascript-console}
-
-Geth ha una console JavaScript integrata e un'APi JavaScript chiamata [web3js](https://github.com/ethereum/web3.js/), che puoi usare per interagire col tuo nodo.
-
-Per usare la console JavaScript, esegui:
-
-```bash
-geth attach
-```
-
-Questa console consente di interagire direttamente con Ethereum. Ad esempio, eseguendo il comando `eth.blockNumber` si otterrà il numero dell'ultimo blocco noto.
-
-[Documentazione completa di web3js](http://web3js.readthedocs.io/)
-
-## Rete principale e reti di prova {#mainnet-and-testnets}
-
-Geth esegue di default il tuo nodo sulla [Rete principale di Ethereum](/glossary/#mainnet/).
-
-Puoi anche usare Geth per eseguire un nodo su una delle [reti di prova pubbliche](/networks/#testnets/), eseguendo uno dei seguenti comandi nel Terminale:
-
-```bash
-geth --syncmode light --ropsten
-geth --syncmode light --rinkeby
-geth --syncmode light --goerli
-```
-
-## Dove sono memorizzati i dati della blockchain e dell'EVM? {#where-is-the-blockchain-and-evm-data-stored}
-
-La directory che Geth usa per memorizzare i dati grezzi della blockchain dipende dal sistema operativo. Dopo aver eseguito Geth, cerca un messaggio simile a questo:
-
-```bash
-INFO [11-18|14:04:47] Allocated cache and file handles database=/Users/bgu/Library/Ethereum/testnet/geth/lightchaindata cache=768 handles=128
-```
-
-Il percorso dopo `"database="` dovrebbe indicare dove sono memorizzati i dati della blockchain sul computer locale. Se esegui un nodo completo, questa directory conterrà tutti i dati su ogni blocco salvato nella blockchain. Poiché noi eseguiamo un nodo leggero, questa directory contiene solo le intestazioni dei blocchi.
-
-Vale la pena ribadire che, al livello più basso, questo percorso è la posizione in cui si trova la blockchain. I contenuti completi della blockchain e dello stato dell'EVM sono memorizzati in ogni nodo completo nella rete di Ethereum, in directory che somigliano molto a quella presente sul tuo computer.
-
-## Letture consigliate {#further-reading}
-
-- [Scopri di più sulle diverse reti](/developers/docs/networks/).
-- [Eseguire un nodo di Ethereum](/run-a-node/)
diff --git a/public/content/translations/it/developers/tutorials/run-node-raspberry-pi/index.md b/public/content/translations/it/developers/tutorials/run-node-raspberry-pi/index.md
index 6d2cd9f5bdf..50ad859e9e1 100644
--- a/public/content/translations/it/developers/tutorials/run-node-raspberry-pi/index.md
+++ b/public/content/translations/it/developers/tutorials/run-node-raspberry-pi/index.md
@@ -123,7 +123,7 @@ sudo journalctl -u lighthouse-beacon
Si noti che il client di consenso si sincronizzerà in pochi minuti perché utilizza la sincronizzazione dei checkpoint. Il client di esecuzione richiederà più tempo, potenzialmente diverse ore, e si avvierà quando il client di consenso avrà già terminato la sincronizzazione (questo perché il client di esecuzione ha bisogno di un obiettivo per la sincronizzazione fornito dal client di consenso).
-Con i servizi Geth e Lighthouse in esecuzione e sincronizzati, il tuo Raspberry Pi è ora un nodo Ethereum! È più comune interagire con la rete Ethereum utilizzando la console Javascript di Geth, che può essere collegata al client Geth sulla porta 8545. È anche possibile inviare comandi formattati come oggetti JSON utilizzando uno strumento di richiesta come Curl. Maggiori informazioni nella [documentazione di Geth](https://geth.ethereum.org).
+Con i servizi Geth e Lighthouse in esecuzione e sincronizzati, il tuo Raspberry Pi è ora un nodo Ethereum! È più comune interagire con la rete Ethereum utilizzando la console Javascript di Geth, che può essere collegata al client Geth sulla porta 8545. È anche possibile inviare comandi formattati come oggetti JSON utilizzando uno strumento di richiesta come Curl. Maggiori informazioni nella [documentazione di Geth](https://geth.ethereum.org/).
Geth è preconfigurato per segnalare le metriche a un pannello Grafana che può essere visualizzato nel browser. Gli utenti più avanzati potrebbero voler utilizzare questa funzione per monitorare lo stato di salute del loro nodo accedendo a `ipaddress:3000` con nome `utente: admin` e `passwd: ethereum`.
diff --git a/public/content/translations/it/developers/tutorials/sending-tokens-using-ethersjs/index.md b/public/content/translations/it/developers/tutorials/send-token-etherjs/index.md
similarity index 96%
rename from public/content/translations/it/developers/tutorials/sending-tokens-using-ethersjs/index.md
rename to public/content/translations/it/developers/tutorials/send-token-etherjs/index.md
index 0f9979626fc..2041f8e2e15 100644
--- a/public/content/translations/it/developers/tutorials/sending-tokens-using-ethersjs/index.md
+++ b/public/content/translations/it/developers/tutorials/send-token-etherjs/index.md
@@ -17,7 +17,7 @@ published: 2021-04-06
- Importare ethers.js
- Trasferire token
-- Impostare il prezzo del gas in base alla situazione del traffico di rete
+- Imposta il prezzo del gas a seconda della situazione del traffico di rete
### Per iniziare {#to-get-started}
@@ -68,7 +68,7 @@ ES3(UMD) nel browser
Connettiti alla rete di prova di Ropsten
```javascript
-window.provider = new InfuraProvider("ropsten")
+window.ethersProvider = new ethers.providers.InfuraProvider("ropsten")
```
### 2. Crea il portafoglio {#create-wallet}
@@ -95,7 +95,7 @@ Queste variabili definite di seguito dipendono da `send_token()`
### Parametri della transazione {#transaction-params}
-1. **`send_account`**: indirizzo del mittente del token
+1. **`send_account`**: L'indirizzo del mittente del token
2. **`to_address`**: indirizzo del destinatario del token
3. **`send_token_amount`**: l'importo di token da inviare
4. **`gas_limit`**: limite di gas
diff --git a/public/content/translations/it/developers/tutorials/the-graph-fixing-web3-data-querying/index.md b/public/content/translations/it/developers/tutorials/the-graph-fixing-web3-data-querying/index.md
index f2a888b1c87..4abddb85660 100644
--- a/public/content/translations/it/developers/tutorials/the-graph-fixing-web3-data-querying/index.md
+++ b/public/content/translations/it/developers/tutorials/the-graph-fixing-web3-data-querying/index.md
@@ -167,7 +167,7 @@ Lo schema è la definizione dei dati di GraphQL. Ti consentirà di definire qual
- BigInt
- BigDecimal
-Puoi anche usare le entità come tipo per definire le relazioni. Nel nostro esempio definiamo una relazione 1 a tanti dal giocatore alle scommesse. Il punto esclamativo ! significa che il valore non può essere vuoto. La documentazione completa può essere consultata [qui](https://thegraph.com/docs/define-a-subgraph#the-graphql-schema).
+Puoi anche usare le entità come tipo per definire le relazioni. Nel nostro esempio definiamo una relazione 1 a tanti dal giocatore alle scommesse. Il punto esclamativo ! significa che il valore non può essere vuoto. La documentazione completa può essere consultata [qui](https://thegraph.com/docs/en/developing/creating-a-subgraph/#the-subgraph-manifest).
```graphql
type Bet @entity {
@@ -196,7 +196,7 @@ Poi creiamo una nuova entità Bet. L'id sarà `event.transaction.hash.toHex() +
Infine possiamo aggiornare l'entità Player con tutti i dati. Non è possibile eseguire direttamente il push degli array, bensì devono essere aggiornati come indicato qui. Usiamo l'id per fare riferimento alla scommessa. E occorre aggiungere `.save()` alla fine per memorizzare un'entità.
-La documentazione completa è consultabile qui: https://thegraph.com/docs/define-a-subgraph#writing-mappings. Puoi anche aggiungere l'output di registrazione al file di mapping, vedi [qui](https://thegraph.com/docs/assemblyscript-api#api-reference).
+La documentazione completa può essere consultata qui: https://thegraph.com/docs/en/developing/creating-a-subgraph/#writing-mappings. Puoi anche aggiungere l'output di registrazione al file di mapping, vedi [qui](https://thegraph.com/docs/assemblyscript-api#api-reference).
```typescript
import { Bet, Player } from "../generated/schema"
@@ -293,24 +293,21 @@ Ma ci manca l'ultimo pezzo del puzzle: il server. Puoi eseguirlo personalmente o
### Graph Explorer: il servizio ospitato {#graph-explorer-the-hosted-service}
-Il modo più semplice è usare il servizio di hosting. Segui le istruzioni [qui](https://thegraph.com/docs/deploy-a-subgraph) per distribuire un subgraph. Per molti progetti è possibile trovare i sottografi esistenti [nell'esploratore](https://thegraph.com/explorer/).
+Il modo più semplice è usare il servizio di hosting. Segui le istruzioni [qui](https://thegraph.com/docs/en/deploying/deploying-a-subgraph-to-hosted/) per distribuire un subgraph. Per molti progetti è possibile trovare i sottografi esistenti [nell'esploratore](https://thegraph.com/explorer/).
![Explorer di The Graph](./thegraph-explorer.png)
### Esecuzione di un nodo personalizzato {#running-your-own-node}
-In alternativa, può eseguire il suo nodo personale. Documenti [qui](https://github.com/graphprotocol/graph-node#quick-start). Un motivo per farlo potrebbe essere l'uso di una rete non supportata dal servizio di hosting. Sono correntemente supportate Mainnet, Kovan, Rinkeby, Ropsten, Goerli, PoA-Core, xDAI e Sokol.
+In alternativa, può eseguire il suo nodo personale. Documenti [qui](https://github.com/graphprotocol/graph-node#quick-start). Un motivo per farlo potrebbe essere l'uso di una rete non supportata dal servizio di hosting. Le reti attualmente supportate [possono essere trovate qui](https://thegraph.com/docs/en/developing/supported-networks/).
## Il futuro decentralizzato {#the-decentralized-future}
-GraphQL supporta i flussi e anche nuovi eventi in ingresso che non sono ancora supportati completamente da The Graph, ma saranno presto rilasciati.
+GraphQL supporta i flussi e anche nuovi eventi in ingresso Queste sono supportate su The Graph [Substreams](https://thegraph.com/docs/en/substreams/) che è attualmente in fase open beta.
-Un aspetto ancora mancante è la decentralizzazione. The Graph ha piani futuri per diventare un protocollo completamente decentralizzato. Di seguito sono elencati due ottimi articoli che spiegano il piano in modo più dettagliato:
-
-- https://thegraph.com/blog/the-graph-network-in-depth-part-1
-- https://thegraph.com/blog/the-graph-network-in-depth-part-2
+Nel [2021](https://thegraph.com/blog/mainnet-migration/) The Graph ha iniziato la sua transizione per diventare una rete di indicizzazione decentralizzata. Puoi leggere di più sull'architettura di questa rete di indicizzazione decentralizzata [qui](https://thegraph.com/docs/en/network/explorer/).
Due aspetti chiave sono:
-1. Gli utenti pagheranno gli indicizzatori per le query.
-2. Gli indicizzatori saranno token di Graph (GRT) in staking.
+1. Gli utenti pagano gli indicizzatori per le query.
+2. Gli indicizzatori faranno staking di Graph Token (GRT).
diff --git a/public/content/translations/it/developers/tutorials/uniswap-v2-annotated-code/index.md b/public/content/translations/it/developers/tutorials/uniswap-v2-annotated-code/index.md
index 3a19781a424..2728bceb25f 100644
--- a/public/content/translations/it/developers/tutorials/uniswap-v2-annotated-code/index.md
+++ b/public/content/translations/it/developers/tutorials/uniswap-v2-annotated-code/index.md
@@ -202,13 +202,13 @@ Il modo in cui lo scambio in pari decide sul tasso di cambio tra token0 e token1
Ecco un semplice esempio. Nota che, per semplicità, la tabella contiene solo tre cifre dopo il punto decimale e ignoriamo la commissione di trading dello 0,3%, quindi i numeri non sono esatti.
| Evento | reserve0 | reserve1 | reserve0 \* reserve1 | Tasso di cambio medio (token1/token0) |
-| --------------------------------------------- | --------: | --------: | -------------------: | ------------------------------------- |
-| Configurazione iniziale | 1.000,000 | 1.000,000 | 1.000.000 | |
-| Trader A scambia 50 token0 per 47,619 token1 | 1.050,000 | 952,381 | 1.000.000 | 0,952 |
-| Trader B scambia 10 token0 per 8,984 token1 | 1.060,000 | 943,396 | 1.000.000 | 0,898 |
-| Trader C scambia 40 token0 per 34,305 token1 | 1.100,000 | 909,090 | 1.000.000 | 0,858 |
-| Trader D scambia 100 token1 per 109,01 token0 | 990,990 | 1.009,090 | 1.000.000 | 0,917 |
-| Trader E scambia 10 token0 per 10,079 token1 | 1.000,990 | 999,010 | 1.000.000 | 1,008 |
+| --------------------------------------------- | ---------:| ---------:| ----------------------:| ------------------------------------- |
+| Configurazione iniziale | 1.000,000 | 1.000,000 | 1.000.000 | |
+| Trader A scambia 50 token0 per 47,619 token1 | 1.050,000 | 952,381 | 1.000.000 | 0,952 |
+| Trader B scambia 10 token0 per 8,984 token1 | 1.060,000 | 943,396 | 1.000.000 | 0,898 |
+| Trader C scambia 40 token0 per 34,305 token1 | 1.100,000 | 909,090 | 1.000.000 | 0,858 |
+| Trader D scambia 100 token1 per 109,01 token0 | 990,990 | 1.009,090 | 1.000.000 | 0,917 |
+| Trader E scambia 10 token0 per 10,079 token1 | 1.000,990 | 999,010 | 1.000.000 | 1,008 |
Man mano che i trader forniscono più token0, il valore relativo di token1 aumenta, e viceversa, in basel all'offerta e alla domanda.
@@ -362,12 +362,12 @@ Se il tempo trascorso è diverso da zero, significa che la nostra è la prima tr
}
```
-Ogni accumulatore di costo è aggiornato con l'ultimo costo (riserva dell'altro token/riserva di questo token), moltiplicato per il tempo passato in secondi. Per ottenere un prezzo medio, leggi il prezzo cumulativo che è due punti nel tempo e dividi per la differenza temporale tra essi. Ad esempio, supponiamo questa sequenza di eventi:
+Ogni accumulatore di costo è aggiornato con l'ultimo costo (riserva dell'altro token/riserva di questo token), moltiplicato per il tempo passato in secondi. Per avere un prezzo medio, si prende il prezzo cumulativo in due punti nel tempo e si divide per la differenza di tempo tra questi. Ad esempio, supponiamo questa sequenza di eventi:
-| Evento | reserve0 | reserve1 | marca oraria | Tasso di cambio marginale (reserve1/reserve0) | price0CumulativeLast |
-| ---------------------------------------------------- | --------: | --------: | ------------ | --------------------------------------------: | -------------------------: |
-| Configurazione iniziale | 1.000,000 | 1.000,000 | 5.000 | 1,000 | 0 |
-| Trader A deposita 50 token0 e ottiene 47,619 token1 | 1.050,000 | 952,381 | 5.020 | 0,907 | 20 |
+| Evento | reserve0 | reserve1 | marca oraria | Tasso di cambio marginale (reserve1/reserve0) | price0CumulativeLast |
+| ---------------------------------------------------- | ---------:| ---------:| ------------ | ---------------------------------------------:| ----------------------------:|
+| Configurazione iniziale | 1.000,000 | 1.000,000 | 5.000 | 1,000 | 0 |
+| Trader A deposita 50 token0 e ottiene 47,619 token1 | 1.050,000 | 952,381 | 5.020 | 0,907 | 20 |
| Trader B deposita 10 token0 e ottiene 8,984 token1 | 1.060,000 | 943,396 | 5.030 | 0,890 | 20+10\*0,907 = 29,07 |
| Trader C deposita 40 token0 e ottiene 34,305 token1 | 1.100,000 | 909,090 | 5.100 | 0,826 | 29,07+70\*0,890 = 91,37 |
| Trader D deposita 100 token0 e ottiene 109,01 token1 | 990,990 | 1.009,090 | 5.110 | 1,018 | 91,37+10\*0,826 = 99,63 |
@@ -499,9 +499,9 @@ Al momento del primo deposito non conosciamo il valore relativo dei due token, q
Possiamo fidarci perché è nell'interesse del depositante fornire un valore pari, così da evitare di perdere valore all'arbitraggio. Diciamo che il valore dei due token è identico, ma il nostro depositante ha depositato una quantità di **Token1** quattro volte superiore rispetto a quella di **Token0**. Un trader può avvalersi del fatto che lo scambio in pari pensi che **Token0** sia più prezioso per ricavarne valore.
| Evento | reserve0 | reserve1 | reserve0 \* reserve1 | Valore del pool (reserve0 + reserve1) |
-| ------------------------------------------------------------- | -------: | -------: | -------------------: | ------------------------------------: |
-| Configurazione iniziale | 8 | 32 | 256 | 40 |
-| Il trader deposita 8 token **Token0** e ottiene 16 **Token1** | 16 | 16 | 256 | 32 |
+| ------------------------------------------------------------- | --------:| --------:| ----------------------:| -------------------------------------:|
+| Configurazione iniziale | 8 | 32 | 256 | 40 |
+| Il trader deposita 8 token **Token0** e ottiene 16 **Token1** | 16 | 16 | 256 | 32 |
Come puoi vedere, il trader ha guadagnato 8 token extra, che provengono da una riduzione nel valore del pool, danneggiando il depositante che li possiede.
@@ -515,12 +515,12 @@ A ogni deposito successivo, conosciamo già il tasso di cambio tra le due risors
Sia nel deposito iniziale sia in uno successivo, il numero di token di liquidità che forniamo è pari alla radice quadrata del cambio in `reserve0*reserve1` e il valore del token di liquidità non cambia (a meno che non otteniamo un deposito che non ha valori pari di entrambi i tipi, nel qual caso viene distribuita la "multa"). Ecco un altro esempio con due token aventi lo stesso valore, con tre depositi validi e uno non valido (deposito di solo un tipo di token, quindi non produce alcun token di liquidità).
| Evento | reserve0 | reserve1 | reserve0 \* reserve1 | Valore del pool (reserve0 + reserve1) | Token di liquidità coniati per questo deposito | Token di liquidità totali | Valore di ciascun token di liquidità |
-| --------------------------- | -------: | -------: | -------------------: | ------------------------------------: | ---------------------------------------------: | ------------------------: | -----------------------------------: |
-| Configurazione iniziale | 8,000 | 8,000 | 64 | 16,000 | 8 | 8 | 2,000 |
-| Deposita quattro per tipo | 12,000 | 12,000 | 144 | 24,000 | 4 | 12 | 2,000 |
-| Deposita due per tipo | 14,000 | 14,000 | 196 | 28,000 | 2 | 14 | 2,000 |
-| Deposito di valore non pari | 18,000 | 14,000 | 252 | 32,000 | 0 | 14 | ~2,286 |
-| Dopo l'arbitraggio | ~15,874 | ~15,874 | 252 | ~31,748 | 0 | 14 | ~2,267 |
+| --------------------------- | --------:| --------:| ----------------------:| -------------------------------------:| ----------------------------------------------:| -------------------------:| ------------------------------------:|
+| Configurazione iniziale | 8,000 | 8,000 | 64 | 16,000 | 8 | 8 | 2,000 |
+| Deposita quattro per tipo | 12,000 | 12,000 | 144 | 24,000 | 4 | 12 | 2,000 |
+| Deposita due per tipo | 14,000 | 14,000 | 196 | 28,000 | 2 | 14 | 2,000 |
+| Deposito di valore non pari | 18,000 | 14,000 | 252 | 32,000 | 0 | 14 | ~2,286 |
+| Dopo l'arbitraggio | ~15,874 | ~15,874 | 252 | ~31,748 | 0 | 14 | ~2,267 |
```solidity
}
@@ -743,7 +743,7 @@ Questa è la funzione principale della factory, per creare uno scambio in pari t
(address token0, address token1) = tokenA < tokenB ? (tokenA, tokenB) : (tokenB, tokenA);
```
-Vogliamo che l'indirizzo del nuovo scambio sia deterministico, quindi calcolabile in anticipo al di fuori della catena (questo può essere utile per le [transazioni di livello 2](/developers/docs/layer-2-scaling/)). Per farlo, dobbiamo avere un ordine coerente degli indirizzi del token, indipendentemente dall'ordine in cui li abbiamo ricevuti, quindi li ordiniamo qui.
+Vogliamo che l'indirizzo del nuovo scambio sia deterministico, quindi calcolabile in anticipo al di fuori della catena (questo può essere utile per le [transazioni di livello 2](/developers/docs/scaling/)). Per farlo, dobbiamo avere un ordine coerente degli indirizzi del token, indipendentemente dall'ordine in cui li abbiamo ricevuti, quindi li ordiniamo qui.
```solidity
require(token0 != address(0), 'UniswapV2: ZERO_ADDRESS');
@@ -985,7 +985,7 @@ I fornitori di liquidità specificano un minimo, solitamente perché vogliono li
Ad esempio, immagina un caso in cui il tasso di cambio è uno a uno e il fornitore di liquidità specifica questi valori:
| Parametro | Valore |
-| -------------- | -----: |
+| -------------- | ------:|
| amountADesired | 1000 |
| amountBDesired | 1000 |
| amountAMin | 900 |
diff --git a/public/content/translations/it/developers/tutorials/waffle-dynamic-mocking-and-testing-calls/index.md b/public/content/translations/it/developers/tutorials/waffle-dynamic-mocking-and-testing-calls/index.md
index 01b9867941b..87c55672021 100644
--- a/public/content/translations/it/developers/tutorials/waffle-dynamic-mocking-and-testing-calls/index.md
+++ b/public/content/translations/it/developers/tutorials/waffle-dynamic-mocking-and-testing-calls/index.md
@@ -295,4 +295,4 @@ Il codice sorgente di questo tutorial si può trovare [qui](https://github.com/E
Altri tutorial che potrebbero interessarti:
-- [Test di Smart Contract con Waffle](/developers/tutorials/testing-smart-contract-with-waffle/)
+- [Test di Smart Contract con Waffle](/developers/tutorials/waffle-test-simple-smart-contract/)
diff --git a/public/content/translations/it/developers/tutorials/waffle-test-simple-smart-contract/index.md b/public/content/translations/it/developers/tutorials/waffle-test-simple-smart-contract/index.md
index 0b993380cec..0a00b551d84 100644
--- a/public/content/translations/it/developers/tutorials/waffle-test-simple-smart-contract/index.md
+++ b/public/content/translations/it/developers/tutorials/waffle-test-simple-smart-contract/index.md
@@ -200,4 +200,4 @@ Hai compiuto il tuo primo grande passo verso il test dei contratti intelligenti
- [Testare ERC-20 con Waffle](/developers/tutorials/testing-erc-20-tokens-with-waffle/)
- [Waffle: simulazioni dinamiche e test delle chiamate del contratto](/developers/tutorials/waffle-dynamic-mocking-and-testing-calls/#gatsby-focus-wrapper)
-- [Tutorial Waffle Hello world con hardhat ed ethers](/developers/tutorials/waffle-hello-world-with-buidler-tutorial/)
+- [Tutorial Waffle Hello world con hardhat ed ethers](/developers/tutorials/waffle-say-hello-world-with-hardhat-and-ethers/)
diff --git a/public/content/translations/it/developers/tutorials/yellow-paper-evm/index.md b/public/content/translations/it/developers/tutorials/yellow-paper-evm/index.md
index 5c405f6dfcd..8e773cab8ce 100644
--- a/public/content/translations/it/developers/tutorials/yellow-paper-evm/index.md
+++ b/public/content/translations/it/developers/tutorials/yellow-paper-evm/index.md
@@ -29,7 +29,7 @@ Una [macchina di Turing](https://en.wikipedia.org/wiki/Turing_machine) è un mod
Il termine
-Turing equivalente indica un computer che può eseguire gli stessi calcoli di una macchina di Turing. Le macchine di Turing possono entrare in loop infiniti, mentre l'EVM non può farlo perché finirebbe il carburante, quindi è solo quasi Turing equivalente.
+Turing equivalente/a> indica un computer che può eseguire gli stessi calcoli di una macchina di Turing. Le macchine di Turing possono entrare in loop infiniti, mentre l'EVM non può farlo perché finirebbe il carburante, quindi è solo quasi Turing equivalente.
## 9.1 Nozioni di base {#91-basics}
@@ -45,7 +45,7 @@ mstore(0, 0x60A7)
`mstore` è uno dei tre opcode che la EVM mette a disposizione per interagire con la memoria: carica una parola in memoria. Gli altri due sono `mstore8` che carica un singolo byte in memoria e `mload` che sposta una parola dalla memoria allo stack.
-La EVM ha anche un modello separato di archiviazione non volatile che viene mantenuta come parte dello stato del sistema; questa memoria è organizzata in un array di parole (al contrario degli array di byte con indirizzamento a parola nello stack). Questa archiviazione è il luogo in cui i contratti conservano i dati permanenti. Un contratto può interagire solo con la propria archiviazione. L’archiviazione è organizzata in mappature chiave-valore.
+La EVM ha anche un modello separato di **archiviazione** non volatile che viene mantenuta come parte dello stato del sistema; questa memoria è organizzata in un array di parole (al contrario degli array di byte con indirizzamento a parola nello stack). Questa archiviazione è il luogo in cui i contratti conservano i dati permanenti. Un contratto può interagire solo con la propria archiviazione. L’archiviazione è organizzata in mappature chiave-valore.
Sebbene non sia menzionato in questa sezione dello Yellow Paper, è utile sapere che esiste un quarto tipo di memoria. **Calldata** è una memoria di sola lettura con indirizzamento a byte utilizzata per memorizzare il valore trasmesso con il parametro `data` di una transazione. L'EVM dispone di opcode specifici per la gestione di `calldata`. `calldatasize` restituisce la dimensione dei dati. `calldataload` carica i dati nello stack. `calldatacopy` copia i dati in memoria.
diff --git a/public/content/translations/it/energy-consumption/index.md b/public/content/translations/it/energy-consumption/index.md
index 380d2d487a5..84891187b09 100644
--- a/public/content/translations/it/energy-consumption/index.md
+++ b/public/content/translations/it/energy-consumption/index.md
@@ -8,56 +8,58 @@ lang: it
Ethereum è una blockchain ecologica. Il meccanismo di consenso di [proof-of-stake](/developers/docs/consensus-mechanisms/pos) di Ethereum utilizza gli ETH invece dell'[energia, per proteggere la rete](/developers/docs/consensus-mechanisms/pow). Il consumo energetico di Ethereum è approssimativamente pari a [0,0026 TWh/anno](https://carbon-ratings.com/eth-report-2022), sull'intera rete globale.
-La stima del consumo energetico per Ethereum proviene da uno studio del [CCRI (Istituto di Valutazione Carbonica Cripto)](https://carbon-ratings.com). Hanno generato stime dettagliate del consumo energetico e dell'impronta carbonica della rete di Ethereum ([vedi lo studio](https://carbon-ratings.com/eth-report-2022)). I membri del CCRI hanno misurato il consumo di energia elettrica di diversi nodi con varie configurazioni hardware e software del client. Il consumo energetico annuale stimato della rete di **2.601 MWh** (0,0026 TWh), corrisponde alle emissioni carboniche annuali di **870 tonnellate di CO2e**, applicando i fattori di intensità carbonica specifici a livello regionale. Questo valore cambia quando i nodi accedono a e abbandonano la rete: è possibile tenerne traccia utilizzando una stima media di 7 giorni, dall'[Indice di Sostenibilità delle Reti Blockchain di Cambridge](https://ccaf.io/cbnsi/ethereum) (utilizzano un metodo lievemente differente per le loro stime, i dettagli sono disponibili sul loro sito).
+La stima del consumo energetico per Ethereum proviene da uno studio del [CCRI (Istituto di Valutazione Carbonica Cripto)](https://carbon-ratings.com). Ha prodotto delle stime bottom-up del consumo energetico e dell'impronta di carbonio della rete Ethereum ([vedi il report](https://carbon-ratings.com/eth-report-2022)). I membri del CCRI hanno misurato il consumo di energia elettrica di diversi nodi con varie configurazioni hardware e software del client. Il consumo energetico annuale stimato della rete di **2.601 MWh** (0,0026 TWh), corrisponde alle emissioni carboniche annuali di **870 tonnellate di CO2e**, applicando i fattori di intensità carbonica specifici a livello regionale. Questo valore cambia quando i nodi entrano ed escono dalla rete: è possibile tenerne traccia utilizzando una stima media mobile di 7 giorni, dall'[Indice di sostenibilità delle reti blockchain di Cambridge](https://ccaf.io/cbnsi/ethereum) (si noti che utilizza un metodo lievemente differente per le sue stime, i dettagli sono disponibili sul suo sito).
-Per contestualizzare il consumo energetico di Ethereum, confrontiamo le stime annualizzate per alcuni altri settori. Ciò ci aiuta a meglio comprendere se la stima per Ethereum sia alta o bassa.
+Per contestualizzare il consumo energetico di Ethereum, confrontiamo le stime annue per alcuni altri prodotti e settori. Ciò ci aiuta a meglio comprendere se la stima per Ethereum sia alta o bassa.
-Il grafico precedente mostra il consumo energetico annuale stimato in TWh/anno per Ethereum, rispetto a svariate altre industrie. Le stime fornite provengono da informazioni disponibili pubblicamente (ultimo accesso a maggio 2023), con collegamenti alle fonti disponibili nella seguente tabella:
+Il grafico che precede mostra il consumo energetico stimato in TWh/anno per Ethereum, confrontato con diversi altri prodotti e settori. Le stime fornite provengono da informazioni di dominio pubblico, reperite nel luglio 2023, con link alle fonti disponibili nella seguente tabella.
-| | Consumo energetico annuo (TWh) | Confronto con Ethereum PoS | Fonte |
-| :------------------------------- | :----------------------------: | :------------------------: | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| Centri elaborazione dati globali | 200 | 77,000x | [fonte](https://www.iea.org/commentaries/data-centres-and-energy-from-global-headlines-to-local-headaches) |
-| Estrazione dell'oro | 131 | 50,000x | [fonte](https://ccaf.io/cbnsi/cbeci/comparisons) |
-| Bitcoin | 131 | 50,000x | [fonte](https://ccaf.io/cbnsi/cbeci/comparisons) |
-| Ethereum PoW | 78 | 30,000x | [fonte](https://digiconomist.net/ethereum-energy-consumption) |
-| Youtube (solo diretto) | 12 | 4600x | [fonte](https://www.gstatic.com/gumdrop/sustainability/google-2020-environmental-report.pdf) |
-| Videogiochi negli Stati Uniti | 34 | 13.000x | [fonte](https://www.researchgate.net/publication/336909520_Toward_Greener_Gaming_Estimating_National_Energy_Use_and_Energy_Efficiency_Potential) |
-| Netflix | 0,451 | 173x | [fonte](https://assets.ctfassets.net/4cd45et68cgf/7B2bKCqkXDfHLadrjrNWD8/e44583e5b288bdf61e8bf3d7f8562884/2021_US_EN_Netflix_EnvironmentalSocialGovernanceReport-2021_Final.pdf) |
-| PayPal | 0,26 | 100x | [fonte](https://app.impaakt.com/analyses/paypal-consumed-264100-mwh-of-energy-in-2020-24-from-non-renewable-sources-27261) |
-| AirBnB | 0,02 | 8x | [fonte]() |
-| Ethereum PoS | 0,0026 | 1x | [fonte](https://carbon-ratings.com/eth-report-2022) |
+| | Consumo energetico annuo (TWh) | Confronto con Ethereum PoS | Fonte |
+| :------------------------------- | :----------------------------: | :------------------------: | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: |
+| Centri elaborazione dati globali | 190 | 73.000x | [fonte](https://www.iea.org/commentaries/data-centres-and-energy-from-global-headlines-to-local-headaches) |
+| Bitcoin | 149 | 53.000x | [fonte](https://ccaf.io/cbnsi/cbeci/comparisons) |
+| Estrazione dell'oro | 131 | 50.000x | [fonte](https://ccaf.io/cbnsi/cbeci/comparisons) |
+| Videogiochi negli Stati Uniti\* | 34 | 13.000x | [fonte](https://www.researchgate.net/publication/336909520_Toward_Greener_Gaming_Estimating_National_Energy_Use_and_Energy_Efficiency_Potential) |
+| Ethereum PoW | 21 | 8.100x | [fonte](https://ccaf.io/cbnsi/ethereum/1) |
+| Google | 19 | 7.300x | [fonte](https://www.gstatic.com/gumdrop/sustainability/google-2022-environmental-report.pdf) |
+| Netflix | 0,457 | 176x | [fonte](https://assets.ctfassets.net/4cd45et68cgf/7B2bKCqkXDfHLadrjrNWD8/e44583e5b288bdf61e8bf3d7f8562884/2021_US_EN_Netflix_EnvironmentalSocialGovernanceReport-2021_Final.pdf) |
+| PayPal | 0,26 | 100x | [fonte]() |
+| AirBnB | 0,02 | 8x | [fonte]() |
+| **Ethereum PoS** | **0,0026** | **1x** | [fonte](https://carbon-ratings.com/eth-report-2022) |
-È complicato ottenere stime accurate per il consumo energetico, specialmente quando ciò che viene misurato ha una catena di fornitura complessa o dettagli di distribuzione che ne influenzano l'efficienza. Considera Netflix o YouTube come esempi. Le stime del loro consumo energetico variano a seconda del fatto che includano esclusivamente l'energia utilizzata per mantenere i loro sistemi e fornire contenuti agli utenti (_consumo diretto_) o includano il consumo necessario a produrre i contenuti, gestire gli uffici operativi, pubblicizzare, ecc. (_consumo indiretto_). L'utilizzo indiretto potrebbe anche includere l'energia necessaria per consumare i contenuti sui dispositivi dell'utente finale, quali TV, computer e dispositivi mobili, che a loro volta dipendono dai dispositivi utilizzati.
+\*Include dispositivi dell'utente finale come PC, portatili e console da gaming.
-Esiste una discussione su questo problema su [Carbon Brief](https://www.carbonbrief.org/factcheck-what-is-the-carbon-footprint-of-streaming-video-on-netflix). Nella tabella precedente, il valore riportato per Netflix include i loro utilizzi _diretti_ e _indiretti_ auto-segnalati. YouTube fornisce soltanto una stima del proprio consumo _diretto_, pari a circa [12 TWh/anno](https://www.gstatic.com/gumdrop/sustainability/google-2020-environmental-report.pdf).
+Ottenere stime accurate del consumo energetico è complicato, specialmente quando ciò che viene misurato ha una filiera di fornitura complessa o dettagli d'implementazione che ne influenzano l'efficienza. Per esempio, le stime di consumo energetico per Netflix e Google variano se viene incluso solamente il consumo per mantenere i loro sistemi e fornire contenuti agli utenti (_spese dirette_) o se vengono incluse anche le spese per produzione di contenuti, gestione di uffici aziendali, pubblicità, ecc (_spese indirette_). Le spese indirette possono anche includere l'energia necessaria per utilizzare i contenuti sui dispositivi degli utenti finali come TV, computer e cellulari.
-La tabella e il grafico precedenti, inoltre, includono confronti con Bitcoin e l'Ethereum di proof-of-work. È importante notare che il consumo energetico delle reti di proof-of-work non è statico ma cambia quotidianamente. Il valore utilizzato per Ethereum proof-of-work proviene da poco prima della [Fusione](/roadmap/merge/) al proof-of-stake, come previsto da [Digiconomist](https://digiconomist.net/ethereum-energy-consumption). Altre fonti, come l'[Indice di Sostenibilità delle Reti Blockchain di Cambridge](https://ccaf.io/cbnsi/ethereum/1), stimano il consumo energetico come molto inferiore (più vicino a 20 TWh/anno). Anche le stime per i consumi energetici di Bitcoin variano ampiamente a seconda delle fonti, ed è un argomento che attira molti [dibattiti](https://www.coindesk.com/business/2020/05/19/the-last-word-on-bitcoins-energy-consumption/) articolati, non soltanto sulla quantità di energia consumata, ma anche sulle fonti di tale energia e la correlata etica. Il consumo energetico non è per forza associato all'impronta ambientale, poiché progetti differenti potrebbero utilizzare fonti energetiche diverse, ad esempio una percentuale maggiore o minore di rinnovabili. Ad esempio, l'[Indice di Consumo Energetico di Bitcoin di Cambridge](https://ccaf.io/cbnsi/cbeci/comparisons), indica che la domanda della rete di Bitcoin potrebbe essere teoricamente alimentata da gas o elettricità che andrebbero altrimenti persi in trasmissione e distribuzione. Il percorso di Ethereum verso la sostenibilità è stato quello di sostituire la parte ad alto consumo energetico della rete, con un'alternativa ecosostenibile.
+Le suddette stime non sono comparazioni perfette. L'ammontare delle spese indirette considerato varia a seconda della fonte, e raramente include l'energia dei dispositivi degli utenti finali. Ogni fonte sottostante include maggiori dettagli sull'oggetto della misurazione.
-Puoi sfogliare le stime sui consumi energetici e le emissioni carboniche per molti settori sul [sito dell'Indice di Sostenibilità delle Reti Blockchain di Cambridge](https://ccaf.io/cbnsi/ethereum).
+La tabella e il grafico precedenti, inoltre, includono confronti con Bitcoin ed Ethereum proof-of-work. È importante notare che il consumo energetico delle reti proof-of-work non è statico e cambia quotidianamente. Le stime possono anche variare ampiamente tra diverse fonti. L'argomento genera un variopinto [dibattito](https://www.coindesk.com/business/2020/05/19/the-last-word-on-bitcoins-energy-consumption/), non solo riguardante la quantità di energia consumata, ma anche riguardo alle fonti di quell'energia e alla rispettiva eticità. Non necessariamente il consumo energetico corrisponde precisamente all'impatto ambientale, poiché progetti differenti potrebbero utilizzare fonti energetiche diverse con una percentuale maggiore o minore di rinnovabili. Per esempio, l'[Indice del consumo di elettricità dei Bitcoin di Cambridge](https://ccaf.io/cbnsi/cbeci/comparisons) indica che la domanda della rete Bitcoin potrebbe teoricamente essere soddisfatta con combustione di gas e utilizzo di elettricità che altrimenti verrebbero persi nella fase di trasmissione e distribuzione. Il percorso di Ethereum verso la sostenibilità è stato quello di sostituire la parte ad alto consumo energetico della rete, con un'alternativa ecosostenibile.
+
+Puoi sfogliare le stime sui consumi energetici e le emissioni carboniche per molti settori sul [sito dell'Indice di sostenibilità delle reti blockchain di Cambridge](https://ccaf.io/cbnsi/ethereum).
## Stime per transazione {#per-transaction-estimates}
Molti articoli stimano il dispendio energetico "per transazione" delle blockchain. Questo dato può essere fuorviante perché l'energia necessaria per proporre e convalidare un blocco è indipendente dal numero di transazioni al suo interno. Un'unità di spesa energetica per transazione implica che un minor numero di transazioni comporti una minore spesa energetica e viceversa, ma non è così. Inoltre, le stime per transazione sono molto sensibili al modo in cui viene definita la portata di trasmissione delle transazioni di una blockchain, e la modifica di questa definizione può essere manipolata per far sembrare il valore maggiore o minore.
-Ad esempio, su Ethereum, la portata di trasmissione delle transazioni non è solo quella del livello base, ma è anche la somma delle portate di trasmissione delle transazioni di tutti i relativi rollup di "[livello 2](/layer-2/)". I livelli 2 non sono generalmente inclusi nei calcoli, ma è probabile che tenere conto dell'energia aggiuntiva consumata dai sequenziatori (poca) e del numero di transazioni che elaborano (molte) contribuirebbe a una riduzione drastica delle stime per transazione. Questo è uno dei motivi per cui il confronto del consumo energetico per transazione tra le varie piattaforme può essere fuorviante.
+Su Ethereum, ad esempio, la portata di trasmissione delle transazioni non è solo quella del livello base, ma è anche la somma delle portate di trasmissione delle transazioni di tutti i suoi rollup di "[livello 2](/layer-2/)". I livelli 2 non sono generalmente inclusi nei calcoli, ma tenere conto dell'energia aggiuntiva consumata dai sequenziatori (poca) e del numero di transazioni che elaborano (molte) probabilmente ridurrebbe drasticamente le stime per transazione. Questo è uno dei motivi per cui le comparazioni del consumo energetico per transazione delle varie piattaforme possono essere fuorvianti.
## Il debito di carbonio di Ethereum {#carbon-debt}
-Il dispendio energetico di Ethereum è molto basso, ma non è sempre stato così. Originariamente Ethereum utilizzava la proof-of-work, che aveva un costo ambientale molto più elevato dell'attuale meccanismo proof-of-stake.
+Il dispendio energetico di Ethereum è molto basso, ma non è sempre stato così. Originariamente Ethereum utilizzava il proof-of-work, che aveva un costo ambientale molto più elevato dell'attuale meccanismo prova di proof-of-stake.
-Fin dall'inizio, Ethereum ha pianificato d'implementare un meccanismo di consenso basato sulla proof-of-stake, ma per farlo senza sacrificare la sicurezza e la decentralizzazione sono stati necessari anni di ricerca e sviluppo mirati. Dunque, per avviare la rete è stato usato un meccanismo proof-of-work. La proof-of-work richiede che i minatori utilizzino il processore del proprio dispositivo per calcolare un valore, spendendo energia nel processo.
+Fin dalle sue origini, Ethereum ha pianificato di implementare un meccanismo di consenso di proof-of-stake, ma farlo senza sacrificare la sicurezza e la decentralizzazione ha richiesto anni di ricerca e sviluppo mirati. Pertanto, per avviare la rete è stato usato un meccanismo di proof-of-work. Il proof-of-work richiede che i miner utilizzino il processore del proprio dispositivo per calcolare un valore, spendendo energia nel processo.
-![Confronto tra il consumo energetico di Ethereum prima della Fusione e dopo, utilizzando la Torre Eiffel (alta 330 metri) sulla sinistra per simbolizzare il consumo energetico prima della Fusione e un piccolo personaggio Lego di 4 cm sulla destra per rappresentare la drastica riduzione del consumo energetico dopo di essa](energy_consumption_pre_post_merge.png)
+![Confronto tra il consumo energetico di Ethereum prima e dopo La Fusione, utilizzando la Torre Eiffel (alta 330 metri) sulla sinistra per simbolizzare il consumo energetico prima della Fusione e un piccolo personaggio Lego di 4 cm sulla destra per rappresentare la drastica riduzione del consumo energetico dopo di essa](energy_consumption_pre_post_merge.png)
-Il CCRI stima che La Fusione abbia ridotto il consumo energetico annualizzato di Ethereum per oltre il **99,988%**. Similmente, l'impronta di carbonio di Ethereum è stata ridotta approssimativamente del **99,992%** (da 11.016.000 a 870 tonnellate di CO2e). Per mettere tutto questo in prospettiva, la riduzione delle emissioni equivale a passare dall'altezza della Torre Eiffel a un piccolo personaggio giocattolo in plastica, come illustrato nell'immagine precedente. Di conseguenza, il costo ambientale della protezione della rete è ridotto drasticamente. Al contempo, si ritiene che la sicurezza della rete sia aumentata.
+CCRI stima che La Fusione abbia ridotto il consumo energetico annualizzato di Ethereum di più del **99,988%**. Analogamente, l'impronta di carbonio di Ethereum è stata ridotta approssimativamente del **99,992%** (da 11.016.000 a 870 tonnellate di CO2e). Per mettere tutto questo in prospettiva, la riduzione delle emissioni equivale a passare dall'altezza della Torre Eiffel a un piccolo personaggio giocattolo in plastica, come illustrato nella figura precedente. Dunque, il costo ambientale del proteggere la rete si riduce drasticamente. Al contempo, si ritiene che la sicurezza della rete sia aumentata.
## Un livello d'applicazione ecologico {#green-applications}
-Sebbene il consumo di energia di Ethereum sia molto basso, esiste una consistente community di [**finanza rigenerativa (ReFi)**](/refi/), in crescita e molto attiva, che sviluppa su Ethereum. Le applicazioni ReFi usano i componenti della DeFi per creare applicazioni finanziarie aventi esternalità positive a beneficio dell'ambiente. La ReFi è parte di un più ampio movimento ["solarpunk"](https://en.wikipedia.org/wiki/Solarpunk), strettamente allineato con Ethereum e che mira a conciliare progresso tecnologico e gestione ambientale. La natura decentralizzata, senza permessi e componibile di Ethereum lo rende il livello di base ideale per le comunità ReFi e solarpunk.
+Mentre il consumo energetico di Ethereum è molto ridotto, vi è anche una community sostanziale, in crescita e altamente attiva di **finanza rigenerativa (ReFi)** che sta nascendo su Ethereum. Le applicazioni ReFi usano i componenti della DeFi per creare applicazioni finanziarie aventi esternalità positive a beneficio dell'ambiente. La ReFi è parte di un più ampio movimento ["solarpunk"](https://en.wikipedia.org/wiki/Solarpunk), strettamente allineato con Ethereum e che mira ad accoppiare l'avanzamento tecnologico alla gestione ambientale. La natura decentralizzata, senza permessi e componibile di Ethereum lo rende il livello di base ideale per la ReFi e le community solarpunk.
-Piattaforme di finanziamento di beni pubblici web3 native come [Gitcoin](https://gitcoin.co) conducono raccolte fondi climatiche per promuovere uno sviluppo consapevole dell'ambiente sul livello di applicazione di Ethereum. Grazie allo sviluppo di queste iniziative (e di altre, ad esempio [DeSci](/desci/)), Ethereum sta diventando una tecnologia positiva dal punto di vista ambientale e sociale.
+Piattaforme di finanziamento di beni pubblici web3 native come [Gitcoin](https://gitcoin.co) conducono raccolte fondi climatiche per promuovere uno sviluppo consapevole dell'ambiente sul livello di applicazione di Ethereum. Grazie allo sviluppo di queste iniziative (e di altre, ad esempio [DeSci](/desci/)), Ethereum sta diventando una tecnologia positiva in termini ambientali e sociali.
Se pensi che questa pagina possa essere resa più accurata, segnala un problema o una PR. Le statistiche riportate in questa pagina sono stime basate su dati pubblicamente disponibili e non rappresentano una dichiarazione o una promessa ufficiale del team di ethereum.org o della Fondazione Ethereum.
diff --git a/public/content/translations/it/enterprise/index.md b/public/content/translations/it/enterprise/index.md
index a4c0bf41f55..4d7c75f4346 100644
--- a/public/content/translations/it/enterprise/index.md
+++ b/public/content/translations/it/enterprise/index.md
@@ -51,7 +51,7 @@ Alcuni sforzi collaborativi per rendere la rete Ethereum aziendale più intuitiv
- [Blast](https://blastapi.io/): _una piattaforma API che fornisce API RPC/WSS per la Rete Principale e le Reti di Prova dell'Archivio di Ethereum._
- [Blockapps](https://blockapps.net/) _implementazione del protocollo Enterprise Ethereum, strumenti e API che formano la piattaforma STRATO_
- [Chainstack](https://chainstack.com/) _infrastruttura per rete principale e rete di prova di Ethereum ospitata in cloud pubblici e isolati dei clienti_
-- [ConsenSys](https://consensys.net/) _offre una gamma di prodotti e strumenti per sviluppare su Ethereum, oltre a servizi di consulenza e sviluppo personalizzato_
+- [ConsenSys](https://consensys.io/) _offre una gamma di prodotti e strumenti per sviluppare su Ethereum, oltre a servizi di consulenza e sviluppo personalizzato_
- [Envision Blockchain](https://envisionblockchain.com/) _fornisce consulenza e servizi di sviluppo incentrati sulle imprese specializzati nella rete principale di Ethereum_
- [EY OpsChain](https://blockchain.ey.com/products/contract-manager) _offre un flusso di lavoro per gli acquisti rilasciando RFQ, contratti, ordini di acquisto e fatture attraverso la rete di business partner certificati dell'azienda_
- [Hyperledger Besu](https://www.hyperledger.org/use/besu) _client Ethereum open source aziendale sviluppato con licenza Apache 2.0 e scritto in Java_
@@ -68,7 +68,7 @@ Alcuni sforzi collaborativi per rendere la rete Ethereum aziendale più intuitiv
### Strumenti e librerie {#tooling-and-libraries}
- [Alethio](https://explorer.aleth.io/) _Piattaforma di analisi dei dati di Ethereum_
-- [Sirato](https://www.web3labs.com/sirato) _una piattaforma specializzata nell'analisi dei dati per reti pubbliche e private abilitate a Ethereum realizzata da Labs nel Web3_
+- [Chainlens](https://www.chainlens.com/) _una piattaforma specializzata nell'analisi dei dati per reti pubbliche e private abilitate a Ethereum realizzata da Labs nel Web3_
- [Ernst & Young's ‘Nightfall'](https://github.com/EYBlockchain/nightfall) _kit di strumenti per transazioni private_
- [EthSigner](https://github.com/ConsenSys/ethsigner) _applicazione per la firma delle transazioni da usare con un provider web3_
- [Tenderly](https://tenderly.co/) _una Piattaforma di dati che fornisce analitiche in tempo reale, avvisando e monitorando con supporto alle reti private_
@@ -102,13 +102,12 @@ Ecco alcuni esempi di applicazioni aziendali che sono stati estesi alla rete pub
- [Tinlake](https://tinlake.centrifuge.io/) _sconti commerciali tramite risorse tokenizzate del mondo reale quali fatture, mutui o royalty in streaming_
- [RealT](https://realt.co/) _investitori in tutto il mondo possono acquistare nel mercato immobiliare statunitense attraverso una proprietà completamente conforme, frazionale, tokenizzata_
-- [AgroToken](https://agrotoken.io/en/) _tokenizzazione e trading di materie prime agricole_
+- [AgroToken](https://agrotoken.io/en/home) _tokenizzazione e trading di materie prime agricole_
- [Fasset](https://www.fasset.com/) _piattaforma per supportare le infrastrutture sostenibili_
### Autenticazione dei dati {#notarization-of-data}
- [BBVA](https://www.ledgerinsights.com/bbva-blockchain-loan-banking-tech-award/) _i dettagli dei prestiti finalizzati sono associati ad hash e registrati sulla rete principale_
-- [Splunk](https://www.splunk.com/en_us/blog/security/the-newest-data-attack.html) _l'integrità dei dati può essere assicurata scrivendo periodicamente hash di dati indicizzati nella rete principale_
- [ANSA](https://cointelegraph.com/news/italys-top-news-agency-uses-blockchain-to-fight-fake-coronavirus-news) _la maggiore agenzia di stampa italiana combatte contro le fake news e consente ai lettori di verificare l'origine delle notizie registrandole sulla rete principale_
- [Verizon](https://decrypt.co/46745/verizon-news-press-releases-ethereum-full-transparency) _registra le conferenze stampa su Ethereum per assicurare l'affidabilità e la fiducia aziendale_
- [Breitling](https://www.coindesk.com/breitling-arianee-all-new-watches-ethereum) _registra la provenienza e lo storico delle riparazioni degli orologi su Ethereum_
@@ -116,13 +115,11 @@ Ecco alcuni esempi di applicazioni aziendali che sono stati estesi alla rete pub
### Catena d'approvvigionamento {#supply-chain}
-- [CargoX](https://cargox.io/press-releases/full/cargox-becomes-first-public-blockchain-ethereum-bill-lading-provider-approved-international-group-pi-clubs) _fornitore di polizze di carico e trasferimento di documenti_
- [Morpheus.network](https://morpheus.network/): _Piattaforma di automazione della filiera che implementa un ibrido di catene private con dati autenticati sulla Rete Principale di Ethereum ed è in uso da aziende come il distributore di alimenti, olio e carburanti canadese Federated Co-op Ltd. e il fornitore argentino di alimenti per animali domestici Vitalcan_
- [Minespider](https://www.minespider.com/) _monitoraggio della catena di approvvigionamento_
- [EY OpsChain Network Procurement](https://blockchain.ey.com/products/contract-manager) _consente alle aziende di interagire in un flusso di lavoro di approvvigionamento emettendo richieste di preventivo, contratti, ordini d'acquisto e fatture sulla rete di partner aziendali fidati_
- [Treum](https://treum.io/) _assicura trasparenza, tracciabilità e commerciabilità alle catene d'approvvigionamento usando la tecnologia della blockchain_
- [TradeTrust](https://www.tradetrust.io/) _verifica le Polizze di Carico (B/L) per le spedizioni internazionali_
-- [Birra Peroni](https://www.ey.com/en_gl/news/2021/05/birra-peroni-is-the-first-industrial-organization-to-mint-unique-non-fungible-tokens-using-ey-opschain-traceability) _conia NFT per ogni nuovo lotto di birra, consentendo una maggiore visibilità ed efficienza lungo l'intera catena di approvvigionamento_
### Assicurazioni {#insurance}
diff --git a/public/content/translations/it/enterprise/private-ethereum/index.md b/public/content/translations/it/enterprise/private-ethereum/index.md
index 635035249e2..0d9edb77fb8 100644
--- a/public/content/translations/it/enterprise/private-ethereum/index.md
+++ b/public/content/translations/it/enterprise/private-ethereum/index.md
@@ -24,5 +24,4 @@ Diverse organizzazioni si sono adoperate per rendere più intuitiva Ethereum per
- [Hyperledger Besu](https://www.hyperledger.org/use/besu) _Client open source di Ethereum sviluppato con licenza Apache 2.0 e scritto in Java, che include diversi algoritmi di consenso, tra cui PoW e PoA (IBFT, IBFT 2.0, Etherhash e Clique). Gli schemi di autorizzazione completi adottati sono progettati specificamente per l'uso in un ambiente consortile._
- [Hyperledger Burrow](https://www.hyperledger.org/projects/hyperledger-burrow) _Client modulare della blockchain con un interprete autorizzato del contratto intelligente, sviluppato parzialmente alla specifica della Macchina Virtuale di Ethereum (EVM)_
- [Kaleido](https://kaleido.io/) _Piattaforma a tutto tondo per lo sviluppo e l'esecuzione di ecosistemi aziendali ibridi adatti a diversi cloud_
-- [Quorum](https://consensys.net/quorum/) _Piattaforma blockchain aziendale open source basata su Ethereum con funzionalità aziendali di livello avanzato che garantiscono privacy, gestione dei permessi e prestazioni elevate_
- [Zeeve](https://www.zeeve.io/)_ fornisce una gamma di prodotti e strumenti per sviluppare su Ethereum, oltre all'infrastruttura e alle API per le applicazioni aziendali Web3_
diff --git a/public/content/translations/it/foundation/index.md b/public/content/translations/it/foundation/index.md
index 679076a74d9..001322ac446 100644
--- a/public/content/translations/it/foundation/index.md
+++ b/public/content/translations/it/foundation/index.md
@@ -27,7 +27,7 @@ Fin dal 2014, Ethereum Foundation ha organizzato Devcon, la conferenza annuale p
Puoi accedere ai contenuti video o alle conferenze di ogni anno, a partire da quello di creazione, su [archive.devcon.org](https://archive.devcon.org/).
-Scopri di più su [devcon.org](https://devcon.org/), dai un'occhiata al [Devcon Blog](https://devcon.org/en/blogs/) o segui [@efdevcon](https://twitter.com/EFDevcon) per le ultime novità.
+Scopri di più su [devcon.org](https://devcon.org/), dai un'occhiata al [Devcon Blog](https://blog.ethereum.org/category/devcon/) o segui [@efdevcon](https://twitter.com/EFDevcon) per le ultime novità.
### Programma Fellowship {#fellowship-program}
diff --git a/public/content/translations/it/glossary/index.md b/public/content/translations/it/glossary/index.md
index 8b80cec9bc5..8bfbb69f159 100644
--- a/public/content/translations/it/glossary/index.md
+++ b/public/content/translations/it/glossary/index.md
@@ -2,1119 +2,435 @@
title: Glossario di Ethereum
description: Glossario non esaustivo di termini tecnici e non relativi a Ethereum
lang: it
-sidebarDepth: 2
---
# Glossario {#ethereum-glossary}
-
-
## \# {#section-numbers}
-### Attacco del 51% {#51-attack}
+
-Tipo di attacco nei confronti di una [rete](#network) decentralizzata dove un gruppo ottiene il controllo della maggioranza dei [nodi](#node). Questa situazione permetterebbe di defraudare la blockchain, annullando le [transazioni](#transaction) e spendendo il doppio di [ether](#ether) e altri token.
+
## A {#section-a}
-### conto {#account}
-
-Oggetto contenente un [indirizzo](#address), saldo, [nonce](#nonce), e facoltativamente uno spazio di archiviazione e codice. Un conto può essere [di un contratto](#contract-account) o un [conto posseduto esternamente (EOA)](#eoa).
-
-
- Conti di Ethereum
-
-
-### indirizzo {#address}
-
-In generale, rappresenta un [EOA](#eoa) o un [contratto](#contract-account) che può ricevere (indirizzo di destinazione) o inviare (indirizzo di origine) [transazioni](#transaction) sulla blockchain. Più nello specifico, si tratta dei 160 bit più a destra di un [hash di Keccak](#keccak-256) di una [chiave pubblica](#public-key) [ECDSA](#ecdsa).
-
-### interfaccia binaria dell'applicazione (ABI) {#abi}
-
-Il metodo standard per interagire con i [contratti](#contract-account) nell'ecosistema di Ethereum, sia dall'esterno della blockchain che per le interazioni tra contratti.
+
-
- ABI
-
+
-### interfaccia di programmazione dell'applicazione {#api}
+
-Un'interfaccia di programmazione dell'applicazione (API) è una serie di definizioni per l'utilizzo di un software. Un'API si trova tra un'applicazione e un server web e facilita il trasferimento di dati tra di essi.
+
-### ASIC {#asic}
+
-Circuito integrato specifico per l'applicazione. Si riferisce solitamente a un circuito integrato, costruito su misura per il mining di criptovalute.
+
-### assert {#assert}
-
-In [Solidity](#solidity), `assert(false)` si compila in `0xfe`, un opcode non valido, che usa tutto il [gas](#gas) rimanente e annulla tutte le modifiche. Quando un'istruzione `assert()` fallisce, avviene qualcosa di molto grave e imprevisto ed è necessario correggere il codice. Devi usare `assert()` per evitare condizioni che non dovrebbero verificarsi mai.
-
-
- Sicurezza dei contratti intelligenti
-
-
-### attestazione {#attestation}
-
-Un'attestazione fatta da un'entità che qualcosa è vero. Nel contesto di Ethereum, i validatori del consenso devono dichiarare ciò che ritengono essere lo stato della catena. In determinati momenti, ogni validatore è responsabile della pubblicazione di diversi attestati che dichiarano formalmente il parere del validatore sulla catena, incluso l'ultimo checkpoint finalizzato e l'attuale testa della catena.
-
-
- Attestazioni
-
+
## B {#section-b}
-### Commissione base {#base-fee}
-
-Ogni [blocco](#block) ha un prezzo di riserva noto come "commissione base". È la commissione minima di [gas](#gas) che un utente deve pagare per includere una transazione nel blocco successivo.
-
-
- Gas e commissioni
-
-
-### Beacon Chain {#beacon-chain}
-
-La Beacon Chain è stata la blockchain che ha introdotto il [Proof of Stake](#pos) e i [validatori](#validator) in Ethereum. Ha operato insieme alla Rete principale di Proof-of-Work di Ethereum dal novembre 2020 fino alla fusione delle due catene, che a settembre 2022 ha dato vita all'Ethereum odierna.
-
-
- Beacon Chain
-
-
-### big-endian {#big-endian}
-
-Rappresentazione numerica posizionale in cui la cifra più significativa è la prima in memoria. Opposto di little-endian, dove la cifra meno significativa è la prima.
-
-### blocco {#block}
-
-Un blocco è un insieme di informazioni che includono un elenco ordinato di transazioni e informazioni relative al consenso. I blocchi sono proposti dai validatori proof-of-stake, e sono condivisi in tutta la rete peer-to-peer, dove possono essere facilmente verificati in modo indipendente da tutti gli altri nodi. Le regole di consenso disciplinano i contenuti di un blocco considerati validi e gli eventuali blocchi non validi non sono considerati dalla rete. L'ordine di questi blocchi e le transazioni al loro interno creano una catena deterministica di eventi la cui fine rappresenta lo stato attuale della rete.
-
-
- Blocchi
-
-
-### esploratore del blocco {#block-explorer}
-
-Un'interfaccia che consente a un utente di cercare informazioni da e su una blockchain, tra cui il recupero delle transazioni individuali, delle attività associate a indirizzi specifici e informazioni sulla rete.
-
-### intestazioni dei blocchi {#block-header}
-
-L'intestazione del blocco è una raccolta di meta-dati su un blocco e un riepilogo delle transazioni incluse nel payload di esecuzione.
-
-### propagazione dei blocchi {#block-propagation}
-
-Il processo di trasmissione di un blocco confermato a tutti gli altri nodi nella rete.
-
-### propositore del blocco {#block-proposer}
-
-Il validatore specifico scelto per creare un blocco in uno [slot](#slot) specifico.
-
-### ricompensa del blocco {#block-reward}
-
-L'importo di ether versato in ricompensa al produttore di un nuovo blocco valido.
-
-### stato del blocco {#block-status}
+
-Gli stati in cui può esistere un blocco. Gli stati possibili includono:
+
-- proposto: il blocco è stato proposto da un validatore
-- pianificato: i validatori stanno attualmente inviando dati
-- mancato/saltato: il propositore non ha proposto un blocco entro il lasso di tempo idoneo.
-- orfano: il blocco è stato sostituito dall'[algoritmo di scelta della diramazione](#fork-choice-algorithm)
+
-### tempo di blocco {#block-time}
+
-L'intervallo temporale tra i blocchi aggiunti alla blockchain.
+
-### convalida del blocco {#block-validation}
+
-Il processo di verifica che un nuovo blocco contenga transazioni valide e che si basi sulla catena storica più lunga. Blocchi validi vengono aggiunti in coda alla catena e propagati ad altri sulla rete. I blocchi non validi sono ignorati.
+
-### blockchain {#blockchain}
+
-Una sequenza di [blocchi](#block), ognuno collegato al predecessore fino al [blocco genesi](#genesis-block). L'integrità della blockchain è protetta cripto-economicamente usando un meccanismo di consenso basato sul Proof of Stake.
+
-
- Cos'è una blockchain?
-
+
-### bootnode {#bootnode}
+
-I nodi utilizzabili per avviare il processo di scoperta eseguendo un nodo. Gli endpoint di questi nodi sono registrati nel codice sorgente di Ethereum.
+
-### bytecode {#bytecode}
+
-Serie astratta di istruzioni progettata per l'esecuzione efficiente da parte di un interprete software o una macchina virtuale. A differenza del codice sorgente leggibile dall'uomo, il bytecode è espresso in formato numerico.
+
-### Diramazione Byzantium {#byzantium-fork}
+
-La prima di due [diramazioni permanenti](#hard-fork) per la fase di sviluppo di [Metropolis](#metropolis). Includeva EIP-649 Metropolis [Difficulty Bomb](#difficulty-bomb) Delay e Block Reward Reduction, dove l'[Era Glaciale](#ice-age) era stata ritardata di 1 anno e la ricompensa sul blocco era stata ridotta da 5 a 3 ether.
+
## C {#section-c}
-### Casper-FFG {#casper-ffg}
+
-Casper-FFG è un protocollo di consenso di Proof of Stake usato insieme all'algoritmo di scelta della diramazione [LMD-GHOST](#lmd-ghost) per consentire ai [client di consenso](#consensus-client) di trovare un accordo sulla testa della Beacon Chain.
+
-### checkpoint {#checkpoint}
+
-La [Beacon Chain](#beacon-chain) ha un tempo diviso in slot (12 secondi) ed epoche (32 slot). Il primo slot in ogni epoca è un checkpoint. Quando una [super-maggioranza](#supermajority) di validatori attesta il collegamento tra due checkpoint, questi possono essere [giustificati](#justification), per poi essere [finalizzati](#finality) quando un altro checkpoint viene giustificato in posizione più elevata.
+
-### compilare {#compiling}
+
-Convertire il codice scritto in un linguaggio di programmazione di alto livello (es. [Solidity](#solidity)) in un linguaggio di livello inferiore (ad es. [bytecode](#bytecode) di EVM).
+
-
- Compilare i Contratti Intelligenti
-
+
-### commissione {#committee}
+
-Un gruppo di almeno 128 [validatori](#validator) assegnati alla convalida dei blocchi di ogni slot. Uno dei validatori nella commissione è l'aggregatore, responsabile dell'aggregazione delle firme di tutti gli altri validatori nella commissione che concordano su un'attestazione. Da non confondere con la [commissione di sincronizzazione](#sync-committee).
+
-### infattibilità computazionale {#computational-infeasibility}
+
-Un processo è infattibile a livello computazionale se ci vorrebbe un tempo eccessivamente lungo (es. miliardi di anni) per realizzarlo per chiunque possa ragionevolmente avere un interesse nel realizzarlo.
+
-### consenso {#consensus}
+
-Si verifica quando una super-maggioranza di nodi sulla rete hanno tutti gli stessi blocchi nella migliore blockchain convalidata localmente. Da non confondere con le [regole di consenso](#consensus-rules).
+
-### client di consenso {#consensus-client}
-
-I client di consenso (come Prysm, Teku, Nimbus, Lighthouse, Lodestar) eseguono l'algoritmo di consenso di [Proof of Stake](#pos) di Ethereum consentendo alla rete di raggiungere un accordo sulla testa della Beacon Chain. I client di consenso non partecipano alle transazioni di convalida/trasmissione o all'esecuzione delle transizioni di stato. Questo viene fatto dai [client di esecuzione](#execution-client).
-
-### livello di consenso {#consensus-layer}
-
-Il livello di consenso di Ethereum è la rete dei [client di consenso](#consensus-client).
-
-### regole di consenso {#consensus-rules}
-
-Le regole di convalida dei blocchi che i nodi completi seguono per mantenere il consenso con gli altri nodi. Da non confondere con il [consenso](#consensus).
-
-### Considerato per l'Inclusione (CFI) {#cfi}
-
-Una [EIP](#eip) principale che non è ancora attiva su Rete principale, verso la quale gli sviluppatori di client sono generalmente favorevoli. Supponendo che soddisfi tutti i requisiti per l'inclusione nella Rete principale, potrebbe essere incluso in un aggiornamento della rete (non necessariamente il successivo).
-
-### Diramazione Constantinople {#constantinople-fork}
-
-Seconda parte della fase [Metropolis](#metropolis), originariamente prevista per la metà del 2018. Tra i vari cambiamenti, era previsto il passaggio a un algoritmo di consenso ibrido [Proof-of-Work](#pow)/[Proof-of-Stake](#pos).
-
-### conto del contratto {#contract-account}
-
-Un conto contenente del codice eseguito ogni volta che riceve una [transazione](#transaction) da un altro [conto](#account) ([EOA](#eoa) o [contratto](#contract-account)).
-
-### transazione di creazione del contratto {#contract-creation-transaction}
-
-Una [transazione](#transaction) speciale che include il codice di avvio di un contratto. Il destinatario è impostato a `null` e il contratto è distribuito a un indirizzo generato dall'indirizzo utente e `nonce`. che viene utilizzato per registrare un [contratto](#contract-account) e registrarlo sulla blockchain Ethereum.
-
-### criptoeconomia {#cryptoeconomics}
-
-L'economia delle criptovalute.
+
## D {#section-d}
-### Đ {#d-with-stroke}
-
-Đ (D con trattino) è usato in inglese antico, inglese medio, islandese e faroese e indica una lettera "Eth" maiuscola. È usato in parole come ĐEV o Đapp (applicazione decentralizzata), dove la Đ è la lettera nordica “eth”. L'eth maiuscolo (Ð) è usato anche per simbolizzare la criptovaluta Dogecoin. Era usato comunemente nella vecchia letteratura di Ethereum, mentre oggi è meno diffuso.
+
-### DAG {#dag}
+
-DAG sta per Grafico Aciclico Diretto. È una struttura di dati composta da nodi e collegamenti tra di essi. Prima della Fusione, Ethereum usava un DAG nel suo algoritmo [proof-of-work](#pow), [Ethash](#ethash), ma in [proof-of-stake](#pos) non è più utilizzato.
+
-### dapp {#dapp}
+
-Applicazione decentralizzata. Come minimo, si tratta di un [contratto intelligente](#smart-contract) e di un'interfaccia utente web. Più in generale, una dapp è un'applicazione web basata su servizi dell'infrastruttura peer-to-peer aperta e decentralizzata. Inoltre, molte dapp includono un'archiviazione decentralizzata e/o un protocollo di messaggistica e una piattaforma.
+
-
- Introduzione alle dapp
-
+
-### disponibilità dei dati {#data-availability}
+
-La proprietà di uno stato in cui ogni nodo connesso alla rete potrebbe scaricare qualsiasi parte specifica dello stato che desidera.
+
-### decentralizzazione {#decentralization}
+
-L'idea di spostare il controllo e l'esecuzione dei processi da un'entità centrale.
+
-### organizzazione autonoma decentralizzata (OAD) {#dao}
+
-Società o altra organizzazione che opera senza gestione gerarchica. OAD potrebbe anche riferirsi a un contratto denominato "The OAD" lanciato il 30 aprile 2016, che fu poi hackerato a giugno 2016; questo fatto portò a una [diramazione permanente](#hard-fork) (denominata OAD) sul blocco 1.192.000 che invertì il contratto OAD hackerato e causò la divisione di Ethereum ed Ethereum Classic in due sistemi concorrenti.
+
-
- Organizzazioni autonome decentralizzate (DAO)
-
+
-### scambio decentralizzato (DEX) {#dex}
+
-Tipo di [dapp](#dapp) che permette di scambiare token con altri peer allo stesso livello sulla rete. Per usarli servono degli [ether](#ether) (per pagare le [commissioni sulle transazioni](#transaction-fee)) ma non sono soggetti a restrizioni geografiche come gli scambi centralizzati. Tutti possono partecipare.
-
-
- Scambi decentralizzati
-
-
-### atto {#deed}
-
-Vedi [token non fungibile (NFT)](#nft).
-
-### contratto di deposito {#deposit-contract}
-
-L'accesso allo staking su Ethereum. Il contratto di deposito è un contratto intelligente su Ethereum che accetta i depositi di ETH e gestisce i saldi del validatore. Un validatore non può essere attivato senza depositare ETH in questo contratto. Il contratto richiede ETH e dati di input. Questi dati di input includono la chiave pubblica del validatore e la chiave pubblica di prelievo, firmate dalla chiave privata del validatore. Questi dati sono necessari affinché un validatore possa essere identificato e approvato dalla rete di [Proof-of-Stake](#pos).
-
-### DeFi {#defi}
-
-Abbreviazione di "finanza decentralizzata", un'ampia categoria di [dapp](#dapp) mirate a fornire servizi finanziari supportati dalla blockchain, senza alcun intermediario, così che chiunque abbia una connessione a internet possa partecipare.
-
-
- Finanza Decentralizzata (DeFi)
-
-
-### difficoltà {#difficulty}
-
-Un'impostazione a livello di rete in reti [proof-of-work](#pow) che controlla quanto calcolo in media è necessario per trovare un nonce valido. La difficoltà è rappresentata dal numero di zeri iniziali che sono necessari nell'hash del blocco risultante per essere considerato valido. Questo concetto è deprecato in Ethereum dal passaggio al proof-of-stake.
-
-### bomba di difficoltà {#difficulty-bomb}
-
-Aumento esponenziale pianificato nell'impostazione di [difficoltà](#difficulty) di [proof-of-work](#pow) per motivare la transizione al [proof-of-stake](#pos), riducendo le probabilità di una [diramazione](#hard-fork). La bomba di difficoltà è stata deprecata con la transizione alla [proof-of-stake](/roadmap/merge).
-
-### firma digitale {#digital-signatures}
-
-Breve stringa di dati che un utente produce per un documento utilizzando una [chiave privata](#private-key) in modo tale che chiunque disponga della corrispondente [chiave pubblica](#public-key), della firma e del documento possa verificare che (1) il documento è stato "firmato" dal proprietario di quella chiave privata e (2) il documento non è stato modificato dopo essere stato firmato.
+
-### scoperta {#discovery}
-
-Il processo per cui un nodo di Ethereum trova altri nodi a cui connettersi.
-
-### tabella di hash distribuita (DHT) {#distributed-hash-table}
-
-Una struttura di dati contenente coppie `(key, value)` usate dai nodi di Ethereum per identificare peer a cui connettersi e determinare quali protocolli usare per comunicare.
-
-### doppia spesa {#double-spend}
-
-Una diramazione deliberata della blockchain in cui un utente con una quantità sufficientemente consistente di potere di mining/stake invia una transazione spostando valuta al di fuori della catena (es. uscendo con moneta legale o effettuando un acquisto off-chain), quindi riorganizzando la blockchain per rimuovere quella transazione. Una doppia spesa riuscita lascia l'utente malevolo con le risorse sia sulla catena sia al di fuori di essa.
-
## E {#section-e}
-### algoritmo di firma digitale della curva ellittica (ECDSA) {#ecdsa}
-
-Algoritmo crittografico utilizzato da Ethereum per garantire che i fondi possano essere spesi solo dai loro proprietari. È il metodo preferito per la creazione di chiavi pubbliche e private. Rilevante per la generazione degli [indirizzi](#address) del conto e la verifica della [transazione](#transaction).
-
-### crittografia {#encryption}
-
-La crittografia è la conversione di dati elettronici in una forma non leggibile da nessuno tranne che dal titolare della chiave di decodifica corretta.
-
-### entropia {#entropy}
-
-Nel contesto della crittografia, mancanza di prevedibilità o livello di casualità. Durante la generazione di informazioni segrete, come le [chiavi private](#private-key), gli algoritmi si basano solitamente su una fonte di alta entropia per assicurarsi che l'output sia imprevedibile.
-
-### epoca {#epoch}
-
-Un periodo di 32 [slot](#slot), ogni slot è di 12 secondi, per un totale di 6,4 minuti. Le [commissioni](#committee) di validazione vengono mescolate ogni epoca per motivi di sicurezza. Ogni epoca ha un'opportunità per [finalizzare](#finality) la catena. Ad ogni validatore vengono assegnate nuove responsabilità all'inizio di ogni epoca.
-
-
- Proof of Stake
-
-
-### equivoco {#equivocation}
-
-Un validatore che invia due messaggi contraddittori. Un semplice esempio è il mittente di una transazione che invia due transazioni con lo stesso nonce. Un altro è un propositore di un blocco che propone due blocchi alla stessa altezza del blocco (o per lo stesso slot).
-
-### Eth1 {#eth1}
-
-'Eth1' è un termine che si riferiva alla Rete principale di Ethereum, la blockchain di Proof-of-Work esistente. Questo termine è stato abbandonato a favore di 'livello di esecuzione'. [Scopri di più su questo cambio di nome](https://blog.ethereum.org/2022/01/24/the-great-eth2-renaming/).
-
-
- Maggiori informazioni sugli aggiornamenti di Ethereum
-
-
-### Eth2 {#eth2}
+
-'Eth2' è un termine che si riferiva a una serie di aggiornamenti del protocollo Ethereum, inclusa la transizione di Ethereum al Proof-of-Stake. Questo termine è stato abbandonato a favore di "livello di consenso". [Scopri di più su questo cambio di nome](https://blog.ethereum.org/2022/01/24/the-great-eth2-renaming/).
+
-
- Maggiori informazioni sugli aggiornamenti di Ethereum
-
+
-### Proposta di miglioramento di Ethereum (EIP) {#eip}
+
-Un documento progettuale che fornisce informazioni alla community Ethereum, descrivendo una nuova funzionalità proposta, i processi o l'ambiente (vedi [ERC](#erc)).
+
-
- Introduzione alle EIP
-
+
-### Ethereum Name Service (ENS) {#ens}
+
-Il registro ENS è un unico [contratto](#smart-contract) centrale che fornisce una mappatura tra nomi di dominio, proprietari e resolver, come descritto in [EIP](#eip) 137.
+
-[Ulteriori informazioni su ens.domains](https://ens.domains)
+
-### client di esecuzione {#execution-client}
+
-I client di esecuzione (precedentemente noti come "client Eth1"), come Besu, Erigon, go-ethereum, Nethermind, sono incaricati di elaborare e trasmettere le transazioni, nonché di gestire lo stato di Ethereum. Eseguono i calcoli per ogni transazione nella [Macchina Virtuale di Ethereum](#evm) per assicurarsi che le regole del protocollo siano seguite.
+
-### livello di esecuzione {#execution-layer}
+
-Il livello di esecuzione di Ethereum è la rete dei [client di esecuzione](#execution-client).
+
-### conto posseduto esternamente (EOA) {#eoa}
+
-I conti posseduti esternamente (Externally owned accounts – EOA) sono [conti](#account) controllati da [chiavi private](#private-key), generate tipicamente usando una [frase di seed](#hd-wallet-seed). Al contrario dei contratti intelligenti, gli EOA sono conti privi di qualunque codice associato. Tipicamente, questi conti sono gestiti con un [portafoglio](#wallet).
+
-### richiesta di commenti di Ethereum (ERC) {#erc}
+
-Etichetta assegnata ad alcune [EIP](#eip) per tentare di definire uno standard specifico per l'uso di Ethereum.
+
-
- Introduzione alle EIP
-
-
-### Ethash {#ethash}
-
-Un algoritmo [proof-of-work](#pow) usato su Ethereum prima che passasse al [Proof-of-Stake](#pos).
-
-[Leggi altro](/developers/docs/consensus-mechanisms/pow/mining-algorithms/ethash)
-
-### ether {#ether}
-
-Criptovaluta nativa usata dall'ecosistema di Ethereum, che copre i costi del [carburante](#gas) per l'esecuzione delle transazioni. Indicata anche come ETH o con il simbolo Ξ, il carattere greco maiuscolo Xi.
-
-
- Valuta del nostro futuro digitale
-
-
-### eventi {#events}
-
-Consentono l'uso delle risorse di registrazione dell'[EVM](#evm). Le [dapp](#dapp) possono rimanere in attesa di eventi e usarli per innescare dei callback JavaScript nell'interfaccia utente.
-
-
- Eventi e registri
-
-
-### Macchina Virtuale Ethereum (EVM) {#evm}
-
-Macchina virtuale basata su stack che esegue il [bytecode](#bytecode). In Ethereum, il modello di esecuzione specifica in che modo lo stato di sistema viene alterato in base a una serie di istruzioni bytecode e una piccola tupla di dati ambientali. È specificato tramite un modello formale di macchina a stati virtuale.
-
-
- Macchina virtuale Ethereum
-
-
-### linguaggio assembly dell'EVM {#evm-assembly-language}
-
-Modulo leggibile dall'uomo di [bytecode](#bytecode) dell'EVM.
+
## F {#section-f}
-### funzione di fallback {#fallback-function}
-
-Funzione predefinita chiamata in assenza di dati o di un nome di funzione dichiarato.
-
-### faucet {#faucet}
-
-Un servizio fornito tramite [contratto intelligente](#smart-contract) che dispensa fondi nella forma di ether di prova gratuiti, utilizzabili su una rete di prova.
+
-
- Faucet della rete di prova
-
+
-### finalità {#finality}
+
-La finalità è la garanzia che una serie di transazioni non cambieranno né saranno annullate prima di un dato periodo.
+
-
- Finalità del Proof of Stake
-
+
-### finney {#finney}
+
-Un taglio dell'[ether](#ether). 1 finney = 1015 [wei](#wei). 103 finney = 1 ether.
+
-### diramazione {#fork}
-
-Cambio nel protocollo che causa la creazione di una catena alternativa o divergenza temporale in due percorsi potenziali di un blocco.
-
-### algoritmo di scelta della diramazione {#fork-choice-algorithm}
-
-L'algoritmo usato per identificare la testa della blockchain. Al livello d'esecuzione, la testa della catena è identificata come quella con la maggiore difficoltà totale alle spalle. Questo significa che la vera testa della catena è quella che ha richiesto il maggior carico di lavoro per essere minata. Sul livello di consenso, l'algoritmo osserva le attestazioni accumulate dai validatori ([LMD_GHOST](#lmd-ghost)).
-
-### prova di frode {#fraud-proof}
-
-Modello di sicurezza per determinate soluzioni di [livello 2](#layer-2) in cui, per aumentare la velocità, viene eseguito il [roll up](#rollups) delle transazioni in batch e poi queste ultime vengono inviate a Ethereum come una sola transazione. Sono considerate valide ma sono contestabili se si sospetta una frode. In questo caso, una prova di frode eseguirà la transazione per controllare se si sia effettivamente verificata una frode. Questo metodo aumenta la quantità di transazioni possibili mantenendo allo stesso tempo la sicurezza. Alcuni [rollup](#rollups) usano [prove di validità](#validity-proof).
-
-
- Rollup ottimistici
-
-
-### frontier {#frontier}
-
-Fase di sviluppo di test iniziale di Ethereum, durata dal luglio 2015 al marzo 2016.
+
## G {#section-g}
-### carburante {#gas}
-
-Un carburante virtuale usato su Ethereum per eseguire i contratti intelligenti. L'[EVM](#evm) usa un meccanismo di contabilità per misurare il consumo di carburante e limitare il consumo delle risorse informatiche (vedi [Turing completo](#turing-complete)).
+
-
- Gas e Commissioni
-
+
-### limite del carburante {#gas-limit}
+
-La massima quantità di [carburante](#gas) consumabile da una [transazione](#transaction) o da un [blocco](#block).
+
-### prezzo del carburante {#gas-price}
+
-Prezzo in ether di un'unità di carburante specificata in una transazione.
-
-### blocco genesi {#genesis-block}
-
-Il primo blocco in una [blockchain](#blockchain), usato per inizializzare una determinata rete e la sua criptovaluta.
-
-### geth {#geth}
-
-Go Ethereum. Una delle implementazioni più importanti del protocollo Ethereum, scritta in Go.
-
-[Ulteriori informazioni su geth.ethereum.org](https://geth.ethereum.org/)
-
-### gwei {#gwei}
-
-Abbreviazione di gigawei, un taglio dell'[ether](#ether), comunemente usato per indicare il prezzo del [carburante](#gas). 1 gwei = 109 [wei](#wei). 109 gwei = 1 ether.
+
## H {#section-h}
-### hard fork {#hard-fork}
-
-Divergenza permanente nella [blockchain](#blockchain); detta anche "cambiamento hard-forking". Si verifica comunemente quando i nodi non aggiornati non possono convalidare i blocchi creati dai nodi aggiornati che seguono le [regole di consenso](#consensus-rules) più recenti. Da non confondere con diramazione (fork), soft fork, software fork o Git fork.
+
-### hash {#hash}
+
-Fingerprint di lunghezza fissa di input di dimensione variabile, prodotto da una funzione hash. (Vedi [keccak-256](#keccak-256)).
+
-### hashrate {#hash-rate}
-
-Il numero di calcoli di hash effettuati al secondo dai computer che eseguono il software di mining.
-
-### portafoglio HD {#hd-wallet}
-
-[Portafoglio](#wallet) che usa la creazione della chiave deterministica gerarchica (HD) e il protocollo di trasferimento.
-
-[Ulteriori informazioni su github.com](https://github.com/bitcoin/bips/blob/master/bip-0032.mediawiki)
-
-### seed del portafoglio HD {#hd-wallet-seed}
-
-Valore usato per generare la [chiave privata](#private-key) principale e il codice della catena principale per un [portafoglio](#wallet) HD. Il seed del portafoglio è rappresentabile con parole mnemoniche, in modo da facilitare la copia, il backup e il ripristino delle chiavi private.
-
-### homestead {#homestead}
-
-La seconda fase di sviluppo di Ethereum, lanciata nel marzo 2016 sul blocco 1.150.000.
+
## I {#section-i}
-### indice {#index}
-
-Una struttura di rete pensata per ottimizzare l'interrogazione di informazioni da tutta la [blockchain](#blockchain) fornendo un percorso efficiente alla sua sorgente di archiviazione.
-
-### Inter-exchange Client Address Protocol (ICAP) {#icap}
-
-Una codifica degli indirizzi di Ethereum, parzialmente compatibile con la codifica IBAN (International Bank Account Number), offrendo una codifica versatile, controllata e interoperabile per gli indirizzi di Ethereum. Gli indirizzi ICAP usano un nuovo codice IBAN pseudo-nazionale, XE, che sta per "eXtended Ethereum", come nelle valute non giurisdizionali (es. XBT, XRP, XCP).
-
-### Ice Age {#ice-age}
-
-[Diramazione permanente](#hard-fork) di Ethereum sul blocco 200.000 per introdurre un aumento esponenziale della [difficoltà](#difficulty) (o [bomba di difficoltà](#difficulty-bomb)), che motivi una transizione al [Proof-of-Stake](#pos).
-
-### ambiente di sviluppo integrato (IDE) {#ide}
-
-Interfaccia utente che solitamente combina un editor di codice, un compilatore, un ambiente runtime e un debugger.
-
-
- Ambienti di sviluppo integrati
-
-
-### problema del codice distribuito immutabile {#immutable-deployed-code-problem}
+
-Una volta distribuito il codice di un [contratto](#smart-contract) (o di una [libreria](#library)), questo diventa immutabile. Le pratiche standard di sviluppo dei software si affidano al poter risolvere i possibili bug e aggiungere nuove funzionalità, quindi, questo rappresenta una sfida per lo sviluppo dei contratti intelligenti.
+
-
- Distribuire i Contratti Intelligenti
-
+
-### transazione interna {#internal-transaction}
+
-Una [transazione](#transaction) inviata da un [conto del contratto](#contract-account) a un altro, o a un [EOA](#eoa) (vedi [messaggio](#message)).
+
-### emissione
-
-Il conio di nuovo ether per ricompensare la proposta, l'attestazione e la segnalazione del blocco.
-
## K {#section-k}
-### funzione di derivazione della chiave (KDF) {#kdf}
-
-Detta anche "algoritmo di allungamento della password", è usata dai formati [keystore](#keystore-file) per proteggere contro attacchi di forza bruta, dictionary e rainbow table ai danni della crittografia di una passphrase, mediante continuo hashing della passphrase.
-
-
- Sicurezza del contratto intelligente
-
-
-### keystore {#keyfile}
+
-Ogni coppia chiave privata/indirizzo del conto esiste come un singolo file chiave in un client di Ethereum. Questi sono file di testo JSON contenenti la chiave privata crittografata del conto, che può esser decrittografata solo con la password inserita alla creazione del conto.
+
-### keccak-256 {#keccak-256}
-
-Funzione crittografica dell'[hash](#hash) usata in Ethereum. Keccak-256 è stata standardizzata come [SHA](#sha)-3.
+
## L {#section-l}
-### livello 2 {#layer-2}
-
-Un'area di sviluppo incentrata sui miglioramenti di stratificazione in aggiunta al protocollo Ethereum. Questi miglioramenti riguardano la velocità delle [transazioni](#transaction), il minor importo delle [commissioni sulle transazioni](#transaction-fee) e la privacy delle transazioni.
-
-
- Livello 2
-
-
-### LevelDB {#level-db}
+
-Store open source chiave-valore su disco, implementato come [libreria](#library) leggera, con scopo singolo, con binding con molte piattaforme.
+
-### libreria {#library}
+
-Tipo speciale di [contratto](#smart-contract) privo di funzioni pagabili, funzione di fallback e storage dati. Non può quindi ricevere o contenere ether né archiviare dati. Una libreria funge da codice distribuito precedentemente che altri contratti possono chiamare per calcoli in sola lettura.
-
-
- Librerie dei Contratti Intelligenti
-
-
-### client leggero {#light-client}
-
-Client di Ethereum che non memorizza una copia locale della [blockchain](#blockchain) né convalida i blocchi e le [transazioni](#transaction). Offre le funzioni di un [portafoglio](#wallet) e può creare e trasmettere transazioni.
+
-### LMD_GHOST {#lmd-ghost}
-
-L'[algoritmo di scelta della diramazione](#fork-choice-algorithm) usato dai client del consenso di Ethereum per identificare la testa della catena. LMD-GHOST è un acronimo che sta per "Latest Message Driven Greediest Heaviest Observed SubTree" (Ultimo albero secondario osservato guidato dal messaggio più avido e più pesante), che significa che la testa della catena è il blocco col maggior accumulo di [attestazioni](#attestation) nella sua storia.
-
## M {#section-m}
-### Rete principale {#mainnet}
-
-In inglese mainnet, abbreviazione di "main network", è la [blockchain](#blockchain) Ethereum pubblica principale. ETH reali, valore reale e conseguenze reali. Viene detta livello 1 quando si parla di soluzioni di scalabilità di [livello 2](#layer-2). (Vedi anche [rete di prova](#testnet)).
-
-
- Reti Ethereum
-
-
-### memory-hard {#memory-hard}
+
-Le funzioni memory-hard (a uso intensivo di memoria) sono processi che sperimentano una riduzione drastica della velocità o della fattibilità quando la quantità di memoria disponibile cala anche lievemente. Un esempio è l'algoritmo di mining di Ethereum, [Ethash](#ethash).
+
-### Albero di Merkle Patricia {#merkle-patricia-tree}
+
-Struttura dati usata in Ethereum per memorizzare in modo efficiente coppie chiave-valore.
+
-### messaggio {#message}
+
-Una [transazione interna](#internal-transaction) che non è mai serializzata e inviata solo all'interno dell'[EVM](#evm).
+
-### chiamata di messaggio {#message-call}
-
-Atto di passare un [messaggio](#message) da un conto a un altro. Se il conto di destinazione è associato al codice dell'[EVM](#evm), allora la VM sarà avviata con lo stato di quel messaggio e il messaggio che ha avviato l'azione.
-
-### Metropolis {#metropolis}
-
-Terza fase di sviluppo di Ethereum, lanciata nell'ottobre 2017.
-
-### mining {#mining}
-
-Il processo di hashing ripetuto dell'intestazione di un blocco mentre incrementa un [nonce](#nonce) fino a quando il risultato non contiene un numero arbitrario di zeri binari principali. Questo è il processo con il quale i nuovi [blocchi](#block) vengono aggiunti a una blockchain [proof-of-work](#blockchain). Ethereum era protetto così, prima di passare al [Proof-of-Stake](#pos).
-
-### miner {#miner}
-
-[Nodo](#node) della rete che trova [Proof-of-Work](#pow) validi per i nuovi blocchi, tramite passaggi ripetuti di hash (vedi [Ethash](#ethash)). I miner non fanno più parte di Ethereum: sono stati sostituiti dai validatori quando Ethereum è passato al [Proof-of-Stake](#pos).
-
-
- Mining
-
-
-### conio {#mint}
-
-Il conio è il processo di creazione di nuovi token e la loro messa in circolazione così che siano utilizzabili. È un meccanismo decentralizzato per creare un nuovo token senza coinvolgere l'autorità centrale.
+
## N {#section-n}
-### rete {#network}
-
-In riferimento alla rete Ethereum, rete peer-to-peer che propaga le transazioni e i blocchi a ogni nodo di Ethereum (partecipante alla rete).
-
-
- Reti
-
-
-### hashrate della rete {#network-hashrate}
-
-L'[hashrate](#hashrate) collettivo prodotto da un'intera rete di mining. Il mining su Ethereum è stato disattivato quando Ethereum è passato al [Proof-of-Stake](#pos).
-
-### token non fungibile (NFT) {#nft}
-
-Detto anche "atto" (deed), si tratta di uno standard token introdotto dalla proposta ERC-721. Gli NFT sono tracciabili e scambiabili, ma ogni token è univoco e distinto; non sono intercambiabili come gli ETH e i [token ERC-20](#token-standard). Gli NFT possono rappresentare la proprietà delle risorse digitali o fisiche.
-
-
- Token Non Fungibili (NFT)
-
-
- Standard di token non fungibile ERC-721
-
+
-### nodo {#node}
+
-Client software che partecipa alla rete.
+
-
- Nodi e client
-
+
-### nonce {#nonce}
-
-In termini crittografici è un valore che può essere usato una volta sola. Il nonce di un conto è un contatore di transazioni in ogni conto, utilizzato per prevenire gli attacchi replay.
+
## O {#section-o}
-### blocco ommer (zio) {#ommer}
-
-Nel momento in cui un [miner](#miner) di Proof-of-Work trova un [blocco](#block) valido, un altro miner potrebbe aver pubblicato un blocco concorrente e averlo aggiunto alla fine della blockchain. Questo blocco valido, ma non aggiornato, può essere incluso dai nuovi blocchi come _ommer_ e ricevere una ricompensa parziale per i blocchi. Il termine "ommer" è il termine preferito, neutro dal punto di vista del genere, per lo stesso livello di un blocco padre, ma a volte viene anche indicato come "zio". Ciò era rilevante per Ethereum quando era una rete di [Proof-of-Work](#pow), ma gli ommer non sono una caratteristica dell'Ethereum [Proof-of-Stake](#pos), perché in ogni slot è selezionato precisamente un propositore del blocco.
-
-### rollup ottimistico {#optimistic-rollup}
-
-Un [rollup](#rollups) di transazioni che usa le [prove di frode](#fraud-proof) per offrire un maggiore volume di transazione del [livello 2](#layer-2) usando la sicurezza fornita dalla [Rete principale](#mainnet) (livello 1). A differenza di [Plasma](#plasma), una soluzione simile di livello 2, i rollup ottimistici possono gestire tipi di transazioni più complessi. Tutto ciò è possibile nell'[EVM](#evm). Hanno problemi di latenza rispetto ai [rollup a conoscenza zero](#zk-rollups) perché una transazione può essere contestata tramite la prova di frode.
-
-
- Rollup ottimistici
-
+
-### Oracolo {#oracle}
+
-Un oracolo è un ponte tra la blockchain [blockchain](#blockchain) e il mondo reale. Agiscono da [API](#api) sulla catena, interrogabili per informazioni e utilizzabili nei [contratti intelligenti](#smart-contract).
-
-
- Oracoli
-
+
## P {#section-p}
-### parità {#parity}
-
-Una delle implementazioni interoperabili più importanti del software del client di Ethereum.
-
-### peer {#peer}
-
-Computer connessi che eseguono il software del client di Ethereum, caratterizzati da copie della [blockchain](#blockchain) identiche.
-
-### rete peer-to-peer {#peer-to-peer-network}
-
-Una rete di computer ([peer](#peer)) che collettivamente sono capaci di eseguire funzionalità senza il bisogno di servizi centralizzati e basati sul server.
-
-### Plasma {#plasma}
-
-Una soluzione di scalabilità esterna alla catena che usa le [prove di frode](#fraud-proof), come i [rollup ottimistici](#optimistic-rollups). Plasma è limitato a transazioni semplici, come trasferimenti e scambi basilari di token.
-
-
- Plasma
-
-
-### chiave privata (chiave segreta) {#private-key}
-
-Un numero segreto che consente agli utenti di Ethereum di provare la proprietà di un conto o dei contratti, producendo una firma digitale (vedi [chiave pubblica](#public-key), [indirizzo](#address), [ECDSA](#ecdsa)).
-
-### catena privata {#private-chain}
+
-Una blockchain interamente privata ha accesso con autorizzazioni, non è disponibile all'uso pubblico.
+
-### proof-of-stake (PoS) {#pos}
+
-Metodo con cui un protocollo blockchain di criptovalute mira a raggiungere il [consenso](#consensus) distribuito. Il proof-of-stake chiede agli utenti di dimostrare la proprietà di una determinata quantità di criptovalute (lo "stake", o quota, nella rete) per poter partecipare alla convalida delle transazioni.
+
-
- proof-of-stake
-
+
-### Proof-of-Work (PoW) {#pow}
+
-Un'informazione (la prova) che richiede calcoli significativi per essere trovata.
+
-
- proof-of-work
-
-
-### chiave pubblica {#public-key}
-
-Numero derivato tramite una funzione unidirezionale da una [chiave privata](#private-key), che può essere condiviso pubblicamente e utilizzato da chiunque per verificare una firma digitale eseguita con la corrispondente chiave privata.
+
## R {#section-r}
-### ricevuta {#receipt}
-
-Dati restituiti da un client Ethereum per rappresentare il risultato di una particolare [transazione](#transaction), che includono un [hash](#hash) della transazione, il relativo numero di [blocco](#block), il quantitativo di [carburante](#gas) utilizzato e, in caso di distribuzione di uno [contratto intelligente](#smart-contract), [l'indirizzo](#address) del contratto.
-
-### attacco con codice rientrante {#re-entrancy-attack}
-
-Attacco che consiste nella chiamata, da parte del contratto di un aggressore, alla funzione del contratto della vittima in modo che, durante l'esecuzione, la vittima chiami di nuovo il contratto dell'aggressore, in modo ricorsivo. Questo può causare, ad esempio, il furto di fondi perché vengono ignorate le parti del contratto della vittima che aggiornano i saldi o contano gli importi prelevati.
+
-
- Codice rientrante
-
+
-### ricompensa {#reward}
+
-Quantità di ether inclusa in ogni nuovo blocco come ricompensa da parte della rete al [miner](#miner) che ha trovato la soluzione [Proof-of-Work](#pow).
+
-### prefisso di lunghezza ricorsiva (RLP) {#rlp}
+
-Standard di codifica progettato dagli sviluppatori di Ethereum per codificare e serializzare oggetti (strutture di dati) di complessità e lunghezza arbitrarie.
-
-### rollup {#rollups}
-
-Tipo di soluzione per il passaggio al [livello 2](#layer-2) che raggruppa più transazioni e le invia alla [catena principale Ethereum](#mainnet) in una sola transazione. Consente di ridurre i costi del [carburante](#gas) e di aumentare il volume delle [transazioni](#transaction). I rollup possono essere di tipo ottimistico o a conoscenza zero. Utilizzano diversi metodi di sicurezza per offrire vantaggi in termini di scalabilità.
-
-
- Rollup
-
+
-### RPC {#rpc}
-
-La **Chiamata di procedura remota (RPC)** è un protocollo utilizzato da un programma per richiedere un servizio da un programma situato su un altro computer in una rete, senza dover comprendere i dettagli della rete.
-
## S {#section-s}
-### Secure Hash Algorithm (SHA) {#sha}
-
-Famiglia di funzioni hash crittografiche pubblicata dal National Institute of Standards and Technology (NIST).
-
-### Serenity {#serenity}
-
-La fase dello sviluppo di Ethereum che ha dato il via a una serie di aggiornamenti di scalabilità e sostenibilità, precedentemente nota come "Ethereum 2.0" o "Eth2".
-
-
- Aggiornamenti di Ethereum
-
-
-### serializzazione {#serialization}
-
-Il processo di conversione di una struttura dati in una sequenza di byte.
-
-### shard/shard chain {#shard}
+
-Le shard chain sono sezioni discrete della blockchain totale per le quali possono essere responsabili serie secondarie di validatori. Questo offrirà maggiori volumi di transazioni a Ethereum e migliorerà la disponibilità dei dati per le soluzioni di [livello 2](#layer-2), come i [rollup ottimistici](#optimistic-rollups) e i [rollup ZK](#zk-rollups).
+
-
- Danksharding
-
+
-### sidechain {#sidechain}
+
-Una soluzione di scalabilità che usa una catena separata con [regole di consenso](#consensus-rules) differenti e spesso più veloci. Serve un ponte per connettere queste sidechain alla [Rete principale](#mainnet). Anche i [rollup](#rollups) usano le sidechain, ma operano invece in collaborazione con la [Rete principale](#mainnet).
+
-
- Sidechain
-
+
-### firma {#signing}
+
-Dimostrazione crittografica che una transazione è stata approvata dal titolare di una chiave privata specifica.
+
-### singleton {#singleton}
+
-Termine appartenente al contesto di programmazione che descrive un oggetto di cui può esistere solo un'istanza.
+
-### slasher {#slasher}
+
-Uno slasher è un'entità che scansiona le attestazioni alla ricerca di infrazioni suscettibile di slashing. I casi di slashing sono trasmessi alla rete, il propositore del blocco successivo somma la prova al blocco. Il propositore del blocco riceve poi una ricompensa per aver effettuato lo slashing del validatore malevolo.
+
-### slot {#slot}
+
-Periodo di tempo (12 secondi) in cui un nuovo blocco può essere proposto da un [validatore](#validator) nel sistema di [Proof-of-Stake](#pos). Uno slot potrebbe essere vuoto. 32 slot formano un'[epoca](#epoch).
+
-
- Proof-of-stake
-
+
-### contratto intelligente {#smart-contract}
+
-Un programma che opera sull'infrastruttura di calcolo di Ethereum.
+
-
- Introduzione ai Contratti Intelligenti
-
+
-### SNARK {#snark}
+
-Abbreviazione per "succinct non-interactive argument of knowledge (argomento di conoscenza non interattivo e succinto)", uno SNARK è un tipo di [prova a conoscenza zero](#zk-proof).
+
-
- Rollup a conoscenza zero
-
+
-### soft fork {#soft-fork}
+
-Una divergenza in una [blockchain](#blockchain) che si verifica quando le [regole di consenso](#consensus-rules) cambiano. A differenza di una [diramazione permanente o hard fork](#hard-fork), una soft fork è retrocompatibile; i nodi aggiornati possono validare i blocchi creati dai nodi non aggiornati a condizione che seguano le nuove regole di consenso.
-
-### Solidity {#solidity}
-
-Linguaggio di programmazione procedurale (imperativo) con sintassi simile a JavaScript, C++ o Java. Il linguaggio più popolare e più usato per i [contratti intelligenti](#smart-contract) di Ethereum. Creato dal dott. Gavin Wood.
-
-
- Solidity
-
-
-### Assembly inline Solidity {#solidity-inline-assembly}
-
-Linguaggio assembly dell'[EVM](#evm) in un programma [Solidity](#solidity). Il supporto di Solidity per l'assembly inline facilita la scrittura di determinate operazioni.
-
-### Spurious Dragon {#spurious-dragon}
-
-[Diramazione permanente (hard fork)](#hard-fork) della blockchain Ethereum, che si è verificata sul blocco 2.675.000 per affrontare più vettori di attacchi denial-of-service e cancellare lo stato (vedi [Tangerine Whistle](#tangerine-whistle)). È anche un meccanismo di protezione contro gli attacchi replay (vedi [nonce](#nonce)).
-
-### stablecoin {#stablecoin}
-
-Token [ERC-20](#token-standard) con un valore ancorato al valore di un'altra risorsa. Esistono stablecoin supportati da valute legali come dollari, metalli preziosi come l'oro e altre criptovalute come Bitcoin.
-
-
- ETH non è l'unica criptovaluta su Ethereum
-
-
-### staking {#staking}
-
-Depositare una quantità di [ether](#ether) (lo stake) per diventare validatore e proteggere la [rete](#network). Un validatore controlla [transazioni](#transaction) e propone [blocchi](#block) secondo un modello di consenso [Proof-of-Stake](#pos). Lo staking dà un incentivo economico per agire nel miglior interesse della rete. Si ottengono ricompense per svolgere i compiti di [validatore](#validator), ma si perdono quantità variabili di ETH se non si svolgono tali compiti.
-
-
- Fai staking con i tuoi ETH per diventare validatore di Ethereum
-
-
-### gruppo di staking {#staking-pool}
-
-Aggregazione degli ETH di più staker Ethereum, utilizzata per raggiungere il limite di 32 ETH necessari per attivare un insieme di chiavi di validazione. Un operatore di un nodo utilizza queste chiavi per partecipare al consenso e le [ricompense di blocco](#block-reward) sono divise tra gli staker partecipanti alla pool. I gruppi di staking o lo staking delegato non sono soluzioni native del protocollo Ethereum, ma molte soluzioni sono state costruite dalla comunità.
-
-
- Staking in pool
-
-
-### STARK {#stark}
-
-Abbreviazione per "scalable transparent argument of knowledge" (argomento trasparente scalabile di conoscenza), uno STARK è un tipo di [prova di conoscenza zero](#zk-proof).
-
-
- Rollup a conoscenza zero
-
-
-### stato {#state}
-
-Un'istantanea di tutti i saldi e dati in un dato momento sulla blockchain, normalmente riferita alla condizione a un blocco in particolare.
-
-### canali di stato {#state-channels}
-
-Soluzione di [livello 2](#layer-2) in cui un canale è configurato tra i partecipanti per eseguire transazioni liberamente e in modo economico. Alla [rete principale](#mainnet) viene inviata solo una [transazione](#transaction) per configurare e chiudere il canale. Questo consente un volume di transazioni molto elevato, ma richiede di conoscere il numero di partecipanti in anticipo e di bloccare i fondi.
-
-
- Canali di stato
-
-
-### super-maggioranza {#supermajority}
-
-Super-maggioranza è il termine dato a un importo superiore ai 2/3 (66%) dell'ether in staking totale che protegge Ethereum. Occorre un voto di super maggioranza affinché i blocchi siano [finalizzati](#finality) sulla Beacon Chain.
-
-### sincronizzazione {#syncing}
-
-Il processo di scaricare l'intera ultima versione della blockchain su un nodo.
-
-### commissione di sincronizzazione {#sync-committee}
-
-Una commissione di sincronizzazione è un gruppo selezionato casualmente di [validatori](#validator) che si aggiorna circa ogni 27 ore. Il loro scopo è aggiungere le proprie firme alle intestazioni dei blocchi validi. Le commissioni di sincronizzazione consentono ai [client leggeri](#light-client) di tenere traccia della testa della blockchain senza dover accedere all'intera serie del validatore.
-
-### szabo {#szabo}
-
-Un taglio dell'[ether](#ether). 1 szabo = 1012 [wei](#wei), 106 szabo = 1 ether.
+
## T {#section-t}
-### Tangerine Whistle {#tangerine-whistle}
-
-Una [diramazione permanente](#hard-fork) della blockchain di Ethereum, verificatasi al blocco 2.463.000 per modificare il calcolo del [carburante](#gas) per alcune operazioni I/O ad alta intensità ed eliminare lo stato accumulato da un attacco denial-of-service, che ha sfruttato il basso costo del carburante di tali operazioni.
-
-### difficoltà totale terminale (TTD) {#terminal-total-difficulty}
+
-La difficoltà totale è la somma della difficoltà di mining di Ethash per tutti i blocchi fino a un dato punto nella blockchain. La difficoltà totale terminale è un valore specifico per la difficoltà totale che era usato come innesco per i client d'esecuzione per disattivare il proprio mining e bloccare le funzioni di gossip, consentendo alla rete di passare al Proof-of-Stake.
+
-### rete di prova {#testnet}
+
-Contrazione che sta per "rete di prova" (test network), una rete usata per simulare il comportamento della rete principale di Ethereum (vedi [rete principale](#mainnet)).
+
-
- Testnet
-
+
-### token {#token}
+
-Un bene virtuale scambiabile, definito nei contratti intelligenti sulla blockchain di Ethereum.
-
-### standard token {#token-standard}
-
-Introdotto dalla proposta dell'ERC-20, fornisce una struttura standardizzata del [contratto intelligente](#smart-contract) per dei token fungibili. I token dello stesso contratto sono tracciabili, scambiabili e intercambiabili, a differenza degli [NFT](#nft).
-
-
- Standard token ERC-20
-
-
-### transazione {#transaction}
-
-Dati inviati alla Blockchain di Ethereum, firmati da un [conto](#account) d'origine, che puntano a un [indirizzo](#address) specifico. La transazione contiene metadati, come il suo [del carburante](#gas-limit).
-
-
- Transazioni
-
-
-### commissione sulle transazioni {#transaction-fee}
-
-Commissione da pagare ogni volta che si usa la rete Ethereum. Esempi includono l'invio di fondi da un [portafoglio](#wallet) o un'interazione con una [dapp](#dapp), come lo scambio di token o l'acquisto di un oggetto collezionabile. Può essere paragonata a una commissione di servizio, e cambia in base a quanto è congestionata la rete, perché i [validatori](#validator), cioè i responsabili dell'elaborazione della transazione, danno verosimilmente priorità alle transazioni con commissioni più elevate, quindi la congestione fa salire il prezzo.
-
-A livello tecnico, la commissione sulle transazioni fa riferimento a quanto [carburante](#gas) richiede la transazione.
-
-La riduzione delle commissioni sulle transazioni è un argomento di grande interesse in questo momento. Vedi [livello 2](#layer-2).
-
-### mancanza di fiducia {#trustlessness}
-
-La capacità di una rete di mediare le transazioni senza che alcuna delle parti coinvolte debba affidarsi a una terza parte.
-
-### Turing completo {#turing-complete}
-
-Concetto che prende il nome dal matematico e informatico inglese Alan Turing. Un sistema di regole per la manipolazione dei dati (come un set di istruzioni per computer, un linguaggio di programmazione o un automa cellulare) è detto "Turing completo" o "universale dal punto di vista computazionale" se può essere utilizzato per simulare qualsiasi macchina di Turing.
+
## V {#section-v}
-### validatore {#validator}
-
-[Nodo](#node) in un sistema [Proof-of-Stake](#pos) responsabile della memorizzazione dei dati, dell'elaborazione delle transazioni e dell'aggiunta di nuovi blocchi alla blockchain. Per attivare il software validatore, è necessario essere in grado di fare [staking](#staking) di 32 ETH.
-
-
- Proof-of-Stake
-
-
- Staking in Ethereum
-
-
-### ciclo di vita del validatore {#validator-lifecycle}
+
-La sequenza di stati in cui può esistere un validatore. Tra questi vi sono:
+
-- depositato: il validatore ha depositato almeno 32 ETH al [contratto di deposito](#deposit-contract)
-- in sospeso: il validatore è nella coda di attivazione, in attesa di essere votato nella rete dai validatori esistenti
-- attivo: attualmente attesta e propone blocchi
-- in slashing: il validatore si è comportato in modo disonesto ed è stato sottoposto a slashing
-- in uscita: il validatore è stato segnalato per essere uscito dalla rete, volontariamente o perché espulso.
+
-### prova di validità {#validity-proof}
+
-Modello di sicurezza per determinate soluzioni di [livello 2](#layer-2) in cui, per aumentare la velocità, viene eseguito il [rollup](/#rollups) delle transazioni in blocco e poi queste ultime vengono inviate a Ethereum come una sola transazione. Il calcolo della transazione viene effettuato al di fuori della catena e poi fornito alla catena principale con una prova di validità. Questo metodo aumenta la quantità di transazioni possibili mantenendo allo stesso tempo la sicurezza. Alcuni [rollup](#rollups) usano le [prove di frode](#fraud-proof).
-
-
- Rollup a conoscenza zero
-
-
-### validium {#validium}
-
-Una soluzione esterna alla catena che usa le [prove di validità](#validity-proof) per migliorare il volume delle transazioni. A differenza dei [rollup a conoscenza zero](#zk-rollup), i dati di Validium non sono archiviati sulla [Rete principale](#mainnet) (livello 1).
-
-
- Validium
-
-
-### Vyper {#vyper}
-
-Linguaggio di programmazione di alto livello con sintassi simile a Python. Pensato per avvicinarsi a un linguaggio funzionale puro. Creato da Vitalik Buterin.
-
-
- Vyper
-
+
## W {#section-w}
-### portafoglio {#wallet}
-
-Software che contiene [chiavi private](#private-key). Utilizzato per accedere ai [conti](#account), permetterne il controllo e interagire con i [contratti intelligenti](#smart-contract). Per migliorare la sicurezza, le chiavi non devono essere memorizzate in un portafoglio, ma possono essere recuperate offline (ad esempio da una scheda di memoria o su carta). Nonostante il nome, i portafogli non contengono mai le monete o i token reali.
-
-
- Portafogli Ethereum
-
+
-### Web3 {#web3}
+
-Terza versione del Web. Proposto per la prima volta dal dott. Gavin Wood, il Web3 rappresenta una nuova visione per le applicazioni web: dalle applicazioni centralizzate e gestite, alle applicazioni create sulla base di protocolli decentralizzati (vedi [dApp](#dapp)).
-
-
- Confronto tra Web2 e Web3
-
-
-### wei {#wei}
-
-Il taglio più piccolo dell'[ether](#ether). 1018 wei = 1 ether.
+
## Z {#section-z}
-### indirizzo zero {#zero-address}
-
-Un indirizzo di Ethereum, composto interamente da zero, utilizzato frequentemente come un indirizzo per rimuovere token dalla circolazione di proprietà. Occorre fare una distinzione tra token rimossi in modo formale dall’indice di un contratto intelligente tramite il metodo di burn() e i token che vengono inviati a questo indirizzo.
-
-### prova a conoscenza zero {#zk-proof}
-
-Una prova a conoscenza zero è un metodo crittografico che consente a un individuo di provare l'autenticità di una dichiarazione senza trasmettere alcuna informazione aggiuntiva.
-
-
- Rollup a conoscenza zero
-
-
-### rollup zero-knowledge {#zk-rollup}
+
-Un [rollup](#rollups) di transazioni che usa le [prove di validità](#validity-proof) per offrire un maggiore volume di transazioni del [livello 2](#layer-2) usando la sicurezza fornita dalla [Rete principale](#mainnet) (livello 1). Anche se non sono in grado di gestire tipi di transazioni complessi, come i [rollup ottimistici](#optimistic-rollups), non hanno problemi di latenza perché la validità delle transazioni è già dimostrata quando vengono inviate.
+
-
- Rollup a conoscenza zero
-
+
@@ -1126,6 +442,6 @@ _Fornito in parte da [Mastering Ethereum](https://github.com/ethereumbook/ethere
## Contribuisci a questa pagina {#contribute-to-this-page}
-Manca qualcosa? Hai trovato errori? Aiutaci a migliorare contribuendo a questo glossario su GitHub!
+Manca qualcosa? Hai trovato qualcosa di sbagliato? Aiutaci a migliorare contribuendo a questo glossario su GitHub!
[Scopri di più su come contribuire](/contributing/adding-glossary-terms)
diff --git a/public/content/translations/it/guides/how-to-create-an-ethereum-account/index.md b/public/content/translations/it/guides/how-to-create-an-ethereum-account/index.md
index 316012959d4..0e46f872664 100644
--- a/public/content/translations/it/guides/how-to-create-an-ethereum-account/index.md
+++ b/public/content/translations/it/guides/how-to-create-an-ethereum-account/index.md
@@ -20,7 +20,7 @@ Un portafoglio è un'applicazione che ti aiuta a gestire il tuo conto di Ethereu
Se si è nuovi, è possibile selezionare il filtro "Senza conoscenza di criptovalute" nella pagina "Trova un portafoglio" per identificare i portafogli che dovrebbero includere tutte le caratteristiche necessarie adatte ai principianti.
-![filtra la selezione nella pagina "trova un portafoglio"](./wallet-box.png)
+![Filtra la selezione sulla pagina 'trova un portafoglio'](./wallet-box.png)
Esistono poi altri filtri del profilo per provvedere alle tue esigenze. Questi sono esempi di portafogli comunemente utilizzati - prima di fidarsi di qualsiasi software, è bene fare le proprie ricerche.
diff --git a/public/content/translations/it/guides/how-to-use-a-wallet/index.md b/public/content/translations/it/guides/how-to-use-a-wallet/index.md
index 1d17787cdfc..c539f9c2e48 100644
--- a/public/content/translations/it/guides/how-to-use-a-wallet/index.md
+++ b/public/content/translations/it/guides/how-to-use-a-wallet/index.md
@@ -6,7 +6,7 @@ lang: it
# Come utilizzare un portafoglio
-Impara come gestire tutte le funzioni di base di un portafoglio. Se non ne hai ancora uno, dai un'occhiata alla nostra guida [Come creare un conto di Ethereum](/guides/how-to-create-an-ethereum-account/).
+Impara come gestire tutte le funzioni di base di un portafoglio. Se ancora non ne possiedi uno, consulta [Come creare un conto di Ethereum](/guides/how-to-create-an-ethereum-account/).
## Apri il tuo portafoglio
@@ -51,7 +51,7 @@ Il tuo indirizzo sarà lo stesso in tutti i progetti di Ethereum. Non devi regis
1. Visita il sito web di qualsiasi progetto.
2. Se la pagina iniziale del progetto è una semplice descrizione statica del progetto, dovresti poter cliccare su un pulsante "Apri l'App" nel menu, che ti condurrà all'app web effettiva.
-3. Una volta nell'app, clicca su "Connettiti"
+3. Una volta nell'app, fai clic su "Connetti".
![Pulsante che consente all'utente di connettersi al sito web con un portafoglio](./connect1.png)
diff --git a/public/content/translations/it/history/index.md b/public/content/translations/it/history/index.md
index 04999c1fb7f..e1ac9e98755 100644
--- a/public/content/translations/it/history/index.md
+++ b/public/content/translations/it/history/index.md
@@ -27,11 +27,11 @@ Stai cercando i prossimi aggiornamenti di protocollo? [Scopri di più sui prossi
## 2023 {#2023}
-### Shanghai {#shanghai}
+### Shanghai-Capella ("Shapella") {#shapella}
-
+
-#### Riepilogo {#shanghai-summary}
+#### Riepilogo di Shanghai {#shanghai-summary}
L'aggiornamento di Shanghai ha portato i prelievi di staking al livello d'esecuzione. Insieme all'aggiornamento Capella, questo abiliterà i blocchi ad accettare le operazioni di prelievo, che consentono agli staker di prelevare i propri ETH dalla Beacon Chain al livello d'esecuzione.
@@ -49,13 +49,7 @@ L'aggiornamento di Shanghai ha portato i prelievi di staking al livello d'esecuz
- [Leggi le specifiche dell'aggiornamento Shanghai](https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/shanghai.md)
----
-
-### Capella {#capella}
-
-
-
-#### Riepilogo {#capella-summary}
+#### Riepilogo di Capella {#capella-summary}
L'aggiornamento di Capella è il terzo aggiornamento principale al livello del consenso (Beacon Chain) e ha abilitato i prelievi di staking. Capella è avvenuto contemporaneamente all'aggiornamento del livello di esecuzione di Shanghai, e ha reso disponibili le funzioni di prelievo da staking.
@@ -310,7 +304,8 @@ La diramazione Instanbul:
La diramazione Constantinople:
-- Ha assicurato che la blockchain non si bloccasse prima dell'[implementazione del Proof-of-Stake](#beacon-chain-genesis).
+- Ha ridotto le ricompense del [mining](/developers/docs/consensus-mechanisms/pow/mining/) dei blocchi da 3 a 2 ETH.
+- Ha assicurato che la blockchain non si bloccasse prima dell'[implementazione del proof-of-stake](#beacon-chain-genesis).
- Ha ottimizzato il costo del [carburante](/glossary/#gas) di certe azioni nell'[EVM](/developers/docs/ethereum-stack/#ethereum-virtual-machine).
- Ha aggiunto la capacità di interagire con gli indirizzi non ancora creati.
@@ -322,7 +317,7 @@ La diramazione Constantinople:
EIP-145 – ottimizza i costi di certe azioni su catena.
EIP-1014 – consente di interagire con gli indirizzi che devono ancora essere creati.
EIP-1052 – ottimizza i costi di certe azioni su catena.
-
EIP-1234 – si assicura che la blockchain non si congeli prima del proof-of-stake.
+
EIP-1234 – assicura che la blockchain non si congeli prima del proof-of-stake e riduce la ricompensa per blocco da 3 a 2 ETH.
@@ -422,7 +417,7 @@ La diramazione Tangerine Whistle è stata la prima risposta agli attacchi di den
#### Riepilogo {#dao-fork-summary}
-La diramazione OAD è stata pensata come risposta all'[attacco OAD del 2016](https://www.coindesk.com/learn/understanding-the-dao-attack/), durante il quale un contratto [OAD](/glossary/#dao) non sicuro fu svuotato di oltre 3,6 milioni di ETH in un solo attacco. La diramazione ha spostato i fondi dal contratto difettoso a un [nuovo contratto](https://etherscan.io/address/0xbf4ed7b27f1d666546e30d74d50d173d20bca754) con una sola funzione: il prelievo. Chi aveva perso fondi ha potuto prelevare 1 ETH per ogni 100 token OAD nel proprio portafoglio.
+La diramazione OAD è stata pensata come risposta all'[attacco OAD del 2016](https://www.coindesk.com/learn/understanding-the-dao-attack/), durante il quale un contratto [OAD](/glossary/#dao) non protetto è stato privato di oltre 3,6 milioni di ETH in un solo attacco. La diramazione ha spostato i fondi dal contratto difettoso a un [nuovo contratto](https://etherscan.io/address/0xbf4ed7b27f1d666546e30d74d50d173d20bca754) con una sola funzione: il prelievo. Chi aveva perso fondi ha potuto prelevare 1 ETH per ogni 100 token OAD nel proprio portafoglio.
Questa iniziativa è stata votata dalla community di Ethereum. Ogni titolare di ETH ha potuto votare tramite una transazione su [una piattaforma di voto](https://web.archive.org/web/20170620030820/http://v1.carbonvote.com/). La decisione di creare la diramazione ha ottenuto oltre l'85% dei voti.
diff --git a/public/content/translations/it/nft/index.md b/public/content/translations/it/nft/index.md
index cf008938af2..dcf63142a00 100644
--- a/public/content/translations/it/nft/index.md
+++ b/public/content/translations/it/nft/index.md
@@ -14,15 +14,15 @@ summaryPoint3: Basati sui contratti intelligenti, sulla blockchain di Ethereum.
## Cosa sono i NFT? {#what-are-nfts}
-Gli NFT sono token che sono singolarmente unici. Ogni NFT ha proprietà differenti (non fungibile) ed provatamente scarso. Questo è diverso dai token come gli ERC-20, dove ogni token di un insieme è identico e ha le stesse proprietà (fungibile). Tu non ti preoccupi di quale banconota da un dollaro hai nel tuo portafoglio, perché sono tutte identiche e hanno lo stesso valore. Tuttavia, tu _ti_ preoccupi di quale specifico NFT possiedi, perché ha proprietà individuali che lo distinguono dagli altri (non fungibile).
+Gli NFT sono token che sono singolarmente unici. Ogni NFT ha proprietà differenti (non fungibile) ed provatamente scarso. Questo concetto è diverso da token quali ETH o altri token basati su Ethereum come USDC in cui ogni token è identico e ha le stesse proprietà ("fungibile"). Non ti interessa quale particolare banconota di un taglio specifico (o ETH) hai nel portafoglio, perché sono tutte identiche e valgono uguale. Tuttavia, tu _ti_ preoccupi di quale specifico NFT possiedi, perché ha proprietà individuali che lo distinguono dagli altri (non fungibile).
-L'unicità di ciascun NFT consente la tokenizzazione di oggetti come oggetti d'arte, oggetti da collezione, o persino beni immobili, dove un specifico NFT unico rappresenta uno specifico oggetto unico del mondo reale o digitale. La proprietà di una risorsa è protetta dalla blockchain Ethereum: nessuno può modificare il registro di proprietà o far esistere un nuovo NFT copiandolo/incollandolo.
+L'unicità di ciascun NFT consente la tokenizzazione di oggetti come oggetti d'arte, oggetti da collezione, o persino beni immobili, dove un specifico NFT unico rappresenta uno specifico oggetto unico del mondo reale o digitale. La proprietà di una risorsa è verificabile pubblicamente sulla blockchain di Ethereum.
## L'Internet delle risorse {#internet-of-assets}
-Gli NFT ed Ethereum risolvono alcuni dei problemi esistenti oggi in internet. Man mano che tutto diventa più digitale, aumenta l'esigenza di replicare le proprietà degli oggetti fisici, come la scarsità, l'unicità e la prova di proprietà. in un modo che non sia controllato da un'organizzazione centrale. Per esempio, con gli NFT puoi possedere un mp3 di musica che non è specifico di un'app di una specifica azienda di musica, o puoi avere un handle di un social media che puoi vendere o scambiare, ma che non ti può essere tolto arbitrariamente da una piattaforma fornitrice.
+Gli NFT ed Ethereum risolvono alcuni dei problemi esistenti oggi in internet. Man mano che tutto diventa più digitale, aumenta l'esigenza di replicare le proprietà degli oggetti fisici, come la scarsità, l'unicità e la prova di proprietà in modo da non essere controllate da un'organizzazione centrale. Per esempio, con gli NFT, puoi possedere un file musicale mp3 in tutte le app basate su Ethereum e non essere vincolato da una specifica azienda per app di musica come Spotify o Apple Music. Puoi avere un identificativo social che puoi vendere o scambiare, ma che non ti può essere requisito arbitrariamente dal proprietario della piattaforma.
Ecco come appare un internet di NFT, rispetto all'Internet utilizzato oggi da molti di noi...
@@ -30,20 +30,14 @@ Ecco come appare un internet di NFT, rispetto all'Internet utilizzato oggi da mo
| Un Internet di NFT | L'internet di oggi |
| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| Sei proprietario delle tue risorse! Solo tu puoi venderli o scambiarli. | Tu affitti una risorsa da un'organizzazione. |
+| Sei proprietario delle tue risorse! Solo tu puoi venderli o scambiarli. | Affitti una risorsa da qualche organizzazione e ti può essere requisita. |
| Gli NFT sono digitalmente univoci, non esistono due NFT uguali. | Una copia di un'entità spesso non può essere distinta dall'originale. |
| La proprietà di un NFT è memorizzata sulla blockchain e può essere verificata da chiunque. | I registri di proprietà degli oggetti digitali sono archiviati su server controllati da istituzioni - devi fidarti della loro parola. |
| Gli NFT sono contratti intelligenti su Ethereum. Questo significa che possono essere usati facilmente in altri contratti intelligenti e applicazioni su Ethereum! | Le aziende con articoli digitali di solito richiedono una propria infrastruttura a mo' di "giardino recintato". |
| I creatori di contenuti possono vendere il loro lavoro ovunque e possono accedere ad un mercato globale. | I creatori si affidano all'infrastruttura e alla distribuzione delle piattaforme che utilizzano. Queste ultime sono spesso soggette a condizioni d'uso e a restrizioni geografiche. |
| I creatori di NFT possono mantenere i diritti di proprietà sul proprio lavoro e programmare le royalty direttamente nel contratto NFT. | Le piattaforme, come i servizi di streaming musicale, mantengono la maggior parte dei profitti derivanti dalle vendite. |
-## Come funzionano gli NFT? {#how-nfts-work}
-
-Come qualsiasi altro token emesso su Ethereum, gli NFT sono emessi da un contratto intelligente. Il contratto intelligente è conforme a uno dei diversi standard NFT (di solito ERC-721 o ERC-1155) che definiscono le funzioni del contratto. Il contratto può creare ("coniare") NFT e assegnarli a un proprietario specifico. La proprietà è definita nel contratto mediante la mappatura di NFT specifici a indirizzi specifici. L'NFT ha un ID e tipicamente dei metadati associati che rendono unico il token specifico.
-
-Quando qualcuno crea o conia un NFT, in realtà sta eseguendo una funzione nel contratto intelligente che assegna uno specifico NFT al suo indirizzo. Queste informazioni vengono conservate nella memoria del contratto, che fa parte della blockchain. Il creatore del contratto può scrivere una logica aggiuntiva nel contratto, ad esempio limitando l'offerta totale o definendo delle royalty da pagare al creatore ogni volta che un token viene trasferito.
-
-## Per cosa sono utilizzati gli NFT? {#nft-use-cases}
+## Per cosa vengono utilizzati gli NFT? {#nft-use-cases}
Gli NFT vengono utilizzati per molti scopi, tra cui:
@@ -58,25 +52,39 @@ Gli NFT vengono utilizzati per molti scopi, tra cui:
- nomi di dominio internet decentralizzati
- garanzia nella DeFi
-Forse sei un artista che vuole condividere il proprio lavoro utilizzando gli NFT, senza perdere il controllo e sacrificare i tuoi profitti agli intermediari. Puoi creare un nuovo contratto e specificare il numero di NFT, le loro proprietà e un collegamento ad alcune opere d'arte specifiche. In qualità di artista, puoi programmare nel contratto intelligente le royalty che ti devono essere pagate (ad esempio, trasferire il 5% del prezzo di vendita al proprietario del contratto ogni volta che un NFT viene trasferito). Inoltre, puoi sempre dimostrare di aver creato gli NFT perché possiedi il portafoglio che ha distribuito il contratto. I tuoi acquirenti possono facilmente dimostrare di possedere un NFT autentico della tua collezione perché l'indirizzo del loro portafoglio è associato a un token nel tuo contratto intelligente. Possono utilizzarlo in tutto l'ecosistema Ethereum, sicuri della sua autenticità.
+Magari sei un artista che vuole condividere il proprio lavoro utilizzando gli NFT, senza perdere il controllo e sacrificare i tuoi profitti agli intermediari. Puoi creare un nuovo contratto e specificare il numero di NFT, le loro proprietà e un collegamento ad alcune opere d'arte specifiche. In qualità di artista, puoi programmare nel contratto intelligente le royalty che ti devono essere pagate (ad es. trasferire il 5% del prezzo di vendita al proprietario del contratto ogni volta che un NFT viene trasferito). Inoltre, puoi sempre dimostrare di aver creato gli NFT perché possiedi il portafoglio che ha distribuito il contratto. I tuoi acquirenti possono facilmente dimostrare di possedere un NFT autentico della tua collezione perché l'indirizzo del loro portafoglio è associato a un token nel tuo contratto intelligente. Possono utilizzarlo in tutto l'ecosistema Ethereum, certi della sua autenticità.
-Oppure, prendiamo ad esempio un biglietto per un evento sportivo. Proprio come l'organizzatore di un evento può scegliere quanti biglietti vendere, il creatore di un NFT può decidere quante repliche esistono. A volte queste sono repliche esatte, come 5000 biglietti di ingresso generici. A volte ne vengono coniati diversi molto simili, ma ognuno leggermente diverso, come nel caso dei biglietti con i posti assegnati. Questi possono essere acquistati e venduti peer-to-peer senza pagare i gestori dei biglietti e l'acquirente ha sempre la certezza dell'autenticità del biglietto controllando l'indirizzo del contratto.
+Oppure, prendiamo ad esempio un biglietto per un evento sportivo. Proprio come l'organizzatore di un evento può scegliere quanti biglietti vendere, il creatore di un NFT può decidere quante repliche esistono. A volte queste sono repliche esatte, come 5000 biglietti di ingresso generici. A volte ne vengono coniati diversi molto simili, ma ognuno leggermente diverso, come nel caso dei biglietti con i posti assegnati. Questi possono essere acquistati e venduti tra pari senza pagare i gestori dei biglietti e l'acquirente ha sempre la certezza dell'autenticità del biglietto controllando l'indirizzo del contratto.
-Su ethereum.org, gli NFT vengono utilizzati per dimostrare che le persone hanno contribuito al nostro archivio GitHub o hanno partecipato alle riunioni online, e abbiamo persino il nostro nome di dominio NFT. Se contribuisci a ethereum.org, puoi rivendicare un NFT POAP. Alcuni incontri nel mondo delle criptovalute hanno usato i POAP come biglietti. [Di più su come contribuire](/contributing/#poap).
+Su ethereum.org, gli NFT sono usati per dimostrare che le persone hanno significativamente contribuito alla nostra repository di Github (programmato il sito, scritto o modificato un articolo...), tradotto i nostri contenuti, o partecipato a una delle nostre call con la community, e abbiamo anche il nostro nome del dominio NFT. Se contribuisci a ethereum.org, puoi rivendicare un NFT POAP. Alcuni incontri nel mondo delle criptovalute hanno usato i POAP come biglietti. [Maggiori informazioni sul contributo](/contributing/#poap).
![POAP di ethereum.org](./poap.png)
-Questo sito web ha anche un nome di dominio alternativo basato sulla tecnologia NFT, **ethereum.eth**. Il nostro indirizzo `.org` è gestito centralmente da un fornitore di sistema di nomi di dominio (DNS), mentre ethereum`.eth` è registrato su Ethereum tramite il Servizio del Nome di Ethereum (ENS). Ed è posseduto e gestito da noi. [Consulta il nostro registro ENS](https://app.ens.domains/name/ethereum.eth)
+Questo sito web ha un nome di dominio alternativo alimentato da NFT, **ethereum.eth**. Il nostro indirizzo `.org` è gestito centralmente da un provider di sistema di nomi di dominio (DNS), mentre ethereum`.eth` è registrato su Ethereum tramite l'Ethereum Name Service (ENS). Ed è posseduto e gestito da noi. [Consulta il nostro record ENS](https://app.ens.domains/name/ethereum.eth)
-[Di più sull'ENS](https://app.ens.domains)
+[Maggiori informazioni sull'ENS](https://app.ens.domains)
+## Come funzionano gli NFT? {#how-nfts-work}
+
+Gli NFT, come ogni elemento digitale sulla blockchain di Ethereum, sono creati attraverso uno speciale programma basato su Ethereum chiamato contratto intelligente. Questi contratti seguono determinate regole, come gli standard ERC-721 o ERC-1155, che determinano cosa può fare il contratto.
+
+Il contratto intelligente degli NFT può fare alcune cose essenziali:
+
+- **Creare NFT:** può creare nuovi NFT.
+- **Assegnare proprietà:** tiene traccia di chi possiede quali NFT collegandoli a specifici indirizzi Ethereum.
+- **Dare un ID a ogni NFT:** ogni NFT ha un numero che lo rende unico. In aggiunta, di solito ci sono alcune informazioni (metadati) allegate a esso, che descrivono cosa rappresenta l'NFT.
+
+Quando qualcuno "crea" o "conia" un NFT, sta fondamentalmente dicendo al contratto intelligente di assegnargli la proprietà di uno specifico NFT. Questa informazione è conservata in modo sicuro e pubblico nella blockchain.
+
+Inoltre, il creatore del contratto può aggiungere regole aggiuntive. Potrebbe limitare la quantità che può essere prodotta di un certo NFT o decidere di ricevere una piccola commissione ogni volta che l'NFT passa in nuove mani.
+
### Sicurezza degli NFT {#nft-security}
-La sicurezza di Ethereum deriva dal proof-of-stake. Il sistema è progettato per disincentivare economicamente le azioni malevole, rendendo Ethereum a prova di manomissione. Questo è ciò che rende possibili gli NFT. Una volta che il blocco contenente la transazione del tuo NFT diventa finalizzato, modificarlo costerebbe milioni di ETH a un utente malevolo. Chiunque esegua il software di Ethereum potrebbe immediatamente rilevare la manomissione disonesta con un NFT e l'utente malevolo sarebbe penalizzato economicamente ed espulso.
+La sicurezza di Ethereum deriva dal proof-of-stake. Il sistema è progettato per disincentivare economicamente le azioni malevole, rendendo Ethereum a prova di manomissione. Questo è ciò che rende possibili gli NFT. Una volta che il blocco contenente la transazione del tuo NFT diventa finalizzato, modificarlo costerebbe milioni di ETH a un utente malevolo. Chiunque esegua il software di Ethereum potrebbe immediatamente rilevare la manomissione malevola di un NFT, e l'utente malevolo sarebbe penalizzato economicamente ed espulso.
-I problemi di sicurezza degli NFT sono molto spesso correlati alle truffe di phishing, alle vulnerabilità dei contratti intelligenti o agli errori degli utenti (come esporre inavvertitamente le chiavi private); per questo una buona sicurezza del portafoglio è essenziale per i proprietari di NFT.
+I problemi di sicurezza degli NFT sono molto spesso correlati alle truffe di phishing, alle vulnerabilità dei contratti intelligenti o agli errori degli utenti (come esporre inavvertitamente le chiavi private), per questo una buona sicurezza del portafoglio è essenziale per i proprietari di NFT.
Di più sulla sicurezza
@@ -84,8 +92,8 @@ I problemi di sicurezza degli NFT sono molto spesso correlati alle truffe di phi
## Letture consigliate {#further-reading}
-- [Una guida per principianti agli NFT](https://linda.mirror.xyz/df649d61efb92c910464a4e74ae213c4cab150b9cbcc4b7fb6090fc77881a95d) – _Linda Xie, gennaio 2020_
-- [EtherscanNFT tracker](https://etherscan.io/nft-top-contracts)
+- [A beginner's guide to NFTs](https://linda.mirror.xyz/df649d61efb92c910464a4e74ae213c4cab150b9cbcc4b7fb6090fc77881a95d) – _Linda Xie, Gennaio 2020_
+- [Tracker EtherscanNFT](https://etherscan.io/nft-top-contracts)
- [Standard token ERC-721](/developers/docs/standards/tokens/erc-721/)
- [Standard token ERC-1155](/developers/docs/standards/tokens/erc-1155/)
diff --git a/public/content/translations/it/refi/index.md b/public/content/translations/it/refi/index.md
index 72a4eeac57b..de57461b117 100644
--- a/public/content/translations/it/refi/index.md
+++ b/public/content/translations/it/refi/index.md
@@ -18,7 +18,7 @@ summaryPoint3: Uno strumento per scalare drasticamente le risorse del beneficio
La ReFi, invece, mira a risolvere i problemi ambientali, comunitari o sociali creando cicli rigenerativi. Questi sistemi creano valore ai partecipanti e allo stesso tempo portano benefici agli ecosistemi e alle comunità.
-Uno dei fondamenti della ReFi è il concetto di economia rigenerativa di cui è stato pioniere John Fullerton del [Capital Institute](https://capitalinstitute.org). Egli ha proposto otto principi interconnessi che sono alla base della salute sistemica:
+Uno dei fondamenti della ReFi è il concetto di economia rigenerativa. John Fullerton del Capital Institute ne è pioniere. Ha proposto [otto principi interconnessi](https://capitalinstitute.org/8-principles-regenerative-economy/) alla base di un sistema sano:
![Otto principi interconnessi](./refi-regenerative-economy-diagram.png)
diff --git a/public/content/translations/it/roadmap/account-abstraction/index.md b/public/content/translations/it/roadmap/account-abstraction/index.md
index 45a4c7b60f7..c5d7ef1faca 100644
--- a/public/content/translations/it/roadmap/account-abstraction/index.md
+++ b/public/content/translations/it/roadmap/account-abstraction/index.md
@@ -47,8 +47,8 @@ Ad esempio, le chiavi di backup possono essere aggiunte a un portafoglio, così
- **Autorizzazione multifirma**: Puoi condividere le credenziali di autorizzazione tra svariate persone o dispositivi affidabili. Quindi, il contratto, è configurabile affinché le transazioni di più di un dato valore predeterminato, richiedano l'autorizzazione da una certa porzione (ad esempio, 3/5) delle parti fidate. Ad esempio, le transazioni dal valore elevato potrebbero richiedere l'approvazione sia da un dispositivo mobile che da un portafoglio hardware, o le firme dai conti distribuiti ai membri familiari fidati.
- **Congelamento del conto**: Se un dispositivo è perduto o compromesso, il conto può essere bloccato da un altro dispositivo autorizzato, proteggendo le risorse dell'utente.
- **Recupero del conto**: Hai perso un dispositivo o hai dimenticato una password? Nel paradigma corrente, ciò significa che le tue risorse potrebbero essere state congelate per sempre. Con il portafoglio di un contratto intelligente, puoi impostare dei conti pre-approvati che possano autorizzare nuovi dispositivi e ripristinare l'accesso.
-- **Imposta limiti di transazione**: specifica le soglie giornaliere per il valore che può essere trasferito dal conto in un giorno/una settimana/un mese. Ciò significa che, se un utente malevolo ottiene l'accesso al tuo conto, non può prelevare tutto in una volta e hai l'opportunità di congelare e ripristinare l'accesso.
-- **Crea liste bianche**: consenti soltanto le transazioni verso certi indirizzi che sai che sono sicuri. Ciò significa che _anche se_ la tua chiave privata è stata rubata, l'utente malevolo non potrebbe inviare i fondi a conti di destinazione non presenti nella lista bianca. Queste liste bianche richiederebbero più firme per modificarle, così che un utente malevolo non possa aggiungere il proprio indirizzo all'elenco, senza avere accesso a svariate delle tue chiavi di backup.
+- **Imposta i limiti di transazione**: specifica le soglie giornaliere per quanto valore sia trasferibile dal conto in un giorno/una settimana/un mese. Ciò significa che, se un utente malevolo ottiene l'accesso al tuo conto, non può prelevare tutto in una volta e hai l'opportunità di congelare e ripristinare l'accesso.
+- **Crea liste bianche**: consenti soltanto le transazioni verso certi indirizzi che sai essere sicuri. Ciò significa che _anche se_ la tua chiave privata è stata rubata, l'utente malevolo non potrebbe inviare i fondi a conti di destinazione non presenti nella lista bianca. Queste liste bianche richiederebbero più firme per modificarle, così che un utente malevolo non possa aggiungere il proprio indirizzo all'elenco, senza avere accesso a svariate delle tue chiavi di backup.
## Migliore esperienza utente {#better-user-experience}
diff --git a/public/content/translations/it/roadmap/beacon-chain/index.md b/public/content/translations/it/roadmap/beacon-chain/index.md
index 0ea7f8bdd85..8706deddca3 100644
--- a/public/content/translations/it/roadmap/beacon-chain/index.md
+++ b/public/content/translations/it/roadmap/beacon-chain/index.md
@@ -2,9 +2,9 @@
title: La Beacon Chain
description: Informati rigurado alla Beacon Chain - l'aggiornamento che ha introdotto la prova-di-interesse Ethereum.
lang: it
+alt:
template: upgrade
image: /upgrades/core.png
-alt:
summaryPoint1: La Beacon Chain ha introdotto il proof-of-stake nell'ecosistema Ethereum.
summaryPoint2: È stata fusa con la catena di proof-of-work originale di Ethereum nel settembre 2022.
summaryPoint3: La Beacon Chain ha introdotto la logica del consenso e il protocollo di gossip del blocco, che ora protegge Ethereum.
@@ -28,7 +28,7 @@ Beacon Chain è il nome dato a un libro mastro di conti che hanno condotto e coo
La Beacon Chain ha introdotto la [proof of stake](/developers/docs/consensus-mechanisms/pos/) in Ethereum. Questo mantiene sicura Ethereum e consente ai validatori di guadagnare più ETH nel processo. In pratica, lo staking prevede di puntare ETH per poter attivare il software del validatore. Come staker, esegui il software che crea e convalida i nuovi blocchi nella catena.
-Lo staking serve a uno scopo simile a quello del [mining](/developers/docs/mining/), ma è differente in molti modi. Il mining richiedeva ingenti spese iniziali sotto forma di hardware potente e consumi energetici, risultando in economie di scala e promuovendo la centralizzazione. Il mining, inoltre, non prevedeva alcun requisito di bloccare le risorse come garanzie, limitando la capacità del protocollo di punire gli utenti malevoli dopo un attacco.
+Lo staking serve a uno scopo simile a quello del [mining](/developers/docs/consensus-mechanisms/pow/mining/), ma è differente in molti modi. Il mining richiedeva ingenti spese iniziali sotto forma di hardware potente e consumi energetici, risultando in economie di scala e promuovendo la centralizzazione. Il mining, inoltre, non prevedeva alcun requisito di bloccare le risorse come garanzie, limitando la capacità del protocollo di punire gli utenti malevoli dopo un attacco.
La transizione al proof of stake ha reso Ethereum significativamente più sicura e decentralizzata rispetto al proof of work. Più persone parteciperanno alla rete, più questa diventerà decentralizzata e protetta dagli attacchi.
diff --git a/public/content/translations/it/roadmap/danksharding/index.md b/public/content/translations/it/roadmap/danksharding/index.md
index eddedd3aa02..9b33ff279cf 100644
--- a/public/content/translations/it/roadmap/danksharding/index.md
+++ b/public/content/translations/it/roadmap/danksharding/index.md
@@ -15,17 +15,17 @@ Il **Danksharding** è il metodo tramite cui Ethereum diventa una blockchain rea
## Cos'è il Proto-Danksharding? {#what-is-protodanksharding}
-Il Proto-Danksharding, anche noto come [EIP-4844](https://eips.ethereum.org/EIPS/eip-4844), è un metodo per i [rollup](/layer2/#rollups) per aggiungere dati più economici ai blocchi. Il nome proviene dai due ricercatori che hanno proposto l'idea: Protolambda e Dankrad Feist. Al momento, i rollup sono limitati, relativamente all'economicità a cui possono compiere le transazioni degli utenti, dal fatto che pubblicano le proprie transazioni in `CALLDATA`. Ciò è costoso poiché è elaborato da tutti i nodi di Ethereum e risiede per sempre sulla catena, anche se i rollup necessitano dei dati soltanto per un breve periodo. Il Proto-Danksharding introduce i blob di dati, inviabili e collegabili ai blocchi. I dati in tali blob non sono accessibili all'EVM e sono eliminati automaticamente dopo un periodo di tempo fisso (1-3 mesi). Ciò significa che i rollup possono inviare i propri dati in modo molto più economico, trasferendo i risparmi agli utenti finali nella forma di transazioni più economiche.
+Il Proto-Danksharding, anche noto come [EIP-4844](https://eips.ethereum.org/EIPS/eip-4844), è un metodo per i [rollup](/layer-2/#rollups) per aggiungere dati più economici ai blocchi. Il nome proviene dai due ricercatori che hanno proposto l'idea: Protolambda e Dankrad Feist. Al momento, i rollup sono limitati, relativamente all'economicità a cui possono compiere le transazioni degli utenti, dal fatto che pubblicano le proprie transazioni in `CALLDATA`. Ciò è costoso poiché è elaborato da tutti i nodi di Ethereum e risiede per sempre sulla catena, anche se i rollup necessitano dei dati soltanto per un breve periodo. Il Proto-Danksharding introduce i blob di dati, inviabili e collegabili ai blocchi. I dati in tali blob non sono accessibili all'EVM e sono eliminati automaticamente dopo un periodo di tempo fisso (1-3 mesi). Ciò significa che i rollup possono inviare i propri dati in modo molto più economico, trasferendo i risparmi agli utenti finali nella forma di transazioni più economiche.
-I rollup sono un metodo per scalare Ethereum raggruppando le transazioni all'esterno della catena e, in seguito, pubblicando i risultati su Ethereum. Un rollup, essenzialmente, si compone di due parti: dati e controllo dell'esecuzione. I dati sono la sequenza completa delle transazioni elaborate da un rollup per produrre il cambiamento di stato pubblicato su Ethereum. Il controllo d'esecuzione è la ri-esecuzione di tali transazioni da un utente onesto (dimostratore) per aassicurarsi che il cambiamento di stato proposto sia corretto. Per poter effettuare il controllo d'esecuzione, i dati della transazione devono essere disponibili per un tempo sufficiente perché chiunque possa scaricarli e controllarli. Ciò significa che qualsiasi comportamento disonesto dal sequenziatore del rollup puà essere identificato e sfidato dal dimostratore. Tuttavia, non è necessario che sia disponibile per sempre.
+I rollup sono un metodo per scalare Ethereum raggruppando le transazioni all'esterno della catena e, in seguito, pubblicando i risultati su Ethereum. Un rollup, essenzialmente, si compone di due parti: dati e controllo dell'esecuzione. I dati sono la sequenza completa delle transazioni elaborate da un rollup per produrre il cambiamento di stato pubblicato su Ethereum. Il controllo d'esecuzione è la ri-esecuzione di tali transazioni da un utente onesto (dimostratore) per assicurarsi che il cambiamento di stato proposto sia corretto. Per poter effettuare il controllo d'esecuzione, i dati della transazione devono essere disponibili per un tempo sufficiente perché chiunque possa scaricarli e controllarli. Ciò significa che qualsiasi comportamento disonesto dal sequenziatore del rollup può essere identificato e sfidato dal dimostratore. Tuttavia, non è necessario che sia disponibile per sempre.
-I rollup pubblicano gli impegni ai dati delle proprie transazioni on chain e, inoltre, rendono disponibili i dati effettivi nei blob di dati. Ciò significa che i dimostratori possono verificare che gli impegni siano validi o sfidare i dati che ritengono siano errati. Al livello del nodo, i blob di dati sono conservati nel client del consenso. I client del consenso attestano di aver visto i dati e che sono stati propagati per la rete. Se i dati fossero conservati per sempre, tali client si allargherebberò, determinando grandi requisiti hardware per l'esecuzione di nodi. Invece, i dati, sono eliminati automaticamente dal nodo ogni 1-3 mesi. Le attestazioni del client del consenso dimostrano che vi è stata un'opportunità sufficiente, affinché i dimostratori potessero verificare i dati. I dati effettivi possono essere memorizzati off-chain dagli operatori di rollup, dagli utenti o da terzi.
+I rollup pubblicano gli impegni ai dati delle proprie transazioni on chain e, inoltre, rendono disponibili i dati effettivi nei blob di dati. Ciò significa che i dimostratori possono verificare che gli impegni siano validi o sfidare i dati che ritengono siano errati. Al livello del nodo, i blob di dati sono conservati nel client del consenso. I client del consenso attestano di aver visto i dati e che sono stati propagati per la rete. Se i dati fossero conservati per sempre, tali client si allargherebbero, determinando grandi requisiti hardware per l'esecuzione di nodi. Invece, i dati, sono eliminati automaticamente dal nodo ogni 1-3 mesi. Le attestazioni del client del consenso dimostrano che vi è stata un'opportunità sufficiente, affinché i dimostratori potessero verificare i dati. I dati effettivi possono essere memorizzati off-chain dagli operatori di rollup, dagli utenti o da terzi.
@@ -49,7 +49,7 @@ Quando un rollup pubblica i dati in un blob, fornisce un "impegno", pubblicato s
-Se qualcuno conoscesse le posizioni casuali utilizzate per l'impegno, sarebbe facile, per loro, generare una nuova polinomiaale che si adatti a quei punti specifici (cioè, una "collisione"). Ciò significa che potrebbero aggiungere o rimuovere i dati dal blob e, comunque, fornire una prova valida. Per impedirlo, invece di dare ai dimostratori le posizioni segrete effettive, ricevono in realtà le posizioni, avvolte in una "scatola nera" crittografica, utilizzando le curve ellittiche. Questi, infatti, rimescolano i valori in modo tale che i valori originali non siano decodificabili, ma con dimostratori e verificatori capaci in algebra, le polinomiali sono ancora valutabili ai punti rappresentati.
+Se qualcuno conoscesse le posizioni casuali utilizzate per l'impegno, sarebbe facile, per loro, generare una nuova polinomiale che si adatti a quei punti specifici (cioè, una "collisione"). Ciò significa che potrebbero aggiungere o rimuovere i dati dal blob e, comunque, fornire una prova valida. Per impedirlo, invece di dare ai dimostratori le posizioni segrete effettive, ricevono in realtà le posizioni, avvolte in una "scatola nera" crittografica, utilizzando le curve ellittiche. Questi, infatti, rimescolano i valori in modo tale che i valori originali non siano decodificabili, ma con dimostratori e verificatori capaci in algebra, le polinomiali sono ancora valutabili ai punti rappresentati.
diff --git a/public/content/translations/it/roadmap/index.md b/public/content/translations/it/roadmap/index.md
index b427fd00185..42e05516adb 100644
--- a/public/content/translations/it/roadmap/index.md
+++ b/public/content/translations/it/roadmap/index.md
@@ -3,7 +3,7 @@ title: Roadmap di Ethereum
description: Il percorso verso una maggiore scalabilità, sicurezza e sostenibilità per Ethereum.
lang: it
template: roadmap
-image: /roadmap/roadmap-main.png
+image: /heroes/roadmap-hub-hero.jpg
alt: "Roadmap di Ethereum"
summaryPoints:
buttons:
@@ -59,7 +59,7 @@ Ethereum riceve aggiornamenti regolari che migliorano la sua scalabilità, sicur
-La tabella di marcia è principalmente il risultato di anni di lavoro da parte di ricercatori e sviluppatori - perché il protocollo è molto tecnico - ma qualsiasi persona motivata può partecipare. Le idee di solito iniziano come discussioni su un forum come [ethresear.ch](https://ethresear.ch/), [Ethereum magicians](https://www.figma.com/exit?url=https%3A%2F%2Fethereum-magicians.org%2F) o il server Eth R&D discord. Possono essere risposte a nuove vulnerabilità che vengono scoperte, suggerimenti da parte di organizzazioni che lavorano nel livello dell'applicazione (come dapps e borse) o da attriti conosciuti per gli utenti finali (come costi o velocità di transazione). Quando queste idee maturano, possono essere proposte come [Ethereum Improvement Proposals](https://eips.ethereum.org/). Tutto questo viene fatto in pubblico in modo che chiunque della comunità possa esprimere la propria opinione in qualsiasi momento.
+La tabella di marcia è principalmente il risultato di anni di lavoro da parte di ricercatori e sviluppatori - perché il protocollo è molto tecnico - ma qualsiasi persona motivata può partecipare. Le idee di solito iniziano come discussioni su un forum come [ethresear.ch](https://ethresear.ch/), [Ethereum magicians](https://ethereum-magicians.org/) o sul server discord Eth R&D. Possono essere risposte a nuove vulnerabilità che vengono scoperte, suggerimenti da parte di organizzazioni che lavorano nel livello dell'applicazione (come dapps e borse) o da attriti conosciuti per gli utenti finali (come costi o velocità di transazione). Quando queste idee maturano, possono essere proposte come [Ethereum Improvement Proposals](https://eips.ethereum.org/). Tutto questo viene fatto in pubblico in modo che chiunque della comunità possa esprimere la propria opinione in qualsiasi momento.
[Ulteriori informazioni sulla governance di Ethereum](/governance/)
diff --git a/public/content/translations/it/roadmap/merge/index.md b/public/content/translations/it/roadmap/merge/index.md
index 5be27bd18c7..c99aef0699f 100644
--- a/public/content/translations/it/roadmap/merge/index.md
+++ b/public/content/translations/it/roadmap/merge/index.md
@@ -1,6 +1,6 @@
---
title: La Fusione
-description: "Scopri La Fusione: quando la Rete principale di Ethereum ha adottato il Poof of stake."
+description: 'Scopri La Fusione: quando la Rete principale di Ethereum ha adottato il Poof of stake.'
lang: it
template: upgrade
image: /upgrades/merge.png
diff --git a/public/content/translations/it/roadmap/single-slot-finality/index.md b/public/content/translations/it/roadmap/single-slot-finality/index.md
index 68c0b4d9cf8..88f9b96517d 100644
--- a/public/content/translations/it/roadmap/single-slot-finality/index.md
+++ b/public/content/translations/it/roadmap/single-slot-finality/index.md
@@ -50,7 +50,7 @@ Tuttavia, la verifica non è la vera impasse: è l'aggregazione della firma a sf
## Qual è il ruolo della regola di scelta della biforcazione nello SSF? {#role-of-the-fork-choice-rule}
-Il meccanismo del consenso odierno si affida a un rigoroso accoppiamento tra il dispositivo di finalità (l'algoritmo che determina se i 2/3 dei validatori hanno attestato a una certa catena) e la regola di scelta della biforcazione (l'algoritmo che decide quale catena è quella corretta, quando ci sono più opzioni). L'algoritmo di scelta della biforcazione considera soltanto i blocchi \_dall'\_ultimo blocco finalizzato. Sotto lo SSF, non ci sarebbe alcun blocco da considerare per la regola di scelta della biforcazione, poiché la finalità si verifica nello stesso spazio in cui è proposto il blocco. Ciò significa che sotto lo SSF, l'algoritmo di scelta \_o\_\_\_ il dispositivo di finalità sarebbero attivi in ogni momento. Il dispositivo di finalità finalizzerebbe i blocchi in cui i 2/3 dei validatori erano online e stavano attestando in modo onesto. Se un blocco non riuscisse a superare la soglia dei 2/3, la regola di scelta della biforcazione entrerebbe in gioco per determinare quale catena seguire. Questo, inoltre, crea un'opportunità per mantenere il meccanismo di perdita dell'inattività che recupera una catena in cui >1/3 dei validatori è offline, sebbene con delle sfumature aggiuntive.
+Il meccanismo del consenso odierno si affida a un rigoroso accoppiamento tra il dispositivo di finalità (l'algoritmo che determina se i 2/3 dei validatori hanno attestato a una certa catena) e la regola di scelta della biforcazione (l'algoritmo che decide quale catena è quella corretta, quando ci sono più opzioni). L'algoritmo di scelta della biforcazione considera soltanto i blocchi _dall'_ultimo blocco finalizzato. Sotto lo SSF, non ci sarebbe alcun blocco da considerare per la regola di scelta della biforcazione, poiché la finalità si verifica nello stesso spazio in cui è proposto il blocco. Ciò significa che sotto lo SSF, l'algoritmo di scelta _o___ il dispositivo di finalità sarebbero attivi in ogni momento. Il dispositivo di finalità finalizzerebbe i blocchi in cui i 2/3 dei validatori erano online e stavano attestando in modo onesto. Se un blocco non riuscisse a superare la soglia dei 2/3, la regola di scelta della biforcazione entrerebbe in gioco per determinare quale catena seguire. Questo, inoltre, crea un'opportunità per mantenere il meccanismo di perdita dell'inattività che recupera una catena in cui >1/3 dei validatori è offline, sebbene con delle sfumature aggiuntive.
## Questioni irrisolte {#outstanding-issues}
@@ -58,7 +58,7 @@ Il problema con il ridimensionamento dell'aggregazione, aumentando il numero di
## Stato attuale {#current-progress}
-Lo SSF è nella fase di ricerca. Non dovrebbe essere distribuito per svariati anni, possibilmente dopo altri aggiornamenti sostanziali come gli [alberi di Verkle](/roadmap/verkle-trees/) e il [Danksharding](/roadmap/danksharding]).
+Lo SSF è nella fase di ricerca. Non dovrebbe essere distribuito per svariati anni, possibilmente dopo altri aggiornamenti sostanziali come gli [alberi di Verkle](/roadmap/verkle-trees/) e il [Danksharding](/roadmap/danksharding/).
## Letture consigliate {#further-reading}
diff --git a/public/content/translations/it/roadmap/statelessness/index.md b/public/content/translations/it/roadmap/statelessness/index.md
index e78ca519651..2485412ae1f 100644
--- a/public/content/translations/it/roadmap/statelessness/index.md
+++ b/public/content/translations/it/roadmap/statelessness/index.md
@@ -66,7 +66,7 @@ L'assenza di stato debole richiede modifiche a come i nodi di Ethereum verifican
**Nell'assenza di stato debole, la proposta dei blocchi richiede l'accesso ai dati di stato completi, ma la verifica dei blocchi no**
-Perché ciò si verifichi, devono già essere stati implementati gli [alberi di Verkle](/roadmap/verkle-trees) nei client di Ethereum. Gli alberi di Verkle sono strutture di dati sostitutive per memorizzare i dati di stato di Ethereum, che consentono a "testimoni" di dati di dimensioni ridotte e fisse, di essere passati tra i pari e utilizzati per verificare i blocchi, invece di verificarli rispetto ai database locali. Anche la [separazione tra propositori e costruttori](/roadmap/pbs/) è necessaria poiché consente ai costruttori di blocchi di essere nodi specializzati con hardware più potente, essendo coloro che necessitano di accedere ai dati di stato completi.
+Perché ciò si verifichi, gli [alberi di Verkle](/roadmap/verkle-trees/) devono già essere stati implementati nei client di Ethereum. Gli alberi di Verkle sono strutture di dati sostitutive per memorizzare i dati di stato di Ethereum, che consentono a "testimoni" di dati di dimensioni ridotte e fisse, di essere passati tra i pari e utilizzati per verificare i blocchi, invece di verificarli rispetto ai database locali. Anche la [separazione tra propositori e costruttori](/roadmap/pbs/) è necessaria poiché consente ai costruttori di blocchi di essere nodi specializzati con hardware più potente, essendo coloro che necessitano di accedere ai dati di stato completi.
@@ -81,7 +81,7 @@ L'assenza di stato debole è in uno stato avanzato di ricerca, ma si affida all'
### Assenza di stato forte {#strong-statelessness}
-L'assenza di stato forte rimuove il bisogno di qualsiasi blocco, di memorizzare i dati di stato. Invece, le transazioni sono inviate con i testimoni, aggregabili dai produttori di blocchi. I produttori di blocchi sono quindi responsabili della memorizzazione di soltanto quello stato, necessario per generare testimoni per i conti rilevanti. La responsabilità per lo stato è quasi interamente trasferita agli utenti, poiché inviano i testimoni e 'accedono agli elenchi' per dichiarare con quali conti e quali chiavi d'archiviazione stanno interagendo.
+L'assenza di stato forte rimuove il bisogno di qualsiasi blocco, di memorizzare i dati di stato. Invece, le transazioni sono inviate con i testimoni, aggregabili dai produttori di blocchi. I produttori di blocchi sono quindi responsabili della memorizzazione di soltanto quello stato, necessario per generare testimoni per i conti rilevanti. La responsabilità per lo stato è quasi interamente trasferita agli utenti, poiché inviano i testimoni e 'accedono agli elenchi' per dichiarare con quali conti e quali chiavi d'archiviazione stanno interagendo. Questo consentirebbe la presenza di nodi estremamente leggeri, ma esistono dei compromessi, incluso il rendere più difficili le transazioni con i contratti intelligenti.
L'assenza di stato forte è stata investigata dai ricercatori, ma non è correntemente previsto che diventi parte della tabella di marcia di Ethereum: è più probabile che l'assenza di stato debole sia sufficiente per le esigenze di ridimensionamento di Ethereum.
diff --git a/public/content/translations/it/security/index.md b/public/content/translations/it/security/index.md
index 96ae8af53a2..51cdbc94abe 100644
--- a/public/content/translations/it/security/index.md
+++ b/public/content/translations/it/security/index.md
@@ -24,7 +24,7 @@ Esempio di una password debole: CuteFluffyKittens!
Esempio di una password sicura: ymv\*azu.EAC8eyp8umf
```
-Un altro errore comune è l'utilizzo di password che possono essere facilmente indovinate o trovate attraverso [l'ingegneria sociale](). Includere il nome da nubile di tua madre, i nomi dei tuoi figli o dei tuoi animali domestici, o le date di nascita nella tua password non è sicuro e aumenterà il rischio che la tua password venga violata.
+Un altro errore comune è l'utilizzo di password che possono essere facilmente indovinate o trovate attraverso [l'ingegneria sociale](https://wikipedia.org/wiki/Social_engineering_(security)). Includere il nome da nubile di tua madre, i nomi dei tuoi figli o dei tuoi animali domestici, o le date di nascita nella tua password non è sicuro e aumenterà il rischio che la tua password venga violata.
#### Buone pratiche concernenti le password: {#good-password-practices}
@@ -270,15 +270,14 @@ Le truffe di Airdrop prevedono un falso progetto di airdropping di una risorsa (
### Sicurezza web {#reading-web-security}
-- [Questo è il motivo per cui non dovresti usare testi per l'autenticazione a due fattori](https://www.theverge.com/2017/9/18/16328172/sms-two-factor-authentication-hack-password-bitcoin) - _The Verge_
-- [Fino a 3 milioni di dispositivi infettati da componenti aggiuntivi Chrome e Edge lacciati da malware](https://arstechnica.com/information-technology/2020/12/up-to-3-million-devices-infected-by-malware-laced-chrome-and-edge-add-ons/) - _Dan Goodin_
+- [Fino a 3 milioni di dispositivi infettati da componenti aggiuntivi Chrome e Edge con malware](https://arstechnica.com/information-technology/2020/12/up-to-3-million-devices-infected-by-malware-laced-chrome-and-edge-add-ons/) - _Dan Goodin_
- [Come creare una password forte — che non dimentichi](https://www.avg.com/en/signal/how-to-create-a-strong-password-that-you-wont-forget) - _AVG_
- [Cos'è una chiave di sicurezza?](https://help.coinbase.com/en/coinbase/getting-started/verify-my-account/security-keys-faq) - _Coinbase_
### Crypto security {#reading-crypto-security}
- [Protecting Yourself and Your Funds](https://support.mycrypto.com/staying-safe/protecting-yourself-and-your-funds) _Aggiornato frequentemente - MyCrypto_
-- [4 modi per salvaguardare le criptovalute](https://www.coindesk.com/tech/2021/04/20/4-ways-to-stay-safe-in-crypto/)-_CoinDesk_
+- [Problemi di sicurezza nei software di cripto-comunicazione comuni](https://docs.salusec.io/untitled/web3-penetration-test/risks-in-social-media): _Salus_
- [Guida alla sicurezza per principianti e anche per esperti](https://medium.com/mycrypto/mycryptos-security-guide-for-dummies-and-smart-people-too-ab178299c82e) - _MyCrypto_
- [Crypto Security: Passwords and Authentication](https://www.youtube.com/watch?v=m8jlnZuV1i4)-_Andreas M. Antonopoulos_
diff --git a/public/content/translations/it/smart-contracts/index.md b/public/content/translations/it/smart-contracts/index.md
index c5e0378b98b..85b3d4435ba 100644
--- a/public/content/translations/it/smart-contracts/index.md
+++ b/public/content/translations/it/smart-contracts/index.md
@@ -65,7 +65,7 @@ Possono eseguire calcoli, creare valuta, memorizzare dati, coniare NFT, inviare
- [Stablecoin](/stablecoins/)
- [Creare e distribuire risorse digitali uniche](/nft/)
- [Una piattaforma di cambio di valute automatica e aperta](/get-eth/#dex)
-- [Giochi decentralizzati](/dapps/?category=gaming)
+- [Giochi decentralizzati](/dapps/?category=gaming#explore)
- [Una polizza assicurativa che paga automaticamente](https://etherisc.com/)
- [Uno standard che consente la creazione di valute personalizzate e interoperabili](/developers/docs/standards/tokens/)
diff --git a/public/content/translations/it/staking/pools/index.md b/public/content/translations/it/staking/pools/index.md
index c984c481e83..f3a3a256b3d 100644
--- a/public/content/translations/it/staking/pools/index.md
+++ b/public/content/translations/it/staking/pools/index.md
@@ -26,7 +26,7 @@ Oltre ai vantaggi che abbiamo delineato nella nostra [introduzione allo staking]
-
+
@@ -53,14 +53,14 @@ Esistono una varietà di opzioni disponibili per aiutarti con la tua configurazi
-Sei pregato di notare l'importanza di scegliere un servizio che prenda sul serio la [diversità del client](/developers/docs/nodes-and-clients/client-diversity/), poiché essa migliora la sicurezza della rete e limita i tuoi rischi. I servizi aventi prova della limitazione dell'utilizzo dei client di maggioranza sono indicati con "diversità del client d'esecuzione" e "diversità del client del consenso."
+Sei pregato di notare l'importanza di scegliere un servizio che prenda sul serio la [diversità del client](/developers/docs/nodes-and-clients/client-diversity/), poiché essa migliora la sicurezza della rete e limita i tuoi rischi. I servizi per i quali è dimostrato che limitano l'utilizzo dei client di maggioranza sono indicati con "diversità del client di esecuzione" e "diversità del client di consenso."
Hai un suggerimento per uno strumento di staking che abbiamo dimenticato? Dai un'occhiata alla nostra [politica di elenco dei prodotti](/contributing/adding-staking-products/) per verificare l'idoneità e sottoporcelo.
## Domande frequenti {#faq}
-Tipicamente, i token di staking ERC-20 sono emessi agli staker che rappresentano il valore dei loro ETH in staking più le ricompense. Tieni a mente che diversi pool distribuiranno ricompense di staking ai loro utenti tramite metodi lievemente differenti, ma questo è il tema comune.
+Tipicamente i token di staking ERC-20 sono emessi agli staker e rappresentano il valore dei loro ETH in staking più le ricompense. Tieni a mente che diversi pool distribuiranno ricompense di staking ai loro utenti tramite metodi lievemente differenti, ma questo è il tema comune.
@@ -81,5 +81,6 @@ Alcune opzioni di pooling sono più decentralizzate di altre quando si tratta di
## Approfondimenti {#further-reading}
+- [The Ethereum Staking Directory](https://www.staking.directory/) - _Eridian and Spacesider_
- [Staking con Rocket Pool - Panoramica sullo Staking](https://docs.rocketpool.net/guides/staking/overview.html) - _RocketPool docs_
- [Staking di Ethereum con Lido](https://help.lido.fi/en/collections/2947324-staking-ethereum-with-lido) - _Documentazione di supporto di Lido_
diff --git a/public/content/translations/it/staking/saas/index.md b/public/content/translations/it/staking/saas/index.md
index 4261a19e16f..821f7a6301c 100644
--- a/public/content/translations/it/staking/saas/index.md
+++ b/public/content/translations/it/staking/saas/index.md
@@ -22,7 +22,7 @@ Lo staking come un servizio ("SaaS") rappresenta una categoria di servizi di sta
Il protocollo di Ethereum non supporta nativamente la delegazione dello staking, quindi questi servizi sono stati creati per soddisfare questa domanda. Se hai 32 ETH da mettere in staking, ma non hai dimestichezza con l'hardware, i servizi di SaaS ti consentono di delegare la parte hardware e ottenere le ricompense del blocco nativo.
-
+
@@ -47,7 +47,7 @@ Di seguito alcuni fornitori di SaaS disponibili. Usa i suddetti indicatori per o
-Ricorda l'importanza di supportare la [diversità del client](/developers/docs/nodes-and-clients/client-diversity/) poiché migliora la sicurezza della rete e limita i tuoi rischi. I servizi aventi prova della limitazione dell'utilizzo dei client di maggioranza sono indicati con "diversità del client d'esecuzione" e "diversità del client del consenso."
+Ricorda l'importanza di supportare la [diversità del client](/developers/docs/nodes-and-clients/client-diversity/) poiché migliora la sicurezza della rete e limita i tuoi rischi. I servizi per i quali è dimostrato che limitano l'utilizzo dei client di maggioranza sono indicati con "diversità del client di esecuzione" e "diversità del client di consenso."
### Generatori di chiavi
@@ -91,4 +91,5 @@ Contatta il singolo fornitore di SaaS per ulteriori dettagli su qualsiasi opzion
## Approfondimenti {#further-reading}
+- [The Ethereum Staking Directory](https://www.staking.directory/) - _Eridian and Spacesider_
- [Valutare i servizi di Staking](https://www.attestant.io/posts/evaluating-staking-services/) - _Jim McDonald 2020_
diff --git a/public/content/translations/it/staking/solo/index.md b/public/content/translations/it/staking/solo/index.md
index 1f94c64262c..75b4e034fdb 100644
--- a/public/content/translations/it/staking/solo/index.md
+++ b/public/content/translations/it/staking/solo/index.md
@@ -109,7 +109,7 @@ Esistono una varietà di opzioni disponibili per aiutarti con la tua configurazi
-Ricorda l'importanza di scegliere un [client di minoranza](/developers/docs/nodes-and-clients/client-diversity/), poiché migliora la sicurezza della rete e limita i tuoi rischi. Gli strumenti che ti consentono di configurare il client di minoranza sono denotati come "multi-client".
+Ricorda l'importanza di scegliere un [client di minoranza](/developers/docs/nodes-and-clients/client-diversity/), poiché migliora la sicurezza della rete e limita i tuoi rischi. Gli strumenti che ti consentono di configurare il client di minoranza sono contrassegnati come "multi-client".
### Generatori di chiavi
@@ -195,6 +195,7 @@ Per sbloccare e ricevere il tuo intero saldo, devi inoltre completare il process
## Approfondimenti {#further-reading}
+- [The Ethereum Staking Directory](https://www.staking.directory/) - _Eridian and Spacesider_
- [Problema di diversità dei client di Ethereum](https://hackernoon.com/ethereums-client-diversity-problem) - _@emmanuelawosika 2022_
- [Aiutare la diversità dei client](https://www.attestant.io/posts/helping-client-diversity/) - _Jim McDonald 2022_
- [La diversità del client sul livello di consenso di Ethereum](https://mirror.xyz/jmcook.eth/S7ONEka_0RgtKTZ3-dakPmAHQNPvuj15nh0YGKPFriA) - _jmcook.eth 2022_
diff --git a/public/content/translations/it/staking/withdrawals/index.md b/public/content/translations/it/staking/withdrawals/index.md
index db1697e47f7..139a1abb10c 100644
--- a/public/content/translations/it/staking/withdrawals/index.md
+++ b/public/content/translations/it/staking/withdrawals/index.md
@@ -194,7 +194,7 @@ eventCategory="FAQ"
eventAction="I operate a validator. Where can I find more information on enabling withdrawals?"
eventName="read more">
-Gli operatori del validatore dovrebbero visitare la pagina dei Prelievi del Launchpad di Staking, dove troveranno ulteriori dettagli su come preparare il proprio validatore ai prelievi. preparato, tempistica degli eventi e ulteriori dettagli sul funzionamento dei prelievi.
+Gli operatori del validatore dovrebbero visitare la pagina dei Prelievi del Launchpad di Staking, dove troveranno ulteriori dettagli su come preparare il proprio validatore ai prelievi, le tempistiche degli eventi e ulteriori dettagli sul funzionamento dei prelievi.
Per testare la tua configurazione su una rete di prova, visita prima il Launchpad di Staking della Rete di Prova di Goerli per iniziare.
@@ -214,5 +214,5 @@ No. Una volta che un validatore è uscito e che il suo intero saldo è stato pre
- [EIP-4895: La Beacon Chain spinge i prelievi come operazioni](https://eips.ethereum.org/EIPS/eip-4895)
- [Ethereum Cat Herders - Shanghai](https://www.ethereumcatherders.com/shanghai_upgrade/index.html)
- [PEEPanEIP #94: Prelievo di ETH in staking (testing) con Potuz e Hsiao-Wei Wang](https://www.youtube.com/watch?v=G8UstwmGtyE)
-- [PEEPanEIP#68: EIP-4895: Prelievi push della Beacon Chain come operazioni con Alex Stokes](https://www.youtube.com/watch?v=CcL9RJBljUs)
+- [PEEPanEIP#68: EIP-4895: Prelievi push della Beacon Chain come operazioni, con Alex Stokes](https://www.youtube.com/watch?v=CcL9RJBljUs)
- [Informazioni sul saldo effettivo del validatore](https://www.attestant.io/posts/understanding-validator-effective-balance/)
diff --git a/public/content/translations/it/web3/index.md b/public/content/translations/it/web3/index.md
index 1966ea0698d..a714bf1e811 100644
--- a/public/content/translations/it/web3/index.md
+++ b/public/content/translations/it/web3/index.md
@@ -1,6 +1,6 @@
---
title: Cos'è Web3 e perché è importante?
-description: "Un'introduzione al Web3: la prossima evoluzione del World Wide Web e perché conta."
+description: 'Un''introduzione al Web3: la prossima evoluzione del World Wide Web e perché conta.'
lang: it
---
diff --git a/public/content/translations/it/zero-knowledge-proofs/index.md b/public/content/translations/it/zero-knowledge-proofs/index.md
index 75822492f72..d811a6406a5 100644
--- a/public/content/translations/it/zero-knowledge-proofs/index.md
+++ b/public/content/translations/it/zero-knowledge-proofs/index.md
@@ -4,7 +4,7 @@ description: Un introduzione "non tecnica" per i principianti sulle prove a cono
lang: it
---
-## Cosa sono le prove a conoscenza zero? {#what-are-zk-proofs}
+# Cosa sono le prove a conoscenza zero? {#what-are-zk-proofs}
Una prova a conoscenza zero è un modo per provare la validità di una dichiarazione senza rivelarla. Il 'dimostratore' è la parte che tenta di provare una rivendicazione, mentre il 'validatore' è responsabile della sua convalida.
@@ -176,7 +176,7 @@ L'utilizzo di MACI _richiede_ la fiducia nel fatto che il coordinatore sia collu
Ma nei casi in cui il coordinatore rimane onesto, la MACI rappresenta un potente strumento a garanzia della legittimità del voto on-chain. Ciò spiega la sua popolarità tra le applicazioni di finanziamento quadratico (es., [clr.fund](https://clr.fund/#/about/maci)) che fanno molto affidamento sull'integrità delle scelte di voto di ogni individuo.
-Scopri di più riguardo a [MACI](https://github.com/privacy-scaling-explorations/maci/blob/master/specs/01_introduction.md).
+[Maggiori informazioni su MACI](https://privacy-scaling-explorations.github.io/maci/).
## Svantaggi dell'utilizzo delle prove a conoscenza zero {#drawbacks-of-using-zero-knowledge-proofs}
diff --git a/public/content/translations/ja/community/events/index.md b/public/content/translations/ja/community/events/index.md
index 1be0a7dc594..abd0ac8cc04 100644
--- a/public/content/translations/ja/community/events/index.md
+++ b/public/content/translations/ja/community/events/index.md
@@ -5,7 +5,7 @@ lang: ja
hideEditButton: true
---
-## 今後のイベント {#events}
+# 今後のイベント {#events}
**毎月、世界各地でメジャーなイーサリアムのイベントが行われています。**お近くで開催されているイベントに参加し、コミュニティの人々と出会い、採用情報や新しいスキルを学んでみませんか?
diff --git a/public/content/translations/ja/community/get-involved/index.md b/public/content/translations/ja/community/get-involved/index.md
index 60bf0c2d521..badf6723341 100644
--- a/public/content/translations/ja/community/get-involved/index.md
+++ b/public/content/translations/ja/community/get-involved/index.md
@@ -14,7 +14,7 @@ lang: ja
- [Gitcoin](https://gitcoin.co/) - 大小規模の技術問題に取り組み、暗号通貨の報酬を獲得
- [ETHGlobal](http://ethglobal.co/) - お近くの ETHGlobal ハッカソンへの参加
- [自分の専門分野や好きなプログラミング言語に関連するプロジェクト](/developers/docs/programming-languages/)の確認
-- [Core Dev calls](https://www.youtube.com/playlist?list=PLaM7G4Llrb7zfMXCZVEXEABT8OSnd4-7w) - 動画の視聴および参加
+- [Core Dev calls](https://www.youtube.com/@EthereumProtocol) - 動画の視聴および参加
- [エコシステム・サポート・プログラムのウィッシュリスト](https://esp.ethereum.foundation/wishlist/) - イーサリアムのエコシステム・サポート・プログラムが助成金の申請を募集しているツール、ドキュメント、インフラストラクチャ分野
- [Web3Bridge](https://www.web3bridge.com/) - アフリカ全土の何百人ものデベロッパーやコミュニティメンバーを特定し、トレーニングし、サポートする、意欲的な Web3 コミュニティの取り組み
- [Ethereum Cat Herders Discord](https://discord.io/EthCatHerders)への参加
diff --git a/public/content/translations/ja/community/grants/index.md b/public/content/translations/ja/community/grants/index.md
index 82fc37bd316..5607291c6d3 100644
--- a/public/content/translations/ja/community/grants/index.md
+++ b/public/content/translations/ja/community/grants/index.md
@@ -36,7 +36,6 @@ lang: ja
- [The Graph](https://airtable.com/shrdfvnFvVch3IOVm) – _[The Graph](https://thegraph.com/)エコシステム_
- [UMA 助成プログラム](https://grants.umaproject.org/) - _[UMA](https://umaproject.org/)デベロッパーサポート_
- [Uniswap Grants Program](https://www.unigrants.org/) – _[Uniswap](https://uniswap.org/)コミュニティ_
-- [Web3 助成プログラム](https://web3grants.net) - _Web3/暗号資産関連の助成プログラムの広範なリスト_
## クオドラティック・ファンディング {#quadratic-funding}
diff --git a/public/content/translations/ja/decentralized-identity/index.md b/public/content/translations/ja/decentralized-identity/index.md
index 0ddf480960e..c4deaea7073 100644
--- a/public/content/translations/ja/decentralized-identity/index.md
+++ b/public/content/translations/ja/decentralized-identity/index.md
@@ -49,7 +49,7 @@ summaryPoint3: 暗号技術により、今や再び自分自身のIDとアテス
## 分散型 ID を実現する技術 {#what-makes-decentralized-identifiers-possible}
-### 1. 公開鍵インフラストラクチャ(PKI) {#public-key-infrastructure}
+### 1. 公開鍵インフラストラクチャ(PKI) {#public-key-cryptography}
公開鍵インフラストラクチャ(PKI)とは、あるエンティティに対して[公開鍵](/glossary/#public-key)と[秘密鍵](/glossary/#private-key)を生成する情報セキュリティのことです。 公開鍵の暗号技術は、ブロックチェーンネットワークにおいて、ユーザーの身分を認証し、デジタル資産の所有権を証明するために使用されます。
diff --git a/public/content/translations/ja/defi/index.md b/public/content/translations/ja/defi/index.md
index f1e48de0bd4..fb27ebe3584 100644
--- a/public/content/translations/ja/defi/index.md
+++ b/public/content/translations/ja/defi/index.md
@@ -47,7 +47,7 @@ summaryPoint3: オープンソース技術に基づき、誰でもプログラ
| 市場は常にオープンしています。 | 従業員の休息のため、市場が閉じる時間があります。 |
| 誰もが製品データを見て、システムがどのように機能しているかを調べることができる、透明性の高いシステムです。 | 金融機関はクローズド・ブックであり、融資の履歴や運用資産の記録などを見せてもらうことはできません。 |
-
+
分散型金融(DeFi)アプリを探す
@@ -65,7 +65,7 @@ summaryPoint3: オープンソース技術に基づき、誰でもプログラ
イーサリアムを初めて使う方にお勧めの分散型金融(DeFi)アプリケーション
-
+
分散型金融(DeFi)アプリを探す
@@ -92,7 +92,7 @@ summaryPoint3: オープンソース技術に基づき、誰でもプログラ
イーサリアムはブロックチェーンとして、安全かつグローバルな方法でトランザクションを行うために設計されています。 ビットコイン同様、イーサリアムは世界中にお金を送ることが、メールを送るように簡単にできます。 受信者の[イーサリアム・ネーム・サービス(ENS)名](/nft/#nft-domains) (例: bob.eth)またはウォレットのアカウントアドレスを入力するだけで、通常、数分後には支払いが直接相手に届きます。 支払いの送受信には、 [ウォレット](/wallets/)が必要です。
-
+
支払いの分散型アプリ(Dapp)を見る
@@ -123,7 +123,7 @@ Dai や USDC のようなコインの価値変動は、1 ドルで数セント
- ピアツーピア: 借り手が特定の貸し手から直接借りることを意味します。
- プールベース: 借り手が借り入れることができるプールに、貸し手が資金(流動性)を提供する方法です。
-
+
融資分散型アプリ(Dapp)を見る
@@ -183,7 +183,7 @@ ETH を売却(課税対象)することなく、必要な資金を借り入れ
- aDai は金利に基づいて増加し、あなたのウォレットで残高が増えていくのを見ることができます。 年換算利回りに応じて、数日後、あるいは数時間後にウォレットの残高が 100.1234 のように表示されます。
- aDai 残高と同額の通常の Dai をいつでも引き出すことができます。
-
+
貸付サービスの分散型アプリ(Dapp)を見る
@@ -211,7 +211,7 @@ PoolTogether のような損失のない宝くじは、楽しく革新的な新
例えば、上述の損失のない宝くじ PoolTogether を利用したい場合、Dai や USDC などのトークンが必要になります。 これらの分散型取引所では、自分の ETH をそれらのトークンと交換し、終了後また ETH に戻すことができます。
-
+
トークン交換所を見る
@@ -223,7 +223,7 @@ PoolTogether のような損失のない宝くじは、楽しく革新的な新
中央集権的な取引所を利用する場合は、取引を行う前に資産を預けて、その資産の管理を任せなければなりません。 中央の取引所はハッカーにとって魅力的なターゲットであるため、資産が預けられている間はリスクがあります。
-
+
トレード分散型アプリ(Dapp)を見る
@@ -235,7 +235,7 @@ PoolTogether のような損失のない宝くじは、楽しく革新的な新
その良い例が、[分散型金融 Pulse インデックスファンド(DPI)](https://defipulse.com/blog/defi-pulse-index/)です。 これは、常に[時価総額上位の分散型金融(DeFi)トークン](https://www.coingecko.com/en/defi)がポートフォリオに含まれるよう、自動的に入れ替える(リバランスする)ファンドです。 細かい管理をする必要がなく、好きな時にファンドから引き出すことができます。
-
+
投資分散型アプリ(Dapp)を見る
@@ -249,7 +249,7 @@ PoolTogether のような損失のない宝くじは、楽しく革新的な新
- 透明性があるため、資金調達者がどれだけの資金を調達したかを証明できます。 あとでどのように資金が使われているかを追跡することもできます。
- 出資者は、例えば、特定の期限や最低金額が達成されなかった場合、自動的に返金されるように設定することができます。
-
+
クラウドファンディング分散型アプリ(Dapp)を見る
@@ -276,7 +276,7 @@ PoolTogether のような損失のない宝くじは、楽しく革新的な新
他のソフトウェアと同様、イーサリアム製品は、バグや不正搾取の問題があります。 そのため、現在のところ、この分野の保険商品の多くは、ユーザーが資金を失うことを防ぐことに重点を置いています。 しかし、人生で起こりうるあらゆることを補償するプロジェクトが始まっています。 その良い例が、[ケニアの零細農家を干ばつや洪水から守ることを目的とした](https://blog.etherisc.com/etherisc-teams-up-with-chainlink-to-deliver-crop-insurance-in-kenya-137e433c29dc)Etherisc の生産物保証です。 分散型の保険は、従来の保険では値段が高過ぎて手がでないことが多い農民に、より安価な保険を提供することができます。
-
+
保険分散型アプリ(Dapp)見る
@@ -286,7 +286,7 @@ PoolTogether のような損失のない宝くじは、楽しく革新的な新
多くのことが行われているため、すべての投資、ローン、取引を記録する方法が必要になります。 すべての分散型金融(DeFi)アクティビティを 1 つの場所で管理できる製品が多数あります。 これが分散型金融(DeFi)のオープンアーキテクチャーの魅力です。 製品すべての残高を確認できるだけでなく、その機能を利用できるインターフェースを構築することができます。 分散型金融(DeFi)をより深く知るための参考にしてみてください。
-
+
ポートフォリオ分散型アプリ(Dapp)を見る
diff --git a/public/content/translations/ja/desci/index.md b/public/content/translations/ja/desci/index.md
index 05622cc0ee3..2e7baa8ad0c 100644
--- a/public/content/translations/ja/desci/index.md
+++ b/public/content/translations/ja/desci/index.md
@@ -68,7 +68,7 @@ DeSci は、Web2 アカデミアをデジタルワールドにオンボーディ
同じ提案であっても同委員会の担当者によって結果が大きく異なることがあり、優れた提案を選択するうえで助成金審査委員会は責務を果たしていないことが研究によって示されています。 資金調達が厳しくなる中で、資金の行く先は保守的なプロジェクトを行う少人数の上席研究者へと集中してきました。 その結果、非常に競争の激しい資金調達環境が生み出され、歪んだインセンティブを根付かせ、イノベーションを妨げることになりました。
-DAO と Web3 によって培われた各種インセンティブモデルを広く試すことで、現在の破綻した資金調達モデルを食い止めることができるかもしれません。 [遡及効果のある公共財の資金調達](https://medium.com/ethereum-optimism/retroactive-public-goods-funding-33c9b7d00f0c)、[クアドラティックファンディング](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2003531)、[DAO ガバナンス](https://www.antler.co/blog/daos-and-web3-governance)、[トークン化されたインセンティブ構造<0>](https://cdixon.org/2017/05/27/crypto-tokens-a-breakthrough-in-open-network-design)などの Web3 ツールには、科学の資金調達に大変革をもたらす可能性があります。
+DAO と Web3 によって培われた各種インセンティブモデルを広く試すことで、現在の破綻した資金調達モデルを食い止めることができるかもしれません。 [遡及効果のある公共財の資金調達](https://medium.com/ethereum-optimism/retroactive-public-goods-funding-33c9b7d00f0c)、[クアドラティックファンディング](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2003531)、[DAO ガバナンス](https://www.antler.co/blog/daos-and-web3-governance-the-promise-implications-and-challenges-ahead)、[トークン化されたインセンティブ構造<0>](https://cdixon.org/2017/05/27/crypto-tokens-a-breakthrough-in-open-network-design)などの Web3 ツールには、科学の資金調達に大変革をもたらす可能性があります。
### IP の所有権と開発 {#ip-ownership}
diff --git a/public/content/translations/ja/developers/docs/consensus-mechanisms/pow/mining-algorithms/dagger-hashamoto/index.md b/public/content/translations/ja/developers/docs/consensus-mechanisms/pow/mining-algorithms/dagger-hashamoto/index.md
deleted file mode 100644
index 9d2b83b8b13..00000000000
--- a/public/content/translations/ja/developers/docs/consensus-mechanisms/pow/mining-algorithms/dagger-hashamoto/index.md
+++ /dev/null
@@ -1,334 +0,0 @@
----
-title: ダガーハシモト
-description: ダガーハシモト・アルゴリズムの詳細
-lang: ja
----
-
-ダガーハシモト(Dagger-Hashimoto)は、イーサリアムのマイニングアルゴリズムの最初の研究実装と仕様でした。 その後、ダガーハシモトから[Ethash](#ethash)に置き換えられました。 マイニングは、2022 年 9 月 15 日の[マージ](/updates/merge)で完全に廃止されました。 それ以降、イーサリアムには [プルーフ・オブ・ステーク](/developers/docs/consensus-mechanisms/pos)のメカニズムが使われています。 このページについては過去の流れを理解する目的でご覧ください。この情報は、マージ後のイーサリアムには該当しません。
-
-## 前提知識 {#prerequisites}
-
-このページをより理解するために、まず[プルーフ・オブ・ワーク・コンセンサス](/developers/docs/consensus-mechanisms/pow)、[マイニング](/developers/docs/consensus-mechanisms/pow/mining)、[マイニングアルゴリズム](/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms)を読むことをお勧めします。
-
-## ダガーハシモト {#dagger-hashimoto}
-
-ダガーハシモトは、次の 2 つの目的を達成することを目指しています。
-
-1. **ASIC 耐性**: アルゴリズム専用ハードウェアの製作によって得られる利益を、最小限にすること。
-2. **ライトクライアントの検証可能性**: ライトクライアントがブロックを効率的に検証可能であること。
-
-追加の修正により、ご希望に応じて、3 つ目の目標を達成する方法も記載しますが、複雑になります。
-
-**フルチェーンストレージ**: マイニングでは、完全なブロックチェーンの状態の保管を必要にすること(イーサリアムのステートツリーの不規則な構造により、特によく使われるいくつかのコントラクトは、ある程度のプルーニングが可能だと予想されます。しかし、これを最小限に抑えたいと考えています)。
-
-## 有向非巡回グラフ(DAG)の生成 {#dag-generation}
-
-Python を使って、このアルゴリズムのコードを以下に定義します。 最初に、指定された精度の符号なし整数型を、マーシャリングして文字列にするため `encode_int`を用意します。 変換された値を戻す関数もまた用意します。
-
-```python
-NUM_BITS = 512
-
-def encode_int(x):
- "Encode an integer x as a string of 64 characters using a big-endian scheme"
- o = ''
- for _ in range(NUM_BITS / 8):
- o = chr(x % 256) + o
- x //= 256
- return o
-
-def decode_int(s):
- "Unencode an integer x from a string using a big-endian scheme"
- x = 0
- for c in s:
- x *= 256
- x += ord(c)
- return x
-```
-
-次に`sha3`は、整数を引数に取り、整数を出力する関数とします。`dbl_sha3`は、倍精度浮動小数点数型の sha3 関数とします。このレファレンスのコードを、実装する場合は次のように使います。
-
-```python
-from pyethereum import utils
-def sha3(x):
- if isinstance(x, (int, long)):
- x = encode_int(x)
- return decode_int(utils.sha3(x))
-
-def dbl_sha3(x):
- if isinstance(x, (int, long)):
- x = encode_int(x)
- return decode_int(utils.sha3(utils.sha3(x)))
-```
-
-### パラメータ {#parameters}
-
-アルゴリズムに使用されるパラメータは次のとおりです。
-
-```python
-SAFE_PRIME_512 = 2**512 - 38117 # Largest Safe Prime less than 2**512
-
-params = {
- "n": 4000055296 * 8 // NUM_BITS, # Size of the dataset (4 Gigabytes); MUST BE MULTIPLE OF 65536
- "n_inc": 65536, # Increment in value of n per period; MUST BE MULTIPLE OF 65536
- # with epochtime=20000 gives 882 MB growth per year
- "cache_size": 2500, # Size of the light client's cache (can be chosen by light
- # client; not part of the algo spec)
- "diff": 2**14, # Difficulty (adjusted during block evaluation)
- "epochtime": 100000, # Length of an epoch in blocks (how often the dataset is updated)
- "k": 1, # Number of parents of a node
- "w": w, # Used for modular exponentiation hashing
- "accesses": 200, # Number of dataset accesses during hashimoto
- "P": SAFE_PRIME_512 # Safe Prime for hashing and random number generation
-}
-```
-
-この場合、`P`は、`log₂(P)`によって 512 よりわずかに小さくなるように選ばれた素数です。これは、数値を表すために使用している 512 ビットに対応します。 実際に格納される必要があるのは、DAG の後半部分です。事実上の RAM 要件は、1GB から始まり毎年 441MB ずつ増加します。
-
-### ダガーグラフの構築 {#dagger-graph-building}
-
-原始的なダガーグラフの構築は、以下のように定義できます。
-
-```python
-def produce_dag(params, seed, length):
- P = params["P"]
- picker = init = pow(sha3(seed), params["w"], P)
- o = [init]
- for i in range(1, length):
- x = picker = (picker * init) % P
- for _ in range(params["k"]):
- x ^= o[x % i]
- o.append(pow(x, params["w"], P))
- return o
-```
-
-基本的には、単一ノードである`sha3(seed)`として、グラフをスタートします。そこから、ランダムな前のノードに基づいて、他のノードを順次追加し始めます。 新しいノードが作成されると、シードの冪剰余が計算され、`i`より小さいいくつかのインデックスがランダムに選択されます (上記の`x % i`を使用) 。それらのインデックスのノードの値は、計算で使用され、`x`の新しい値を生成します。この値は、 (排他的論理和に基づいた) 小さなプルール・オブ・ワーク関数に送られ、最終的にはインデックス`i`のブラフの値を生成します。 この特有の設計の背後にある理論的根拠は、DAG のシーケンシャルアクセスを強制することです。アクセスされる DAG の次の値は、現在の値が判明するまで決定できません。 最後に、冪剰余で結果をさらにハッシュ化します。
-
-このアルゴリズムは、数論から得られたいくつかの結果に依存しています。 考察については、ページ下部にある付録を参照してください。
-
-## ライトクライアントの評価 {#light-client-evaluation}
-
-上記のグラフ構造は、少数のノードのみのサブツリーを計算してグラフの各ノードを再構築できるようすることを目的にしています。また、少量の補助メモリのみを必要とします。 k=1 の場合、サブツリーは、DAG の最初の要素までのチェーンの値にすぎないことに注意してください。
-
-ライトクライアントの DAG 計算関数は、次のように動作します。
-
-```python
-def quick_calc(params, seed, p):
- w, P = params["w"], params["P"]
- cache = {}
-
- def quick_calc_cached(p):
- if p in cache:
- pass
- elif p == 0:
- cache[p] = pow(sha3(seed), w, P)
- else:
- x = pow(sha3(seed), (p + 1) * w, P)
- for _ in range(params["k"]):
- x ^= quick_calc_cached(x % p)
- cache[p] = pow(x, w, P)
- return cache[p]
-
- return quick_calc_cached(p)
-```
-
-基本的に、上記のアルゴリズムを単純に書き直し、DAG 全体の値を計算するループが除かれ、以前のノード検索から、再帰呼び出しまたはキャッシュ検索に置き換えられています。 `k=1`の場合、キャッシュは不要となることに注意してください。しかし、さらなる最適化において、DAG の最初の数千の値が事前に計算され、計算用の静的キャッシュとして保持されます。これのコード実装は、付録を参照してください。
-
-## 有向非巡回グラフ(DAG)のダブルバッファ {#double-buffer}
-
-フルクライアントでは、上記の式で生成した 2 つの DAG の[_ダブルバッファ_](https://wikipedia.org/wiki/Multiple_buffering)が使われます。 このアイデアは、DAG が上記のパラメータに従い、ブロックの`epochtime`数ごとに生成されるというものです。 クライアントは、最新の生成された DAG を使うのではなく、1 つ前の DAG を使います。 この利点としては、マイナーが突然すべてのデータを再計算するステップを取り入れる必要がなく、DAG を時間の経過とともに置き換えられることです。 そうでなければ、チェーンを処理する一定間隔で突然一時的に遅くなり、集中化が劇的に増加する可能性があります。 これにより、すべてのデータが再計算される前の数分間以内に、51%攻撃のリスクが発生します。
-
-ブロックのワークを計算するために使われる DAG セットを生成するために使用するアルゴリズムは、次のようになります。
-
-```python
-def get_prevhash(n):
- from pyethereum.blocks import GENESIS_PREVHASH
- from pyethereum import chain_manager
- if num <= 0:
- return hash_to_int(GENESIS_PREVHASH)
- else:
- prevhash = chain_manager.index.get_block_by_number(n - 1)
- return decode_int(prevhash)
-
-def get_seedset(params, block):
- seedset = {}
- seedset["back_number"] = block.number - (block.number % params["epochtime"])
- seedset["back_hash"] = get_prevhash(seedset["back_number"])
- seedset["front_number"] = max(seedset["back_number"] - params["epochtime"], 0)
- seedset["front_hash"] = get_prevhash(seedset["front_number"])
- return seedset
-
-def get_dagsize(params, block):
- return params["n"] + (block.number // params["epochtime"]) * params["n_inc"]
-
-def get_daggerset(params, block):
- dagsz = get_dagsize(params, block)
- seedset = get_seedset(params, block)
- if seedset["front_hash"] <= 0:
- # No back buffer is possible, just make front buffer
- return {"front": {"dag": produce_dag(params, seedset["front_hash"], dagsz),
- "block_number": 0}}
- else:
- return {"front": {"dag": produce_dag(params, seedset["front_hash"], dagsz),
- "block_number": seedset["front_number"]},
- "back": {"dag": produce_dag(params, seedset["back_hash"], dagsz),
- "block_number": seedset["back_number"]}}
-```
-
-## ハシモト {#hashimoto}
-
-オリジナルのハシモトの背景にあるアイデアは、ブロックチェーンをデータセットとして使用することです。ブロックチェーンから N 個のインデックスを選択して計算を実行し、これらのインデックスでトランザクションを収集し、このデータの排他的論理和(XOR)を実行して、結果のハッシュ値を返します。 Thaddeus Dryja のオリジナルのアルゴリズムは、次のように一貫性のために Python でも書かれています。
-
-```python
-def orig_hashimoto(prev_hash, merkle_root, list_of_transactions, nonce):
- hash_output_A = sha256(prev_hash + merkle_root + nonce)
- txid_mix = 0
- for i in range(64):
- shifted_A = hash_output_A >> i
- transaction = shifted_A % len(list_of_transactions)
- txid_mix ^= list_of_transactions[transaction] << i
- return txid_max ^ (nonce << 192)
-```
-
-残念ながら、ハシモトは RAM の消費が多いとみなされています。256 ビット演算に依存しており、計算にかなりのオーバーヘッドがあります。 しかし、ダガーハシモトでは、この問題に対処するため、最下位 64 ビットのみを使用してデータセットのインデックスを作成します。
-
-```python
-def hashimoto(dag, dagsize, params, header, nonce):
- m = dagsize / 2
- mix = sha3(encode_int(nonce) + header)
- for _ in range(params["accesses"]):
- mix ^= dag[m + (mix % 2**64) % m]
- return dbl_sha3(mix)
-```
-
-倍精度浮動小数点数型(double) SHA3 を使用して、ゼロデータ形式、ほぼ即時の事前検証、提供された正しい中間値のみの検証などが可能です。 このプルーフ・オブ・ワークの外側のレイヤーは、ASIC と相性が非常に良く、かなり脆弱になってます。しかし、すぐに拒否されないブロックを生成するには、少量のワークをしなければならないため、DDoS 攻撃をさらに困難にします。 以下は、ライトクライアントのバージョンです。
-
-```python
-def quick_hashimoto(seed, dagsize, params, header, nonce):
- m = dagsize // 2
- mix = sha3(nonce + header)
- for _ in range(params["accesses"]):
- mix ^= quick_calc(params, seed, m + (mix % 2**64) % m)
- return dbl_sha3(mix)
-```
-
-## マイニングと検証 {#mining-and-verifying}
-
-それでは、すべてをマイニングアルゴリズムにまとめてみましょう。
-
-```python
-def mine(daggerset, params, block):
- from random import randint
- nonce = randint(0, 2**64)
- while 1:
- result = hashimoto(daggerset, get_dagsize(params, block),
- params, decode_int(block.prevhash), nonce)
- if result * params["diff"] < 2**256:
- break
- nonce += 1
- if nonce >= 2**64:
- nonce = 0
- return nonce
-```
-
-以下は、検証アルゴリズムです。
-
-```python
-def verify(daggerset, params, block, nonce):
- result = hashimoto(daggerset, get_dagsize(params, block),
- params, decode_int(block.prevhash), nonce)
- return result * params["diff"] < 2**256
-```
-
-以下は、ライトクライアントフレンドリーな検証です。
-
-```python
-def light_verify(params, header, nonce):
- seedset = get_seedset(params, block)
- result = quick_hashimoto(seedset["front_hash"], get_dagsize(params, block),
- params, decode_int(block.prevhash), nonce)
- return result * params["diff"] < 2**256
-```
-
-また、ダガーハシモトは、ブロックヘッダに次の追加の要件を課していることに注意してください。
-
-- 2 層検証が機能するためには、ブロックヘッダーに、ノンス (nonce)と、前に sha3 だった中間値の両方が含まれている必要がある。
-- ブロックヘッダーのどこかに、現在のシードセットの sha3 が格納されている必要がある。
-
-## 参考文献 {#further-reading}
-
-_役に立つコミュニティリソースをご存知の場合は、 このページを編集して追加してください。_
-
-## 付録 {#appendix}
-
-前述のように、DAG の生成で使われる乱数発生器(RNG)は、数論から得られた次の結果に依存しています。 最初に`picker`変数のもととなるレーマー乱数発生器の周期が広いことを断言しておきます。 次に、`pow(x,3,P)`は、 `x ∈ [2,P-2]`を開始条件として、`x`を`1`または`P-1`にマップしないことを示します。 最後に、 `pow(x,3,P)`を、ハッシュ関数として扱うと、衝突率が低くなることを示します。
-
-### レーマー 乱数発生器 {#lehmer-random-number}
-
-`produce_dag`関数は、無作為の乱数を生成する必要がない一方で、潜在的な脅威として`seed**i % P`が一握りの値しか取れません。 このため、このパターンを認識しているマイナーは、そうでないマイナーに比べて有利になる可能性があります。
-
-これを避けるために、数論による結果を使う必要があります。 [_安全素数_](https://en.wikipedia.org/wiki/Safe_prime)とは、 `(P-1)/2`も素数であるような素数`P`と定義されています。 [乗法群](https://en.wikipedia.org/wiki/Multiplicative_group_of_integers_modulo_n)のメンバー `x`の*次数* `ℤ/nℤ`は、次の公式にある小さい字の`m`で定義されています。
xᵐ mod P ≡ 1
-これらの定義から、次のようになります。
-
-> 見解 1. `x`を安全素数`P`の乗法群`ℤ/Pℤ`のメンバーとします。 `x mod P ≠ 1 mod P`かつ`x mod P ≠ P-1 mod P`の場合は、`x`の次数は、`P-1`または`(P-1)/2`となります。
-
-_証明_. `P`は安全素数なので、\[ラグランジュの定理\]\[lagrange\]により、`x`の次数は`1`、`2`、`(P-1)/2`、または`P-1`のいずれかになります。
-
-`x`の次数は`1`になることはできません。フェルマーの小定理により、次を満たすためです。
-
-
xP-1 mod P ≡ 1
-
-したがって、`x`は`ℤ/nℤ`の乗法的単位元でなければならず、一意です。 前提で`x≠1`としたので、これはありえません。
-
-`x = P-1`でない限り、`x`の次数を`2`にすることはできません。これは、`P`が素数であることに違反するためです。
-
-上記の命題から、`(picker * init) % P`の繰り返しは、少なくとも`(P-1)/2`の周期になることがわかります。 これは、`P`を 2 以上の累乗にほぼ等しい安全素数として選択し、`init`が`[2,2**256+1]`の間隔にあるためです。 `P`の大きさを考えると、冪剰余から周期を予想することはできません。
-
-DAG の最初のセルを割り当てるとき (`init`というラベルの付いた変数) 、`pow(sha3(seed) + 2, 3, P)`を計算します。 一見すると、これは結果が`1`でも`P-1`でもないことを保証しません。 しかし、`P-1`は、安全素数であるため、見解 1 の帰結となる次の追加の保証があります。
-
-> 見解 2. `x`を安全素数`P`の乗法群`ℤ/Pℤ`のメンバーとし、`w`を自然数とします。 `x mod P ≠ 1 mod P`かつ`x mod P ≠ P-1 mod P`および`w mod P ≠ P-1 mod P`かつ`w mod P ≠ 0 mod P`の場合、`xʷ mod P ≠ 1 mod P`かつ`xʷ mod P ≠ P-1 mod P`
-
-### ハッシュ関数としての冪乗余 {#modular-exponentiation}
-
-`P`と`w`の特定の値に対して、関数`pow(x,w,P)`は、多くの衝突を起こす可能性があります。 たとえば、`pow(x,9,19) `は値`{1,18}`のみを取ります。
-
-`P`が素数であるとすると、累積余剰ハッシュ関数の適切な`w`は、次の結果を使用して選択できます。
-
-> 見解 3. `P`を素数とし、`ℤ/Pℤ`のすべての`a`かつ`b`において、そのときに限り`w`かつ`P-1`が互いに素であることが成り立ち、これは次のようになります。
->
->
-> `a mod P ≡ b mod P` のとき、そのときに限り `aʷ mod P ≡ bʷ mod P`
->
ನೀವು ಇಥಿರಿಯಮ್ಗೆ ಹೊಸಬರಾಗಿದ್ದೀರಾ ಎಂದು ಪ್ರಯತ್ನಿಸಲು DeFi ಅಪ್ಲಿಕೇಶನ್ಗಳಿಗಾಗಿ ನಮ್ಮ ಸಲಹೆಗಳನ್ನು ಅನ್ವೇಷಿಸಿ.
-
+
DeFi ಅಪ್ಲಿಕೇಶನ್ಗಳನ್ನು ಅನ್ವೇಷಿಸಿ
@@ -92,7 +92,7 @@ DeFi ನ ಸಾಮರ್ಥ್ಯವನ್ನು ನೋಡುವ ಅತ್ಯು
ಬ್ಲಾಕ್ಚೈನ್ ಆಗಿ, ಇಥಿರಿಯಮ್ ಅನ್ನು ಸುರಕ್ಷಿತ ಮತ್ತು ಜಾಗತಿಕ ರೀತಿಯಲ್ಲಿ ವಹಿವಾಟುಗಳನ್ನು ಕಳುಹಿಸಲು ವಿನ್ಯಾಸಗೊಳಿಸಲಾಗಿದೆ. ಬಿಟ್ಕಾಯಿನ್ನಂತೆ, ಇಥಿರಿಯಮ್ ಪ್ರಪಂಚದಾದ್ಯಂತ ಹಣವನ್ನು ಕಳುಹಿಸುವುದನ್ನು ಇಮೇಲ್ ಕಳುಹಿಸುವಷ್ಟೇ ಸುಲಭಗೊಳಿಸುತ್ತದೆ. ನಿಮ್ಮ ವ್ಯಾಲೆಟ್ನಿಂದ ನಿಮ್ಮ ಸ್ವೀಕೃತಕರ್ತನ [ENS ಹೆಸರು](/nft/#nft-domains) (bob.eth ನಂತಹ) ಅಥವಾ ಅವರ ಖಾತೆ ವಿಳಾಸವನ್ನು ನಮೂದಿಸಿ ಮತ್ತು ನಿಮ್ಮ ಪಾವತಿ ನಿಮಿಷಗಳಲ್ಲಿ (ಸಾಮಾನ್ಯವಾಗಿ) ನೇರವಾಗಿ ಅವರಿಗೆ ಹೋಗುತ್ತದೆ. ಪಾವತಿಗಳನ್ನು ಕಳುಹಿಸಲು ಅಥವಾ ಸ್ವೀಕರಿಸಲು, ನಿಮಗೆ [ವ್ಯಾಲೆಟ್](/wallets/) ಅಗತ್ಯವಿದೆ.
-
+
ಪಾವತಿ dapps ನೋಡಿ
@@ -123,7 +123,7 @@ Dai ಅಥವಾ USDCಯಂತಹ ನಾಣ್ಯಗಳು ಡಾಲರ್ನ
- ಪೀರ್-ಟು-ಪೀರ್, ಅಂದರೆ ಸಾಲಗಾರನು ನಿರ್ದಿಷ್ಟ ಸಾಲದಾತರಿಂದ ನೇರವಾಗಿ ಸಾಲ ಪಡೆಯುತ್ತಾನೆ.
- ಸಾಲಗಾರರು ಸಾಲ ಪಡೆಯಬಹುದಾದ ಪೂಲ್ಗೆ ಸಾಲದಾತರು ಹಣವನ್ನು (liquidity ದ್ರವ್ಯತೆ) ಒದಗಿಸುವ ಪೂಲ್ ಆಧಾರಿತ.
-
+
ಎರವಲು dapps ನೋಡಿ
@@ -183,7 +183,7 @@ Dai ಅಥವಾ USDCಯಂತಹ ನಾಣ್ಯಗಳು ಡಾಲರ್ನ
- ಬಡ್ಡಿದರಗಳ ಆಧಾರದ ಮೇಲೆ ನಿಮ್ಮ aDai ಹೆಚ್ಚಾಗುತ್ತದೆ ಮತ್ತು ನಿಮ್ಮ ವ್ಯಾಲೆಟ್ನಲ್ಲಿ ನಿಮ್ಮ ಬ್ಯಾಲೆನ್ಸ್ ಬೆಳೆಯುತ್ತಿರುವುದನ್ನು ನೀವು ನೋಡಬಹುದು. APR ಅನ್ನು ಅವಲಂಬಿಸಿ, ನಿಮ್ಮ ವ್ಯಾಲೆಟ್ ಬ್ಯಾಲೆನ್ಸ್ ಕೆಲವು ದಿನಗಳು ಅಥವಾ ಗಂಟೆಗಳ ನಂತರ 100.1234 ರಷ್ಟಿದೆ!
- ನಿಮ್ಮ aDai ಬ್ಯಾಲೆನ್ಸ್ ಗೆ ಸಮನಾದ ನಿಯಮಿತ Dai ಮೊತ್ತವನ್ನು ನೀವು ಯಾವುದೇ ಸಮಯದಲ್ಲಿ ಹಿಂಪಡೆಯಬಹುದು.
-
+
ಸಾಲ ನೀಡುವ Dappsಗಳನ್ನು ನೋಡಿ
@@ -211,7 +211,7 @@ Dai ಅಥವಾ USDCಯಂತಹ ನಾಣ್ಯಗಳು ಡಾಲರ್ನ
ಉದಾಹರಣೆಗೆ, ನೀವು ನಷ್ಟವಿಲ್ಲದ ಲಾಟರಿ ಪೂಲ್ ಟುಗೆದರ್ (ಮೇಲೆ ವಿವರಿಸಲಾಗಿದೆ) ಬಳಸಲು ಬಯಸಿದರೆ, ನಿಮಗೆ Dai ಅಥವಾ USDCಯಂತಹ ಟೋಕನ್ ಅಗತ್ಯವಿದೆ. ಈ DEX ಗಳು ಆ ಟೋಕನ್ಗಳಿಗಾಗಿ ನಿಮ್ಮ ETH ಅನ್ನು ಬದಲಾಯಿಸಲು ಮತ್ತು ನೀವು ಮುಗಿದ ನಂತರ ಮತ್ತೆ ಹಿಂತಿರುಗಲು ನಿಮಗೆ ಅನುಮತಿಸುತ್ತವೆ.
-
+
ಟೋಕನ್ ವಿನಿಮಯಗಳನ್ನು ನೋಡಿ
@@ -223,7 +223,7 @@ Dai ಅಥವಾ USDCಯಂತಹ ನಾಣ್ಯಗಳು ಡಾಲರ್ನ
ನೀವು ಕೇಂದ್ರೀಕೃತ ವಿನಿಮಯ ಕೇಂದ್ರವನ್ನು ಬಳಸುವಾಗ ನೀವು ವ್ಯಾಪಾರದ ಮೊದಲು ನಿಮ್ಮ ಸ್ವತ್ತುಗಳನ್ನು ಠೇವಣಿ ಮಾಡಬೇಕು ಮತ್ತು ಅವುಗಳನ್ನು ನೋಡಿಕೊಳ್ಳಲು ಅವರನ್ನು ನಂಬಬೇಕು. ನಿಮ್ಮ ಸ್ವತ್ತುಗಳನ್ನು ಠೇವಣಿ ಮಾಡುವಾಗ, ಕೇಂದ್ರೀಕೃತ ವಿನಿಮಯಗಳು ಹ್ಯಾಕರ್ ಗಳಿಗೆ ಆಕರ್ಷಕ ಗುರಿಗಳಾಗಿರುವುದರಿಂದ ಅವು ಅಪಾಯದಲ್ಲಿವೆ.
-
+
ಟ್ರೇಡಿಂಗ್ dapps ನೋಡಿ
@@ -234,7 +234,7 @@ Dai ಅಥವಾ USDCಯಂತಹ ನಾಣ್ಯಗಳು ಡಾಲರ್ನ
ಇಥಿರಿಯಮ್ನಲ್ಲಿ ನಿಧಿ ನಿರ್ವಹಣಾ ಉತ್ಪನ್ನಗಳು ಇವೆ, ಅದು ನಿಮ್ಮ ಆಯ್ಕೆಯ ಕಾರ್ಯತಂತ್ರದ ಆಧಾರದ ಮೇಲೆ ನಿಮ್ಮ ಪೋರ್ಟ್ಫೋಲಿಯೋವನ್ನು ಬೆಳೆಸಲು ಪ್ರಯತ್ನಿಸುತ್ತದೆ. ಇದು ಸ್ವಯಂಚಾಲಿತವಾಗಿದೆ, ಎಲ್ಲರಿಗೂ ಮುಕ್ತವಾಗಿದೆ, ಮತ್ತು ನಿಮ್ಮ ಲಾಭವನ್ನು ಕಡಿತಗೊಳಿಸುವ ಮಾನವ ವ್ಯವಸ್ಥಾಪಕರ ಅಗತ್ಯವಿಲ್ಲ.
ಇದಕ್ಕೆ ಉತ್ತಮ ಉದಾಹರಣೆಯೆಂದರೆ [DeFi ಪಲ್ಸ್ ಇಂಡೆಕ್ಸ್ ಫಂಡ್ (DPI)](https://defipulse.com/blog/defi-pulse-index/). ಇದು ನಿಮ್ಮ ಪೋರ್ಟ್ಫೋಲಿಯೊ ಯಾವಾಗಲೂ [ಮಾರುಕಟ್ಟೆ ಬಂಡವಾಳೀಕರಣದ ಮೂಲಕ ಉನ್ನತ DeFi ಟೋಕನ್ಗಳನ್ನು](https://www.coingecko.com/en/defi)ಒಳಗೊಂಡಿದೆ ಎಂದು ಖಚಿತಪಡಿಸಿಕೊಳ್ಳಲು ಸ್ವಯಂಚಾಲಿತವಾಗಿ ಮರುಸಮತೋಲನಗೊಳಿಸುವ ಫಂಡ್ ಆಗಿದೆ. ನೀವು ಎಂದಿಗೂ ಯಾವುದೇ ವಿವರಗಳನ್ನು ನಿರ್ವಹಿಸಬೇಕಾಗಿಲ್ಲ ಮತ್ತು ನೀವು ಬಯಸಿದಾಗ ನಿಧಿಯಿಂದ ಹಿಂಪಡೆಯಬಹುದು.
-
+
ಹೂಡಿಕೆ dapps ನೋಡಿ
@@ -248,7 +248,7 @@ Dai ಅಥವಾ USDCಯಂತಹ ನಾಣ್ಯಗಳು ಡಾಲರ್ನ
- ಇದು ಪಾರದರ್ಶಕವಾಗಿದೆ ಆದ್ದರಿಂದ ನಿಧಿಸಂಗ್ರಹಕರು ಎಷ್ಟು ಹಣವನ್ನು ಸಂಗ್ರಹಿಸಲಾಗಿದೆ ಎಂಬುದನ್ನು ಸಾಬೀತುಪಡಿಸಬಹುದು. ಹಣವನ್ನು ಹೇಗೆ ಖರ್ಚು ಮಾಡಲಾಗುತ್ತಿದೆ ಎಂಬುದನ್ನು ನೀವು ನಂತರ ಪತ್ತೆಹಚ್ಚಬಹುದು.
- ಉದಾಹರಣೆಗೆ, ನಿರ್ದಿಷ್ಟ ಗಡುವು ಮತ್ತು ಕನಿಷ್ಠ ಮೊತ್ತವನ್ನು ಪೂರೈಸದಿದ್ದರೆ ನಿಧಿಸಂಗ್ರಹಕರು ಸ್ವಯಂಚಾಲಿತ ಮರುಪಾವತಿಗಳನ್ನು ಹೊಂದಿಸಬಹುದು.
-
+
ಕ್ರೌಡ್ ಫಂಡಿಂಗ್ dapps ನೋಡಿ
@@ -275,7 +275,7 @@ Quadratic funding makes sure that the projects that receive the most funding are
ಇಥಿರಿಯಮ್ ಉತ್ಪನ್ನಗಳು, ಯಾವುದೇ ಸಾಫ್ಟ್ವೇರ್ನಂತೆ, ದೋಷಗಳು ಮತ್ತು ಶೋಷಣೆಗಳಿಂದ ಬಳಲಬಹುದು. ಆದ್ದರಿಂದ ಇದೀಗ ಬಹಳಷ್ಟು ವಿಮಾ ಉತ್ಪನ್ನಗಳು ತಮ್ಮ ಬಳಕೆದಾರರನ್ನು ಹಣದ ನಷ್ಟದಿಂದ ರಕ್ಷಿಸುವತ್ತ ಗಮನ ಹರಿಸುತ್ತವೆ. ಆದಾಗ್ಯೂ, ಜೀವನವು ನಮ್ಮ ಮೇಲೆ ಎಸೆಯಬಹುದಾದ ಎಲ್ಲದಕ್ಕೂ ವ್ಯಾಪ್ತಿಯನ್ನು ನಿರ್ಮಿಸಲು ಪ್ರಾರಂಭಿಸುವ ಯೋಜನೆಗಳಿವೆ. ಇದಕ್ಕೆ ಉತ್ತಮ ಉದಾಹರಣೆಯೆಂದರೆ Etherisc's Crop cover - ಎಥೆರಿಸ್ಕ್ ನ ಬೆಳೆ ಹೊದಿಕೆ, ಇದು ಕೀನ್ಯಾದಲ್ಲಿ [ಸಣ್ಣ ಹಿಡುವಳಿದಾರ ರೈತರನ್ನು ಬರಗಾಲ ಮತ್ತು ಪ್ರವಾಹದಿಂದ ರಕ್ಷಿಸುವ](https://blog.etherisc.com/etherisc-teams-up-with-chainlink-to-deliver-crop-insurance-in-kenya-137e433c29dc) ಗುರಿಯನ್ನು ಹೊಂದಿದೆ. ವಿಕೇಂದ್ರೀಕೃತ ವಿಮೆಯು ಸಾಂಪ್ರದಾಯಿಕ ವಿಮೆಯಿಂದ ಹೊರಗುಳಿದ ರೈತರಿಗೆ ಅಗ್ಗದ ರಕ್ಷಣೆಯನ್ನು ಒದಗಿಸುತ್ತದೆ.
-
+
ವಿಮಾ dapps ನೋಡಿ
@@ -285,7 +285,7 @@ Quadratic funding makes sure that the projects that receive the most funding are
ಇಷ್ಟೆಲ್ಲಾ ನಡೆಯುತ್ತಿರುವಾಗ, ನಿಮ್ಮ ಎಲ್ಲಾ ಹೂಡಿಕೆಗಳು, ಸಾಲಗಳು ಮತ್ತು ವಹಿವಾಟುಗಳನ್ನು ಟ್ರ್ಯಾಕ್ ಮಾಡಲು ನಿಮಗೆ ಒಂದು ಮಾರ್ಗ ಬೇಕು. ನಿಮ್ಮ ಎಲ್ಲಾ ಡಿಫೈ ಚಟುವಟಿಕೆಯನ್ನು ಒಂದೇ ಸ್ಥಳದಿಂದ ಸಮನ್ವಯಗೊಳಿಸಲು ನಿಮಗೆ ಅನುಮತಿಸುವ ಉತ್ಪನ್ನಗಳ ಇದೆ. ಇದು ಡಿಫೈನ ಮುಕ್ತ ವಾಸ್ತುಶಿಲ್ಪದ ಸೌಂದರ್ಯವಾಗಿದೆ. ತಂಡಗಳು ಇಂಟರ್ಫೇಸ್ಗಳನ್ನು ನಿರ್ಮಿಸಬಹುದು, ಅಲ್ಲಿ ನೀವು ಉತ್ಪನ್ನಗಳಾದ್ಯಂತ ನಿಮ್ಮ ಸಮತೋಲನವನ್ನು ನೋಡಲು ಸಾಧ್ಯವಿಲ್ಲ, ನೀವು ಅವರ ವೈಶಿಷ್ಟ್ಯಗಳನ್ನು ಸಹ ಬಳಸಬಹುದು. ನೀವು DeFi ಬಗ್ಗೆ ಹೆಚ್ಚು ಅನ್ವೇಷಿಸುವಾಗ ಇದು ನಿಮಗೆ ಉಪಯುಕ್ತವಾಗಬಹುದು.
-
+
ಪೋರ್ಟ್ಫೋಲಿಯೊ dapps ನೋಡಿ
diff --git a/public/content/translations/kn/desci/index.md b/public/content/translations/kn/desci/index.md
index fe6b5d23b3e..eca7bd04066 100644
--- a/public/content/translations/kn/desci/index.md
+++ b/public/content/translations/kn/desci/index.md
@@ -68,7 +68,7 @@ DeSci Web2 ಅಕ್ಯಾಡೆಮಿಯನ್ನು ಡಿಜಿಟಲ್ ಪ
ವಿವಿಧ ಪ್ಯಾನೆಲ್ಗಳಿಗೆ ನೀಡಿದ ಅದೇ ಪ್ರಸ್ತಾವನೆಗಳು ವಿಭಿನ್ನ ಫಲಿತಾಂಶಗಳನ್ನು ಹೊಂದಿರುವುದರಿಂದ ಅನುದಾನ ಪರಿಶೀಲನಾ ಫಲಕಗಳು ಉತ್ತಮ-ಗುಣಮಟ್ಟದ ಪ್ರಸ್ತಾವನೆಗಳನ್ನು ಆಯ್ಕೆ ಮಾಡುವ ಕಳಪೆ ಕೆಲಸವನ್ನು ಮಾಡುತ್ತವೆ ಎಂದು ಅಧ್ಯಯನಗಳು ತೋರಿಸಿವೆ. ಧನಸಹಾಯವು ಹೆಚ್ಚು ವಿರಳವಾಗಿರುವುದರಿಂದ, ಇದು ಹೆಚ್ಚು ಬೌದ್ಧಿಕವಾಗಿ ಸಂಪ್ರದಾಯವಾದಿ ಯೋಜನೆಗಳೊಂದಿಗೆ ಹೆಚ್ಚು ಹಿರಿಯ ಸಂಶೋಧಕರ ಒಂದು ಸಣ್ಣ ಪೂಲ್ ಆಗಿ ಕೇಂದ್ರೀಕೃತವಾಗಿದೆ. ಪರಿಣಾಮವು ಹೈಪರ್-ಸ್ಪರ್ಧಾತ್ಮಕ ನಿಧಿಯ ಭೂದೃಶ್ಯವನ್ನು ಸೃಷ್ಟಿಸಿದೆ, ವಿಕೃತ ಪ್ರೋತ್ಸಾಹಗಳನ್ನು ಮತ್ತು ಹೊಸತನವನ್ನು ನಿಗ್ರಹಿಸುತ್ತದೆ.
-ವೆಬ್3 ಬ್ರಾಡ್ಲಿ ದೀರ್ಘಪ್ರಯಾಸಗಳು ಮತ್ತು DAOs ದ್ವಾರಾ ಅಭಿವೃದ್ಧಿಯ ವಿಭಿನ್ನ ಪ್ರೇರಣೆ ಮಾದರಿಗಳನ್ನು ಪರೀಕ್ಷಿಸುವುದರ ಮೂಲಕ, Web3 ಈ ಕೆಟ್ಟ ಅನುಭವಣೆ ಮುರಿಗೆ ಮುಡಿಸುವ ಸಾಮರ್ಥ್ಯವನ್ನು ಹೊಂದಿದೆ. [ಪೂರ್ವಾನ್ವಯ ಸಾರ್ವಜನಿಕ ಸರಕುಗಳ ಧನಸಹಾಯ](https://medium.com/ethereum-optimism/retroactive-public-goods-funding-33c9b7d00f0c), [ಕ್ವಾಡ್ರಾಟಿಕ್ ಧನಸಹಾಯ](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2003531), [DAO ಆಡಳಿತ](https://www.antler.co/blog/daos-and-web3-governance) ಮತ್ತು [ಸಾಂಕೇತಿಕ ಪ್ರೋತ್ಸಾಹಕ ರಚನೆಗಳು](https://cdixon.org/2017/05/27/crypto-tokens-a-breakthrough-in-open-network-design) ವಿಜ್ಞಾನ ಧನಸಹಾಯದಲ್ಲಿ ಕ್ರಾಂತಿಯನ್ನುಂಟು ಮಾಡುವ Web3 ಸಾಧನಗಳಾಗಿವೆ.
+ವೆಬ್3 ಬ್ರಾಡ್ಲಿ ದೀರ್ಘಪ್ರಯಾಸಗಳು ಮತ್ತು DAOs ದ್ವಾರಾ ಅಭಿವೃದ್ಧಿಯ ವಿಭಿನ್ನ ಪ್ರೇರಣೆ ಮಾದರಿಗಳನ್ನು ಪರೀಕ್ಷಿಸುವುದರ ಮೂಲಕ, Web3 ಈ ಕೆಟ್ಟ ಅನುಭವಣೆ ಮುರಿಗೆ ಮುಡಿಸುವ ಸಾಮರ್ಥ್ಯವನ್ನು ಹೊಂದಿದೆ. [ಪೂರ್ವಾನ್ವಯ ಸಾರ್ವಜನಿಕ ಸರಕುಗಳ ಧನಸಹಾಯ](https://medium.com/ethereum-optimism/retroactive-public-goods-funding-33c9b7d00f0c), [ಕ್ವಾಡ್ರಾಟಿಕ್ ಧನಸಹಾಯ](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2003531), [DAO ಆಡಳಿತ](https://www.antler.co/blog/daos-and-web3-governance-the-promise-implications-and-challenges-ahead) ಮತ್ತು [ಸಾಂಕೇತಿಕ ಪ್ರೋತ್ಸಾಹಕ ರಚನೆಗಳು](https://cdixon.org/2017/05/27/crypto-tokens-a-breakthrough-in-open-network-design) ವಿಜ್ಞಾನ ಧನಸಹಾಯದಲ್ಲಿ ಕ್ರಾಂತಿಯನ್ನುಂಟು ಮಾಡುವ Web3 ಸಾಧನಗಳಾಗಿವೆ.
### IP ಮಾಲೀಕತ್ವ ಮತ್ತು ಅಭಿವೃದ್ಧಿ {#ip-ownership}
diff --git a/public/content/translations/kn/smart-contracts/index.md b/public/content/translations/kn/smart-contracts/index.md
index 222effa1f63..74127a527cf 100644
--- a/public/content/translations/kn/smart-contracts/index.md
+++ b/public/content/translations/kn/smart-contracts/index.md
@@ -65,7 +65,7 @@ lang: kn
- [ಸ್ಟೇಬಲ್ಕಾಯಿನ್ಗಳು](/stablecoins/)
- [ಅನನ್ಯ ಡಿಜಿಟಲ್ ಸ್ವತ್ತುಗಳನ್ನು ರಚಿಸುವುದು ಮತ್ತು ವಿತರಿಸುವುದು](/nft/)
- [ಸ್ವಯಂಚಾಲಿತ, ಮುಕ್ತ ಕರೆನ್ಸಿ ವಿನಿಮಯ](/get-eth/#dex)
-- [ವಿಕೇಂದ್ರೀಕೃತ ಗೇಮಿಂಗ್](/dapps/?category=gaming)
+- [ವಿಕೇಂದ್ರೀಕೃತ ಗೇಮಿಂಗ್](/dapps/?category=gaming#explore)
- [ಸ್ವಯಂಚಾಲಿತವಾಗಿ ಪಾವತಿಸುವ ವಿಮಾ ಪಾಲಿಸಿ](https://etherisc.com/)
- [ಕಸ್ಟಮೈಸ್ ಮಾಡಿದ, ಪರಸ್ಪರ ಕಾರ್ಯಸಾಧ್ಯವಾದ ಕರೆನ್ಸಿಗಳನ್ನು ರಚಿಸಲು ಜನರಿಗೆ ಅನುಮತಿಸುವ ಮಾನದಂಡ](/developers/docs/standards/tokens/)
diff --git a/public/content/translations/ko/dao/index.md b/public/content/translations/ko/dao/index.md
index 069fe8f2b5b..d7fb0380ed2 100644
--- a/public/content/translations/ko/dao/index.md
+++ b/public/content/translations/ko/dao/index.md
@@ -28,13 +28,13 @@ DAO는 그룹의 승인 없이는 누구도 접근할 수 없는 내장된 자
### 비교 {#dao-comparison}
-| 탈중앙화 자율 조직 | 기존의 조직 |
-| -------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- |
-| 일반적으로 수평적이고, 완전히 민주화되어 있습니다. | 일반적으로 계층적입니다. |
-| 변경 사항을 구현하려면 회원의 투표가 필요합니다. | 구조에 따라 단독 주체가 변경을 요구하거나 투표가 제안될 수 있습니다. |
-| 투표가 집계되고, 결과는 신뢰할 수 있는 중개자 없이 자동으로 구현됩니다. | 투표가 시행되는 경우, 투표는 내부적으로 집계되고 투표 결과는 수동으로 처리해야 합니다. |
-| 제공되는 서비스는 탈중앙화된 방식으로 자동 처리됩니다(예: 자선 기금 분배). | 사람이 직접 처리하거나 중앙에서 제어되는 자동화가 필요하며 조작하기 쉽습니다. |
-| 모든 활동은 투명하고 완전히 공개됩니다. | 활동은 일반적으로 비공개로 이루어지며 공개에 제한적입니다. |
+| 탈중앙화 자율 조직 | 기존의 조직 |
+| ------------------------------------------- | ------------------------------------------------- |
+| 일반적으로 수평적이고, 완전히 민주화되어 있습니다. | 일반적으로 계층적입니다. |
+| 변경 사항을 구현하려면 회원의 투표가 필요합니다. | 구조에 따라 단독 주체가 변경을 요구하거나 투표가 제안될 수 있습니다. |
+| 투표가 집계되고, 결과는 신뢰할 수 있는 중개자 없이 자동으로 구현됩니다. | 투표가 시행되는 경우, 투표는 내부적으로 집계되고 투표 결과는 수동으로 처리해야 합니다. |
+| 제공되는 서비스는 탈중앙화된 방식으로 자동 처리됩니다(예: 자선 기금 분배). | 사람이 직접 처리하거나 중앙에서 제어되는 자동화가 필요하며 조작하기 쉽습니다. |
+| 모든 활동은 투명하고 완전히 공개됩니다. | 활동은 일반적으로 비공개로 이루어지며 공개에 제한적입니다. |
### DAO 예시 {#dao-examples}
diff --git a/public/content/translations/ko/decentralized-identity/index.md b/public/content/translations/ko/decentralized-identity/index.md
index a808540556c..04317e56598 100644
--- a/public/content/translations/ko/decentralized-identity/index.md
+++ b/public/content/translations/ko/decentralized-identity/index.md
@@ -49,7 +49,7 @@ summaryPoint3: 암호화폐 덕분에 사용자는 다시 한 번 자신의 식
## 분산 식별자는 어떻게 가능한가요? {#what-makes-decentralized-identifiers-possible}
-### 1. 공개 키 기반 구조(PKI) {#public-key-infrastructure}
+### 1. 공개 키 기반 구조(PKI) {#public-key-cryptography}
공개 키 기반 구조(PKI)는 특정 주체를 위해 [공개 키](/glossary/#public-key) 와 [개인 키](/glossary/#private-key)를 생성하는 정보 보안 장치입니다. 공개 키 암호화 기법은 블록체인 네트워크에서 사용자의 신원을 인증하고 디지털 자산의 소유권을 증명하는 용도로 사용됩니다.
diff --git a/public/content/translations/ko/defi/index.md b/public/content/translations/ko/defi/index.md
index a14bd281d47..cb8cbb5638c 100644
--- a/public/content/translations/ko/defi/index.md
+++ b/public/content/translations/ko/defi/index.md
@@ -47,7 +47,7 @@ summaryPoint3: 누구나 프로그래밍할 수 있는 오픈 소스 기술을
| 시장이 항상 열려 있습니다. | 직원들에게 휴식이 필요하기 때문에 시장이 문을 닫습니다. |
| 투명성을 기반으로 구축되었으며, 누구나 제품 데이터를 보고 시스템이 어떻게 작동하는지 검사할 수 있습니다. | 금융 기관은 알 수 없는 미스터리입니다. 대출 내역, 관리 자산에 대한 기록 등을 볼 수 없습니다. |
-
+
디파이 앱 둘러보기
@@ -65,7 +65,7 @@ summaryPoint3: 누구나 프로그래밍할 수 있는 오픈 소스 기술을
이더리움이 처음이시면 디파이 애플리케이션에 대한 제안을 살펴보세요.
-
+
디파이 앱 둘러보기
@@ -92,7 +92,7 @@ summaryPoint3: 누구나 프로그래밍할 수 있는 오픈 소스 기술을
이더리움은 블록체인으로서 안전하고 글로벌하게 트랜잭션을 전송할 수 있도록 설계되었습니다. 비트코인과 마찬가지로 이더리움은 이메일을 보내는 것만큼 쉽게 전 세계로 돈을 송금할 수 있습니다. 수령인의 [ENS 이름](/nft/#nft-domains)(예: bob.eth) 또는 지갑의 계정 주소를 입력하기만 하면 몇 분 안에 수취인에게 직접 지급됩니다(보통은). 지불금을 보내거나 받으려면 [지갑](/wallets/)이 필요합니다.
-
+
결제 디앱 보기
@@ -123,7 +123,7 @@ summaryPoint3: 누구나 프로그래밍할 수 있는 오픈 소스 기술을
- P2P, 대출자가 직접 특정 대출 기관에서 직접 대출하는 방식.
- 대출 기관에서 자산을 대출자가 대출할 수 있는 풀로 지급하는(유동성) 풀 기반.
-
+
대출용 디앱 보기
@@ -183,7 +183,7 @@ summaryPoint3: 누구나 프로그래밍할 수 있는 오픈 소스 기술을
- 이자율에 따라 aDai는 증가하고 지갑에서 잔고가 늘어가는 걸 보실 수 있습니다. 연이율에 따라 지갑 잔고는 며칠 또는 심지어 몇 시간 후에 100.1234와 같은 수치가 되어 있을 겁니다!
- 언제든지 aDai 잔액과 동일한 금액의 일반 다이를 인출할 수 있습니다.
-
+
대출 디앱 보기
@@ -211,7 +211,7 @@ summaryPoint3: 누구나 프로그래밍할 수 있는 오픈 소스 기술을
예를 들어, 무손실 복권 풀투게더(위에서 설명함)를 사용하려면 다이 또는 USDC와 같은 토큰이 필요합니다. 이런 DEX를 사용하면 ETH를 토큰으로 교환할 수 있고 끝나면 반대로 토큰을 ETH로 교환할 수 있습니다.
-
+
토큰 거래소 보기
@@ -223,7 +223,7 @@ summaryPoint3: 누구나 프로그래밍할 수 있는 오픈 소스 기술을
중앙화 거래소를 이용하면 거래 전에 자산을 예치해야 하고, 그 자산을 책임질 거래소를 신뢰해야 합니다. 자산이 예치되어 있으면 중앙화 거래소는 해커에게 매력적인 대상이기 때문에 자산이 위험합니다.
-
+
거래 디앱 보기
@@ -235,7 +235,7 @@ summaryPoint3: 누구나 프로그래밍할 수 있는 오픈 소스 기술을
좋은 예가 [디파이 펄스 인덱스 펀드(DPI)](https://defipulse.com/blog/defi-pulse-index/)입니다. 이 펀드는 포트폴리오에 항상 [시가총액 기준 상위 디파이 토큰](https://www.coingecko.com/en/defi)이 포함되도록 자동으로 편입 종목을 재조정합니다. 세부 사항을 관리할 필요가 없으며 원할 때마다 펀드에서 인출할 수 있습니다.
-
+
투자 디앱 보기
@@ -249,7 +249,7 @@ summaryPoint3: 누구나 프로그래밍할 수 있는 오픈 소스 기술을
- 투명하기 때문에 모금자가 얼마나 많은 돈이 모였는지 증명할 수 있습니다. 심지어 나중에 자금이 어떻게 사용되는지 추후에 추적할 수 있습니다.
- 예를 들면 모금자는 구체적인 기한과 최소 금액이 충족되지 않는 경우 자동 환불을 설정할 수 있습니다.
-
+
크라우드 펀딩 디앱 보기
@@ -276,7 +276,7 @@ summaryPoint3: 누구나 프로그래밍할 수 있는 오픈 소스 기술을
이더리움 제품은 다른 소프트웨어와 마찬가지로 버그와 악용에 시달릴 수 있습니다. 그래서 현재 이 분야의 많은 보험 상품들은 자금 손실로부터 사용자를 보호하는 데 초점을 맞추고 있습니다. 그러나 살면서 발생할 수 있는 모든 사안으로 보장 범위를 확장하는 프로젝트가 있습니다. 이것의 좋은 예는 [케냐의 소규모 농부들을 가뭄과 홍수로부터 보호하는 것](https://blog.etherisc.com/etherisc-teams-up-with-chainlink-to-deliver-crop-insurance-in-kenya-137e433c29dc)을 목표로 하는 이더리스크의 농작물 보험입니다. 탈중앙화 보험은 종종 일반적인 보험에서 제외되는 농부들에게 더 저렴한 보험을 제공할 수 있습니다.
-
+
보험 디앱 보기
@@ -286,7 +286,7 @@ summaryPoint3: 누구나 프로그래밍할 수 있는 오픈 소스 기술을
많은 일이 진행됨에 따라 모든 투자, 대출 및 거래를 추적할 수 있는 방법이 필요할 것입니다. 한 곳에서 디파이 활동을 조율할 수 있는 여러 제품이 있습니다. 이것이 디파이의 개방형 아키텍처의 아름다움입니다. 팀에서 여러 제품 간의 잔액을 볼 수 있는 인터페이스를 구축할 수 있을 뿐만 아니라 기능을 사용할 수도 있습니다. 디파이에 대해 더 알아갈 수록 이것이 유용할 것입니다.
-
+
포트폴리오 디앱 보기
diff --git a/public/content/translations/ko/desci/index.md b/public/content/translations/ko/desci/index.md
index 9c35bbaa8cf..777e1a19713 100644
--- a/public/content/translations/ko/desci/index.md
+++ b/public/content/translations/ko/desci/index.md
@@ -12,7 +12,7 @@ summaryPoint2: 과학자들이 자금을 모으고, 실험을 실행하고, 데
summaryPoint3: 열린 과학 운동을 기반으로 합니다.
---
-## 탈중앙화 과학(DeFi)이란 무엇인가요? {#what-is-desci}
+## 탈중앙화 과학(DeSci)이란 무엇인가요? {#what-is-desci}
탈중앙화 과학(DeSci)은 Web3 스택을 사용하여 과학 지식을 공정하고 공평하게 자금 조달, 생성, 검토, 신용, 저장 및 보급하기 위한 공공 인프라를 구축하는 것을 목표로 하는 운동입니다.
@@ -68,7 +68,7 @@ DeSci는 Web2 학계를 디지털 세계로 전환하기 위한 과학적 도구
연구에 따르면 보조금 검토 패널은 다른 패널에 주어진 동일한 제안이 매우 다른 결과를 가지고 있기 때문에 고품질 제안을 선택하는 데 열악한 역할을 합니다. 자금이 더 부족해짐에 따라, 그것은 더 지적으로 보수적인 프로젝트를 가진 더 많은 고위 연구자들의 더 작은 풀에 집중되었습니다. 그 효과는 비뚤어진 보상을 확고히 하고 혁신을 억누르는 경쟁적인 자금 조달 환경을 조성했습니다.
-Web3는 DAO와 Web3가 광범위하게 개발한 다양한 보상 모델을 실험함으로써 이 깨진 자금 조달 모델을 혼란에 빠뜨릴 가능성이 있습니다. [소급 공공재 자금 조달](https://medium.com/ethereum-optimism/retroactive-public-goods-funding-33c9b7d00f0c), [이차 자금 조달](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2003531), [다오 운영 방식](https://www.antler.co/blog/daos-and-web3-governance) 그리고 [토큰화된 보상구조](https://cdixon.org/2017/05/27/crypto-tokens-a-breakthrough-in-open-network-design)는 과학 자금에 혁명을 일으킬 수 있는 Web3 도구 중 일부입니다.
+Web3는 DAO와 Web3가 광범위하게 개발한 다양한 보상 모델을 실험함으로써 이 깨진 자금 조달 모델을 혼란에 빠뜨릴 가능성이 있습니다. [소급 공공재 자금 조달](https://medium.com/ethereum-optimism/retroactive-public-goods-funding-33c9b7d00f0c), [이차 자금 조달](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2003531), [다오 운영 방식](https://www.antler.co/blog/daos-and-web3-governance-the-promise-implications-and-challenges-ahead) 그리고 [토큰화된 보상구조](https://cdixon.org/2017/05/27/crypto-tokens-a-breakthrough-in-open-network-design)는 과학 자금에 혁명을 일으킬 수 있는 Web3 도구 중 일부입니다.
### IP 소유권 및 개발 {#ip-ownership}
diff --git a/public/content/translations/ko/enterprise/index.md b/public/content/translations/ko/enterprise/index.md
index 9a18c8eb454..f1d7acc59d4 100644
--- a/public/content/translations/ko/enterprise/index.md
+++ b/public/content/translations/ko/enterprise/index.md
@@ -32,7 +32,7 @@ sidebarDepth: 1
- [EEA](https://entethalliance.org/) _EEA(Enterprise Ethereum Alliance)는 전 세계 기업과 소비자 활동의 조화와 상호 운용성을 촉진하는 개방형의 블록체인 사양을 개발하는 것을 목표로, 회원사 기반으로 운영되는 표준화 조직입니다. EEA의 글로벌 커뮤니티는 리더, 수용층, 혁신층, 개발자, 기업들로 구성되어 있으며, 각 회원사는 모두의 이익을 증진시키는 개방형의 탈중앙화 웹을 만들기 위해 서로 협업합니다._
-- [하이퍼레저 재단(Hyperledger Foundation)](https://hyperledger.org) _하이퍼레저는 여러 산업에 적용할 수 있는 블록체인 기술 개발을 위해 공동으로 노력하는 오픈 소스 프로젝트입니다. 하이퍼레저는 금융, 은행, 사물 인터넷, 공급망, 제조 및 기술 분야의 선도업체가 포함된 리눅스 재단이 주관하는 글로벌 협업 프로젝트입니다._ _리눅스 재단에는 이더리움 스택과 연동되는 몇 가지 프로젝트가 있습니다._ - [하이퍼레저 베수(Hyperledger Besu)](https://www.hyperledger.org/blog/2019/08/29/announcing-hyperledger-besu) - [하이퍼레저 버로우(Hyperledger Burrow)](https://www.hyperledger.org/projects/hyperledger-burrow)
+- [하이퍼레저 재단(Hyperledger Foundation)](https://hyperledger.org) _하이퍼레저는 여러 산업에 적용할 수 있는 블록체인 기술 개발을 위해 공동으로 노력하는 오픈 소스 프로젝트입니다. 하이퍼레저는 금융, 은행, 사물 인터넷, 공급망, 제조 및 기술 분야의 선도업체가 포함된 리눅스 재단이 주관하는 글로벌 협업 프로젝트입니다._ _리눅스 재단에는 이더리움 스택과 연동되는 몇 가지 프로젝트가 있습니다._ - [하이퍼레저 베수(Hyperledger Besu)](https://www.hyperledger.org/blog/2019/08/29/announcing-hyperledger-besu) - 하이퍼레저 버로우(Hyperledger Burrow)
## 엔터프라이즈 중심 서비스 {#enterprise-focused-services}
@@ -46,7 +46,6 @@ sidebarDepth: 1
## 프로토콜 및 인프라 {#protocol-and-infrastructure}
- [하이퍼레저 베수(Hyperledger Besu)](https://www.hyperledger.org/projects/besu) _Apache 2.0 라이선스에 따라 개발되고 Java로 작성된 오픈 소스 이더리움 클라이언트_
-- [하이퍼레저 버로우(Hyperledger Burrow)](https://www.hyperledger.org/projects/hyperledger-burrow) _EVM(Ethereum Virtual Machine)의 사양에 따라 부분적으로 개발되며, 권한이 부여된 스마트 컨트랙트 인터프리터가 포함된 모듈형 블록체인 클라이언트_
- [인퓨라(Infura)](https://infura.io/) _이더리움 및 IPFS 네트워크에 대한 확장 가능한 API 액세스_
- [칼레이도(Kaleido)](https://kaleido.io/) _클라우드를 교차하는 하이브리드 엔터프라이즈 생태계를 구축하고 실행하기 위한 전체 스택 플랫폼_
- [오토니티(Autonity)](https://www.clearmatics.com/about/) _P2P 프로토콜을 구현하고 클라이언트 소프트웨어 및 인프라를 제공하는 프로토콜 모음_
diff --git a/public/content/translations/ko/smart-contracts/index.md b/public/content/translations/ko/smart-contracts/index.md
index c76db2ccab2..9acc20a6c22 100644
--- a/public/content/translations/ko/smart-contracts/index.md
+++ b/public/content/translations/ko/smart-contracts/index.md
@@ -65,7 +65,7 @@ lang: ko
- [스테이블코인](/stablecoins/)
- [고유한 디지털 자산 생성 및 배포](/nft/)
- [자동 개방형 환전소](/get-eth/#dex)
-- [탈중앙화 게임](/dapps/?category=gaming)
+- [탈중앙화 게임](/dapps/?category=gaming#explore)
- [자동으로 지급되는 보험](https://etherisc.com/)
- [사용자가 상호 운용 가능한 맞춤형 통화를 만들 수 있게 하는 표준](/developers/docs/standards/tokens/)
diff --git a/public/content/translations/lt/enterprise/index.md b/public/content/translations/lt/enterprise/index.md
index 9979735f5f3..72836751759 100644
--- a/public/content/translations/lt/enterprise/index.md
+++ b/public/content/translations/lt/enterprise/index.md
@@ -32,7 +32,7 @@ Daugiau išsamios informacijos rasite šiuose straipsniuose:
- [EEA](https://entethalliance.org/) _Ethereum verslui aljansas yra narių valdoma standartų organizacija, kurios pagrindinis tikslas – kurti atviras blokų grandinių technines sąlygas, skatinančias suderinamumą ir sąveiką tarp įmonių ir vartotojų visame pasaulyje. Mūsų pasaulinę narių bendruomenę sudaro lyderiai, standartų rengėjai, novatoriai, kūrėjai ir įmonės, kurios bendradarbiauja vardan atviro ir decentralizuoto žiniatinklio, skirto naudoti kiekvienam._
-- [Hyperledger fondas](https://hyperledger.org) _Hyperledger yra atvirojo kodo bendras projektas, sukurtas tobulinti tarpindustrines blokų grandinių technologijas. Tai pasaulinis projektas, kurį parėmė Linux fondas, įskaitant finansų, bankininkystės, daiktų interneto, tiekimo grandinių, gamybos ir technologijų lyderius._ _Fondui priklauso pora projektų, veikiančių su Ethereum:_ - [Hyperledger Besu](https://www.hyperledger.org/blog/2019/08/29/announcing-hyperledger-besu) - [Hyperledger Burrow](https://www.hyperledger.org/projects/hyperledger-burrow)
+- [Hyperledger fondas](https://hyperledger.org) _Hyperledger yra atvirojo kodo bendras projektas, sukurtas tobulinti tarpindustrines blokų grandinių technologijas. Tai pasaulinis projektas, kurį parėmė Linux fondas, įskaitant finansų, bankininkystės, daiktų interneto, tiekimo grandinių, gamybos ir technologijų lyderius._ _Fondui priklauso pora projektų, veikiančių su Ethereum:_ - [Hyperledger Besu](https://www.hyperledger.org/blog/2019/08/29/announcing-hyperledger-besu) - Hyperledger Burrow
## Į verslą sutelktos paslaugos {#enterprise-focused-services}
@@ -46,7 +46,6 @@ Daugiau išsamios informacijos rasite šiuose straipsniuose:
## Protokolas ir infrastruktūra {#protocol-and-infrastructure}
- [Hyperledger Besu](https://www.hyperledger.org/projects/besu) _atviro kodo Ethereum klientas, sukurtas pagal Apache 2.0 licenciją ir parašytas Java kalba_
-- [Hyperledger Burrow](https://www.hyperledger.org/projects/hyperledger-burrow) _modulinės blokų grandinės klientas su įgaliotu išmaniųjų sutarčių vertėju, iš dalies sukurtu pagal Ethereum Virtual Machine (EVM) specifikacijas_
- [Infura](https://infura.io/) _palaipsnė API prieiga prie Ethereum ir IPFS tinklų_
- [Kaleido](https://kaleido.io/) _full-stack platforma, skirta kurti ir valdyti tarpdebesines hibridines įmonių ekosistemas_
- [Autonity](https://www.clearmatics.com/about/) _protokolų rinkinys, vykdantis p2p protokolus ir teikiantis kliento programinę įrangą bei infrastruktūrą_
diff --git a/public/content/translations/ml/enterprise/index.md b/public/content/translations/ml/enterprise/index.md
index 656bba6bbea..894dcf78f9d 100644
--- a/public/content/translations/ml/enterprise/index.md
+++ b/public/content/translations/ml/enterprise/index.md
@@ -31,7 +31,7 @@ Ethereum എന്റർപ്രൈസ് സൗഹൃദമാക്കുന
- [EEA](https://entethalliance.org/) _ എന്റർപ്രൈസ് Ethereum അലയൻസ് എന്നത് അംഗങ്ങളാൽ നയിക്കപ്പെടുന്ന സ്റ്റാൻഡേർഡ് ഓർഗനൈസേഷനാണ്, ലോകമെമ്പാടുമുള്ള ബിസിനസുകൾക്കും ഉപഭോക്താക്കൾക്കും യോജിപ്പും പരസ്പര പ്രവർത്തനക്ഷമതയും വർദ്ധിപ്പിക്കുന്നതിനുള്ള തുറന്ന, ബ്ലോക്ക്ചെയിൻ സവിശേഷതകൾ വികസിപ്പിക്കുകയെന്നതാണ് അതിന്റെ ചാർട്ടർ. എല്ലാവരുടെയും പ്രയോജനത്തിനായി തുറന്നതും വികേന്ദ്രീകൃതവുമായ ഒരു വെബ് സൃഷ്ടിക്കാൻ സഹകരിക്കുന്ന നേതാക്കൾ, സ്വീകരിക്കുന്നവര്, പുതുമ വരുത്തുന്നവര്, ഡവലപ്പർമാർ, ബിസിനസുകൾ എന്നിവ ഉൾപ്പെടുന്നതാണ് ഞങ്ങളുടെ അംഗങ്ങളുടെ ആഗോള കമ്മ്യൂണിറ്റി. _
-- [ഹൈപ്പർലെഡ്ജർ ഫണ്ടേഷൻ](https://hyperledger.org) _ ക്രോസ്-ഇൻഡസ്ട്രി ബ്ലോക്ക്ചെയിൻ സാങ്കേതികവിദ്യകൾ വികസിപ്പിക്കുന്നതിനായി സൃഷ്ടിച്ച ഒരു ഓപ്പൺ സോഴ്സ് സഹകരണ ശ്രമമാണ് ഹൈപ്പർലെഡ്ജർ. ധനകാര്യ, ബാങ്കിംഗ്, ഇന്റർനെറ്റ് ഓഫ് തിംഗ്സ്, സപ്ലൈ ചെയിനുകൾ, മാനുഫാക്ചറിംഗ്, ടെക്നോളജി എന്നിവയിലെ നേതാക്കൾ ഉൾപ്പെടെ ലിനക്സ് ഫൗണ്ടേഷൻ ഹോസ്റ്റുചെയ്യുന്ന ഒരു ആഗോള സഹകരണമാണിത്._ _ Ethereum സ്റ്റാക്കിനൊപ്പം പ്രവർത്തിക്കുന്ന ചില പ്രോജക്റ്റുകൾ ഫൗണ്ടേഷനുണ്ട്: _ - [Hyperledger Besu](https://www.hyperledger.org/blog/2019/08/29/announcing-hyperledger-besu) - [Hyperledger Burrow](https://www.hyperledger.org/projects/hyperledger-burrow)
+- [ഹൈപ്പർലെഡ്ജർ ഫണ്ടേഷൻ](https://hyperledger.org) _ ക്രോസ്-ഇൻഡസ്ട്രി ബ്ലോക്ക്ചെയിൻ സാങ്കേതികവിദ്യകൾ വികസിപ്പിക്കുന്നതിനായി സൃഷ്ടിച്ച ഒരു ഓപ്പൺ സോഴ്സ് സഹകരണ ശ്രമമാണ് ഹൈപ്പർലെഡ്ജർ. ധനകാര്യ, ബാങ്കിംഗ്, ഇന്റർനെറ്റ് ഓഫ് തിംഗ്സ്, സപ്ലൈ ചെയിനുകൾ, മാനുഫാക്ചറിംഗ്, ടെക്നോളജി എന്നിവയിലെ നേതാക്കൾ ഉൾപ്പെടെ ലിനക്സ് ഫൗണ്ടേഷൻ ഹോസ്റ്റുചെയ്യുന്ന ഒരു ആഗോള സഹകരണമാണിത്._ _ Ethereum സ്റ്റാക്കിനൊപ്പം പ്രവർത്തിക്കുന്ന ചില പ്രോജക്റ്റുകൾ ഫൗണ്ടേഷനുണ്ട്: _ - [Hyperledger Besu](https://www.hyperledger.org/blog/2019/08/29/announcing-hyperledger-besu) - Hyperledger Burrow
## എന്റർപ്രൈസ് ഫോക്കസ്ഡ് സേവനങ്ങൾ {#enterprise-focused-services}
@@ -45,7 +45,6 @@ Ethereum എന്റർപ്രൈസ് സൗഹൃദമാക്കുന
## പ്രോട്ടോക്കോളും ഇൻഫ്രാസ്ട്രക്ചറും {#protocol-and-infrastructure}
- [ഹൈപ്പർലെഡ്ജർ ബെസു](https://www.hyperledger.org/projects/besu) _ അപ്പാച്ചെ 2.0 ലൈസൻസിന് കീഴിൽ വികസിപ്പിക്കുകയും ജാവയിൽ എഴുതുകയും ചെയ്യുന്ന ഓപ്പൺ സോഴ്സ് Ethereum ക്ലയന്റ് _
-- [ഹൈപ്പർലെഡ്ജർ ബറോ](https://www.hyperledger.org/projects/hyperledger-burrow) _ Ethereum വെര്ച്വല് മെഷീനി (EVM) ന്റെ സ്പെസിഫിക്കേഷന് അനുസരിച്ച് ഭാഗികമായി വികസിപ്പിച്ചെടുത്ത അനുമതിയുള്ള സ്മാർട്ട് കോൺട്രാക്ട് ഇന്റർപ്രെറ്ററുള്ള മോഡുലാർ ബ്ലോക്ക്ചെയിൻ ക്ലയന്റ് _
- [ഇൻഫ്യൂറ](https://infura.io/) _ Ethereum, IPFS നെറ്റ്വർക്കുകളിലേക്ക് സ്കേലബിൾ API ആക്സസ് _
- [കാലിഡോ](https://kaleido.io/) _ ക്രോസ്-ക്ലഡ്, ഹൈബ്രിഡ് എന്റർപ്രൈസ് ഇക്കോസിസ്റ്റംസ് നിർമ്മിക്കുന്നതിനും പ്രവർത്തിപ്പിക്കുന്നതിനുമുള്ള പൂർണ്ണ-സ്റ്റാക്ക് പ്ലാറ്റ്ഫോം _
- [Autonity](https://www.clearmatics.com/about/) _p2p പ്രോട്ടോക്കോളുകൾ നടപ്പിലാക്കുകയും ക്ലയന്റ് സോഫ്റ്റ്വെയറും ഇൻഫ്രാസ്ട്രക്ചറും നൽകുന്ന പ്രോട്ടോക്കോൾ സ്വീറ്റ്_
diff --git a/public/content/translations/ml/roadmap/beacon-chain/index.md b/public/content/translations/ml/roadmap/beacon-chain/index.md
index 669f4091ab2..86690ec8980 100644
--- a/public/content/translations/ml/roadmap/beacon-chain/index.md
+++ b/public/content/translations/ml/roadmap/beacon-chain/index.md
@@ -32,7 +32,7 @@ summaryPoint3: ബീക്കൺ ചെയിൻ പൊതു യുക്ത
ബീക്കൺ ചെയിൻ Ethereum-ന് [പ്രൂഫ് ഓഫ് സ്റ്റേക്ക്](/developers/docs/consensus-mechanisms/pos/) അവതരിപ്പിച്ചിരിക്കുന്നു. ഇത് Ethereum-ത്തെ സുരക്ഷിതമായി നിലനിർത്തുകയും വാലിഡേറ്റർമാർ പ്രക്രിയയിൽ കൂടുതൽ ETH നേടുകയും ചെയ്യുന്നു. പ്രായോഗികമായി, വാലിഡേറ്റർ സോഫ്റ്റ്വെയർ സജീവമാക്കുന്നതിന് സ്റ്റെയ്ക്കിങിൽ സ്റ്റെയ്ക്കിങ് ETH ഉൾപ്പെടുന്നു. ഒരു സ്റ്റേക്കർ എന്ന നിലയിൽ, ചെയിനിലെ പുതിയ ബ്ലോക്കുകൾ സൃഷ്ടിക്കുകയും സാധൂകരിക്കുകയും ചെയ്യുന്ന സോഫ്റ്റ്വെയർ നിങ്ങൾ പ്രവർത്തിപ്പിക്കും.
-വ്യത്യസ്തമായ രീതികളിൽ [മൈനിംഗ്](/developers/docs/mining/) ഉപയോഗിച്ചിരുന്ന സമാനമായ ഉദ്ദേശ്യമാണ് സ്റ്റേക്കിംഗ് നിർവഹിക്കുന്നത്. ഇക്കണോമീസ് ഓഫ് സ്കെയിലിംഗിന്റെ ഫലമുണ്ടാക്കുകയും കേന്ദ്രീകരണം പ്രോത്സാഹിപ്പിക്കുകയും ചെയ്തുകൊണ്ട് മൈനിംഗ് ശക്തമായ ഹാർഡ്വെയറിന്റെയും ഊർജ്ജ ഉപഭോഗത്തിന്റെയും രൂപത്തിൽ വലിയ മുൻകൂർ അടച്ചുതീർക്കേണ്ട ചെലവുകൾ ആവശ്യപ്പെടുന്നു. ഒരു ആക്രമണത്തിന് ശേഷം മോശം ആക്റ്റർമാരെ ശിക്ഷിക്കുന്നതിനുള്ള പ്രോട്ടോക്കോളിന്റെ കഴിവ് പരിമിതപ്പെടുത്തിക്കൊണ്ട്, ഈടായി ആസ്തികൾ ലോക്ക് ചെയ്യേണ്ട യാതൊരു ആവശ്യവും മൈനിംഗിൽ ഉണ്ടായിരുന്നുമില്ല.
+വ്യത്യസ്തമായ രീതികളിൽ [മൈനിംഗ്](/developers/docs/consensus-mechanisms/pow/mining/) ഉപയോഗിച്ചിരുന്ന സമാനമായ ഉദ്ദേശ്യമാണ് സ്റ്റേക്കിംഗ് നിർവഹിക്കുന്നത്. ഇക്കണോമീസ് ഓഫ് സ്കെയിലിംഗിന്റെ ഫലമുണ്ടാക്കുകയും കേന്ദ്രീകരണം പ്രോത്സാഹിപ്പിക്കുകയും ചെയ്തുകൊണ്ട് മൈനിംഗ് ശക്തമായ ഹാർഡ്വെയറിന്റെയും ഊർജ്ജ ഉപഭോഗത്തിന്റെയും രൂപത്തിൽ വലിയ മുൻകൂർ അടച്ചുതീർക്കേണ്ട ചെലവുകൾ ആവശ്യപ്പെടുന്നു. ഒരു ആക്രമണത്തിന് ശേഷം മോശം ആക്റ്റർമാരെ ശിക്ഷിക്കുന്നതിനുള്ള പ്രോട്ടോക്കോളിന്റെ കഴിവ് പരിമിതപ്പെടുത്തിക്കൊണ്ട്, ഈടായി ആസ്തികൾ ലോക്ക് ചെയ്യേണ്ട യാതൊരു ആവശ്യവും മൈനിംഗിൽ ഉണ്ടായിരുന്നുമില്ല.
പ്രൂഫ് ഓഫ് സ്റ്റേക്കിലേക്കുള്ള മാറ്റം Ethereum-ത്തെ പ്രൂഫ് ഓഫ് വർക്കുമായി താരതമ്യപ്പെടുത്തുമ്പോൾ കൂടുതൽ സുരക്ഷിതവും വികേന്ദ്രീകൃതവുമാക്കി. നെറ്റ്വർക്കിൽ കൂടുതൽ ആളുകൾ പങ്കെടുക്കുമ്പോൾ, അത് കൂടുതൽ വികേന്ദ്രീകൃതവും ആക്രമണങ്ങളിൽ നിന്ന് സുരക്ഷിതവുമാകും.
diff --git a/public/content/translations/ml/roadmap/merge/index.md b/public/content/translations/ml/roadmap/merge/index.md
index af4bd58d1ad..9eed0dffac6 100644
--- a/public/content/translations/ml/roadmap/merge/index.md
+++ b/public/content/translations/ml/roadmap/merge/index.md
@@ -135,7 +135,7 @@ title="തെറ്റിദ്ധാരണ: "ഗ്യാസ് ഫീസ
contentPreview="False. The Merge was a change of consensus mechanism, not an expansion of network capacity, and was never intended to lower gas fees.">
നെറ്റ്വർക്കിന്റെ ശേഷിയുമായി ബന്ധപ്പെട്ട നെറ്റ്വർക്ക് ഡിമാൻഡിന്റെ ഫലമാണ് ഗ്യാസ് ഫീസ്. പൊതു രീതിക്കുള്ള പ്രൂഫ് ഓഫ് സ്റ്റേക്കിലേക്ക് മാറിക്കൊണ്ട് ലയനം പ്രൂഫ് ഓഫ് വർക്കിന്റെ ഉപയോഗം ഒഴിവാക്കി, എന്നാൽ നെറ്റ്വർക്ക് ശേഷിയെയോ ത്രൂപുട്ടിനെയോ നേരിട്ട് സ്വാധീനിക്കുന്ന പാരാമീറ്ററുളെയൊന്നും കാര്യമായി മാറ്റിയില്ല.
-ഒരു [റോളപ്പ്-കേന്ദ്രീകൃത റോഡ്മാപ്പ്](https://ethereum-magicians.org/t/a-rollup-centric-ethereum-roadmap/4698) ഉപയോഗിച്ച്, [വരി-2](/വരി-2/)-ൽ ഉപയോക്തൃ ആക്റ്റിവിറ്റി അളക്കുന്നതിലാണ് ശ്രമങ്ങൾ കേന്ദ്രീകരിക്കുന്നത്, അതേസമയം റോളപ്പ് ഇടപാടുകൾ വളരെ ചെലവ് കുറഞ്ഞതാക്കാൻ സഹായിക്കുന്നതിന് റോളപ്പ് ഡാറ്റ സംഭരണത്തിനായി ഒപ്റ്റിമൈസ് ചെയ്ത ഒരു സുരക്ഷിത വികേന്ദ്രീകൃത സെറ്റിൽമെന്റ് വരിയായി വരി 1 മെയിൻനെറ്റ് പ്രാപ്തമാക്കുന്നു. ഇത് പൂർത്തീകരിക്കുന്നതിനുള്ള ഒരു നിർണ്ണായക സൂചനയാണ് പ്രൂഫ് ഓഫ് സ്റ്റേക്കിലേക്കുള്ള മാറ്റം. [ഗ്യാസിനെയും ഫീസിനെയും കുറിച്ച് കൂടുതൽ.](/developers/docs/gas/)
+ഒരു [റോളപ്പ്-കേന്ദ്രീകൃത റോഡ്മാപ്പ്](https://ethereum-magicians.org/t/a-rollup-centric-ethereum-roadmap/4698) ഉപയോഗിച്ച്, [വരി-2](/layer-2/)-ൽ ഉപയോക്തൃ ആക്റ്റിവിറ്റി അളക്കുന്നതിലാണ് ശ്രമങ്ങൾ കേന്ദ്രീകരിക്കുന്നത്, അതേസമയം റോളപ്പ് ഇടപാടുകൾ വളരെ ചെലവ് കുറഞ്ഞതാക്കാൻ സഹായിക്കുന്നതിന് റോളപ്പ് ഡാറ്റ സംഭരണത്തിനായി ഒപ്റ്റിമൈസ് ചെയ്ത ഒരു സുരക്ഷിത വികേന്ദ്രീകൃത സെറ്റിൽമെന്റ് വരിയായി വരി 1 മെയിൻനെറ്റ് പ്രാപ്തമാക്കുന്നു. ഇത് പൂർത്തീകരിക്കുന്നതിനുള്ള ഒരു നിർണ്ണായക സൂചനയാണ് പ്രൂഫ് ഓഫ് സ്റ്റേക്കിലേക്കുള്ള മാറ്റം. [ഗ്യാസിനെയും ഫീസിനെയും കുറിച്ച് കൂടുതൽ.](/developers/docs/gas/)
+
DeFi अॅप्स एक्सप्लोर करा
@@ -65,7 +65,7 @@ Bitcoin हे अनेक प्रकारे पहिले DeFi ऍप्
तुम्ही Ethereum वर नवीन असाल तर वापरून पाहण्यासाठी DeFi ऍप्लिकेशन्ससाठी आमच्या सूचना एक्सप्लोर करा.
-
+
DeFi अॅप्स एक्सप्लोर करा
@@ -92,7 +92,7 @@ Bitcoin हे अनेक प्रकारे पहिले DeFi ऍप्
ब्लॉकचेन म्हणून, Ethereum सुरक्षित आणि जागतिक मार्गाने व्यवहार पाठवण्यासाठी डिझाइन केलेले आहे. Bitcoin प्रमाणे, Ethereum जगभरात पैसे पाठवणे ईमेल पाठवण्याइतके सोपे करते. तुमच्या वॉलेटमधून फक्त तुमच्या प्राप्तकर्त्याचे [ENS नाव](/nft/#nft-domains) (जसे bob.eth) किंवा त्यांचा खाते पत्ता प्रविष्ट करा आणि तुमचे पेमेंट थेट त्यांच्याकडे काही मिनिटांत जाईल (सामान्यतः). पेमेंट पाठवण्यासाठी किंवा प्राप्त करण्यासाठी, तुम्हाला [वॉलेट](/wallets/) आवश्यक असेल.
-
+
पेमेंट dapps पहा
@@ -123,7 +123,7 @@ Dai किंवा USDC सारख्या नाण्यांचे म
- पीअर-टू-पीअर, म्हणजे कर्जदार विशिष्ट सावकाराकडून थेट कर्ज घेईल.
- पूल-आधारित जेथे कर्जदार कर्ज घेऊ शकतात अशा पूलला निधी (तरलता) प्रदान करतात.
-
+
उधारी dapps पहा
@@ -183,7 +183,7 @@ Dai किंवा USDC सारख्या नाण्यांचे म
- तुमची aDai व्याजदरांच्या आधारे वाढेल आणि तुम्ही तुमच्या वॉलेटमध्ये तुमची शिल्लक वाढताना पाहू शकता. APR वर अवलंबून, तुमचे वॉलेट शिल्लक काही दिवसांनी किंवा काही तासांनंतर 100.1234 सारखे वाचेल!
- तुम्ही कधीही नियमित Dai ची रक्कम काढू शकता जी तुमच्या aDai शिल्लक असेल.
-
+
कर्ज देणे dapps पहा
@@ -211,7 +211,7 @@ Ethereum वर हजारो टोकन आहेत. विकेंद्
उदाहरणार्थ, तुम्हाला नो-लॉस लॉटरी PoolTogether (वर वर्णन केलेले) वापरायचे असल्यास, तुम्हाला Dai किंवा USDC सारखे टोकन आवश्यक असेल. हे DEX तुम्हाला त्या टोकन्ससाठी तुमचा ETH स्वॅप करू देतात आणि तुमचे काम पूर्ण झाल्यावर पुन्हा परत येतात.
-
+
प्रतिक एक्सचेंज पहा
@@ -223,7 +223,7 @@ Ethereum वर हजारो टोकन आहेत. विकेंद्
जेव्हा तुम्ही केंद्रीकृत एक्सचेंज वापरता तेव्हा तुम्हाला तुमची मालमत्ता व्यापारापूर्वी जमा करावी लागते आणि त्यांची काळजी घेण्यासाठी त्यांच्यावर विश्वास ठेवावा लागतो. तुमची मालमत्ता जमा केली जात असताना, त्यांना धोका असतो कारण केंद्रीकृत एक्सचेंज हॅकर्ससाठी आकर्षक लक्ष्य असतात.
-
+
ट्रेडिंग dapps पहा
@@ -235,7 +235,7 @@ Ethereum वर फंड मॅनेजमेंट उत्पादने
याचे उत्तम उदाहरण म्हणजे [DeFi Pulse इंडेक्स फंड (DPI)](https://defipulse.com/blog/defi-pulse-index/). हा असा फंड आहे जो तुमच्या पोर्टफोलिओमध्ये नेहमी [मार्केट कॅपिटलायझेशननुसार शीर्ष DeFi टोकन्स](https://www.coingecko.com/en/defi) समाविष्ट असल्याची खात्री करण्यासाठी आपोआप पुनर्संतुलित होतो. तुम्हाला कधीही कोणताही तपशील व्यवस्थापित करण्याची गरज नाही आणि तुम्हाला पाहिजे तेव्हा तुम्ही फंडातून पैसे काढू शकता.
-
+
गुंतवणूक dapps पहा
@@ -249,7 +249,7 @@ Ethereum हे क्राउडफंडिंगसाठी एक आद
- हे पारदर्शक आहे त्यामुळे निधी उभारणारे किती पैसे उभे केले आहेत हे सिद्ध करू शकतात. आपण नंतर ओळीच्या खाली निधी कसा खर्च केला जातो हे देखील शोधू शकता.
- उदाहरणार्थ, एखादी विशिष्ट अंतिम मुदत आणि किमान रक्कम पूर्ण न झाल्यास, निधी उभारणारे स्वयंचलित परतावा सेट करू शकतात.
-
+
क्राउडफंडिंग dapps पहा
@@ -276,7 +276,7 @@ Quadratic funding makes sure that the projects that receive the most funding are
Ethereum उत्पादने, कोणत्याही सॉफ्टवेअरप्रमाणे, दोष आणि शोषणांमुळे ग्रस्त होऊ शकतात. त्यामुळे सध्या अवकाशातील बरीच विमा उत्पादने त्यांच्या वापरकर्त्यांना निधीच्या नुकसानापासून संरक्षण देण्यावर लक्ष केंद्रित करतात. तथापि, जीवन आपल्यावर टाकू शकेल अशा प्रत्येक गोष्टीसाठी कव्हरेज तयार करण्यासाठी प्रकल्प सुरू होत आहेत. याचे उत्तम उदाहरण म्हणजे Etherisc चे क्रॉप कव्हर ज्याचा उद्देश [केनियामधील अल्पभूधारक शेतकऱ्यांना दुष्काळ आणि पुरापासून संरक्षण करणे](https://blog.etherisc.com/etherisc-teams-up-with-chainlink-to-deliver-crop-insurance-in-kenya-137e433c29dc) आहे. विकेंद्रित विमा शेतकर्यांना स्वस्त कवच देऊ शकतो ज्यांची किंमत पारंपारिक विम्यापेक्षा जास्त आहे.
-
+
विमा dapps पहा
@@ -286,7 +286,7 @@ Ethereum उत्पादने, कोणत्याही सॉफ्ट
खूप काही चालू असताना, तुम्हाला तुमच्या सर्व गुंतवणुकीचा, कर्जाचा आणि व्यवहारांचा मागोवा ठेवण्याचा मार्ग आवश्यक आहे. अशी अनेक उत्पादने आहेत जी तुम्हाला तुमच्या सर्व DeFi क्रियाकलाप एकाच ठिकाणाहून समन्वयित करू देतात. हे DeFi च्या ओपन आर्किटेक्चरचे सौंदर्य आहे. कार्यसंघ असे इंटरफेस तयार करू शकतात जिथे तुम्ही केवळ उत्पादनांमध्ये तुमची शिल्लक पाहू शकत नाही, तुम्ही त्यांची वैशिष्ट्ये देखील वापरू शकता. तुम्ही DeFi चे अधिक एक्सप्लोर करत असताना तुम्हाला हे उपयुक्त वाटेल.
-
+
पोर्टफोलिओ dapps पहा
diff --git a/public/content/translations/mr/desci/index.md b/public/content/translations/mr/desci/index.md
index dff23dcd1ba..021cd33450f 100644
--- a/public/content/translations/mr/desci/index.md
+++ b/public/content/translations/mr/desci/index.md
@@ -68,7 +68,7 @@ DeSci डिजिटल जगामध्ये Web2 अकादमीला
अभ्यासातून असे दिसून आले आहे की अनुदान पुनरावलोकन पॅनेल उच्च-गुणवत्तेचे प्रस्ताव निवडण्याचे खराब काम करतात कारण वेगवेगळ्या पॅनेलला दिलेल्या समान प्रस्तावांचे परिणाम खूप वेगळे असतात. निधी अधिक दुर्मिळ झाला असल्याने, ते अधिक बौद्धिकदृष्ट्या पुराणमतवादी प्रकल्पांसह अधिक ज्येष्ठ संशोधकांच्या लहान गटात केंद्रित झाले आहे. या परिणामामुळे अति-स्पर्धात्मक निधीची लँडस्केप तयार झाली आहे, विकृत प्रोत्साहने आणि नवकल्पना रोखून धरण्यात आली आहे.
-Web3 मध्ये DAO आणि Web3 द्वारे विकसित केलेल्या विविध प्रोत्साहन मॉडेल्ससह प्रयोग करून या तुटलेल्या निधी मॉडेलमध्ये व्यत्यय आणण्याची क्षमता आहे. [रेट्रोएक्टिव्ह सार्वजनिक वस्तू निधी](https://medium.com/ethereum-optimism/retroactive-public-goods-funding-33c9b7d00f0c), [चतुर्भुज निधी](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2003531), [DAO गव्हर्नन्स](https://www.antler.co/blog/daos-and-web3-governance) आणि [टोकनीकृत प्रोत्साहन संरचना](https://cdixon.org/2017/05/27/crypto-tokens-a-breakthrough-in-open-network-design) हे काही आहेत Web3 साधने जी विज्ञान निधीमध्ये क्रांती घडवू शकतात.
+Web3 मध्ये DAO आणि Web3 द्वारे विकसित केलेल्या विविध प्रोत्साहन मॉडेल्ससह प्रयोग करून या तुटलेल्या निधी मॉडेलमध्ये व्यत्यय आणण्याची क्षमता आहे. [रेट्रोएक्टिव्ह सार्वजनिक वस्तू निधी](https://medium.com/ethereum-optimism/retroactive-public-goods-funding-33c9b7d00f0c), [चतुर्भुज निधी](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2003531), [DAO गव्हर्नन्स](https://www.antler.co/blog/daos-and-web3-governance-the-promise-implications-and-challenges-ahead) आणि [टोकनीकृत प्रोत्साहन संरचना](https://cdixon.org/2017/05/27/crypto-tokens-a-breakthrough-in-open-network-design) हे काही आहेत Web3 साधने जी विज्ञान निधीमध्ये क्रांती घडवू शकतात.
### IP मालकी आणि विकास {#ip-ownership}
diff --git a/public/content/translations/mr/smart-contracts/index.md b/public/content/translations/mr/smart-contracts/index.md
index 50914e35b2e..0cd3b967a46 100644
--- a/public/content/translations/mr/smart-contracts/index.md
+++ b/public/content/translations/mr/smart-contracts/index.md
@@ -65,7 +65,7 @@ lang: mr
- [स्टेबलकॉइन्स](/stablecoins/)
- [अद्वितीय डिजिटल मालमत्ता तयार करणे आणि वितरित करणे](/nft/)
- [एक स्वयंचलित, खुले चलन विनिमय](/get-eth/#dex)
-- [विकेंद्रित गेमिंग](/dapps/?category=gaming)
+- [विकेंद्रित गेमिंग](/dapps/?category=gaming#explore)
- [विमा पॉलिसी जी आपोआप भरली जाते](https://etherisc.com/)
- [एक मानक जे लोकांना सानुकूलित, इंटरऑपरेबल चलने तयार करू देते](/developers/docs/standards/tokens/)
diff --git a/public/content/translations/nb/enterprise/index.md b/public/content/translations/nb/enterprise/index.md
index 8334b5710a5..1d400acbdae 100644
--- a/public/content/translations/nb/enterprise/index.md
+++ b/public/content/translations/nb/enterprise/index.md
@@ -31,7 +31,7 @@ En fellesinnsats for å gjøre Ethereum bedriftsvennlig har blitt satt sammen av
- [EEA](https://entethalliance.org/) _Enterprise Ethereum Alliance er en medlemsstyrt organisasjon som har som mål å utvikle åpne blokkkjedespesifikasjoner som fremdriver harmonisering og samvirkingsmuligheter for bedrifter og forbrukere verden over. Vårt globale fellesskap av medlemmer består av ledere, tilpassere, innovatører, utviklere og virksomheter som samarbeider om å skape et åpent, desentralisert nett til fordel for alle._
-- [Hyperledger Foundation](https://hyperledger.org) _Hyperledger er et samarbeid med åpen kildekode som er opprettet for å fremme blokkjedeteknologier på tvers av ulike bransjer. Dette er et globalt samarbeid, som ledes av Linux Foundation, med blant annet ledere innen økonomi, bankvirskomhet, tingenes I, leverandørkjeder, produksjon og teknologi._ _Stiftelsen har noen prosjekter på gang som arbeider med Ethereum-stakken:_ - [Hyperledger Besu](https://www.hyperledger.org/blog/2019/08/29/announcing-hyperledger-besu) - [Hyperledger Burrow](https://www.hyperledger.org/projects/hyperledger-burrow)
+- [Hyperledger Foundation](https://hyperledger.org) _Hyperledger er et samarbeid med åpen kildekode som er opprettet for å fremme blokkjedeteknologier på tvers av ulike bransjer. Dette er et globalt samarbeid, som ledes av Linux Foundation, med blant annet ledere innen økonomi, bankvirskomhet, tingenes I, leverandørkjeder, produksjon og teknologi._ _Stiftelsen har noen prosjekter på gang som arbeider med Ethereum-stakken:_ - [Hyperledger Besu](https://www.hyperledger.org/blog/2019/08/29/announcing-hyperledger-besu) - Hyperledger Burrow
## Bedriftsfokuserte tjenester {#enterprise-focused-services}
@@ -45,7 +45,6 @@ Følgende prosjekter tilbyr blokkjedetjenester for bedrftsklassifiserte systemer
## Protokoll og infrastruktur {#protocol-and-infrastructure}
- [Hyperledger Besu](https://www.hyperledger.org/projects/besu) _open-source Ethereum-klient utviklet under Apache 2.0 lisensen, og skrevet i Java_
-- [Hyperledger Burrow](https://www.hyperledger.org/projects/hyperledger-burrow) _ modulære blokkjede klient med en permissioned smartkontrakt interpreter som er spesifikt utviklet til spesifikasjonene til Ethereum Virtual Machine (EVM)_
- [Infura](https://infura.io/) _skalerbar API tilgang til Ethereum og IPFS nettverket_
- [Kaleido](https://kaleido.io/) _full-stack plattform for bygging og drift på tvers av cloud, hybride bedriftsøkosystemer_
- [Autonity](https://www.clearmatics.com/about/) _protokoll suite som implementerer p2p protokoller og leverer klientprogramvare og infrastruktur_
diff --git a/public/content/translations/nl/community/events/index.md b/public/content/translations/nl/community/events/index.md
index d312985668b..28b92e715af 100644
--- a/public/content/translations/nl/community/events/index.md
+++ b/public/content/translations/nl/community/events/index.md
@@ -5,7 +5,7 @@ lang: nl
hideEditButton: true
---
-## Aankomende evenementen {#events}
+# Aankomende evenementen {#events}
**Elke maand zijn er grote Ethereum-evenementen over de hele wereld.** Overweeg om er in de buurt een bij te wonen om meer mensen in de gemeenschap te ontmoeten, te leren over kansen op werk en nieuwe vaardigheden te ontwikkelen.
diff --git a/public/content/translations/nl/community/get-involved/index.md b/public/content/translations/nl/community/get-involved/index.md
index 3d87443838a..656ee67c31f 100644
--- a/public/content/translations/nl/community/get-involved/index.md
+++ b/public/content/translations/nl/community/get-involved/index.md
@@ -14,7 +14,7 @@ De Ethereum-gemeenschap omvat mensen met verschillende achtergronden en vaardigh
- [Vind een premie op Gitcoin](https://gitcoin.co/), werk aan een klein of groot technisch probleem, verdien crypto!
- Doe mee aan een [ETHGlobal](http://ethglobal.co/) hackathon bij u in de buurt!
- Bekijk [projecten gerelateerd aan uw gebied van expertise of programmeertaal van keuze](/developers/docs/programming-languages/)
-- Bekijk of neem deel aan [Core Dev calls](https://www.youtube.com/playlist?list=PLaM7G4Llrb7zfMXCZVEXEABT8OSnd4-7w)
+- Bekijk of neem deel aan [Core Dev calls](https://www.youtube.com/@EthereumProtocol)
- [Wensenlijst van Ecosystem Support Programma](https://esp.ethereum.foundation/wishlist/) - tooling, documentatie en infrastructuurgebieden waar het Ecosystem Support Programma van Ethereum actief op zoek is naar subsidieaanvragen
- [Web3Bridge](https://www.web3bridge.com/) - sluit u aan bij de ambitieuze web3-gemeenschap in hun initiatief om honderden ontwikkelaars en leden van de gemeenschap in heel Afrika te identificeren, te trainen en te ondersteunen
- Sluit u aan bij de [Ethereum Cat Herders Discord](https://discord.io/EthCatHerders)
diff --git a/public/content/translations/nl/community/grants/index.md b/public/content/translations/nl/community/grants/index.md
index 4ac60717cee..5929362ca1b 100644
--- a/public/content/translations/nl/community/grants/index.md
+++ b/public/content/translations/nl/community/grants/index.md
@@ -36,7 +36,6 @@ Deze projecten hebben hun eigen beurzen gecreëerd voor projecten die gericht zi
- [The Graph](https://airtable.com/shrdfvnFvVch3IOVm) – _[The Graph](https://thegraph.com/)-ecosysteem_
- [UMA Grants Program](https://grants.umaproject.org/) - _[UMA](https://umaproject.org/)-ontwikkelaarsondersteuning_
- [Uniswap Grants Program](https://www.unigrants.org/) - _[Uniswap](https://uniswap.org/)-gemeenschap_
-- [Web3 Grants](https://web3grants.net) - _Een uitgebreide lijst van web3-/cryptogerelateerde subsidieprogramma's_
## Kwadratische financiering {#quadratic-funding}
diff --git a/public/content/translations/nl/decentralized-identity/index.md b/public/content/translations/nl/decentralized-identity/index.md
index db82353271d..4978de100a1 100644
--- a/public/content/translations/nl/decentralized-identity/index.md
+++ b/public/content/translations/nl/decentralized-identity/index.md
@@ -49,7 +49,7 @@ Gedecentraliseerde identificatiekenmerken worden opgeslagen op gedistribueerde l
## Wat maakt gedecentraliseerde identificatiekenmerken mogelijk? {#what-makes-decentralized-identifiers-possible}
-### 1. Publieke sleutel-infrastructuur (PKI) {#public-key-infrastructure}
+### 1. Publieke sleutel-infrastructuur (PKI) {#public-key-cryptography}
Publieke sleutel-infrastructuur (PKI) is een informatiebeveiligingsmaatregel die een [publieke sleutel](/glossary/#public-key) en [privé-sleutel](/glossary/#private-key) voor een entiteit genereert. Publieke sleutel-cryptografie wordt gebruikt in blockchain-netwerken om gebruikersidentiteiten te verifiëren en eigendom van digitale activa te bewijzen.
diff --git a/public/content/translations/nl/defi/index.md b/public/content/translations/nl/defi/index.md
index f3eafe6c48d..7bb5bc9ec32 100644
--- a/public/content/translations/nl/defi/index.md
+++ b/public/content/translations/nl/defi/index.md
@@ -47,7 +47,7 @@ Een van de beste manieren om het potentieel van DeFi in te zien is het begrijpen
| De markten zijn altijd open. | De markten sluiten omdat werknemers ook pauze's nodig hebben. |
| Het is gebaseerd op transparantie – iedereen kan de gegevens van een product bekijken en inspecteren hoe het systeem in elkaar zit. | Financiële instellingen zijn gesloten boeken: je kunt ze niet vragen om de geschiedenis van hun leningen, om een overzicht van hun beheerde activa, enzovoort. |
-
+
Verken DeFi apps
@@ -65,7 +65,7 @@ Dit klinkt vreemd... "Waarom zou ik mijn geld willen programmeren"? Dit is echte
Verken onze suggesties voor DeFi-applicaties om uit te proberen als u nieuw bent bij Ethereum.
-
+
Verken DeFi-apps
@@ -92,7 +92,7 @@ Er is een gedecentraliseerd alternatief voor de meeste financiële diensten. Maa
Als blockchain is Ethereum ontworpen voor het op veilige en mondiale manier verzenden van transacties. Net als Bitcoin, maakt Ethereum het verzenden van geld over de hele wereld zo eenvoudig als het verzenden van een e-mail. Voer gewoon de [ENS-naam](/nft/#nft-domains) (zoals bob.eth) van uw ontvanger in of het accountadres van hun portemonnee, en uw betaling zal (doorgaans) direct in minuten naar hen gaan. Om betalingen te kunnen verzenden en/of ontvangen, heeft u een [portemonnee](/wallets/) nodig.
-
+
Zie betaling-dapps
@@ -123,7 +123,7 @@ Het lenen van geld van gedecentraliseerde aanbieders komt in twee hoofdvarianten
- Peer-to-peer, wat betekent dat een lener direct van een specifieke kredietgever zal lenen.
- Poolgebaseerd, waarbij kredietgevers fondsen (liquiditeit) aan een pool verstrekken waar leners van kunnen lenen.
-
+
Zie dapps voor lenen
@@ -183,7 +183,7 @@ U kunt rente verdienen op uw crypto door het uit te lenen en uw geld in realtime
- Uw aDai zal toenemen op basis van de rente en u zult uw saldo zien groeien in uw portemonnee. Afhankelijk van de APR, zal uw portemonneesaldo na een paar dagen of zelfs uren veranderen in iets als 100,1234!
- U kunt op elk gewenst moment een hoeveelheid normale Dai opnemen die gelijk is aan uw aDai-saldo.
-
+
Bekijk uitleen-dapps
@@ -211,7 +211,7 @@ Er zijn duizenden tokens op Ethereum. Gedecentraliseerde exchanges (DEX's) laten
Als u bijvoorbeeld de no-loss loterij PoolTogether wilt gebruiken (hierboven beschreven), heeft u een token nodig zoals Dai of USDC. Met deze DEX's kunt u uw ETH wisselen voor deze tokens en weer terug wanneer u klaar bent.
-
+
Bekijk token exchanges
@@ -223,7 +223,7 @@ Er zijn meer geavanceerde opties voor handelaren die van een beetje meer control
Wanneer u een gecentraliseerde exchange gebruikt, moet u uw geld storten vóór de transactie en erop vertrouwen dat de instelling goed voor het geld zal zorgen. Terwijl uw activa gestort worden, lopen ze risico omdat gecentraliseerde beurzen aantrekkelijke doelwitten zijn voor hackers.
-
+
Bekijk trading dapps
@@ -235,7 +235,7 @@ Er zijn producten voor fondsbeheer op Ethereum die zullen proberen uw portefeuil
Een goed voorbeeld is het [DeFi Pulse Index-fonds (DPI)](https://defipulse.com/blog/defi-pulse-index/). Dit is een fonds dat automatisch in evenwicht blijft om ervoor te zorgen dat je portfolio altijd [de beste DeFi-tokens volgens marktkapitalisatie bevat](https://www.coingecko.com/en/defi). U hoeft nooit enige gegevens te beheren en u kunt zich uit het fonds terugtrekken wanneer u dat maar wilt.
-
+
Bekijk investering-dapps
@@ -249,7 +249,7 @@ Ethereum is een ideaal platform voor crowdfunding:
- Het is transparant zodat fondsenwervers kunnen aantonen hoeveel geld er is bijeengebracht. U kunt zelfs achterhalen hoe het geld later wordt uitgegeven.
- Fundraisers kunnen automatische restituties instellen als er bijvoorbeeld een specifieke deadline en minimumbedrag is waar niet aan voldaan wordt.
-
+
Zie crowdfunding dapps
@@ -276,7 +276,7 @@ Gedecentraliseerde verzekeringen zijn bedoeld om verzekering goedkoper en snelle
Ethereum-producten, zoals elke software, kunnen lijden onder bugs en exploits. Op dit moment zijn veel verzekeringsproducten op het netwerk dus gericht op de bescherming van hun gebruikers tegen geldverliezen. Er zijn echter projecten die dekking beginnen op te bouwen voor alles wat het leven ons aan moeilijkheden kan geven. Een goed voorbeeld hiervan is de dekking Etherisc voor gewassen die erop gericht is [kleine boeren in Kenia te beschermen tegen droogte en overstromingen](https://blog.etherisc.com/etherisc-teams-up-with-chainlink-to-deliver-crop-insurance-in-kenya-137e433c29dc). Gedecentraliseerde verzekeringen kunnen boeren die vaak uit de traditionele verzekering worden geprijsd, goedkopere dekking aanbieden.
-
+
Zie verzekering-dapps
@@ -286,7 +286,7 @@ Ethereum-producten, zoals elke software, kunnen lijden onder bugs en exploits. O
Met alle drukte die u heeft, heeft u een manier nodig om al uw investeringen, leningen en transacties bij te houden. Er zijn een heleboel producten waarmee u al uw DeFi-activiteiten vanaf één plaats kunt coördineren. Dit is het mooie van de open architectuur van DeFi. Teams kunnen interfaces bouwen waar u uw saldo voor alle producten niet alleen kunt zien, u kunt hun functies ook nog eens gebruiken. U vindt dit misschien nuttig terwijl u meer kennis over Defi opbouwt.
-
+
Bekijk portfolio-dapps
diff --git a/public/content/translations/nl/desci/index.md b/public/content/translations/nl/desci/index.md
index ad0dfbdc7e6..e858b799ab3 100644
--- a/public/content/translations/nl/desci/index.md
+++ b/public/content/translations/nl/desci/index.md
@@ -68,7 +68,7 @@ Het huidige standaard model voor het financieren van wetenschap is dat personen
Onderzoek heeft uitgewezen dat evaluatiepanels voor subsidies hun taak van selectie van kwaliteitsvoorstellen slecht uitvoeren, omdat diezelfde voorstellen, voorgelegd aan verschillende panels, erg uiteenlopende uitkomsten hebben. Aangezien financiering steeds minder vaak voorkomt, wordt dit geconcentreerd in een kleinere groep van meer ervaren onderzoekers met in intellectueel opzicht conservatievere projecten. Het effect hiervan is het ontstaan van een extreem competitief financieringslandschap, met als gevolg het verankeren van perverse stimulansen en het verstikken van innovatie.
-Web3 heeft het potentieel dit gebroken financieringsmodel te doorbreken via experimentatie met verschillende stimulansenmodellen, grotendeels ontwikkeld door DAO's en Web3. [Retroactieve financiering van publieke goederen](https://medium.com/ethereum-optimism/retroactive-public-goods-funding-33c9b7d00f0c), [kwadratische financiering](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2003531), [DAO bestuur](https://www.antler.co/blog/daos-and-web3-governance) en [getokeniseerde stimulansstructuren](https://cdixon.org/2017/05/27/crypto-tokens-a-breakthrough-in-open-network-design) zijn enkele van de Web3-tools die de wetenschappelijke financiering zouden kunnen revolutioniseren.
+Web3 heeft het potentieel dit gebroken financieringsmodel te doorbreken via experimentatie met verschillende stimulansenmodellen, grotendeels ontwikkeld door DAO's en Web3. [Retroactieve financiering van publieke goederen](https://medium.com/ethereum-optimism/retroactive-public-goods-funding-33c9b7d00f0c), [kwadratische financiering](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2003531), [DAO bestuur](https://www.antler.co/blog/daos-and-web3-governance-the-promise-implications-and-challenges-ahead) en [getokeniseerde stimulansstructuren](https://cdixon.org/2017/05/27/crypto-tokens-a-breakthrough-in-open-network-design) zijn enkele van de Web3-tools die de wetenschappelijke financiering zouden kunnen revolutioniseren.
### IP-eigendom en -ontwikkeling {#ip-ownership}
diff --git a/public/content/translations/nl/energy-consumption/index.md b/public/content/translations/nl/energy-consumption/index.md
index 953fc5b772e..ce52e37a3bb 100644
--- a/public/content/translations/nl/energy-consumption/index.md
+++ b/public/content/translations/nl/energy-consumption/index.md
@@ -24,7 +24,7 @@ Proof-of-work is een solide manier om het netwerk te beveiligen en eerlijke vera
Een groenere toekomst voor Ethereum wordt al gebouwd in de vorm van een [**proof-of-stake (PoS)** chain](/roadmap/beacon-chain/). Onder [proof-of-stake](/developers/docs/consensus-mechanisms/pos/) is het willekeurig oplossen van puzzels niet nodig. Het verwijderen van puzzeloplossingen vermindert drastisch de energieuitgaven die nodig zijn om het netwerk te beveiligen. Miners worden vervangen door validators die dezelfde functie uitvoeren, behalve dat in plaats van hun activa op voorhand uit te geven in de vorm van computerwerk, gaan ze ETH staken als onderpand tegen oneerlijk gedrag. Als de validator lui is (offline terwijl hij/zij een validatiedienst zou moeten uitvoeren), kan zijn/haar gestakete ETH langzaam verdwijnen, terwijl oneerlijk gedrag er waarschijnlijk toe leidt dat de gestakete activa worden weggenomen. Dit zorgt ervoor dat de validators actief en eerlijk gaan meewerken met het beveiligen van het netwerk.
-Op dezelfde manier als bij proof-of-work, zou een kwaadaardige entiteit ten minste 51 procent van de totale hoeveelheid ETH die gestaket is in het netwerk nodig zijn om een [aanval van 51%](/glossary/#51-attack) uit te voeren. Maar anders dan bij proof-of-work, waar het potentiële verlies van een mislukte aanval alleen de kosten is van het genereren van de hash-kracht die nodig is voor het minen, bij proof-of-stake is het mogelijke verlies van een aanval de totale hoeveelheid ETH die wordt gebruikt als onderpand. Deze ontmoedigende structuur maakt netwerkbeveiliging met proof-of-stake mogelijk, terwijl het niet langer nodig is om energie te besteden aan willekeurige berekeningen. Gedetailleerde uitleg van de netwerkbeveiliging onder proof-of-stake kan [hier](/developers/docs/consensus-mechanisms/pos/) en [hier](https://vitalik.eth.limo/general/2017/12/31/pos_faq.html) worden gevonden.
+Op dezelfde manier als bij proof-of-work, zou een kwaadaardige entiteit ten minste 51 procent van de totale hoeveelheid ETH die gestaket is in het netwerk nodig zijn om een [aanval van 51%](/glossary/#51%-attack) uit te voeren. Maar anders dan bij proof-of-work, waar het potentiële verlies van een mislukte aanval alleen de kosten is van het genereren van de hash-kracht die nodig is voor het minen, bij proof-of-stake is het mogelijke verlies van een aanval de totale hoeveelheid ETH die wordt gebruikt als onderpand. Deze ontmoedigende structuur maakt netwerkbeveiliging met proof-of-stake mogelijk, terwijl het niet langer nodig is om energie te besteden aan willekeurige berekeningen. Gedetailleerde uitleg van de netwerkbeveiliging onder proof-of-stake kan [hier](/developers/docs/consensus-mechanisms/pos/) en [hier](https://vitalik.eth.limo/general/2017/12/31/pos_faq.html) worden gevonden.
## De merge {#the-merge}
diff --git a/public/content/translations/nl/roadmap/beacon-chain/index.md b/public/content/translations/nl/roadmap/beacon-chain/index.md
index cfd87143a50..58630db91ab 100644
--- a/public/content/translations/nl/roadmap/beacon-chain/index.md
+++ b/public/content/translations/nl/roadmap/beacon-chain/index.md
@@ -27,7 +27,7 @@ Het doel van de Beacon Chain zal in de loop van de tijd veranderen, maar het is
De Beacon Chain zal [Proof-of-Stake](/developers/docs/consensus-mechanisms/pos/) introduceren bij Ethereum. Dit is een nieuwe manier waarbij u kunt helpen om Ethereum veilig te houden. Zie het als iets dat voor iedereen toegankelijk is en wat Ethereum beter maakt en waarmee je tegelijk meer ETH verdiend. In de praktijk betekent het dat het uw betrokkenheid vergt door het staken van ETH om zo de validatorsoftware te activeren. Als validator verwerkt u transacties en creëert u nieuwe blokken in de keten.
-Sstaken en een validator worden is makkelijker dan [mining](/developers/docs/mining/) (hoe het huidige netwerk nu beveiligd wordt). Hopelijk zal dit helpen om Ethereum op langere termijn veilig te maken. Hoe meer mensen meewerken aan het netwerk, hoe meer het zal decentraliseren en hoe veiliger het zal worden.
+Sstaken en een validator worden is makkelijker dan [mining](/developers/docs/consensus-mechanisms/pow/mining/) (hoe het huidige netwerk nu beveiligd wordt). Hopelijk zal dit helpen om Ethereum op langere termijn veilig te maken. Hoe meer mensen meewerken aan het netwerk, hoe meer het zal decentraliseren en hoe veiliger het zal worden.
Als u geïnteresseerd bent om een validator te worden en de Beacon Chain te beveiligen, hier vindt u meer informatie over staken.
diff --git a/public/content/translations/nl/roadmap/merge/index.md b/public/content/translations/nl/roadmap/merge/index.md
index 5ee3d97ff71..67408e0a5a6 100644
--- a/public/content/translations/nl/roadmap/merge/index.md
+++ b/public/content/translations/nl/roadmap/merge/index.md
@@ -17,13 +17,13 @@ summaryPoint4: Vroeger noemden we dit "de docking."
## Wat is de merge? {#what-is-the-docking}
-Het is belangrijk om te onthouden dat aanvankelijk de [Beacon Chain](/roadmap/beacon-chain/) apart werd verzonden van het [hoofdnet](/glossary/#mainnet) - de keten die we vandaag gebruiken. Het Ethereum-hoofdnet blijft beveiligd door [proof-of-work](/ontwikkelaars/docs/consensus-mechanismen/pow/), zelfs terwijl de Beacon Chain parallel draait met [proof-of-stake](/ontwikkelaars/docs/consensus-mechanisms/pos/). De merge is het moment wanneer beide systemen eindelijk samenkomen.
+Het is belangrijk om te onthouden dat aanvankelijk de [Beacon Chain](/roadmap/beacon-chain/) apart werd verzonden van het [hoofdnet](/glossary/#mainnet) - de keten die we vandaag gebruiken. Het Ethereum-hoofdnet blijft beveiligd door [proof-of-work](/developers/docs/consensus-mechanisms/pow/), zelfs terwijl de Beacon Chain parallel draait met [proof-of-stake](/developers/docs/consensus-mechanisms/pos/). De merge is het moment wanneer beide systemen eindelijk samenkomen.
Stel je voor dat Ethereum een ruimteschip is dat nog niet helemaal klaar is voor een interstellaire reis. Met de Beacon Chain heeft de gemeenschap een nieuwe motor en een geharde romp gebouwd. Als het zover is, zal het huidige schip aan dit nieuwe systeem koppelen en samensmelten tot één schip, klaar om serieuze lichtjaren te overbruggen en het heelal in te gaan.
## Samenvoegen met het hoofdnet {#docking-mainnet}
-Als het klaar is, zal het Ethereum-hoofdnet "fuseren" met de Beacon Chain en zijn eigen shard worden die proof-of-stake gebruikt in plaats van [proof-of-work](/ontwikkelaars/docs/consensus-mechanismen/pow/).
+Als het klaar is, zal het Ethereum-hoofdnet "fuseren" met de Beacon Chain en zijn eigen shard worden die proof-of-stake gebruikt in plaats van [proof-of-work](/developers/docs/consensus-mechanisms/pow/).
Het hoofdnet zal de mogelijkheid om slimme contracten uit te voeren in het proof-of-stake systeem brengen, plus de volledige geschiedenis en huidige staat van Ethereum, om ervoor te zorgen dat de overgang soepel verloopt voor alle ETH-houders en -gebruikers.
@@ -41,7 +41,7 @@ Alle Ethereum-upgrades zijn ietwat met elkaar verbonden. Laten we daarom samenva
### De merge en de Beacon Chain {#docking-and-beacon-chain}
-Zodra de merge plaatsvindt, zullen stakers worden toegewezen om het Ethereum-hoofdnet te valideren. [Mining](/ontwikkelaars/docs/consensus-mechanismen/pow/mining/) zal niet langer nodig zijn, dus miners zullen waarschijnlijk hun inkomsten investeren in het staken in het nieuwe proof-of-stake systeem.
+Zodra de merge plaatsvindt, zullen stakers worden toegewezen om het Ethereum-hoofdnet te valideren. [Mining](/developers/docs/consensus-mechanisms/pow/mining/) zal niet langer nodig zijn, dus miners zullen waarschijnlijk hun inkomsten investeren in het staken in het nieuwe proof-of-stake systeem.
De Baken Ketting
diff --git a/public/content/translations/nl/smart-contracts/index.md b/public/content/translations/nl/smart-contracts/index.md
index 3ba750b909f..acbb505e29a 100644
--- a/public/content/translations/nl/smart-contracts/index.md
+++ b/public/content/translations/nl/smart-contracts/index.md
@@ -65,7 +65,7 @@ Ze kunnen berekeningen uitvoeren, valuta creëren, gegevens opslaan, NFT's minte
- [Stablecoins](/stablecoins/)
- [Creëren en distribueren van unieke digitale activa](/nft/)
- [Een automatische, open wisselkoers](/get-eth/#dex)
-- [Gedecentraliseerde gaming](/dapps/?category=gaming)
+- [Gedecentraliseerde gaming](/dapps/?category=gaming#explore)
- [Een verzekeringsbeleid dat automatisch uitbetaalt](https://etherisc.com/)
- [Een standaard waarmee mensen aangepaste, interoperabele valuta's kunnen maken](/developers/docs/standards/tokens/)
diff --git a/public/content/translations/pl/community/code-of-conduct/index.md b/public/content/translations/pl/community/code-of-conduct/index.md
index 8745b2e7fa2..1246d70ab5f 100644
--- a/public/content/translations/pl/community/code-of-conduct/index.md
+++ b/public/content/translations/pl/community/code-of-conduct/index.md
@@ -4,6 +4,8 @@ description: Podstawowe standardy, do których dążymy w przestrzeniach ethereu
lang: pl
---
+# Kodeks postępowania {#conduct-intro}
+
## Misja {#mission}
Rozwijanie i utrzymanie najbardziej obszernego i dostępnego centrum wiedzy na temat Ethereum.
diff --git a/public/content/translations/pl/community/events/index.md b/public/content/translations/pl/community/events/index.md
index 6806f66165f..f863402ee8b 100644
--- a/public/content/translations/pl/community/events/index.md
+++ b/public/content/translations/pl/community/events/index.md
@@ -5,7 +5,7 @@ lang: pl
hideEditButton: true
---
-## Nadchodzące wydarzenia {#events}
+# Nadchodzące wydarzenia {#events}
**Co miesiąc, na całym świecie, mają miejsce różne wydarzenia i eventy Ethereum.** Weź pod uwagę możliwość wzięcia udziału w jednym z nich, niedaleko Ciebie, poznaj różne ścieżki kariery i rozwijaj swoje umiejętności.
diff --git a/public/content/translations/pl/community/get-involved/index.md b/public/content/translations/pl/community/get-involved/index.md
index 3769f42dad1..68672400880 100644
--- a/public/content/translations/pl/community/get-involved/index.md
+++ b/public/content/translations/pl/community/get-involved/index.md
@@ -16,7 +16,7 @@ Zacznij od zapoznania się z misją i wartościami ethereum.org w naszym [kodeks
- [Szukaj ofert nagród za wyszukiwanie błędów (bounties) na platformie Gitcoin](https://gitcoin.co/), pracuj nad małym lub poważniejszym błędem technicznym i zarabiaj kryptowaluty!
- Weź udział w hakatonie [ETHGlobal](http://ethglobal.co/) w pobliżu Twojego miejsca zamieszkania!
- Sprawdź [projekty związane z Twoją dziedziną lub wybranym językiem programowania](/developers/docs/programming-languages/)
-- Oglądaj lub bierz udział w spotkaniach [Core Dev calls](https://www.youtube.com/playlist?list=PLaM7G4Llrb7zfMXCZVEXEABT8OSnd4-7w)
+- Oglądaj lub bierz udział w spotkaniach [Core Dev calls](https://www.youtube.com/@EthereumProtocol)
- [Program Ecosystem Support](https://esp.ethereum.foundation/wishlist/) - w ramach którego aktywnie wspierane są pomysły, projekty i inicjatywy członków społeczności, jak również przyznawane dotacje w dziedzinach takich jak: narzędzia (tooling), dokumentacja (documentation) i infrastruktura (infrastructure).
- Program [Web3Bridge](https://www.web3bridge.com/) dołącz do ambitnej społeczności web3 w jej dążeniu do zidentyfikowania, wyszkolenia i wsparcia setek developerów i członków społeczności w całej Afryce
- Dołącz do [Discorda Ethereum Cat Herders](https://discord.io/EthCatHerders)
diff --git a/public/content/translations/pl/community/grants/index.md b/public/content/translations/pl/community/grants/index.md
index b21a24d80ce..1a982535548 100644
--- a/public/content/translations/pl/community/grants/index.md
+++ b/public/content/translations/pl/community/grants/index.md
@@ -18,7 +18,6 @@ Te programy wspierają rozległy ekosystem Ethereum, oferując granty dla wielu
- [MetaCartel](https://www.metacartel.org/grants/) — _rozwój zdecentralizowanych aplikacji, tworzenie DAO_
- [Moloch DAO](https://www.molochdao.com/) — _prywatność, skalowanie warstwy 2, bezpieczeństwo klienta i nie tylko_
- [Granty DAO](https://docs.google.com/spreadsheets/d/1XHc-p_MHNRdjacc8uOEjtPoWL86olP4GyxAJOFO0zxY/edit#gid=0) — _arkusz kalkulacyjny Google organizacji oferujących granty_
-- [Crunchbase dla grantów Web3](https://www.cryptoneur.xyz/web3-grants) — _filtruj i wyszukuj granty według kategorii, przypadku użycia, kwoty i nie tylko. Przyczyń się, aby pomóc innym w znalezieniu odpowiedniego grantu._
- [Granty Akademickie](https://esp.ethereum.foundation/academic-grants) — _granty na wsparcie prac akademickich związanych z Ethereum_
- [Blockworks Grantfarm](https://blockworks.co/grants/programs) - _Firma Blockworks opracowała kompleksowy katalog wszystkich dotacji, zapytań ofertowych i nagród za błędy._
@@ -35,7 +34,6 @@ Projekty te stworzyły własne granty dla projektów mających na celu rozwój i
- [Program grantów sieci SKALE](https://skale.space/developers#grants) — _ekosystem [sieci SKALE](https://skale.space/)_
- [The Graph](https://airtable.com/shrdfvnFvVch3IOVm) — _ekosystem [The Graph](https://thegraph.com/)_
- [Program grantów Uniswap](https://www.uniswapfoundation.org/apply-for-a-grant) — _społeczność [Uniswap](https://uniswap.org/)_
-- [Granty Web3](https://web3grants.net) — _obszerna lista programów grantowych związanych z web3/krypto_
## Quadratic funding {#quadratic-funding}
diff --git a/public/content/translations/pl/decentralized-identity/index.md b/public/content/translations/pl/decentralized-identity/index.md
index 3cb7ce04529..7d8827be51f 100644
--- a/public/content/translations/pl/decentralized-identity/index.md
+++ b/public/content/translations/pl/decentralized-identity/index.md
@@ -49,7 +49,7 @@ Zdecentralizowane identyfikatory są przechowywane w rozproszonych księgach (ł
## Co sprawia, że zdecentralizowane identyfikatory są możliwe? {#what-makes-decentralized-identifiers-possible}
-### 1. Infrastruktura klucza publicznego (PKI) {#public-key-infrastructure}
+### 1. Infrastruktura klucza publicznego (PKI) {#public-key-cryptography}
Infrastruktura klucza publicznego (PKI) to środek bezpieczeństwa informacji, który generuje dla podmiotu [klucz publiczny](/glossary/#public-key) i [klucz prywatny](/glossary/#private-key). Kryptografia klucza publicznego jest wykorzystywana w sieciach łańcuchów bloków do uwierzytelniania tożsamości użytkowników i udawadniania własności zasobów cyfrowych.
diff --git a/public/content/translations/pl/defi/index.md b/public/content/translations/pl/defi/index.md
index b1fe04fde62..34a5b7ff1fa 100644
--- a/public/content/translations/pl/defi/index.md
+++ b/public/content/translations/pl/defi/index.md
@@ -47,7 +47,7 @@ Jednym z najlepszych sposobów na dostrzeżenie potencjału DeFi jest zrozumieni
| Rynki są zawsze otwarte. | Rynki zamykają się, gdyż do ich obsługi potrzebni są ludzi, a oni potrzebują przerw. |
| Wszystko opiera się na transparentności — każdy ma wgląd do kodu źródłowego i może sprawdzić, jak dokładnie działa system. | Instytucje finansowe utajniają historie swojej działalności: nie możesz sprawdzić, komu pożyczają, ile, kiedy, jak zarządzają aktywami itp. |
-
+
Odkryj aplikacje DeFi
@@ -65,7 +65,7 @@ To brzmi dziwnie... „Dlaczego mam programować moje pieniądze?” W ekosystem
Zobacz nasze sugerowane aplikacje DeFi i przetestuj je, jeśli nie znasz jeszcze ekosystemu Ethereum.
-
+
Eksploruj aplikacje DeFi
@@ -92,7 +92,7 @@ Istnieje zdecentralizowana alternatywa dla większości usług finansowych. Ethe
Jako łańcuch bloków, platforma Ethereum jest stworzona do bezpiecznego przesyłania transakcji o globalnym zasięgu. Podobnie jak Bitcoin, Ethereum ułatwia wysyłanie pieniędzy na całym świecie, podobnie jak wysyłanie wiadomości e-mail. Wystarczy podać tylko nazwę odbiorcy w systemie [ENS](/nft/#nft-domains) (np. bob.eth) lub adres konta i zatwierdzić transakcję w swoim portfelu, a środki po kilku minutach (zazwyczaj) będą zaksięgowane u odbiorcy. Do wysyłania i odbierania płatności, potrzebny jest [portfel](/wallets/).
-
+
Zobacz d-aplikacje do płatności
@@ -123,7 +123,7 @@ Pożyczanie pieniędzy od zdecentralizowanych pożyczkodawców odbywa się w dw
- Peer-to-peer, co oznacza, że kredytobiorca będzie pożyczał bezpośrednio od konkretnego kredytodawcy.
- Na podstawie grupy, w której kredytodawcy przekazują środki (płynność) do puli kredytobiorców, od której kredytobiorcy mogą pożyczyć.
-
+
Sprawdź d-apliakcje pożyczkowe
@@ -183,7 +183,7 @@ Możesz zacząć zarabiać od swoich kryptowalut odsetki, które są naliczane w
- Ilość twoich aDai będzie się powiększać w zależności od stóp procentowych w produkcie, a Ty masz do nich wgląd w każdej chwili w swoim portfelu. W zależności od oprocentowania saldo Twojego portfela może wskazywać np. 100,1234 aDai już po paru dniach, a nawet godzinach!
- W każdej chwili możesz wymienić tokeny produktu z powrotem na oryginalne Dai.
-
+
Zobacz d-aplikacje pożyczkowe
@@ -211,7 +211,7 @@ Na Ethereum są tysiące tokenów. Zdecentralizowane giełdy (DEX) umożliwiają
Na przykład, jeśli chcesz skorzystać z loterii bez przegranych PoolTogether (opisanej powyżej), będziesz potrzebować tokena takiego jak Dai lub USDC. Zdecentralizowane giełdy dają Ci możliwość wymiany ETH na te tokeny i zamianę z powrotem, kiedy będziesz potrzebować.
-
+
Zobacz handel tokenami
@@ -223,7 +223,7 @@ Dla inwestorów, którzy lubią mieć nieco więcej kontroli, istnieją bardziej
Na scentralizowanych giełdach musisz najpierw zdeponować swoje środki, a potem na czas obrotu zaufać danej platformie. Gdy Twoje środki są zdeponowane na scentralizowanej giełdzie, stają się atrakcyjnym celem dla hakerów, a Ty ponosisz ryzyko.
-
+
Zobacz d-aplikacje pożyczkowe
@@ -235,7 +235,7 @@ Na Ethereum są dostępne produkty do zarządzania funduszami, które będą pr
Dobrym przykładem jest [fundusz DeFi Pulse Index (DPI)](https://defipulse.com/blog/defi-pulse-index/). Jest to fundusz, który automatycznie przelicza saldo, aby Twoje portfolio zawsze zawierało [najlepsze tokeny DeFi według kapitalizacji rynkowej](https://www.coingecko.com/en/defi). Nigdy nie musisz zarządzać żadnymi szczegółami i możesz wycofać się z funduszu, kiedy tylko chcesz.
-
+
Zobacz d-aplikacje do obsługi inwestycji
@@ -249,7 +249,7 @@ Ethereum jest idealną platformą do finansowania społecznościowego:
- Zbiórki są transparentne, nie ma możliwości utajnienia zebranej kwoty. Po zakończeniu zbiórki możesz nawet śledzić sposób wydatkowania zebranych pieniędzy.
- Podmioty dokonujące zbiórki mogą ustawić automatyczne refundacje, jeżeli na przykład w określonym terminie nie zostanie zebrana ustalona kwota.
-
+
Sprawdź d-aplikacje do finansowania społecznościowego
@@ -276,7 +276,7 @@ Zdecentralizowane ubezpieczenia mają na celu obniżenie kosztów ubezpieczenia,
Produkty Ethereum, podobnie jak każde oprogramowanie, mogą zawierać błędy i są narażone na oprogramowanie wykorzystujące luki. Dlatego obecnie wiele dostępnych produktów ubezpieczeniowych koncentruje się na ochronie użytkowników przed utratą środków. Jednak pojawiają się projekty, które zaczynają obejmować swoim zasięgiem wszystko, czym może nas zaskoczyć życie. Dobrym tego przykładem jest program Crop firmy Etherisc, którego celem jest [ochrona drobnych rolników w Kenii przed suszami i powodziami](https://blog.etherisc.com/etherisc-teams-up-with-chainlink-to-deliver-crop-insurance-in-kenya-137e433c29dc). Zdecentralizowane ubezpieczenie może zapewnić tańszą ochronę ubezpieczeniową dla rolników, którzy często nie są uwzględniani przez tradycyjnych ubezpieczycieli.
-
+
Zobacz zdecentralizowane aplikacje ubezpieczeniowe
@@ -286,7 +286,7 @@ Produkty Ethereum, podobnie jak każde oprogramowanie, mogą zawierać błędy i
W wielu przypadkach będziesz potrzebować sposobu, aby śledzić wszystkie swoje inwestycje, pożyczki i transakcje. Istnieje mnóstwo produktów, które służą do koordynowania całej aktywności DeFi z jednego miejsca. Na tym polega piękno otwartej architektury DeFi. Zespoły mogą budować interfejsy, w których nie tylko widzisz swoje salda w różnych produktach, ale możesz również korzystać z ich funkcji. Może ci się to przydać, gdy będziesz poznawać kolejne części DeFi.
-
+
Zobacz portfolio d-aplikacji
diff --git a/public/content/translations/pl/desci/index.md b/public/content/translations/pl/desci/index.md
index d6aac3be9fa..b88c46ba90d 100644
--- a/public/content/translations/pl/desci/index.md
+++ b/public/content/translations/pl/desci/index.md
@@ -68,7 +68,7 @@ Obecny standardowy model finansowania nauki polega na tym, że osoby fizyczne lu
Badania wykazały, że zespoły ds. przeglądu dotacji nie wykonują dobrej pracy w zakresie wyboru wniosków wysokiej jakości, ponieważ te same wnioski przekazane różnym zespołom przynoszą diametralnie różne wyniki. W miarę jak środki finansowe stają się coraz bardziej ograniczone, koncentrują się na mniejszej puli starszych naukowców proponujących projekty bardziej konserwatywne pod względem intelektualnym. Efektem tego jest powstanie hiperkonkurencyjnego systemu finansowania, który utrwala niepożądane zachęty i tłumi innowacje.
-Web3 ma potencjał, aby zakłócić ten wadliwy model finansowania poprzez eksperymentowanie z różnymi modelami motywacyjnymi opracowanymi przez DAO i Web3 w szerokim zakresie. [Finansowanie ze środków publicznych obowiązujące wstecz](https://medium.com/ethereum-optimism/retroactive-public-goods-funding-33c9b7d00f0c), [finansowanie kwadratowe](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2003531), [zarządzanie DAO](https://www.antler.co/blog/daos-and-web3-governance) i [struktury motywacyjne oparte na tokenach](https://cdixon.org/2017/05/27/crypto-tokens-a-breakthrough-in-open-network-design) to przykłady narzędzi Web3, które mogą zrewolucjonizować finansowanie nauki.
+Web3 ma potencjał, aby zakłócić ten wadliwy model finansowania poprzez eksperymentowanie z różnymi modelami motywacyjnymi opracowanymi przez DAO i Web3 w szerokim zakresie. [Finansowanie ze środków publicznych obowiązujące wstecz](https://medium.com/ethereum-optimism/retroactive-public-goods-funding-33c9b7d00f0c), [finansowanie kwadratowe](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2003531), [zarządzanie DAO](https://www.antler.co/blog/daos-and-web3-governance-the-promise-implications-and-challenges-ahead) i [struktury motywacyjne oparte na tokenach](https://cdixon.org/2017/05/27/crypto-tokens-a-breakthrough-in-open-network-design) to przykłady narzędzi Web3, które mogą zrewolucjonizować finansowanie nauki.
### Własność i rozwój własności intelektualnej (IP) {#ip-ownership}
diff --git a/public/content/translations/pl/developers/docs/apis/backend/index.md b/public/content/translations/pl/developers/docs/apis/backend/index.md
index f8d2ad39309..3991479a59e 100644
--- a/public/content/translations/pl/developers/docs/apis/backend/index.md
+++ b/public/content/translations/pl/developers/docs/apis/backend/index.md
@@ -12,7 +12,7 @@ Jeśli chcesz użyć określonego języka programowania do połączenia z węzł
## Warunki wstępne {#prerequisites}
-Pomocne może być zrozumienie [stosu Ethereum](/developers/docs/ethereum-stack/) i [klientów Ethereum](/docs/nodes-and-clients/).
+Pomocne może być zrozumienie [stosu Ethereum](/developers/docs/ethereum-stack/) i [klientów Ethereum](/developers/docs/nodes-and-clients/).
## Dlaczego warto użyć biblioteki? {#why-use-a-library}
diff --git a/public/content/translations/pl/developers/docs/data-and-analytics/block-explorers/index.md b/public/content/translations/pl/developers/docs/data-and-analytics/block-explorers/index.md
index 5baed6498b4..82650d75499 100644
--- a/public/content/translations/pl/developers/docs/data-and-analytics/block-explorers/index.md
+++ b/public/content/translations/pl/developers/docs/data-and-analytics/block-explorers/index.md
@@ -17,7 +17,7 @@ Powinieneś zrozumieć podstawowe pojęcia Ethereum, abyś mógł zrozumieć dan
- [Etherchain](https://www.etherchain.org/)
- [Ethplorer](https://ethplorer.io/)
- [Blockchair](https://blockchair.com/ethereum) – _dostępne również w języku hiszpańskim, francuskim, włoskim, niderlandzkim, portugalskim, rosyjskim, chińskim i farsi_
-- [Blockscout](https://blockscout.com/)
+- [Blockscout](https://eth.blockscout.com/)
- [OKLink](https://www.oklink.com/eth)
## Dane {#data}
@@ -245,7 +245,7 @@ Dane najwyższego poziomu Eth2 obejmują:
## Eksploratory bloków {#block-explorers}
- [Etherscan](https://etherscan.io/) – eksplorator bloków, którego możesz użyć do pobrania danych dla głównej sieci Ethereum, sieci testowej Ropsten, sieci testowej Kovan, sieci testowej Rinkeby i sieci testowej Goerli.
-- [Blockscout](https://blockscout.com/) – koncentruje się na następujących sieciach:
+- [Blockscout](https://eth.blockscout.com/) – koncentruje się na następujących sieciach:
- xDai – mądre połączenie technologii stablecoin DAI MakerDAO, a także technologii łańcucha bocznego POA i tokenbridge.
- POA – łańcuch boczny i autonomiczna sieć zabezpieczona przez grupę zaufanych walidatorów. Wszyscy walidatorzy w sieci są notariuszami Stanów Zjednoczonych, a ich informacje są publicznie dostępne.
- POA Sokol Testnet.
diff --git a/public/content/translations/pl/developers/docs/index.md b/public/content/translations/pl/developers/docs/index.md
index 9dbce0359ea..6f1ae718c97 100644
--- a/public/content/translations/pl/developers/docs/index.md
+++ b/public/content/translations/pl/developers/docs/index.md
@@ -42,4 +42,4 @@ Jeśli jest to Twoja pierwsza próba rozwoju Ethereum, zalecamy zacząć od pocz
- [Standardy tokenów](/developers/docs/standards/tokens/)
- [Wyrocznie](/developers/docs/oracles/)
-- [Skalowanie](/developers/docs/layer-2-scaling/)
+- [Skalowanie](/developers/docs/scaling/)
diff --git a/public/content/translations/pl/developers/docs/nodes-and-clients/index.md b/public/content/translations/pl/developers/docs/nodes-and-clients/index.md
index 1bb4b2615b9..b28130b5340 100644
--- a/public/content/translations/pl/developers/docs/nodes-and-clients/index.md
+++ b/public/content/translations/pl/developers/docs/nodes-and-clients/index.md
@@ -225,5 +225,4 @@ W Internecie jest wiele instrukcji i informacji o klientach Ethereum, tutaj jest
## Powiązane samouczki {#related-tutorials}
-- [Uruchamianie węzła za pomocą Geth](/developers/tutorials/run-light-node-geth/) _– Jak pobrać, zainstalować i uruchomić Geth. Omówienie trybów synchronizacji, konsoli JavaScript i więcej._
- [Turn your Raspberry Pi 4 into an Eth 1.0 or Eth 2.0 node just by flashing the MicroSD card – Installation guide](/developers/tutorials/run-node-raspberry-pi/) _– Flash your Raspberry Pi 4, plug in an ethernet cable, connect the SSD disk and power up the device to turn the Raspberry Pi 4 into a full Ethereum 1.0 node or an Ethereum 2.0 node (beacon chain / validator)._
diff --git a/public/content/translations/pl/developers/docs/smart-contracts/languages/index.md b/public/content/translations/pl/developers/docs/smart-contracts/languages/index.md
index 0ef6fd35496..ce2f7cd9621 100644
--- a/public/content/translations/pl/developers/docs/smart-contracts/languages/index.md
+++ b/public/content/translations/pl/developers/docs/smart-contracts/languages/index.md
@@ -209,7 +209,7 @@ Jeśli dopiero zapoznajesz się z Ethereum i nie kodowałeś jeszcze w językach
**Yul+**
- Niskopoziomowe, bardzo wydajne rozszerzenie do Yul.
-- Początkowo zaprojektowany na potrzeby kontraktu typu [optymistyczna wartość zbiorcza](/docs/layer-2-scaling/#rollups-and-sidechains).
+- Początkowo zaprojektowany na potrzeby kontraktu typu [optymistyczna wartość zbiorcza](/developers/docs/scaling/).
- Yul+ można postrzegać jako eksperymentalną propozycję ulepszenia Yul, dodającą do niego nowe funkcje.
### Ważne linki {#important-links-2}
diff --git a/public/content/translations/pl/developers/docs/smart-contracts/testing/index.md b/public/content/translations/pl/developers/docs/smart-contracts/testing/index.md
index 74b9d93cbf0..c7b29760bb1 100644
--- a/public/content/translations/pl/developers/docs/smart-contracts/testing/index.md
+++ b/public/content/translations/pl/developers/docs/smart-contracts/testing/index.md
@@ -37,7 +37,7 @@ incomplete: true
- [Solidity and Truffle Continuous Integration Setup](/developers/tutorials/solidity-and-truffle-continuous-integration-setup/) _– jak skonfigurować Travis lub Circle CI do testowania Truffle wraz z przydatnymi wtyczkami_
- [Narzędzia testowe](/developers/tutorials/guide-to-smart-contract-security-tools/) _– przegląd i porównanie różnych narzędzi testowych_
- [Echidna – narzędzie do testowania inteligentnych kontraktów](/developers/tutorials/how-to-use-echidna-to-test-smart-contracts/)
-- [Manticore – narzędzie do znajdowania błędów w inteligentnych kontraktach](/developers/tutorials/how-to-use-manticor-to-find-smart-contract-bugs/)
+- [Manticore – narzędzie do znajdowania błędów w inteligentnych kontraktach](/developers/tutorials/how-to-use-manticore-to-find-smart-contract-bugs/)
- [Slither – narzędzie do znajdowania błędów w inteligentnych kontraktach](/developers/tutorials/how-to-use-slither-to-find-smart-contract-bugs/)
- [Jak tworzyć kontrakty Solidity pod kątem testowania](/developers/tutorials/how-to-mock-solidity-contracts-for-testing/)
- [Jak migrować z Truffle Tests do środowiska testowego OpenZeppelin](https://docs.openzeppelin.com/test-environment/0.1/migrating-from-truffle)
diff --git a/public/content/translations/pl/developers/docs/standards/index.md b/public/content/translations/pl/developers/docs/standards/index.md
index 01e68682011..a054cd62010 100644
--- a/public/content/translations/pl/developers/docs/standards/index.md
+++ b/public/content/translations/pl/developers/docs/standards/index.md
@@ -17,7 +17,7 @@ Zazwyczaj standardy są wprowadzane jako [Propozycje ulepszeń Ethereum](/eips/)
- [Forum dyskusyjne EIP](https://ethereum-magicians.org/c/eips)
- [Omówienie zarządzania Ethereum](https://blog.bmannconsulting.com/ethereum-governance/) _31 marca 2019 r. – Boris Mann_
- [Ethereum Protocol Development Governance and Network Upgrade Coordination](https://hudsonjameson.com/2020-03-23-ethereum-protocol-development-governance-and-network-upgrade-coordination/) _23 marca 2020 - Hudson Jameson_
-- [Playlist of all Ethereum Core Dev Meetings](https://www.youtube.com/playlist?list=PLaM7G4Llrb7zfMXCZVEXEABT8OSnd4-7w) _(Playlista YouTube)_
+- [Playlist of all Ethereum Core Dev Meetings](https://www.youtube.com/@EthereumProtocol) _(Playlista YouTube)_
## Rodzaje standardów {#types-of-standards}
diff --git a/public/content/translations/pl/developers/docs/standards/tokens/index.md b/public/content/translations/pl/developers/docs/standards/tokens/index.md
index 1f049eac59c..6f89f69c06e 100644
--- a/public/content/translations/pl/developers/docs/standards/tokens/index.md
+++ b/public/content/translations/pl/developers/docs/standards/tokens/index.md
@@ -29,5 +29,5 @@ _Znasz jakieś zasoby społeczności, które Ci pomogły? Wyedytuj tę stronę
- [Lista kontrolna integracji tokenów](/developers/tutorials/token-integration-checklist/) _– lista kontrolna rzeczy, które należy wziąć pod uwagę podczas interakcji z tokenami._
- [Zrozumienie inteligentnego kontraktu tokena ERC20](/developers/tutorials/understand-the-erc-20-token-smart-contract/) _– wprowadzenie do wdrożenie pierwszego inteligentnego kontraktu w sieci testowej Ethereum._
-- [Przenoszenie i zatwierdzanie tokenów ERC20 z inteligentnego kontraktu Solidity](/developers/tutorials/transfers-and-approval-of-erc20-tokens-from-a-solidity-smart-contract/) _– jak używać inteligentnego kontraktu do interakcji z tokenem przy użyciu języka Solidity._
+- [Przenoszenie i zatwierdzanie tokenów ERC20 z inteligentnego kontraktu Solidity](/developers/tutorials/transfers-and-approval-of-erc-20-tokens-from-a-solidity-smart-contract/) _– jak używać inteligentnego kontraktu do interakcji z tokenem przy użyciu języka Solidity._
- [Wdrażanie rynku ERC721 [przewodnik]](/developers/tutorials/how-to-implement-an-erc721-market/) _– jak wystawiać tokenizowane przedmioty na sprzedaż na zdecentralizowanej tablicy ogłoszeń._
diff --git a/public/content/translations/pl/developers/tutorials/run-light-node-geth/index.md b/public/content/translations/pl/developers/tutorials/run-light-node-geth/index.md
deleted file mode 100644
index a41cb513594..00000000000
--- a/public/content/translations/pl/developers/tutorials/run-light-node-geth/index.md
+++ /dev/null
@@ -1,167 +0,0 @@
----
-title: Jak uruchomić lekki węzeł za pomocą Geth
-description: Jak pobrać, zainstalować i uruchomić Geth. Obejmuje tryby synchronizacji, konsolę JavaScript i nie tylko
-author: "Brian Gu"
-tags:
- - "klienty"
- - "węzły"
-skill: intermediate
-lang: pl
-published: 2020-06-14
----
-
-Możesz być zainteresowany uruchomieniem [węzła Ethereum](/developers/docs/nodes-and-clients/). Jednym z najprostszych sposobów jest pobieranie, instalowanie i uruchamianie Geth. Dzięki Geth możemy uruchomić lekki węzeł w ciągu kilku minut.
-
-Najpierw musisz [zainstalować Geth](https://geth.ethereum.org/docs/install-and-build/installing-geth).
-
-Po zainstalowaniu Getha uruchomienie pełnego węzła Ethereum jest tak proste, jak pisanie
-
-```bash
-$ geth
-```
-
-w wierszu poleceń (bez znaku dolara). Nie rób tego jeszcze! Po uruchomieniu `geth` Geth:
-
-- Zainicjuje lokalną kopię EVM w stanie pustym
-- Rozpocznie pobieranie wszystkich bloków w historii Ethereum, zaczynając od bloku 0.
-- Powtórzy wszystkie transakcje we wszystkich blokach, aby zaktualizować stan EVM każdą transakcją, aż osiągnie stan bieżący.
-
-Ten proces może trwać od godzin do dni i wymaga kilkuset GB wolnego miejsca. Na razie po prostu uruchomimy lekki węzeł w sieci testowej, aby zapoznać się z tym, jak korzystać z Getha. Aby to zrobić, będziemy musieli przejść przez kilka ważnych opcji i narzędzi wiersza poleceń.
-
-## Główna sieć i testnet {#mainnet-and-testnet}
-
-Domyślnie Geth uruchamia węzeł sieci głównej. Możesz uruchomić `geth --testnet`, aby uruchomić pełny węzeł sieci testowej Ropsten. Możesz uruchomić węzeł w Rinkeby, zamieniając `testnet` na `rinkeby`.
-
-[Dowiedz się więcej o różnych sieciach](/developers/docs/networks/).
-
-## Syncmode {#syncmode}
-
-Geth ma trzy `syncmode`.
-
-```bash
-$ geth --syncmode "full"
-$ geth --syncmode "fast"
-$ geth --syncmode "light"
-```
-
-`"full"` uruchamia pełny węzeł dokładnie tak, jak można się spodziewać — twoja maszyna inicjuje lokalną kopię EVM w jej oryginalnym czystym stanie, pobiera każdy blok od początku łańcucha bloków i wykonuje każdą transakcję w każdym bloku, aktualizując stan EVM, aż osiągnie obecny stan EVM.
-
-`"fast"` pobiera wszystkie bloki, ale także pobiera ostatnią migawkę stanu EVM z peera (obecnie stan 64 bloków EVM w przeszłości), wykonując transakcje tylko w najnowszych blokach do osiąga aktualny stan EVM. Zaletą `"fast"` jest to, że synchronizacja do obecnego stanu zajmuje znacznie mniej czasu; jednak opiera się na pełnym archiwalnym węźle równorzędnym dla migawki stanu, więc nie weryfikuje wszystkiego dla siebie.
-
-Wreszcie, `"light"` uruchamia lekki węzeł, który omówiliśmy powyżej.
-
-Aby wyjaśnić różnice pomiędzy trzema trybami synchronizacji, zobacz tę [odpowiedź giełdy](https://ethereum.stackexchange.com/questions/11297/what-is-geths-light-sync-and-why-is-it-so-fast).
-
-## Dokumentacja i inne opcje wiersza poleceń {#documentation-and-other-command-line-options}
-
-- [Pełna dokumentacja](https://geth.ethereum.org/docs/)
-- [Wszystkie opcje wiersza poleceń](https://geth.ethereum.org/docs/interface/command-line-options)
-
-## Uruchomienie lekkiego węzła {#running-your-light-node}
-
-Uruchomimy lekki węzeł sieci testowej, aby zapoznać się z zarządzaniem węzłem i interakcją z nim. Aby to zrobić, po prostu uruchom
-
-```bash
-$ geth --testnet --syncmode "light"
-```
-
-Poczekaj kilka sekund i miejmy nadzieję, że otrzymasz dane wyjściowe, które wyglądają mniej więcej tak:
-
-```bash
-$ geth --testnet --syncmode "light"
-INFO [11-18|14:04:47] Maximum peer count ETH=0 LES=100 total=25
-INFO [11-18|14:04:47] Starting peer-to-peer node instance=Geth/v1.8.11-stable/darwin-amd64/go1.10.3
-INFO [11-18|14:04:47] Allocated cache and file handles database=/Users/bgu/Library/Ethereum/testnet/geth/lightchaindata cache=768 handles=128
-INFO [11-18|14:04:47] Persisted trie from memory database nodes=355 size=51.89kB time=561.839µs gcnodes=0 gcsize=0.00B gctime=0s livenodes=1 livesize=0.00B
-INFO [11-18|14:04:47] Initialised chain configuration config="{ChainID: 3 Homestead: 0 DAO: DAOSupport: true EIP150: 0 EIP155: 10 EIP158: 10 Byzantium: 1700000 Constantinople: Engine: ethash}"
-INFO [11-18|14:04:47] Disk storage enabled for ethash caches dir=/Users/bgu/Library/Ethereum/testnet/geth/ethash count=3
-INFO [11-18|14:04:47] Disk storage enabled for ethash DAGs dir=/Users/bgu/.ethash count=2
-INFO [11-18|14:04:47] Added trusted checkpoint chain=ropsten block=3375103 hash=9017ab…249e89
-INFO [11-18|14:04:47] Loaded most recent local header number=0 hash=419410…ca4a2d td=1048576
-INFO [11-18|14:04:47] Starting P2P networking
-INFO [11-18|14:04:49] UDP listener up net=enode://3ef47be442520e4708b5ff25e6e213c496046f443f8393ff5e7ec55f1cf27c374e2e93e78235bde651a5734a012a40eacfc16deab762ee0f380b95d117ac530c@[::]:30303
-WARN [11-18|14:04:49] Light client mode is an experimental feature
-INFO [11-18|14:04:49] RLPx listener up self="enode://3ef47be442520e4708b5ff25e6e213c496046f443f8393ff5e7ec55f1cf27c374e2e93e78235bde651a5734a012a40eacfc16deab762ee0f380b95d117ac530c@[::]:30303?discport=0"
-INFO [11-18|14:04:49] IPC endpoint opened url=/Users/bgu/Library/Ethereum/testnet/geth.ipc
-INFO [11-18|14:04:51] Mapped network port proto=udp extport=30303 intport=30303 interface="UPNP IGDv1-IP1"
-INFO [11-18|14:04:51] Mapped network port proto=tcp extport=30303 intport=30303 interface="UPNP IGDv1-IP1"
-INFO [11-18|14:08:55] Block synchronisation started
-INFO [11-18|14:08:58] Imported new block headers count=192 elapsed=1.574s number=3375295 hash=62f6b1…95c47f ignored=0
-INFO [11-18|14:08:58] Imported new block headers count=192 elapsed=127.088ms number=3375487 hash=ae759b…453ac5 ignored=0
-INFO [11-18|14:08:59] Imported new block headers count=960 elapsed=582.125ms number=3376447 hash=4cab62…445b82 ignored=0
-INFO [11-18|14:08:59] Imported new block headers count=192 elapsed=169.936ms number=3376639 hash=470614…85ce15 ignored=0
-INFO [11-18|14:08:59] Imported new block headers count=384 elapsed=245.745ms number=3377023 hash=dad8ee…2862d2 ignored=0
-INFO [11-18|14:08:59] Imported new block headers count=192 elapsed=128.514ms number=3377215 hash=ebcd84…ea26cb ignored=0
-INFO [11-18|14:09:00] Imported new block headers count=192 elapsed=125.427ms number=3377407 hash=fca10c…8ed04d ignored=0
-INFO [11-18|14:09:00] Imported new block headers count=192 elapsed=109.536ms number=3377599 hash=9aa141…f34080 ignored=0
-INFO [11-18|14:09:00] Imported new block headers count=192 elapsed=109.849ms number=3377791 hash=499f2d…e0c713 ignored=0
-```
-
-Uwaga: przez kilka minut, a nawet godzin, jeśli masz szczególnego pecha, możesz nie widzieć komunikatów „Block synchronisation started” i następnie „Imported new block headers”. W tym czasie Twój klient próbuje znaleźć równorzędne pełne węzły, które obsłużą klientów typu light. W powyższym przykładzie możemy stwierdzić po znacznikach czasu, że moja maszyna musiała odczekać około czterech minut między rozpoczęciem wyszukiwania równorzędnych węzłów a faktycznym znalezieniem takiego, z którego można pobrać bloki. Jest to obecnie otwarty problem w społeczności Ethereum — jak zachęcić ludzi do uruchamiania pełnych węzłów, które obsługują klientów typu light?
-
-Gdy rozpocznie się synchronizacja bloków, Twoja maszyna będzie potrzebować kilku minut, aby nadrobić zaległości w najnowszych blokach w łańcuchu bloków. W tym momencie twój wynik zacznie wyglądać tak:
-
-```bash
-INFO [11-18|16:06:04.025] Imported new block headers count=2 elapsed=6.253ms number=4456862 hash=ce0a0b…6ab128
-INFO [11-18|16:06:27.819] Imported new block headers count=2 elapsed=5.982ms number=4456864 hash=04a054…b4f661
-INFO [11-18|16:06:34.080] Imported new block headers count=2 elapsed=4.774ms number=4456866 hash=15a43c…efc782
-INFO [11-18|16:06:45.464] Imported new block headers count=2 elapsed=5.213ms number=4456868 hash=eb02d5…227564
-INFO [11-18|16:07:11.630] Imported new block headers count=2 elapsed=5.835ms number=4456870 hash=67daa7…66892d
-```
-
-W tym momencie wiadomości zaczną przychodzić co 10-30 sekund, a wartość `count` będzie składać się z pojedynczych cyfr dla każdej wiadomości.
-
-## Gdzie przechowywane są dane z blockchainu i EVM? {#where-is-the-blockchain-and-evm-data-stored}
-
-Katalog, którego Geth używa do przechowywania nieprzetworzonych danych łańcucha bloków, zależy od systemu operacyjnego. Po uruchomieniu Geth poszukaj wiadomości, która wygląda jak
-
-```bash
-INFO [11-18|14:04:47] Allocated cache and file handles database=/Users/bgu/Library/Ethereum/testnet/geth/lightchaindata cache=768 handles=128
-```
-
-Ścieżka po `„database="` powinna Ci powiedzieć, gdzie dane łańcucha bloków są przechowywane na Twoim komputerze. Jeśli używasz pełnego węzła, ten katalog będzie zawierał wszystkie dane o każdym bloku, który kiedykolwiek został przekazany do łańcucha bloków. Ponieważ mamy lekki węzeł, ten katalog zawiera tylko nagłówki bloków.
-
-Warto w tym miejscu podkreślić, że na najniższym poziomie to właśnie tutaj żyje blockchain. Pełna zawartość łańcucha bloków i stan EVM są przechowywane na każdym pełnym węźle w sieci Ethereum, w katalogach, które wyglądają bardzo podobnie do tego na twoim komputerze.
-
-## Dołączanie do konsoli JavaScript {#attaching-to-the-javascript-console}
-
-Uruchamianie węzła nie jest przydatne, chyba że faktycznie możemy z nim wchodzić w interakcje. Na przykład możemy chcieć rozgłaszać żądania transakcji lub wyszukiwać dane EVM/blockchainu (takie jak saldo konta). Geth ma wbudowaną konsolę JavaScript i interfejs API JavaScript o nazwie [web3js](https://github.com/ethereum/web3.js/), którego możesz użyć do interakcji z węzłem.
-
-Aby użyć konsoli JavaScript:
-
-1. Rozpocznij uruchamianie węzła w oknie terminala (zarówno pełny, jak i lekki węzeł są akceptowane).
-2. Poszukaj wiadomości, która wygląda tak:
-
-```bash
-INFO [11-18|14:04:49] IPC endpoint opened url=/Users/bgu/Library/Ethereum/testnet/geth.ipc
-```
-
-Ten komunikat powinien zostać zarejestrowany przed rozpoczęciem synchronizacji bloku.
-
-3. Ten komunikat wskazuje ścieżkę do punktu końcowego IPC (komunikacja między procesami). Skopiuj tę ścieżkę (w powyższym przykładzie jest to `/Users/bgu/Library/Ethereum/testnet/geth.ipc`).
-4. Otwórz nowe okno lub kartę terminala i uruchom następujące polecenie: `$ geth attach [ścieżka Twojego punktu końcowego IPC]`
-
-To powinno otworzyć konsolę JavaScript. Możemy teraz używać web3js do interakcji z węzłem.
-
-[Pełna dokumentacja web3js](http://web3js.readthedocs.io/)
-
-Oto kilka przydatnych obiektów udostępnianych przez ten interfejs API. Dostęp do nich można uzyskać, wpisując je w konsoli JavaScript.
-
-- `eth.syncing` zwraca obiekt, jeśli twój węzeł rozpoczął, ale nie zakończył synchronizacji bloku, lub wartość `false`, jeśli zakończył synchronizację lub nie został uruchomiony. Jeśli węzeł nadal się synchronizuje, `eth.syncing` poinformuje Cię o ostatnim numerze bloku, którego dane otrzymałeś, a także o całkowitej liczbie bloków w bieżącym łańcuchu bloków.
-- `net.peerCount` zwraca liczbę peerów, z którymi jesteś połączony. Jeśli jest to 0, prawdopodobnie będziesz musiał poczekać kilka minut lub zacząć szukać rozwiązań w Google (może to być zapora sieciowa, problem z siecią lub coś innego).
-- `admin.peers` da Ci listę wszystkich peerów z którymi Twój węzeł jest podłączony. Jeśli to jest puste, twój węzeł nie jest połączony z żadnymi innymi peerami.
-
-Możemy również użyć web3js do inicjowania kont, pisania i wysyłania żądań transakcji do sieci, sprawdzania sald kont i metadanych i nie tylko. Omówimy te operacje w dalszej części; na razie spróbuj uruchomić następujące polecenie, aby sprawdzić saldo jednego z moich kont w sieci testowej Ropsten:
-
-```js
-eth.getBalance('0x85d918c2B7F172d033D190152AEc58709Fb6D048')
-# returns 1059286000000000000 as of 11-18-2018. Ta wartość jest podana w "Wei".
-# Jedno Wei jest nominałem, który jest równoważny 10^-18 ether.
-# Saldo tego konta w ether wynosi około 1,059 eth.
-```
-
-## Zatrzymywanie i ponowne uruchamianie węzła {#stopping-and-restarting-your-node}
-
-Możesz zatrzymać swój węzeł w każdej chwili. Jeśli chcesz zrestartować węzeł, ponowna synchronizacja Geth zajmie kilka sekund lub minut (pobranie bloków i/lub nagłówków bloków od miejsca, w którym zostało przerwane, gdy węzeł ostatnio przestał działać). Jeśli którakolwiek z powyższych instrukcji nie działa, pierwszą rzeczą, którą powinieneś zrobić, to spróbować zrestartować swój węzeł.
-
-Jeśli jesteś zainteresowany uruchomieniem pełnego węzła Ethereum, najlepiej jest to zrobić z dedykowanej maszyny z dobrą łącznością sieciową, a nie z komputera osobistego. Oto przewodnik do uruchomienia węzła z AWS (jest to trochę przestarzałe, a AMI nie są już aktualne lub dostępne, abyś musiał zrobić trochę Googling): [Jak uruchomić węzeł na AWS](https://medium.com/mercuryprotocol/how-to-run-an-ethereum-node-on-aws-a8774ed3acf6)
diff --git a/public/content/translations/pl/developers/tutorials/waffle-dynamic-mocking-and-testing-calls/index.md b/public/content/translations/pl/developers/tutorials/waffle-dynamic-mocking-and-testing-calls/index.md
index 01f72c61d62..f9dbf6311b5 100644
--- a/public/content/translations/pl/developers/tutorials/waffle-dynamic-mocking-and-testing-calls/index.md
+++ b/public/content/translations/pl/developers/tutorials/waffle-dynamic-mocking-and-testing-calls/index.md
@@ -294,4 +294,4 @@ Kod źródłowy dla tego samouczka można znaleźć [tutaj](https://github.com/E
Samouczki mogą być interesujące:
-- [Testowanie inteligentnych kontraktów z Waffle](/developers/tutorials/testing-smart-contract-with-waffle/)
+- [Testowanie inteligentnych kontraktów z Waffle](/developers/tutorials/waffle-test-simple-smart-contract/)
diff --git a/public/content/translations/pl/enterprise/index.md b/public/content/translations/pl/enterprise/index.md
index 467380b3754..0032cc56410 100644
--- a/public/content/translations/pl/enterprise/index.md
+++ b/public/content/translations/pl/enterprise/index.md
@@ -24,7 +24,7 @@ Wiele firm i konsorcjów wdrożyło prywatne, autoryzowane łańcuchy bloków dl
### Kluczowe różnice {#key-differences}
- Bezpieczeństwo/niezmienność blockchainu — odporność blockchainu na manipulacje jest określana przez jego algorytm konsensusu. Sieć główna Ethereum jest zabezpieczona przez interakcję tysięcy niezależnych węzłów prowadzonych przez osoby fizyczne i górników na całym świecie. Łańcuchy prywatne zazwyczaj mają niewielką liczbę węzłów, które są kontrolowane przez jedną lub kilka organizacji; te węzły mogą być ściśle kontrolowane, ale przepisanie łańcucha lub dokonanie oszukańczych transakcji wymaga naruszenia tylko kilku z nich.
-- Wydajność — ponieważ prywatne sieci Enterprise Ethereum mogą używać węzłów o wysokiej wydajności ze specjalnymi wymaganiami sprzętowymi i różnymi algorytmami konsensusu, takimi jak proof-of-authority, mogą osiągnąć wyższą przepustowość transakcji w warstwie podstawowej (Warstwa 1). W sieci głównej Ethereum wysoką przepustowość można osiągnąć przy użyciu [rozwiązań skalowania warstwy 2](/developers/docs/layer-2-scaling/).
+- Wydajność — ponieważ prywatne sieci Enterprise Ethereum mogą używać węzłów o wysokiej wydajności ze specjalnymi wymaganiami sprzętowymi i różnymi algorytmami konsensusu, takimi jak proof-of-authority, mogą osiągnąć wyższą przepustowość transakcji w warstwie podstawowej (Warstwa 1). W sieci głównej Ethereum wysoką przepustowość można osiągnąć przy użyciu [rozwiązań skalowania warstwy 2](/developers/docs/scaling/).
- Koszt — koszt obsługi sieci prywatnej odzwierciedla się przede wszystkim w pracy związanej z konfiguracją sieci i zarządzaniem nią oraz serwerami do jej obsługi. Chociaż połączenie z siecią główną Ethereum nie wiąże się z żadnymi kosztami, każda transakcja wiąże się z opłatą za gaz, za którą należy zapłacić Ethereum. Przekaźniki transakcyjne (znane również jako stacje gazu) są opracowywane w celu wyeliminowania potrzeby, aby użytkownicy końcowi, a nawet przedsiębiorstwa, bezpośrednio wykorzystywali Ether w swoich transakcjach. Niektóre [analizy](https://github.com/EYBlockchain/fundamental-cost-of-ownership/blob/master/EY%20Total%20Cost%20of%20Ownership%20for%20Blockchain%20Solutions.pdf) wykazały, że całkowity koszt obsługi aplikacji może być niższy w sieci głównej niż w przypadku uruchomienia prywatnego łancucha.
- Zezwalanie na węzły — tylko autoryzowane węzły mogą dołączać do łańcuchów prywatnych. Każdy może skonfigurować węzeł w sieci głównej Ethereum.
- Prywatność — dostęp do danych zapisanych w prywatnych łańcuchach można kontrolować, ograniczając dostęp do sieci, a także w bardziej szczegółowy sposób za pomocą kontroli dostępu i transakcji prywatnych. Wszystkie dane zapisane w warstwie 1 sieci mainnet są widoczne dla każdego, więc poufne informacje powinny być przechowywane i przesyłane poza łańcuchem lub szyfrowane. Pojawiają się wzorce projektowe, które to ułatwiają (np. Baseline, Aztec), a także rozwiązania warstwy 2, które mogą utrzymywać dane w podziale i poza warstwą 1.
@@ -33,7 +33,7 @@ Wiele firm i konsorcjów wdrożyło prywatne, autoryzowane łańcuchy bloków dl
Przedsiębiorstwa eksperymentują z technologią blockchain od około 2016 roku, kiedy uruchomiono projekty Hyperledger, Quorum i Corda. Skupiono się w dużej mierze na blockchainach przedsiębiorstw posiadających zezwolenie prywatne, Jednakże począwszy od 2019 r. nastąpiła zmiana w myśleniu o publicznych i prywatnych blockchainach dla aplikacji biznesowych. [Ankieta](https://assets.ey.com/content/dam/ey-sites/ey-com/en_gl/topics/blockchain/ey-public-blockchain-opportunity-snapshot.pdf) przeprowadzona przez firmę Forrester ujawniła, że „respondenci ankiety… widzą ten potencjał, przy czym 75% deklaruje, że prawdopodobnie będą korzystać z publicznych blockchainów w przyszłości, a prawie jedna trzecia twierdzi, że jest to bardzo prawdopodobne”. Paul Brody z EY [rozmawiał](https://www.youtube.com/watch?v=-ycu5vGDdZw&feature=youtu.be&t=3668) o korzyściach z budowania na publicznym blockchainie, które (w zależności od aplikacji) mogą obejmować silniejsze zabezpieczenia/niezmienność, przejrzystość, niższy całkowity koszt posiadania oraz możliwość współdziałania ze wszystkimi innymi aplikacjami, które również znajdują się w sieci głównej (efekty sieciowe). Dzielenie się wspólnymi punktami odniesienia między firmami pozwala uniknąć niepotrzebnego tworzenia wielu odizolowanych silosów, które nie mogą się komunikować i udostępniać lub synchronizować między sobą informacji.
-Kolejnym osiągnięciem, które przenosi nacisk na publiczne blockchainy, jest [Warstwa 2](/developers/docs/layer-2-scaling/). Warstwa 2 to przede wszystkim kategoria technologii skalowalności, która umożliwia stosowanie aplikacji o wysokiej przepustowości w publicznych łańcuchach. Ale rozwiązania warstwy 2 mogą również [ umożliwić uporanie się z innymi problemami, które w przeszłości skłoniły deweloperów przedsiębiorstw do wyboru sieci prywatnych](https://entethalliance.org/how-ethereum-layer-2-scaling-solutions-address-barriers-to-enterprises-building-on-mainnet/).
+Kolejnym osiągnięciem, które przenosi nacisk na publiczne blockchainy, jest [Warstwa 2](/developers/docs/scaling/). Warstwa 2 to przede wszystkim kategoria technologii skalowalności, która umożliwia stosowanie aplikacji o wysokiej przepustowości w publicznych łańcuchach. Ale rozwiązania warstwy 2 mogą również [ umożliwić uporanie się z innymi problemami, które w przeszłości skłoniły deweloperów przedsiębiorstw do wyboru sieci prywatnych](https://entethalliance.org/how-ethereum-layer-2-scaling-solutions-address-barriers-to-enterprises-building-on-mainnet/).
Baseline Protocol to jeden z kluczowych projektów, który definiuje protokół umożliwiający poufną i złożoną współpracę między przedsiębiorstwami bez pozostawiania żadnych poufnych danych w łańcuchu. W ciągu 2020 r. nabrał istotnego [rozpędu](https://www.oasis-open.org/news/pr/baseline-protocol-achieves-key-milestone-with-release-of-v0-1-implementation-for-enterprise-).
@@ -51,7 +51,7 @@ Różne organizacje podjęły pewne wspólne działania, aby uczynić Ethereum p
- [Alchemia](https://alchemyapi.io/) _dostarcza usługi API i narzędzia do budowania i monitorowania aplikacji w Ethereum_
- [Blockapps](https://blockapps.net/) _implementation of the Enterprise Ethereum protocol, tooling and APIs that form the STRATO platform_
-- [ConsenSys](https://consensys.net/) _zapewnia szereg produktów i narzędzi do budowania na Ethereum, a także doradztwo i niestandardowe usługi programistyczne _
+- [ConsenSys](https://consensys.io/) _zapewnia szereg produktów i narzędzi do budowania na Ethereum, a także doradztwo i niestandardowe usługi programistyczne _
- [Envision Blockchain](https://envisionblockchain.com/) _zapewnia usługi konsultingowe i programistyczne zorientowane na przedsiębiorstwa, specjalizujące się w sieciach głównych Ethereum_
- [EY OpsChain](https://blockchain.ey.com/products/contract-manager) _zapewnia przepływ pracy poprzez wystawianie zapytań ofertowych, umów, zamówień zakupu i faktury w Twojej sieci zaufanych partnerów biznesowych_
- [Hyperledger Besu](https://www.hyperledger.org/use/besu) _ukierunkowany na przedsiębiorstwa klient Ethereum typu open source opracowany na licencji Apache 2.0 i napisany w Javie_
@@ -70,7 +70,7 @@ Różne organizacje podjęły pewne wspólne działania, aby uczynić Ethereum p
### Rozwiązania skalowalne {#scalability-solutions}
-[Warstwa 2](/developers/docs/layer-2-scaling/) to zestaw technologii lub systemów, które działają na wierzchu Ethereum (Warstwa 1), dziedziczą właściwości zabezpieczeń z warstwy 1 i zapewniają większą wydajność przetwarzania transakcji (przepustowość), niższe opłaty transakcyjne (koszty operacyjne) i szybsze potwierdzenia transakcji niż warstwa 1. Rozwiązania skalowania warstwy 2 są zabezpieczone przez warstwę 1, ale umożliwiają aplikacjom łańcucha bloków obsługę znacznie większej liczby użytkowników, działań lub danych, niż może pomieścić warstwa 1. Wiele z nich wykorzystuje najnowsze postępy w kryptografii i dowody zerowej wiedzy (ZK), aby zmaksymalizować wydajność i bezpieczeństwo.
+[Warstwa 2](/developers/docs/scaling/) to zestaw technologii lub systemów, które działają na wierzchu Ethereum (Warstwa 1), dziedziczą właściwości zabezpieczeń z warstwy 1 i zapewniają większą wydajność przetwarzania transakcji (przepustowość), niższe opłaty transakcyjne (koszty operacyjne) i szybsze potwierdzenia transakcji niż warstwa 1. Rozwiązania skalowania warstwy 2 są zabezpieczone przez warstwę 1, ale umożliwiają aplikacjom łańcucha bloków obsługę znacznie większej liczby użytkowników, działań lub danych, niż może pomieścić warstwa 1. Wiele z nich wykorzystuje najnowsze postępy w kryptografii i dowody zerowej wiedzy (ZK), aby zmaksymalizować wydajność i bezpieczeństwo.
Zbudowanie aplikacji na bazie rozwiązania skalowalności warstwy 2 może pomóc [rozwiązuje wiele problemów, które wcześniej skłaniały firmy do budowania na prywatnych blockchainach](https://entethalliance.org/how-ethereum-layer-2-scaling-solutions-address-barriers-to-enterprises-building-on-mainnet/), zachowując jednak korzyści płynące z budowania na sieci głównej.
@@ -126,14 +126,12 @@ Oto niektóre aplikacje dla przedsiębiorstw, które zostały wdrożone w public
### Notarialne poświadczenie danych {#notarization-of-data}
- [BBVA](https://www.ledgerinsights.com/bbva-blockchain-loan-banking-tech-award/) _szczegóły sfinalizowanych pożyczek są zhaszowane i zarejestrowane w sieci głównej_
-- [Splunk](https://www.splunk.com/en_us/blog/security/the-newest-data-attack.html) _integralność danych może być zapewnione przez okresowe zapisywanie hashów zindeksowanych danych do sieci głównej_
- [ANSA](https://cointelegraph.com/news/italys-top-news-agency-uses-blockchain-to-fight-fake-coronavirus-news) _największa włoska agencja informacyjna walcząca z fałszywymi wiadomościami i umożliwiająca odbiorcom weryfikację pochodzenia wiadomości poprzez rejestrowanie ich w sieci głównej_
- [Verizon](https://decrypt.co/46745/verizon-news-press-releases-ethereum-full-transparency) _rejestruje informacje prasowe dotyczące Ethereum, aby zapewnić odpowiedzialność i zaufanie korporacyjne_
- [Breitling](https://www.coindesk.com/breitling-arianee-all-new-watches-ethereum) _rejestruje pochodzenie i historie napraw zegarków w Ethereum_
### Łańcuch dostaw {#supply-chain}
-- [CargoX](https://cargox.io/press-releases/full/cargox-becomes-first-public-blockchain-ethereum-bill-lading-provider-approved-international-group-pi-clubs) _dostawca listu przewozowego i transferu dokumentów_
- [Morpheus.network](https://morpheus.network/) _platforma automatyzacji łańcucha dostaw, która implementuje hybrydę prywatnych łańcuchów z danymi poświadczonymi notarialnie w sieci głównej Ethereum, i jest używany przez firmy takie jak kanadyjski dystrybutor żywności, ropy i gazu Federated Co-op Ltd. i argentyński dostawca karmy dla zwierząt Vitalcan_
- [Minespider](https://www.minespider.com/) _śledzenie łańcucha dostaw_
- [ShipChain](https://shipchain.io) _publiczny łańcuch boczny Ethereum i system korporacyjny zapewniający widoczność i zaufanie łańcucha dostaw, zwłaszcza w przypadku logistyki multimodalnej_
diff --git a/public/content/translations/pl/enterprise/private-ethereum/index.md b/public/content/translations/pl/enterprise/private-ethereum/index.md
index c4ec66eeb29..da743da156c 100644
--- a/public/content/translations/pl/enterprise/private-ethereum/index.md
+++ b/public/content/translations/pl/enterprise/private-ethereum/index.md
@@ -24,4 +24,3 @@ Niektóre organizacje podjęły współpracę, aby uczynić Ethereum bardziej pr
- [Hyperledger Besu](https://www.hyperledger.org/use/besu) klient open-source Ethereum opracowany na licencji Apache 2.0 i napisany w Java, która zawiera kilka algorytmów konsensusu, w tym PoW i PoA (IBFT, IBFT 2.0, Etherhash i Clique). Jego kompleksowe schematy uprawnień zostały zaprojektowane specjalnie do użytku w środowisku konsorcjum.
- [Hyperledger Burrow](https://www.hyperledger.org/projects/hyperledger-burrow) _modułowy klient blockchain z licencjonowanym interpreterem kontraktów inteligentnych, częściowo opracowanym pod kątem specyfikacji maszyny wirtualnej Ethereum (EVM)_
- [Kaleido](https://kaleido.io/) _platforma typu full-stack do tworzenia i obsługi hybrydowych ekosystemów korporacyjnych w różnych chmurach_
-- [Quorum](https://consensys.net/quorum/) _oparta na Ethereum platforma open source blockchain dla przedsiębiorstw z zaawansowanymi funkcjami klasy korporacyjnej zapewniającymi prywatność, przydzielanie uprawnień i wydajność_
diff --git a/public/content/translations/pl/roadmap/beacon-chain/index.md b/public/content/translations/pl/roadmap/beacon-chain/index.md
index 8ced95ba2b5..1233d3115af 100644
--- a/public/content/translations/pl/roadmap/beacon-chain/index.md
+++ b/public/content/translations/pl/roadmap/beacon-chain/index.md
@@ -32,7 +32,7 @@ Wprowadził on mechanizm konsensusu (lub „warstwę konsensusu”), który zaj
Łańcuch śledzący wprowadził do Ethereum mechanizm [proof-of-stake](/developers/docs/consensus-mechanisms/pos/). Zapewnia to bezpieczeństwo Ethereum i daje walidatorom więcej ETH w tym procesie. W praktyce staking polega na stakowaniu ETH w celu aktywowania oprogramowania walidatora. Jako staker używasz oprogramowania, które tworzy i waliduje nowe bloki w łańcuchu.
-Staking służy podobnym celom, co kiedyś [wydobywanie](/developers/docs/mining/), ale różni się pod wieloma względami. Wydobywanie wymagało dużych nakładów początkowych w postaci potężnego sprzętu i zużycia energii, co skutkowało ekonomią skali i sprzyjało centralizacji. Wydobywanie nie wiązało się również z wymogiem blokowania aktywów jako zabezpieczenia, co ograniczało możliwości protokołu w zakresie karania wrogich podmiotów po ataku.
+Staking służy podobnym celom, co kiedyś [wydobywanie](/developers/docs/consensus-mechanisms/pow/mining/), ale różni się pod wieloma względami. Wydobywanie wymagało dużych nakładów początkowych w postaci potężnego sprzętu i zużycia energii, co skutkowało ekonomią skali i sprzyjało centralizacji. Wydobywanie nie wiązało się również z wymogiem blokowania aktywów jako zabezpieczenia, co ograniczało możliwości protokołu w zakresie karania wrogich podmiotów po ataku.
Przejście na proof-of-stake sprawiło, że sieć Ethereum stała się znacznie bezpieczniejsza i zdecentralizowana w porównaniu z proof-of-work. Im więcej osób uczestniczy w sieci, tym staje się ona bardziej zdecentralizowana i lepiej zabezpieczona przed atakami.
diff --git a/public/content/translations/pl/roadmap/merge/index.md b/public/content/translations/pl/roadmap/merge/index.md
index fa1a0f771c9..43d2e4ec6f8 100644
--- a/public/content/translations/pl/roadmap/merge/index.md
+++ b/public/content/translations/pl/roadmap/merge/index.md
@@ -135,7 +135,7 @@ title="Błędne przekonanie: „w wyniku fuzji nie udało się obniżyć opłat
contentPreview="False. The Merge was a change of consensus mechanism, not an expansion of network capacity, and was never intended to lower gas fees.">
Opłaty za gaz są wypadkową zapotrzebowania na sieć i jej przepustowości. W wyniku Połączenia zrezygnowano z mechanizmu proof-of-work, przechodząc na mechanizm konsensusu proof-of-stake, ale nie zmieniono znacząco żadnych parametrów, które bezpośrednio wpływają na przepustowość sieci.
-W ramach [planu działania skoncentrowanego na pakietach zbiorczych](https://ethereum-magicians.org/t/a-rollup-centric-ethereum-roadmap/4698) wysiłki koncentrują się na zwiększeniu aktywności użytkowników w [warstwie 2](/warstwa-2/), przy jednoczesnym umożliwieniu działania sieci głównej w warstwie 1 jako bezpiecznej, zdecentralizowanej warstwy rozliczenia, zoptymalizowanej do przechowywania danych pakietów zbiorczych, co pomoże uczynić transakcje na pakietach zbiorczych wykładniczo tańszymi. Przejście na proof-of-stake jest kluczowym prekursorem realizacji tego celu. [Więcej o gazie i opłatach](/developers/docs/gas/)
+W ramach [planu działania skoncentrowanego na pakietach zbiorczych](https://ethereum-magicians.org/t/a-rollup-centric-ethereum-roadmap/4698) wysiłki koncentrują się na zwiększeniu aktywności użytkowników w [warstwie 2](/layer-2/), przy jednoczesnym umożliwieniu działania sieci głównej w warstwie 1 jako bezpiecznej, zdecentralizowanej warstwy rozliczenia, zoptymalizowanej do przechowywania danych pakietów zbiorczych, co pomoże uczynić transakcje na pakietach zbiorczych wykładniczo tańszymi. Przejście na proof-of-stake jest kluczowym prekursorem realizacji tego celu. [Więcej o gazie i opłatach](/developers/docs/gas/)
+
Ver aplicativos DeFi
@@ -65,7 +65,7 @@ Isso soa estranho... "Por que eu gostaria de programar meu dinheiro"? No entanto
Explore nossas sugestões de aplicativos DeFi para iniciar se você é novo no Ethereum.
-
+
Ver aplicativos DeFi
@@ -92,7 +92,7 @@ Há uma alternativa descentralizada para a maioria dos serviços financeiros. Ma
Como um blockchain, o Ethereum foi concebido para o envio de transações de forma segura e de modo global. Assim como o Bitcoin, o Ethereum torna o envio de dinheiro ao redor do mundo tão fácil quanto enviar um e-mail. Basta digitar o nome do seu beneficiário [nome ENS](/nft/#nft-domains) (como bob.eth) ou o endereço de conta da respectiva carteira e seu pagamento será enviado em minutos (normalmente). Para enviar ou receber pagamentos, você precisará de uma [carteira](/wallets/).
-
+
Ver dapps de pagamento
@@ -123,7 +123,7 @@ Empréstimos de recursos de fornecedores descentralizados se dão de duas formas
- Ponto a ponto, quando um mutuário pede emprestado diretamente de um mutuante específico.
- Pool de fundos, onde credores fornecem fundos (liquidez) a um pool do qual os mutuários podem tomar empréstimo.
-
+
Ver dapps de empréstimos
@@ -183,7 +183,7 @@ Você pode ganhar juros sobre suas criptomoedas emprestando-as e vendo seus fund
- Seu aDai aumentará com base nas taxas de juros e você poderá ver o saldo crescendo na sua carteira. Dependendo da APR (taxa percentual anual), seu saldo em carteira irá mostrar algo como 100.1234 após alguns dias ou até mesmo horas!
- Você pode retirar uma quantidade de Dai regular, igual ao seu saldo em aDai, a qualquer momento.
-
+
Ver dapps de empréstimos
@@ -211,7 +211,7 @@ Existem milhares de tokens no Ethereum. Exchanges descentralizadas (DEXs) permit
Por exemplo, se você quiser usar a loteria sem perda PoolTogether (descrita acima), você precisará de um token como Dai ou USDC. Estas DEXs permitem que você troque seus ETH por esses tokens e reverta novamente quando terminar.
-
+
Exibir exchanges de token
@@ -223,7 +223,7 @@ Existem opções mais avançadas para traders que gostam de um pouco mais de con
Quando você usa uma exchange centralizada, tem que depositar seus ativos antes da negociação e confiar a ela o cuidado dos ativos. Embora seus ativos estejam depositados, eles estão em risco, uma vez que as exchanges centralizadas são alvos atraentes para os hackers.
-
+
Ver dapps de trading
@@ -235,7 +235,7 @@ Existem produtos de gestão de fundos na Ethereum que tentarão aumentar a sua c
Um bom exemplo é o [fundo DeFi Pulse Index (DPI)](https://defipulse.com/blog/defi-pulse-index/). Esse é um fundo com balanceamento automático, de forma a garantir que o seu portfólio sempre inclua [os principais tokens de DeFi por capitalização de mercado](https://www.coingecko.com/en/defi). Nunca é necessário gerenciar nenhum dos detalhes e é possível sacar do fundo sempre que quiser.
-
+
Ver dapps de investimento
@@ -249,7 +249,7 @@ Ethereum é uma plataforma ideal para financiamento colaborativo:
- É transparente para que os captadores de recursos possam provar quanto dinheiro foi levantado. Você pode até rastrear como os fundos estão sendo gastos posteriormente.
- Os captadores de recursos podem criar reembolsos automáticos se, por exemplo, houver um prazo específico e um montante mínimo que não seja cumprido.
-
+
Ver dapps de captação de recursos
@@ -276,7 +276,7 @@ Seguros descentralizados visam tornar o seguro mais barato, mais rápido para pa
Os produtos Ethereum, como qualquer software, estão propensos a bugs e exploits. Então, atualmente, muitos produtos na área de seguros visam proteger seus usuários contra a perda de fundos. Entretanto, há projetos que estão começando a criar cobertura para tudo o que a vida pode nos oferecer. Um bom exemplo disto é a cobertura para o cultivo do Etherisc, que visa [proteger os pequenos agricultores do Quênia contra secas e inundações](https://blog.etherisc.com/etherisc-teams-up-with-chainlink-to-deliver-crop-insurance-in-kenya-137e433c29dc). Um seguro descentralizado pode proporcionar cobertura mais barata aos agricultores que são frequentemente deixados de fora do seguro tradicional.
-
+
Ver dapps de seguros
@@ -286,7 +286,7 @@ Os produtos Ethereum, como qualquer software, estão propensos a bugs e exploits
Com tanta coisa acontecendo, você precisará de uma maneira de acompanhar todos os seus investimentos, empréstimos e operações. Há uma série de produtos que permitem coordenar todas as atividades DeFi de um só lugar. Esta é a beleza da arquitetura aberta do DeFi. Equipes podem construir interfaces onde você não somente vê os saldos entre produtos, mas também pode usar os recursos correspondentes. Você vai achar isso útil enquanto aprende mais sobre DeFi.
-
+
Ver dapps de portfolio
diff --git a/public/content/translations/pt-br/desci/index.md b/public/content/translations/pt-br/desci/index.md
index 4c3b119490f..aed2f22bf77 100644
--- a/public/content/translations/pt-br/desci/index.md
+++ b/public/content/translations/pt-br/desci/index.md
@@ -68,7 +68,7 @@ O modelo padrão atual para o financiamento da ciência é que indivíduos ou gr
Estudos mostraram que os painéis de revisão de bolsas fazem um trabalho ruim na seleção de propostas de alta qualidade, pois as mesmas propostas apresentadas a diferentes painéis têm resultados totalmente diferentes. Como o financiamento se tornou mais escasso, ele se concentrou em um grupo menor de pesquisadores mais experientes com projetos mais intelectualmente conservadores. O efeito criou um cenário de financiamento hipercompetitivo, entrincheirando incentivos perversos e asfixiando a inovação.
-A Web3 tem o potencial de interromper este modelo de financiamento quebrado, experimentando diferentes modelos de incentivo desenvolvidos pelos DAOs e Web3 mais amplos. [Financiamento retroativo de bens públicos](https://medium.com/ethereum-optimism/retroactive-public-goods-funding-33c9b7d00f0c), [financiamento quadrático](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2003531), [governança DAO](https://www.antler.co/blog/daos-and-web3-governance) e [estruturas de incentivo tokenizadas](https://cdixon.org/2017/05/27/crypto-tokens-a-breakthrough-in-open-network-design) são algumas das ferramentas Web3 que podem revolucionar o financiamento da ciência.
+A Web3 tem o potencial de interromper este modelo de financiamento quebrado, experimentando diferentes modelos de incentivo desenvolvidos pelos DAOs e Web3 mais amplos. [Financiamento retroativo de bens públicos](https://medium.com/ethereum-optimism/retroactive-public-goods-funding-33c9b7d00f0c), [financiamento quadrático](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2003531), [governança DAO](https://www.antler.co/blog/daos-and-web3-governance-the-promise-implications-and-challenges-ahead) e [estruturas de incentivo tokenizadas](https://cdixon.org/2017/05/27/crypto-tokens-a-breakthrough-in-open-network-design) são algumas das ferramentas Web3 que podem revolucionar o financiamento da ciência.
### Propriedade e desenvolvimento de IP {#ip-ownership}
diff --git a/public/content/translations/pt-br/developers/docs/consensus-mechanisms/pow/mining-algorithms/dagger-hashamoto/index.md b/public/content/translations/pt-br/developers/docs/consensus-mechanisms/pow/mining-algorithms/dagger-hashamoto/index.md
deleted file mode 100644
index 3f5b0428f79..00000000000
--- a/public/content/translations/pt-br/developers/docs/consensus-mechanisms/pow/mining-algorithms/dagger-hashamoto/index.md
+++ /dev/null
@@ -1,334 +0,0 @@
----
-title: Dagger-Hashimoto
-description: O algoritmo Dagger-Hashimoto em detalhes
-lang: pt-br
----
-
-Dagger-Hashimoto foi a implementação original de pesquisa e especificação para o algoritmo de mineração do Ethereum. Dagger-Hashimoto foi substituído por [Ethash](#ethash). A mineração foi completamente desligada na [Fusão](/updates/merge) no dia 15 de setembro de 2022. Desde então, o Ethereum foi protegido usando um mecanismo [prova de participação](/developers/docs/consensus-mechanisms/pos). Esta página é para fins históricos. As informações aqui não são mais relevantes para o Ethereum posterior à Fusão.
-
-## Pré-Requisitos {#prerequisites}
-
-Para melhor entender esta página, recomendamos que você leia primeiro o[ consenso de prova de trabalho, ](/developers/docs/consensus-mechanisms/pow)[mineração](/developers/docs/consensus-mechanisms/pow/mining) e [algoritmos de mineração](/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms).
-
-## Dagger-Hashimoto {#dagger-hashimoto}
-
-Dagger-Hashimoto pretende satisfazer dois objetivos:
-
-1. **Resistência a ASIC**: o benefício de criar hardware especializado para o algoritmo deve ser o menor possível.
-2. **Cliente leve verificável**: um bloco deve ser verificável eficientemente por um cliente leve.
-
-Com uma modificação adicional, também especificamos como atingir um terceiro objetivo se desejado, mas à custa de uma complexidade adicional:
-
-**Armazenamento completo da cadeia**: a mineração deveria exigir o armazenamento do estado completo da blockchain (devido à estrutura irregular da árvore de estado Ethereum, esperamos que haja um pouco de perda, especialmente de alguns contratos muitas vezes usados, mas queremos minimizar isso).
-
-## Geração do DAG {#dag-generation}
-
-O código do algoritmo será definido em Python abaixo. Primeiro, damos `encode_int` para combinar inteiros sem sinal de precisão especificada em strings. Sua inversa também é dada:
-
-```python
-NUM_BITS = 512
-
-def encode_int(x):
- "Encode an integer x as a string of 64 characters using a big-endian scheme"
- o = ''
- for _ in range(NUM_BITS / 8):
- o = chr(x % 256) + o
- x //= 256
- return o
-
-def decode_int(s):
- "Unencode an integer x from a string using a big-endian scheme"
- x = 0
- for c in s:
- x *= 256
- x += ord(c)
- return x
-```
-
-Em seguida assumimos que `sha3` é uma função que recebe um inteiro e retorna um inteiro, e `dbl_sha3` é uma função double-sha3, se converter este código de referência em uma implementação de uso:
-
-```python
-from pyethereum import utils
-def sha3(x):
- if isinstance(x, (int, long)):
- x = encode_int(x)
- return decode_int(utils.sha3(x))
-
-def dbl_sha3(x):
- if isinstance(x, (int, long)):
- x = encode_int(x)
- return decode_int(utils.sha3(utils.sha3(x)))
-```
-
-### Parâmetros {#parameters}
-
-Os parâmetros usados para o algoritmo são:
-
-```python
-SAFE_PRIME_512 = 2**512 - 38117 # Largest Safe Prime less than 2**512
-
-params = {
- "n": 4000055296 * 8 // NUM_BITS, # Size of the dataset (4 Gigabytes); MUST BE MULTIPLE OF 65536
- "n_inc": 65536, # Increment in value of n per period; MUST BE MULTIPLE OF 65536
- # with epochtime=20000 gives 882 MB growth per year
- "cache_size": 2500, # Size of the light client's cache (can be chosen by light
- # client; not part of the algo spec)
- "diff": 2**14, # Difficulty (adjusted during block evaluation)
- "epochtime": 100000, # Length of an epoch in blocks (how often the dataset is updated)
- "k": 1, # Number of parents of a node
- "w": w, # Used for modular exponentiation hashing
- "accesses": 200, # Number of dataset accesses during hashimoto
- "P": SAFE_PRIME_512 # Safe Prime for hashing and random number generation
-}
-```
-
-`P` neste caso é uma primeira escolha tal que `log(P)` é apenas ligeiramente menor que 512, que corresponde aos 512 bits que temos usado para representar nossos números. Observe que apenas a última metade do DAG precisa realmente ser armazenado, assim o requisito de RAM de-facto começa em 1 GB e cresce 441 MB por ano.
-
-### Construção de gráfico Dagger {#dagger-graph-building}
-
-A construção primitiva de gráfico dagger é definida da seguinte forma:
-
-```python
-def produce_dag(params, seed, length):
- P = params["P"]
- picker = init = pow(sha3(seed), params["w"], P)
- o = [init]
- for i in range(1, length):
- x = picker = (picker * init) % P
- for _ in range(params["k"]):
- x ^= o[x % i]
- o.append(pow(x, params["w"], P))
- return o
-```
-
-Essencialmente, ele começa um gráfico como um único nó, `sha3(seed)`, e de lá começa a adicionar sequencialmente outros nós com base em nós aleatórios anteriores. Quando um novo nó é criado, uma potência modular da semente é computada para aleatoriamente selecionar alguns índices menores que `i` (usando `x % i` acima), e os valores dos nós desses índices são usados em um cálculo para gerar um novo valor para `x`, que é então alimentada em uma pequena função de prova de trabalho (baseada em XOR) para finalmente gerar o valor do gráfico no índice `i`. A lógica por trás deste design específico é forçar o acesso sequencial do DAG; o próximo valor do DAG que será acessado não pode ser determinado até que o valor atual seja conhecido. Finalmente, a exponenciação modular faz o hash do resultado ainda mais.
-
-Este algoritmo depende de vários resultados da teoria numérica. Veja o apêndice abaixo para uma discussão.
-
-## Avaliação de cliente leve {#light-client-evaluation}
-
-A construção do gráfico acima pretende permitir que cada nó no gráfico seja reconstruído computando uma subárvore com apenas um pequeno número de nós e exigindo uma pequena quantidade de memória auxiliar. Note que com k=1, a subárvore é apenas uma cadeia de valores que vai subindo até o primeiro elemento do DAG.
-
-A função de computação do cliente leve para o DAG funciona da seguinte forma:
-
-```python
-def quick_calc(params, seed, p):
- w, P = params["w"], params["P"]
- cache = {}
-
- def quick_calc_cached(p):
- if p in cache:
- pass
- elif p == 0:
- cache[p] = pow(sha3(seed), w, P)
- else:
- x = pow(sha3(seed), (p + 1) * w, P)
- for _ in range(params["k"]):
- x ^= quick_calc_cached(x % p)
- cache[p] = pow(x, w, P)
- return cache[p]
-
- return quick_calc_cached(p)
-```
-
-Essencialmente, é simplesmente uma reescrita do algoritmo acima que remove o loop de computação dos valores de todo o DAG e substitui a pesquisa anterior de nó por uma chamada recursiva ou uma pesquisa de cache. Observe que para `k=1` o cache é desnecessário, embora uma otimização maior na verdade pré-calcula os primeiros poucos milhares de valores do DAG e o mantém como um cache estático para computações; ver o apêndice para uma implementação de código disso.
-
-## Buffer duplo de DAGs {#double-buffer}
-
-Em um cliente completo, é usado um [_buffer duplo_](https://wikipedia.org/wiki/Multiple_buffering) de 2 DAGs produzidos pela fórmula acima. A ideia é que DAGs são produzidos a cada `epochtime` número de blocos de acordo com os parâmetros acima. Em vez do cliente usar o último DAG produzido, ele usa o anterior. A vantagem disto é permitir que os DAG sejam substituídos com o passar do tempo, sem necessidade de incorporar um passo em que os mineradores devem, de repente, recriar todos os dados. Caso contrário, existe o potencial para um abrandamento abrupto temporário do processamento da cadeia a intervalos regulares e um aumento dramático da centralização. Assim, existe o risco de ataques de 51% dentro desses poucos minutos antes de todos os dados serem recomputados.
-
-O algoritmo usado para gerar o conjunto de DAGs usados para computar o trabalho de um bloco é o seguinte:
-
-```python
-def get_prevhash(n):
- from pyethereum.blocks import GENESIS_PREVHASH
- from pyethereum import chain_manager
- if num <= 0:
- return hash_to_int(GENESIS_PREVHASH)
- else:
- prevhash = chain_manager.index.get_block_by_number(n - 1)
- return decode_int(prevhash)
-
-def get_seedset(params, block):
- seedset = {}
- seedset["back_number"] = block.number - (block.number % params["epochtime"])
- seedset["back_hash"] = get_prevhash(seedset["back_number"])
- seedset["front_number"] = max(seedset["back_number"] - params["epochtime"], 0)
- seedset["front_hash"] = get_prevhash(seedset["front_number"])
- return seedset
-
-def get_dagsize(params, block):
- return params["n"] + (block.number // params["epochtime"]) * params["n_inc"]
-
-def get_daggerset(params, block):
- dagsz = get_dagsize(params, block)
- seedset = get_seedset(params, block)
- if seedset["front_hash"] <= 0:
- # No back buffer is possible, just make front buffer
- return {"front": {"dag": produce_dag(params, seedset["front_hash"], dagsz),
- "block_number": 0}}
- else:
- return {"front": {"dag": produce_dag(params, seedset["front_hash"], dagsz),
- "block_number": seedset["front_number"]},
- "back": {"dag": produce_dag(params, seedset["back_hash"], dagsz),
- "block_number": seedset["back_number"]}}
-```
-
-## Hashimoto {#hashimoto}
-
-A ideia por trás do Hashimoto original é usar a blockchain como um conjunto de dados, executando um cálculo que seleciona N índices da blockchain, reúne as transações nesses índices, executa um XOR desses dados e retorna o hash do resultado. O algoritmo original de Thaddeus Dryja, convertido para Python para consistência, é o seguinte:
-
-```python
-def orig_hashimoto(prev_hash, merkle_root, list_of_transactions, nonce):
- hash_output_A = sha256(prev_hash + merkle_root + nonce)
- txid_mix = 0
- for i in range(64):
- shifted_A = hash_output_A >> i
- transaction = shifted_A % len(list_of_transactions)
- txid_mix ^= list_of_transactions[transaction] << i
- return txid_max ^ (nonce << 192)
-```
-
-Infelizmente, enquanto Hashimoto é considerado de uso intenso de RAM, ele depende da aritmética de 256 bits, o que tem uma sobrecarga computacional considerável. No entanto, Dagger-Hashimoto usa apenas os 64 bits menos significativos ao indexar seu conjunto de dados para resolver esta questão.
-
-```python
-def hashimoto(dag, dagsize, params, header, nonce):
- m = dagsize / 2
- mix = sha3(encode_int(nonce) + header)
- for _ in range(params["accesses"]):
- mix ^= dag[m + (mix % 2**64) % m]
- return dbl_sha3(mix)
-```
-
-O uso duplo do SHA3 permite uma forma de zero dados, pré-verificação quase instantânea, verificando apenas se foi fornecido um valor intermediário correto. Esta camada exterior de prova de trabalho é altamente favorável a ASIC e razoavelmente fraca, mas existe para tornar a DDoS ainda mais difícil, uma vez que essa pequena quantidade de trabalho tem de ser feita para produzir um bloco que não seja imediatamente rejeitado. Aqui está a versão de cliente leve:
-
-```python
-def quick_hashimoto(seed, dagsize, params, header, nonce):
- m = dagsize // 2
- mix = sha3(nonce + header)
- for _ in range(params["accesses"]):
- mix ^= quick_calc(params, seed, m + (mix % 2**64) % m)
- return dbl_sha3(mix)
-```
-
-## Mineração e verificação {#mining-and-verifying}
-
-Agora, vamos colocar tudo junto no algoritmo de mineração:
-
-```python
-def mine(daggerset, params, block):
- from random import randint
- nonce = randint(0, 2**64)
- while 1:
- result = hashimoto(daggerset, get_dagsize(params, block),
- params, decode_int(block.prevhash), nonce)
- if result * params["diff"] < 2**256:
- break
- nonce += 1
- if nonce >= 2**64:
- nonce = 0
- return nonce
-```
-
-Aqui está o algoritmo de verificação:
-
-```python
-def verify(daggerset, params, block, nonce):
- result = hashimoto(daggerset, get_dagsize(params, block),
- params, decode_int(block.prevhash), nonce)
- return result * params["diff"] < 2**256
-```
-
-Verificação amigável do cliente leve:
-
-```python
-def light_verify(params, header, nonce):
- seedset = get_seedset(params, block)
- result = quick_hashimoto(seedset["front_hash"], get_dagsize(params, block),
- params, decode_int(block.prevhash), nonce)
- return result * params["diff"] < 2**256
-```
-
-Além disso, note que Dagger-Hashimoto impõe requisitos adicionais no cabeçalho do bloco:
-
-- Para que a verificação em duas camadas funcione, um cabeçalho de bloco deve ter ambos o nonce e o valor do meio pre-sha3
-- Um cabeçalho de bloco deve armazenar o sha3 do seedset atual em algum lugar
-
-## Leitura adicional {#further-reading}
-
-_Conhece algum recurso da comunidade que o ajudou? Edite essa página e adicione!_
-
-## Apêndice {#appendix}
-
-Como mencionado acima, o RNG usado para geração de DAGs depende de alguns resultados da teoria de números. Primeiro, nós fornecemos garantias de que o Lehmer RNG, que é a base para a variável `picker`, tenha um longo período. Segundo, mostramos que `pow(x,3,P)` não vai correlacionar `x` para `1` ou `P-1` fornecer `x ∈ [2,P-2]` para começar. Finalmente, mostramos que `pow(x,3,P)` tem uma baixa taxa de colisão quando tratado como uma função de hashing.
-
-### Gerador de números aleatórios Lehmer {#lehmer-random-number}
-
-Enquanto a função `produce_dag` não precisa produzir números aleatórios sem viés, uma ameaça potencial é que `seed**i % P` só absorve um punhado de valores. Isto poderia proporcionar uma vantagem aos mineradores reconhecendo o padrão em relação aos que não o fazem.
-
-Para evitar isso, apela-se a um resultado da teoria dos números. Um [_número primo seguro_](https://en.wikipedia.org/wiki/Safe_prime) é definido como sendo um `P` primo tal que `(P-1)/2` também é primo. A _ordem_ de um membro `x` do [grupo multiplicativo](https://en.wikipedia.org/wiki/Multiplicative_group_of_integers_modulo_n) `Z/nZ` é definido como o mínimo de `m` tal que
xᵐ mod P ≡ 1
-Dadas essas definições, temos:
-
-> Observação 1. Deixe `x` ser um membro do grupo multiplicador `Z/PZ` para um `P` primo seguro. Se `x mod P ≠ 1 mod P` e `x mod P ≠ P-1 mod P`, então a ordem de `x` é `P-1` ou `(P-1)/2`.
-
-_Prova_. Já que `P` é um primo seguro, então pelo \[Teorema de Lagrange\]\[lagrange\] temos que a ordem de `x` é `1`, `2`, `(P-1)/2` ou `P-1`.
-
-A ordem de `x` não pode ser `1`, já que pelo Pequeno Teorema de Fermat, nós temos:
-
-
xP-1 mod P ≡ 1
-
-Daí `x` deve ser uma identidade multiplicadora de `Z/nZ`, que é única. Como partimos do princípio de que `x ≠ 1` por suposição, isso não é possível.
-
-A ordem de `x` não pode ser `2` a menos que `x = P-1`, já que isso violaria o princípio de que `P` é primo.
-
-A partir da proposta acima, podemos reconhecer que a iteração `(picker * init) % P` terá um ciclo de comprimento de pelo menos `(P-1)/2`. Isso acontece porque selecionamos `P` para ser um primo seguro aproximadamente igual a uma potência de dois mais alta, e `init` está no intervalo `[2,2**256+1]`. Dada a magnitude de `P`, nunca devemos esperar um ciclo da exponenciação modular.
-
-Quando estamos atribuindo a primeira célula no DAG (a variável rotulada como `init`), nós computamos `pow (sha3(seed) + 2, 3, P)`. À primeira vista, isso não garante que o resultado não é `1` nem `P-1`. No entanto, como `P-1` é um primo seguro, temos a seguinte garantia adicional, que é uma afirmação deduzida da Observação 1:
-
-> Observação 2. Deixe `x` ser um membro do grupo multiplicador `Z/PZ` para um `P` primo seguro, e deixe `w` ser um número natural. Se `x mod P ≠ 1 mod P` e `x mod P ≠ P-1 mod P`, assim como `w mod P ≠ P-1 mod P` e `w mod P ≠ 0 mod P`, então `xʷ mod P ≠ 1 mod P` e `xʷ mod P ≠ P-1 mod P`
-
-### Exponenciação modular como uma função hash {#modular-exponentiation}
-
-Para certos valores de `P` e `w`, a função `pow(x, w, P)` pode ter muitas colisões. Por exemplo, `pow(x,9,19)` recebe apenas valores `{1,18}`.
-
-Dado que `P` é primo, então um `w` apropriado para uma função hash de exponenciação modular pode ser escolhida usando o seguinte resultado:
-
-> Observação 3. Considere `P` um primo; `w` e `P-1` são relativamente primos, se e somente se para todos `a` e `b` em `Z/PZ`:
->
->
-> `aʷ mod P ≡ bʷ mod P` se e somente se `a mod P ≡ b mod P`
->
-
-Assim, dado que `P` é primo e `w` é relativamente primo de `P-1`, temos que `|{pow(x, w, P) : x ∈ ℤ}| = P`, implicando que a função tem a taxa mínima de colisão possível.
-
-No caso especial que `P` é um primo seguro como selecionamos, então `P-1` só tem fatores 1, 2, `(P-1)/2` e `P-1`. Como `P` > 7, sabemos que 3 é relativamente primo de `P-1`, daí `w=3` satisfaz a proposta acima.
-
-## Algoritmo de avaliação baseado em cache mais eficiente {#cache-based-evaluation}
-
-```python
-def quick_calc(params, seed, p):
- cache = produce_dag(params, seed, params["cache_size"])
- return quick_calc_cached(cache, params, p)
-
-def quick_calc_cached(cache, params, p):
- P = params["P"]
- if p < len(cache):
- return cache[p]
- else:
- x = pow(cache[0], p + 1, P)
- for _ in range(params["k"]):
- x ^= quick_calc_cached(cache, params, x % p)
- return pow(x, params["w"], P)
-
-def quick_hashimoto(seed, dagsize, params, header, nonce):
- cache = produce_dag(params, seed, params["cache_size"])
- return quick_hashimoto_cached(cache, dagsize, params, header, nonce)
-
-def quick_hashimoto_cached(cache, dagsize, params, header, nonce):
- m = dagsize // 2
- mask = 2**64 - 1
- mix = sha3(encode_int(nonce) + header)
- for _ in range(params["accesses"]):
- mix ^= quick_calc_cached(cache, params, m + (mix & mask) % m)
- return dbl_sha3(mix)
-```
diff --git a/public/content/translations/pt-br/developers/docs/consensus-mechanisms/pow/mining-algorithms/ethash/index.md b/public/content/translations/pt-br/developers/docs/consensus-mechanisms/pow/mining-algorithms/ethash/index.md
deleted file mode 100644
index eab3c19bca5..00000000000
--- a/public/content/translations/pt-br/developers/docs/consensus-mechanisms/pow/mining-algorithms/ethash/index.md
+++ /dev/null
@@ -1,1014 +0,0 @@
----
-title: Ethash
-description: O algoritmo de mineração Ethash em detalhes
-lang: pt-br
----
-
-
- Ethash foi o algoritmo de mineração da prova de trabalho do Ethereum. A prova de trabalho foi agora **totalmente desativada** e o Ethereum agora está protegido usando a prova de participação. Leia mais sobre A Fusão, prova de participação e staking. Esta página é de interesse histórico!
-
-
-[Ethash](https://github.com/ethereum/wiki/wiki/Ethash) é uma versão modificada do algoritmo [Dagger-Hashimoto](/developers/docs/consensus-mechanisms/pow/mining-algorithms/dagger-hashimoto). A prova de trabalho Ethash faz uso de [muita memória](https://wikipedia.org/wiki/Memory-hard_function), o que foi pensado para tornar o algoritmo ASIC resistente. Os ASICs Ethash foram eventualmente desenvolvidos, mas a mineração de GPU ainda era uma opção viável até que a prova de trabalho fosse desativada. Ethash ainda é usado para minerar outras moedas em outras redes de prova de trabalho não Ethereum.
-
-## Como o Ethash funciona? {#how-does-ethash-work}
-
-Dificuldade de memória é alcançada com um algoritmo de prova de trabalho que requer a escolha de subconjuntos de um recurso fixo dependente do nonce e do cabeçalho do bloco. Este recurso (alguns gigabytes em tamanho) é chamado de DAG. O DAG é alterado a cada 30.000 blocos, uma janela de cerca de 125 horas chamada de período eletrônico (aproximadamente 5,2 dias) e leva um tempo para gerar. Como o DAG depende apenas da altura do bloco, ele pode ser pré-gerado, mas o cliente não precisa esperar até o final deste processo para produzir um bloco. Se os clientes não pré-geraram e armazenaram em cache os DAGs antes, a rede pode sofrer um grande atraso em blocos em cada transição de período eletrônico (epoch). Note que o DAG não precisa ser gerado para verificar a prova de trabalho, permitindo essencialmente a verificação com baixa CPU e pouca memória.
-
-A rota geral que o algoritmo faz é a seguinte:
-
-1. Existe uma **seed** que pode ser calculada para cada bloco escaneando os cabeçalhos dos blocos até esse ponto.
-2. Da seed, pode-se calcular um **cache pseudo-randômico de 16 MB**. Clientes leves armazenam o cache.
-3. A partir do cache, podemos gerar um **conjunto de dados de 1 GB**, com a propriedade que cada item no conjunto de dados depende de apenas um pequeno número de itens do cache. Clientes e mineradores completos armazenam o conjunto de dados. O conjunto de dados cresce linearmente com o tempo.
-4. Mineração envolve pegar fatias aleatórias do conjunto de dados e fazer hashing deles juntos. A verificação pode ser feita com pouca memória usando o cache para regenerar os pedaços específicos do conjunto de dados que você precisa, então você só precisa armazenar o cache.
-
-O grande conjunto de dados é atualizado uma vez a cada 30.000 blocos, então o maior esforço de um minerador é ler o conjunto de dados, e não fazer alterações nele.
-
-## Definições {#definitions}
-
-Nós empregamos as seguintes definições:
-
-```
-WORD_BYTES = 4 # bytes in word
-DATASET_BYTES_INIT = 2**30 # bytes in dataset at genesis
-DATASET_BYTES_GROWTH = 2**23 # dataset growth per epoch
-CACHE_BYTES_INIT = 2**24 # bytes in cache at genesis
-CACHE_BYTES_GROWTH = 2**17 # cache growth per epoch
-CACHE_MULTIPLIER=1024 # Size of the DAG relative to the cache
-EPOCH_LENGTH = 30000 # blocks per epoch
-MIX_BYTES = 128 # width of mix
-HASH_BYTES = 64 # hash length in bytes
-DATASET_PARENTS = 256 # number of parents of each dataset element
-CACHE_ROUNDS = 3 # number of rounds in cache production
-ACCESSES = 64 # number of accesses in hashimoto loop
-```
-
-### O uso de 'SHA3' {#sha3}
-
-O desenvolvimento do Ethereum coincidiu com o desenvolvimento do padrão SHA3, e o processo de padrões fez uma alteração tardia no preenchimento do algoritmo de hash finalizado, para que os hashes "sha3_256" e "sha3_512" do Ethereum não sejam hashes sha3 padrão, mas uma variante muitas vezes referida como "Keccak-256" e "Keccak-512" em outros contextos. Veja a discussão, por exemplo, [aqui](https://eips.ethereum.org/EIPS-1803), [aqui](http://ethereum.stackexchange.com/questions/550/which-cryptographic-hash-function-does-ethereum-use) ou [aqui](http://bitcoin.stackexchange.com/questions/42055/what-is-the-approach-to-calculate-an-ethereum-address-from-a-256-bit-private-key/42057#42057).
-
-Tenha isso em mente, já que hashes "sha3" são referidos na descrição do algoritmo abaixo.
-
-## Parâmetros {#parameters}
-
-Os parâmetros do cache Ethash e do conjunto de dados dependem do número do bloco. Tamanho do cache e tamanho do conjunto de dados crescem linearmente; entretanto, sempre tomamos o mais alto prime abaixo do limiar de crescimento linear, a fim de reduzir o risco de regularidades acidentais que conduzem a comportamentos cíclicos.
-
-```python
-def get_cache_size(block_number):
- sz = CACHE_BYTES_INIT + CACHE_BYTES_GROWTH * (block_number // EPOCH_LENGTH)
- sz -= HASH_BYTES
- while not isprime(sz / HASH_BYTES):
- sz -= 2 * HASH_BYTES
- return sz
-
-def get_full_size(block_number):
- sz = DATASET_BYTES_INIT + DATASET_BYTES_GROWTH * (block_number // EPOCH_LENGTH)
- sz -= MIX_BYTES
- while not isprime(sz / MIX_BYTES):
- sz -= 2 * MIX_BYTES
- return sz
-```
-
-Tabelas de conjunto de dados e valores de tamanho do cache são fornecidos no apêndice.
-
-## Geração de cache {#cache-generation}
-
-Agora, especificamos a função para produzir um cache:
-
-```python
-def mkcache(cache_size, seed):
- n = cache_size // HASH_BYTES
-
- # Sequentially produce the initial dataset
- o = [sha3_512(seed)]
- for i in range(1, n):
- o.append(sha3_512(o[-1]))
-
- # Use a low-round version of randmemohash
- for _ in range(CACHE_ROUNDS):
- for i in range(n):
- v = o[i][0] % n
- o[i] = sha3_512(map(xor, o[(i-1+n) % n], o[v]))
-
- return o
-```
-
-O processo de produção de cache envolve primeiro preenchimento sequencial de 32 MB de memória e depois executar duas passagens do algoritmo _RandMemoHash_ de Sergio Demian Lerner de [_Strict Memory Hard Hashing Functions_ (2014)](http://www.hashcash.org/papers/memohash.pdf). A saída é um conjunto de 524288 valores de 64-bytes.
-
-## Função de agregação de dados {#date-aggregation-function}
-
-Usamos um algoritmo inspirado no [FNV hash](https://en.wikipedia.org/wiki/Fowler%E2%80%93Noll%E2%80%93Vo_hash_function) em alguns casos como um substituto não associativo para o XOR. Observe que multiplicamos o primo com a entrada completa de 32 bits, em contraste com a especificação FNV-1 que multiplica o primo por um byte (octeto) por sua vez.
-
-```python
-FNV_PRIME = 0x01000193
-
-def fnv(v1, v2):
- return ((v1 * FNV_PRIME) ^ v2) % 2**32
-```
-
-Observe que até mesmo o yellow paper especifica fnv como v1\*(FNV_PRIME ^ v2). Todas as implementações atuais usam consistentemente a definição acima.
-
-## Cálculo completo do conjunto de dados {#full-dataset-calculation}
-
-Cada item de 64 bytes no conjunto de dados completo de 1 GB é calculado da seguinte forma:
-
-```python
-def calc_dataset_item(cache, i):
- n = len(cache)
- r = HASH_BYTES // WORD_BYTES
- # initialize the mix
- mix = copy.copy(cache[i % n])
- mix[0] ^= i
- mix = sha3_512(mix)
- # fnv it with a lot of random cache nodes based on i
- for j in range(DATASET_PARENTS):
- cache_index = fnv(i ^ j, mix[j % r])
- mix = map(fnv, mix, cache[cache_index % n])
- return sha3_512(mix)
-```
-
-Essencialmente, combinamos dados de 256 nós de cache selecionados de maneira pseudo-aleatória e fazemos o hash para calcular o nó do conjunto de dados. Todo o conjunto de dados é então gerado por:
-
-```python
-def calc_dataset(full_size, cache):
- return [calc_dataset_item(cache, i) for i in range(full_size // HASH_BYTES)]
-```
-
-## Loop principal {#main-loop}
-
-Agora, especificamos o loop padrão "hashimoto" principal, onde agregamos dados do conjunto de dados completo para produzir nosso valor final para um cabeçalho em particular ou nonce. No código abaixo, `header` representa o _hash \_SHA3-256 da representação RLP de um cabeçalho de bloco \_truncado_, ou seja, de um cabeçalho excluindo os campos **mixHash** e **nonce**. `nonce` é os oito bytes de um inteiro sem sinal de 64 bits na ordem big-endian. Então `nonce[::-1]` é a representação little-endian de oito bytes desse valor:
-
-```python
-def hashimoto(header, nonce, full_size, dataset_lookup):
- n = full_size / HASH_BYTES
- w = MIX_BYTES // WORD_BYTES
- mixhashes = MIX_BYTES / HASH_BYTES
- # combine header+nonce into a 64 byte seed
- s = sha3_512(header + nonce[::-1])
- # start the mix with replicated s
- mix = []
- for _ in range(MIX_BYTES / HASH_BYTES):
- mix.extend(s)
- # mix in random dataset nodes
- for i in range(ACCESSES):
- p = fnv(i ^ s[0], mix[i % w]) % (n // mixhashes) * mixhashes
- newdata = []
- for j in range(MIX_BYTES / HASH_BYTES):
- newdata.extend(dataset_lookup(p + j))
- mix = map(fnv, mix, newdata)
- # compress mix
- cmix = []
- for i in range(0, len(mix), 4):
- cmix.append(fnv(fnv(fnv(mix[i], mix[i+1]), mix[i+2]), mix[i+3]))
- return {
- "mix digest": serialize_hash(cmix),
- "result": serialize_hash(sha3_256(s+cmix))
- }
-
-def hashimoto_light(full_size, cache, header, nonce):
- return hashimoto(header, nonce, full_size, lambda x: calc_dataset_item(cache, x))
-
-def hashimoto_full(full_size, dataset, header, nonce):
- return hashimoto(header, nonce, full_size, lambda x: dataset[x])
-```
-
-Essencialmente, mantemos um "mix" de 128 bytes de largura, e de maneira sequencial e repetida buscamos 128 bytes do conjunto de dados completo e usamos a função `fnv` para combiná-lo com o mix. 128 bytes de acesso sequencial são usados para que cada rodada do algoritmo sempre busque uma página inteira de RAM, minimizando a possibilidade de que o buffer de pesquisa de tradução perca o que os ASICs teoricamente seriam capazes de evitar.
-
-Se a saída deste algoritmo está abaixo do alvo desejado, então o nonce é válido. Observe que a aplicação extra de `sha3_256` no final garante que existe um nonce intermediário que pode ser fornecido para provar que pelo menos uma pequena quantidade de trabalho foi feita; esta rápida verificação de prova de trabalho pode ser usada para fins anti-DDoS. Serve também para dar garantias estatísticas de que o resultado é um número imparcial de 256 bits.
-
-## Mineração {#mining}
-
-O algoritmo de mineração é definido da seguinte forma:
-
-```python
-def mine(full_size, dataset, header, difficulty):
- # zero-pad target to compare with hash on the same digit
- target = zpad(encode_int(2**256 // difficulty), 64)[::-1]
- from random import randint
- nonce = randint(0, 2**64)
- while hashimoto_full(full_size, dataset, header, nonce) > target:
- nonce = (nonce + 1) % 2**64
- return nonce
-```
-
-## Definição do hash seed {#seed-hash}
-
-Para calcular o hash seed que seria usado para minerar no topo de um determinado bloco, usamos o seguinte algoritmo:
-
-```python
- def get_seedhash(block):
- s = '\x00' * 32
- for i in range(block.number // EPOCH_LENGTH):
- s = serialize_hash(sha3_256(s))
- return s
-```
-
-Observe que, para que a mineração e a verificação aconteçam sem contratempos, recomendamos pré-computar os hashes seed e conjuntos de dados futuros em threads separadas.
-
-## Leitura adicional {#further-reading}
-
-_Conhece algum recurso da comunidade que o ajudou? Edite essa página e adicione!_
-
-## Apêndice {#appendix}
-
-O código a seguir deve ser precedido se você estiver interessado em executar a especificação python acima como código.
-
-```python
-import sha3, copy
-
-# Assumes little endian bit ordering (same as Intel architectures)
-def decode_int(s):
- return int(s[::-1].encode('hex'), 16) if s else 0
-
-def encode_int(s):
- a = "%x" % s
- return '' if s == 0 else ('0' * (len(a) % 2) + a).decode('hex')[::-1]
-
-def zpad(s, length):
- return s + '\x00' * max(0, length - len(s))
-
-def serialize_hash(h):
- return ''.join([zpad(encode_int(x), 4) for x in h])
-
-def deserialize_hash(h):
- return [decode_int(h[i:i+WORD_BYTES]) for i in range(0, len(h), WORD_BYTES)]
-
-def hash_words(h, sz, x):
- if isinstance(x, list):
- x = serialize_hash(x)
- y = h(x)
- return deserialize_hash(y)
-
-def serialize_cache(ds):
- return ''.join([serialize_hash(h) for h in ds])
-
-serialize_dataset = serialize_cache
-
-# sha3 hash function, outputs 64 bytes
-def sha3_512(x):
- return hash_words(lambda v: sha3.sha3_512(v).digest(), 64, x)
-
-def sha3_256(x):
- return hash_words(lambda v: sha3.sha3_256(v).digest(), 32, x)
-
-def xor(a, b):
- return a ^ b
-
-def isprime(x):
- for i in range(2, int(x**0.5)):
- if x % i == 0:
- return False
- return True
-```
-
-### Tamanho dos dados {#data-sizes}
-
-As tabelas de pesquisa a seguir fornecem aproximadamente 2.048 períodos eletrônicos (epoch) tabulados de tamanhos de dados e tamanhos de cache.
-
-```python
-def get_datasize(block_number):
- return data_sizes[block_number // EPOCH_LENGTH]
-
-def get_cachesize(block_number):
- return cache_sizes[block_number // EPOCH_LENGTH]
-
-data_sizes = [
-1073739904, 1082130304, 1090514816, 1098906752, 1107293056,
-1115684224, 1124070016, 1132461952, 1140849536, 1149232768,
-1157627776, 1166013824, 1174404736, 1182786944, 1191180416,
-1199568512, 1207958912, 1216345216, 1224732032, 1233124736,
-1241513344, 1249902464, 1258290304, 1266673792, 1275067264,
-1283453312, 1291844992, 1300234112, 1308619904, 1317010048,
-1325397376, 1333787776, 1342176128, 1350561664, 1358954368,
-1367339392, 1375731584, 1384118144, 1392507008, 1400897408,
-1409284736, 1417673344, 1426062464, 1434451072, 1442839168,
-1451229056, 1459615616, 1468006016, 1476394112, 1484782976,
-1493171584, 1501559168, 1509948032, 1518337664, 1526726528,
-1535114624, 1543503488, 1551892096, 1560278656, 1568669056,
-1577056384, 1585446272, 1593831296, 1602219392, 1610610304,
-1619000192, 1627386752, 1635773824, 1644164224, 1652555648,
-1660943488, 1669332608, 1677721216, 1686109312, 1694497664,
-1702886272, 1711274624, 1719661184, 1728047744, 1736434816,
-1744829056, 1753218944, 1761606272, 1769995904, 1778382464,
-1786772864, 1795157888, 1803550592, 1811937664, 1820327552,
-1828711552, 1837102976, 1845488768, 1853879936, 1862269312,
-1870656896, 1879048064, 1887431552, 1895825024, 1904212096,
-1912601216, 1920988544, 1929379456, 1937765504, 1946156672,
-1954543232, 1962932096, 1971321728, 1979707264, 1988093056,
-1996487552, 2004874624, 2013262208, 2021653888, 2030039936,
-2038430848, 2046819968, 2055208576, 2063596672, 2071981952,
-2080373632, 2088762752, 2097149056, 2105539712, 2113928576,
-2122315136, 2130700672, 2139092608, 2147483264, 2155872128,
-2164257664, 2172642176, 2181035392, 2189426048, 2197814912,
-2206203008, 2214587264, 2222979712, 2231367808, 2239758208,
-2248145024, 2256527744, 2264922752, 2273312128, 2281701248,
-2290086272, 2298476672, 2306867072, 2315251072, 2323639168,
-2332032128, 2340420224, 2348808064, 2357196416, 2365580416,
-2373966976, 2382363008, 2390748544, 2399139968, 2407530368,
-2415918976, 2424307328, 2432695424, 2441084288, 2449472384,
-2457861248, 2466247808, 2474637184, 2483026816, 2491414144,
-2499803776, 2508191872, 2516582272, 2524970368, 2533359232,
-2541743488, 2550134144, 2558525056, 2566913408, 2575301504,
-2583686528, 2592073856, 2600467328, 2608856192, 2617240448,
-2625631616, 2634022016, 2642407552, 2650796416, 2659188352,
-2667574912, 2675965312, 2684352896, 2692738688, 2701130624,
-2709518464, 2717907328, 2726293376, 2734685056, 2743073152,
-2751462016, 2759851648, 2768232832, 2776625536, 2785017728,
-2793401984, 2801794432, 2810182016, 2818571648, 2826959488,
-2835349376, 2843734144, 2852121472, 2860514432, 2868900992,
-2877286784, 2885676928, 2894069632, 2902451584, 2910843008,
-2919234688, 2927622784, 2936011648, 2944400768, 2952789376,
-2961177728, 2969565568, 2977951616, 2986338944, 2994731392,
-3003120256, 3011508352, 3019895936, 3028287104, 3036675968,
-3045063808, 3053452928, 3061837696, 3070228352, 3078615424,
-3087003776, 3095394944, 3103782272, 3112173184, 3120562048,
-3128944768, 3137339264, 3145725056, 3154109312, 3162505088,
-3170893184, 3179280256, 3187669376, 3196056704, 3204445568,
-3212836736, 3221224064, 3229612928, 3238002304, 3246391168,
-3254778496, 3263165824, 3271556224, 3279944576, 3288332416,
-3296719232, 3305110912, 3313500032, 3321887104, 3330273152,
-3338658944, 3347053184, 3355440512, 3363827072, 3372220288,
-3380608384, 3388997504, 3397384576, 3405774208, 3414163072,
-3422551936, 3430937984, 3439328384, 3447714176, 3456104576,
-3464493952, 3472883584, 3481268864, 3489655168, 3498048896,
-3506434432, 3514826368, 3523213952, 3531603584, 3539987072,
-3548380288, 3556763264, 3565157248, 3573545344, 3581934464,
-3590324096, 3598712704, 3607098752, 3615488384, 3623877248,
-3632265856, 3640646528, 3649043584, 3657430144, 3665821568,
-3674207872, 3682597504, 3690984832, 3699367808, 3707764352,
-3716152448, 3724541056, 3732925568, 3741318016, 3749706368,
-3758091136, 3766481536, 3774872704, 3783260032, 3791650432,
-3800036224, 3808427648, 3816815488, 3825204608, 3833592704,
-3841981568, 3850370432, 3858755968, 3867147904, 3875536256,
-3883920512, 3892313728, 3900702592, 3909087872, 3917478784,
-3925868416, 3934256512, 3942645376, 3951032192, 3959422336,
-3967809152, 3976200064, 3984588416, 3992974976, 4001363584,
-4009751168, 4018141312, 4026530432, 4034911616, 4043308928,
-4051695488, 4060084352, 4068472448, 4076862848, 4085249408,
-4093640576, 4102028416, 4110413696, 4118805632, 4127194496,
-4135583104, 4143971968, 4152360832, 4160746112, 4169135744,
-4177525888, 4185912704, 4194303616, 4202691968, 4211076736,
-4219463552, 4227855488, 4236246656, 4244633728, 4253022848,
-4261412224, 4269799808, 4278184832, 4286578048, 4294962304,
-4303349632, 4311743104, 4320130432, 4328521088, 4336909184,
-4345295488, 4353687424, 4362073472, 4370458496, 4378852736,
-4387238528, 4395630208, 4404019072, 4412407424, 4420790656,
-4429182848, 4437571456, 4445962112, 4454344064, 4462738048,
-4471119232, 4479516544, 4487904128, 4496289664, 4504682368,
-4513068416, 4521459584, 4529846144, 4538232704, 4546619776,
-4555010176, 4563402112, 4571790208, 4580174464, 4588567936,
-4596957056, 4605344896, 4613734016, 4622119808, 4630511488,
-4638898816, 4647287936, 4655675264, 4664065664, 4672451968,
-4680842624, 4689231488, 4697620352, 4706007424, 4714397056,
-4722786176, 4731173248, 4739562368, 4747951744, 4756340608,
-4764727936, 4773114496, 4781504384, 4789894784, 4798283648,
-4806667648, 4815059584, 4823449472, 4831835776, 4840226176,
-4848612224, 4857003392, 4865391488, 4873780096, 4882169728,
-4890557312, 4898946944, 4907333248, 4915722368, 4924110976,
-4932499328, 4940889728, 4949276032, 4957666432, 4966054784,
-4974438016, 4982831488, 4991221376, 4999607168, 5007998848,
-5016386432, 5024763776, 5033164672, 5041544576, 5049941888,
-5058329728, 5066717056, 5075107456, 5083494272, 5091883904,
-5100273536, 5108662144, 5117048192, 5125436032, 5133827456,
-5142215296, 5150605184, 5158993024, 5167382144, 5175769472,
-5184157568, 5192543872, 5200936064, 5209324928, 5217711232,
-5226102656, 5234490496, 5242877312, 5251263872, 5259654016,
-5268040832, 5276434304, 5284819328, 5293209728, 5301598592,
-5309986688, 5318374784, 5326764416, 5335151488, 5343542144,
-5351929472, 5360319872, 5368706944, 5377096576, 5385484928,
-5393871232, 5402263424, 5410650496, 5419040384, 5427426944,
-5435816576, 5444205952, 5452594816, 5460981376, 5469367936,
-5477760896, 5486148736, 5494536832, 5502925952, 5511315328,
-5519703424, 5528089984, 5536481152, 5544869504, 5553256064,
-5561645696, 5570032768, 5578423936, 5586811264, 5595193216,
-5603585408, 5611972736, 5620366208, 5628750464, 5637143936,
-5645528192, 5653921408, 5662310272, 5670694784, 5679082624,
-5687474048, 5695864448, 5704251008, 5712641408, 5721030272,
-5729416832, 5737806208, 5746194304, 5754583936, 5762969984,
-5771358592, 5779748224, 5788137856, 5796527488, 5804911232,
-5813300608, 5821692544, 5830082176, 5838468992, 5846855552,
-5855247488, 5863636096, 5872024448, 5880411008, 5888799872,
-5897186432, 5905576832, 5913966976, 5922352768, 5930744704,
-5939132288, 5947522432, 5955911296, 5964299392, 5972688256,
-5981074304, 5989465472, 5997851008, 6006241408, 6014627968,
-6023015552, 6031408256, 6039796096, 6048185216, 6056574848,
-6064963456, 6073351808, 6081736064, 6090128768, 6098517632,
-6106906496, 6115289216, 6123680896, 6132070016, 6140459648,
-6148849024, 6157237376, 6165624704, 6174009728, 6182403712,
-6190792064, 6199176064, 6207569792, 6215952256, 6224345216,
-6232732544, 6241124224, 6249510272, 6257899136, 6266287744,
-6274676864, 6283065728, 6291454336, 6299843456, 6308232064,
-6316620928, 6325006208, 6333395584, 6341784704, 6350174848,
-6358562176, 6366951296, 6375337856, 6383729536, 6392119168,
-6400504192, 6408895616, 6417283456, 6425673344, 6434059136,
-6442444672, 6450837376, 6459223424, 6467613056, 6476004224,
-6484393088, 6492781952, 6501170048, 6509555072, 6517947008,
-6526336384, 6534725504, 6543112832, 6551500672, 6559888768,
-6568278656, 6576662912, 6585055616, 6593443456, 6601834112,
-6610219648, 6618610304, 6626999168, 6635385472, 6643777408,
-6652164224, 6660552832, 6668941952, 6677330048, 6685719424,
-6694107776, 6702493568, 6710882176, 6719274112, 6727662976,
-6736052096, 6744437632, 6752825984, 6761213824, 6769604224,
-6777993856, 6786383488, 6794770816, 6803158144, 6811549312,
-6819937664, 6828326528, 6836706176, 6845101696, 6853491328,
-6861880448, 6870269312, 6878655104, 6887046272, 6895433344,
-6903822208, 6912212864, 6920596864, 6928988288, 6937377152,
-6945764992, 6954149248, 6962544256, 6970928768, 6979317376,
-6987709312, 6996093824, 7004487296, 7012875392, 7021258624,
-7029652352, 7038038912, 7046427776, 7054818944, 7063207808,
-7071595136, 7079980928, 7088372608, 7096759424, 7105149824,
-7113536896, 7121928064, 7130315392, 7138699648, 7147092352,
-7155479168, 7163865728, 7172249984, 7180648064, 7189036672,
-7197424768, 7205810816, 7214196608, 7222589824, 7230975104,
-7239367552, 7247755904, 7256145536, 7264533376, 7272921472,
-7281308032, 7289694848, 7298088832, 7306471808, 7314864512,
-7323253888, 7331643008, 7340029568, 7348419712, 7356808832,
-7365196672, 7373585792, 7381973888, 7390362752, 7398750592,
-7407138944, 7415528576, 7423915648, 7432302208, 7440690304,
-7449080192, 7457472128, 7465860992, 7474249088, 7482635648,
-7491023744, 7499412608, 7507803008, 7516192384, 7524579968,
-7532967296, 7541358464, 7549745792, 7558134656, 7566524032,
-7574912896, 7583300992, 7591690112, 7600075136, 7608466816,
-7616854912, 7625244544, 7633629824, 7642020992, 7650410368,
-7658794112, 7667187328, 7675574912, 7683961984, 7692349568,
-7700739712, 7709130368, 7717519232, 7725905536, 7734295424,
-7742683264, 7751069056, 7759457408, 7767849088, 7776238208,
-7784626816, 7793014912, 7801405312, 7809792128, 7818179968,
-7826571136, 7834957184, 7843347328, 7851732352, 7860124544,
-7868512384, 7876902016, 7885287808, 7893679744, 7902067072,
-7910455936, 7918844288, 7927230848, 7935622784, 7944009344,
-7952400256, 7960786048, 7969176704, 7977565312, 7985953408,
-7994339968, 8002730368, 8011119488, 8019508096, 8027896192,
-8036285056, 8044674688, 8053062272, 8061448832, 8069838464,
-8078227328, 8086616704, 8095006592, 8103393664, 8111783552,
-8120171392, 8128560256, 8136949376, 8145336704, 8153726848,
-8162114944, 8170503296, 8178891904, 8187280768, 8195669632,
-8204058496, 8212444544, 8220834176, 8229222272, 8237612672,
-8246000768, 8254389376, 8262775168, 8271167104, 8279553664,
-8287944064, 8296333184, 8304715136, 8313108352, 8321497984,
-8329885568, 8338274432, 8346663296, 8355052928, 8363441536,
-8371828352, 8380217984, 8388606592, 8396996224, 8405384576,
-8413772672, 8422161536, 8430549376, 8438939008, 8447326592,
-8455715456, 8464104832, 8472492928, 8480882048, 8489270656,
-8497659776, 8506045312, 8514434944, 8522823808, 8531208832,
-8539602304, 8547990656, 8556378752, 8564768384, 8573154176,
-8581542784, 8589933952, 8598322816, 8606705024, 8615099264,
-8623487872, 8631876992, 8640264064, 8648653952, 8657040256,
-8665430656, 8673820544, 8682209152, 8690592128, 8698977152,
-8707374464, 8715763328, 8724151424, 8732540032, 8740928384,
-8749315712, 8757704576, 8766089344, 8774480768, 8782871936,
-8791260032, 8799645824, 8808034432, 8816426368, 8824812928,
-8833199488, 8841591424, 8849976448, 8858366336, 8866757248,
-8875147136, 8883532928, 8891923328, 8900306816, 8908700288,
-8917088384, 8925478784, 8933867392, 8942250368, 8950644608,
-8959032704, 8967420544, 8975809664, 8984197504, 8992584064,
-9000976256, 9009362048, 9017752448, 9026141312, 9034530688,
-9042917504, 9051307904, 9059694208, 9068084864, 9076471424,
-9084861824, 9093250688, 9101638528, 9110027648, 9118416512,
-9126803584, 9135188096, 9143581312, 9151969664, 9160356224,
-9168747136, 9177134464, 9185525632, 9193910144, 9202302848,
-9210690688, 9219079552, 9227465344, 9235854464, 9244244864,
-9252633472, 9261021824, 9269411456, 9277799296, 9286188928,
-9294574208, 9302965888, 9311351936, 9319740032, 9328131968,
-9336516736, 9344907392, 9353296768, 9361685888, 9370074752,
-9378463616, 9386849408, 9395239808, 9403629184, 9412016512,
-9420405376, 9428795008, 9437181568, 9445570688, 9453960832,
-9462346624, 9470738048, 9479121536, 9487515008, 9495903616,
-9504289664, 9512678528, 9521067904, 9529456256, 9537843584,
-9546233728, 9554621312, 9563011456, 9571398784, 9579788672,
-9588178304, 9596567168, 9604954496, 9613343104, 9621732992,
-9630121856, 9638508416, 9646898816, 9655283584, 9663675776,
-9672061312, 9680449664, 9688840064, 9697230464, 9705617536,
-9714003584, 9722393984, 9730772608, 9739172224, 9747561088,
-9755945344, 9764338816, 9772726144, 9781116544, 9789503872,
-9797892992, 9806282624, 9814670464, 9823056512, 9831439232,
-9839833984, 9848224384, 9856613504, 9865000576, 9873391232,
-9881772416, 9890162816, 9898556288, 9906940544, 9915333248,
-9923721088, 9932108672, 9940496512, 9948888448, 9957276544,
-9965666176, 9974048384, 9982441088, 9990830464, 9999219584,
-10007602816, 10015996544, 10024385152, 10032774016, 10041163648,
-10049548928, 10057940096, 10066329472, 10074717824, 10083105152,
-10091495296, 10099878784, 10108272256, 10116660608, 10125049216,
-10133437312, 10141825664, 10150213504, 10158601088, 10166991232,
-10175378816, 10183766144, 10192157312, 10200545408, 10208935552,
-10217322112, 10225712768, 10234099328, 10242489472, 10250876032,
-10259264896, 10267656064, 10276042624, 10284429184, 10292820352,
-10301209472, 10309598848, 10317987712, 10326375296, 10334763392,
-10343153536, 10351541632, 10359930752, 10368318592, 10376707456,
-10385096576, 10393484672, 10401867136, 10410262144, 10418647424,
-10427039104, 10435425664, 10443810176, 10452203648, 10460589952,
-10468982144, 10477369472, 10485759104, 10494147712, 10502533504,
-10510923392, 10519313536, 10527702656, 10536091264, 10544478592,
-10552867712, 10561255808, 10569642368, 10578032768, 10586423168,
-10594805632, 10603200128, 10611588992, 10619976064, 10628361344,
-10636754048, 10645143424, 10653531776, 10661920384, 10670307968,
-10678696832, 10687086464, 10695475072, 10703863168, 10712246144,
-10720639616, 10729026688, 10737414784, 10745806208, 10754190976,
-10762581376, 10770971264, 10779356288, 10787747456, 10796135552,
-10804525184, 10812915584, 10821301888, 10829692288, 10838078336,
-10846469248, 10854858368, 10863247232, 10871631488, 10880023424,
-10888412032, 10896799616, 10905188992, 10913574016, 10921964672,
-10930352768, 10938742912, 10947132544, 10955518592, 10963909504,
-10972298368, 10980687488, 10989074816, 10997462912, 11005851776,
-11014241152, 11022627712, 11031017344, 11039403904, 11047793024,
-11056184704, 11064570752, 11072960896, 11081343872, 11089737856,
-11098128256, 11106514816, 11114904448, 11123293568, 11131680128,
-11140065152, 11148458368, 11156845696, 11165236864, 11173624192,
-11182013824, 11190402688, 11198790784, 11207179136, 11215568768,
-11223957376, 11232345728, 11240734592, 11249122688, 11257511296,
-11265899648, 11274285952, 11282675584, 11291065472, 11299452544,
-11307842432, 11316231296, 11324616832, 11333009024, 11341395584,
-11349782656, 11358172288, 11366560384, 11374950016, 11383339648,
-11391721856, 11400117376, 11408504192, 11416893568, 11425283456,
-11433671552, 11442061184, 11450444672, 11458837888, 11467226752,
-11475611776, 11484003968, 11492392064, 11500780672, 11509169024,
-11517550976, 11525944448, 11534335616, 11542724224, 11551111808,
-11559500672, 11567890304, 11576277376, 11584667008, 11593056128,
-11601443456, 11609830016, 11618221952, 11626607488, 11634995072,
-11643387776, 11651775104, 11660161664, 11668552576, 11676940928,
-11685330304, 11693718656, 11702106496, 11710496128, 11718882688,
-11727273088, 11735660416, 11744050048, 11752437376, 11760824704,
-11769216128, 11777604736, 11785991296, 11794381952, 11802770048,
-11811157888, 11819548544, 11827932544, 11836324736, 11844713344,
-11853100928, 11861486464, 11869879936, 11878268032, 11886656896,
-11895044992, 11903433088, 11911822976, 11920210816, 11928600448,
-11936987264, 11945375872, 11953761152, 11962151296, 11970543488,
-11978928512, 11987320448, 11995708288, 12004095104, 12012486272,
-12020875136, 12029255552, 12037652096, 12046039168, 12054429568,
-12062813824, 12071206528, 12079594624, 12087983744, 12096371072,
-12104759936, 12113147264, 12121534592, 12129924992, 12138314624,
-12146703232, 12155091584, 12163481216, 12171864704, 12180255872,
-12188643968, 12197034112, 12205424512, 12213811328, 12222199424,
-12230590336, 12238977664, 12247365248, 12255755392, 12264143488,
-12272531584, 12280920448, 12289309568, 12297694592, 12306086528,
-12314475392, 12322865024, 12331253632, 12339640448, 12348029312,
-12356418944, 12364805248, 12373196672, 12381580928, 12389969024,
-12398357632, 12406750592, 12415138432, 12423527552, 12431916416,
-12440304512, 12448692352, 12457081216, 12465467776, 12473859968,
-12482245504, 12490636672, 12499025536, 12507411584, 12515801728,
-12524190592, 12532577152, 12540966272, 12549354368, 12557743232,
-12566129536, 12574523264, 12582911872, 12591299456, 12599688064,
-12608074624, 12616463488, 12624845696, 12633239936, 12641631616,
-12650019968, 12658407296, 12666795136, 12675183232, 12683574656,
-12691960192, 12700350592, 12708740224, 12717128576, 12725515904,
-12733906816, 12742295168, 12750680192, 12759071872, 12767460736,
-12775848832, 12784236928, 12792626816, 12801014656, 12809404288,
-12817789312, 12826181504, 12834568832, 12842954624, 12851345792,
-12859732352, 12868122496, 12876512128, 12884901248, 12893289088,
-12901672832, 12910067584, 12918455168, 12926842496, 12935232896,
-12943620736, 12952009856, 12960396928, 12968786816, 12977176192,
-12985563776, 12993951104, 13002341504, 13010730368, 13019115392,
-13027506304, 13035895168, 13044272512, 13052673152, 13061062528,
-13069446272, 13077838976, 13086227072, 13094613632, 13103000192,
-13111393664, 13119782528, 13128157568, 13136559232, 13144945024,
-13153329536, 13161724288, 13170111872, 13178502784, 13186884736,
-13195279744, 13203667072, 13212057472, 13220445824, 13228832128,
-13237221248, 13245610624, 13254000512, 13262388352, 13270777472,
-13279166336, 13287553408, 13295943296, 13304331904, 13312719488,
-13321108096, 13329494656, 13337885824, 13346274944, 13354663808,
-13363051136, 13371439232, 13379825024, 13388210816, 13396605056,
-13404995456, 13413380224, 13421771392, 13430159744, 13438546048,
-13446937216, 13455326848, 13463708288, 13472103808, 13480492672,
-13488875648, 13497269888, 13505657728, 13514045312, 13522435712,
-13530824576, 13539210112, 13547599232, 13555989376, 13564379008,
-13572766336, 13581154432, 13589544832, 13597932928, 13606320512,
-13614710656, 13623097472, 13631477632, 13639874944, 13648264064,
-13656652928, 13665041792, 13673430656, 13681818496, 13690207616,
-13698595712, 13706982272, 13715373184, 13723762048, 13732150144,
-13740536704, 13748926592, 13757316224, 13765700992, 13774090112,
-13782477952, 13790869376, 13799259008, 13807647872, 13816036736,
-13824425344, 13832814208, 13841202304, 13849591424, 13857978752,
-13866368896, 13874754688, 13883145344, 13891533184, 13899919232,
-13908311168, 13916692096, 13925085056, 13933473152, 13941866368,
-13950253696, 13958643584, 13967032192, 13975417216, 13983807616,
-13992197504, 14000582272, 14008973696, 14017363072, 14025752192,
-14034137984, 14042528384, 14050918016, 14059301504, 14067691648,
-14076083584, 14084470144, 14092852352, 14101249664, 14109635968,
-14118024832, 14126407552, 14134804352, 14143188608, 14151577984,
-14159968384, 14168357248, 14176741504, 14185127296, 14193521024,
-14201911424, 14210301824, 14218685056, 14227067264, 14235467392,
-14243855488, 14252243072, 14260630144, 14269021568, 14277409408,
-14285799296, 14294187904, 14302571392, 14310961792, 14319353728,
-14327738752, 14336130944, 14344518784, 14352906368, 14361296512,
-14369685376, 14378071424, 14386462592, 14394848128, 14403230848,
-14411627392, 14420013952, 14428402304, 14436793472, 14445181568,
-14453569664, 14461959808, 14470347904, 14478737024, 14487122816,
-14495511424, 14503901824, 14512291712, 14520677504, 14529064832,
-14537456768, 14545845632, 14554234496, 14562618496, 14571011456,
-14579398784, 14587789184, 14596172672, 14604564608, 14612953984,
-14621341312, 14629724288, 14638120832, 14646503296, 14654897536,
-14663284864, 14671675264, 14680061056, 14688447616, 14696835968,
-14705228416, 14713616768, 14722003328, 14730392192, 14738784128,
-14747172736, 14755561088, 14763947648, 14772336512, 14780725376,
-14789110144, 14797499776, 14805892736, 14814276992, 14822670208,
-14831056256, 14839444352, 14847836032, 14856222848, 14864612992,
-14872997504, 14881388672, 14889775744, 14898165376, 14906553472,
-14914944896, 14923329664, 14931721856, 14940109696, 14948497024,
-14956887424, 14965276544, 14973663616, 14982053248, 14990439808,
-14998830976, 15007216768, 15015605888, 15023995264, 15032385152,
-15040768384, 15049154944, 15057549184, 15065939072, 15074328448,
-15082715008, 15091104128, 15099493504, 15107879296, 15116269184,
-15124659584, 15133042304, 15141431936, 15149824384, 15158214272,
-15166602368, 15174991232, 15183378304, 15191760512, 15200154496,
-15208542592, 15216931712, 15225323392, 15233708416, 15242098048,
-15250489216, 15258875264, 15267265408, 15275654528, 15284043136,
-15292431488, 15300819584, 15309208192, 15317596544, 15325986176,
-15334374784, 15342763648, 15351151744, 15359540608, 15367929728,
-15376318336, 15384706432, 15393092992, 15401481856, 15409869952,
-15418258816, 15426649984, 15435037568, 15443425664, 15451815296,
-15460203392, 15468589184, 15476979328, 15485369216, 15493755776,
-15502146944, 15510534272, 15518924416, 15527311232, 15535699072,
-15544089472, 15552478336, 15560866688, 15569254528, 15577642624,
-15586031488, 15594419072, 15602809472, 15611199104, 15619586432,
-15627975296, 15636364928, 15644753792, 15653141888, 15661529216,
-15669918848, 15678305152, 15686696576, 15695083136, 15703474048,
-15711861632, 15720251264, 15728636288, 15737027456, 15745417088,
-15753804928, 15762194048, 15770582656, 15778971008, 15787358336,
-15795747712, 15804132224, 15812523392, 15820909696, 15829300096,
-15837691264, 15846071936, 15854466944, 15862855808, 15871244672,
-15879634816, 15888020608, 15896409728, 15904799104, 15913185152,
-15921577088, 15929966464, 15938354816, 15946743424, 15955129472,
-15963519872, 15971907968, 15980296064, 15988684928, 15997073024,
-16005460864, 16013851264, 16022241152, 16030629248, 16039012736,
-16047406976, 16055794816, 16064181376, 16072571264, 16080957824,
-16089346688, 16097737856, 16106125184, 16114514816, 16122904192,
-16131292544, 16139678848, 16148066944, 16156453504, 16164839552,
-16173236096, 16181623424, 16190012032, 16198401152, 16206790528,
-16215177344, 16223567744, 16231956352, 16240344704, 16248731008,
-16257117824, 16265504384, 16273898624, 16282281856, 16290668672,
-16299064192, 16307449216, 16315842176, 16324230016, 16332613504,
-16341006464, 16349394304, 16357783168, 16366172288, 16374561664,
-16382951296, 16391337856, 16399726208, 16408116352, 16416505472,
-16424892032, 16433282176, 16441668224, 16450058624, 16458448768,
-16466836864, 16475224448, 16483613056, 16492001408, 16500391808,
-16508779648, 16517166976, 16525555328, 16533944192, 16542330752,
-16550719616, 16559110528, 16567497088, 16575888512, 16584274816,
-16592665472, 16601051008, 16609442944, 16617832064, 16626218624,
-16634607488, 16642996096, 16651385728, 16659773824, 16668163712,
-16676552576, 16684938112, 16693328768, 16701718144, 16710095488,
-16718492288, 16726883968, 16735272832, 16743661184, 16752049792,
-16760436608, 16768827008, 16777214336, 16785599104, 16793992832,
-16802381696, 16810768768, 16819151744, 16827542656, 16835934848,
-16844323712, 16852711552, 16861101952, 16869489536, 16877876864,
-16886265728, 16894653056, 16903044736, 16911431296, 16919821696,
-16928207488, 16936592768, 16944987776, 16953375616, 16961763968,
-16970152832, 16978540928, 16986929536, 16995319168, 17003704448,
-17012096896, 17020481152, 17028870784, 17037262208, 17045649536,
-17054039936, 17062426496, 17070814336, 17079205504, 17087592064,
-17095978112, 17104369024, 17112759424, 17121147776, 17129536384,
-17137926016, 17146314368, 17154700928, 17163089792, 17171480192,
-17179864192, 17188256896, 17196644992, 17205033856, 17213423488,
-17221811072, 17230198912, 17238588032, 17246976896, 17255360384,
-17263754624, 17272143232, 17280530048, 17288918912, 17297309312,
-17305696384, 17314085504, 17322475136, 17330863744, 17339252096,
-17347640192, 17356026496, 17364413824, 17372796544, 17381190016,
-17389583488, 17397972608, 17406360704, 17414748544, 17423135872,
-17431527296, 17439915904, 17448303232, 17456691584, 17465081728,
-17473468288, 17481857408, 17490247552, 17498635904, 17507022464,
-17515409024, 17523801728, 17532189824, 17540577664, 17548966016,
-17557353344, 17565741184, 17574131584, 17582519168, 17590907008,
-17599296128, 17607687808, 17616076672, 17624455808, 17632852352,
-17641238656, 17649630848, 17658018944, 17666403968, 17674794112,
-17683178368, 17691573376, 17699962496, 17708350592, 17716739968,
-17725126528, 17733517184, 17741898112, 17750293888, 17758673024,
-17767070336, 17775458432, 17783848832, 17792236928, 17800625536,
-17809012352, 17817402752, 17825785984, 17834178944, 17842563968,
-17850955648, 17859344512, 17867732864, 17876119424, 17884511872,
-17892900224, 17901287296, 17909677696, 17918058112, 17926451072,
-17934843776, 17943230848, 17951609216, 17960008576, 17968397696,
-17976784256, 17985175424, 17993564032, 18001952128, 18010339712,
-18018728576, 18027116672, 18035503232, 18043894144, 18052283264,
-18060672128, 18069056384, 18077449856, 18085837184, 18094225792,
-18102613376, 18111004544, 18119388544, 18127781248, 18136170368,
-18144558976, 18152947328, 18161336192, 18169724288, 18178108544,
-18186498944, 18194886784, 18203275648, 18211666048, 18220048768,
-18228444544, 18236833408, 18245220736]
-
-cache_sizes = [
-16776896, 16907456, 17039296, 17170112, 17301056, 17432512, 17563072,
-17693888, 17824192, 17955904, 18087488, 18218176, 18349504, 18481088,
-18611392, 18742336, 18874304, 19004224, 19135936, 19267264, 19398208,
-19529408, 19660096, 19791424, 19922752, 20053952, 20184896, 20315968,
-20446912, 20576576, 20709184, 20840384, 20971072, 21102272, 21233216,
-21364544, 21494848, 21626816, 21757376, 21887552, 22019392, 22151104,
-22281536, 22412224, 22543936, 22675264, 22806464, 22935872, 23068096,
-23198272, 23330752, 23459008, 23592512, 23723968, 23854912, 23986112,
-24116672, 24247616, 24378688, 24509504, 24640832, 24772544, 24903488,
-25034432, 25165376, 25296704, 25427392, 25558592, 25690048, 25820096,
-25951936, 26081728, 26214208, 26345024, 26476096, 26606656, 26737472,
-26869184, 26998208, 27131584, 27262528, 27393728, 27523904, 27655744,
-27786688, 27917888, 28049344, 28179904, 28311488, 28441792, 28573504,
-28700864, 28835648, 28966208, 29096768, 29228608, 29359808, 29490752,
-29621824, 29752256, 29882816, 30014912, 30144448, 30273728, 30406976,
-30538432, 30670784, 30799936, 30932672, 31063744, 31195072, 31325248,
-31456192, 31588288, 31719232, 31850432, 31981504, 32110784, 32243392,
-32372672, 32505664, 32636608, 32767808, 32897344, 33029824, 33160768,
-33289664, 33423296, 33554368, 33683648, 33816512, 33947456, 34076992,
-34208704, 34340032, 34471744, 34600256, 34734016, 34864576, 34993984,
-35127104, 35258176, 35386688, 35518528, 35650624, 35782336, 35910976,
-36044608, 36175808, 36305728, 36436672, 36568384, 36699968, 36830656,
-36961984, 37093312, 37223488, 37355072, 37486528, 37617472, 37747904,
-37879232, 38009792, 38141888, 38272448, 38403392, 38535104, 38660672,
-38795584, 38925632, 39059264, 39190336, 39320768, 39452096, 39581632,
-39713984, 39844928, 39974848, 40107968, 40238144, 40367168, 40500032,
-40631744, 40762816, 40894144, 41023552, 41155904, 41286208, 41418304,
-41547712, 41680448, 41811904, 41942848, 42073792, 42204992, 42334912,
-42467008, 42597824, 42729152, 42860096, 42991552, 43122368, 43253696,
-43382848, 43515712, 43646912, 43777088, 43907648, 44039104, 44170432,
-44302144, 44433344, 44564288, 44694976, 44825152, 44956864, 45088448,
-45219008, 45350464, 45481024, 45612608, 45744064, 45874496, 46006208,
-46136768, 46267712, 46399424, 46529344, 46660672, 46791488, 46923328,
-47053504, 47185856, 47316928, 47447872, 47579072, 47710144, 47839936,
-47971648, 48103232, 48234176, 48365248, 48496192, 48627136, 48757312,
-48889664, 49020736, 49149248, 49283008, 49413824, 49545152, 49675712,
-49807168, 49938368, 50069056, 50200256, 50331584, 50462656, 50593472,
-50724032, 50853952, 50986048, 51117632, 51248576, 51379904, 51510848,
-51641792, 51773248, 51903296, 52035136, 52164032, 52297664, 52427968,
-52557376, 52690112, 52821952, 52952896, 53081536, 53213504, 53344576,
-53475776, 53608384, 53738816, 53870528, 54000832, 54131776, 54263744,
-54394688, 54525248, 54655936, 54787904, 54918592, 55049152, 55181248,
-55312064, 55442752, 55574336, 55705024, 55836224, 55967168, 56097856,
-56228672, 56358592, 56490176, 56621888, 56753728, 56884928, 57015488,
-57146816, 57278272, 57409216, 57540416, 57671104, 57802432, 57933632,
-58064576, 58195264, 58326976, 58457408, 58588864, 58720192, 58849984,
-58981696, 59113024, 59243456, 59375552, 59506624, 59637568, 59768512,
-59897792, 60030016, 60161984, 60293056, 60423872, 60554432, 60683968,
-60817216, 60948032, 61079488, 61209664, 61341376, 61471936, 61602752,
-61733696, 61865792, 61996736, 62127808, 62259136, 62389568, 62520512,
-62651584, 62781632, 62910784, 63045056, 63176128, 63307072, 63438656,
-63569216, 63700928, 63831616, 63960896, 64093888, 64225088, 64355392,
-64486976, 64617664, 64748608, 64879424, 65009216, 65142464, 65273792,
-65402816, 65535424, 65666752, 65797696, 65927744, 66060224, 66191296,
-66321344, 66453056, 66584384, 66715328, 66846656, 66977728, 67108672,
-67239104, 67370432, 67501888, 67631296, 67763776, 67895104, 68026304,
-68157248, 68287936, 68419264, 68548288, 68681408, 68811968, 68942912,
-69074624, 69205568, 69337024, 69467584, 69599168, 69729472, 69861184,
-69989824, 70122944, 70253888, 70385344, 70515904, 70647232, 70778816,
-70907968, 71040832, 71171648, 71303104, 71432512, 71564992, 71695168,
-71826368, 71958464, 72089536, 72219712, 72350144, 72482624, 72613568,
-72744512, 72875584, 73006144, 73138112, 73268672, 73400128, 73530944,
-73662272, 73793344, 73924544, 74055104, 74185792, 74316992, 74448832,
-74579392, 74710976, 74841664, 74972864, 75102784, 75233344, 75364544,
-75497024, 75627584, 75759296, 75890624, 76021696, 76152256, 76283072,
-76414144, 76545856, 76676672, 76806976, 76937792, 77070016, 77200832,
-77331392, 77462464, 77593664, 77725376, 77856448, 77987776, 78118336,
-78249664, 78380992, 78511424, 78642496, 78773056, 78905152, 79033664,
-79166656, 79297472, 79429568, 79560512, 79690816, 79822784, 79953472,
-80084672, 80214208, 80346944, 80477632, 80608576, 80740288, 80870848,
-81002048, 81133504, 81264448, 81395648, 81525952, 81657536, 81786304,
-81919808, 82050112, 82181312, 82311616, 82443968, 82573376, 82705984,
-82835776, 82967744, 83096768, 83230528, 83359552, 83491264, 83622464,
-83753536, 83886016, 84015296, 84147776, 84277184, 84409792, 84540608,
-84672064, 84803008, 84934336, 85065152, 85193792, 85326784, 85458496,
-85589312, 85721024, 85851968, 85982656, 86112448, 86244416, 86370112,
-86506688, 86637632, 86769344, 86900672, 87031744, 87162304, 87293632,
-87424576, 87555392, 87687104, 87816896, 87947968, 88079168, 88211264,
-88341824, 88473152, 88603712, 88735424, 88862912, 88996672, 89128384,
-89259712, 89390272, 89521984, 89652544, 89783872, 89914816, 90045376,
-90177088, 90307904, 90438848, 90569152, 90700096, 90832832, 90963776,
-91093696, 91223744, 91356992, 91486784, 91618496, 91749824, 91880384,
-92012224, 92143552, 92273344, 92405696, 92536768, 92666432, 92798912,
-92926016, 93060544, 93192128, 93322816, 93453632, 93583936, 93715136,
-93845056, 93977792, 94109504, 94240448, 94371776, 94501184, 94632896,
-94764224, 94895552, 95023424, 95158208, 95287744, 95420224, 95550016,
-95681216, 95811904, 95943872, 96075328, 96203584, 96337856, 96468544,
-96599744, 96731072, 96860992, 96992576, 97124288, 97254848, 97385536,
-97517248, 97647808, 97779392, 97910464, 98041408, 98172608, 98303168,
-98434496, 98565568, 98696768, 98827328, 98958784, 99089728, 99220928,
-99352384, 99482816, 99614272, 99745472, 99876416, 100007104,
-100138048, 100267072, 100401088, 100529984, 100662592, 100791872,
-100925248, 101056064, 101187392, 101317952, 101449408, 101580608,
-101711296, 101841728, 101973824, 102104896, 102235712, 102366016,
-102498112, 102628672, 102760384, 102890432, 103021888, 103153472,
-103284032, 103415744, 103545152, 103677248, 103808576, 103939648,
-104070976, 104201792, 104332736, 104462528, 104594752, 104725952,
-104854592, 104988608, 105118912, 105247808, 105381184, 105511232,
-105643072, 105774784, 105903296, 106037056, 106167872, 106298944,
-106429504, 106561472, 106691392, 106822592, 106954304, 107085376,
-107216576, 107346368, 107478464, 107609792, 107739712, 107872192,
-108003136, 108131392, 108265408, 108396224, 108527168, 108657344,
-108789568, 108920384, 109049792, 109182272, 109312576, 109444928,
-109572928, 109706944, 109837888, 109969088, 110099648, 110230976,
-110362432, 110492992, 110624704, 110755264, 110886208, 111017408,
-111148864, 111279296, 111410752, 111541952, 111673024, 111803456,
-111933632, 112066496, 112196416, 112328512, 112457792, 112590784,
-112715968, 112852672, 112983616, 113114944, 113244224, 113376448,
-113505472, 113639104, 113770304, 113901376, 114031552, 114163264,
-114294592, 114425536, 114556864, 114687424, 114818624, 114948544,
-115080512, 115212224, 115343296, 115473472, 115605184, 115736128,
-115867072, 115997248, 116128576, 116260288, 116391488, 116522944,
-116652992, 116784704, 116915648, 117046208, 117178304, 117308608,
-117440192, 117569728, 117701824, 117833024, 117964096, 118094656,
-118225984, 118357312, 118489024, 118617536, 118749632, 118882112,
-119012416, 119144384, 119275328, 119406016, 119537344, 119668672,
-119798464, 119928896, 120061376, 120192832, 120321728, 120454336,
-120584512, 120716608, 120848192, 120979136, 121109056, 121241408,
-121372352, 121502912, 121634752, 121764416, 121895744, 122027072,
-122157632, 122289088, 122421184, 122550592, 122682944, 122813888,
-122945344, 123075776, 123207488, 123338048, 123468736, 123600704,
-123731264, 123861952, 123993664, 124124608, 124256192, 124386368,
-124518208, 124649024, 124778048, 124911296, 125041088, 125173696,
-125303744, 125432896, 125566912, 125696576, 125829056, 125958592,
-126090304, 126221248, 126352832, 126483776, 126615232, 126746432,
-126876608, 127008704, 127139392, 127270336, 127401152, 127532224,
-127663552, 127794752, 127925696, 128055232, 128188096, 128319424,
-128449856, 128581312, 128712256, 128843584, 128973632, 129103808,
-129236288, 129365696, 129498944, 129629888, 129760832, 129892288,
-130023104, 130154048, 130283968, 130416448, 130547008, 130678336,
-130807616, 130939456, 131071552, 131202112, 131331776, 131464384,
-131594048, 131727296, 131858368, 131987392, 132120256, 132250816,
-132382528, 132513728, 132644672, 132774976, 132905792, 133038016,
-133168832, 133299392, 133429312, 133562048, 133692992, 133823296,
-133954624, 134086336, 134217152, 134348608, 134479808, 134607296,
-134741056, 134872384, 135002944, 135134144, 135265472, 135396544,
-135527872, 135659072, 135787712, 135921472, 136052416, 136182848,
-136313792, 136444864, 136576448, 136707904, 136837952, 136970048,
-137099584, 137232064, 137363392, 137494208, 137625536, 137755712,
-137887424, 138018368, 138149824, 138280256, 138411584, 138539584,
-138672832, 138804928, 138936128, 139066688, 139196864, 139328704,
-139460032, 139590208, 139721024, 139852864, 139984576, 140115776,
-140245696, 140376512, 140508352, 140640064, 140769856, 140902336,
-141032768, 141162688, 141294016, 141426496, 141556544, 141687488,
-141819584, 141949888, 142080448, 142212544, 142342336, 142474432,
-142606144, 142736192, 142868288, 142997824, 143129408, 143258944,
-143392448, 143523136, 143653696, 143785024, 143916992, 144045632,
-144177856, 144309184, 144440768, 144570688, 144701888, 144832448,
-144965056, 145096384, 145227584, 145358656, 145489856, 145620928,
-145751488, 145883072, 146011456, 146144704, 146275264, 146407232,
-146538176, 146668736, 146800448, 146931392, 147062336, 147193664,
-147324224, 147455936, 147586624, 147717056, 147848768, 147979456,
-148110784, 148242368, 148373312, 148503232, 148635584, 148766144,
-148897088, 149028416, 149159488, 149290688, 149420224, 149551552,
-149683136, 149814976, 149943616, 150076352, 150208064, 150338624,
-150470464, 150600256, 150732224, 150862784, 150993088, 151125952,
-151254976, 151388096, 151519168, 151649728, 151778752, 151911104,
-152042944, 152174144, 152304704, 152435648, 152567488, 152698816,
-152828992, 152960576, 153091648, 153222976, 153353792, 153484096,
-153616192, 153747008, 153878336, 154008256, 154139968, 154270912,
-154402624, 154533824, 154663616, 154795712, 154926272, 155057984,
-155188928, 155319872, 155450816, 155580608, 155712064, 155843392,
-155971136, 156106688, 156237376, 156367424, 156499264, 156630976,
-156761536, 156892352, 157024064, 157155008, 157284416, 157415872,
-157545536, 157677248, 157810496, 157938112, 158071744, 158203328,
-158334656, 158464832, 158596288, 158727616, 158858048, 158988992,
-159121216, 159252416, 159381568, 159513152, 159645632, 159776192,
-159906496, 160038464, 160169536, 160300352, 160430656, 160563008,
-160693952, 160822208, 160956352, 161086784, 161217344, 161349184,
-161480512, 161611456, 161742272, 161873216, 162002752, 162135872,
-162266432, 162397888, 162529216, 162660032, 162790976, 162922048,
-163052096, 163184576, 163314752, 163446592, 163577408, 163707968,
-163839296, 163969984, 164100928, 164233024, 164364224, 164494912,
-164625856, 164756672, 164887616, 165019072, 165150016, 165280064,
-165412672, 165543104, 165674944, 165805888, 165936832, 166067648,
-166198336, 166330048, 166461248, 166591552, 166722496, 166854208,
-166985408, 167116736, 167246656, 167378368, 167508416, 167641024,
-167771584, 167903168, 168034112, 168164032, 168295744, 168427456,
-168557632, 168688448, 168819136, 168951616, 169082176, 169213504,
-169344832, 169475648, 169605952, 169738048, 169866304, 169999552,
-170131264, 170262464, 170393536, 170524352, 170655424, 170782016,
-170917696, 171048896, 171179072, 171310784, 171439936, 171573184,
-171702976, 171835072, 171966272, 172097216, 172228288, 172359232,
-172489664, 172621376, 172747712, 172883264, 173014208, 173144512,
-173275072, 173407424, 173539136, 173669696, 173800768, 173931712,
-174063424, 174193472, 174325696, 174455744, 174586816, 174718912,
-174849728, 174977728, 175109696, 175242688, 175374272, 175504832,
-175636288, 175765696, 175898432, 176028992, 176159936, 176291264,
-176422592, 176552512, 176684864, 176815424, 176946496, 177076544,
-177209152, 177340096, 177470528, 177600704, 177731648, 177864256,
-177994816, 178126528, 178257472, 178387648, 178518464, 178650176,
-178781888, 178912064, 179044288, 179174848, 179305024, 179436736,
-179568448, 179698496, 179830208, 179960512, 180092608, 180223808,
-180354752, 180485696, 180617152, 180748096, 180877504, 181009984,
-181139264, 181272512, 181402688, 181532608, 181663168, 181795136,
-181926592, 182057536, 182190016, 182320192, 182451904, 182582336,
-182713792, 182843072, 182976064, 183107264, 183237056, 183368384,
-183494848, 183631424, 183762752, 183893824, 184024768, 184154816,
-184286656, 184417984, 184548928, 184680128, 184810816, 184941248,
-185072704, 185203904, 185335616, 185465408, 185596352, 185727296,
-185859904, 185989696, 186121664, 186252992, 186383552, 186514112,
-186645952, 186777152, 186907328, 187037504, 187170112, 187301824,
-187429184, 187562048, 187693504, 187825472, 187957184, 188087104,
-188218304, 188349376, 188481344, 188609728, 188743616, 188874304,
-189005248, 189136448, 189265088, 189396544, 189528128, 189660992,
-189791936, 189923264, 190054208, 190182848, 190315072, 190447424,
-190577984, 190709312, 190840768, 190971328, 191102656, 191233472,
-191364032, 191495872, 191626816, 191758016, 191888192, 192020288,
-192148928, 192282176, 192413504, 192542528, 192674752, 192805952,
-192937792, 193068608, 193198912, 193330496, 193462208, 193592384,
-193723456, 193854272, 193985984, 194116672, 194247232, 194379712,
-194508352, 194641856, 194772544, 194900672, 195035072, 195166016,
-195296704, 195428032, 195558592, 195690304, 195818176, 195952576,
-196083392, 196214336, 196345792, 196476736, 196607552, 196739008,
-196869952, 197000768, 197130688, 197262784, 197394368, 197523904,
-197656384, 197787584, 197916608, 198049472, 198180544, 198310208,
-198442432, 198573632, 198705088, 198834368, 198967232, 199097792,
-199228352, 199360192, 199491392, 199621696, 199751744, 199883968,
-200014016, 200146624, 200276672, 200408128, 200540096, 200671168,
-200801984, 200933312, 201062464, 201194944, 201326144, 201457472,
-201588544, 201719744, 201850816, 201981632, 202111552, 202244032,
-202374464, 202505152, 202636352, 202767808, 202898368, 203030336,
-203159872, 203292608, 203423296, 203553472, 203685824, 203816896,
-203947712, 204078272, 204208192, 204341056, 204472256, 204603328,
-204733888, 204864448, 204996544, 205125568, 205258304, 205388864,
-205517632, 205650112, 205782208, 205913536, 206044736, 206176192,
-206307008, 206434496, 206569024, 206700224, 206831168, 206961856,
-207093056, 207223616, 207355328, 207486784, 207616832, 207749056,
-207879104, 208010048, 208141888, 208273216, 208404032, 208534336,
-208666048, 208796864, 208927424, 209059264, 209189824, 209321792,
-209451584, 209582656, 209715136, 209845568, 209976896, 210106432,
-210239296, 210370112, 210501568, 210630976, 210763712, 210894272,
-211024832, 211156672, 211287616, 211418176, 211549376, 211679296,
-211812032, 211942592, 212074432, 212204864, 212334016, 212467648,
-212597824, 212727616, 212860352, 212991424, 213120832, 213253952,
-213385024, 213515584, 213645632, 213777728, 213909184, 214040128,
-214170688, 214302656, 214433728, 214564544, 214695232, 214826048,
-214956992, 215089088, 215219776, 215350592, 215482304, 215613248,
-215743552, 215874752, 216005312, 216137024, 216267328, 216399296,
-216530752, 216661696, 216790592, 216923968, 217054528, 217183168,
-217316672, 217448128, 217579072, 217709504, 217838912, 217972672,
-218102848, 218233024, 218364736, 218496832, 218627776, 218759104,
-218888896, 219021248, 219151936, 219281728, 219413056, 219545024,
-219675968, 219807296, 219938624, 220069312, 220200128, 220331456,
-220461632, 220592704, 220725184, 220855744, 220987072, 221117888,
-221249216, 221378368, 221510336, 221642048, 221772736, 221904832,
-222031808, 222166976, 222297536, 222428992, 222559936, 222690368,
-222820672, 222953152, 223083968, 223213376, 223345984, 223476928,
-223608512, 223738688, 223869376, 224001472, 224132672, 224262848,
-224394944, 224524864, 224657344, 224788288, 224919488, 225050432,
-225181504, 225312704, 225443776, 225574592, 225704768, 225834176,
-225966784, 226097216, 226229824, 226360384, 226491712, 226623424,
-226754368, 226885312, 227015104, 227147456, 227278528, 227409472,
-227539904, 227669696, 227802944, 227932352, 228065216, 228196288,
-228326464, 228457792, 228588736, 228720064, 228850112, 228981056,
-229113152, 229243328, 229375936, 229505344, 229636928, 229769152,
-229894976, 230030272, 230162368, 230292416, 230424512, 230553152,
-230684864, 230816704, 230948416, 231079616, 231210944, 231342016,
-231472448, 231603776, 231733952, 231866176, 231996736, 232127296,
-232259392, 232388672, 232521664, 232652608, 232782272, 232914496,
-233043904, 233175616, 233306816, 233438528, 233569984, 233699776,
-233830592, 233962688, 234092224, 234221888, 234353984, 234485312,
-234618304, 234749888, 234880832, 235011776, 235142464, 235274048,
-235403456, 235535936, 235667392, 235797568, 235928768, 236057152,
-236190272, 236322752, 236453312, 236583616, 236715712, 236846528,
-236976448, 237108544, 237239104, 237371072, 237501632, 237630784,
-237764416, 237895232, 238026688, 238157632, 238286912, 238419392,
-238548032, 238681024, 238812608, 238941632, 239075008, 239206336,
-239335232, 239466944, 239599168, 239730496, 239861312, 239992384,
-240122816, 240254656, 240385856, 240516928, 240647872, 240779072,
-240909632, 241040704, 241171904, 241302848, 241433408, 241565248,
-241696192, 241825984, 241958848, 242088256, 242220224, 242352064,
-242481856, 242611648, 242744896, 242876224, 243005632, 243138496,
-243268672, 243400384, 243531712, 243662656, 243793856, 243924544,
-244054592, 244187072, 244316608, 244448704, 244580032, 244710976,
-244841536, 244972864, 245104448, 245233984, 245365312, 245497792,
-245628736, 245759936, 245889856, 246021056, 246152512, 246284224,
-246415168, 246545344, 246675904, 246808384, 246939584, 247070144,
-247199552, 247331648, 247463872, 247593536, 247726016, 247857088,
-247987648, 248116928, 248249536, 248380736, 248512064, 248643008,
-248773312, 248901056, 249036608, 249167552, 249298624, 249429184,
-249560512, 249692096, 249822784, 249954112, 250085312, 250215488,
-250345792, 250478528, 250608704, 250739264, 250870976, 251002816,
-251133632, 251263552, 251395136, 251523904, 251657792, 251789248,
-251919424, 252051392, 252182464, 252313408, 252444224, 252575552,
-252706624, 252836032, 252968512, 253099712, 253227584, 253361728,
-253493056, 253623488, 253754432, 253885504, 254017216, 254148032,
-254279488, 254410432, 254541376, 254672576, 254803264, 254933824,
-255065792, 255196736, 255326528, 255458752, 255589952, 255721408,
-255851072, 255983296, 256114624, 256244416, 256374208, 256507712,
-256636096, 256768832, 256900544, 257031616, 257162176, 257294272,
-257424448, 257555776, 257686976, 257818432, 257949632, 258079552,
-258211136, 258342464, 258473408, 258603712, 258734656, 258867008,
-258996544, 259127744, 259260224, 259391296, 259522112, 259651904,
-259784384, 259915328, 260045888, 260175424, 260308544, 260438336,
-260570944, 260700992, 260832448, 260963776, 261092672, 261226304,
-261356864, 261487936, 261619648, 261750592, 261879872, 262011968,
-262143424, 262274752, 262404416, 262537024, 262667968, 262799296,
-262928704, 263061184, 263191744, 263322944, 263454656, 263585216,
-263716672, 263847872, 263978944, 264108608, 264241088, 264371648,
-264501184, 264632768, 264764096, 264895936, 265024576, 265158464,
-265287488, 265418432, 265550528, 265681216, 265813312, 265943488,
-266075968, 266206144, 266337728, 266468032, 266600384, 266731072,
-266862272, 266993344, 267124288, 267255616, 267386432, 267516992,
-267648704, 267777728, 267910592, 268040512, 268172096, 268302784,
-268435264, 268566208, 268696256, 268828096, 268959296, 269090368,
-269221312, 269352256, 269482688, 269614784, 269745856, 269876416,
-270007616, 270139328, 270270272, 270401216, 270531904, 270663616,
-270791744, 270924736, 271056832, 271186112, 271317184, 271449536,
-271580992, 271711936, 271843136, 271973056, 272105408, 272236352,
-272367296, 272498368, 272629568, 272759488, 272891456, 273022784,
-273153856, 273284672, 273415616, 273547072, 273677632, 273808448,
-273937088, 274071488, 274200896, 274332992, 274463296, 274595392,
-274726208, 274857536, 274988992, 275118656, 275250496, 275382208,
-275513024, 275643968, 275775296, 275906368, 276037184, 276167872,
-276297664, 276429376, 276560576, 276692672, 276822976, 276955072,
-277085632, 277216832, 277347008, 277478848, 277609664, 277740992,
-277868608, 278002624, 278134336, 278265536, 278395328, 278526784,
-278657728, 278789824, 278921152, 279052096, 279182912, 279313088,
-279443776, 279576256, 279706048, 279838528, 279969728, 280099648,
-280230976, 280361408, 280493632, 280622528, 280755392, 280887104,
-281018176, 281147968, 281278912, 281411392, 281542592, 281673152,
-281803712, 281935552, 282066496, 282197312, 282329024, 282458816,
-282590272, 282720832, 282853184, 282983744, 283115072, 283246144,
-283377344, 283508416, 283639744, 283770304, 283901504, 284032576,
-284163136, 284294848, 284426176, 284556992, 284687296, 284819264,
-284950208, 285081536]
-```
diff --git a/public/content/translations/pt-br/developers/docs/consensus-mechanisms/pow/mining-algorithms/index.md b/public/content/translations/pt-br/developers/docs/consensus-mechanisms/pow/mining-algorithms/index.md
deleted file mode 100644
index 9cf602208cf..00000000000
--- a/public/content/translations/pt-br/developers/docs/consensus-mechanisms/pow/mining-algorithms/index.md
+++ /dev/null
@@ -1,37 +0,0 @@
----
-title: Algoritmos de mineração
-description: Os algoritmos usados para mineração Ethereum
-lang: pt-br
----
-
-
-A prova de trabalho não está mais subjacente ao mecanismo de consenso do Ethereum, o que significa que a mineração foi desativada. Em vez disso, o Ethereum é garantido por validadores que apostam em ETH. Você pode começar a fazer o staking do seu ETH hoje. Leia mais sobre A Fusão, prova de participação e participação. Esta página é apenas de interesse histórico.
-
-
-A mineração Ethereum usou um algoritmo conhecido como Ethash. A ideia fundamental do algoritmo é que um minerador tente encontrar uma entrada de nonce usando a computação de força bruta, para que o hash resultante seja menor que um limite determinado pela dificuldade calculada. Esse nível de dificuldade pode ser ajustado dinamicamente, permitindo que a produção de blocos ocorra em intervalos regulares.
-
-## Pré-Requisitos {#prerequisites}
-
-Para entender melhor esta página, recomendamos que você leia primeiro sobre o [consenso da prova de trabalho](/developers/docs/consensus-mechanisms/pow) e a [mineração](/developers/docs/consensus-mechanisms/pow/mining).
-
-## Dagger Hashimoto {#dagger-hashimoto}
-
-Dagger Hashimoto foi um algoritmo de pesquisa precursor para mineração Ethereum que Ethash substituiu. Era uma fusão de dois algoritmos diferentes: Dagger e Hashimoto. Foi apenas uma implementação de pesquisa e foi substituída pelo Ethash no momento em que a rede principal do Ethereum foi lançada.
-
-[Dagger](http://www.hashcash.org/papers/dagger.html) envolve a geração de um [Grafo Acíclico Direcionado](https://en.wikipedia.org/wiki/Directed_acyclic_graph), cujas fatias aleatórias do hash são feitas juntas. O princípio central é que cada nonce requer apenas uma pequena porção de uma grande árvore de dados total. Recomputar a subárvore para cada nonce é proibitivo para a mineração – daí a necessidade de armazenar a árvore – mas tudo bem para uma única verificação de valor do nonce. O Dagger foi projetado para ser uma alternativa aos algoritmos existentes como o Scrypt, que fazem uso intenso de memória, mas que são difíceis de verificar conforme a utilização de memória aumenta para níveis genuinamente seguros. No entanto, Dagger era vulnerável à aceleração de hardware de memória compartilhada e caiu em favor de outras vias de pesquisa.
-
-[Hashimoto](http://diyhpl.us/%7Ebryan/papers2/bitcoin/meh/hashimoto.pdf) é um algoritmo que adiciona resistência ASIC ao ser vinculado à E/S (ou seja, leituras de memória são o fator limitante no processo de mineração). A teoria é que a RAM está mais disponível do que a computação; bilhões de dólares em pesquisas já investigaram a otimização de RAM para diferentes casos de uso, o que geralmente envolvem padrões de acesso quase aleatórios (daí “memória de acesso aleatório”). Como resultado, é provável que a memória RAM existente esteja moderadamente próxima do ideal para avaliar o algoritmo. Hashimoto usa a blockchain como fonte de dados, satisfazendo simultaneamente (1) e (3) acima.
-
-Dagger-Hashimoto usou versões modificadas dos algoritmos Dagger e Hashimoto. A diferença entre Dagger Hashimoto e Hashimoto é que, ao invés de usar a blockchain como fonte de dados, o Dagger Hashimoto usa um conjunto de dados gerados de forma personalizada, que atualiza com base nos dados do bloco a cada N blocos. O conjunto de dados é gerado usando o algoritmo Dagger, permitindo calcular com eficiência um subconjunto específico para cada nonce para o algoritmo de verificação de cliente leve. A diferença entre Dagger Hashimoto e Dagger é que, ao contrário do Dagger original, o conjunto de dados usado para consultar o bloco é semipermanente, sendo atualizado apenas em intervalos ocasionais (por exemplo, uma vez por semana). Isso significa que a porção do esforço de geração do conjunto de dados é próxima de zero, de modo que os argumentos de Sergio Lerner a respeito das acelerações de memória compartilhada tornam-se insignificantes.
-
-Mais sobre [Dagger-Hashimoto](/developers/docs/consensus-mechanisms/pow/mining-algorithms/dagger-hashimoto).
-
-## Ethash {#ethash}
-
-Ethash foi o algoritmo de mineração, que na verdade foi usado na rede principal Ethereum real, sob a agora obsoleta arquitetura de prova de trabalho. Ethash foi efetivamente um novo nome dado a uma versão específica do Dagger-Hashimoto depois que o algoritmo foi significativamente atualizado, enquanto ainda herdava os princípios fundamentais de seu antecessor. A rede principal do Ethereum só usava Ethash. Dagger Hashimoto era uma versão de pesquisa e desenvolvimento do algoritmo de mineração que foi substituído antes do início da mineração na rede principal do Ethereum.
-
-[Mais sobre Ethash](/developers/docs/consensus-mechanisms/pow/mining-algorithms/ethash).
-
-## Leitura adicional {#further-reading}
-
-_Conhece um recurso da comunidade que o ajudou? Edite esta página e adicione-a!_
diff --git a/public/content/translations/pt-br/developers/docs/consensus-mechanisms/pow/mining/index.md b/public/content/translations/pt-br/developers/docs/consensus-mechanisms/pow/mining/index.md
index 5d32213258b..254aa27abf7 100644
--- a/public/content/translations/pt-br/developers/docs/consensus-mechanisms/pow/mining/index.md
+++ b/public/content/translations/pt-br/developers/docs/consensus-mechanisms/pow/mining/index.md
@@ -70,9 +70,9 @@ Acompanhe o Austin enquanto ele explica como funciona o processo de mineração
## O algoritmo de mineração {#mining-algorithm}
-A Rede principal do Ethereum usou apenas um algoritmo de mineração, o ["Ethash"](/developers/docs/consensus-mechanisms/pow/mining-algorithms/ethash/). O Ethhash foi o sucessor de um algoritmo de P&D original conhecido como ["Dagger-Hashimoto"](/developers/docs/consensus-mechanisms/pow/mining-algorithms/dagger-hashimoto/).
+A Rede principal do Ethereum usou apenas um algoritmo de mineração, o ["Ethash"](/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/ethash/). O Ethhash foi o sucessor de um algoritmo de P&D original conhecido como ["Dagger-Hashimoto"](/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/dagger-hashimoto/).
-[Mais sobre algoritmos de mineração](/developers/docs/consensus-mechanisms/pow/mining-algorithms/).
+[Mais sobre algoritmos de mineração](/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/).
## Tópicos relacionados {#related-topics}
diff --git a/public/content/translations/pt-br/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/dagger-hashimoto/index.md b/public/content/translations/pt-br/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/dagger-hashimoto/index.md
index c396ee0a381..39aabac4433 100644
--- a/public/content/translations/pt-br/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/dagger-hashimoto/index.md
+++ b/public/content/translations/pt-br/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/dagger-hashimoto/index.md
@@ -4,7 +4,7 @@ description: O algoritmo Dagger-Hashimoto em detalhes
lang: pt-br
---
-Dagger-Hashimoto foi a implementação original de pesquisa e especificação para o algoritmo de mineração do Ethereum. Dagger-Hashimoto foi substituído por [Ethash](#ethash). A mineração foi completamente desligada na [Fusão](/updates/merge) no dia 15 de setembro de 2022. Desde então, o Ethereum foi protegido usando um mecanismo [prova de participação](/developers/docs/consensus-mechanisms/pos). Esta página é para fins históricos. As informações aqui não são mais relevantes para o Ethereum posterior à Fusão.
+Dagger-Hashimoto foi a implementação original de pesquisa e especificação para o algoritmo de mineração do Ethereum. Dagger-Hashimoto foi substituído por [Ethash](#ethash). A mineração foi completamente desligada na [Fusão](/roadmap/merge/) no dia 15 de setembro de 2022. Desde então, o Ethereum foi protegido usando um mecanismo [prova de participação](/developers/docs/consensus-mechanisms/pos). Esta página é para fins históricos. As informações aqui não são mais relevantes para o Ethereum posterior à Fusão.
## Pré-Requisitos {#prerequisites}
diff --git a/public/content/translations/pt-br/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/ethash/index.md b/public/content/translations/pt-br/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/ethash/index.md
index 547b3e3c738..20bc33435ee 100644
--- a/public/content/translations/pt-br/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/ethash/index.md
+++ b/public/content/translations/pt-br/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/ethash/index.md
@@ -8,7 +8,7 @@ lang: pt-br
Ethash foi o algoritmo de mineração da prova de trabalho do Ethereum. A prova de trabalho foi agora **totalmente desativada** e o Ethereum agora está protegido usando a prova de participação. Leia mais sobre A Fusão (The Merge), prova de participação e participação (stake). Esta página é de interesse histórico!
-[Ethash](https://github.com/ethereum/wiki/wiki/Ethash) é uma versão modificada do algoritmo [Dagger-Hashimoto](/developers/docs/consensus-mechanisms/pow/mining-algorithms/dagger-hashimoto). A prova de trabalho Ethash faz uso de [muita memória](https://wikipedia.org/wiki/Memory-hard_function), o que foi pensado para tornar o algoritmo ASIC resistente. Os ASICs Ethash foram eventualmente desenvolvidos, mas a mineração de GPU ainda era uma opção viável até que a prova de trabalho fosse desativada. Ethash ainda é usado para minerar outras moedas em outras redes de prova de trabalho não Ethereum.
+[Ethash](https://github.com/ethereum/wiki/wiki/Ethash) é uma versão modificada do algoritmo [Dagger-Hashimoto](/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/dagger-hashimoto). A prova de trabalho Ethash faz uso de [muita memória](https://wikipedia.org/wiki/Memory-hard_function), o que foi pensado para tornar o algoritmo ASIC resistente. Os ASICs Ethash foram eventualmente desenvolvidos, mas a mineração de GPU ainda era uma opção viável até que a prova de trabalho fosse desativada. Ethash ainda é usado para minerar outras moedas em outras redes de prova de trabalho não Ethereum.
## Como o Ethash funciona? {#how-does-ethash-work}
@@ -44,7 +44,7 @@ ACCESSES = 64 # number of accesses in hashimoto loop
### O uso de 'SHA3' {#sha3}
-O desenvolvimento do Ethereum coincidiu com o desenvolvimento do padrão SHA3, e o processo de padrões fez uma alteração tardia no preenchimento do algoritmo de hash finalizado, para que os hashes "sha3_256" e "sha3_512" do Ethereum não sejam hashes sha3 padrão, mas uma variante muitas vezes referida como "Keccak-256" e "Keccak-512" em outros contextos. Veja a discussão, por exemplo, [aqui](https://eips.ethereum.org/EIPS-1803), [aqui](http://ethereum.stackexchange.com/questions/550/which-cryptographic-hash-function-does-ethereum-use) ou [aqui](http://bitcoin.stackexchange.com/questions/42055/what-is-the-approach-to-calculate-an-ethereum-address-from-a-256-bit-private-key/42057#42057).
+O desenvolvimento do Ethereum coincidiu com o desenvolvimento do padrão SHA3, e o processo de padrões fez uma alteração tardia no preenchimento do algoritmo de hash finalizado, para que os hashes "sha3_256" e "sha3_512" do Ethereum não sejam hashes sha3 padrão, mas uma variante muitas vezes referida como "Keccak-256" e "Keccak-512" em outros contextos. Veja a discussão, por exemplo, [aqui](https://eips.ethereum.org/EIPS/eip-1803), [aqui](http://ethereum.stackexchange.com/questions/550/which-cryptographic-hash-function-does-ethereum-use) ou [aqui](http://bitcoin.stackexchange.com/questions/42055/what-is-the-approach-to-calculate-an-ethereum-address-from-a-256-bit-private-key/42057#42057).
Tenha isso em mente, já que hashes "sha3" são referidos na descrição do algoritmo abaixo.
diff --git a/public/content/translations/pt-br/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/index.md b/public/content/translations/pt-br/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/index.md
index 0ddb2a85281..c102139af25 100644
--- a/public/content/translations/pt-br/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/index.md
+++ b/public/content/translations/pt-br/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/index.md
@@ -24,13 +24,13 @@ Dagger Hashimoto foi um algoritmo de pesquisa precursor para mineração Ethereu
Dagger-Hashimoto usou versões modificadas dos algoritmos Dagger e Hashimoto. A diferença entre Dagger Hashimoto e Hashimoto é que, ao invés de usar a blockchain como fonte de dados, o Dagger Hashimoto usa um conjunto de dados gerados de forma personalizada, que atualiza com base nos dados do bloco a cada N blocos. O conjunto de dados é gerado usando o algoritmo Dagger, permitindo calcular com eficiência um subconjunto específico para cada nonce para o algoritmo de verificação de cliente leve. A diferença entre Dagger Hashimoto e Dagger é que, ao contrário do Dagger original, o conjunto de dados usado para consultar o bloco é semipermanente, sendo atualizado apenas em intervalos ocasionais (por exemplo, uma vez por semana). Isso significa que a porção do esforço de geração do conjunto de dados é próxima de zero, de modo que os argumentos de Sergio Lerner a respeito das acelerações de memória compartilhada tornam-se insignificantes.
-Mais sobre [Dagger-Hashimoto](/developers/docs/consensus-mechanisms/pow/mining-algorithms/dagger-hashimoto).
+Mais sobre [Dagger-Hashimoto](/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/dagger-hashimoto).
## Ethash {#ethash}
Ethash foi o algoritmo de mineração, que na verdade foi usado na rede principal Ethereum real, sob a agora obsoleta arquitetura de prova de trabalho. Ethash foi efetivamente um novo nome dado a uma versão específica do Dagger-Hashimoto depois que o algoritmo foi significativamente atualizado, enquanto ainda herdava os princípios fundamentais de seu antecessor. A rede principal do Ethereum só usava Ethash. Dagger Hashimoto era uma versão de pesquisa e desenvolvimento do algoritmo de mineração que foi substituído antes do início da mineração na rede principal do Ethereum.
-[Mais sobre Ethash](/developers/docs/consensus-mechanisms/pow/mining-algorithms/ethash).
+[Mais sobre Ethash](/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/ethash).
## Leitura adicional {#further-reading}
diff --git a/public/content/translations/pt-br/developers/docs/data-and-analytics/block-explorers/index.md b/public/content/translations/pt-br/developers/docs/data-and-analytics/block-explorers/index.md
index ddf69dd3028..cae3d78a4db 100644
--- a/public/content/translations/pt-br/developers/docs/data-and-analytics/block-explorers/index.md
+++ b/public/content/translations/pt-br/developers/docs/data-and-analytics/block-explorers/index.md
@@ -16,13 +16,13 @@ Você deve entender os conceitos básicos do Ethereum; para que você possa ente
- [Etherscan](https://etherscan.io/) -_Também disponível em chinês, coreano, russo e japonês_
- [Beaconcha.in](https://beaconcha.in/)
- [Blockchair](https://blockchair.com/ethereum) -_ Também disponível em espanhol, francês, italiano, holandês, português, russo, chinês e persa_
-- [Blockscout](https://blockscout.com/)
+- [Blockscout](https://eth.blockscout.com/)
+- [Chainlens](https://www.chainlens.com/)
- [Etherchain](https://www.etherchain.org/)
- [Ethplorer](https://ethplorer.io/) -_ Também disponível em chinês, espanhol, francês, turco, russo, coreano e vietnamita_
+- [EthVM](https://www.ethvm.com/)
- [OKLink](https://www.oklink.com/eth)
- [Otterscan](https://otterscan.io/)
-- [Sirato](https://www.web3labs.com/sirato)
-- [EthVM](https://www.ethvm.com/)
## Dados {#data}
diff --git a/public/content/translations/pt-br/developers/docs/networks/index.md b/public/content/translations/pt-br/developers/docs/networks/index.md
index f01cbe3f3da..93749799e8d 100644
--- a/public/content/translations/pt-br/developers/docs/networks/index.md
+++ b/public/content/translations/pt-br/developers/docs/networks/index.md
@@ -60,7 +60,6 @@ As duas redes de testes públicas que os desenvolvedores dos clientes estão atu
- [Faucet do Alchemy Sepolia](https://sepoliafaucet.com/)
- [Faucet do Infura Sepolia](https://www.infura.io/faucet)
- [Faucet da Chainstack Sepolia](https://faucet.chainstack.com/sepolia-faucet)
-- [Faucet da rede de teste | Sepolia](https://testnet-faucet.com/sepolia/)
#### Goerli _(suporte a longo prazo)_ {#goerli}
diff --git a/public/content/translations/pt-br/developers/docs/nodes-and-clients/nodes-as-a-service/index.md b/public/content/translations/pt-br/developers/docs/nodes-and-clients/nodes-as-a-service/index.md
index ed7f6e6409c..6596e49bc1f 100644
--- a/public/content/translations/pt-br/developers/docs/nodes-and-clients/nodes-as-a-service/index.md
+++ b/public/content/translations/pt-br/developers/docs/nodes-and-clients/nodes-as-a-service/index.md
@@ -41,7 +41,7 @@ O principal benefício para usar um serviço de nós é não ter de gastar tempo
Executar seus próprios nós pode ser muito caro, quer seja de armazenamento, largura de banda, quer de tempo de engenharia. Dispor de mais nós ao dimensionar, atualizar nós para as versões mais recentes e garantir a consistência dos estados pode roubar tempo para criar e usar recursos no seu produto web3 desejado.
-## Quais são os benefícios do uso do serviço de nós? {#cons-of-using-a-node-service}
+## Quais são os contras do uso do serviço de nós? {#cons-of-using-a-node-service}
Usando um serviço nó você está centralizando o aspecto da infraestrutura do seu produto. Por esse motivo, os projetos que dão à descentralização a maior importância podem preferir nós de auto-hospedagem a terceirizar o serviço a terceiros.
diff --git a/public/content/translations/pt-br/developers/docs/programming-languages/python/index.md b/public/content/translations/pt-br/developers/docs/programming-languages/python/index.md
index 100eaca3bc6..1cf6176d26b 100644
--- a/public/content/translations/pt-br/developers/docs/programming-languages/python/index.md
+++ b/public/content/translations/pt-br/developers/docs/programming-languages/python/index.md
@@ -82,7 +82,7 @@ Os seguintes projetos baseados na Ethereum usam ferramentas mencionadas nesta p
## Comunidade de discussão Python {#python-community-contributors}
- [Comunidade Discord Python Ethereum](https://discord.gg/9zk7snTfWe) Para discussões sobre Web3.py e outros frameworks Python
-- [Vyper Discord](<[https://discord.gg/9zk7snTfWe](https://discord.gg/SdvKC79cJk)>) Para discussão sobre programação de contrato inteligente com Vyper
+- [Vyper Discord](https://discord.gg/SdvKC79cJk) Para discussão sobre programação de contrato inteligente com Vyper
## Demais listas agregadas {#other-aggregated-lists}
diff --git a/public/content/translations/pt-br/developers/docs/scaling/validium/index.md b/public/content/translations/pt-br/developers/docs/scaling/validium/index.md
index b4976043580..d37f6062ec5 100644
--- a/public/content/translations/pt-br/developers/docs/scaling/validium/index.md
+++ b/public/content/translations/pt-br/developers/docs/scaling/validium/index.md
@@ -153,7 +153,7 @@ Vários projetos fornecem implementações de validium e volitions que você pod
**Matter Labs zkPorter**: _zkPorter é um protocolo de dimensionamento de camada 2 que aborda a disponibilidade de dados com uma abordagem híbrida que combina os conceitos de zkRollup e sharding. Pode suportar arbitrariamente muitos shards, cada um com sua própria política de disponibilidade de dados._
-- [Documentação](https://docs.zksync.io/zkevm/#what-is-zkporter)
+- [Documentação](https://docs.zksync.io/zk-stack/concepts/hyperchains-hyperscaling.html#logical-state-partitions-in-zk-porters)
- [Website](https://zksync.io/)
## Leitura adicional {#further-reading}
diff --git a/public/content/translations/pt-br/developers/docs/standards/index.md b/public/content/translations/pt-br/developers/docs/standards/index.md
index e87a57e4faf..aeb6482c967 100644
--- a/public/content/translations/pt-br/developers/docs/standards/index.md
+++ b/public/content/translations/pt-br/developers/docs/standards/index.md
@@ -18,7 +18,7 @@ Normalmente, os padrões são apresentados como [Propostas de melhorias do Ether
- [Introdução à governança do Ethereum](/governance/)
- [Visão geral da governança Ethereum](https://web.archive.org/web/20201107234050/https://blog.bmannconsulting.com/ethereum-governance/) _31 de Março de 2019 - Boris Mann_
- [Coordenação de desenvolvimento do protocolo de governança do Ethereum e atualização da rede](https://hudsonjameson.com/2020-03-23-ethereum-protocol-development-governance-and-network-upgrade-coordination/) _23 de Março 23 - Hudson Jameson_
-- [Lista de reprodução de todas as reuniões de Ethereum Core Dev](https://www.youtube.com/playlist?list=PLaM7G4Llrb7zfMXCZVEXEABT8OSnd4-7w) _(YouTube Playlist)_
+- [Lista de reprodução de todas as reuniões de Ethereum Core Dev](https://www.youtube.com/@EthereumProtocol) _(YouTube Playlist)_
## Tipos de padrões {#types-of-standards}
diff --git a/public/content/translations/pt-br/developers/tutorials/erc-721-vyper-annotated-code/index.md b/public/content/translations/pt-br/developers/tutorials/erc-721-vyper-annotated-code/index.md
index 960c69543fb..fbc70bd02c3 100644
--- a/public/content/translations/pt-br/developers/tutorials/erc-721-vyper-annotated-code/index.md
+++ b/public/content/translations/pt-br/developers/tutorials/erc-721-vyper-annotated-code/index.md
@@ -13,7 +13,7 @@ published: 2021-04-01
## Introdução {#introduction}
-O [ERC-721](/developers/docs/standards/tokens/erc-721/) padrão é usado para manter a propriedade de tokens não fungíveis (NFT). [ERC-20](/developers/docs/standards/totens/erc-20/) os tokens se comportam como uma mercadoria, porque não há diferença entre os totens individuais. Em contraste com isso, ERC-721 tokens são projetados para ativos semelhantes, mas não idênticos, como diferentes [cat cartoons](https://www.cryptokitties.co/) ou títulos de diferentes imóveis.
+O [ERC-721](/developers/docs/standards/tokens/erc-721/) padrão é usado para manter a propriedade de tokens não fungíveis (NFT). [ERC-20](/developers/docs/standards/tokens/erc-20/) os tokens se comportam como uma mercadoria, porque não há diferença entre os totens individuais. Em contraste com isso, ERC-721 tokens são projetados para ativos semelhantes, mas não idênticos, como diferentes [cat cartoons](https://www.cryptokitties.co/) ou títulos de diferentes imóveis.
Neste artigo, vamos analisar o [contrato ERC-721 de Ryuya Nakamura](https://github.com/vyperlang/vyper/blob/master/examples/tokens/ERC721.vy). Este contrato é escrito em [Vyper](https://vyper.readthedocs.io/en/latest/index.html), a Python-like linguagem de contrato projetada para tornar é mais difícil escrever código inseguro do que na solidez.
diff --git a/public/content/translations/pt-br/developers/tutorials/send-token-etherjs/index.md b/public/content/translations/pt-br/developers/tutorials/send-token-ethersjs/index.md
similarity index 100%
rename from public/content/translations/pt-br/developers/tutorials/send-token-etherjs/index.md
rename to public/content/translations/pt-br/developers/tutorials/send-token-ethersjs/index.md
diff --git a/public/content/translations/pt-br/developers/tutorials/uniswap-v2-annotated-code/index.md b/public/content/translations/pt-br/developers/tutorials/uniswap-v2-annotated-code/index.md
index abb2688c1cb..6e7dc1e351c 100644
--- a/public/content/translations/pt-br/developers/tutorials/uniswap-v2-annotated-code/index.md
+++ b/public/content/translations/pt-br/developers/tutorials/uniswap-v2-annotated-code/index.md
@@ -743,7 +743,7 @@ Essa é a função principal da fábrica, para criar um par de troca entre dois
(address token0, address token1) = tokenA < tokenB ? (tokenA, tokenB) : (tokenB, tokenA);
```
-Queremos que o endereço da nova troca seja determinante, para poder ser calculado antecipadamente fora da cadeia (isso pode ser útil para [transações com camada 2](/developers/docs/layer-2-scaling/)). Para isso, precisamos ter uma ordem consistente dos endereços dos tokens, independente da ordem na qual nós os recebemos, então os classificamos aqui.
+Queremos que o endereço da nova troca seja determinante, para poder ser calculado antecipadamente fora da cadeia (isso pode ser útil para [transações com camada 2](/developers/docs/scaling/)). Para isso, precisamos ter uma ordem consistente dos endereços dos tokens, independente da ordem na qual nós os recebemos, então os classificamos aqui.
```solidity
require(token0 != address(0), 'UniswapV2: ZERO_ADDRESS');
diff --git a/public/content/translations/pt-br/developers/tutorials/waffle-dynamic-mocking-and-testing-calls/index.md b/public/content/translations/pt-br/developers/tutorials/waffle-dynamic-mocking-and-testing-calls/index.md
index 166750fb68b..651f49afe6a 100644
--- a/public/content/translations/pt-br/developers/tutorials/waffle-dynamic-mocking-and-testing-calls/index.md
+++ b/public/content/translations/pt-br/developers/tutorials/waffle-dynamic-mocking-and-testing-calls/index.md
@@ -295,4 +295,4 @@ O código fonte deste tutorial pode ser encontrado [aqui](https://github.com/Eth
Você pode também estar interessado em:
-- [Testando contratos inteligentes com Waffle](/developers/tutorials/testing-smart-contract-with-waffle/)
+- [Testando contratos inteligentes com Waffle](/developers/tutorials/waffle-test-simple-smart-contract/)
diff --git a/public/content/translations/pt-br/developers/tutorials/waffle-test-simple-smart-contract/index.md b/public/content/translations/pt-br/developers/tutorials/waffle-test-simple-smart-contract/index.md
index 1a3ade19e87..8d2d9f44d07 100644
--- a/public/content/translations/pt-br/developers/tutorials/waffle-test-simple-smart-contract/index.md
+++ b/public/content/translations/pt-br/developers/tutorials/waffle-test-simple-smart-contract/index.md
@@ -200,4 +200,4 @@ Você acabou de dar seu primeiro grande passo para testar contratos inteligentes
- [Testando ERC20 com Waffle](/developers/tutorials/testing-erc-20-tokens-with-waffle/)
- [Waffle: simulações dinâmicas e testando chamadas de contrato](/developers/tutorials/waffle-dynamic-mocking-and-testing-calls/#gatsby-focus-wrapper)
-- [Waffle diga olá mundo tutorial com capacete de segurança e ethers](/developers/tutorials/waffle-hello-world-with-buidler-tutorial/)
+- [Waffle diga olá mundo tutorial com capacete de segurança e ethers](/developers/tutorials/waffle-say-hello-world-with-hardhat-and-ethers/)
diff --git a/public/content/translations/pt-br/enterprise/index.md b/public/content/translations/pt-br/enterprise/index.md
index 55796b31763..1e3004c2919 100644
--- a/public/content/translations/pt-br/enterprise/index.md
+++ b/public/content/translations/pt-br/enterprise/index.md
@@ -51,7 +51,7 @@ Diversas organizações trabalharam juntas para tornar o Ethereum amigável para
- O [Blast](https://blastapi.io/) _é uma plataforma de API que fornece APIs RPC/WSS para a Rede principal e as Redes de teste para o arquivo do Ethereum._
- [Blockapps](https://blockapps.net/) _é uma implementação do protocolo Ethereum para empresas, com ferramentas e APIs que formam a plataforma STRATO_
- O [Chainstack](https://chainstack.com/) _é a infraestrutura da rede principal e da rede de testes do Ethereum hospedada em nuvens de clientes isolados e públicos_
-- O [ConsenSys](https://consensys.net/) _fornece uma variedade de produtos e ferramentas para construção no Ethereum, bem como serviços de consultoria e desenvolvimento personalizado_
+- O [ConsenSys](https://consensys.io/) _fornece uma variedade de produtos e ferramentas para construção no Ethereum, bem como serviços de consultoria e desenvolvimento personalizado_
- O [Envision Blockchain](https://envisionblockchain.com/) _fornece serviços de consultoria e desenvolvimento com foco empresarial especializados na Rede principal Ethereum_
- O [EY OpsChain](https://blockchain.ey.com/products/contract-manager) _fornece um fluxo de trabalho de aquisição, emitindo contratos da RFQ, ordens de compra e faturas em sua rede de parceiros de negócios confiáveis_
- O [Hyperledger Besu](https://www.hyperledger.org/use/besu) _é um cliente Ethereum de código aberto desenvolvido sob licença Apache 2.0 e escrito em Java_
@@ -68,7 +68,7 @@ Diversas organizações trabalharam juntas para tornar o Ethereum amigável para
### Ferramentas e bibliotecas {#tooling-and-libraries}
- [Alethio](https://explorer.aleth.io/) _Plataforma de Análise de Dados do Ethereum_
-- [Sirato](https://www.web3labs.com/sirato) _uma plataforma de dados e análises para redes públicas e privadas Ethereum compatíveis da Web3 Labs_
+- [Chainlens](https://www.chainlens.com/) _uma plataforma de dados e análises para redes públicas e privadas Ethereum compatíveis da Web3 Labs_
- [Ernst & Young ‘Nightfall’](https://github.com/EYBlockchain/nightfall) _é um conjunto de ferramentas para transações privadas_
- [EthSigner](https://github.com/ConsenSys/ethsigner) _é um aplicativo de assinatura de transações para ser usado com um provedor web3_
- [Tenderly](https://tenderly.co/) _é uma plataforma de dados que fornece análise em tempo real, alertando e monitorando com suporte a redes privadas_
@@ -102,13 +102,12 @@ Aqui estão alguns dos aplicativos corporativos que foram construídos em cima d
- [Tinlake](https://tinlake.centrifuge.io/) _ – financiamento de recebíveis por meio de ativos reais gerados por token, como faturas, hipotecas ou royalties de streaming_
- [RealT](https://realt.co/) _ – investidores em todo o mundo podem comprar no mercado imobiliário dos EUA por meio de uma propriedade totalmente compatível, fracionada e gerada por token._
-- [AgroToken](https://agrotoken.io/en/) _ – gerando tokens e negociando commodities agrícolas_
+- [AgroToken](https://agrotoken.io/en/home) _ – gerando tokens e negociando commodities agrícolas_
- [Fasset](https://www.fasset.com/) _ – uma plataforma para apoiar a infraestrutura sustentável_
### Autenticação de dados {#notarization-of-data}
- [BBVA](https://www.ledgerinsights.com/bbva-blockchain-loan-banking-tech-award/) _ – detalhes dos empréstimos finalizados com hash e registrados na Mainnet_
-- [Splunk](https://www.splunk.com/en_us/blog/security/the-newest-data-attack.html) _ – a integridade dos dados pode ser garantida escrevendo periodicamente hashes de dados indexados para a Mainnet_
- [ANSA](https://cointelegraph.com/news/italys-top-news-agency-uses-blockchain-to-fight-fake-coronavirus-news) _ – a maior agência de notícias da Itália luta contra notícias falsas e permite que os leitores verifiquem a origem das notícias gravando-as na Mainnet_
- [Verizon](https://decrypt.co/46745/verizon-news-press-releases-ethereum-full-transparency) _ – logs da imprensa comunicados na Ethereum para garantir a responsabilidade e a confiança corporativas_
- [Breitling](https://www.coindesk.com/breitling-arianee-all-new-watches-ethereum) _ – registra a proveniência dos registros e o histórico de reparos dos relógios no Ethereum_
@@ -116,13 +115,11 @@ Aqui estão alguns dos aplicativos corporativos que foram construídos em cima d
### Cadeia de abastecimento {#supply-chain}
-- [CargoX](https://cargox.io/press-releases/full/cargox-becomes-first-public-blockchain-ethereum-bill-lading-provider-approved-international-group-pi-clubs) _ – provedor de conhecimento de embarque marítimo e transferência de documentos_
- [Morpheus.network](https://morpheus.network/) _ – plataforma de automação de cadeia de suprimentos que implementa um sistema híbrido de cadeias privadas com dados autenticados na Ethereum Mainnet, sendo usada por empresas como a Federated Co-op Ltd., distribuidora canadense de alimentos, petróleo e gás, e a Vitalcan, fornecedora argentina de alimentos para animais._
- [Minespider](https://www.minespider.com/) _ – rastreamento da cadeia de suprimentos_
- [EY OpsChain Contract Manager](https://blockchain.ey.com/products/contract-manager) _ – permite que as empresas participem de um fluxo de processo de aquisição, emitindo pedidos de cotação (RFQ), contratos, ordens de compra e faturas para toda a sua rede de parceiros de negócios confiáveis_
- [Treum](https://treum.io/) _ – traz transparência, capacidade de rastreio e negociação para cadeias de abastecimento, usando a tecnologia de blockchain_
- [TradeTrust](https://www.tradetrust.io/) _ – verifica conhecimentos de embarque marítimo eletrônicos (eBLs) para envio internacional_
-- [Birra Peroni](https://www.ey.com/en_gl/news/2021/05/birra-peroni-is-the-first-industrial-organization-to-mint-unique-non-fungible-tokens-using-ey-opschain-traceability) _ – cunha NFTs para cada lote de cerveja, permitindo maior visibilidade e eficiência ao longo de sua cadeia de suprimentos_
### Seguros {#insurance}
diff --git a/public/content/translations/pt-br/enterprise/private-ethereum/index.md b/public/content/translations/pt-br/enterprise/private-ethereum/index.md
index 88829be24b7..e50d54e6870 100644
--- a/public/content/translations/pt-br/enterprise/private-ethereum/index.md
+++ b/public/content/translations/pt-br/enterprise/private-ethereum/index.md
@@ -24,5 +24,4 @@ Diversas organizações trabalharam juntas para tornar o Ethereum amigável para
- [Hyperledger Besu](https://www.hyperledger.org/use/besu) _Cliente Ethereum de código aberto desenvolvido sob a licença Apache 2.0 e escrito em Java, que inclui vários algoritmos de consenso, incluindo PoW e PoA (IBFT, IBFT 2.0, Etherhash e Clique). Seus esquemas abrangentes de permissão são projetados especificamente para uso em um ambiente de consórcio._
- [Hyperledger Burrow](https://www.hyperledger.org/projects/hyperledger-burrow) _cliente de cadeia de blocos modular com um intérprete de contratos inteligentes autorizados, parcialmente desenvolvido para a especificação da Máquina Virtual do Ethereum (EVM)_
- [Kaleido](https://kaleido.io/) _ é uma plataforma de pilha completa para construção e execução de ecossistemas empresariais multinuvem e híbridos_
-- [Quorum](https://consensys.net/quorum/) _ é uma plataforma de cadeia de blocos para empresas de código aberto baseada em Ethereum, com recursos avançados de nível empresarial, oferecendo privacidade, permissões e desempenho_
- [Zeeve](https://www.zeeve.io/) _fornece uma variedade de produtos e ferramentas de criação no Ethereum, além de infraestrutura e APIs para aplicativos Web3 para empresas_
diff --git a/public/content/translations/pt-br/foundation/index.md b/public/content/translations/pt-br/foundation/index.md
index f2c680d4287..2d62dcf90cf 100644
--- a/public/content/translations/pt-br/foundation/index.md
+++ b/public/content/translations/pt-br/foundation/index.md
@@ -27,7 +27,7 @@ Desde 2014, a Fundação Ethereum organiza a Devcon, uma conferência anual para
Você pode acessar todo o conteúdo de vídeo das conferências de cada ano em [archive.devcon.org](https://archive.devcon.org/).
-Saiba mais em [devcon.org](https://devcon.org/), confira o [Blog da Devcon](https://blog.ethereum.org/category/devcon/) ou siga [@efdevcon](https://twitter.com/EFDevcon) para ler os últimos comunicados.
+Saiba mais em [devcon.org](https://devcon.org/), confira o [Blog da Devcon](https://blog.ethereum.org/category/events/) ou siga [@efdevcon](https://twitter.com/EFDevcon) para ler os últimos comunicados.
### Programa de Bolsas {#fellowship-program}
diff --git a/public/content/translations/pt-br/glossary/index.md b/public/content/translations/pt-br/glossary/index.md
index fc01e6ec800..e541bb16e2d 100644
--- a/public/content/translations/pt-br/glossary/index.md
+++ b/public/content/translations/pt-br/glossary/index.md
@@ -378,7 +378,7 @@ Uma etiqueta dada a alguns [EIPs](#eip) que tentam definir um padrão específic
Um algoritmo de [prova de trabalho](#pow) que foi usado no Ethereum antes de ele ter mudado para [prova de participação](#pos).
-[Leia mais](/developers/docs/consensus-mechanisms/pow/mining-algorithms/ethash)
+[Leia mais](/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/ethash)
### ether {#ether}
diff --git a/public/content/translations/pt-br/history/index.md b/public/content/translations/pt-br/history/index.md
index c4793903270..7b57eb7ed0f 100644
--- a/public/content/translations/pt-br/history/index.md
+++ b/public/content/translations/pt-br/history/index.md
@@ -13,7 +13,7 @@ Uma linha do tempo dos principais marcos, bifurcações e atualizações da bloc
Bifurcações ocorrem quando grandes atualizações ou alterações técnicas precisam ser feitas na rede, que geralmente são decorrentes de [Propostas de Melhoria do Ethereum (EIPs)] (/ eips /) e alteram as "regras" do protocolo.
-Quando é necessário atualizar um software tradicional, com controle centralizado, a empresa apenas publica uma nova versão para o usuário final. Blockchains funcionam de maneira diferente porque não há propriedade centralizada. [Clientes Ethereum](/developers/docs/nodes-and-clients/) devem atualizar seu software para implementar as novas regras da bifurcação. Além disso, os criadores de bloco (mineradores em um mundo com prova de trabalho, validadores em um mundo com prova de participação) e nós devem criar blocos e validá-los conforme as novas regras. [Mais sobre mecanismos de consenso](/developers/docs/consenus-mechanisms/)
+Quando é necessário atualizar um software tradicional, com controle centralizado, a empresa apenas publica uma nova versão para o usuário final. Blockchains funcionam de maneira diferente porque não há propriedade centralizada. [Clientes Ethereum](/developers/docs/nodes-and-clients/) devem atualizar seu software para implementar as novas regras da bifurcação. Além disso, os criadores de bloco (mineradores em um mundo com prova de trabalho, validadores em um mundo com prova de participação) e nós devem criar blocos e validá-los conforme as novas regras. [Mais sobre mecanismos de consenso](/developers/docs/consensus-mechanisms/)
Essas mudanças de regra podem criar uma divisão temporária na rede. Novos blocos podem ser produzidos conforme as novas regras ou as antigas. Geralmente, as bifurcações são acordadas antes do tempo, para que os clientes adotem as mudanças de uníssono e para que a bifurcação com as melhorias se torne a cadeia principal. No entanto, em casos raros, desacordos sobre as bifurcações podem fazer com que a rede seja dividida permanentemente. Esse foi notadamente o caso para a criação do Ethereum Classic com a [bifurcação DAO] (#dao-fork).
@@ -26,11 +26,11 @@ Procurando por futuras melhorias de protocolo? [Saiba mais sobre as próximas at
## 2023 {#2023}
-### Shanghai {#shanghai}
+### Shanghai-Capella ("Shapella") {#shapella}
-
+
-#### Resumo {#shanghai-summary}
+#### Resumo de Shanghai {#shanghai-summary}
A atualização Shanghai trouxe saques de stake para a camada de execução. Em conjunto com a atualização Capella, isso permitiu que os blocos aceitassem operações de saque, o que permite que os stakers saquem seu ETH da Beacon Chain para a camada de execução.
@@ -46,13 +46,7 @@ A atualização Shanghai trouxe saques de stake para a camada de execução. Em
- [Leia a especificação de atualização Shangai](https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/shanghai.md)
----
-
-### Capella {#capella}
-
-
-
-#### Resumo {#capella-summary}
+#### Resumo de Capella {#capella-summary}
A atualização Capella foi a terceira maior atualização para a camada de consenso (Beacon Chain) e permitiu saques de stake. Capella ocorreu em sincronia com a atualização da camada de execução, Shanghai, e ativou a funcionalidade de saque de stake.
diff --git a/public/content/translations/pt-br/roadmap/beacon-chain/index.md b/public/content/translations/pt-br/roadmap/beacon-chain/index.md
index 1b334ff6b1e..281cee99397 100644
--- a/public/content/translations/pt-br/roadmap/beacon-chain/index.md
+++ b/public/content/translations/pt-br/roadmap/beacon-chain/index.md
@@ -20,7 +20,7 @@ Beacon Chain é o nome do blockchain de prova de participação original que foi
## O que a Beacon Chain faz? {#what-does-the-beacon-chain-do}
-Beacon Chain é o nome dado a um registro de contas que orientava e coordenava a rede de [stakers](/participantes/) do Ethereum antes que começassem a validar blocos reais do Ethereum. Entretanto, não processa transações nem interações de contratos inteligentes, pois isso é feito na camada de execução. A Beacon Chain é responsável por atividades como processamento de blocos e atestações, executação do algoritmo de escolha de bifurcação e gerenciamento de recompensas e penalidades. Leia mais em nossa [página de arquitetura de nós](/developers/docs/nodes-and-clients/node-architecture/#node-comparison).
+Beacon Chain é o nome dado a um registro de contas que orientava e coordenava a rede de [stakers](/staking/) do Ethereum antes que começassem a validar blocos reais do Ethereum. Entretanto, não processa transações nem interações de contratos inteligentes, pois isso é feito na camada de execução. A Beacon Chain é responsável por atividades como processamento de blocos e atestações, executação do algoritmo de escolha de bifurcação e gerenciamento de recompensas e penalidades. Leia mais em nossa [página de arquitetura de nós](/developers/docs/nodes-and-clients/node-architecture/#node-comparison).
## O impacto da Beacon Chain {#beacon-chain-features}
@@ -28,7 +28,7 @@ Beacon Chain é o nome dado a um registro de contas que orientava e coordenava a
A Beacon Chain introduziu a [prova de participação](/developers/docs/consensus-mechanisms/pos/) no Ethereum. Isso mantém o Ethereum protegido e os validadores recebem mais ETH no processo. Na prática, você precisará participar com os seus ETH para ativar o software de validador. Como participante, você executa o software que cria e valida novos blocos na cadeia.
-O processo de participação tem um objetivo semelhante ao da [mineração](/developers/docs/mining/), mas tem muitas diferenças. A mineração exigia grandes investimentos iniciais na forma de um hardware potente e consumo de energia, o que resultava em economias de escala e promovia a centralização. A mineração também não tem como garantia uma exigência de bloqueio de ativos, o que limita a capacidade do protocolo de punir os malfeitores após um ataque.
+O processo de participação tem um objetivo semelhante ao da [mineração](/developers/docs/consensus-mechanisms/pow/mining/), mas tem muitas diferenças. A mineração exigia grandes investimentos iniciais na forma de um hardware potente e consumo de energia, o que resultava em economias de escala e promovia a centralização. A mineração também não tem como garantia uma exigência de bloqueio de ativos, o que limita a capacidade do protocolo de punir os malfeitores após um ataque.
A transição para a prova de participação tornou o Ethereum consideravelmente mais seguro e descentralizado, em comparação com a prova de trabalho. Quanto mais pessoas participarem da rede, mais descentralizada e segura contra ataques ela será.
diff --git a/public/content/translations/pt-br/roadmap/danksharding/index.md b/public/content/translations/pt-br/roadmap/danksharding/index.md
index a55f88767e8..b7c0b1874f2 100644
--- a/public/content/translations/pt-br/roadmap/danksharding/index.md
+++ b/public/content/translations/pt-br/roadmap/danksharding/index.md
@@ -5,7 +5,7 @@ lang: pt-br
summaryPoints:
- Danksharding é uma melhoria em diversas fases para melhorar a escalabilidade e a capacidade do Ethereum.
- A primeira fase, Proto-Danksharding, adiciona blobs de dados aos blocos
- - Os blods de dados oferecem uma maneira mais barata para os rollups publicarem dados no Ethereum e esses custos podem ser repassados aos usuários na forma de taxas de transação mais baixas.
+ - Os blobs de dados oferecem uma maneira mais barata para os rollups publicarem dados no Ethereum e esses custos podem ser repassados aos usuários na forma de taxas de transação mais baixas.
- Posteriormente, o Danksharding completo distribuirá a responsabilidade pela verificação dos blobs de dados em subconjuntos de nós, o que dimensionará ainda mais o Ethereum para mais de 100.000 transações por segundo.
---
@@ -15,7 +15,7 @@ summaryPoints:
## O que é Proto-Danksharding? {#what-is-protodanksharding}
-Proto-Danksharding, também conhecido como [EIP-4844](https://eips.ethereum.org/EIPS/eip-4844), é uma maneira para os [rollups](/layer2/#rollups) adicionarem dados mais baratos aos blocos. O nome vem dos dois pesquisadores que propuseram a ideia: Dankrad Feist e Protolambda. Atualmente, os rollups são limitados quanto ao preço das transações aos usuários pelo fato de publicarem as transações em `CALLDATA`. Isso é caro porque o processamento é feito por todos os nós do Ethereum e permanece na cadeia para sempre, embora os rollups só precisem dos dados por um breve período. Proto-Danksharding introduz blobs de dados que podem ser enviados e anexados aos blocos. Os dados nesses blobs não são acessíveis à EVM e são excluídos automaticamente após um período fixo (1 a 3 meses). Isso significa que os rollups podem enviar os dados de uma maneira muito mais barata e repassar a economia aos usuários finais na forma de transações mais baratas.
+Proto-Danksharding, também conhecido como [EIP-4844](https://eips.ethereum.org/EIPS/eip-4844), é uma maneira para os [rollups](/layer-2/#rollups) adicionarem dados mais baratos aos blocos. O nome vem dos dois pesquisadores que propuseram a ideia: Dankrad Feist e Protolambda. Atualmente, os rollups são limitados quanto ao preço das transações aos usuários pelo fato de publicarem as transações em `CALLDATA`. Isso é caro porque o processamento é feito por todos os nós do Ethereum e permanece na cadeia para sempre, embora os rollups só precisem dos dados por um breve período. Proto-Danksharding introduz blobs de dados que podem ser enviados e anexados aos blocos. Os dados nesses blobs não são acessíveis à EVM e são excluídos automaticamente após um período fixo (1 a 3 meses). Isso significa que os rollups podem enviar os dados de uma maneira muito mais barata e repassar a economia aos usuários finais na forma de transações mais baratas.
diff --git a/public/content/translations/pt-br/roadmap/single-slot-finality/index.md b/public/content/translations/pt-br/roadmap/single-slot-finality/index.md
index da52f022deb..ff826aae6d8 100644
--- a/public/content/translations/pt-br/roadmap/single-slot-finality/index.md
+++ b/public/content/translations/pt-br/roadmap/single-slot-finality/index.md
@@ -58,7 +58,7 @@ O problema da escalabilidade da agregação por meio do aumento do número de va
## Progresso atual {#current-progress}
-A SSF está em fase de pesquisa. A implementação não deverá ocorrer por vários anos, provavelmente apenas após outras melhorias consideráveis, como [Verkle Trees](/roadmap/verkle-trees/) e [Danksharding](/roadmap/danksharding]).
+A SSF está em fase de pesquisa. A implementação não deverá ocorrer por vários anos, provavelmente apenas após outras melhorias consideráveis, como [Verkle Trees](/roadmap/verkle-trees/) e [Danksharding](/roadmap/danksharding/).
## Leitura adicional {#further-reading}
diff --git a/public/content/translations/pt-br/smart-contracts/index.md b/public/content/translations/pt-br/smart-contracts/index.md
index 97afe344015..62abae19473 100644
--- a/public/content/translations/pt-br/smart-contracts/index.md
+++ b/public/content/translations/pt-br/smart-contracts/index.md
@@ -65,7 +65,7 @@ Eles podem realizar cálculos, criar moeda, armazenar dados, mintar NFTs, enviar
- [Stablecoins](/stablecoins/)
- [Criação e distribuição de ativos digitais únicos](/nft/)
- [Uma negociação de moeda automática e aberta](/get-eth/#dex)
-- [Jogos descentralizados](/dapps/?category=gaming)
+- [Jogos descentralizados](/dapps/?category=gaming#explore)
- [Uma apólice de seguro que paga automaticamente](https://etherisc.com/)
- [Um padrão que permite que pessoas criem moedas personalizadas e interoperáveis](/developers/docs/standards/tokens/)
diff --git a/public/content/translations/pt-br/zero-knowledge-proofs/index.md b/public/content/translations/pt-br/zero-knowledge-proofs/index.md
index 6aafda6c72a..9c379a7d0cd 100644
--- a/public/content/translations/pt-br/zero-knowledge-proofs/index.md
+++ b/public/content/translations/pt-br/zero-knowledge-proofs/index.md
@@ -4,7 +4,7 @@ description: Uma introdução não técnica às provas de conhecimento zero para
lang: pt-br
---
-## O que são provas de conhecimento zero? {#what-are-zk-proofs}
+# O que são provas de conhecimento zero? {#what-are-zk-proofs}
Uma prova de conhecimento zero é uma forma de provar a validade de uma afirmação sem a revelar. O “provador” é a parte que tenta provar uma reivindicação, enquanto o “verificador” é responsável pela validação da reivindicação.
diff --git a/public/content/translations/pt/decentralized-identity/index.md b/public/content/translations/pt/decentralized-identity/index.md
index 20efacb5fad..0a1bab55cbc 100644
--- a/public/content/translations/pt/decentralized-identity/index.md
+++ b/public/content/translations/pt/decentralized-identity/index.md
@@ -49,7 +49,7 @@ Os identificadores descentralizados são armazenados em registos distribuídos (
## O que torna possíveis os identificadores descentralizados? {#what-makes-decentralized-identifiers-possible}
-### 1. Infraestrutura de chave pública (PKI) {#public-key-infrastructure}
+### 1. Infraestrutura de chave pública (PKI) {#public-key-cryptography}
A infraestrutura de chave pública (PKI) é uma medida de segurança da informação que gera uma [chave pública](/glossary/#public-key) e uma [chave privada](/glossary/#private-key) para uma entidade. A criptografia de chave pública é utilizada nas redes de blockchain para autenticar as identidades dos utilizadores e provar a propriedade de ativos digitais.
diff --git a/public/content/translations/pt/defi/index.md b/public/content/translations/pt/defi/index.md
index 76fc07aa663..2739116663f 100644
--- a/public/content/translations/pt/defi/index.md
+++ b/public/content/translations/pt/defi/index.md
@@ -47,7 +47,7 @@ Uma das melhores maneiras de conhecer o potencial das DeFi é compreender os pro
| Os mercados estão sempre abertos. | Os mercados encerram porque os funcionários precisam de pausas. |
| O sistema baseia-se na transparência: qualquer pessoa pode consultar os dados de um produto e verificar o funcionamento do sistema. | As instituições financeiras são livros fechados: não é possível pedir para consultar o seu historial de empréstimos, um registo dos seus ativos geridos, etc. |
-
+
Explore as aplicações DeFi
@@ -65,7 +65,7 @@ Isto parece estranho... "por que razão quereria eu programar o meu dinheiro"? N
Explore as nossas sugestões de aplicações DeFi para experimentar se é novo na Ethereum.
-
+
Explore as aplicações DeFi
@@ -92,7 +92,7 @@ Existe uma alternativa descentralizada para a maioria dos serviços financeiros.
Enquanto blockchain, a Ethereum foi concebida para enviar transações de forma segura e global. Tal como a Bitcoin, a Ethereum torna o envio de dinheiro para todo o mundo tão simples como enviar um e-mail. Basta digitar o nome [ENS do destinatário](/nft/#nft-domains) (como bob.eth) ou o endereço da carteira correspondente e o seu pagamento será enviado para o destinatário em minutos (normalmente). Para enviar ou receber pagamentos, é necessário ter uma [carteira](/wallets/).
-
+
Ver dapps de pagamento
@@ -123,7 +123,7 @@ O empréstimo de dinheiro a fornecedores descentralizados pode ser efetuado de d
- Peer-to-peer, o que significa que o mutuário pedirá um empréstimo diretamente a um mutuante específico.
- Baseado num fundo comum, em que os mutuantes fornecem fundos (liquidez) a um fundo comum a partir do qual os mutuários podem contrair empréstimos.
-
+
Ver dapps de empréstimos
@@ -183,7 +183,7 @@ Pode ganhar juros sobre as suas criptomoedas emprestando-as e ver os seus fundos
- O seu aDai aumentará com base nas taxas de juro e poderá ver o seu saldo crescer na sua carteira. Dependendo da TAEG, o saldo da sua carteira será algo como 100,1234 após alguns dias ou mesmo horas!
- Pode levantar um montante de Dai igual ao seu saldo de aDai a qualquer altura.
-
+
Mais sobre dapps de empréstimo
@@ -211,7 +211,7 @@ Há milhares de tokens no Ethereum. As trocas descentralizadas (DEXs) possibilit
Por exemplo, se quiser usar a lotaria sem risco PoolTogether (descrita acima), precisará de um token como o Dai ou o USDC. Estas DEXs permitem-lhe trocar o seu ETH por tokens e vice-versa quando tiver terminado.
-
+
Ver exchanges de tokens
@@ -223,7 +223,7 @@ Existem opções mais avançadas para os operadores que gostam de ter um pouco m
Quando utiliza um câmbiio centralizado, tem de depositar os seus ativos antes da transação e confiar que eles tomam conta deles. Enquanto os seus ativos são depositados, eles estão em risco, pois os câmbios centralizados são alvos apetecíveis para os hackers.
-
+
Ver dapps de negociação
@@ -235,7 +235,7 @@ Existem produtos de gestão de fundos no Ethereum que tentarão fazer aumentar o
Um bom exemplo é o [DeFi Pulse Index fund (DPI)](https://defipulse.com/blog/defi-pulse-index/). Este é um fundo que se reequilibra automaticamente para garantir que o seu portfólio sempre inclua [os principais tokens DeFi por capitalização de mercado](https://www.coingecko.com/en/defi). Não tem de gerir qualquer detalhe e pode levantar qualquer montante do fundo sempre que quiser.
-
+
Consultar dapps de investimento
@@ -249,7 +249,7 @@ O Ethereum é uma plataforma ideal para o crowdfunding (financiamento coletivo):
- É transparente, pelo que os promotores da angariação de fundos podem provar o montante angariado. É até possível acompanhar a forma como os fundos estão a ser gastos ao longo do processo.
- Os promotores de campanhas podem configurar reembolsos automáticos se, por exemplo, houver um prazo específico e um montante mínimo que não seja cumprido.
-
+
Ver dapps de crowdfunding
@@ -276,7 +276,7 @@ Os seguros descentralizados têm como objetivo tornar os seguros mais baratos, m
Os sistemas Ethereum, como qualquer software, podem ser alvo de bugs e exploits. Por isso, atualmente, muitos produtos de seguros no mercado centram-se na proteção dos seus utilizadores contra a perda de fundos. No entanto, há projetos que começam a desenvolver uma cobertura para tudo o que a vida nos pode reservar. Um bom exemplo disto é a cobertura agrícola da Etherisc, que visa [proteger os pequenos agricultores do Quénia contra as secas e inundações](https://blog.etherisc.com/etherisc-teams-up-with-chainlink-to-deliver-crop-insurance-in-kenya-137e433c29dc). Os seguros descentralizados podem proporcionar uma cobertura mais barata aos agricultores que, muitas vezes, não têm acesso aos seguros tradicionais.
-
+
Ver dapps de seguros
@@ -286,7 +286,7 @@ Os sistemas Ethereum, como qualquer software, podem ser alvo de bugs e exploits.
Com tanta iniciativa, precisará de uma forma de acompanhar todos os seus investimentos, empréstimos e negócios. Há uma série de produtos que permitem coordenar toda a atividade DeFi a partir de um único ponto. É a beleza da arquitetura aberta da DeFi. As equipas podem criar interfaces que permitam não só ver os saldos dos diferentes produtos, mas também utilizar as suas funcionalidades. Poderá ser útil para explorar melhor a DeFi.
-
+
Ver dapps de portefólio
diff --git a/public/content/translations/pt/desci/index.md b/public/content/translations/pt/desci/index.md
index 6561239c38b..dbccac25af6 100644
--- a/public/content/translations/pt/desci/index.md
+++ b/public/content/translations/pt/desci/index.md
@@ -68,7 +68,7 @@ O modelo padrão atual para o financiamento da ciência é que indivíduos ou gr
Os estudos demonstraram que os painéis de avaliação das subvenções não selecionam corretamente as propostas de elevada qualidade, uma vez que as mesmas propostas apresentadas a diferentes painéis têm resultados muito distintos. À medida que o financiamento se tornou mais escasso, concentrou-se num grupo mais pequeno de investigadores seniores com projectos intelectualmente mais conservadores. O efeito criou um cenário de financiamento hipercompetitivo, consolidando incentivos perversos e sufocando a inovação.
-A Web3 tem o potencial de romper com este modelo de financiamento obsoleto, experimentando diferentes modelos de incentivo desenvolvidos pelas DAOs e pela Web3 em geral. [Financiamento retroativo de bens públicos](https://medium.com/ethereum-optimism/retroactive-public-goods-funding-33c9b7d00f0c), [financiamento quadrático](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2003531), [governança DAO](https://www.antler.co/blog/daos-and-web3-governance) e [estruturas de incentivo tokenizadas](https://cdixon.org/2017/05/27/crypto-tokens-a-breakthrough-in-open-network-design) são algumas das Ferramentas Web3 que podem revolucionar o financiamento da ciência.
+A Web3 tem o potencial de romper com este modelo de financiamento obsoleto, experimentando diferentes modelos de incentivo desenvolvidos pelas DAOs e pela Web3 em geral. [Financiamento retroativo de bens públicos](https://medium.com/ethereum-optimism/retroactive-public-goods-funding-33c9b7d00f0c), [financiamento quadrático](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2003531), [governança DAO](https://www.antler.co/blog/daos-and-web3-governance-the-promise-implications-and-challenges-ahead) e [estruturas de incentivo tokenizadas](https://cdixon.org/2017/05/27/crypto-tokens-a-breakthrough-in-open-network-design) são algumas das Ferramentas Web3 que podem revolucionar o financiamento da ciência.
### Propriedade intelectual e desenvolvimento {#ip-ownership}
diff --git a/public/content/translations/pt/smart-contracts/index.md b/public/content/translations/pt/smart-contracts/index.md
index d0a4d97136d..3a7e9aca6a1 100644
--- a/public/content/translations/pt/smart-contracts/index.md
+++ b/public/content/translations/pt/smart-contracts/index.md
@@ -65,7 +65,7 @@ Podem efetuar cálculos, criar divisas, armazenar dados, cunhar NFTs, enviar com
- [Stablecoins](/stablecoins/)
- [Criar e distribuir ativos digitais únicos](/nft/)
- [Um câmbio de moeda aberto e automático](/get-eth/#dex)
-- [Jogos descentralizados](/dapps/?category=gaming)
+- [Jogos descentralizados](/dapps/?category=gaming#explore)
- [Uma apólice de seguro que reembolsa automaticamente](https://etherisc.com/)
- [Uma norma que permite criar divisas personalizadas e interoperáveis](/developers/docs/standards/tokens/)
diff --git a/public/content/translations/ro/community/events/index.md b/public/content/translations/ro/community/events/index.md
index dcea31a63e8..cdcfe13c902 100644
--- a/public/content/translations/ro/community/events/index.md
+++ b/public/content/translations/ro/community/events/index.md
@@ -4,7 +4,7 @@ description: Cum să vă implicați în comunitatea Ethereum.
lang: ro
---
-## Evenimente apropiate {#events}
+# Evenimente apropiate {#events}
**În fiecare lună au loc evenimenteEthereum majore în întreaga lume.** Gândiți-vă să participați la unul ce se desfășoară în apropiere, pentru a vă întâlni cu mai multe persoane din comunitate, pentru a afla despre oportunități de angajare și pentru a vă dezvolta noi competențe.
diff --git a/public/content/translations/ro/community/get-involved/index.md b/public/content/translations/ro/community/get-involved/index.md
index 6a17ecee4c9..f5999191e17 100644
--- a/public/content/translations/ro/community/get-involved/index.md
+++ b/public/content/translations/ro/community/get-involved/index.md
@@ -14,7 +14,7 @@ Comunitatea Ethereum include persoane din medii și cu competențe diferite. Fie
- [Găsiți o recompensă pe Gitcoin](https://gitcoin.co/), lucrați la o problemă tehnică mică sau mare, câștigați cripto!
- Participați la „hackathon-ul” [ETHGlobal](http://ethglobal.co/) din apropiere!
- Consultați [proiectele legate de domeniul dvs. de experiență sau de limbajul de programare preferat](/developers/docs/programming-languages/)
-- Vizionați sau participați la [apeluri Core Dev](https://www.youtube.com/playlist?list=PLaM7G4Llrb7zfMXCZVEXEABT8OSnd4-7w) pe YouTube
+- Vizionați sau participați la [apeluri Core Dev](https://www.youtube.com/@EthereumProtocol) pe YouTube
- [Lista de dorințe a Programului de sprijinire a ecosistemului](https://esp.ethereum.foundation/wishlist/) - instrumente, documentație și domenii de infrastructură pentru care Programul de sprijinire a ecosistemului caută în mod activ granturi
- [Web3Bridge](https://www.web3bridge.com/) - alăturați-vă comunității aspirante web3, în inițiativa lor de a identifica, instrui și sprijini sute de dezvoltatori și membri ai comunității din întreaga Africă
diff --git a/public/content/translations/ro/defi/index.md b/public/content/translations/ro/defi/index.md
index ebeb3a848d9..a48e88fe0fd 100644
--- a/public/content/translations/ro/defi/index.md
+++ b/public/content/translations/ro/defi/index.md
@@ -47,7 +47,7 @@ Unul dintre cele mai bune moduri de a ne da seama de potențialul DeFi este prin
| Piețele sunt întotdeauna deschise. | Piețele se închid pentru că angajații trebuie să ia pauze. |
| Este construită pe transparență – oricine se poate uita la datele unui produs și poate inspecta modul în care funcționează sistemul. | Instituțiile financiare sunt registre închise: nu puteți solicita să le vedeți istoricul de împrumuturi, o evidență a activelor pe care le gestionează și altele. |
-
+
Explorați aplicațiile DeFi
@@ -65,7 +65,7 @@ Asta sună ciudat... „De ce aș vrea să-mi programez banii”? Cu toate acest
Explorați sugestiile noastre de aplicațiile DeFi pe care să le testaţi dacă nu aţi mai folosit Ethereum.
-
+
Explorați aplicațiile DeFi
@@ -92,7 +92,7 @@ Există o alternativă descentralizată la majoritatea serviciilor financiare. D
Ca blockchain, Ethereum este destinat tranzacțiilor în mod securizat și la nivel mondial. Ca și Bitcoin, Ethereum trimite bani în întreaga lume tot atât de ușor cum s-ar trimite un e-mail. Introduceți [numele ENS](/nft/#nft-Domains) al destinatarului (precum bob.eth) sau adresa contului acestuia din portofel și plata va fi efectuată direct către acesta în câteva minute (de obicei). Pentru a trimite sau a primi plăți, aveți nevoie de un [portofel](/wallets/).
-
+
Vedeți aplicațiile dapp de plată
@@ -123,7 +123,7 @@ Monede precum Dai sau USDC au o valoare care se menține la câțiva cenți de u
- Direct între participanți (peer-to-peer), adică un debitor va împrumuta direct de la un anume creditor.
- Pe bază de fonduri comune (pool-based), în care creditorii pun la dispoziție fonduri (lichidități) într-o rezervă comună din care debitorii pot împrumuta.
-
+
Vedeți dapp-urile de împrumut
@@ -183,7 +183,7 @@ Puteți să câștigați dobândă creditând cripto și să vedeți cum vă cre
- Valoarea aDai va crește în funcție de ratele dobânzilor și puteți vedea cum vă crește soldul în portofel. În funcție de APR, soldul portofelului va deveni ceva de genul 100,1234 după câteva zile sau chiar ore!
- Puteți retrage în orice moment o cantitate de Dai obișnuită, egală cu soldul dvs. aDai.
-
+
Vedeți dapp-uri de creditare
@@ -211,7 +211,7 @@ Există mii de tokenuri pe Ethereum. Schimburile descentralizate (DEX) vă permi
De exemplu, dacă doriți să folosiți loteria fără pierderi PoolTogether (descrisă mai sus), veți avea nevoie de un token precum Dai sau USDC. DEX-urile vă permit să efectuați schimburi de ETH pentru aceste token-uri și invers în momentul în care ați terminat.
-
+
Vedeți schimburile de tokenuri
@@ -223,7 +223,7 @@ Există opțiuni mai avansate pentru cei ce doresc să tranzacționeze deținân
Atunci când folosiți un schimb centralizat, trebuie să vă depuneți activele înainte de tranzacție și să vă bazați că sunt pe mâini bune. Cât timp activele sunt depuse, acestea sunt în pericol, deoarece schimburile centralizate sunt ținte atractive pentru hackeri.
-
+
Vedeți dapp-urile de tranzacționare
@@ -235,7 +235,7 @@ Există produse de gestionare a fondurilor pe Ethereum care vor încerca să vă
Un bun exemplu este [fondul DeFi Pulse Index (DPI)](https://defipulse.com/blog/defi-pulse-index/). Acesta este un fond care se reechilibrează automat pentru a vă asigura că portofoliul dvs. include întotdeauna [tokenurile de top în funcție de capitalizarea de piață](https://www.coingecko.com/en/defi). Nu trebuie niciodată să gestionați vreun detaliu și puteți retrage din fond oricând doriți.
-
+
Vedeți aplicațiile dapp de investiţii
@@ -249,7 +249,7 @@ Ethereum este o platformă ideală pentru finanțarea participativă:
- Este transparentă, deci colectorii de fonduri pot dovedi câți bani au fost strânși. Puteți urmări chiar și modul în care fondurile sunt cheltuite ulterior, pe parcurs.
- Finanțatorii pot configura rambursări automate dacă, de exemplu, nu s-a respectat un anumit termen limită și nu s-a întrunit o sumă minimă.
-
+
Vedeți aplicațiile dapp de finanțare participativă
@@ -276,7 +276,7 @@ Asigurările descentralizate urmăresc reducerea costurilor de asigurare, fiind
Produsele Ethereum, ca orice software, pot fi afectate de bug-uri și alte moduri de a profita. Deci o mulțime de produse de asigurare din acest spațiu se concentrează acum pe protejarea utilizatorilor acestora de pierderile de fonduri. Cu toate acestea, există proiecte care încep să creeze o acoperire pentru tot ceea ce ni se poate întâmpla. Un bun exemplu în acest sens este asigurarea Etherisc's Crop, care are ca scop [protejarea micilor fermieri din Kenya de secetă și inundații](https://blog.etherisc.com/etherisc-teams-up-with-chainlink-to-deliver-crop-insurance-in-kenya-137e433c29dc). Asigurarea descentralizată poate oferi o acoperire mai ieftină pentru fermierii care adesea nu își pot permite asigurarea tradițională.
-
+
Vedeți dapp-urile de asigurare
@@ -286,7 +286,7 @@ Produsele Ethereum, ca orice software, pot fi afectate de bug-uri și alte modur
Având în vedere ceea ce se întâmplă, veți avea nevoie de o modalitate de a ține evidența tuturor investițiilor, împrumuturilor și tranzacțiilor. Există o multitudine de produse care vă permit să vă coordonați întreaga activitate DeFi dintr-un singur loc. Aceasta este splendoarea arhitecturii DeFi deschise. Echipele pot construi interfețe în care nu puteți doar vedea soldurile din toate produsele, ci puteți folosi și funcțiile acestora. Puteți descoperi utilitatea acestui fapt pe măsură ce continuați explorarea DeFi.
-
+
Vedeți dapp-urile portofoliului
diff --git a/public/content/translations/ro/developers/docs/apis/backend/index.md b/public/content/translations/ro/developers/docs/apis/backend/index.md
index 693bccf354a..83c038457cd 100644
--- a/public/content/translations/ro/developers/docs/apis/backend/index.md
+++ b/public/content/translations/ro/developers/docs/apis/backend/index.md
@@ -12,7 +12,7 @@ Dacă vreţi să utilizaţi un anumit limbaj de programare pentru a vă conecta
## Condiții prealabile {#prerequisites}
-Ar putea fi util să înțelegeți [Stiva Ethereum](/developers/docs/ethereum-stack/) și [ Clienții Ethereum](/developers/docs/nodes-and-clients/).
+Ar putea fi util să înțelegeți [Stiva Ethereum](/developers/docs/ethereum-stack/) și [Clienții Ethereum](/developers/docs/nodes-and-clients/).
## De ce să folosiţi o bibliotecă? {#why-use-a-library}
diff --git a/public/content/translations/ro/developers/docs/apis/javascript/index.md b/public/content/translations/ro/developers/docs/apis/javascript/index.md
index 89e836dc565..2e8de5c88ad 100644
--- a/public/content/translations/ro/developers/docs/apis/javascript/index.md
+++ b/public/content/translations/ro/developers/docs/apis/javascript/index.md
@@ -6,7 +6,7 @@ lang: ro
Pentru ca o aplicație web să interacționeze cu blockchain-ul Ethereum (adică să citească datele blockchain-ului și/sau să trimită tranzacții către rețea), trebuie să se conecteze la un nod Ethereum.
-În acest scop, fiecare client Ethereum implementează specificația [JSON-RPC](/developers/docs/apis/json-rpc/), astfel încât să existe un set uniform de [endpoint-uri](/developers/docs/apis/json-rpc/endpoints/) pe care se pot baza aplicațiile.
+În acest scop, fiecare client Ethereum implementează specificația [JSON-RPC](/developers/docs/apis/json-rpc/), astfel încât să existe un set uniform de [endpoint-uri](/developers/docs/apis/json-rpc/) pe care se pot baza aplicațiile.
Dacă doriţi să utilizaţi JavaScript pentru a vă conecta la un nod Ethereum, puteţi să utilizaţi vanilla JavaScript, dar există mai multe biblioteci utile în ecosistem care facilitează mult acest lucru. Cu aceste biblioteci, programatorii pot scrie metode intuitive şi scurte pentru a inițializa cereri JSON RPC (în culise) care interacționează cu Ethereum.
diff --git a/public/content/translations/ro/developers/docs/data-and-analytics/block-explorers/index.md b/public/content/translations/ro/developers/docs/data-and-analytics/block-explorers/index.md
index 8b87986a0ab..2b0ba36585c 100644
--- a/public/content/translations/ro/developers/docs/data-and-analytics/block-explorers/index.md
+++ b/public/content/translations/ro/developers/docs/data-and-analytics/block-explorers/index.md
@@ -17,7 +17,7 @@ Ar trebui să înțelegeți conceptele de bază ale lui Ethereum ca să vă daţ
- [Etherchain](https://www.etherchain.org/)
- [Ethplorer](https://ethplorer.io/) –_Disponibil și în chineză, spaniolă, franceză, turcă, rusă, coreeană și vietnameză_
- [Blockchair](https://blockchair.com/ethereum) –_Disponibil şi în spaniolă, franceză, italiană, neerlandeză, portugheză, rusă, chineză, și farsi (persană)_
-- [Blockscout](https://blockscout.com/)
+- [Blockscout](https://eth.blockscout.com/)
- [OKLink](https://www.oklink.com/eth)
## Date {#data}
@@ -245,7 +245,7 @@ Datele din nivelul cel mai de sus al stratului de consens includ următoarele:
## Exploratori de blocuri {#block-explorers}
- [Etherscan](https://etherscan.io/) – un explorator de blocuri pe care îl puteți utiliza pentru Mainnet-ul Ethereum, Testnet-ul Ropsten, Testnet-ul Kovan, Testnet-ul Rinkeby și Testnet-ul Goerli.
-- [Blockscout](https://blockscout.com/) – focuses on the following networks:
+- [Blockscout](https://eth.blockscout.com/) – focuses on the following networks:
- xDai – o combinație ingenioasă între tehnologia MakerDAO de monede stabile DAI și a tehnologiei POA de sidechain și tokenbridge.
- POA – Un sidechain şi o reţea autonomă securizată de un grup de validatori de încredere. Toți validatorii din rețea sunt notari din Statele Unite, iar informațiile lor sunt accesibile publicului.
- Rețea de testare POA Sokol.
diff --git a/public/content/translations/ro/developers/docs/mev/index.md b/public/content/translations/ro/developers/docs/mev/index.md
index 896b1f00315..2548fad0404 100644
--- a/public/content/translations/ro/developers/docs/mev/index.md
+++ b/public/content/translations/ro/developers/docs/mev/index.md
@@ -8,7 +8,7 @@ Maximal extractable value (MEV) refers to the maximum value that can be extracte
## Miner extractable value
-This concept was first applied under the context of [proof-of-work](/developers/docs/consensus-mechanisms/pow/), and was initially referred to as "miner extractable value." Aceasta deoarece în dovada-muncii (PoW), miner-ii controlează includerea, excluderea și ordonarea tranzacțiilor. However, after the transition to proof-of-stake via [The Merge](/updates/merge) validators will be responsible for these roles, and mining will no longer be applicable. The value extraction methods here will still persist after this transition, and thus a name change was needed. To keep the same acronym for continuity while maintaining the same fundamental meaning, "maximal extractable value" is now used as a more inclusive replacement.
+This concept was first applied under the context of [proof-of-work](/developers/docs/consensus-mechanisms/pow/), and was initially referred to as "miner extractable value." Aceasta deoarece în dovada-muncii (PoW), miner-ii controlează includerea, excluderea și ordonarea tranzacțiilor. However, after the transition to proof-of-stake via [The Merge](/roadmap/merge/) validators will be responsible for these roles, and mining will no longer be applicable. The value extraction methods here will still persist after this transition, and thus a name change was needed. To keep the same acronym for continuity while maintaining the same fundamental meaning, "maximal extractable value" is now used as a more inclusive replacement.
## Condiții prealabile {#prerequisites}
diff --git a/public/content/translations/ro/developers/docs/nodes-and-clients/index.md b/public/content/translations/ro/developers/docs/nodes-and-clients/index.md
index 23cec983ff8..17697acd678 100644
--- a/public/content/translations/ro/developers/docs/nodes-and-clients/index.md
+++ b/public/content/translations/ro/developers/docs/nodes-and-clients/index.md
@@ -233,8 +233,6 @@ Verificați cu atenţie documentația sau pagina de ajutor a clientului pentru a
`geth --syncmode "light"`
-For further details, check out the tutorial on [running Geth light node](/developers/tutorials/run-light-node-geth/).
-
**Setting up full sync with archive in [Besu](https://besu.hyperledger.org/)**
`besu --sync-mode=FULL`
@@ -312,5 +310,4 @@ There is a lot of information about Ethereum clients on the internet. Here are f
## Tutoriale corelate {#related-tutorials}
-- [Rularea unui nod cu Geth](/developers/tutorials/run-light-node-geth/) _ – Cum se descarcă, se instalează şi se rulează Geth. Covering syncmodes, the JavaScript console, and more._
- [Transformați Raspberry Pi 4 într-un nod validator doar prin flash-area cardului MicroSD – Ghidul de instalare](/developers/tutorials/run-node-raspberry-pi/) _– Flash-ați Raspberry Pi 4, conectați un cablu ethernet, conectați discul SSD și porniți dispozitivul pentru a transforma Raspberry Pi 4 într-un nod Ethereum complet care rulează nivelul de execuție (Mainnet) și / sau nivelul de consens (Lanțul Beacon / validatorul)._
diff --git a/public/content/translations/ro/developers/docs/nodes-and-clients/run-a-node/index.md b/public/content/translations/ro/developers/docs/nodes-and-clients/run-a-node/index.md
index 1704805c918..e71bbf5f883 100644
--- a/public/content/translations/ro/developers/docs/nodes-and-clients/run-a-node/index.md
+++ b/public/content/translations/ro/developers/docs/nodes-and-clients/run-a-node/index.md
@@ -88,7 +88,7 @@ Este bine ca, înainte de a porni software-ul client Ethereum, să efectuați o
- Data și ora sistemului sunt corecte.
- Routerul și firewall-ul acceptă conexiuni pe porturile de ascultare. Clienții Ethereum utilizează în mod implicit un port de ascultare (TCP) și un port de descoperire (UDP), ambele pe 30303 în mod implicit.
-Rulaţi mai întâi clientul pe un testnet, pentru a vă asigura că totul funcționează corect. [Dacă rulaţi un nod ușor Geth](/developers/tutorials/run-light-node-geth/), aceasta ar trebui să vă ajute. Toate setările de client ce nu sunt cele implicite trebuie să fie declarate de la început. You can use flags or the config file to declare your preferred configuration. Consultați documentația clientului dvs. pentru detalii Execuția clientului va iniția funcțiile sale de bază, endpoint-urile alese și va începe să caute partenerii. După ce a reuşit să descopere partenerii, clientul începe sincronizarea. Datele actualizate ale blockchain-ului vor fi disponibile după sincronizarea cu succes a clientului cu starea actuală.
+Rulaţi mai întâi clientul pe un testnet, pentru a vă asigura că totul funcționează corect. Dacă rulaţi un nod ușor Geth, aceasta ar trebui să vă ajute. Toate setările de client ce nu sunt cele implicite trebuie să fie declarate de la început. You can use flags or the config file to declare your preferred configuration. Consultați documentația clientului dvs. pentru detalii Execuția clientului va iniția funcțiile sale de bază, endpoint-urile alese și va începe să caute partenerii. După ce a reuşit să descopere partenerii, clientul începe sincronizarea. Datele actualizate ale blockchain-ului vor fi disponibile după sincronizarea cu succes a clientului cu starea actuală.
### Utilizarea clientului {#using-the-client}
diff --git a/public/content/translations/ro/developers/docs/smart-contracts/deploying/index.md b/public/content/translations/ro/developers/docs/smart-contracts/deploying/index.md
index 3a1edf82da8..c6733389b46 100644
--- a/public/content/translations/ro/developers/docs/smart-contracts/deploying/index.md
+++ b/public/content/translations/ro/developers/docs/smart-contracts/deploying/index.md
@@ -10,7 +10,7 @@ Pentru a implementa un contract inteligent, trebuie doar să trimiteţi o tranza
## Condiții prealabile {#prerequisites}
-Ar trebui să înțelegeţi [rețelele Ethereum](/developers/docs/networks/), [tranzacțiile](/developers/docs/transactions/) și [anatomia contractelor inteligente](/developers/docs/smart-contract/anatomy/) înainte de a implementa contracte inteligente.
+Ar trebui să înțelegeţi [rețelele Ethereum](/developers/docs/networks/), [tranzacțiile](/developers/docs/transactions/) și [anatomia contractelor inteligente](/developers/docs/smart-contracts/anatomy/) înainte de a implementa contracte inteligente.
Implementarea unui contract costă de asemenea ether (ETH), deci ar trebui să vă familiarizaţi cu [gazul și taxele](/developers/docs/gas/) pe Ethereum.
diff --git a/public/content/translations/ro/developers/docs/smart-contracts/testing/index.md b/public/content/translations/ro/developers/docs/smart-contracts/testing/index.md
index ed80a85e75f..2097c4979cb 100644
--- a/public/content/translations/ro/developers/docs/smart-contracts/testing/index.md
+++ b/public/content/translations/ro/developers/docs/smart-contracts/testing/index.md
@@ -42,7 +42,7 @@ incomplete: true
- [Configurare de integrare continuă cu Solidity și Truffle](/developers/tutorials/solidity-and-truffle-continuous-integration-setup/) _– Cum se configurează Travis sau Circle CI pentru testare Truffle împreună cu plugin-uri utile._
- [Prezentare generală a produselor de testare](/developers/tutorials/guide-to-smart-contract-security-tools/) _– O prezentare generală și o comparație a diferitelor produse de testare._
- [Cum se folosește Echidna pentru a testa contractele inteligente](/developers/tutorials/how-to-use-echidna-to-test-smart-contracts/)
-- [Cum se folosește Manticore pentru a depista bug-uri în contractele inteligente](/developers/tutorials/how-to-use-manticor-to-find-smart-contract-bugs/)
+- [Cum se folosește Manticore pentru a depista bug-uri în contractele inteligente](/developers/tutorials/how-to-use-manticore-to-find-smart-contract-bugs/)
- [Cum se folosește Slither pentru a depista bug-uri în contractele inteligente](/developers/tutorials/how-to-use-slither-to-find-smart-contract-bugs/)
- [Cum să simulaţi contracte Solidity pentru testare](/developers/tutorials/how-to-mock-solidity-contracts-for-testing/)
- [Cum să migraţi de la Testele Truffle la mediul de testare OpenZeppelin](https://docs.openzeppelin.com/test-environment/0.1/migrating-from-truffle)
diff --git a/public/content/translations/ro/developers/docs/standards/index.md b/public/content/translations/ro/developers/docs/standards/index.md
index 37e4c1a3c96..b6af2143ef2 100644
--- a/public/content/translations/ro/developers/docs/standards/index.md
+++ b/public/content/translations/ro/developers/docs/standards/index.md
@@ -18,7 +18,7 @@ De obicei standardele sunt introduse ca [Propuneri de îmbunătățire pentru Et
- [Introducere despre guvernanța Ethereum](/governance/)
- [Prezentare generală a guvernanței Ethereum](https://web.archive.org/web/20201107234050/https://blog.bmannconsulting.com/ethereum-governance/) _31 martie 2019 - Boris Mann_
- [Guvernarea dezvoltării protocolului Ethereum și coordonarea actualizării rețelei](https://hudsonjameson.com/2020-03-23-ethereum-protocol-development-governance-and-network-upgrade-coordination/) _23 martie 2020 - Hudson Jameson_
-- [Lista de redare a tuturor ședințelor dezvoltatorilor de bază pentru Ethereum](https://www.youtube.com/playlist?list=PLaM7G4Llrb7zfMXCZVEXEABT8OSnd4-7w) _(Listă de redare YouTube)_
+- [Lista de redare a tuturor ședințelor dezvoltatorilor de bază pentru Ethereum](https://www.youtube.com/@EthereumProtocol) _(Listă de redare YouTube)_
## Tipuri de standarde {#types-of-standards}
diff --git a/public/content/translations/ro/developers/docs/standards/tokens/index.md b/public/content/translations/ro/developers/docs/standards/tokens/index.md
index 3e72207e0ae..58fbf432d8c 100644
--- a/public/content/translations/ro/developers/docs/standards/tokens/index.md
+++ b/public/content/translations/ro/developers/docs/standards/tokens/index.md
@@ -20,7 +20,7 @@ Iată câteva dintre cele mai populare standarde de token-uri pe Ethereum:
- [ERC-20](/developers/docs/standards/tokens/erc-20/) - O interfață standard pentru tokenuri fungibile (interschimbabile), cum ar fi tokenurile de vot, tokenurile de miză sau monedele virtuale.
- [ERC-721](/developers/docs/standards/tokens/erc-721/) - O interfață standard pentru tokenuri nefungibile, cum ar fi un act de proprietate pentru opere de artă sau o melodie.
-- [ERC-777](/developers/docs/docs/standards/tokens/erc-777/) - ERC-777 permite utilizatorilor să construiască funcționalități suplimentare pe lângă tokenuri, cum ar fi un contract de mixare, pentru o mai mare confidențialitate a tranzacțiilor, sau o funcție de recuperare de urgență ca să vă salveze dacă vă pierdeți cheile private.
+- [ERC-777](/developers/docs/standards/tokens/erc-777/) - ERC-777 permite utilizatorilor să construiască funcționalități suplimentare pe lângă tokenuri, cum ar fi un contract de mixare, pentru o mai mare confidențialitate a tranzacțiilor, sau o funcție de recuperare de urgență ca să vă salveze dacă vă pierdeți cheile private.
- [ERC-1155](/developers/docs/standards/tokens/erc-1155/) - ERC-1155 permite efectuarea mai eficientă a tranzacțiilor și gruparea tranzacțiilor – economisind astfel costurile. Acest standard de tokenuri facilitează crearea de tokenuri de utilitate (cum ar fi $BNB sau $BAT) și de tokenuri nefungibile, cum ar fi CryptoPunks.
## Referințe suplimentare {#further-reading}
@@ -31,5 +31,5 @@ _Cunoașteți o resursă a comunității care v-a ajutat? Editaţi această pagi
- [Lista de verificare pentru integrarea tokenurilor](/developers/tutorials/token-integration-checklist/) _– O listă de verificare a elementelor de luat în considerare atunci când interacționaţi cu tokenurile._
- [Înțelegerea contractului inteligent de tokenuri ERC20](/developers/tutorials/understand-the-erc-20-token-smart-contract/) _– O introducere în implementarea primului dvs. contract inteligent într-o rețea de testare Ethereum._
-- [Transferuri și aprobare de tokenuri ERC20 dintr-un contract inteligent Solidity](/developers/tutorials/transfers-and-approval-of-erc-20-tokens-from-a-solidity-smart-contracct/) _- Cum să utilizaţi un contract inteligent pentru a interacționa cu un token folosind limbajul Solidity._
+- [Transferuri și aprobare de tokenuri ERC20 dintr-un contract inteligent Solidity](/developers/tutorials/transfers-and-approval-of-erc-20-tokens-from-a-solidity-smart-contract/) _- Cum să utilizaţi un contract inteligent pentru a interacționa cu un token folosind limbajul Solidity._
- [Implementarea unei piețe ERC721 [un ghid al modalităţilor de a o realiza]](/developers/tutorials/how-to-implement-an-erc721-market/) _– Cum să puneţi la vânzare articole tokenizate pe un panou de anunțuri descentralizate._
diff --git a/public/content/translations/ro/developers/tutorials/run-light-node-geth/index.md b/public/content/translations/ro/developers/tutorials/run-light-node-geth/index.md
deleted file mode 100644
index 0bd495f1355..00000000000
--- a/public/content/translations/ro/developers/tutorials/run-light-node-geth/index.md
+++ /dev/null
@@ -1,104 +0,0 @@
----
-title: Cum se execută un nod ușor cu Geth
-description: How to download, install and run a lightclient with Geth.
-author: "Brian Gu"
-tags:
- - "clienți"
- - "noduri"
-skill: beginner
-lang: ro
-published: 2022-03-04
----
-
-Poate sunteţi interesat să rulaţi un [nod Ethereum](/developers/docs/noses-and-clients/). Unul dintre cele mai simple moduri de a face acest lucru este să descărcați, să instalați și să rulați Geth. Utilizând Geth, putem pune în funcţiune un nod ușor în câteva minute.
-
-A light client requires less than 400MB of storage whilst still allowing full interactivity with the Ethereum state. Light clients retrieve data from remote peers, so some queries may take longer to respond in comparison to other sync modes.
-
-For an explanation of the differences between the different sync modes, read our [nodes and clients developer docs](/developers/docs/nodes-and-clients/#node-types).
-
-## Install and run {#install-and-run}
-
-First, [install Geth](https://geth.ethereum.org/docs/install-and-build/installing-geth).
-
-After installing Geth, you can run an Ethereum node in "light" mode by running the following command in a Terminal window:
-
-```bash
-geth --syncmode light
-```
-
-Once launched, Geth will begin connecting to other nodes on Ethereum - known as "peers". The process of connecting to peers may take a while.
-
-When your Geth node has enough peers, it will import headers from new blocks on the chain.
-
-When new block headers no longer have an "age", Geth will be synced to the chain's head.
-
-## Oprirea și repornirea nodului dvs. {#stopping-and-restarting-your-node}
-
-You can stop your node at any time by pressing CTRL+C.
-
-When restarting the node, Geth will take a few minutes to download block headers created since the node was last run.
-
-## Enable the HTTP-RPC server {#enable-the-http-rpc-server}
-
-Enabling the HTTP-RPC server lets you connect your Ethereum node to other software like wallets, browser extensions, or custom software libraries.
-
-You can enable the HTTP-RPC server by running the following command when launching Geth:
-
-```bash
-geth --syncmode light --http
-```
-
-Once enabled, run `curl http://127.0.0.1:8545`. This should report no error.
-
-### Allow remote connections {#allow-remote-connections}
-
-To allow remote hosts to connect to your node, launch Geth with the following command:
-
-```
-geth --syncmode light --http --http.addr 0.0.0.0
-```
-
-Note: this assumes that there is no process blocking requests to your localhost, such as a firewall.
-
-## Geth JavaScript console {#geth-javascript-console}
-
-Geth has a built-in JavaScript console and a JavaScript API called [web3js](https://github.com/ethereum/web3.js/) that you can use to interact with your node.
-
-To use the JavaScript console run:
-
-```bash
-geth attach
-```
-
-This console allows direct interaction with Ethereum. For example, running the `eth.blockNumber` command will print the latest known block number.
-
-[Full web3js documentation](http://web3js.readthedocs.io/)
-
-## Mainnet and testnets {#mainnet-and-testnets}
-
-Geth runs your node on [Ethereum Mainnet](/glossary/#mainnet) by default.
-
-It is also possible to use Geth to run a node on one of the [public test networks](/networks/#testnets), by running one of the following commands in Terminal:
-
-```bash
-geth --syncmode light --ropsten
-geth --syncmode light --rinkeby
-geth --syncmode light --goerli
-```
-
-## Unde sunt stocate datele de pe blockchain și EVM? {#where-is-the-blockchain-and-evm-data-stored}
-
-Directorul pe care îl utilizează Geth pentru a stoca datele brute de pe blockchain depinde de sistemul dvs. de operare. Upon running Geth, look for a message that looks like this:
-
-```bash
-INFO [11-18|14:04:47] Allocated cache and file handles database=/Users/bgu/Library/Ethereum/testnet/geth/lightchaindata cache=768 handles=128
-```
-
-Calea care urmează `„database=”` (baza de date) ar trebui să vă spună unde sunt stocate datele blockchain-ului pe mașină. Dacă rulaţi un nod complet, acest director va conține toate datele despre fiecare bloc care a fost vreodată alocat la blockchain. Din moment ce rulăm un nod ușor, acest director conține doar anteturile blocului.
-
-Merită subliniat aici că, la cel mai de jos nivel, aici locuieşte blockchain-ul. Conținutul complet al blockchain-ului și starea EVM sunt stocate pe fiecare nod complet din rețeaua Ethereum, în directoare care seamănă foarte mult cu cele de pe computerul dvs.
-
-## Referințe suplimentare {#further-reading}
-
-- [Aflaţi mai multe despre diferite rețele](/developers/docs/Networks/).
-- [Run a full node](/run-a-node/)
diff --git a/public/content/translations/ro/developers/tutorials/uniswap-v2-annotated-code/index.md b/public/content/translations/ro/developers/tutorials/uniswap-v2-annotated-code/index.md
index 9d3c48f1623..b22b23bcad6 100644
--- a/public/content/translations/ro/developers/tutorials/uniswap-v2-annotated-code/index.md
+++ b/public/content/translations/ro/developers/tutorials/uniswap-v2-annotated-code/index.md
@@ -743,7 +743,7 @@ Aceasta este funcția principală a fabricii, să creeze un schimb în pereche
(address token0, address token1) = tokenA < tokenB ? (tokenA, tokenB) : (tokenB, tokenA);
```
-Vrem ca adresa noului schimb să fie deterministă, încât să poată fi calculată în avans off-chain (acest lucrul poate fi util pentru [tranzacțiile de nivel 2](/developers/docs/layer-2-scaling/)). Pentru a face aceasta, avem nevoie de o ordine consecventă a adreselor tokenurilor, indiferent de ordinea în care le-am primit, de aceea le sortăm aici.
+Vrem ca adresa noului schimb să fie deterministă, încât să poată fi calculată în avans off-chain (acest lucrul poate fi util pentru [tranzacțiile de nivel 2](/developers/docs/scaling/)). Pentru a face aceasta, avem nevoie de o ordine consecventă a adreselor tokenurilor, indiferent de ordinea în care le-am primit, de aceea le sortăm aici.
```solidity
require(token0 != address(0), 'UniswapV2: ZERO_ADDRESS');
diff --git a/public/content/translations/ro/developers/tutorials/waffle-dynamic-mocking-and-testing-calls/index.md b/public/content/translations/ro/developers/tutorials/waffle-dynamic-mocking-and-testing-calls/index.md
index 7dfe1274a9e..152efcc55b8 100644
--- a/public/content/translations/ro/developers/tutorials/waffle-dynamic-mocking-and-testing-calls/index.md
+++ b/public/content/translations/ro/developers/tutorials/waffle-dynamic-mocking-and-testing-calls/index.md
@@ -295,4 +295,4 @@ Codul sursă pentru acest tutorial se află [aici](https://github.com/EthWorks/W
Alte tutoriale care vă pot interesa:
-- [Testarea contractelor inteligente cu Waffle](/developers/tutorials/testing-smart-contract-with-waffle/)
+- [Testarea contractelor inteligente cu Waffle](/developers/tutorials/waffle-test-simple-smart-contract/)
diff --git a/public/content/translations/ro/energy-consumption/index.md b/public/content/translations/ro/energy-consumption/index.md
index 38c70bf86be..a2c334991e6 100644
--- a/public/content/translations/ro/energy-consumption/index.md
+++ b/public/content/translations/ro/energy-consumption/index.md
@@ -24,7 +24,7 @@ Dovada-muncii este o modalitate solidă de a securiza rețeaua și de a impune m
Un viitor mai ecologic pentru Ethereum este deja în curs de construcție sub forma unui [lanț bazat pe **dovada-mizei (PoS)**](/roadmap/beacon-chain/). În cadrul [dovezii-mizei](/developers/docs/consensus-mechanisms/pos/), nu mai este necesară rezolvarea de puzzle-uri arbitrare. Eliminarea rezolvării puzzle-urilor scade semnificativ cheltuielile cu energia necesară pentru a securiza rețeaua. Miner-ii sunt înlocuiți cu validatori, care îndeplinesc aceeași funcție, cu deosebirea că, în loc să-și cheltuiască activele în avans sub forma muncii de calcul, aceștia mizează ETH drept garanție față de un comportament necinstit. Dacă validatorul este leneș, (este off-line atunci când acesta ar trebui să îndeplinească o anumită obligație de validator), ETH-ul pe care a mizat se poate scurge încet-încet, în timp ce un comportament necinstit demonstrabil poate duce la o „reducere” a activelor mizate. Aceasta stimulează semnificativ participarea activă și onestă la securizarea rețelei.
-În mod asemănător cu dovada-muncii, o entitate rău intenționată ar avea nevoie de cel puțin 51% din totalul ETH-ului mizat pentru un [atac de 51%](/glossary/#51-attack). Însă, spre deosebire de dovada-muncii, unde pierderea potențială în urma unui astfel de atac constă numai din costul generării puterii hash necesare pentru minare, în cazul dovezii-mizei pierderea potențială în urma unui atac este întreaga sumă de ETH folosită ca garanție. Această structură de descurajare permite securitatea rețelei cu ajutorul dovezii-mizei, eliminând în același timp nevoia de a cheltui energie pe calcule aleatorii. Puteți afla explicații amănunțite cu privire la securitatea rețelei prin dovada-mizei [aici](/developers/docs/consensus-mechanisms/pos/) și [aici](https://vitalik.eth.limo/general/2017/12/31/pos_faq.html).
+În mod asemănător cu dovada-muncii, o entitate rău intenționată ar avea nevoie de cel puțin 51% din totalul ETH-ului mizat pentru un [atac de 51%](/glossary/#51%-attack). Însă, spre deosebire de dovada-muncii, unde pierderea potențială în urma unui astfel de atac constă numai din costul generării puterii hash necesare pentru minare, în cazul dovezii-mizei pierderea potențială în urma unui atac este întreaga sumă de ETH folosită ca garanție. Această structură de descurajare permite securitatea rețelei cu ajutorul dovezii-mizei, eliminând în același timp nevoia de a cheltui energie pe calcule aleatorii. Puteți afla explicații amănunțite cu privire la securitatea rețelei prin dovada-mizei [aici](/developers/docs/consensus-mechanisms/pos/) și [aici](https://vitalik.eth.limo/general/2017/12/31/pos_faq.html).
## Fuziunea {#the-merge}
diff --git a/public/content/translations/ro/enterprise/index.md b/public/content/translations/ro/enterprise/index.md
index 4abe4ebef2c..997977e97af 100644
--- a/public/content/translations/ro/enterprise/index.md
+++ b/public/content/translations/ro/enterprise/index.md
@@ -33,7 +33,7 @@ Multe companii și consorții au implementat blockchain-uri private autorizate p
Întreprinderile experimentează tehnologia blockchain încă din 2016, când au fost lansate proiectele Hyperledger, Quorum și Corda. S-au axat în mare parte pe blockchain-urile întreprinderilor private autorizate, dar începând din 2019 a avut loc o schimbare de concept în privinţa blockchain-urilor publice faţă de cele private pentru aplicațiile de afaceri. Un [sondaj](https://assets.ey.com/content/dam/ey-sites/ey-com/en_gl/topics/blockchain/ey-public-blockchain-opportunity-snapshot.pdf) realizat de Forrester a dezvăluit că „Respondenții la sondaj ... îşi dau seama de acest potențial, 75% afirmând că probabil vor valorifica blockchain-urile publice în viitor, iar aproape o treime declarând că acest lucru este foarte probabil”. Paul Brody de la EY a [vorbit](https://www.youtube.com/watch?v=-ycu5vGDdZw&feature=youtu.be&t=3668) despre avantajele construirii pe blockchain-ul public, care (în funcție de aplicație) pot include o mai mare securitate/imuabilitate şi transparență, costuri totale de proprietate mai mici și capacitatea de a interopera cu toate celelalte aplicații ce se află tot pe Mainnet (efecte de rețea). Partajarea unui cadru comun de referință între companii evită crearea inutilă a numeroase silozuri izolate care nu pot comunica și partaja sau sincroniza informații între ele.
-O altă evoluţie prin care atenţia se mută asupra blockchain-ului public este [Nivelul 2](/developers/docs/scaling/layer-2). Nivelul 2 este în primul rând o categorie de tehnologie de scalabilitate care face posibile aplicații cu randament ridicat pe lanțurile publice. Dar soluțiile de Nivelul 2 pot de asemenea [aborda unele dintre celelalte provocări care au determinat dezvoltatorii pentru înteprinderi să aleagă lanțuri private în trecut](https://entethalliance.org/how-ethereum-layer-2-scaling-solutions-address-barriers-to-enterprises-building-on-mainnet/).
+O altă evoluţie prin care atenţia se mută asupra blockchain-ului public este [Nivelul 2](/layer-2/). Nivelul 2 este în primul rând o categorie de tehnologie de scalabilitate care face posibile aplicații cu randament ridicat pe lanțurile publice. Dar soluțiile de Nivelul 2 pot de asemenea [aborda unele dintre celelalte provocări care au determinat dezvoltatorii pentru înteprinderi să aleagă lanțuri private în trecut](https://entethalliance.org/how-ethereum-layer-2-scaling-solutions-address-barriers-to-enterprises-building-on-mainnet/).
Protocolul Baseline este un proiect-cheie care definește un protocol ce permite colaborarea confidențială și complexă între întreprinderi fără a lăsa date sensibile pe lanț. A câștigat un [avânt](https://www.oasis-open.org/2020/08/26/baseline-protocol-achieves-key-milestone-with-release-of-v0-1-implementation-for-enterprise/) semnificativ pe cursul anului 2020.
@@ -52,7 +52,7 @@ Diverse organizații au depus eforturi comune pentru a creşte uşurinţa de uti
- [Alchemy](https://www.alchemy.com/) _furnizează servicii API și instrumente pentru construirea și monitorizarea aplicațiilor pe Ethereum_
- [Blockapps](https://blockapps.net/) _implementarea protocolului Ethereum pentru întreprinderi, a instrumentelor și a altor API-uri care formează platforma STRATO_
- [Chainstack](https://chainstack.com/) _infrastructura de mainnet şi testnet Ethereum găzduită în & cloud-uri publice izolate ale clienților_
-- [ConsenSys](https://consensys.net/) _oferă o gamă de produse și instrumente pentru construirea pe Ethereum, precum și servicii de consultanță și dezvoltare personalizate_
+- [ConsenSys](https://consensys.io/) _oferă o gamă de produse și instrumente pentru construirea pe Ethereum, precum și servicii de consultanță și dezvoltare personalizate_
- [Bloackchain-ul Envision](https://envisionblockchain.com/) _oferă servicii de consultanță și dezvoltare axate pe întreprinderi, specializate pe Mainnet-ul Ethereum_
- [EY OpsChain](https://blockchain.ey.com/products/contract-manager) _oferă un flux de lucru pentru achiziții prin emiterea de cereri de ofertă, contracte, ordine de cumpărare și facturi în rețeaua partenerilor dvs. de afaceri de încredere_
- [Hyperledger Besu](https://www.hyperledger.org/use/besu) _un client Ethereum open-source axat pe întreprinderi, dezvoltat sub licența Apache 2.0 și scris în Java_
@@ -71,7 +71,7 @@ Diverse organizații au depus eforturi comune pentru a creşte uşurinţa de uti
### Soluții de scalabilitate {#scalability-solutions}
-[Nivelul 2](/developers/docs/scaling/#layer-2-scaling) este un set de tehnologii sau sisteme care rulează peste Ethereum (Nivelul 1), moștenesc proprietăți de securitate din Nivelul 1 și oferă o capacitate mai mare de procesare a tranzacțiilor (transfer), taxe de tranzacție mai mici (cost de operare) și confirmări mai rapide ale tranzacțiilor decât Nivelul 1. Soluțiile de scalare de Nivelul 2 sunt securizate de Nivelul 1, dar permit aplicațiilor blockchain să gestioneze mai mulți utilizatori sau acțiuni sau date decât ar putea găzdui Nivelul 1. Multe dintre acestea valorifică progresele recente în criptografie și dovezile de zero-knowledge (ZK) pentru a maximiza performanța și securitatea.
+[Nivelul 2](/layer-2/) este un set de tehnologii sau sisteme care rulează peste Ethereum (Nivelul 1), moștenesc proprietăți de securitate din Nivelul 1 și oferă o capacitate mai mare de procesare a tranzacțiilor (transfer), taxe de tranzacție mai mici (cost de operare) și confirmări mai rapide ale tranzacțiilor decât Nivelul 1. Soluțiile de scalare de Nivelul 2 sunt securizate de Nivelul 1, dar permit aplicațiilor blockchain să gestioneze mai mulți utilizatori sau acțiuni sau date decât ar putea găzdui Nivelul 1. Multe dintre acestea valorifică progresele recente în criptografie și dovezile de zero-knowledge (ZK) pentru a maximiza performanța și securitatea.
Construirea aplicației dvs. pe o soluție de scalabilitate de Nivelul 2 poate ajuta la [soluționarea multor preocupări care anterior au determinat companiile să construiască pe blockchain-uri private](https://entethalliance.org/how-ethereum-layer-2-scaling-solutions-address-barriers-to-enterprises-building-on-mainnet/), dar păstrează avantajele construirii pe Mainnet.
@@ -130,7 +130,6 @@ Iată câteva dintre aplicațiile pentru întreprinderi care au fost implementat
### Legalizarea datelor {#notarization-of-data}
- [BBVA](https://www.ledgerinsights.com/bbva-blockchain-loan-banking-tech-award/) _detaliile împrumuturilor finalizate sunt codificate prin funcții hash și înregistrate pe Mainnet_
-- [Splunk](https://www.splunk.com/en_us/blog/security/the-newest-data-attack.html) _integritatea datelor poate fi asigurată prin scrierea periodică a hash-urilor de date indexate pe Mainnet_
- [ANSA](https://cointelegraph.com/news/italys-top-news-agency-uses-blockchain-to-fight-fake-coronavirus-news) _cea mai mare agenție de știri din Italia combate știrile false și le permite cititorilor să verifice originea știrilor înregistrându-le pe Mainnet_
- [Verizon](https://decrypt.co/46745/verizon-news-press-releases-ethereum-full-transparency) _înregistrează comunicate de presă pe Ethereum pentru a asigura responsabilizarea corporativă și încrederea_
- [Breitling](https://www.coindesk.com/breitling-arianee-all-new-watches-ethereum) _înregistrează proveniența și istoricul reparațiilor ceasurilor pe Ethereum_
@@ -138,7 +137,6 @@ Iată câteva dintre aplicațiile pentru întreprinderi care au fost implementat
### Lanțul de aprovizionare {#supply-chain}
-- [CargoX](https://cargox.io/press-releases/full/cargox-becomes-first-public-blockchain-ethereum-bill-lading-provider-approved-international-group-pi-clubs) _furnizează conosamente și documente de transfer_
- [Morpheus.network](https://morpheus.network/) _platformă de automatizare a lanțului de aprovizionare, care implementează un hibrid de lanțuri private cu date legalizate pe Mainnet-ul Ethereum și este utilizată de companii precum distribuitorul canadian de produse alimentare, petrol & și gaze Federated Co-op Ltd. și furnizorul argentinian de hrană pentru animale de companie Vitalcan_
- [Minespider](https://www.minespider.com/) _urmărirea lanțului de aprovizionare_
- [ShipChain](https://shipchain.io) _lanț paralel public al lui Ethereum și sistem de întreprinderi pentru vizibilitatea și încrederea lanțului de aprovizionare, în special pentru logistica multi-modală_
@@ -146,7 +144,6 @@ Iată câteva dintre aplicațiile pentru întreprinderi care au fost implementat
- [EY OpsChain Network Procurement](https://blockchain.ey.com/products/contract-manager) _permite companiilor să se angajeze într-un flux de lucru de achiziții publice prin emiterea de cereri de ofertă, contracte, ordine de cumpărare și facturi în rețeaua partenerilor dvs. de afaceri de încredere_
- [Treum](https://treum.io/) _aduce transparență, trasabilitate și capacitate de comercializare în lanțurile de aprovizionare utilizând tehnologia blockchain_
- [TradeTrust](https://www.tradetrust.io/) _verifies electronic Bills of Lading (eBLs) for international shipping_
-- [Birra Peroni](https://www.ey.com/en_gl/news/2021/05/birra-peroni-is-the-first-industrial-organization-to-mint-unique-non-fungible-tokens-using-ey-opschain-traceability) _mints NFTs for each new batch of beer, enabling greater visibility and efficiency across its supply chain_
### Acreditări și certificări {#credentials}
diff --git a/public/content/translations/ro/enterprise/private-ethereum/index.md b/public/content/translations/ro/enterprise/private-ethereum/index.md
index c710d41b888..971bab4174e 100644
--- a/public/content/translations/ro/enterprise/private-ethereum/index.md
+++ b/public/content/translations/ro/enterprise/private-ethereum/index.md
@@ -24,4 +24,3 @@ Diverse organizații au depus eforturi comune pentru a creşte uşurinţa de uti
- [Hyperledger Besu](https://www.hyperledger.org/use/besu) _Client Ethereum open-source dezvoltat sub licența Apache 2.0 și scris în Java, care include mai mulți algoritmi de consens, inclusiv PoW și PoA (IBFT, IBFT 2.0, Etherhash și Clique). Schemele sale complete de autorizare sunt concepute special pentru a fi utilizate într-un mediu de consorțiu._
- [Hyperledger Burrow](https://www.hyperledger.org/projects/hyperledger-burrow) _client modular blockchain cu un interpret de contract inteligent autorizat dezvoltat parţial la specificația Mașinii Virtuale Ethereum (EVM)_
- [Kaleido](https://kaleido.io/) _platformă cu stivă completă pentru dezvoltarea și rularea de ecosisteme de întreprindere, cross-cloud, hibride_
-- [Cvorum](https://consensys.net/quorum/) _o platformă blockchain de întreprindere open source bazată pe Ethereum cu funcţionalităţi avansate la nivel de întreprindere, permițând confidențialitatea, autorizarea și performanțele_
diff --git a/public/content/translations/ro/history/index.md b/public/content/translations/ro/history/index.md
index ccdd92cc304..bd6425c180b 100644
--- a/public/content/translations/ro/history/index.md
+++ b/public/content/translations/ro/history/index.md
@@ -13,7 +13,7 @@ O cronologie a tuturor reperelor majore, a fork-urilor și actualizărilor block
Fork-urile apar atunci când trebuie făcute actualizări tehnice sau modificări majore în rețea – acestea provin de obicei din [Propunerile de îmbunătățire pentru Ethereum (EIP)](/eips/) și modifică „regulile” protocolului.
-Atunci când sunt necesare actualizări în software-ul tradițional, controlat central, compania doar va publica o nouă versiune pentru utilizatorul final. Blockchain-ul funcționează diferit, deoarece nu există proprietate centrală. [Clienții Ethereum](/developer/docs/nodes-and-clients/) trebuie să își actualizeze software-ul pentru a implementa noile reguli de fork-uri. În plus, creatorii de blocuri (miner-ii într-o lume a dovezii-muncii, validatorii într-o lume a dovezii-mizei) și nodurile trebuie să creeze blocuri și să valideze conform noilor reguli. [Mai multe despre mecanismele de consesn]/(developers/docs/consensus-mechanisms/)
+Atunci când sunt necesare actualizări în software-ul tradițional, controlat central, compania doar va publica o nouă versiune pentru utilizatorul final. Blockchain-ul funcționează diferit, deoarece nu există proprietate centrală. [Clienții Ethereum](/developers/docs/nodes-and-clients/) trebuie să își actualizeze software-ul pentru a implementa noile reguli de fork-uri. În plus, creatorii de blocuri (miner-ii într-o lume a dovezii-muncii, validatorii într-o lume a dovezii-mizei) și nodurile trebuie să creeze blocuri și să valideze conform noilor reguli. [Mai multe despre mecanismele de consesn]/(developers/docs/consensus-mechanisms/)
Aceste schimbări de reguli pot crea o separare temporară în rețea. Pot fi produse blocuri noi conform regulilor noi sau celor vechi. Se convine în avans asupra creării fork-urilor, astfel încât clienții să adopte schimbările la unison și fork-ul cu actualizările să devină lanțul principal. Cu toate acestea, în cazuri rare, dezacordurile asupra fork-urilor pot determina divizarea permanentă a rețelei – cea mai cunoscută fiind crearea lui Ethereum Classic cu [fork-ul DAO](#dao-fork).
diff --git a/public/content/translations/ro/roadmap/beacon-chain/index.md b/public/content/translations/ro/roadmap/beacon-chain/index.md
index 02813bd268d..6d9571a48cc 100644
--- a/public/content/translations/ro/roadmap/beacon-chain/index.md
+++ b/public/content/translations/ro/roadmap/beacon-chain/index.md
@@ -32,7 +32,7 @@ Lanțul Beacon a fost o componentă fundamentală pentru [securitatea, respectul
Lanțul Beacon a introdus [dovada mizei](/developers/docs/consensus-mechanisms/pos/) în Ethereum. Aceasta asigură securitatea Ethereum și generează mai mult ETH pentru validatori în cadrul procesului. În practică, mizarea implică mizarea ETH pentru activarea software-ului validatorului. În calitate de staker, rulați software-ul care creează și validează noile blocuri din lanț.
-Mizarea joacă același rol avut înainte de [minare](/developers/docs/mining/), dar diferă în multe moduri. Minarea necesita cheltuieli inițiale mari, sub forma unor echipamente hardware puternice și a unui consum mare de energie, ceea ce duce la economii de scalare și promovarea centralizării. De asemenea, minarea nu implica cerințe pentru blocarea activelor drept garanție, limitând capacitatea protocolului de a pedepsi actorii răi după un atac.
+Mizarea joacă același rol avut înainte de [minare](/developers/docs/consensus-mechanisms/pow/mining/), dar diferă în multe moduri. Minarea necesita cheltuieli inițiale mari, sub forma unor echipamente hardware puternice și a unui consum mare de energie, ceea ce duce la economii de scalare și promovarea centralizării. De asemenea, minarea nu implica cerințe pentru blocarea activelor drept garanție, limitând capacitatea protocolului de a pedepsi actorii răi după un atac.
Tranziția la dovada mizei a făcut ca Ethereum să fie mult mai sigur și mai descentralizat în comparație cu dovada muncii. Cu cât numărul de oameni din rețea este mai mare, cu atât mai descentralizată și mai sigură în caz de atacuri devine aceasta.
diff --git a/public/content/translations/ru/community/code-of-conduct/index.md b/public/content/translations/ru/community/code-of-conduct/index.md
index 0aba8eb2731..d88f9b9e47f 100644
--- a/public/content/translations/ru/community/code-of-conduct/index.md
+++ b/public/content/translations/ru/community/code-of-conduct/index.md
@@ -4,6 +4,8 @@ description: Базовые стандарты, которых мы старае
lang: ru
---
+# Нормы поведения {#conduct-intro}
+
## Цель {#mission}
Разработать самый полный и доступный центр знаний об Ethereum и поддерживать его функционирование.
diff --git a/public/content/translations/ru/community/events/index.md b/public/content/translations/ru/community/events/index.md
index c05cdfaac04..14dfc31894b 100644
--- a/public/content/translations/ru/community/events/index.md
+++ b/public/content/translations/ru/community/events/index.md
@@ -5,7 +5,7 @@ lang: ru
hideEditButton: true
---
-## Предстоящие мероприятия {#events}
+# Предстоящие мероприятия {#events}
**Каждый месяц по всему миру проводятся крупные мероприятия Ethereum.** Посетите одно из ближайших к вам, чтобы познакомиться с другими участниками сообщества, узнать о возможностях трудоустройства и развить новые навыки.
diff --git a/public/content/translations/ru/community/get-involved/index.md b/public/content/translations/ru/community/get-involved/index.md
index 58c4e3c7a0d..cd75d5bb379 100644
--- a/public/content/translations/ru/community/get-involved/index.md
+++ b/public/content/translations/ru/community/get-involved/index.md
@@ -16,7 +16,7 @@ lang: ru
- [Получите награду на Gitcoin](https://gitcoin.co/), поработайте над незначительной или серьезной технической проблемой, заработайте криптовалюту!
- Посетите ближайший к вам хакатон [ETHGlobal](http://ethglobal.co/)!
- Ознакомьтесь с [проектами в вашей компетенции или на языке программирования по вашему выбору](/developers/docs/programming-languages/)
-- [Онлайн-встречи Core Dev](https://www.youtube.com/playlist?list=PLaM7G4Llrb7zfMXCZVEXEABT8OSnd4-7w): смотрите или поучаствуйте сами
+- [Онлайн-встречи Core Dev](https://www.youtube.com/@EthereumProtocol): смотрите или поучаствуйте сами
- [Список предпочтений для программы поддержки экосистемы](https://esp.ethereum.foundation/wishlist/) — сферы инструментария, документации и инфраструктуры, в которых активно ищут заявителей на гранты в рамках программы поддержки экосистемы Ethereum
- [Web3Bridge](https://www.web3bridge.com/) — присоединяйтесь к амбициозному сообществу web3 в их инициативе по выявлению, обучению и поддержке сотен разработчиков и членов сообщества по всей Африке
- Присоединяйтесь к [Discord-каналу Ethereum Cat Herders](https://discord.io/EthCatHerders)
diff --git a/public/content/translations/ru/community/grants/index.md b/public/content/translations/ru/community/grants/index.md
index 1628070804f..f17cee86adc 100644
--- a/public/content/translations/ru/community/grants/index.md
+++ b/public/content/translations/ru/community/grants/index.md
@@ -18,7 +18,6 @@ lang: ru
- [MetaCartel](https://www.metacartel.org/grants/): _разработка децентрализованных приложений, создание DAO._
- [DAO Moloch](https://www.molochdao.com/): _конфиденциальность, масштабирование второго уровня, безопасность клиентов и многое другое._
- [Гранты DAO](https://docs.google.com/spreadsheets/d/1XHc-p_MHNRdjacc8uOEjtPoWL86olP4GyxAJOFO0zxY/edit#gid=0): _Google-таблица организаций, предлагающих гранты._
-- [Crunchbase для грантов по Web3](https://www.cryptoneur.xyz/web3-grants): _отфильтровывайте и ищите гранты по категории, назначению, количеству и другим характеристикам. Помогите другим найти нужный грант._
- [Академические гранты](https://esp.ethereum.foundation/academic-grants): _гранты на поддержку академической работы, связанной с Ethereum._
- [Blockworks Grantfarm](https://blockworks.co/grants/programs): _компания Blockworks составила полный каталог всех грантов, запросов предложений (RFP) и наград за найденные ошибки._
@@ -35,7 +34,6 @@ lang: ru
- [Программа грантов SKALE Network](https://skale.space/developers#grants): _экосистема [SKALE Network](https://skale.space/)._
- [The Graph](https://airtable.com/shrdfvnFvVch3IOVm): _экосистема [The Graph](https://thegraph.com/)._
- [Программа грантов Uniswap](https://www.uniswapfoundation.org/apply-for-a-grant): _сообщество [Uniswap](https://uniswap.org/)._
-- [Web3 Grants](https://web3grants.net): _обширный список грантов, связанных с web3/криптовалютами._
## Квадратичное финансирование {#quadratic-funding}
diff --git a/public/content/translations/ru/decentralized-identity/index.md b/public/content/translations/ru/decentralized-identity/index.md
index b540a1d764e..b53ccba643f 100644
--- a/public/content/translations/ru/decentralized-identity/index.md
+++ b/public/content/translations/ru/decentralized-identity/index.md
@@ -49,7 +49,7 @@ summaryPoint3: Благодаря криптовалюте у пользоват
## Что делает возможными децентрализованные идентификаторы? {#what-makes-decentralized-identifiers-possible}
-### 1. Инфраструктура публичных ключей (PKI) {#public-key-infrastructure}
+### 1. Инфраструктура публичных ключей (PKI) {#public-key-cryptography}
Инфраструктура открытых ключей (PKI) – это средство защиты информации, которое генерирует [открытый ключ](/glossary/#public-key) и [ закрытый ключ](/glossary/#private-key) для объекта. Криптография с открытым ключом используется в сетях блокчейн для аутентификации пользователей и подтверждения права собственности на цифровые активы.
diff --git a/public/content/translations/ru/defi/index.md b/public/content/translations/ru/defi/index.md
index 2fe55163861..d76e35523e6 100644
--- a/public/content/translations/ru/defi/index.md
+++ b/public/content/translations/ru/defi/index.md
@@ -47,7 +47,7 @@ DeFi — это обобщенный термин для финансовых п
| Рынки всегда открыты. | Рынки закрываются, потому что сотрудникам нужны перерывы. |
| Все построено на прозрачности: любой может просмотреть данные транзакции и проверить, как работает система. | Активность финансовых учреждений скрыта: вы не можете просмотреть их кредитную историю, сведения об их активах и так далее. |
-
+
Взглянуть на приложения DeFi
@@ -65,7 +65,7 @@ Ethereum построен на этом. Как и в Bitcoin, правила н
Изучите наши предложения по приложениям DeFi, если вы только осваиваетесь в Ethereum.
-
+
Взглянуть на приложения DeFi
@@ -92,7 +92,7 @@ Ethereum построен на этом. Как и в Bitcoin, правила н
В качестве блокчейна Ethereum предназначен для отправки транзакций безопасным и глобальным путем. Как и Bitcoin, Ethereum делает перевод денег по всему миру таким же простым, как и отправка электронной почты. Просто введите [имя ENS вашего получателя](/nft/#nft-domains) (например, bob.eth) или адрес его учетной записи в вашем кошельке, и ваш платеж поступит непосредственно к нему в течение (как правило) нескольких минут. Чтобы отправлять или получать платежи, вам понадобится [кошелек](/wallets/).
-
+
Посмотреть платежные децентрализованные приложения
@@ -123,7 +123,7 @@ Ethereum построен на этом. Как и в Bitcoin, правила н
- Одноранговый формат (Peer-to-peer): заемщик будет одалживать средства непосредственно у конкретного кредитора.
- Основанный на пуле (Pool-based): кредиторы предоставляют средства (ликвидность), из которых берут в долг заемщики.
-
+
Посмотреть децентрализованные приложения для займа
@@ -183,7 +183,7 @@ Ethereum построен на этом. Как и в Bitcoin, правила н
- Ваш aDai будет увеличиваться в зависимости от процентной ставки, и вы сможете увидеть рост баланса в вашем кошельке. В зависимости от годовой процентной ставки, через несколько дней или даже часов баланс вашего кошелька будет выглядеть примерно как 100,1234!
- Вы можете вывести сумму обычного Dai, равную вашему балансу aDai, в любое время.
-
+
Посмотреть кредитные децентрализованные приложения
@@ -211,7 +211,7 @@ Ethereum построен на этом. Как и в Bitcoin, правила н
Например, если вы хотите использовать беспроигрышную лотерею PoolTogether (описанную выше), вам понадобится токен, такой как Dai или USDC. DEX позволяют обменивать ваши ETH на эти токены и обратно, когда вы закончите.
-
+
Смотреть биржи токенов
@@ -223,7 +223,7 @@ Ethereum построен на этом. Как и в Bitcoin, правила н
Когда вы используете централизованную биржу, вы должны внести свои активы перед торговлей и доверить бирже заботу о них. Пока ваши активы депонированы, они подвержены риску, поскольку централизованные биржи являются привлекательными целями для хакеров.
-
+
Посмотреть торговые децентрализованные приложения
@@ -235,7 +235,7 @@ Ethereum построен на этом. Как и в Bitcoin, правила н
Хорошим примером является фонд [ DeFi Pulse Index (DPI)](https://defipulse.com/blog/defi-pulse-index/). Это фонд, которое автоматически выполняет ребалансировку, чтобы гарантировать, что ваш портфель всегда включает [лучшие по рыночной капитализации токены DeFi](https://www.coingecko.com/en/defi). Вам не придется управлять мелочами, и вы сможете выйти из фонда, когда захотите.
-
+
Смотреть инвестиционные децентрализованные приложения
@@ -249,7 +249,7 @@ Ethereum является идеальной платформой для кра
- Все прозрачно, потому что сборщики средств могут подтвердить, сколько денег было собрано. Вы даже сможете отслеживать, как средства расходуются в дальнейшем.
- Сборщики средств могут настроить автоматический возврат, если, например, есть определенный срок и минимальная сумма, которые не были соблюдены.
-
+
Посмотреть краудфандинговые децентрализованные приложения
@@ -276,7 +276,7 @@ Ethereum — это программное обеспечение с откры
Продукты Ethereum, как и любое программное обеспечение, могут страдать от ошибок и эксплойтов. Так что прямо сейчас многие страховые продукты сосредоточены на защите своих пользователей от потери средств. Однако уже есть проекты, которые начинают страховать все, с чем мы можем столкнуться в реальной жизни. Хорошим примером этого является страхование урожая Etherisc, цель которого — [защитить мелких фермеров в Кении от засух и наводнений](https://blog.etherisc.com/etherisc-teams-up-with-chainlink-to-deliver-crop-insurance-in-kenya-137e433c29dc). Децентрализованное страхование может обеспечить более дешевую страховку для фермеров, цены на которую часто выходят за рамки в традиционном страховании.
-
+
Смотреть страховые децентрализованные приложения
@@ -286,7 +286,7 @@ Ethereum — это программное обеспечение с откры
Среди прочего, вам потребуется способ отслеживания всех ваших инвестиций, займов и сделок. Есть множество продуктов, которые позволяют вам управлять всеми вашими действиями с DeFi из одной программы. В этом прелесть открой архитектуры DeFi. Команды могут создавать интерфейсы, в которых вы можете не только просматривать балансы активов, но также использовать их функции. Это может оказаться полезным во время изучения DeFi.
-
+
Посмотреть децентрализованные приложения для портфелей
diff --git a/public/content/translations/ru/desci/index.md b/public/content/translations/ru/desci/index.md
index b324d44a6a3..11972517cb1 100644
--- a/public/content/translations/ru/desci/index.md
+++ b/public/content/translations/ru/desci/index.md
@@ -68,7 +68,7 @@ DeSci создает набор научных инструментов для
Исследования показали, что комиссии по рассмотрению грантов плохо справляются с отбором высококачественных заявок, поскольку одни и те же заявки, переданные в разные комиссии, дают совершенно разные результаты. Поскольку финансирование становится все более скудным, оно концентрируется в меньшем пуле более высокопоставленных исследователей с более интеллектуально консервативными проектами. В результате возникла гиперконкурентная среда финансирования, укрепившая порочные стимулы и подавляющая инновации.
-Web3 обладает потенциалом, который позволит разрушить эту сломанную модель финансирования, экспериментируя с различными моделями стимулирования, разработанными DAO и Web3 в целом. [Ретроактивное публичное финансирование общественных благ](https://medium.com/ethereum-optimism/retroactive-public-goods-funding-33c9b7d00f0c), [квадратичное финансирование](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2003531), [управление DAO](https://www.antler.co/blog/daos-and-web3-governance) и [токенированные структуры поощрения](https://cdixon.org/2017/05/27/crypto-tokens-a-breakthrough-in-open-network-design) — вот некоторые из инструментов Web3, которые могут произвести революцию в финансирование науки.
+Web3 обладает потенциалом, который позволит разрушить эту сломанную модель финансирования, экспериментируя с различными моделями стимулирования, разработанными DAO и Web3 в целом. [Ретроактивное публичное финансирование общественных благ](https://medium.com/ethereum-optimism/retroactive-public-goods-funding-33c9b7d00f0c), [квадратичное финансирование](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2003531), [управление DAO](https://www.antler.co/blog/daos-and-web3-governance-the-promise-implications-and-challenges-ahead) и [токенированные структуры поощрения](https://cdixon.org/2017/05/27/crypto-tokens-a-breakthrough-in-open-network-design) — вот некоторые из инструментов Web3, которые могут произвести революцию в финансирование науки.
### Владение и развитие ИС {#ip-ownership}
diff --git a/public/content/translations/ru/developers/docs/networks/index.md b/public/content/translations/ru/developers/docs/networks/index.md
index bad5b4e680d..a2d15f7d4eb 100644
--- a/public/content/translations/ru/developers/docs/networks/index.md
+++ b/public/content/translations/ru/developers/docs/networks/index.md
@@ -60,7 +60,6 @@ lang: ru
- [Кран Alchemy Sepolia](https://sepoliafaucet.com/)
- [Кран Infura Sepolia](https://www.infura.io/faucet)
- [Кран Chainstack Sepolia](https://faucet.chainstack.com/sepolia-faucet)
-- [Кран тестовой сети | Sepolia](https://testnet-faucet.com/sepolia/)
#### Goerli _(долгосрочная поддержка)_ {#goerli}
diff --git a/public/content/translations/ru/developers/docs/nodes-and-clients/index.md b/public/content/translations/ru/developers/docs/nodes-and-clients/index.md
index 70b36dd5bfe..d6c49df8d10 100644
--- a/public/content/translations/ru/developers/docs/nodes-and-clients/index.md
+++ b/public/content/translations/ru/developers/docs/nodes-and-clients/index.md
@@ -233,8 +233,6 @@ Erigon (в прошлом — Turbo-Geth) представляет собой о
`geth --syncmode "light"`
-Для получения дополнительной информации ознакомьтесь с руководством по [запуску легкого узла Geth](/developers/tutorials/run-light-node-geth/).
-
**Настройка полной синхронизации с архивом в [Besu](https://besu.hyperledger.org/)**
`besu --sync-mode=FULL`
@@ -312,5 +310,4 @@ Erigon (в прошлом — Turbo-Geth) представляет собой о
## Связанные руководства {#related-tutorials}
-- [Запуск узла с помощью Geth](/developers/tutorials/run-light-node-geth/) _— как загрузить, установить и запустить Geth. О синхронизаторах, консоли JavaScript и многом другом._
- [Превратите свой Raspberry Pi 4 в узел валидатора, просто прошив карту MicroSD: руководство по установке](/developers/tutorials/run-node-raspberry-pi/) _— прошейте свой Raspberry Pi 4, подключите кабель Ethernet, подключите SSD-диск и включите устройство, чтобы превратить Raspberry Pi 4 в полноценный узел Ethereum, работающий на уровне исполнения (Mainnet) и/или на уровне консенсуса (Beacon Chain / validator)._
diff --git a/public/content/translations/ru/developers/docs/nodes-and-clients/run-a-node/index.md b/public/content/translations/ru/developers/docs/nodes-and-clients/run-a-node/index.md
index 7c929248252..5272112b648 100644
--- a/public/content/translations/ru/developers/docs/nodes-and-clients/run-a-node/index.md
+++ b/public/content/translations/ru/developers/docs/nodes-and-clients/run-a-node/index.md
@@ -88,7 +88,7 @@ sidebarDepth: 2
- В системе установлены правильное время и дата.
- Ваш маршрутизатор и брандмауэр принимают подключения к прослушиваемым портам. По умолчанию клиенты Ethereum используют порт слушателя (TCP) и порт обнаружения (UDP), оба по умолчанию 30303.
-Сначала запустите свой клиент в тестовой сети, чтобы убедиться, что все работает правильно. [Инструкции по запуску легкого узла Geth](/developers/tutorials/run-light-node-geth/) должны помочь. Необходимо указать все настройки клиента, которые не установлены по умолчанию. Вы можете использовать конфигурационный файл, чтобы определить свой набор настроек. Конкретные настройки можно найти в документации вашего клиента Исполнение клиента запустит его базовые функции и выбранные конечные точки, а затем начнется поиск узлов одноранговой сети. Когда узел найдет одноранговые соединения, клиент начнет синхронизацию. Актуальные данные блокчейна будут доступны, как только клиент закончит синхронизацию до текущего состояния.
+Сначала запустите свой клиент в тестовой сети, чтобы убедиться, что все работает правильно. Необходимо указать все настройки клиента, которые не установлены по умолчанию. Вы можете использовать конфигурационный файл, чтобы определить свой набор настроек. Конкретные настройки можно найти в документации вашего клиента Исполнение клиента запустит его базовые функции и выбранные конечные точки, а затем начнется поиск узлов одноранговой сети. Когда узел найдет одноранговые соединения, клиент начнет синхронизацию. Актуальные данные блокчейна будут доступны, как только клиент закончит синхронизацию до текущего состояния.
### Использование клиента {#using-the-client}
diff --git a/public/content/translations/ru/roadmap/beacon-chain/index.md b/public/content/translations/ru/roadmap/beacon-chain/index.md
index c6ecec4caab..c0f94caa795 100644
--- a/public/content/translations/ru/roadmap/beacon-chain/index.md
+++ b/public/content/translations/ru/roadmap/beacon-chain/index.md
@@ -28,7 +28,7 @@ summaryPoint3: Сеть Beacon ввела логику консенсуса и
Сеть Beacon ввела [доказательство владения](/developers/docs/consensus-mechanisms/pos/) в Ethereum. Это обеспечивает безопасность Ethereum и дает валидаторам возможность зарабатывать ЕТН в процессе. На практике стейкинг представляет собой ставку ETH для того, чтобы активировать ПО валидатора. В роли дольщика вы запускаете программное обеспечение, которое создает и проверяет новые блоки в сети.
-Стейкинг служит той же цели, что и [майнинг](/developers/docs/mining/) в прошлом, но имеет много отличий. Майнинг требовал значительных начальных расходов в виде мощного оборудования и энергопотребления, что отражалось в нехватке масштабирования и способствовало централизации. Майнинг также не сопровождался каким-либо требованием о блокировании активов в качестве залога, что ограничивало способность протокола наказывать злоумышленников после атаки.
+Стейкинг служит той же цели, что и [майнинг](/developers/docs/consensus-mechanisms/pow/mining/) в прошлом, но имеет много отличий. Майнинг требовал значительных начальных расходов в виде мощного оборудования и энергопотребления, что отражалось в нехватке масштабирования и способствовало централизации. Майнинг также не сопровождался каким-либо требованием о блокировании активов в качестве залога, что ограничивало способность протокола наказывать злоумышленников после атаки.
Переход к доказательству владения сделал Ethereum значительно более безопасным и децентрализованным по сравнению с доказательством работы. Чем больше людей принимают участие в работе сети, тем более децентрализованной и защищенной от атак она становится.
diff --git a/public/content/translations/ru/roadmap/danksharding/index.md b/public/content/translations/ru/roadmap/danksharding/index.md
index 49b272a33ec..6fe865c3d48 100644
--- a/public/content/translations/ru/roadmap/danksharding/index.md
+++ b/public/content/translations/ru/roadmap/danksharding/index.md
@@ -15,7 +15,7 @@ summaryPoints:
## Что такое прото-данкшардинг? {#what-is-protodanksharding}
-Прото-данкшардинг ([EIP-4844](https://eips.ethereum.org/EIPS/eip-4844)) — это способ для [свертков](/layer2/#rollups) добавлять данные в блоки дешевле. Название происходит от двух исследователей, которые предложили идею: Protolambda и Dankrad Feist. На данный момент свертки ограничены в том, насколько дешевыми они могут сделать пользовательские транзакции, так как они размещают свои транзакции в `CALLDATA`. Это дорого, потому что они обрабатываются всеми узлами Ethereum и остаются навсегда в цепи, даже несмотря на то, что данные сверткам нужны только в течение короткого времени. Прото-данкшардинг вводит блобы данных, которые могут быть отправлены и прикреплены к блокам. Данные в этих блобах недоступны для EVM и автоматически удаляются спустя определенное время (1–3 месяца). Это означает, что свертки могут отправлять свои данные гораздо дешевле, и эта экономия отразится в форме более дешевых транзакций.
+Прото-данкшардинг ([EIP-4844](https://eips.ethereum.org/EIPS/eip-4844)) — это способ для [свертков](/layer-2/#rollups) добавлять данные в блоки дешевле. Название происходит от двух исследователей, которые предложили идею: Protolambda и Dankrad Feist. На данный момент свертки ограничены в том, насколько дешевыми они могут сделать пользовательские транзакции, так как они размещают свои транзакции в `CALLDATA`. Это дорого, потому что они обрабатываются всеми узлами Ethereum и остаются навсегда в цепи, даже несмотря на то, что данные сверткам нужны только в течение короткого времени. Прото-данкшардинг вводит блобы данных, которые могут быть отправлены и прикреплены к блокам. Данные в этих блобах недоступны для EVM и автоматически удаляются спустя определенное время (1–3 месяца). Это означает, что свертки могут отправлять свои данные гораздо дешевле, и эта экономия отразится в форме более дешевых транзакций.
diff --git a/public/content/translations/ru/roadmap/index.md b/public/content/translations/ru/roadmap/index.md
index 9229e8bf9db..f15e7d887f5 100644
--- a/public/content/translations/ru/roadmap/index.md
+++ b/public/content/translations/ru/roadmap/index.md
@@ -3,7 +3,7 @@ title: Дорожная карта Ethereum
description: Путь к большей масштабируемости, безопасности и экологичности Ethereum.
lang: ru
template: roadmap
-image: /roadmap/roadmap-main.png
+image: /heroes/roadmap-hub-hero.jpg
alt: "Дорожная карта Ethereum"
summaryPoints:
buttons:
@@ -59,7 +59,7 @@ Ethereum обновляется регулярно, что приводит к
-В большинстве своем, дорожная карта является результатом многолетней работы исследователей и разработчиков, поскольку этот протокол очень зависит от технических моментов, но в целом, внести свой вклад может любой мотивированный человек. Жизненный цикл идей обычно начинается с дискуссии на одном из форумов, таких как [ethresear.ch](https://ethresear.ch/), [Ethereum magicians](https://www.figma.com/exit?url=https%3A%2F%2Fethereum-magicians.org%2F) или на Discord сервере Eth R&D. Они могут появляться как ответ на выявленные уязвимые места, или как предложение от одной из компаний, работающей на уровне приложений (таких как децентрализованные приложения или биржи), или в результате понимания ограничений для конечных пользователей (таких как стоимость или скорость транзакций). Когда идеи готовы, они могут быть формализованы в виде Предложений по улучшению Ethereum (EIP). Все это происходит публично, чтобы каждый представитель сообщества мог в любой момент высказать свое мнение.
+В большинстве своем, дорожная карта является результатом многолетней работы исследователей и разработчиков, поскольку этот протокол очень зависит от технических моментов, но в целом, внести свой вклад может любой мотивированный человек. Жизненный цикл идей обычно начинается с дискуссии на одном из форумов, таких как [ethresear.ch](https://ethresear.ch/), [Ethereum magicians](https://ethereum-magicians.org/) или на Discord сервере Eth R&D. Они могут появляться как ответ на выявленные уязвимые места, или как предложение от одной из компаний, работающей на уровне приложений (таких как децентрализованные приложения или биржи), или в результате понимания ограничений для конечных пользователей (таких как стоимость или скорость транзакций). Когда идеи готовы, они могут быть формализованы в виде Предложений по улучшению Ethereum (EIP). Все это происходит публично, чтобы каждый представитель сообщества мог в любой момент высказать свое мнение.
[Подробнее об управлении Ethereum](/governance/)
diff --git a/public/content/translations/ru/roadmap/single-slot-finality/index.md b/public/content/translations/ru/roadmap/single-slot-finality/index.md
index e75e217d630..62eac221a94 100644
--- a/public/content/translations/ru/roadmap/single-slot-finality/index.md
+++ b/public/content/translations/ru/roadmap/single-slot-finality/index.md
@@ -58,7 +58,7 @@ lang: ru
## Текущий прогресс {#current-progress}
-SSF находится в фазе исследования. Это нововведение вряд ли выйдет в течение следующих лет. Вероятно, оно станет возможным только после других существенных обновлений, таких как [древа Веркла](/roadmap/verkle-trees/) и [данкшардинг](/roadmap/danksharding]).
+SSF находится в фазе исследования. Это нововведение вряд ли выйдет в течение следующих лет. Вероятно, оно станет возможным только после других существенных обновлений, таких как [древа Веркла](/roadmap/verkle-trees/) и [данкшардинг](/roadmap/danksharding/).
## Дополнительная литература {#further-reading}
diff --git a/public/content/translations/ru/smart-contracts/index.md b/public/content/translations/ru/smart-contracts/index.md
index 94f836e08e3..4ba8b36b708 100644
--- a/public/content/translations/ru/smart-contracts/index.md
+++ b/public/content/translations/ru/smart-contracts/index.md
@@ -65,7 +65,7 @@ Szabo предвидел создание цифрового рынка, на к
- [Стейблкойны](/stablecoins/)
- [Создание и распространение уникальных цифровых активов](/nft/)
- [Автоматический и открытый обмен валюты](/get-eth/#dex)
-- [Децентрализованные игры](/dapps/?category=gaming)
+- [Децентрализованные игры](/dapps/?category=gaming#explore)
- [Страховой полис с автоматической оплатой](https://etherisc.com/)
- [Стандарт, который позволяет людям создавать индивидуальные и совместимые валюты](/developers/docs/standards/tokens/)
diff --git a/public/content/translations/ru/zero-knowledge-proofs/index.md b/public/content/translations/ru/zero-knowledge-proofs/index.md
index 4fa23655a2e..d8e621feb71 100644
--- a/public/content/translations/ru/zero-knowledge-proofs/index.md
+++ b/public/content/translations/ru/zero-knowledge-proofs/index.md
@@ -4,7 +4,7 @@ description: Введение в доказательства с нулевым
lang: ru
---
-## Что такое доказательства с нулевым разглашением? {#what-are-zk-proofs}
+# Что такое доказательства с нулевым разглашением? {#what-are-zk-proofs}
Доказательство с нулевым разглашением — это способ доказать действительность утверждения без раскрытия самого утверждения. Доказывающий — сторона, которая пытается доказать заявление, а проверяющий отвечает за проверку заявления.
diff --git a/public/content/translations/se/enterprise/index.md b/public/content/translations/se/enterprise/index.md
index 139fd937ff4..af3613ce1f8 100644
--- a/public/content/translations/se/enterprise/index.md
+++ b/public/content/translations/se/enterprise/index.md
@@ -31,7 +31,7 @@ En del samarbetesansträngningar för att göra Ethereum företagsvänligt har u
- [EEA](https://entethalliance.org/) _Enterprise Ethereum Alliance är en medlemsdriven standardiseringsorganisation vars charter är att utveckla öppna blockchain-specifikationer, som driver harmonisering och driftskompatibilitet för företag och konsumenter över hela världen. Vår globala medlemsgemenskap består av ledare, användare, innovatörer, utvecklare, och företag som samarbetar för att skapa en öppen, decentraliserad webb till nytta för alla._
-- [Hyperledger Foundation](https://hyperledger.org) _Hyperledger är resultatet av ett öppen källkod-samarbete som skapades för att avancera branschöverskridande blockchain-teknik. Det är ett globalt samarbete som anordnas av Linux Foundation, inklusive ledare inom ekonomi, bank, sakernas internet, leverantörskedjor, tillverkning och teknik._ _Stiftelsen har några projekt som fungerar med Ethereum-stacken:_ - [Hyperledger Besu](https://www.hyperledger.org/blog/2019/08/29/announcing-hyperledger-besu) - [Hyperledger Burrow](https://www.hyperledger.org/projects/hyperledger-burrow)
+- [Hyperledger Foundation](https://hyperledger.org) _Hyperledger är resultatet av ett öppen källkod-samarbete som skapades för att avancera branschöverskridande blockchain-teknik. Det är ett globalt samarbete som anordnas av Linux Foundation, inklusive ledare inom ekonomi, bank, sakernas internet, leverantörskedjor, tillverkning och teknik._ _Stiftelsen har några projekt som fungerar med Ethereum-stacken:_ - [Hyperledger Besu](https://www.hyperledger.org/blog/2019/08/29/announcing-hyperledger-besu) - Hyperledger Burrow
## Enterprise-fokuserade tjänster {#enterprise-focused-services}
@@ -45,7 +45,6 @@ Följande projekt tillhandahåller blockchain-tjänster för system för storfö
## Protokoll och infrastruktur {#protocol-and-infrastructure}
- [Hyperledger Besu](https://www.hyperledger.org/projects/besu) _öppen källkod Ethereum-klient utvecklad under Apache 2.0-licens och skriven i Java_
-- [Hyperledger Burrow](https://www.hyperledger.org/projects/hyperledger-burrow) _modulär blockchain-klient med en tillståndsgiven smart kontrakt-tolk som delvis utvecklats enligt specifikationen för Ethereum Virtual Machine (EVM)_
- [Infura](https://infura.io/) _skalbar API-åtkomst till Ethereum och IPFS-nätverk_
- [Kaleido](https://kaleido.io/) _full-stackplattform för att bygga och köra över moln och ekosystem för hybridföretag_
- [Autonity](https://www.clearmatics.com/about/) _protokollsvit som implementerar p2p-protokoll och ger klientprogramvara och infrastruktur_
diff --git a/public/content/translations/sk/enterprise/index.md b/public/content/translations/sk/enterprise/index.md
index 7157a872535..8d18a83d5d8 100644
--- a/public/content/translations/sk/enterprise/index.md
+++ b/public/content/translations/sk/enterprise/index.md
@@ -31,7 +31,7 @@ Vďaka spolupráci s rôznymi organizáciami sa nám Ethereum podarilo pripravi
- [EEA](https://entethalliance.org/) _Enterprise Ethereum Alliance je členská štandardizačná organizácia, ktorej cieľom je vyvíjať otvorené špecifikácie blockchainu, ktoré podporujú harmonizáciu a spoluprácu podnikov a spotrebiteľov na celom svete. Naša globálna komunita členov pozostáva z lídrov, používateľov, inovátorov, vývojárov aj podnikateľov, ktorí spolupracujú pri vytváraní otvoreného decentralizovaného webu v prospech všetkých._
-- [Hyperledger Foundation](https://hyperledger.org) _Hyperledger je open source iniciatíva založená na spolupráci, ktorá sa zameriava na pokrokové technológie blockchainu pokrývajúce rôzne odvetvia. Jej základom je globálna spolupráca, ktorú zastrešuje nadácia The Linux Foundation a zahŕňa lídrov v oblasti financií, bankovníctva, internetu vecí, dodávateľských reťazcov, výroby a technológií._ _Nadácia má niekoľko projektov, ktoré pracujú s Ethereom:_ - [Hyperledger Besu](https://www.hyperledger.org/blog/2019/08/29/announcing-hyperledger-besu) - [Hyperledger Burrow](https://www.hyperledger.org/projects/hyperledger-burrow)
+- [Hyperledger Foundation](https://hyperledger.org) _Hyperledger je open source iniciatíva založená na spolupráci, ktorá sa zameriava na pokrokové technológie blockchainu pokrývajúce rôzne odvetvia. Jej základom je globálna spolupráca, ktorú zastrešuje nadácia The Linux Foundation a zahŕňa lídrov v oblasti financií, bankovníctva, internetu vecí, dodávateľských reťazcov, výroby a technológií._ _Nadácia má niekoľko projektov, ktoré pracujú s Ethereom:_ - [Hyperledger Besu](https://www.hyperledger.org/blog/2019/08/29/announcing-hyperledger-besu) - Hyperledger Burrow
## Služby zamerané na podniky {#enterprise-focused-services}
@@ -45,7 +45,6 @@ Nasledujúce projekty poskytujú blockchainové služby pre podnikové systémy:
## Protokol a infraštruktúra {#protocol-and-infrastructure}
- [Hyperledger Besu](https://www.hyperledger.org/projects/besu) _open-source klient Etherea vyvinutý pod licenciou Apache 2.0 a napísaný v jazyku Java_
-- [Hyperledger Burrow](https://www.hyperledger.org/projects/hyperledger-burrow) _modulárny blockchainový klient so schváleným prekladačom smart kontraktov, čiastočne vyvinutý podľa špecifikácie Ethereum Virtual Machine (EVM)_
- [Infura](https://infura.io/) _škálovateľný prístup API do sietí Etherea a IPFS_
- [Kaleido](https://kaleido.io/) _platforma na vytváranie a prevádzku medzi-cloudových hybridných podnikových ekosystémov_
- [Autonity](https://www.clearmatics.com/about/) _sada protokolov, ktorá implementuje protokoly p2p a poskytuje klientsky softvér a infraštruktúru_
diff --git a/public/content/translations/sl/defi/index.md b/public/content/translations/sl/defi/index.md
index b1874c997ea..a2deaec9193 100644
--- a/public/content/translations/sl/defi/index.md
+++ b/public/content/translations/sl/defi/index.md
@@ -47,7 +47,7 @@ Eden od najboljših načinov za prepoznanje potenciala DeFi je razumevanje probl
| Trgi so vedno odprti. | Trgi se zaprejo, saj zaposleni potrebujejo počitek. |
| Zgrajeno je na transparentnosti – kdorkoli lahko pogleda podatke o produktu in preveri kako sistem deluje. | Finančne institucije so zaprte knjige: ne morete zaprositi, da bi si ogledali njihovo zgodovino posojil, evidenco njihovega upravljanega premoženja in tako naprej. |
-Raziščite DeFi aplikacije
+Raziščite DeFi aplikacije
## Začelo se je z Bitcoinom... {#bitcoin}
@@ -63,7 +63,7 @@ To zveni čudno... "zakaj bi želel programirati svoj denar"? Kakorkoli, to je v
Raziščite naše predloge za DeFi aplikacije, ki jih lahko preizkusite, če ste novi v Ethereumu.
- Raziščite DeFi Aplikacije
+ Raziščite DeFi Aplikacije
## Kaj lahko počnete z DeFi? {#defi-use-cases}
@@ -88,7 +88,7 @@ Obstaja decentralizirana alternativa za večino finančnih storitev. Toda Ethere
Ethereum kot blokovna veriga je zasnovan za pošiljanje transakcij na varen in globalen način. Kot Bitcoin tudi Ethereum naredi pošiljanje denarja po vsem svetu enostavno kot je poslati elektronsko pošto. Le vnesite prejemnikovo [ENS ime](/nft/#nft-domains) (recimo bob.eth) ali naslov njihovega računa iz vaše denarnice in plačilo bodo prejeli neposredno v minutah (običajno). Za pošiljanje ali prejemanje plačil boste potrebovali le [denarnico](/wallets/).
-Oglejte si plačilne dappe
+Oglejte si plačilne dappe
#### Ustvarjajte denarne tokove po vsem svetu... {#stream-money}
@@ -115,7 +115,7 @@ Izposoja denarja od decentraliziranih ponudnikov je na voljo v dveh glavnih razl
- Vrstnik-vrstniku, kar pomeni, da si bo posojilojemalec sredstva sposodil neposredno od določenega posojilodajalca.
- Skupinsko, kjer posojilodajalci priskrbijo sredstva (likvidnost) v bazen iz katerega si posojilojemalci lahko izposojajo.
-Oglejte si dappe za izposojanje
+Oglejte si dappe za izposojanje
Pri uporabi decentraliziranih posojilodajalcev obstajajo številne prednosti...
@@ -173,7 +173,7 @@ S posojanjem lahko služite obresti na vaš kripto in opazujete, kako vaša sred
- Vašemu aDai bo vrednost naraščala na podlagi obrestne mere in vi lahko opazujete, kako se povečuje stanje v denarnici. Odvisno od letne mere donosa (APR), bo vaše stanje v denarnici že po nekaj dneh ali celo urah prikazovalo nekaj takega 100.1234!
- Kadarkoli lahko dvignete količino navadnega Dai, ki je enaka količini vašega aDai stanja.
-Oglejte si posojilne dappe
+Oglejte si posojilne dappe
#### Loterije brez izgube {#no-loss-lotteries}
@@ -197,7 +197,7 @@ Na Ethereumu obstaja na tisoče žetonov. Decentralizirane borze (DEXs) vam omog
Na primer, če želite uporabljati loterijo brez izgube PoolTogether (opisano zgoraj), boste potrebovali žeton kot je Dai ali USDC. Te DEXi vam omogočajo, da menjate vaš ETH za tiste žetone in nazaj v ETH, ko ste končali.
-Oglejte si borze žetonov
+Oglejte si borze žetonov
@@ -207,7 +207,7 @@ Obstajajo bolj napredne možnosti za trgovalce, ki želijo malce več kontrole.
Ko uporabljate centralizirane borze, morate položiti svoja sredstva preden začnete z trgovanjem in jim zaupati da bodo zanje dobro skrbeli. Med tem, ko so vaša sredstva položena, so izpostavljena tveganju, saj so centralizirane borze privlačna tarča za hekerje.
-Oglejte si trgovalne dappe
+Oglejte si trgovalne dappe
@@ -217,7 +217,7 @@ Na Ethereumu obstajajo produkti za upravljanje sredstev, ki vam bodo poskušali
Dober primer je [DeFi Pulse indeksni sklad (DPI)](https://defipulse.com/blog/defi-pulse-index/). To je sklad, ki se samodejno rebalansira, da vašemu portfelju zagotovi, da vedno vključuje [najvišje uvrščene DeFi žetone po tržni kapitalizaciji](https://www.coingecko.com/en/defi). Nikoli vam ni potrebno skrbeti za podrobnosti in kadarkoli lahko sredstva dvignete iz sklada.
-Oglejte si naložbene dappe
+Oglejte si naložbene dappe
@@ -229,7 +229,7 @@ Ethereum je idealna platforma za množično financiranje:
- Je transparenten, tako da zbiralci sredstev lahko dokažejo, koliko sredstev je bilo zbranih. Lahko celo sledite, kako so sredstva porabljena v nadaljevanju.
- Zbiralci sredstev lahko nastavijo samodejna vračila, če na primer obstaja določen rok ali minimalen znesek, ki ni dosežen.
-
+
Oglejte si dappe za množično financiranje
@@ -256,7 +256,7 @@ Decentralizirano zavarovanje cilja na pocenitev zavarovanja, hitrejša izplačil
Ethereum produkti kot ostala programska oprema lahko trpi zaradi napak in izkoriščanja teh. Tako da je trenutno veliko zavarovalnih produktov v tem prostoru osredotočenih na zaščito uporabnikov pred izgubo sredstev. Čeprav obstajajo projekti, ki začenjajo z razvojem zavarovanja za karkoli, kar se nam lahko zgodi v življenju. Dober primer tega je Etheriscovo zavarovanje pridelkov, ki cilja na [zaščito malih kmetov v Keniji pred sušo in poplavami](https://blog.etherisc.com/etherisc-teams-up-with-chainlink-to-deliver-crop-insurance-in-kenya-137e433c29dc). Decentralizirano zavarovanje lahko zagotovi cenejše kritje za kmete, ki si tradicionalnega zavarovanja pogosto ne morejo privoščiti.
-Oglejte si zavarovalniške dappe
+Oglejte si zavarovalniške dappe
@@ -264,7 +264,7 @@ Ethereum produkti kot ostala programska oprema lahko trpi zaradi napak in izkori
Ob tolikšnem dogajanju boste potrebovali način, da sledite vsem vašim naložbam, posojilom in menjavam. Obstaja množica produktov, ki vam omogoča koordinacijo vse vaše DeFi aktivnosti iz enega mesta. To je lepota odprte arhitekture DeFi. Ekipe lahko razvijejo vmesnike, v katerih ne le vidite vašega stanja v vseh produktih, temveč tudi uporabljate njihove funkcije. To bi lahko bilo uporabno pri vašem raziskovanju DeFi.
-Oglejte si portfeljne dappe
+Oglejte si portfeljne dappe
diff --git a/public/content/translations/sl/developers/docs/standards/index.md b/public/content/translations/sl/developers/docs/standards/index.md
index a0ea96c9cca..cbc7090ee36 100644
--- a/public/content/translations/sl/developers/docs/standards/index.md
+++ b/public/content/translations/sl/developers/docs/standards/index.md
@@ -18,7 +18,7 @@ Po navadi so standardi predstavljeni kot [predlogi za izboljšanje Ethereuma](/e
- [Uvod v Ethereumovo upravljanje](/governance/)
- [Ethereum Governance Overview](https://web.archive.org/web/20201107234050/https://blog.bmannconsulting.com/ethereum-governance/) _31. marec 2019 – Boris Mann_
- [Koordinacija upravljanja razvoja Ethereum protokola in nadgradenj omrežja](https://hudsonjameson.com/2020-03-23-ethereum-protocol-development-governance-and-network-upgrade-coordination/) _23. marec 2020 - Hudson Jameson_
-- [Seznam predvajanja vseh srečanj razvijalcev za Ethereum Core](https://www.youtube.com/playlist?list=PLaM7G4Llrb7zfMXCZVEXEABT8OSnd4-7w) _(seznam predvajanja za YouTube)_
+- [Seznam predvajanja vseh srečanj razvijalcev za Ethereum Core](https://www.youtube.com/@EthereumProtocol) _(seznam predvajanja za YouTube)_
## Vrste standardov {#types-of-standards}
diff --git a/public/content/translations/sl/roadmap/beacon-chain/index.md b/public/content/translations/sl/roadmap/beacon-chain/index.md
index dcff2d23b4e..325aab287ef 100644
--- a/public/content/translations/sl/roadmap/beacon-chain/index.md
+++ b/public/content/translations/sl/roadmap/beacon-chain/index.md
@@ -32,7 +32,7 @@ Oddajniška veriga je bila temeljni del [varnega, okolju prijaznega in prilagodl
Oddajniška veriga je v Ethereum vpeljala mehanizem [dokaza o deležu](/developers/docs/consensus-mechanisms/pos/). Ta ščiti Ethereum in omogoča validatorjem, da v postopku zaslužijo več ETH. V praksi to pomeni, da je treba za aktiviranje programske opreme za validacijo zastaviti ETH. Kot zastavljavec poganjate programsko opremo, ki ustvarja in validira nove bloke v verigi.
-Zastavljanje deluje podobno, kot je prej [rudarjenje](/developers/docs/mining/), vendar je drugačno. Rudarjenje je zahtevalo veliko predhodno investicijo v obliki zmogljive strojne opreme in porabe energije. Posledici sta bili ekonomija obsega in spodbujanje centralizacije. Rudarjenje prav tako ni vključevalo zahteve po zamrznitvi sredstev kot jamstva, kar je omejevalo možnosti prokotola, da kaznuje storilce po napadu.
+Zastavljanje deluje podobno, kot je prej [rudarjenje](/developers/docs/consensus-mechanisms/pow/mining/), vendar je drugačno. Rudarjenje je zahtevalo veliko predhodno investicijo v obliki zmogljive strojne opreme in porabe energije. Posledici sta bili ekonomija obsega in spodbujanje centralizacije. Rudarjenje prav tako ni vključevalo zahteve po zamrznitvi sredstev kot jamstva, kar je omejevalo možnosti prokotola, da kaznuje storilce po napadu.
S prehodom na mehanizem dokaza o deležu je Ethereum postal občutno varnejši in bolj decentraliziran v primerjavi z mehanizmom dokaza o delu. Več ljudi kot sodeluje v omrežju, bolj decentralizirano in varno pred napadi postane.
diff --git a/public/content/translations/sr/decentralized-identity/index.md b/public/content/translations/sr/decentralized-identity/index.md
index 18d2c5fcbc5..fdcbe31b8ad 100644
--- a/public/content/translations/sr/decentralized-identity/index.md
+++ b/public/content/translations/sr/decentralized-identity/index.md
@@ -49,7 +49,7 @@ Decentralizovani identifikatori se čuvaju u distribuiranim bazama (lancima blok
## Šta omogućava decentralizovane identifikatore? {#what-makes-decentralized-identifiers-possible}
-### 1. Infrastruktura javnog ključa (PKI) {#public-key-infrastructure}
+### 1. Infrastruktura javnog ključa (PKI) {#public-key-cryptography}
Infrastruktura javnog ključa (PKI) je bezbednosna mera informacionih sistema koja generiše [javni ključ](/glossary/#public-key) i [privatni ključ](/glossary/#private-key) za jedan entitet. Kriptografija javnog ključa se izdaje na mrežama lanca blokova da bi dokazala identitet korisnika i kako bi dokazala vlasništvo nam digitalnom imovinom.
diff --git a/public/content/translations/sr/defi/index.md b/public/content/translations/sr/defi/index.md
index cad31e303fe..c600e50c1a8 100644
--- a/public/content/translations/sr/defi/index.md
+++ b/public/content/translations/sr/defi/index.md
@@ -47,7 +47,7 @@ Jedan od najboljih načina da se vidi potencijal decentralizovanih finansija jes
| Tržišta su uvek otvorena. | Tržišta se zatvaraju zato što je zaposlenima potrebna pauza. |
| Izgrađene su na transparentnosti – svako može da pogleda podatke proizvoda i da istraži kako sistem funkcioniše. | Finansijske institucije su zatvorene knjige: ne možete da tražite da vidite istoriju njihovih pozajmica, podatke o upravljanju sredstvima i sl. |
-
+
Istražite aplikacije decentralizovanih finansija
@@ -65,7 +65,7 @@ Ovo zvuči čudno… „Zašto bih želeo/la da programiram svoj novac?” Među
Istražite i isprobajte naše predloge za aplikacije decentralizovanih finansija ako ste novi u mreži Ethereum.
-
+
Istražite aplikacije decentralizovanih finansija
@@ -92,7 +92,7 @@ Postoji decentralizovana alternativa većini finansijskih usluga. Ali Ethereum t
Kao lanac blokova, Ethereum je projektovan za izvršavanje transakcija na bezbedan način širom sveta. Kao i Bitcoin, i Ethereum čini slanje novca širom sveta jednostavnim kao da šaljete imejl. Samo unesite [ENS ime](/nft/#nft-domains) primaoca (npr. bob.eth) ili njegovu adresu naloga u svoj novčanik i vaša uplata će se izvršiti u roku od nekoliko minuta (uglavnom). Da biste slali ili primali uplate, potreban vam je [novčanik](/wallets/).
-
+
Pogledajte decentralizovane aplikacije za plaćanje
@@ -123,7 +123,7 @@ Pozajmljivanje novca direktno od decentralizovanih pružalaca usluga može se vr
- Putem mreže peer-to-peer, što znači da zajmoprimac to čini direktno od konkretnog zajmodavca.
- Iz grupnog fonda pri čemu zajmodavci stavljaju sredstva (likvidnost) u fond iz kojeg zajmoprimci mogu da pozajme.
-
+
Pogledajte decentalizovane aplikacije za pozajmljivanje
@@ -183,7 +183,7 @@ Možete da zaradite kamatu na svojoj kripto-imovini tako što je pozajmljujete i
- Vaš aDai će se povećavati na osnovu kamatnih stopa i možete videti kako raste saldo u vašem novčaniku. U zavisnosti od APR-a, saldo vašeg novčanika će nakon nekoliko dana ili čak sati iznositi oko 100,1234!
- U bilo kom trenutku možete povući određeni iznos običnih Dai-ja koji je jednak vašem saldu aDai-ja.
-
+
Pogledajte decentralizovane aplikacije za davanje pozajmica
@@ -211,7 +211,7 @@ Postoje na hiljade tokena na mreži Ethereum. Decentralizovane menjačnice (DEX)
Npr. ako želite da koristite lutriju bez gubitka PoolTogether (opisanu iznad), potrebni su vam tokeni kao što su Dai ili USDC. Ove decentralizovane menjačnice (DEX) omogućavaju da menjate ETH za te tokene i obrnuto kada završite sa trgovinom.
-
+
Pogledajte menjačnice tokena
@@ -223,7 +223,7 @@ Postoje napredne opcije za trgovce koji žele malo više kontrole. Ograničene n
Kada koristite centralizovane menjačnice morate da dostavite sredstva pre trgovanja i da verujete menjačnicu da će da vodi računa o njima. Dok su vaša sredstva deponovana, ona su u riziku jer su centralizovane menjačnice atraktivna meta za hakere.
-
+
Pogledajte decentralizovane aplikacije o trgovanju
@@ -235,7 +235,7 @@ Na Ethereumu postoje proizvodi za upravljanje fondovima koji vam mogu pomoći da
Dobar primer je [DeFi Pulse Index fond (DPI)](https://defipulse.com/blog/defi-pulse-index/). Ovo je fond koji automatski rebalansira kako bi se osiguralo da vaš portfolio uvek uključuje [najviše DeFi tokena prema tržišnoj kapitalizaciji](https://www.coingecko.com/en/defi). Nikada nećete morati da upravljate detaljima i možete povući sredstva iz fonda kad god poželite.
-
+
Pogledajte decentralizovane aplikacije za investiranje
@@ -249,7 +249,7 @@ Ethereum je idealna platforma za masovno finansiranje (crowdfunding):
- Sve je transparentno tako da oni koji podižu sredstva mogu dokazati koliko novca je prikupljeno. Kasnije, možete čak i da pratite kako se sredstva troše.
- Oni koji skupljaju sredstva mogu da postave automatsko refundiranje ukoliko, na primer, postoji određeni rok ili minimalni iznos nije dostignut.
-
+
Pogledajte aplikacije za masovno finansiranje
@@ -276,7 +276,7 @@ Decentralizovano osiguranje pokušava da učini osiguranje jeftinijim, bržim za
Ethereum proizvodi, kao i bilo koji drugi softver, može imati greške i slabe tačke. Tako da sada, mnogo proizvoda za osiguranje u prostoru se fokusira na zaštitu njihovih korisnika od gubitka sredstava. Ipak, postoje projekti koji počinju razvijati osiguranja za sve što može da nas snađe. Dobar primer toga je Crop osiguranje kompanije Etherisc koje se trudi da [zaštiti male poljoprivrednike u Keniji od suše i poplave](https://blog.etherisc.com/etherisc-teams-up-with-chainlink-to-deliver-crop-insurance-in-kenya-137e433c29dc). Decentralizovano osiguranje može pružiti jeftiniju pokrivenost za poljoprivrednike koji često nisu u mogućnosti da priušte tradicionalno osiguranje.
-
+
Pogledajte decentralizovane aplikacije za osiguranje
@@ -286,7 +286,7 @@ Ethereum proizvodi, kao i bilo koji drugi softver, može imati greške i slabe t
S obzirom na toliko dešavanja trenutno, treba vam način da pratite sve svoje investicije, pozajmice i trgovanja. Postoji niz proizvoda koji vam omogućavaju da koordinišete sve svoje DeFi aktivnosti sa jednog mesta. U ovome je lepota otvorene arhitekture decentralizovanih finansija. Timovi mogu da izgrade interfejse gde, ne samo da možete videti svoj saldo na različitim proizvodima, već možete koristiti i njihove funkcije. Ovo vam možete biti korisno kako budete više istraživali decentralizovane finansije.
-
+
Pogledajte decentralizovane aplikacije o portfolijima
diff --git a/public/content/translations/sr/desci/index.md b/public/content/translations/sr/desci/index.md
index a5235a7f89c..440a1641ecf 100644
--- a/public/content/translations/sr/desci/index.md
+++ b/public/content/translations/sr/desci/index.md
@@ -68,7 +68,7 @@ Trenutni standardni model finansiranja nauke podrazumeva da pojedinci ili grupe
Studije su pokazale da su ocenjivački paneli za dodelu grantova loši u izboru visokokvalitetnih predloga, s obzirom na to da isti predlozi dati različitim panelima na ocenjivanje imaju znatno različite ishode. Kako je finansiranje postalo sve ređe, postalo je skoncentrisanije u manji krug iskusnijih istraživača sa intelektualno konzervativnijim projektima. Ovaj efekat je stvorio hiper-kompetitivnu finansijsku sredinu, učvršćujući perverzne podsticaje i gušeći inovacije.
-Web3 ima potencijal da poremeti ovaj nefunkcionalni model finansiranja eksperimentišući sa različitim modelima podsticaja koji su razvijeni od strane DAO-a i šire, u okviru Web3 tehnologije. [Retroaktivno finansiranje javnih dobara](https://medium.com/ethereum-optimism/retroactive-public-goods-funding-33c9b7d00f0c), [kvadratno finansiranje](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2003531), [DAO upravljanje](https://www.antler.co/blog/daos-and-web3-governance) i [tokenizovane strukture insentiva](https://cdixon.org/2017/05/27/crypto-tokens-a-breakthrough-in-open-network-design) su neki od Web3 alata koji mogu da revolucioniraju finansiranje nauke.
+Web3 ima potencijal da poremeti ovaj nefunkcionalni model finansiranja eksperimentišući sa različitim modelima podsticaja koji su razvijeni od strane DAO-a i šire, u okviru Web3 tehnologije. [Retroaktivno finansiranje javnih dobara](https://medium.com/ethereum-optimism/retroactive-public-goods-funding-33c9b7d00f0c), [kvadratno finansiranje](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2003531), [DAO upravljanje](https://www.antler.co/blog/daos-and-web3-governance-the-promise-implications-and-challenges-ahead) i [tokenizovane strukture insentiva](https://cdixon.org/2017/05/27/crypto-tokens-a-breakthrough-in-open-network-design) su neki od Web3 alata koji mogu da revolucioniraju finansiranje nauke.
### Vlasništvo intelektualne svojine i razvoj {#ip-ownership}
diff --git a/public/content/translations/sr/smart-contracts/index.md b/public/content/translations/sr/smart-contracts/index.md
index d5e1623bb8a..fffe46726df 100644
--- a/public/content/translations/sr/smart-contracts/index.md
+++ b/public/content/translations/sr/smart-contracts/index.md
@@ -65,7 +65,7 @@ Mogu da izvršavaju računanja, naprave valutu, skladište podatke, rudare NFT-i
- [Stablecoins](/stablecoins/)
- [kreiranje i distribuiranje jedinstvenih digitalnih sredstava](/nft/)
- [automatska, otvorena razmena valuta](/get-eth/#dex)
-- [Decentralizovano igranje](/dapps/?category=gaming)
+- [Decentralizovano igranje](/dapps/?category=gaming#explore)
- [polisa osiguranja koja se automatski izvršava](https://etherisc.com/)
- [standard koji omogućava da ljudi kreiraju prilagođene, interoperabilne valute](/developers/docs/standards/tokens/)
diff --git a/public/content/translations/sw/community/events/index.md b/public/content/translations/sw/community/events/index.md
index 7bdcfc8468d..4cfd03e9b23 100644
--- a/public/content/translations/sw/community/events/index.md
+++ b/public/content/translations/sw/community/events/index.md
@@ -4,7 +4,7 @@ description: Jinsi ya kushiriki kwenye jamii ya Ethereum.
lang: sw
---
-## Matukio yajayo {#events}
+# Matukio yajayo {#events}
**Kila mwezi, kuna matukio muhimu ulimwenguni kote.** Fikiria kuhusu kushiriki mkutano mmoja ulio jirani na wewe ukutane na watu wengi walio kwenye jamii, jifunze juu ya kupata fursa za kazi na jenga ujuzi mpya.
diff --git a/public/content/translations/sw/community/get-involved/index.md b/public/content/translations/sw/community/get-involved/index.md
index b214ed53865..5adb1dbe984 100644
--- a/public/content/translations/sw/community/get-involved/index.md
+++ b/public/content/translations/sw/community/get-involved/index.md
@@ -14,7 +14,7 @@ Jumuiya ya Ethereum inahusisha watu wa asili tofauti na wenye ujuzi wa kila aina
- [Tafuta fadhila kwenye Gitcoin](https://gitcoin.co/), fanyia kazi itilafu ndogo ama kubwa na ujipatie kripto!
- Shiriki kwenye[ETHGlobal](http://ethglobal.co/)hackathon iliyokaribu nawe!
- Vinjari juu ya [miradi inayohusiana na taaluma yako au lugha ya usimbuajiutakayochagua.](/developers/docs/programming-languages/)
-- Tazama au shiriki kwenye [mikutano ya wasimbuaji wa ndani](https://www.youtube.com/playlist?list=PLaM7G4Llrb7zfMXCZVEXEABT8OSnd4-7w)
+- Tazama au shiriki kwenye [mikutano ya wasimbuaji wa ndani](https://www.youtube.com/@EthereumProtocol)
- [Orodha pendekezwa ya kuunga mkono Ikolojia ya Ethereum](https://esp.ethereum.foundation/wishlist/) - maeneo amabayo Ikolojia ya Ethereum inatafuta maombi ya fedha kwa ajili ya vifaa, nyaraka, na miundombinu
- [Daraja la Web3](https://www.web3bridge.com/) - jiunge na wapenzi wa web3 kwenye mpango wa kutambua, kujifunza, na kuunga mkono mamia ya wasanidi programu na wanachama Afrika
diff --git a/public/content/translations/sw/roadmap/beacon-chain/index.md b/public/content/translations/sw/roadmap/beacon-chain/index.md
index 49df9c1eb0b..e92f17f889b 100644
--- a/public/content/translations/sw/roadmap/beacon-chain/index.md
+++ b/public/content/translations/sw/roadmap/beacon-chain/index.md
@@ -27,7 +27,7 @@ Jukumu ya mnyororo wa Kioleza litabadilika baada ya mda ila sehemu ya msingi ya
Mnyororo wa Kioleza utaingiza [uthibitisho-wa-hisa](/developers/docs/consensus-mechanisms/pos/) kwenye Ethereum. Hii ndio njia mpya ya wewe kusaidia Ethereum kua salama. Ifikirie kama faida kw jamii ambayo itafanya Ethereum kua na afya na kukutenegenezea hela zaidi wakati wa mchakato. Kiuhalisia, itahusisha wewe kuweka hisa za ETH ili kuamsha programu. Kama mthibitishaji utafanya mchakato wa shughuli za pesa na utaunda vitalu vipya kwenye mnyororo.
-Kuweka hisa na kua mt hibitishaji ni rahisi kuliko [kuchimba](/developers/docs/mining/)(jinsi ambavyo mtandao ni saklama kwa sasa). Mwishowe hii inamatumaini itasaidia Ethereum kua salama zaidi. Jinsi watu wengi wanavyoshiriki katika mtandao, ndivyo unavyozodi kujitegemea na salama kutoka kwa shambulio litakalokuja.
+Kuweka hisa na kua mt hibitishaji ni rahisi kuliko [kuchimba](/developers/docs/consensus-mechanisms/pow/mining/)(jinsi ambavyo mtandao ni saklama kwa sasa). Mwishowe hii inamatumaini itasaidia Ethereum kua salama zaidi. Jinsi watu wengi wanavyoshiriki katika mtandao, ndivyo unavyozodi kujitegemea na salama kutoka kwa shambulio litakalokuja.
Kama ungependa kua mthibitishaji na kusaidia kulinda mnyororo wa Kioleza, jifunze zaidi jinsi ya kuweka hisa.
diff --git a/public/content/translations/tr/community/code-of-conduct/index.md b/public/content/translations/tr/community/code-of-conduct/index.md
index 8fea828a03b..8525b4750b5 100644
--- a/public/content/translations/tr/community/code-of-conduct/index.md
+++ b/public/content/translations/tr/community/code-of-conduct/index.md
@@ -4,6 +4,8 @@ description: Ethereum.org alanlarında ulaşmaya çalıştığımız basit stand
lang: tr
---
+# Davranış kuralları {#conduct-intro}
+
## Misyon {#mission}
Ethereum için en kapsayıcı ve erişilebilir bilgi merkezini kurmak ve sürdürmek.
diff --git a/public/content/translations/tr/community/events/index.md b/public/content/translations/tr/community/events/index.md
index 316213d5e22..d6b3411e1ea 100644
--- a/public/content/translations/tr/community/events/index.md
+++ b/public/content/translations/tr/community/events/index.md
@@ -5,7 +5,7 @@ lang: tr
hideEditButton: true
---
-## Gelecek etkinlikler {#events}
+# Gelecek etkinlikler {#events}
**Her ay dünya çapında büyük Ethereum etkinlikleri olur.** Toplulukta daha fazla insanla tanışmak, istihdam fırsatları hakkında bilgi edinmek ve yeni beceriler geliştirmek için bunlardan birine katılmayı düşünebilirsiniz.
diff --git a/public/content/translations/tr/community/get-involved/index.md b/public/content/translations/tr/community/get-involved/index.md
index b61ecc0171a..526e0d044d5 100644
--- a/public/content/translations/tr/community/get-involved/index.md
+++ b/public/content/translations/tr/community/get-involved/index.md
@@ -16,7 +16,7 @@ Ethereum topluluğu, birçok farklı geçmişe ve beceriye sahip insanları içe
- [Gitcoin'de bir ödül bulun](https://gitcoin.co/), küçük veya büyük bir teknik sorun üzerinde çalışın ve kripto kazanın!
- Yakınınızdaki bir [ETHGlobal](http://ethglobal.co/) hackathon'una katılın!
- Uzmanlık alanınızla veya seçtiğiniz programlama diliyle ilgili [projeleri inceleyin](/developers/docs/programming-languages/)
-- [Core Dev çağrılarını](https://www.youtube.com/playlist?list=PLaM7G4Llrb7zfMXCZVEXEABT8OSnd4-7w) izleyin veya bunlara katılın
+- [Core Dev çağrılarını](https://www.youtube.com/@EthereumProtocol) izleyin veya bunlara katılın
- [Ekosistem Destek Programının istek listesi](https://esp.ethereum.foundation/wishlist/) - Ethereum Ekosistem Destek Programının aktif olarak hibe başvuruları aradığı araçlar, belgeler ve altyapı alanları
- [Web3Bridge](https://www.web3bridge.com/) - Afrika genelinde yüzlerce geliştiriciyi ve topluluk üyesini belirleme, eğitme ve destekleme girişimlerinde hevesli web3 topluluğuna katılın
- [Ethereum Cat Herders Discord](https://discord.io/EthCatHerders) grubuna katılın
diff --git a/public/content/translations/tr/community/grants/index.md b/public/content/translations/tr/community/grants/index.md
index eeb58a257e9..758e4a9fda4 100644
--- a/public/content/translations/tr/community/grants/index.md
+++ b/public/content/translations/tr/community/grants/index.md
@@ -18,7 +18,6 @@ Bu programlar geniş bir proje yelpazesine hibeler sağlayarak geniş Ethereum e
- [MetaCartel](https://www.metacartel.org/grants/) - _Dapp geliştirme, DAO oluşturma_
- [Moloch DAO](https://www.molochdao.com/) - _Gizlilik, katman 2 ölçeklendirme, istemci güvenliği ve dahası_
- [DAO Hibeleri](https://docs.google.com/spreadsheets/d/1XHc-p_MHNRdjacc8uOEjtPoWL86olP4GyxAJOFO0zxY/edit#gid=0) - _Hibe sunan organizasyonların Google tablosu_
-- [Web3 Hibeleri için Crunchbase](https://www.cryptoneur.xyz/web3-grants) - _Hibeleri kategori, kullanım alanı, miktar ve dahasına göre filtreleyin ve arayın. Diğerlerinin doğru hibeyi bulabilmesine yardımcı olmak için katkı sağlayın._
- [Akademik Hibeler](https://esp.ethereum.foundation/academic-grants) - _Ethereum ile ilgili akademik çalışmaları desteklemek için hibeler_
- [Blockworks Grantfarm](https://blockworks.co/grants/programs) - _Blockworks, tüm hibelerin, RFP'lerin ve hata ödüllerinin kapsamlı bir dizinini derlemiştir._
@@ -35,7 +34,6 @@ Bu projeler kendi teknolojilerini geliştirmeye ve deneyimlemeye yönelik olarak
- [SKALE Ağı Hibe Ekosistemi](https://skale.space/developers#grants) - _[SKALE Ağı](https://skale.space/) ekosistemi_
- [The Graph](https://airtable.com/shrdfvnFvVch3IOVm) – _[The Graph](https://thegraph.com/) ekosistemi_
- [Uniswap Grants Program](https://www.uniswapfoundation.org/apply-for-a-grant) - _[Uniswap](https://uniswap.org/) topluluğu_
-- [Web3 Hibeleri](https://web3grants.net) - _Web3/kripto ile ilgili hibe programlarının geniş bir listesi_
## İkinci dereceden finansman {#quadratic-funding}
diff --git a/public/content/translations/tr/contributing/design/adding-design-resources/index.md b/public/content/translations/tr/contributing/design/adding-design-resources/index.md
index 13173c761f7..4932e988af9 100644
--- a/public/content/translations/tr/contributing/design/adding-design-resources/index.md
+++ b/public/content/translations/tr/contributing/design/adding-design-resources/index.md
@@ -4,6 +4,8 @@ description: Ethereum.org'daki tasarım materyallerinin kaliteli olmasını sağ
lang: tr
---
+# İçerik kaynaklarını ekle {#adding-design-resources}
+
Herkes [Web3 sayfasında tasarım ve kullanıcı deneyimi](/developers/docs/design-and-ux/) için yeni tasarım materyalleri önerebilir.
Bu sayfanın, hevesli web3 kullanıcıları için değer sunmaya odaklandığını unutmayın. Tasarım bölümü, hizmetleriniz, ürünleriniz ya da platformlarınızın reklamını yapmak için değildir.
diff --git a/public/content/translations/tr/decentralized-identity/index.md b/public/content/translations/tr/decentralized-identity/index.md
index 21754ce68db..af3ce850fe3 100644
--- a/public/content/translations/tr/decentralized-identity/index.md
+++ b/public/content/translations/tr/decentralized-identity/index.md
@@ -49,7 +49,7 @@ Merkeziyetsiz tanımlayıcılar dağıtık defterlerde (blok zincirler) veya eş
## Merkeziyetsiz tanımlayıcıları mümkün kılan nedir? {#what-makes-decentralized-identifiers-possible}
-### 1. Açık Anahtar Altyapısı (AAA) {#public-key-infrastructure}
+### 1. Açık Anahtar Altyapısı (AAA) {#public-key-cryptography}
Açık Anahtar altyapısı (AAA) bir kuruluş veya birey için bir [açık anahtar](/glossary/#public-key) ve bir de [özel anahtar](/glossary/#private-key) oluşturan güvenlik önlemidir. Açık anahtar kriptografisi blok zincir ağlarında kullanıcı hesaplarını ve dijital varlıkların mülkiyetini doğrulamak için kullanılır.
diff --git a/public/content/translations/tr/defi/index.md b/public/content/translations/tr/defi/index.md
index 68d03d5d184..314e6098f25 100644
--- a/public/content/translations/tr/defi/index.md
+++ b/public/content/translations/tr/defi/index.md
@@ -47,7 +47,7 @@ DeFi'nin potansiyelini görmenin en iyi yollarından biri, bugün var olan sorun
| Piyasalar her zaman açıktır. | Çalışanların molaya ihtiyacı olduğu için piyasalar kapanır. |
| Şeffaflık üzerine kurulmuştur: Herkes bir ürünün verilerine bakabilir ve sistemin nasıl çalıştığını inceleyebilir. | Finansal kurumlar kapalı kutulardır: Kredi geçmişlerini, yönetilen varlıklarının kaydını vb. görmeyi talep edemezsiniz. |
-
+
DeFi uygulamalarını keşfedin
@@ -65,7 +65,7 @@ Bu kulağa tuhaf geliyor... "Neden paramı programlamak isteyeyim ki"? Bununla b
Ethereum'da yeniyseniz denemek için DeFi uygulamalarına yönelik önerilerimizi keşfedin.
-
+
DeFi uygulamalarını keşfet
@@ -92,7 +92,7 @@ Bu kulağa tuhaf geliyor... "Neden paramı programlamak isteyeyim ki"? Bununla b
Bir blok zinciri olarak Ethereum, işlemleri güvenli ve küresel bir şekilde göndermek için tasarlanmıştır. Bitcoin gibi, Ethereum da dünyanın her yerine para göndermeyi bir e-posta göndermek kadar kolay hâle getiriyor. Cüzdanınızdan alıcınızın [ENS adını](/nft/#nft-domains) (bob.eth gibi) veya hesap adresini girdikten sonra ödemeniz (genellikle) dakikalar içinde doğrudan alıcıya gidecektir. Ödeme göndermek veya almak için bir [cüzdan](/wallets/) gerekir.
-
+
Ödeme dApp'lerini gör
@@ -123,7 +123,7 @@ Merkezi olmayan sağlayıcılardan borç para almanın iki ana çeşidi vardır.
- Eşler arası, yani borç alan bir kişi belirli bir borç verenden doğrudan borç alır.
- Borç verenlerin, borç alacak kişilerin borç alabileceği bir havuza fon (likidite) sağladığı havuz tabanlı çeşit.
-
+
Borç alma dapp'leri gör
@@ -183,7 +183,7 @@ Borç vererek kripto paranızdan faiz kazanabilir ve fonlarınızın gerçek zam
- aDai'niz faiz oranlarına göre artacak ve cüzdanınızdaki bakiyenizin büyüdüğünü görebilirsiniz. APR'ye (yıllık yüzde oran) bağlı olarak, cüzdan bakiyenizde birkaç gün hatta birkaç saat sonra 100.1234 gibi bir tutar görebilirsiniz!
- İstediğiniz zaman aDai bakiyenize eşit miktarda normal Dai çekebilirsiniz.
-
+
Borç verme uygulamalarına bakın
@@ -211,7 +211,7 @@ Ethereum'da binlerce token var. Merkeziyetsiz borsalar (DEX'ler), istediğiniz z
Örneğin, kayıpsız piyango PoolTogether'ı (yukarıda açıklanmıştır) kullanmak istiyorsanız, Dai veya USDC gibi bir token'a ihtiyacınız olacaktır. Bu DEX'ler, ETH'nizi bu token'larla değiştirmenize ve işiniz bittiğinde tekrar geri almanıza olanak tanır.
-
+
Token borsalarını gör
@@ -223,7 +223,7 @@ Biraz daha fazla kontrol isteyen borsa kullanıcıları için daha gelişmiş se
Merkezi bir borsa kullandığınızda, varlıklarınızı ticaretten önce yatırmanız ve varlıklarınızı koruması için merkezi borsaya güvenmeniz gerekir. Merkezi borsalar hacker'lar için önemli hedefler olduğundan varlıklarınız yatırıldıktan sonra risk altındadır.
-
+
Ticaret dapp'lerini gör
@@ -235,7 +235,7 @@ Ethereum'da, seçtiğiniz bir stratejiye dayalı olarak portföyünüzü büyüt
İyi bir örnek: [DeFi Pulse Index fonu (DPI)](https://defipulse.com/blog/defi-pulse-index/). Bu, sizin portföyünüzün her zaman [piyasa değerine göre en iyi DeFi token'larını](https://www.coingecko.com/en/defi) içermesini sağlamak için otomatik olarak yeniden dengelenen bir fondur. Hiçbir zaman herhangi bir ayrıntıyı yönetmek zorunda kalmazsınız ve istediğiniz zaman fondan çıkabilirsiniz.
-
+
Yatırım dapp'lerini gör
@@ -249,7 +249,7 @@ Ethereum, kitle fonlaması için ideal bir platformdur:
- Şeffaf olduğu için fon toplayanlar ne kadar para toplandığını kanıtlayabilir. Daha sonra fonların nasıl harcandığını bile takip edebilirsiniz.
- Fon toplayanlar, örneğin belirli bir son tarih ve karşılanmayan minimum tutar varsa otomatik geri ödemeler ayarlayabilir.
-
+
Kitle fonlaması dapp'lerini gör
@@ -276,7 +276,7 @@ Merkezi olmayan sigorta; sigortayı daha ucuz, ödemesi daha hızlı ve daha şe
Ethereum ürünleri, herhangi bir yazılım gibi, hatalardan ve açıklardan zarar görebilir. Dolayısıyla şu anda bu alandaki birçok sigorta ürünü, kullanıcılarını fon kaybına karşı korumaya odaklanıyor. Ancak hayatın karşımıza çıkarabileceği her şeyi kapsamaya başlayan projeler mevcuttur. Güzel bir örnek: [Kenya'daki küçük çiftçileri kuraklık ve sele karşı korumayı](https://blog.etherisc.com/etherisc-teams-up-with-chainlink-to-deliver-crop-insurance-in-kenya-137e433c29dc) amaçlayan Etherisc'in Hasat teminatı. Merkezi olmayan sigorta, genellikle geleneksel sigortadan fiyatlandırılan çiftçiler için daha ucuz teminat sağlayabilir.
-
+
Sigorta dapp'lerini gör
@@ -286,7 +286,7 @@ Ethereum ürünleri, herhangi bir yazılım gibi, hatalardan ve açıklardan zar
Bu kadar çok şey olurken, tüm yatırımlarınızı, kredilerinizi ve ticaretlerinizi takip etmenin bir yoluna ihtiyacınız olacak. Tüm DeFi aktivitelerinizi tek bir yerden koordine etmenize izin veren bir dizi ürün var. Bu, DeFi'nin açık mimarisinin güzelliğidir. Ekipler, ürünler arasında sadece bakiyelerinizi görmenin ötesinde ürünlerin özelliklerini de kullanabileceğiniz arayüzler oluşturabilir. DeFi keşfederken bunu faydalı bulabilirsiniz.
-
+
Portföy dapp'lerini gör
diff --git a/public/content/translations/tr/desci/index.md b/public/content/translations/tr/desci/index.md
index 52ae4c9b3fe..bd0f8b6747e 100644
--- a/public/content/translations/tr/desci/index.md
+++ b/public/content/translations/tr/desci/index.md
@@ -68,7 +68,7 @@ An itibarıyla bilime kaynak sağlamak için izlenen yol, bireylerin veya bir gr
Çalışmalar, farklı panellere verilen aynı tekliflerin çok farklı sonuçları olduğundan, hibe inceleme panellerinin yüksek kaliteli teklifleri seçmekte yetersiz kaldığını göstermiştir. Finansman nadir hale geldikçe, entelektüel açıdan daha muhafazakar projelere sahip daha kıdemli araştırmacılardan oluşan daha küçük bir havuzda yoğunlaştı. Etki, hiper rekabetçi bir finansman ortamı yaratarak, sapkın teşvikleri sağlamlaştırdı ve yeniliği boğdu.
-Web3, DAO'lar ve geniş çapta Web3 tarafından geliştirilen farklı teşvik modellerini deneyerek bu bozuk finansman modelini dağıtma potansiyeline sahiptir. Bilimin fonlanmasında köklü değişim yapabilecek Web3 araçlarından bazıları [geriye dönük kamu malları fonlaması](https://medium.com/ethereum-optimism/retroactive-public-goods-funding-33c9b7d00f0c), [kuadratik fonlama](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2003531), [DAO yönetişimi](https://www.antler.co/blog/daos-and-web3-governance) ve [tokenlaştırılmış teşvik yapılarıdır](https://cdixon.org/2017/05/27/crypto-tokens-a-breakthrough-in-open-network-design).
+Web3, DAO'lar ve geniş çapta Web3 tarafından geliştirilen farklı teşvik modellerini deneyerek bu bozuk finansman modelini dağıtma potansiyeline sahiptir. Bilimin fonlanmasında köklü değişim yapabilecek Web3 araçlarından bazıları [geriye dönük kamu malları fonlaması](https://medium.com/ethereum-optimism/retroactive-public-goods-funding-33c9b7d00f0c), [kuadratik fonlama](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2003531), [DAO yönetişimi](https://www.antler.co/blog/daos-and-web3-governance-the-promise-implications-and-challenges-ahead) ve [tokenlaştırılmış teşvik yapılarıdır](https://cdixon.org/2017/05/27/crypto-tokens-a-breakthrough-in-open-network-design).
### Fikri mülkiyet sahipliği ve geliştirme {#ip-ownership}
diff --git a/public/content/translations/tr/developers/docs/consensus-mechanisms/pow/mining/index.md b/public/content/translations/tr/developers/docs/consensus-mechanisms/pow/mining/index.md
index 32a65cc9c31..61dae26b510 100644
--- a/public/content/translations/tr/developers/docs/consensus-mechanisms/pow/mining/index.md
+++ b/public/content/translations/tr/developers/docs/consensus-mechanisms/pow/mining/index.md
@@ -70,9 +70,9 @@ Austin'in madenciliği ve iş ispatı blok zincirini, size açıklamasını izle
## Madencilik algoritması {#mining-algorithm}
-Ethereum Ana Ağı şimdiye kadar yalnızca bir madencilik algoritması kullandı - ["Ethash"](/developers/docs/consensus-mechanisms/pow/mining-algorithms/ethash/). Ethhash, ['Dagger-Hashimoto'](/developers/docs/consensus-mechanisms/pow/mining-algorithms/dagger-hashimoto/) olarak bilinen orijinal bir ArGe algoritmasının varisiydi.
+Ethereum Ana Ağı şimdiye kadar yalnızca bir madencilik algoritması kullandı - ["Ethash"](/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/ethash/). Ethhash, ['Dagger-Hashimoto'](/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/dagger-hashimoto/) olarak bilinen orijinal bir ArGe algoritmasının varisiydi.
-[Madencilik algoritması ile ilgili daha fazlası](/developers/docs/consensus-mechanisms/pow/mining-algorithms/).
+[Madencilik algoritması ile ilgili daha fazlası](/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/).
## İlgili Konular {#related-topics}
diff --git a/public/content/translations/tr/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/dagger-hashimoto/index.md b/public/content/translations/tr/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/dagger-hashimoto/index.md
index 19471096911..928262c63ce 100644
--- a/public/content/translations/tr/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/dagger-hashimoto/index.md
+++ b/public/content/translations/tr/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/dagger-hashimoto/index.md
@@ -4,7 +4,7 @@ description: Dagger-Hashimoto algoritmasına detaylı bir bakış.
lang: tr
---
-Dagger-Hashimoto, Ethereum'un madencilik algoritması için orijinal araştırma uygulaması ve şartnamesiydi. Dagger-Hashimoto'nun yerini [Ethash](#ethash) aldı. 15 Eylül 2022'de gerçekleşen [Birleşim'den](/updates/merge) sonra madencilik tamamen durdurulmuştur. O zamandan beri Ethereum [hisse ispatı](/developers/docs/consensus-mechanisms/pos) mekanizmasını kullanmaktadır. Bu sayfa sadece bilgilendirme içindir - burdaki bilgi Birleşim sonrası Ethereum için geçerli değildir.
+Dagger-Hashimoto, Ethereum'un madencilik algoritması için orijinal araştırma uygulaması ve şartnamesiydi. Dagger-Hashimoto'nun yerini [Ethash](#ethash) aldı. 15 Eylül 2022'de gerçekleşen [Birleşim'den](/roadmap/merge/) sonra madencilik tamamen durdurulmuştur. O zamandan beri Ethereum [hisse ispatı](/developers/docs/consensus-mechanisms/pos) mekanizmasını kullanmaktadır. Bu sayfa sadece bilgilendirme içindir - burdaki bilgi Birleşim sonrası Ethereum için geçerli değildir.
## Ön koşullar {#prerequisites}
diff --git a/public/content/translations/tr/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/ethash/index.md b/public/content/translations/tr/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/ethash/index.md
index baaf4e7dade..20c813ce1fa 100644
--- a/public/content/translations/tr/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/ethash/index.md
+++ b/public/content/translations/tr/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/ethash/index.md
@@ -8,7 +8,7 @@ lang: tr
Ethash, Ethereum'un iş ispatı madencilik algoritmasıydı. İş ispatı tamamen durdurulmuş ve Ethereum, hisse ispatı ile güvence altına alınmıştır. Birleşim, hisse ispatıve hisseleme hakkında daha fazla bilgi edinin. Bu sayfa sadece tarihsel ilgi içindir!
-[Ethash](https://github.com/ethereum/wiki/wiki/Ethash), [Dagger-Hashimoto](/developers/docs/consensus-mechanisms/pow/mining-algorithms/dagger-hashimoto) algoritmasının değiştirilmiş bir versiyonudur. Ethash iş ispatı[bellek zor](https://wikipedia.org/wiki/Memory-hard_function) bir işlemdir, bunun algoritmayı ASIC dirençli hale getirdiği düşünülür. Sonunda Ethash ASICleri geliştirildi fakat GPU madenciliği iş ispatı durdurulana kadar hâlâ geçerli bir seçenekti. Ethash, Ethereum olmayan iş ispatı ağlarında hâlâ diğer paraların madenciliğini yapmak için kullanılmaktadır.
+[Ethash](https://github.com/ethereum/wiki/wiki/Ethash), [Dagger-Hashimoto](/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/dagger-hashimoto) algoritmasının değiştirilmiş bir versiyonudur. Ethash iş ispatı[bellek zor](https://wikipedia.org/wiki/Memory-hard_function) bir işlemdir, bunun algoritmayı ASIC dirençli hale getirdiği düşünülür. Sonunda Ethash ASICleri geliştirildi fakat GPU madenciliği iş ispatı durdurulana kadar hâlâ geçerli bir seçenekti. Ethash, Ethereum olmayan iş ispatı ağlarında hâlâ diğer paraların madenciliğini yapmak için kullanılmaktadır.
## Ethash nasıl çalışır? {#how-does-ethash-work}
@@ -44,7 +44,7 @@ ACCESSES = 64 # number of accesses in hashimoto loop
### 'SHA3' kullanımı {#sha3}
-Ethereum'un gelişimi, SHA3 standardının geliştirilmesiyle çakıştı ve standartlar süreci, sonlandırılmış karma algoritmanın dolgusunda geç bir değişiklik yaptı, böylece Ethereum'un "sha3_256" ve "sha3_512" karmaları standart sha3 karmaları değil, diğer bağlamlarda "Keccak-256" ve "Keccak-512" olarak genellikle atıfta bulunulan bir değişkendir. Tartışmaya ör. [buradan](https://eips.ethereum.org/EIPS-1803), [buradan](http://ethereum.stackexchange.com/questions/550/which-cryptographic-hash-function-does-ethereum-use) ve [buradan bakabilirsiniz](http://bitcoin.stackexchange.com/questions/42055/what-is-the-approach-to-calculate-an-ethereum-address-from-a-256-bit-private-key/42057#42057).
+Ethereum'un gelişimi, SHA3 standardının geliştirilmesiyle çakıştı ve standartlar süreci, sonlandırılmış karma algoritmanın dolgusunda geç bir değişiklik yaptı, böylece Ethereum'un "sha3_256" ve "sha3_512" karmaları standart sha3 karmaları değil, diğer bağlamlarda "Keccak-256" ve "Keccak-512" olarak genellikle atıfta bulunulan bir değişkendir. Tartışmaya ör. [buradan](https://eips.ethereum.org/EIPS/eip-1803), [buradan](http://ethereum.stackexchange.com/questions/550/which-cryptographic-hash-function-does-ethereum-use) ve [buradan bakabilirsiniz](http://bitcoin.stackexchange.com/questions/42055/what-is-the-approach-to-calculate-an-ethereum-address-from-a-256-bit-private-key/42057#42057).
Lütfen aşağıdaki algoritmanın açıklamasında "sha3" karmalarına atıfta bulunulduğunu unutmayın.
diff --git a/public/content/translations/tr/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/index.md b/public/content/translations/tr/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/index.md
index 9512dbe2316..7cfcc9dd08b 100644
--- a/public/content/translations/tr/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/index.md
+++ b/public/content/translations/tr/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/index.md
@@ -24,13 +24,13 @@ Dagger Hashimoto, Ethash'ın yerini aldığı Ethereum madenciliği için öncü
Dagger-Hashimoto, Dagger ve Hashimoto algoritmalarının değiştirilmiş versiyonlarını kullandı. Dagger Hashimoto ve Hashimoto arasındaki fark, veri kaynağı olarak blok zinciri kullanmak yerine Dagger Hashimoto'nun her N blokta blok verisine dayalı olarak güncellenen özel olarak oluşturulmuş bir veri seti kullanmasıdır. Veri kümesi, hafif istemci doğrulama algoritması için her nonce'ye özgü bir alt kümenin verimli bir şekilde hesaplanmasına olanak tanıyan Dagger algoritması kullanılarak oluşturulur. Dagger Hashimoto ve Dagger arasındaki fark, orijinal Dagger'dan farklı olarak, bloğu sorgulamak için kullanılan veri kümesinin yarı kalıcı olması ve yalnızca ara sıra (örneğin haftada bir) güncellenmesidir. Bu, veri kümesi oluşturma çabasının sıfıra yakın olduğu anlamına gelir, bu nedenle Sergio Lerner'in paylaşılan bellek hızlandırmalarıyla ilgili argümanları ihmal edilebilir hale gelir.
-[Dagger-Hashimoto](/developers/docs/consensus-mechanisms/pow/mining-algorithms/dagger-hashimoto) hakkında daha fazlası.
+[Dagger-Hashimoto](/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/dagger-hashimoto) hakkında daha fazlası.
## Ethash {#ethash}
Ethash, güncelde kullanımdan kalkmış bir iş ispatı mimarisinin altında gerçek Ethereum Ana Ağı'nda kullanılan madencilik algoritmasıydı. Ethash, algoritma önemli ölçüde güncellendikten sonra Dagger-Hashimoto'nun belirli bir versiyonuna verilen yeni bir isimdi, ancak yine de selefinin temel ilkelerini devraldı. Ethereum Ana Ağı yalnızca Ethash'ı kullandı - Dagger Hashimoto, Ethereum ana ağında madenciliğin başlamasından önce geçerliliğini yitirmiş madencilik algoritmasının bir ArGe sürümüydü.
-[Ethash hakkında daha fazla bilgi](/developers/docs/consensus-mechanisms/pow/mining-algorithms/ethash).
+[Ethash hakkında daha fazla bilgi](/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/ethash).
## Daha fazla okuma {#further-reading}
diff --git a/public/content/translations/tr/developers/docs/data-and-analytics/block-explorers/index.md b/public/content/translations/tr/developers/docs/data-and-analytics/block-explorers/index.md
index 8ad9bbc4726..a3834bb251d 100644
--- a/public/content/translations/tr/developers/docs/data-and-analytics/block-explorers/index.md
+++ b/public/content/translations/tr/developers/docs/data-and-analytics/block-explorers/index.md
@@ -16,15 +16,15 @@ Bir blok arayıcısının size verdiği verileri anlamlandırabilmeniz için Eth
- [Etherscan](https://etherscan.io/) -_Ayrıca Çince, Korece, Rusça ve Japonca dillerinde de mevcut_
- [Beaconcha.in](https://beaconcha.in/)
- [Blockchair](https://blockchair.com/ethereum) -_Ayrıca İspanyolca, Fransızca, İtalyanca, Danca, Portekizce, Rusça, Çince ve Farsça olarak da mevcut_
-- [Blockscout](https://blockscout.com/)
+- [Blockscout](https://eth.blockscout.com/)
+- [Chainlens](https://www.chainlens.com/)
+- [DexGuru Blok Arayıcısı](https://ethereum.dex.guru/)
- [Etherchain](https://www.etherchain.org/)
- [Ethplorer](https://ethplorer.io/) -_Ayrıca Çince, İspanyolca, Fransızca, Türkçe, Rusça, Korece ve Vietnamca dillerinde de mevcut_
+- [EthVM](https://www.ethvm.com/)
- [Oklink](https://www.oklink.com/eth)
- [Otterscan](https://otterscan.io/)
- [Rantom](https://rantom.app/)
-- [Sirato](https://www.web3labs.com/sirato)
-- [EthVM](https://www.ethvm.com/)
-- [DexGuru Blok Arayıcısı](https://ethereum.dex.guru/)
## Veri {#data}
diff --git a/public/content/translations/tr/developers/docs/programming-languages/python/index.md b/public/content/translations/tr/developers/docs/programming-languages/python/index.md
index 503a9582fa9..dd75e253214 100644
--- a/public/content/translations/tr/developers/docs/programming-languages/python/index.md
+++ b/public/content/translations/tr/developers/docs/programming-languages/python/index.md
@@ -82,7 +82,7 @@ Aşağıdaki Ethereum tabanlı projeler bu sayfada bahsedilen araçları kullan
## Python Topluluk tartışması {#python-community-contributors}
- Web3.py ve diğer Python çerçeve tartışmaları için [Ethereum Python Topluluk Discord'u](https://discord.gg/9zk7snTfWe)
-- Vyper akıllı sözleşme programlama ile ilgili tartışmalar için [Vyper Discord'u](<[https://discord.gg/9zk7snTfWe](https://discord.gg/SdvKC79cJk)>)
+- Vyper akıllı sözleşme programlama ile ilgili tartışmalar için [Vyper Discord'u](https://discord.gg/SdvKC79cJk)
## Diğer Toplu Listeler {#other-aggregated-lists}
diff --git a/public/content/translations/tr/developers/docs/scaling/validium/index.md b/public/content/translations/tr/developers/docs/scaling/validium/index.md
index db991667f38..914b80c8008 100644
--- a/public/content/translations/tr/developers/docs/scaling/validium/index.md
+++ b/public/content/translations/tr/developers/docs/scaling/validium/index.md
@@ -153,7 +153,7 @@ Merkeziyetsiz uygulamalarınıza entegre edebileceğiniz Validium ve istemlere i
**Matter Labs zkPorter** - _zkPorter, zkRollup ve parçalama fikirlerini birleştirerek veri kullanılabilirliğini hibrit bir yaklaşımla ele alan bir Katman 2 ölçeklendirme protokolüdür. Her biri kendi veri kullanılabilirliği politikasına sahip, keyfi çok sayıda parçayı destekleyebilir._
-- [Belgeler](https://docs.zksync.io/zkevm/#what-is-zkporter)
+- [Belgeler](https://docs.zksync.io/zk-stack/concepts/hyperchains-hyperscaling.html#logical-state-partitions-in-zk-porters)
- [Web sitesi](https://zksync.io/)
## Daha fazla okuma {#further-reading}
diff --git a/public/content/translations/tr/developers/docs/standards/index.md b/public/content/translations/tr/developers/docs/standards/index.md
index 0fd38291885..03010235552 100644
--- a/public/content/translations/tr/developers/docs/standards/index.md
+++ b/public/content/translations/tr/developers/docs/standards/index.md
@@ -18,7 +18,7 @@ Genellikle standartlar, bir [standart süreci](https://eips.ethereum.org/EIPS/ei
- [Ethereum Yönetişimine Giriş](/governance/)
- [Ethereum Yönetişimine Genel Bakış](https://web.archive.org/web/20201107234050/https://blog.bmannconsulting.com/ethereum-governance/) _31 Mart 2019 - Boris Mann_
- [Ethereum Protokol Geliştirme Yönetişimi ve Ağ Yükseltme Koordinasyonu](https://hudsonjameson.com/2020-03-23-ethereum-protocol-development-governance-and-network-upgrade-coordination/) _23 Mart 2020 - Hudson Jameson_
-- [Ethereum Çekirdek Geliştiricilerinin Bütün Toplantılarını İçeren Oynatma Listesi](https://www.youtube.com/playlist?list=PLaM7G4Llrb7zfMXCZVEXEABT8OSnd4-7w) _(YouTube Oynatma Listesi)_
+- [Ethereum Çekirdek Geliştiricilerinin Bütün Toplantılarını İçeren Oynatma Listesi](https://www.youtube.com/@EthereumProtocol) _(YouTube Oynatma Listesi)_
## Standart türleri {#types-of-standards}
diff --git a/public/content/translations/tr/developers/tutorials/run-light-node-geth/index.md b/public/content/translations/tr/developers/tutorials/run-light-node-geth/index.md
deleted file mode 100644
index 44c4418b076..00000000000
--- a/public/content/translations/tr/developers/tutorials/run-light-node-geth/index.md
+++ /dev/null
@@ -1,104 +0,0 @@
----
-title: Geth ile bir hafif (light) düğüm nasıl çalıştırılır
-description: Geth ile bir lightclient nasıl indirilir, kurulur ve çalıştırılır.
-author: "Brian Gu"
-tags:
- - "istemciler"
- - "düğümler"
-skill: beginner
-lang: tr
-published: 2022-03-04
----
-
-Bir [Ethereum düğümü](/developers/docs/nodes-and-clients/) çalıştırmak istiyor olabilirsiniz. Bunu yapmanın en kolay yollarından biri Geth'i indirmek, kurmak ve çalıştırmaktır. Geth ile bir hafif düğümü dakikalar içinde çalışır duruma getirebiliriz.
-
-Hafif istemci, Ethereum durumuyla tam etkileşime izin verirken 400 Mb'den daha az depolama gerektirir. Hafif istemciler uzak eşlerden veri alır, bu nedenle bazı sorguların yanıtlanması diğer senkronizasyon modlarına kıyasla daha uzun sürebilir.
-
-Farklı senkronizasyon modları arasındaki farkların açıklaması için [düğüm ve istemci geliştirici belgelerimizi](/developers/docs/nodes-and-clients/#node-types) okuyun.
-
-## Kurun ve çalıştırın {#install-and-run}
-
-İlk olarak, [Geth'i kurun](https://geth.ethereum.org/docs/install-and-build/installing-geth).
-
-Geth'i kurduktan sonra, bir Terminal penceresinde aşağıdaki komutu çalıştırarak bir Ethereum düğümünü "hafif" modda çalıştırabilirsiniz:
-
-```bash
-geth --syncmode light
-```
-
-Geth başlatıldıktan sonra, "eşler" olarak bilinen Ethereum üzerindeki diğer düğümlere bağlanmaya başlayacak. Eşlerle bağlantı kurma süreci biraz zaman alabilir.
-
-Geth düğümünüz yeterli sayıda eşe sahip olduğunda, zincirdeki yeni bloklardan başlıkları içe aktarır.
-
-Yeni blok başlıklarının artık bir "yaşı" olmadığında Geth, zincirin başıyla senkronize edilir.
-
-## Düğümünüzü durdurma ve yeniden başlatma {#stopping-and-restarting-your-node}
-
-CTRL+C tuşlarına basarak düğümünüzü istediğiniz zaman durdurabilirsiniz.
-
-Düğümü yeniden başlatırken, Geth'in düğümün son çalıştırılmasından bu yana oluşturulan blok başlıklarını indirmesi birkaç dakika sürecektir.
-
-## HTTP-RPC sunucusunu etkinleştir {#enable-the-http-rpc-server}
-
-HTTP-RPC sunucusunu etkinleştirmek, Ethereum düğümünüzü cüzdanlar, tarayıcı uzantıları veya özel yazılım kitaplıkları gibi diğer yazılımlara bağlamanıza olanak tanır.
-
-Geth'i başlatırken aşağıdaki komutu çalıştırarak HTTP-RPC sunucusunu etkinleştirebilirsiniz:
-
-```bash
-geth --syncmode light --http
-```
-
-Etkinleştirildiğinde, `curl http://127.0.0.1:8545` komutunu çalıştırın. Bu, hata bildirmemelidir.
-
-### Uzak bağlantılara izin verin {#allow-remote-connections}
-
-Uzak ana bilgisayarların düğümünüze bağlanmasına izin vermek için aşağıdaki komutla Geth'i başlatın:
-
-```
-geth --syncmode light --http --http.addr 0.0.0.0
-```
-
-Not: Bu, güvenlik duvarı gibi yerel ana makinenize gelen istekleri engelleyen bir işlem olmadığını varsayar.
-
-## Geth JavaScript konsolu {#geth-javascript-console}
-
-Geth, düğümünüzle etkileşim kurmak için kullanabileceğiniz yerleşik bir JavaScript konsoluna ve [web3js](https://github.com/ethereum/web3.js/) adlı bir JavaScript API'sine sahiptir.
-
-JavaScript konsolunu kullanmak için şunu çalıştırın:
-
-```bash
-geth attach
-```
-
-Bu konsol, Ethereum ile doğrudan etkileşime izin verir. Örneğin, `eth.blockNumber` komutunu çalıştırmak, bilinen en son blok numarasını yazdıracaktır.
-
-[Tam web3js belgeleri](http://web3js.readthedocs.io/)
-
-## Mainnet ve test ağları {#mainnet-and-testnets}
-
-Geth, düğümünüzü varsayılan olarak [Ethereum Mainnet](/glossary/#mainnet/) üzerinde çalıştırır.
-
-Terminal'de aşağıdaki komutlardan birini çalıştırarak, [genel test ağlarından](/networks/#testnets/) birinde bir düğüm çalıştırmak için Geth'i kullanmak da mümkündür:
-
-```bash
-geth --syncmode light --ropsten
-geth --syncmode light --rinkeby
-geth --syncmode light --goerli
-```
-
-## Blok zinciri ve EVM verileri nerede saklanıyor? {#where-is-the-blockchain-and-evm-data-stored}
-
-Geth'in ham blok zinciri verilerini depolamak için kullandığı dizin, işletim sisteminize bağlıdır. Geth'i çalıştırdıktan sonra şuna benzeyen bir mesaj bulmaya çalışın:
-
-```bash
-INFO [11-18|14:04:47] Allocated cache and file handles database=/Users/bgu/Library/Ethereum/testnet/geth/lightchaindata cache=768 handles=128
-```
-
-`“database=”` ardındaki yol, blok zinciri verilerinin makinenizde nerede depolandığını size söyleyecektir. Tam bir düğüm çalıştırıyorsanız bu dizin, blok zincirine taahhüt edilmiş her blok hakkındaki tüm verileri içerecektir. Hafif bir düğüm çalıştırdığımız için bu dizin yalnızca blok başlıklarını içerir.
-
-Bu noktada, buranın blok zincirinin en düşük seviyede yaşadığı yer olduğunu vurgulamakta fayda var. Blok zincirinin tam içeriği ve EVM durumu, Ethereum ağındaki her tam düğümde, bilgisayarınızdakine çok benzeyen dizinlerde depolanır.
-
-## Daha fazla okuma {#further-reading}
-
-- [Farklı ağlar hakkında öğrenin](/developers/docs/networks/).
-- [Tam bir düğüm çalıştırın](/run-a-node/)
diff --git a/public/content/translations/tr/developers/tutorials/uniswap-v2-annotated-code/index.md b/public/content/translations/tr/developers/tutorials/uniswap-v2-annotated-code/index.md
index f81404dc6ac..54f4c9e8dbe 100644
--- a/public/content/translations/tr/developers/tutorials/uniswap-v2-annotated-code/index.md
+++ b/public/content/translations/tr/developers/tutorials/uniswap-v2-annotated-code/index.md
@@ -743,7 +743,7 @@ Bu, fabrikanın ana işlevidir, yani iki ERC-20 token'ı arasında bir eş takas
(address token0, address token1) = tokenA < tokenB ? (tokenA, tokenB) : (tokenB, tokenA);
```
-Zincir dışında önceden hesaplanabilmesi için yeni takasın adresinin deterministik olmasını istiyoruz (bu, [katman 2 işlemleri](/developers/docs/layer-2-scaling/) için yararlı olabilir). Bunu yapabilmek için onları aldığımız sıraya bakmaksızın jeton adreslerinin tutarlı bir sırasına sahip olmamız gerekir, bu yüzden de onları burada sıralarız.
+Zincir dışında önceden hesaplanabilmesi için yeni takasın adresinin deterministik olmasını istiyoruz (bu, [katman 2 işlemleri](/developers/docs/scaling/) için yararlı olabilir). Bunu yapabilmek için onları aldığımız sıraya bakmaksızın jeton adreslerinin tutarlı bir sırasına sahip olmamız gerekir, bu yüzden de onları burada sıralarız.
```solidity
require(token0 != address(0), 'UniswapV2: ZERO_ADDRESS');
diff --git a/public/content/translations/tr/developers/tutorials/waffle-dynamic-mocking-and-testing-calls/index.md b/public/content/translations/tr/developers/tutorials/waffle-dynamic-mocking-and-testing-calls/index.md
index 19899d962e8..35e6377fd9b 100644
--- a/public/content/translations/tr/developers/tutorials/waffle-dynamic-mocking-and-testing-calls/index.md
+++ b/public/content/translations/tr/developers/tutorials/waffle-dynamic-mocking-and-testing-calls/index.md
@@ -295,4 +295,4 @@ Bu öğreticinin kaynak kodu [burada](https://github.com/EthWorks/Waffle/tree/ma
Ayrıca ilginizi çekebilecek öğreticiler:
-- [Waffle ile akıllı sözleşmeleri test etme](/developers/tutorials/testing-smart-contract-with-waffle/)
+- [Waffle ile akıllı sözleşmeleri test etme](/developers/tutorials/waffle-test-simple-smart-contract/)
diff --git a/public/content/translations/tr/developers/tutorials/waffle-test-simple-smart-contract/index.md b/public/content/translations/tr/developers/tutorials/waffle-test-simple-smart-contract/index.md
index ebd19cf0a36..20b01d0d49e 100644
--- a/public/content/translations/tr/developers/tutorials/waffle-test-simple-smart-contract/index.md
+++ b/public/content/translations/tr/developers/tutorials/waffle-test-simple-smart-contract/index.md
@@ -200,4 +200,4 @@ Waffle ile akıllı sözleşmeleri test etmenin ilk büyük adımını tamamlad
- [ERC20 sözleşmelerini Waffle ile test etme](/developers/tutorials/testing-erc-20-tokens-with-waffle/)
- [Waffle: Dinamik taklit ve sözleşme çağrılarını test etme](/developers/tutorials/waffle-dynamic-mocking-and-testing-calls/#gatsby-focus-wrapper)
-- [Hardhat ve ethers ile Waffle'da merhaba dünya öğreticisi](/developers/tutorials/waffle-hello-world-with-buidler-tutorial/)
+- [Hardhat ve ethers ile Waffle'da merhaba dünya öğreticisi](/developers/tutorials/waffle-say-hello-world-with-hardhat-and-ethers/)
diff --git a/public/content/translations/tr/enterprise/index.md b/public/content/translations/tr/enterprise/index.md
index a725fabcd7e..41da8b57eec 100644
--- a/public/content/translations/tr/enterprise/index.md
+++ b/public/content/translations/tr/enterprise/index.md
@@ -51,7 +51,7 @@ Ethereum'u işletme dostu hâle getirmek için farklı kuruluşlar tarafından b
- [Blast](https://blastapi.io/), _Ethereum Arşiv Ana Ağı'na ve Test Ağlarına RPC/WSS API'leri sağlayan bir API platformudur._
- [Blockapps](https://blockapps.net/), _STRATO platformunu oluşturan İşletme Ethereum protokolünün, araçlarının ve API'lerinin uygulanması_
- [Chainstack](https://chainstack.com/), _herkese açık ve izole müşteri bulutlarında barındırılan ana ağ ve test ağı Ethereum altyapısı_
-- [ConsenSys](https://consensys.net/), _Ethereum üzerine geliştirme için bir dizi ürün ve aracın yanı sıra danışmanlık ve özel geliştirme hizmetleri sağlar_
+- [ConsenSys](https://consensys.io/), _Ethereum üzerine geliştirme için bir dizi ürün ve aracın yanı sıra danışmanlık ve özel geliştirme hizmetleri sağlar_
- [Envision Blockchain](https://envisionblockchain.com/), _Ethereum Ana Ağı'nda uzmanlaşmış kurumsal odaklı danışmanlık ve geliştirme hizmetleri sağlar_
- [EY OpsChain](https://blockchain.ey.com/products/contract-manager), _Güvenilir iş ortakları ağınız genelinde RFQ'ları, sözleşmeleri, satın alma emirlerini ve faturaları düzenleyerek bir tedarik iş akışı sağlar_
- [Hyperledger Besu](https://www.hyperledger.org/use/besu), _Apache 2.0 lisansı altında geliştirilen, Java ile yazılmış kurumsal odaklı açık kaynaklı bir Ethereum istemcisi_
@@ -68,7 +68,7 @@ Ethereum'u işletme dostu hâle getirmek için farklı kuruluşlar tarafından b
### Araçlar ve kütüphaneler {#tooling-and-libraries}
- [Alethio](https://explorer.aleth.io/) _Ethereum Veri Analizi Platformu_
-- [Sirato](https://www.web3labs.com/sirato), _Web3 Labs'den Ethereum ile uyumlu herkese açık ve özel ağlara yönelik bir veri ve analiz platformu_
+- [Chainlens](https://www.chainlens.com/), _Web3 Labs'den Ethereum ile uyumlu herkese açık ve özel ağlara yönelik bir veri ve analiz platformu_
- [Ernst & Young'ın "Nightfall"u](https://github.com/EYBlockchain/nightfall) _özel işlemler için bir araç takımı_
- [EthSigner](https://github.com/ConsenSys/ethsigner) _bir web3 sağlayıcısıyla kullanılacak bir işlem imzalama uygulaması_
- [Tenderly](https://tenderly.co/)_gerçek zamanlı analizler sağlayan, özel ağlar için destek sunarak uyarılarda bulunan ve izleme gerçekleştiren bir Veri Platformudur_
@@ -102,13 +102,12 @@ Herkese açık Ethereum Ana Ağı üzerinde geliştirilmiş işletme uygulamalar
- [Tinlake](https://tinlake.centrifuge.io/), _faturalar, ipotekler veya sürekli akış telif ücretleri gibi jetonlaştırılmış gerçek dünya varlıkları yoluyla alacak finansmanı_
- [RealT](https://realt.co/), _dünya genelindeki yatırımcılar tamamen uyumlu, kesirli, jetonlaştırılmış mülkiyet ile ABD emlak piyasasından satın alım yapabilirler._
-- [AgroToken](https://agrotoken.io/en/), _tarımsal ürünlerin jetonlaştırılması ve alım satımı_
+- [AgroToken](https://agrotoken.io/en/home), _tarımsal ürünlerin jetonlaştırılması ve alım satımı_
- [Fasset](https://www.fasset.com/), _sürdürülebilir altyapıyı destekleyen bir platform_
### Verilerin noter tasdiki {#notarization-of-data}
- [BBVA](https://www.ledgerinsights.com/bbva-blockchain-loan-banking-tech-award/), _kesinleşmiş kredilerin ayrıntıları karma hale getirilir ve Ana Ağ'a kaydedilir_
-- [Splunk](https://www.splunk.com/en_us/blog/security/the-newest-data-attack.html), _veri bütünlüğü, indekslenen verilerin karmalarını düzenli aralıklarla Ana Ağ'a yazarak sağlanabilir_
- [ANSA](https://cointelegraph.com/news/italys-top-news-agency-uses-blockchain-to-fight-fake-coronavirus-news), _İtalya'nın en büyük haber ajansı sahte haberlerle mücadele ediyor ve okuyucuların haberleri Ana Ağ'a kaydederek haberlerin kaynağını doğrulamasını sağlıyor_
- [Verizon](https://decrypt.co/46745/verizon-news-press-releases-ethereum-full-transparency), _kurumsal mesuliyeti ve güveni sağlamak için Ethereum'daki basın bültenlerini günlüğe kaydeder_
- [Breitling](https://www.coindesk.com/breitling-arianee-all-new-watches-ethereum), _saatlerin kökenini ve onarım geçmişini Ethereum'a kaydeder_
@@ -116,13 +115,11 @@ Herkese açık Ethereum Ana Ağı üzerinde geliştirilmiş işletme uygulamalar
### Tedarik zinciri {#supply-chain}
-- [CargoX](https://cargox.io/press-releases/full/cargox-becomes-first-public-blockchain-ethereum-bill-lading-provider-approved-international-group-pi-clubs), _konşimento ve belge transfer sağlayıcısıdır_
- [Morpheus.network](https://morpheus.network/), _Ethereum Ana Ağı'nda noter tasdikli verilerle özel zincirlerin bir karışımını uygulayan tedarik zinciri otomasyon platformudur; Kanadalı gıda, petrol ve gaz distribütörü Federated Co-op Ltd. ve Arjantinli evcil hayvan maması sağlayıcısı Vitalcan tarafından kullanılır_
- [Minespider](https://www.minespider.com/), _tedarik zinciri takibi_
- [EY OpsChain Contract Manager](https://blockchain.ey.com/products/contract-manager). _güvenilir iş ortaklarından oluşan ağınızda RFQ'ler, sözleşmeler, alım emirleri ve faturalar düzenleyerek şirketlerin tedarik iş akışına dahil olmalarını sağlar_
- [Treum](https://treum.io/), _blokzincir teknolojisini kullanarak tedarik zincirlerine şeffaflık, izlenebilirlik ve ticaret kolaylığı getirir_
- [TradeTrust](https://www.tradetrust.io/), _uluslararası nakliye için elektronik Konşimentoları (eBL'ler) doğrular_
-- [Birra Peroni](https://www.ey.com/en_gl/news/2021/05/birra-peroni-is-the-first-industrial-organization-to-mint-unique-non-fungible-tokens-using-ey-opschain-traceability), _her yeni bira partisi için NFT'ler üreterek tedarik zincirinde daha fazla görünürlük ve verimlilik sağlar_
### Sigorta {#insurance}
diff --git a/public/content/translations/tr/enterprise/private-ethereum/index.md b/public/content/translations/tr/enterprise/private-ethereum/index.md
index f3ad8188c2d..eeece033103 100644
--- a/public/content/translations/tr/enterprise/private-ethereum/index.md
+++ b/public/content/translations/tr/enterprise/private-ethereum/index.md
@@ -24,5 +24,4 @@ Ethereum'u işletme dostu hale getirmek için farklı kuruluşlar ortak çalış
- [Hyperledger Besu](https://www.hyperledger.org/use/besu) _Apache 2.0 lisansı altında geliştirilmiş ve Java ile yazılmış, PoW ve PoA (IBFT, IBFT 2.0, Etherhash ve Clique) dahil olmak üzere çeşitli mutabakat algoritmaları içeren açık kaynaklı Ethereum istemcisi. Kapsamlı izin şemaları, özel olarak bir konsorsiyum ortamında kullanım için tasarlanmıştır._
- [Hyperledger Burrow](https://www.hyperledger.org/projects/hyperledger-burrow) _kısmen Ethereum Sanal Makinesi'nin (EVM) teknik özelliklerine göre geliştirilen ve izin verilen akıllı sözleşme tercümanına sahip modüler blok zinciri istemcisi_
- [Kaleido](https://kaleido.io/) _çapraz bulutlu ve hibrit işletme ekosistemleri oluşturmak ve çalıştırmak için eksiksiz platform_
-- [Quorum](https://consensys.net/quorum/) _Gizlilik, izin ve performans sağlayan gelişmiş işletme seviyesi özelliklere sahip Ethereum tabanlı açık kaynaklı kurumsal blok zinciri platformu_
- [Zeeve](https://www.zeeve.io/)_ Ethereum üzerinde geliştirme yapmaya ve bunlarla birlikte İşletme Web3 uygulamaları için API'ler ve altyapı geliştirmeye yönelik çeşitli ürünler ve araçlar sağlar_
diff --git a/public/content/translations/tr/glossary/index.md b/public/content/translations/tr/glossary/index.md
index 12c3b72a198..2fbc9aa59d1 100644
--- a/public/content/translations/tr/glossary/index.md
+++ b/public/content/translations/tr/glossary/index.md
@@ -378,7 +378,7 @@ Belirli bir Ethereum kullanım standardını tanımlamaya çalışan bazı [EIP'
[Hisse ispatına](#pos) dönüşmeden önce Ethereum'da kullanılmış bir [iş ispatı](#pow) algoritmasıdır.
-[Daha fazla bilgi edinin](/developers/docs/consensus-mechanisms/pow/mining-algorithms/ethash)
+[Daha fazla bilgi edinin](/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/ethash)
### ether {#ether}
diff --git a/public/content/translations/tr/history/index.md b/public/content/translations/tr/history/index.md
index 9fa2f323833..88471a50df7 100644
--- a/public/content/translations/tr/history/index.md
+++ b/public/content/translations/tr/history/index.md
@@ -27,11 +27,11 @@ Gelecekteki protokol yükseltmelerini mi arıyorsunuz? [Ethereum yol haritasınd
## 2023 {#2023}
-### Şanghay {#shanghai}
+### Şanghay-Capella ("Shapella") {#shapella}
-
+
-#### Özet {#shanghai-summary}
+#### Şanghay özeti {#shanghai-summary}
Şanghay yükseltmesi, hisselemede çekimlerini yürütüm katmanına getirdi. Bu, Capella yükseltmesiyle birlikte blokların çekim işlemlerini kabul etmesi sağladı; bu da, paydaşların ETH'lerini İşaret Zincirinden yürütüm katmanına çekmelerine olanak tanıyor.
@@ -49,13 +49,7 @@ Gelecekteki protokol yükseltmelerini mi arıyorsunuz? [Ethereum yol haritasınd
- [Şanghay güncellemesinin spesifikasyonunu okuyun](https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/shanghai.md)
----
-
-### Capella {#capella}
-
-
-
-#### Özet {#capella-summary}
+#### Capella özeti {#capella-summary}
Capella yükseltmesi, fikir birliği katmanındaki (İşaret Zinciri) en büyük 3. büyük yükseltmeydi ve hisseleme çekimlerini mümkün kıldı. Capella, Şanghay yürütüm katmanı yükseltmesi ile eş zamanlı gerçekleşti ve hisseleme çekim işlevselliğini aktif hale getirdi.
diff --git a/public/content/translations/tr/roadmap/beacon-chain/index.md b/public/content/translations/tr/roadmap/beacon-chain/index.md
index 9671a04f1ff..e241bfdf9ce 100644
--- a/public/content/translations/tr/roadmap/beacon-chain/index.md
+++ b/public/content/translations/tr/roadmap/beacon-chain/index.md
@@ -28,7 +28,7 @@ summaryPoint3: İşaret Zinciri ve mutabakat mantığını ve şimdilerde Ethere
İşaret Zinciri, Ethereum'a [Hisse İspatını](/developers/docs/consensus-mechanisms/pos/) tanıttı. Bu, Ethereum'u güvende tutar ve süreç doğrulayıcılarına daha fazla ETH kazandırır. Pratikte hisseleme, doğrulayıcı yazılımını aktive etmek için ETH'nin hisselenmesini içerir. Bir paydaş olarak, zincirde yeni bloklar oluşturan ve doğrulayan yazılımı çalıştırırsınız.
-Hisseleme [ madenciliğin](/developers/docs/mining/) eskiden yaptığına benzer bir amaca hizmet eder, ancak birçok yönden farklıdır. Madencilik güçlü donanım, enerji harcaması gibi büyük ön harcamalar gerektiriyordu ve ölçeklendirilmiş ekonomilere sebep oluyor ve merkeziyetçiliği teşvik ediyordu. Madencilik ayrıca varlıkları teminat olarak kitlemeye gerek duymuyordu ve protokolün uğranan saldırıdan sonra gerekli kişilere gerekli ceza vermesini de sınırlandırıyordu.
+Hisseleme [ madenciliğin](/developers/docs/consensus-mechanisms/pow/mining/) eskiden yaptığına benzer bir amaca hizmet eder, ancak birçok yönden farklıdır. Madencilik güçlü donanım, enerji harcaması gibi büyük ön harcamalar gerektiriyordu ve ölçeklendirilmiş ekonomilere sebep oluyor ve merkeziyetçiliği teşvik ediyordu. Madencilik ayrıca varlıkları teminat olarak kitlemeye gerek duymuyordu ve protokolün uğranan saldırıdan sonra gerekli kişilere gerekli ceza vermesini de sınırlandırıyordu.
Hisse ispatına geçiş Ethereum'u, iş ispatına kıyasla, çok daha güvenli ve merkeziyetsiz hale getirdi. Ağa katılan insan sayısı arttıkça, mevcut ağ bir o kadar merkeziyetsiz ve saldırılara karşı daha da güvende olur.
diff --git a/public/content/translations/tr/roadmap/danksharding/index.md b/public/content/translations/tr/roadmap/danksharding/index.md
index 53cd56628a3..7a37e71d9b6 100644
--- a/public/content/translations/tr/roadmap/danksharding/index.md
+++ b/public/content/translations/tr/roadmap/danksharding/index.md
@@ -15,7 +15,7 @@ summaryPoints:
## Proto-Danksharding nedir? {#what-is-protodanksharding}
-Proto-Danksharding, [ EIP-4844](https://eips.ethereum.org/EIPS/eip-4844) olarak da bilinir, [toplamaların](/layer2/#rollups) bloklara daha uygun veri ekleyebilmesi için bir yöntemdir. Bu iki kavramın isimleri fikri ortaya atan araştırmacılardan gelmektedir: Protolambda ve Dankrad Feist. İşlemlerini `CALLDATA`'ya kaydettikleri için toplamalar şu an için kullanıcı işlemlerini ne kadar uyguna yapabilecekleri konusunda sınırlandırılmışlardır. Bu çok pahalı çünkü Ethereum düğümleri tarafından işleniyor ve toplamaların veriye kısa bir süre ihtiyaç duymasına rağmen zincirde sonsuza kadar yaşıyor. Proto-Danksharding bloklara takılıp gönderilebilen veri damlalarını tanıtıyor. Bu veri damlaları Ethereum Sanal Makinesi için erişilebilir değildir ve belli bir süreden sonra otomatik olarak silinir (1-3 ay). Bu, toplamaların verilerini çok daha ucuza gönderebileceklerini ve birikimleri de son kullanıcılara ucuz işlemler adı altında aktarabileceği anlamına gelir.
+Proto-Danksharding, [ EIP-4844](https://eips.ethereum.org/EIPS/eip-4844) olarak da bilinir, [toplamaların](/layer-2/#rollups) bloklara daha uygun veri ekleyebilmesi için bir yöntemdir. Bu iki kavramın isimleri fikri ortaya atan araştırmacılardan gelmektedir: Protolambda ve Dankrad Feist. İşlemlerini `CALLDATA`'ya kaydettikleri için toplamalar şu an için kullanıcı işlemlerini ne kadar uyguna yapabilecekleri konusunda sınırlandırılmışlardır. Bu çok pahalı çünkü Ethereum düğümleri tarafından işleniyor ve toplamaların veriye kısa bir süre ihtiyaç duymasına rağmen zincirde sonsuza kadar yaşıyor. Proto-Danksharding bloklara takılıp gönderilebilen veri damlalarını tanıtıyor. Bu veri damlaları Ethereum Sanal Makinesi için erişilebilir değildir ve belli bir süreden sonra otomatik olarak silinir (1-3 ay). Bu, toplamaların verilerini çok daha ucuza gönderebileceklerini ve birikimleri de son kullanıcılara ucuz işlemler adı altında aktarabileceği anlamına gelir.
diff --git a/public/content/translations/tr/roadmap/index.md b/public/content/translations/tr/roadmap/index.md
index 0783b9e5311..cce125f28fb 100644
--- a/public/content/translations/tr/roadmap/index.md
+++ b/public/content/translations/tr/roadmap/index.md
@@ -3,7 +3,7 @@ title: Ethereum yol haritası
description: Ethereum için daha ölçeklenebilir, güvenli ve sürdürülebilir olmanın yolu.
lang: tr
template: roadmap
-image: /roadmap/roadmap-main.png
+image: /heroes/roadmap-hub-hero.jpg
alt: "Ethereum yol haritası"
summaryPoints:
buttons:
@@ -61,7 +61,7 @@ Ethereum; ölçeklenebilirliğini, güvenliğini ya da sürdürülebilirliğini
Yol haritası çoğunlukla, araştırmacı ve geliştirmecilerin yıllar süren çalışmasının ürünüdür çünkü protokol oldukça tekniktir, ancak motive olmuş kişiler katılabilir. Fikirler genellikle [ethresear.ch](https://ethresear.ch/), [Ethereum sihirbazları](https://ethereum-magicians.org/) gibi forumlarda veya Eth Ar&Ge discord sunucusunda tartışma başlıkları olarak ortaya atılır. Yeni keşfedilmiş sistem açıklarına karşı tepkiler, uygulama katmanında çalışan organizasyonlardan (merkeziyetsiz uygulama ve borsalar) öneriler ya da son kullanıcılar için bilinen ihtilaflar (ücretler veya işlem hızları gibi) olabilir. Bu fikirler olgunlaştığında [Ethereum İyileştirme Önerileri](https://eips.ethereum.org/) olarak önerilebilirler. Herhangi bir zamanda topluluk içinden fikir sunulması için bu, tümüyle halka açık biçimde yapılır.
-[Ethereum yönetişimi hakkında daha fazlası](/yönetişim/)
+[Ethereum yönetişimi hakkında daha fazlası](/governance/)
diff --git a/public/content/translations/tr/roadmap/single-slot-finality/index.md b/public/content/translations/tr/roadmap/single-slot-finality/index.md
index f80c80d4a0a..a7f356bb155 100644
--- a/public/content/translations/tr/roadmap/single-slot-finality/index.md
+++ b/public/content/translations/tr/roadmap/single-slot-finality/index.md
@@ -58,7 +58,7 @@ Bugünün taahhüt mekanizması kesinlik aracı (doğrulayıcıların 2/3'ünün
## Güncel ilerleme {#current-progress}
-SSF araştırma aşamasında. Birkaç yıl daha gelmesi beklenmiyor, muhtemelen çok aşamalı yükseltmelerden, [(Verkle ağaçları](/roadmap/verkle-trees/) ve [Danksharding](/roadmap/danksharding]) gibi) sonra.
+SSF araştırma aşamasında. Birkaç yıl daha gelmesi beklenmiyor, muhtemelen çok aşamalı yükseltmelerden, [(Verkle ağaçları](/roadmap/verkle-trees/) ve [Danksharding](/roadmap/danksharding/) gibi) sonra.
## Daha fazla bilgi {#further-reading}
diff --git a/public/content/translations/tr/smart-contracts/index.md b/public/content/translations/tr/smart-contracts/index.md
index ce6ecee46cd..ee7e34e5684 100644
--- a/public/content/translations/tr/smart-contracts/index.md
+++ b/public/content/translations/tr/smart-contracts/index.md
@@ -65,7 +65,7 @@ Hesaplamalar gerçekleştirebilir, para birimleri oluşturabilir, veri tutabilir
- [Sabit coinler](/stablecoins/)
- [Eşsiz dijital varlıkların oluşturulması ve dağıtılması](/nft/)
- [Otomatik, açık bir para birimi borsası](/get-eth/#dex)
-- [Merkezi olmayan oyun](/dapps/?category=gaming)
+- [Merkezi olmayan oyun](/dapps/?category=gaming#explore)
- [Otomatik olarak ödeme yapan bir sigorta poliçesi](https://etherisc.com/)
- [İnsanların özel, uyumlu para birimleri oluşturmasını sağlayan bir standart](/developers/docs/standards/tokens/)
diff --git a/public/content/translations/tr/zero-knowledge-proofs/index.md b/public/content/translations/tr/zero-knowledge-proofs/index.md
index 53678f092c1..5a7067c66fe 100644
--- a/public/content/translations/tr/zero-knowledge-proofs/index.md
+++ b/public/content/translations/tr/zero-knowledge-proofs/index.md
@@ -4,7 +4,7 @@ description: Yeni başlayanlar için sıfır bilgili ispatlara teknik olmayan bi
lang: tr
---
-## Sıfır bilgili ispatlar nelerdir? {#what-are-zk-proofs}
+# Sıfır bilgili ispatlar nelerdir? {#what-are-zk-proofs}
Sıfır bilgili ispat, ifadenin kendisini açığa çıkarmadan bir ifadenin geçerliliğini kanıtlamanın bir yoludur. "Kanıtlayıcı", bir iddiayı kanıtlamaya çalışan taraftır, "doğrulayıcı" ise iddiayı doğrulamaktan sorumludur.
diff --git a/public/content/translations/uk/community/events/index.md b/public/content/translations/uk/community/events/index.md
index 91d5331be1d..690dd543a32 100644
--- a/public/content/translations/uk/community/events/index.md
+++ b/public/content/translations/uk/community/events/index.md
@@ -5,7 +5,7 @@ lang: uk
hideEditButton: true
---
-## Майбутні події {#events}
+# Майбутні події {#events}
**Щомісяця в усьому світі відбуваються значущі заходи спільноти Ethereum.** Подумайте про відвідування такої події поруч із вами, щоб зустріти більше людей зі спільноти, дізнатися про можливості працевлаштування та отримати нові навички.
diff --git a/public/content/translations/uk/community/get-involved/index.md b/public/content/translations/uk/community/get-involved/index.md
index c378ea93b34..00f7d33b844 100644
--- a/public/content/translations/uk/community/get-involved/index.md
+++ b/public/content/translations/uk/community/get-involved/index.md
@@ -14,7 +14,7 @@ lang: uk
- [Знайдіть винагороду на Gitcoin](https://gitcoin.co/), попрацюйте з незначною або серйозною технічною проблемою, заробіть криптовалюту!
- Відвідайте хакатон [ETHGlobal](http://ethglobal.co/) поруч із вами!
- Ознайомтеся з [проєктами, що стосуються вашої галузі знань або вибраної мови програмування](/developers/docs/programming-languages/)
-- Дивіться [онлайн-зустрічі розробників](https://www.youtube.com/playlist?list=PLaM7G4Llrb7zfMXCZVEXEABT8OSnd4-7w) або беріть у них участь
+- Дивіться [онлайн-зустрічі розробників](https://www.youtube.com/@EthereumProtocol) або беріть у них участь
- [Список уподобань для програми підтримки екосистем](https://esp.ethereum.foundation/wishlist/) — галузі інструментарію, документації та інфраструктури, у яких активно шукають заявників на гранти в межах програми підтримки екосистеми Ethereum
- [Web3Bridge](https://www.web3bridge.com/) — приєднуйтеся до амбітної спільноти web3, яка прагне виявляти, навчати й підтримувати сотні розробників і членів спільнот по всій Африці
- Приєднуйтеся до [групи Ethereum Cat Herders на платформі Discord](https://discord.io/EthCatHerders)
diff --git a/public/content/translations/uk/community/grants/index.md b/public/content/translations/uk/community/grants/index.md
index ce1ce83b42d..c80bdadf4ec 100644
--- a/public/content/translations/uk/community/grants/index.md
+++ b/public/content/translations/uk/community/grants/index.md
@@ -20,7 +20,6 @@ lang: uk
- [DAO Moloch](https://www.molochdao.com/) — _конфіденційність, масштабування рівня 2, безпека клієнта й багато іншого_
- [Відкриті гранти](https://opengrants.com/explore)
- [DAO Grants](https://docs.google.com/spreadsheets/d/1XHc-p_MHNRdjacc8uOEjtPoWL86olP4GyxAJOFO0zxY/edit#gid=0) - _Електронна таблиця Google з організацій, які пропонують гранти_
-- [Crunchbase for Web3 Grants](https://www.cryptoneur.xyz/web3-grants) - _Фільтр і пошук грантів за категорією, використанням, кількістю тощо. Допоможіть іншим знайти правильний грант._
- [Academic Grants](https://esp.ethereum.foundation/academic-grants) — _гранти для підтримки академічної роботи, пов’язаної з Ethereum_
## За типами проєктів {#project-specific}
@@ -38,7 +37,6 @@ lang: uk
- [The Graph](https://airtable.com/shrdfvnFvVch3IOVm) — _екосистема [The Graph](https://thegraph.com/)_
- [Програма грантів UMA](https://grants.umaproject.org/) — _підтримка розробників від [UMA](https://umaproject.org/)_
- [Програма грантів Uniswap](https://www.unigrants.org/) — _спільнота [Uniswap](https://uniswap.org/)_
-- [Web3 Grants](https://web3grants.net) — _великий список пов’язаних грантів для web3/криптовалют_
## Чотиричне фінансування {#quadratic-funding}
diff --git a/public/content/translations/uk/decentralized-identity/index.md b/public/content/translations/uk/decentralized-identity/index.md
index 960e84d2aad..0db5a431276 100644
--- a/public/content/translations/uk/decentralized-identity/index.md
+++ b/public/content/translations/uk/decentralized-identity/index.md
@@ -49,7 +49,7 @@ summaryPoint3: Завдяки криптовалюті користувачі з
## Що уможливлює децентралізовані ідентифікатори? {#what-makes-decentralized-identifiers-possible}
-### 1. Інфраструктура відкритих ключів (PKI) {#public-key-infrastructure}
+### 1. Інфраструктура відкритих ключів (PKI) {#public-key-cryptography}
Інфраструктура відкритих ключів (ІВК) — це захід інформаційної безпеки, який генерує [відкритий ключ](/glossary/#public-key) і [приватний ключ](/glossary/#private-key) для суб’єкта. Криптографія з відкритим ключем використовується в мережах блокчейн для автентифікації користувачів і підтвердження права власності на цифрові активи.
diff --git a/public/content/translations/uk/defi/index.md b/public/content/translations/uk/defi/index.md
index dd57764c285..32e2a146d2c 100644
--- a/public/content/translations/uk/defi/index.md
+++ b/public/content/translations/uk/defi/index.md
@@ -47,7 +47,7 @@ DeFi — це збірне поняття, що охоплює фінансов
| Ринки завжди відкриті. | Ринки закриваються, бо працівникам потрібна перерва. |
| Головний принцип — прозорість. Кожен може ознайомитися з даними продукту та перевірити, як працює система. | Діяльність фінансових установ прихована. Ви не можете переглянути їх кредитну історію, записи про доступні активи тощо. |
-
+
Ознайомитися з програмами DeFi
@@ -65,7 +65,7 @@ Bitcoin була першою програмою DeFi з усіх боків. Bi
Ознайомтеся з програмами DeFi, якщо ви лише починаєте працювати з Ethereum.
-
+
Ознайомитися з програмами DeFi
@@ -92,7 +92,7 @@ Bitcoin була першою програмою DeFi з усіх боків. Bi
Ethereum створено як блокчейн для надійних і глобальних транзакцій. Як і Bitcoin, Ethereum дає змогу надсилати кошти в будь-яку частину світу так само просто, як листи. Просто введіть [ім’я ENS](/nft/#nft-domains) отримувача (наприклад, bob.eth) або адресу його облікового запису у вашому гаманці, і за декілька хвилин (зазвичай) платіж буде отримано. Щоб надсилати й отримувати перекази, вам потрібен [гаманець](/wallets/).
-
+
Переглянути децентралізовані платіжні програми
@@ -123,7 +123,7 @@ Ethereum можна використовувати для потокового
- В одноранговому форматі (peer-to-peer), коли кошти в позику надає конкретний позикодавець.
- На основі пулу (pool-based), коли позикодавці надсилають кошти (ліквідність) у пул, звідки їх можна брати в борг.
-
+
Ознайомитися з децентралізованими програмами для позик
@@ -183,7 +183,7 @@ Ethereum можна використовувати для потокового
- aDai зростатиме залежно від відсоткових ставок, і ви зможете побачити підвищення балансу у вашому гаманці. Залежно від річної відсоткової ставки на балансі вашого гаманця за декілька днів або навіть годин уже буде 100,1234 aDai!
- У будь-який момент можна вивести суму звичайних монет Dai, що дорівнює балансу aDai.
-
+
Ознайомитися з децентралізованими програмами для вкладення
@@ -211,7 +211,7 @@ Ethereum можна використовувати для потокового
Наприклад, для участі в описаній вище безпрограшній лотереї PoolTogether необхідно мати токен Dai або USDC. DEX дають змогу обміняти ETH на ці токени й назад, коли вони вам уже не будуть потрібні.
-
+
Ознайомитися з біржами токенів
@@ -223,7 +223,7 @@ Ethereum можна використовувати для потокового
На централізованих біржах активи доводиться вносити перед торгівлею на свій страх і ризик. Внесені активи перебувають у небезпеці, оскільки централізовані біржі часто атакують хакери.
-
+
Ознайомитися з децентралізованими програмами для торгівлі
@@ -235,7 +235,7 @@ Ethereum можна використовувати для потокового
Хорошим прикладом є [фонд DeFi Pulse Index (DPI)](https://defipulse.com/blog/defi-pulse-index/). Цей фонд автоматично виконує повторне балансування, щоб ваш портфель завжди містив [найкращі токени DeFi відповідно до ринкової капіталізації](https://www.coingecko.com/en/defi). Вам не потрібно заглиблюватися в деталі, а вийти з фонду можна коли завгодно.
-
+
Ознайомитися з децентралізованими програмами для інвестицій
@@ -249,7 +249,7 @@ Ethereum — ідеальна платформа для краудфандинг
- Процес прозорий, тож інвестори можуть перевірити зібрану кількість коштів. Навіть можна відстежити, як вони витрачатимуться в майбутньому.
- Інвестори можуть налаштувати автоматичне повернення коштів, якщо, наприклад, не було дотримано дедлайну або не вдалося зібрати мінімальну суму.
-
+
Ознайомитися з децентралізованими програмами для краудфандингу
@@ -276,7 +276,7 @@ Ethereum — це програмне забезпечення з відкрит
Продукти Ethereum, як і будь-яке програмне забезпечення, можуть мати помилки й експлойти. Наразі багато страхувальних продуктів зосереджуються на захисті користувачів від втрати коштів. Однак уже з’являються проєкти, які починають страхувати від будь-яких життєвих проблем. Хорошим прикладом є страхування врожаю від Etherisc, що [має на меті захистити дрібних кенійських фермерів від збитків через засуху та повені](https://blog.etherisc.com/etherisc-teams-up-with-chainlink-to-deliver-crop-insurance-in-kenya-137e433c29dc). Децентралізоване страхування може забезпечити дешевші послуги для фермерів, які часто потерпають від зависоких цін на страхування в традиційних установах.
-
+
Ознайомитися з децентралізованими програмами для страхування
@@ -286,7 +286,7 @@ Ethereum — це програмне забезпечення з відкрит
У середовищі, де всього так багато відбувається, вам потрібен інструмент для відстеження всіх ваших інвестицій, позик та угод. Є безліч продуктів, які дають змогу координувати всю вашу взаємодію з DeFi на єдиній платформі. У цьому вся перевага відкритої архітектури DeFi. Розробники здатні створювати інтерфейси, де можна не тільки переглядати баланси в різних продуктах, а й використовувати їх функції. Це може стати вам у пригоді під час дослідження DeFi.
-
+
Ознайомитися з децентралізованими програмами для портфелів
diff --git a/public/content/translations/uk/desci/index.md b/public/content/translations/uk/desci/index.md
index 255e36436e0..b2401487c08 100644
--- a/public/content/translations/uk/desci/index.md
+++ b/public/content/translations/uk/desci/index.md
@@ -68,7 +68,7 @@ DeSci розробляє набір наукових інструментів д
Дослідження показали, що комісії з розгляду грантів погано виконують свої функції щодо відбору високоякісних пропозицій, оскільки ті самі пропозиції, подані до різних комісій, мають дуже різні результати розгляду. Оскільки фінансування стало обмеженішим, його сконцентровано в меншому колі досвідченіших дослідників з більш консервативними інтелектуальними проєктами. Це призвело до створення гіперконкурентного фінансового ландшафту, укріплюючи негативні стимули та пригнічуючи інновації.
-Web3 має потенціал розірвати цю несправну модель фінансування, експериментуючи з різними моделями стимулювання, розробленими DAO та Web3 загалом. [Ретроактивне фінансування громадських благ](https://medium.com/ethereum-optimism/retroactive-public-goods-funding-33c9b7d00f0c), [квадратичне фінансування](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2003531), [управління DAO](https://www.antler.co/blog/daos-and-web3-governance) та [токенізовані структури стимулювання](https://cdixon.org/2017/05/27/crypto-tokens-a-breakthrough-in-open-network-design) — це лише кілька з інструментів Web3, які можуть революціонізувати фінансування науки.
+Web3 має потенціал розірвати цю несправну модель фінансування, експериментуючи з різними моделями стимулювання, розробленими DAO та Web3 загалом. [Ретроактивне фінансування громадських благ](https://medium.com/ethereum-optimism/retroactive-public-goods-funding-33c9b7d00f0c), [квадратичне фінансування](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2003531), [управління DAO](https://www.antler.co/blog/daos-and-web3-governance-the-promise-implications-and-challenges-ahead) та [токенізовані структури стимулювання](https://cdixon.org/2017/05/27/crypto-tokens-a-breakthrough-in-open-network-design) — це лише кілька з інструментів Web3, які можуть революціонізувати фінансування науки.
### Володіння інтелектуальною власністю і її розвиток {#ip-ownership}
diff --git a/public/content/translations/uk/enterprise/index.md b/public/content/translations/uk/enterprise/index.md
index cc61d802f6e..cda5586aa8c 100644
--- a/public/content/translations/uk/enterprise/index.md
+++ b/public/content/translations/uk/enterprise/index.md
@@ -32,7 +32,7 @@ sidebarDepth: 1
- [EEA](https://entethalliance.org/) _Корпоративний альянс Ethereum — це організація із стандартизації, що керується її членами, метою якої є розробка відкритих специфікацій блокчейну, що сприяють гармонізації та взаємодії компаній і споживачів у всьому світі. Наша глобальна спільнота членів складається з керівників, послідовників, новаторів, розробників та компаній, які співпрацюють для створення відкритої децентралізованої мережі на користь кожного._
-- [Hyperledger Foundation](https://hyperledger.org) _Hyperledger — це спільнота з розробки з відкритим вихідним кодом, створена для просування міжгалузевих технологій блокчейну. Це ініціатива із глобального співробітництва, організована Linux Foundation, в якій беруть участь керівники з галузі фінансів, банківського сектора, Інтернету речей, ланцюгів поставок , галузі виробництва та технологій._ _Фонд має кілька проектів, які працюють із стеком технологій Ethereum:_ — [Hyperledger Besu](https://www.hyperledger.org/blog/2019/08/29/announcing-hyperledger-besu) — [Hyperledger Burrow](https://www.hyperledger.org/projects/hyperledger-burrow)
+- [Hyperledger Foundation](https://hyperledger.org) _Hyperledger — це спільнота з розробки з відкритим вихідним кодом, створена для просування міжгалузевих технологій блокчейну. Це ініціатива із глобального співробітництва, організована Linux Foundation, в якій беруть участь керівники з галузі фінансів, банківського сектора, Інтернету речей, ланцюгів поставок , галузі виробництва та технологій._ _Фонд має кілька проектів, які працюють із стеком технологій Ethereum:_ — [Hyperledger Besu](https://www.hyperledger.org/blog/2019/08/29/announcing-hyperledger-besu) — Hyperledger Burrow
## Сервіси, орієнтовані на корпоративний сектор {#enterprise-focused-services}
@@ -46,7 +46,6 @@ sidebarDepth: 1
## Протокол та інфраструктура {#protocol-and-infrastructure}
- [Hyperledger Besu](https://www.hyperledger.org/projects/besu) _— клієнт Ethereum з відкритим вихідним кодом, розроблений за ліцензією Apache 2.0 і написаний на Java_
-- [Hyperledger Burrow](https://www.hyperledger.org/projects/hyperledger-burrow) _— модульний клієнт блокчейну з інтерпретатором смарт-контрактів з контрольованим доступом, частково розроблений відповідно до специфікацій віртуальної машини Ethereum (EVM)_
- [Infura](https://infura.io/) _— доступ API з масштабуванням до мереж Ethereum та IPFS_
- [Kaleido](https://kaleido.io/) _— комплексна платформа для створення та запуску міжхмарних гібридних корпоративних екосистем_
- [Autonity](https://www.clearmatics.com/about/) _— набір протоколів, що реалізує однорангові протоколи та надає клієнтське програмне забезпечення та інфраструктуру_
diff --git a/public/content/translations/uk/roadmap/beacon-chain/index.md b/public/content/translations/uk/roadmap/beacon-chain/index.md
index a327ab4df2e..696f36de8f5 100644
--- a/public/content/translations/uk/roadmap/beacon-chain/index.md
+++ b/public/content/translations/uk/roadmap/beacon-chain/index.md
@@ -32,7 +32,7 @@ Beacon Chain був необхідним компонентом для [безп
Завдяки Beacon Chain в Ethereum з’явилася модель [доказу частки](/developers/docs/consensus-mechanisms/pos/). Це дає змогу захищати Ethereum і допомагає валідаторам заробляти більше ETH у процесі. На практиці процес стейкінгу передбачає виставляння ETH для активації програмного забезпечення валідатора. Стейкер запускає програмне забезпечення, що створює нові блоки в ланцюгу та здійснює їх валідацію.
-Стейкінг виконує функцію, схожу на ту, яку мав [майнінг](/developers/docs/mining/), але ці процеси відрізняються в багатьох аспектах. Майнінг потребував високих попередніх витрат, як-от потужного апаратного забезпечення та великої кількості енергії, що призвело до економії масштабів і просування централізації. Майнінг також не вимагав фіксування додаткових активів, що обмежувало здатність протоколу карати зловмисників після атак.
+Стейкінг виконує функцію, схожу на ту, яку мав [майнінг](/developers/docs/consensus-mechanisms/pow/mining/), але ці процеси відрізняються в багатьох аспектах. Майнінг потребував високих попередніх витрат, як-от потужного апаратного забезпечення та великої кількості енергії, що призвело до економії масштабів і просування централізації. Майнінг також не вимагав фіксування додаткових активів, що обмежувало здатність протоколу карати зловмисників після атак.
Завдяки переходу на модель доказу частки мережа Ethereum стала набагато безпечнішою та більш децентралізованою, як порівняти з періодом використання моделі підтвердження роботи. Що більше людей беруть участь у мережі, то більш децентралізованою та захищеною від атак вона стає.
diff --git a/public/content/translations/uk/smart-contracts/index.md b/public/content/translations/uk/smart-contracts/index.md
index 3904a44b194..017084b085e 100644
--- a/public/content/translations/uk/smart-contracts/index.md
+++ b/public/content/translations/uk/smart-contracts/index.md
@@ -65,7 +65,7 @@ lang: uk
- [Стейблкоїни](/stablecoins/)
- [Створення та розповсюдження унікальних цифрових активів](/nft/)
- [Автоматичний і відкритий обмін валют](/get-eth/#dex)
-- [Децентралізовані ігри](/dapps/?category=gaming)
+- [Децентралізовані ігри](/dapps/?category=gaming#explore)
- [Страховий поліс, який виплачується автоматично](https://etherisc.com/)
- [Стандарт, який дає змогу створювати індивідуальні, взаємосумісні валюти](/developers/docs/standards/tokens/)
diff --git a/public/content/translations/uk/zero-knowledge-proofs/index.md b/public/content/translations/uk/zero-knowledge-proofs/index.md
index ce0a6e0b69f..cdf90013abc 100644
--- a/public/content/translations/uk/zero-knowledge-proofs/index.md
+++ b/public/content/translations/uk/zero-knowledge-proofs/index.md
@@ -4,7 +4,7 @@ description: Ознайомлення з поняттям доказу з нул
lang: uk
---
-## Що таке доказ із нульовим розголошенням? {#what-are-zk-proofs}
+# Що таке доказ із нульовим розголошенням? {#what-are-zk-proofs}
Доказ із нульовим розголошенням — це спосіб доведення правдивості твердження без розкриття самого твердження. Сторона, що доводить, — це особа, яка намагається довести твердження, а сторона, що перевіряє, відповідає за перевірку правдивості твердження.
diff --git a/public/content/translations/vi/enterprise/index.md b/public/content/translations/vi/enterprise/index.md
index 2cf1ac5dff6..41e090dec88 100644
--- a/public/content/translations/vi/enterprise/index.md
+++ b/public/content/translations/vi/enterprise/index.md
@@ -32,7 +32,7 @@ Một số nỗ lực hợp tác để làm cho doanh nghiệp Ethereum thân th
- [EEA -](https://entethalliance.org/) _Enterprise Ethereum Alliance là một tổ chức tiêu chuẩn do thành viên điều hành, có điều lệ là phát triển các thông số kỹ thuật chuỗi khối mở, hướng đến sự hài hòa và khả năng tương tác cho các doanh nghiệp và người tiêu dùng trên toàn thế giới. Cộng đồng thành viên toàn cầu của chúng tôi gồm các nhà lãnh đạo, người tiếp nhận, nhà đổi mới, nhà phát triển và doanh nghiệp cộng tác để tạo ra một trang web mở, phi tập trung vì lợi ích của mọi người._
-- [Hyperledger Foundation](https://hyperledger.org) _Hyperledger là một nỗ lực hợp tác mã nguồn mở được tạo ra để thúc đẩy các công nghệ chuỗi khối công nghiệp chéo. Đây là sự hợp tác toàn cầu, được tổ chức bởi Quỹ Linux, bao gồm các nhà lãnh đạo về tài chính, ngân hàng, Internet vạn vật, chuỗi cung ứng, sản xuất và Công nghệ._ _Nền tảng này có một số dự án hoạt động với Ethereum Stack:_ - [Hyperledger Besu](https://www.hyperledger.org/blog/2019/08/29/announcing-hyperledger-besu) - [Hyperledger Burrow](https://www.hyperledger.org/projects/hyperledger-burrow)
+- [Hyperledger Foundation](https://hyperledger.org) _Hyperledger là một nỗ lực hợp tác mã nguồn mở được tạo ra để thúc đẩy các công nghệ chuỗi khối công nghiệp chéo. Đây là sự hợp tác toàn cầu, được tổ chức bởi Quỹ Linux, bao gồm các nhà lãnh đạo về tài chính, ngân hàng, Internet vạn vật, chuỗi cung ứng, sản xuất và Công nghệ._ _Nền tảng này có một số dự án hoạt động với Ethereum Stack:_ - [Hyperledger Besu](https://www.hyperledger.org/blog/2019/08/29/announcing-hyperledger-besu) - Hyperledger Burrow
## Dịch vụ tập trung vào doanh nghiệp {#enterprise-focused-services}
@@ -46,7 +46,6 @@ Các dự án sau đây cung cấp dịch vụ chuỗi khối cho các hệ th
## Giao thức và cơ sở hạ tầng {#protocol-and-infrastructure}
- [Hyperledger Besu](https://www.hyperledger.org/projects/besu) _ứng dụng Ethereum mã nguồn mở được phát triển theo giấy phép Apache 2.0 và được viết bằng Java_
-- [Hyperledger Burrow](https://www.hyperledger.org/projects/hyperledger-burrow) _ứng dụng chuỗi khối với trình thông dịch hợp đồng thông minh được phép phát triển một phần theo đặc điểm kỹ thuật của Máy ảo Ethereum (EVM)_
- [Infura](https://infura.io/) _truy cập API có thể mở rộng vào mạng Ethereum và IPFS_
- [Kaleido](https://kaleido.io/) _nền tảng đầy đủ để xây dựng và chạy hệ sinh thái đám mây chéo, doanh nghiệp kết hợp_
- [Autonity](https://www.clearmatics.com/about/) _bộ giao thức thực hiện các giao thức p2p và cung cấp phần mềm và cơ sở hạ tầng của ứng dụng_
diff --git a/public/content/translations/zh-tw/community/code-of-conduct/index.md b/public/content/translations/zh-tw/community/code-of-conduct/index.md
index 10db533599d..04240c38b78 100644
--- a/public/content/translations/zh-tw/community/code-of-conduct/index.md
+++ b/public/content/translations/zh-tw/community/code-of-conduct/index.md
@@ -4,6 +4,8 @@ description: 我們在 ethereum.org 努力追求的基本標準。
lang: zh-tw
---
+# 行為守則 {#conduct-intro}
+
## 使命 {#mission}
開發及維護最詳盡、最易存取的以太坊知識中心。
diff --git a/public/content/translations/zh-tw/community/events/index.md b/public/content/translations/zh-tw/community/events/index.md
index 24cb71fb3ae..a8fecb8cae6 100644
--- a/public/content/translations/zh-tw/community/events/index.md
+++ b/public/content/translations/zh-tw/community/events/index.md
@@ -5,7 +5,7 @@ lang: zh-tw
hideEditButton: true
---
-## 即將開始的活動 {#events}
+# 即將開始的活動 {#events}
**每個月,世界各地都會舉辦重大的以太坊活動。**考慮參加你附近的活動,結識更多社群成員,了解就業機會,並培養新技能。
diff --git a/public/content/translations/zh-tw/community/get-involved/index.md b/public/content/translations/zh-tw/community/get-involved/index.md
index 199bf7d3127..35d8280da18 100644
--- a/public/content/translations/zh-tw/community/get-involved/index.md
+++ b/public/content/translations/zh-tw/community/get-involved/index.md
@@ -16,7 +16,7 @@ lang: zh-tw
- [從 Gitcoin 獲得賞金](https://gitcoin.co/),透過解決大小技術問題來賺取加密貨幣!
- 參加你附近的 [ETHGlobal](http://ethglobal.co/) 駭客松活動。
- 留意[與你的專業領域或偏好的編程語言有關的專案](/developers/docs/programming-languages/)
-- 觀看或參與[核心開發者會議](https://www.youtube.com/playlist?list=PLaM7G4Llrb7zfMXCZVEXEABT8OSnd4-7w)
+- 觀看或參與[核心開發者會議](https://www.youtube.com/@EthereumProtocol)
- [以太坊生態系統支持計劃願望清單](https://esp.ethereum.foundation/wishlist/) - 以太坊生態系統支持計劃正積極尋找工具、文件和基礎設施領域的資助申請
- [Web3Bridge](https://www.web3bridge.com/) - 加入有抱負的 Web3 社群,一起積極尋找、培訓和支持整個非洲數百名開發人員和社群成員
- 加入[以太坊牧貓人組織 Discord](https://discord.io/EthCatHerders)
diff --git a/public/content/translations/zh-tw/community/grants/index.md b/public/content/translations/zh-tw/community/grants/index.md
index 931271e2adc..38da837575f 100644
--- a/public/content/translations/zh-tw/community/grants/index.md
+++ b/public/content/translations/zh-tw/community/grants/index.md
@@ -18,7 +18,6 @@ lang: zh-tw
- [MetaCartel](https://www.metacartel.org/grants/) - _開發去中心化應用程式、創建去中心化自治組織_
- [Moloch DAO](https://www.molochdao.com/) - _隱私性、二層網路擴容、用戶端安全性等_
- [去中心化自治組織資助計畫](https://docs.google.com/spreadsheets/d/1XHc-p_MHNRdjacc8uOEjtPoWL86olP4GyxAJOFO0zxY/edit#gid=0) - _有關資助機構的 Google 試算表_
-- [Crunchbase Web3 資助計劃](https://www.cryptoneur.xyz/web3-grants) - _按類別、使用案例、總金額等篩選及搜尋資助計劃。 幫助他人尋找適合的資助計劃。_
- [學術資助](https://esp.ethereum.foundation/academic-grants) - _支援以太坊相關學術工作的資助計劃_
- [Blockworks Grantfarm](https://blockworks.co/grants/programs) - _Blockworks 彙編了關於所有資助計畫、提案徵集和漏洞懸賞計畫的詳盡清單。_
@@ -35,7 +34,6 @@ lang: zh-tw
- [SKALE 網路資助計劃](https://skale.space/developers#grants) - _[SKALE 網路](https://skale.space/)生態系統_
- [The Graph](https://airtable.com/shrdfvnFvVch3IOVm) – _[The Graph](https://thegraph.com/) 生態系統_
- [Uniswap 資助計畫](https://www.uniswapfoundation.org/apply-for-a-grant) - _[Uniswap](https://uniswap.org/) 社群_
-- [Web3 資助計劃](https://web3grants.net) - _與 Web3/加密貨幣相關的資助計劃詳盡列表_
## 二次融資 {#quadratic-funding}
diff --git a/public/content/translations/zh-tw/decentralized-identity/index.md b/public/content/translations/zh-tw/decentralized-identity/index.md
index 1532567f458..c5594ff9cef 100644
--- a/public/content/translations/zh-tw/decentralized-identity/index.md
+++ b/public/content/translations/zh-tw/decentralized-identity/index.md
@@ -49,7 +49,7 @@ summaryPoint3: 多虧了加密技術,使用者現在擁有了再次發行、
## 什麼讓去中心化身分識別成為可能? {#what-makes-decentralized-identifiers-possible}
-### 1. 公鑰基礎設施 (PKI) {#public-key-infrastructure}
+### 1. 公鑰基礎設施 (PKI) {#public-key-cryptography}
公鑰基礎設施 (PKI) 是一種資訊安全措施,可為一個實體產生一組[公鑰](/glossary/#public-key)和[私鑰](/glossary/#private-key)。 公鑰密碼學在區塊鏈網路中用於驗證使用者身分並證明數位資產的所有權。
diff --git a/public/content/translations/zh-tw/defi/index.md b/public/content/translations/zh-tw/defi/index.md
index 96bc37de61a..d90a41957f9 100644
--- a/public/content/translations/zh-tw/defi/index.md
+++ b/public/content/translations/zh-tw/defi/index.md
@@ -47,7 +47,7 @@ summaryPoint3: 基於所有人都可以編寫的開放原始碼技術。
| 市場永遠開放。 | 員工需要休息,因此市場會關閉。 |
| 奠基於透明的系統──所有人都能查看產品資料及檢查系統運作狀況。 | 金融機構完全是黑箱作業:你不能要求查看他們的放貸記錄、資產管理記錄等資訊。 |
-
+
探索去中心化金融應用程式
@@ -65,7 +65,7 @@ summaryPoint3: 基於所有人都可以編寫的開放原始碼技術。
@@ -83,7 +83,7 @@ Web 2.0 requires content creators to trust platforms not to change the rules, bu
As well as owning your data in Web3, you can own the platform as a collective, using tokens that act like shares in a company. DAOs let you coordinate decentralized ownership of a platform and make decisions about its future.
-DAOs are defined technically as agreed-upon smart contracts that automate decentralized decision-making over a pool of resources (tokens). Users with tokens vote on how resources get spent, and the code automatically performs the voting outcome.
+DAOs are defined technically as agreed-upon [smart contracts](/glossary/#smart-contract) that automate decentralized decision-making over a pool of resources (tokens). Users with tokens vote on how resources get spent, and the code automatically performs the voting outcome.
However, people define many Web3 communities as DAOs. These communities all have different levels of decentralization and automation by code. Currently, we are exploring what DAOs are and how they might evolve in the future.
@@ -98,16 +98,12 @@ However, people define many Web3 communities as DAOs. These communities all have
Traditionally, you would create an account for every platform you use. For example, you might have a Twitter account, a YouTube account, and a Reddit account. Want to change your display name or profile picture? You have to do it across every account. You can use social sign-ins in some cases, but this presents a familiar problem—censorship. In a single click, these platforms can lock you out of your entire online life. Even worse, many platforms require you to trust them with personally identifiable information to create an account.
-Web3 solves these problems by allowing you to control your digital identity with an Ethereum address and Ethereum Name Service (ENS) profile. Using an Ethereum address provides a single login across platforms that is secure, censorship-resistant, and anonymous.
-
-
- Sign-in with Ethereum
-
+Web3 solves these problems by allowing you to control your digital identity with an Ethereum address and [Ethereum Name Service (ENS)](/glossary/#ens) profile. Using an Ethereum address provides a single login across platforms that is secure, censorship-resistant, and anonymous.
### Native payments {#native-payments}
Web2's payment infrastructure relies on banks and payment processors, excluding people without bank accounts or those who happen to live within the borders of the wrong country.
-Web3 uses tokens like [ETH](/eth/) to send money directly in the browser and requires no trusted third party.
+Web3 uses tokens like [ETH](/glossary/#ether) to send money directly in the browser and requires no trusted third party.
More on ETH
@@ -119,7 +115,7 @@ Despite the numerous benefits of Web3 in its current form, there are still many
### Accessibility {#accessibility}
-Important Web3 features, like Sign-in with Ethereum, are already available for anyone to use at zero cost. But, the relative cost of transactions is still prohibitive to many. Web3 is less likely to be utilized in less-wealthy, developing nations due to high transaction fees. On Ethereum, these challenges are being solved through [the roadmap](/roadmap/) and [layer 2 scaling solutions](/developers/docs/scaling/). The technology is ready, but we need higher levels of adoption on layer 2 to make Web3 accessible to everyone.
+Important Web3 features, like Sign-in with Ethereum, are already available for anyone to use at zero cost. But, the relative cost of transactions is still prohibitive to many. Web3 is less likely to be utilized in less-wealthy, developing nations due to high transaction fees. On Ethereum, these challenges are being solved through [the roadmap](/roadmap/) and [layer 2 scaling solutions](/glossary/#layer-2). The technology is ready, but we need higher levels of adoption on layer 2 to make Web3 accessible to everyone.
### User experience {#user-experience}
diff --git a/public/content/whitepaper/index.md b/public/content/whitepaper/index.md
index 297f9aabf2f..646f92d5583 100644
--- a/public/content/whitepaper/index.md
+++ b/public/content/whitepaper/index.md
@@ -295,7 +295,7 @@ def register(name, value):
self.storage[name] = value
```
-The contract is very simple; all it is is a database inside the Ethereum network that can be added to, but not modified or removed from. Anyone can register a name with some value, and that registration then sticks forever. A more sophisticated name registration contract will also have a "function clause" allowing other contracts to query it, as well as a mechanism for the "owner" (ie. the first registerer) of a name to change the data or transfer ownership. One can even add reputation and web-of-trust functionality on top.
+The contract is very simple; all it is a database inside the Ethereum network that can be added to, but not modified or removed from. Anyone can register a name with some value, and that registration then sticks forever. A more sophisticated name registration contract will also have a "function clause" allowing other contracts to query it, as well as a mechanism for the "owner" (ie. the first registerer) of a name to change the data or transfer ownership. One can even add reputation and web-of-trust functionality on top.
### Decentralized File Storage {#decentralized-file-storage}
diff --git a/public/content/zero-knowledge-proofs/index.md b/public/content/zero-knowledge-proofs/index.md
index a045a3a2ef1..c279300516f 100644
--- a/public/content/zero-knowledge-proofs/index.md
+++ b/public/content/zero-knowledge-proofs/index.md
@@ -4,94 +4,28 @@ description: An non-technical introduction to zero-knowledge proofs for beginner
lang: en
---
-## What are zero-knowledge proofs? {#what-are-zk-proofs}
+# What are zero-knowledge proofs? {#what-are-zk-proofs}
A zero-knowledge proof is a way of proving the validity of a statement without revealing the statement itself. The ‘prover’ is the party trying to prove a claim, while the ‘verifier’ is responsible for validating the claim.
Zero-knowledge proofs first appeared in a 1985 paper, “[The knowledge complexity of interactive proof systems](http://people.csail.mit.edu/silvio/Selected%20Scientific%20Papers/Proof%20Systems/The_Knowledge_Complexity_Of_Interactive_Proof_Systems.pdf)” which provides a definition of zero-knowledge proofs widely used today:
-> A zero-knowledge protocol is a method by which one party (the prover) can prove to another party (the verifier) that something is true, without revealing any information apart from the fact that this specific statement is true.
+> A zero-knowledge protocol is a method by which one party (the prover) **can prove** to another party (the verifier) **that something is true, without revealing any information** apart from the fact that this specific statement is true.
Zero-knowledge proofs have improved over the years and they are now being used in several real-world applications.
+
+
## Why do we need zero-knowledge proofs? {#why-zero-knowledge-proofs-are-important}
Zero-knowledge proofs represented a breakthrough in applied cryptography, as they promised to improve security of information for individuals. Consider how you might prove a claim (e.g., “I am a citizen of X country”) to another party (e.g., a service provider). You’d need to provide “evidence” to back up your claim, such as a national passport or driver’s license.
But there are problems with this approach, chiefly the lack of privacy. Personally Identifiable Information (PII) shared with third-party services is stored in central databases, which are vulnerable to hacks. With identity theft becoming a critical issue, there are calls for more privacy-protecting means of sharing sensitive information.
-Zero-knowledge proofs solve this problem by eliminating the need to reveal information to prove validity of claims. The zero-knowledge protocol uses the statement (called a ‘witness’) as input to generate a succinct proof of its validity. This proof provides strong guarantees that a statement is true without exposing the information used in creating it.
+Zero-knowledge proofs solve this problem by **eliminating the need to reveal information to prove validity of claims**. The zero-knowledge protocol uses the statement (called a ‘witness’) as input to generate a succinct proof of its validity. This proof provides strong guarantees that a statement is true without exposing the information used in creating it.
Going back to our earlier example, the only evidence you need to prove your citizenship claim is a zero-knowledge proof. The verifier only has to check if certain properties of the proof hold true to be convinced that the underlying statement holds true as well.
-## How do zero-knowledge proofs work? {#how-do-zero-knowledge-proofs-work}
-
-A zero-knowledge proof allows you to prove the truth of a statement without sharing the statement’s contents or revealing how you discovered the truth. To make this possible, zero-knowledge protocols rely on algorithms that take some data as input and return ‘true’ or ‘false’ as output.
-
-A zero-knowledge protocol must satisfy the following criteria:
-
-1. **Completeness**: If the input is valid, the zero-knowledge protocol always returns ‘true’. Hence, if the underlying statement is true, and the prover and verifier act honestly, the proof can be accepted.
-
-2. **Soundness**: If the input is invalid, it is theoretically impossible to fool the zero-knowledge protocol to return ‘true’. Hence, a lying prover cannot trick an honest verifier into believing an invalid statement is valid (except with a tiny margin of probability).
-
-3. **Zero-knowledge**: The verifier learns nothing about a statement beyond its validity or falsity (they have “zero knowledge” of the statement). This requirement also prevents the verifier from deriving the original input (the statement’s contents) from the proof.
-
-In basic form, a zero-knowledge proof is made up of three elements: **witness**, **challenge**, and **response**.
-
-- **Witness**: With a zero-knowledge proof, the prover wants to prove knowledge of some hidden information. The secret information is the “witness” to the proof, and the prover's assumed knowledge of the witness establishes a set of questions that can only be answered by a party with knowledge of the information. Thus, the prover starts the proving process by randomly choosing a question, calculating the answer, and sending it to the verifier.
-
-- **Challenge**: The verifier randomly picks another question from the set and asks the prover to answer it.
-
-- **Response**: The prover accepts the question, calculates the answer, and returns it to the verifier. The prover’s response allows the verifier to check if the former really has access to the witness. To ensure the prover isn’t guessing blindly and getting the correct answers by chance, the verifier picks more questions to ask. By repeating this interaction many times, the possibility of the prover faking knowledge of the witness drops significantly until the verifier is satisfied.
-
-The above describes the structure of an ‘interactive zero-knowledge proof’. Early zero-knowledge protocols used interactive proving, where verifying the validity of a statement required back-and-forth communication between provers and verifiers.
-
-A good example that illustrates how interactive proofs work is Jean-Jacques Quisquater’s famous [Ali Baba cave story](https://en.wikipedia.org/wiki/Zero-knowledge_proof#The_Ali_Baba_cave). In the story, Peggy (the prover) wants to prove to Victor (the verifier) that she knows the secret phrase to open a magic door without revealing the phrase.
-
-### Non-interactive zero-knowledge proofs {#non-interactive-zero-knowledge-proofs}
-
-While revolutionary, interactive proving had limited usefulness since it required the two parties to be available and interact repeatedly. Even if a verifier was convinced of a prover’s honesty, the proof would be unavailable for independent verification (computing a new proof required a new set of messages between the prover and verifier).
-
-To solve this problem, Manuel Blum, Paul Feldman, and Silvio Micali suggested the first [non-interactive zero-knowledge proofs](https://dl.acm.org/doi/10.1145/62212.62222) where the prover and verifier have a shared key. This allows the prover to demonstrate their knowledge of some information (i.e., witness) without providing the information itself.
-
-Unlike interactive proofs, noninteractive proofs required only one round of communication between participants (prover and verifier). The prover passes the secret information to a special algorithm to compute a zero-knowledge proof. This proof is sent to the verifier, who checks that the prover knows the secret information using another algorithm.
-
-Non-interactive proving reduces communication between prover and verifier, making ZK-proofs more efficient. Moreover, once a proof is generated, it is available for anyone else (with access to the shared key and verification algorithm) to verify.
-
-Non-interactive proofs represented a breakthrough for zero-knowledge technology and spurred the development of proving systems used today. We discuss these proof types below:
-
-### Types of zero-knowledge proofs {#types-of-zero-knowledge-proofs}
-
-#### ZK-SNARKs {#zk-snarks}
-
-ZK-SNARK is an acronym for **Zero-Knowledge Succinct Non-Interactive Argument of Knowledge**. The ZK-SNARK protocol has the following qualities:
-
-- **Zero-knowledge**: A verifier can validate the integrity of a statement without knowing anything else about the statement. The only knowledge the verifier has of the statement is whether it is true or false.
-
-- **Succinct**: The zero-knowledge proof is smaller than the witness and can be verified quickly.
-
-- **Non-interactive**: The proof is ‘non-interactive’ because the prover and verifier only interact once, unlike interactive proofs that require multiple rounds of communication.
-
-- **Argument**: The proof satisfies the ‘soundness’ requirement, so cheating is extremely unlikely.
-
-- **(Of) Knowledge**: The zero-knowledge proof cannot be constructed without access to the secret information (witness). It is difficult, if not impossible, for a prover who doesn’t have the witness to compute a valid zero-knowledge proof.
-
-The ‘shared key’ mentioned earlier refers to public parameters that the prover and verifier agree to use in generating and verifying proofs. Generating the public parameters (collectively known as the Common Reference String (CRS)) is a sensitive operation because of its importance in the protocol’s security. If the entropy (randomness) used in generating the CRS gets into the hands of a dishonest prover, they can compute false proofs.
-
-[Multi-party computation (MPC)](https://en.wikipedia.org/wiki/Secure_multi-party_computation) is a way of reducing the risks in generating public parameters. Multiple parties participate in a [trusted setup ceremony](https://zkproof.org/2021/06/30/setup-ceremonies/amp/), where each person contributes some random values to generate the CRS. As long as one honest party destroys their portion of the entropy, the ZK-SNARK protocol retains computational soundness.
-
-Trusted setups require users to trust the participants in parameter-generation. However, the development of ZK-STARKs has enabled proving protocols that work with a non-trusted setup.
-
-#### ZK-STARKs {#zk-starks}
-
-ZK-STARK is an acronym for **Zero-Knowledge Scalable Transparent Argument of Knowledge**. ZK-STARKs are similar to ZK-SNARKs, except that they are:
-
-- **Scalable**: ZK-STARK is faster than ZK-SNARK at generating and verifying proofs when the size of the witness is larger. With STARK proofs, prover and verification times only slightly increase as the witness grows (SNARK prover and verifier times increase linearly with witness size).
-
-- **Transparent**: ZK-STARK relies on publicly verifiable randomness to generate public parameters for proving and verification instead of a trusted setup. Thus, they are more transparent compared to ZK-SNARKs.
-
-ZK-STARKs produce larger proofs than ZK-SNARKs meaning they generally have higher verification overheads. However, there are cases (such as proving large datasets) where ZK-STARKs may be more cost-effective than ZK-SNARKs.
-
## Use-cases for zero-knowledge proofs {#use-cases-for-zero-knowledge-proofs}
### Anonymous payments {#anonymous-payments}
@@ -102,9 +36,9 @@ Cryptocurrencies were intended to provide a means for users to conduct private,
There are specific “privacy coins” designed for completely anonymous transactions. Privacy-focused blockchains, such as Zcash and Monero, shield transaction details, including sender/receiver addresses, asset type, quantity, and the transaction timeline.
-By baking in zero-knowledge technology into the protocol, privacy-focused blockchain networks allow nodes to validate transactions without needing to access transaction data.
+By baking in zero-knowledge technology into the protocol, privacy-focused [blockchain](/glossary/#blockchain) networks allow [nodes](/glossary/#node) to validate transactions without needing to access transaction data.
-Zero-knowledge proofs are also being applied to anonymizing transactions on public blockchains. An example is Tornado Cash, a decentralized, non-custodial service that allows users to conduct private transactions on Ethereum. Tornado Cash uses zero-knowledge proofs to obfuscate transaction details and guarantee financial privacy. Unfortunately, because these are "opt-in" privacy tools they are associated with illicit activity. To overcome this, privacy has to eventually become the default on public blockchains.
+**Zero-knowledge proofs are also being applied to anonymizing transactions on public blockchains**. An example is Tornado Cash, a decentralized, non-custodial service that allows users to conduct private transactions on Ethereum. Tornado Cash uses zero-knowledge proofs to obfuscate transaction details and guarantee financial privacy. Unfortunately, because these are "opt-in" privacy tools they are associated with illicit activity. To overcome this, privacy has to eventually become the default on public blockchains.
### Identity protection {#identity-protection}
@@ -122,7 +56,7 @@ Zero-knowledge proofs, however, can simplify authentication for both platforms a
Verifiable computation is another application of zero-knowledge technology for improving blockchain designs. Verifiable computing allows us to outsource computation to another entity while maintaining verifiable results. The entity submits the result along with a proof verifying that the program was executed correctly.
-Verifiable computation is critical to improving processing speeds on blockchains without reducing security. Understanding this requires knowing the differences in proposed solutions for scaling Ethereum.
+Verifiable computation is **critical to improving processing speeds on blockchains** without reducing security. Understanding this requires knowing the differences in proposed solutions for scaling Ethereum.
[On-chain scaling solutions](/developers/docs/scaling/#on-chain-scaling), such as sharding, require extensive modification of the blockchain’s base layer. However, this approach is highly complex and errors in implementation can undermine Ethereum’s security model.
@@ -178,6 +112,74 @@ But in cases where the coordinator remains honest, MACI represents a powerful to
[Learn more about MACI](https://privacy-scaling-explorations.github.io/maci/).
+## How do zero-knowledge proofs work? {#how-do-zero-knowledge-proofs-work}
+
+A zero-knowledge proof allows you to prove the truth of a statement without sharing the statement’s contents or revealing how you discovered the truth. To make this possible, zero-knowledge protocols rely on algorithms that take some data as input and return ‘true’ or ‘false’ as output.
+
+A zero-knowledge protocol must satisfy the following criteria:
+
+1. **Completeness**: If the input is valid, the zero-knowledge protocol always returns ‘true’. Hence, if the underlying statement is true, and the prover and verifier act honestly, the proof can be accepted.
+
+2. **Soundness**: If the input is invalid, it is theoretically impossible to fool the zero-knowledge protocol to return ‘true’. Hence, a lying prover cannot trick an honest verifier into believing an invalid statement is valid (except with a tiny margin of probability).
+
+3. **Zero-knowledge**: The verifier learns nothing about a statement beyond its validity or falsity (they have “zero knowledge” of the statement). This requirement also prevents the verifier from deriving the original input (the statement’s contents) from the proof.
+
+In basic form, a zero-knowledge proof is made up of three elements: **witness**, **challenge**, and **response**.
+
+- **Witness**: With a zero-knowledge proof, the prover wants to prove knowledge of some hidden information. The secret information is the “witness” to the proof, and the prover's assumed knowledge of the witness establishes a set of questions that can only be answered by a party with knowledge of the information. Thus, the prover starts the proving process by randomly choosing a question, calculating the answer, and sending it to the verifier.
+
+- **Challenge**: The verifier randomly picks another question from the set and asks the prover to answer it.
+
+- **Response**: The prover accepts the question, calculates the answer, and returns it to the verifier. The prover’s response allows the verifier to check if the former really has access to the witness. To ensure the prover isn’t guessing blindly and getting the correct answers by chance, the verifier picks more questions to ask. By repeating this interaction many times, the possibility of the prover faking knowledge of the witness drops significantly until the verifier is satisfied.
+
+The above describes the structure of an ‘interactive zero-knowledge proof’. Early zero-knowledge protocols used interactive proving, where verifying the validity of a statement required back-and-forth communication between provers and verifiers.
+
+A good example that illustrates how interactive proofs work is Jean-Jacques Quisquater’s famous [Ali Baba cave story](https://en.wikipedia.org/wiki/Zero-knowledge_proof#The_Ali_Baba_cave). In the story, Peggy (the prover) wants to prove to Victor (the verifier) that she knows the secret phrase to open a magic door without revealing the phrase.
+
+### Non-interactive zero-knowledge proofs {#non-interactive-zero-knowledge-proofs}
+
+While revolutionary, interactive proving had limited usefulness since it required the two parties to be available and interact repeatedly. Even if a verifier was convinced of a prover’s honesty, the proof would be unavailable for independent verification (computing a new proof required a new set of messages between the prover and verifier).
+
+To solve this problem, Manuel Blum, Paul Feldman, and Silvio Micali suggested the first [non-interactive zero-knowledge proofs](https://dl.acm.org/doi/10.1145/62212.62222) where the prover and verifier have a shared key. This allows the prover to demonstrate their knowledge of some information (i.e., witness) without providing the information itself.
+
+Unlike interactive proofs, noninteractive proofs required only one round of communication between participants (prover and verifier). The prover passes the secret information to a special algorithm to compute a zero-knowledge proof. This proof is sent to the verifier, who checks that the prover knows the secret information using another algorithm.
+
+Non-interactive proving reduces communication between prover and verifier, making ZK-proofs more efficient. Moreover, once a proof is generated, it is available for anyone else (with access to the shared key and verification algorithm) to verify.
+
+Non-interactive proofs represented a breakthrough for zero-knowledge technology and spurred the development of proving systems used today. We discuss these proof types below:
+
+### Types of zero-knowledge proofs {#types-of-zero-knowledge-proofs}
+
+#### ZK-SNARKs {#zk-snarks}
+
+ZK-SNARK is an acronym for **Zero-Knowledge Succinct Non-Interactive Argument of Knowledge**. The ZK-SNARK protocol has the following qualities:
+
+- **Zero-knowledge**: A verifier can validate the integrity of a statement without knowing anything else about the statement. The only knowledge the verifier has of the statement is whether it is true or false.
+
+- **Succinct**: The zero-knowledge proof is smaller than the witness and can be verified quickly.
+
+- **Non-interactive**: The proof is ‘non-interactive’ because the prover and verifier only interact once, unlike interactive proofs that require multiple rounds of communication.
+
+- **Argument**: The proof satisfies the ‘soundness’ requirement, so cheating is extremely unlikely.
+
+- **(Of) Knowledge**: The zero-knowledge proof cannot be constructed without access to the secret information (witness). It is difficult, if not impossible, for a prover who doesn’t have the witness to compute a valid zero-knowledge proof.
+
+The ‘shared key’ mentioned earlier refers to public parameters that the prover and verifier agree to use in generating and verifying proofs. Generating the public parameters (collectively known as the Common Reference String (CRS)) is a sensitive operation because of its importance in the protocol’s security. If the entropy (randomness) used in generating the CRS gets into the hands of a dishonest prover, they can compute false proofs.
+
+[Multi-party computation (MPC)](https://en.wikipedia.org/wiki/Secure_multi-party_computation) is a way of reducing the risks in generating public parameters. Multiple parties participate in a [trusted setup ceremony](https://zkproof.org/2021/06/30/setup-ceremonies/amp/), where each person contributes some random values to generate the CRS. As long as one honest party destroys their portion of the entropy, the ZK-SNARK protocol retains computational soundness.
+
+Trusted setups require users to trust the participants in parameter-generation. However, the development of ZK-STARKs has enabled proving protocols that work with a non-trusted setup.
+
+#### ZK-STARKs {#zk-starks}
+
+ZK-STARK is an acronym for **Zero-Knowledge Scalable Transparent Argument of Knowledge**. ZK-STARKs are similar to ZK-SNARKs, except that they are:
+
+- **Scalable**: ZK-STARK is faster than ZK-SNARK at generating and verifying proofs when the size of the witness is larger. With STARK proofs, prover and verification times only slightly increase as the witness grows (SNARK prover and verifier times increase linearly with witness size).
+
+- **Transparent**: ZK-STARK relies on publicly verifiable randomness to generate public parameters for proving and verification instead of a trusted setup. Thus, they are more transparent compared to ZK-SNARKs.
+
+ZK-STARKs produce larger proofs than ZK-SNARKs meaning they generally have higher verification overheads. However, there are cases (such as proving large datasets) where ZK-STARKs may be more cost-effective than ZK-SNARKs.
+
## Drawbacks of using zero-knowledge proofs {#drawbacks-of-using-zero-knowledge-proofs}
### Hardware costs {#hardware-costs}
@@ -202,11 +204,9 @@ ZK-STARK is considered immune to the threat of quantum computing, as it uses col
## Further reading {#further-reading}
-- [Computer Scientist Explains One Concept in 5 Levels of Difficulty | WIRED](https://www.youtube.com/watch?v=fOGdb1CTu5c) - _Wired YouTube channel_
- [Overview of use cases for zero-knowledge proofs](https://pse.dev/projects) — _Privacy and Scaling Explorations Team_
- [SNARKs vs. STARKS vs. Recursive SNARKs](https://www.alchemy.com/overviews/snarks-vs-starks) — _Alchemy Overviews_
- [A Zero-Knowledge Proof: Improving Privacy on a Blockchain](https://www.altoros.com/blog/zero-knowledge-proof-improving-privacy-for-a-blockchain/) — _Dmitry Lavrenov_
- [zk-SNARKs — A Realistic Zero-Knowledge Example and Deep Dive](https://medium.com/coinmonks/zk-snarks-a-realistic-zero-knowledge-example-and-deep-dive-c5e6eaa7131c) — _Adam Luciano_
- [ZK-STARKs — Create Verifiable Trust, even against Quantum Computers](https://medium.com/coinmonks/zk-starks-create-verifiable-trust-even-against-quantum-computers-dd9c6a2bb13d) — _Adam Luciano_
- [An approximate introduction to how zk-SNARKs are possible](https://vitalik.eth.limo/general/2021/01/26/snarks.html) — _Vitalik Buterin_
-- [What is Zero-Knowledge Proof and Its Role in Blockchain?](https://www.leewayhertz.com/zero-knowledge-proof-and-blockchain/) — _LeewayHertz_
diff --git a/public/dapps/summerfi.png b/public/dapps/summerfi.png
new file mode 100644
index 00000000000..cb116a5946b
Binary files /dev/null and b/public/dapps/summerfi.png differ
diff --git a/public/layer-2/rollup-2.png b/public/layer-2/rollup-2.png
index cc3baab4434..0dce3182ae9 100644
Binary files a/public/layer-2/rollup-2.png and b/public/layer-2/rollup-2.png differ
diff --git a/public/security_at_ethereum.org.asc b/public/security_at_ethereum.org.asc
new file mode 100644
index 00000000000..4c724732d23
--- /dev/null
+++ b/public/security_at_ethereum.org.asc
@@ -0,0 +1,144 @@
+-----BEGIN PGP PUBLIC KEY BLOCK-----
+Version: SKS 1.1.6
+Comment: Hostname: pgp.mit.edu
+
+mQINBFgl3tgBEAC8A1tUBkD9YV+eLrOmtgy+/JS/H9RoZvkg3K1WZ8IYfj6iIRaYneAk3Bp1
+82GUPVz/zhKr2g0tMXIScDR3EnaDsY+Qg+JqQl8NOG+Cikr1nnkG2on9L8c8yiqry1ZTCmYM
+qCa2acTFqnyuXJ482aZNtB4QG2BpzfhW4k8YThpegk/EoRUim+y7buJDtoNf7YILlhDQXN8q
+lHB02DWOVUihph9tUIFsPK6BvTr9SIr/eG6j6k0bfUo9pexOn7LS4SojoJmsm/5dp6AoKlac
+48cZU5zwR9AYcq/nvkrfmf2WkObg/xRdEvKZzn05jRopmAIwmoC3CiLmqCHPmT5a29vEob/y
+PFE335k+ujjZCPOu7OwjzDk7M0zMSfnNfDq8bXh16nn+ueBxJ0NzgD1oC6c2PhM+XRQCXCho
+yI8vbfp4dGvCvYqvQAE1bWjqnumZ/7vUPgZN6gDfiAzG2mUxC2SeFBhacgzDvtQls+uuvm+F
+nQOUgg2Hh8x2zgoZ7kqV29wjaUPFREuew7e+Th5BxielnzOfVycVXeSuvvIn6cd3g/s8mX1c
+2kLSXJR7+KdWDrIrR5Az0kwAqFZt6B6QTlDrPswu3mxsm5TzMbny0PsbL/HBM+GZEZCjMXxB
+8bqV2eSaktjnSlUNX1VXxyOxXA+ZG2jwpr51egi57riVRXokrQARAQABtDRFdGhlcmV1bSBG
+b3VuZGF0aW9uIEJ1ZyBCb3VudHkgPGJvdW50eUBldGhlcmV1bS5vcmc+iQIcBBEBCAAGBQJa
+FCY6AAoJEHoMA3Q0/nfveH8P+gJBPo9BXZL8isUfbUWjwLi81Yi70hZqIJUnz64SWTqBzg5b
+mCZ69Ji5637THsxQetS2ARabz0DybQ779FhD/IWnqV9T3KuBM/9RzJtuhLzKCyMrAINPMo28
+rKWdunHHarpuR4m3tL2zWJkle5QVYb+vkZXJJE98PJw+N4IYeKKeCs2ubeqZu636GA0sMzzB
+Jn3m/dRRA2va+/zzbr6F6b51ynzbMxWKTsJnstjC8gs8EeI+Zcd6otSyelLtCUkk3h5sTvpV
+Wv67BNSU0BYsMkxyFi9PUyy07Wixgeas89K5jG1oOtDva/FkpRHrTE/WA5OXDRcLrHJM+SwD
+CwqcLQqJd09NxwUW1iKeBmPptTiOGu1Gv2o7aEyoaWrHRBO7JuYrQrj6q2B3H1Je0zjAd2qt
+09ni2bLwLn4LA+VDpprNTO+eZDprv09s2oFSU6NwziHybovu0y7X4pADGkK2evOM7c86PohX
+QRQ1M1T16xLj6wP8/Ykwl6v/LUk7iDPXP3GPILnh4YOkwBR3DsCOPn8098xy7FxEELmupRzt
+Cj9oC7YAoweeShgUjBPzb+nGY1m6OcFfbUPBgFyMMfwF6joHbiVIO+39+Ut2g2ysZa7KF+yp
+XqVDqyEkYXsOLb25OC7brt8IJEPgBPwcHK5GNag6RfLxnQV+iVZ9KNH1yQgSiQI+BBMBAgAo
+AhsDBgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIXgAUCWglh+gUJBaNgWAAKCRDojTM0+l9qCgQ2
+D/4udJpV4zGIZW1yNaVvtd3vfKsTLi7GIRJLUBqVb2Yx/uhnN8jTl/tAhCVosCQ1pzvi9kMl
+s8qO1vu2kw5EWFFkwK96roI8pTql3VIjwhRVQrCkR7oAk/eUd1U/nt2q6J4UTYeVgqbq4dsI
+ZZTRyPJMD667YpuAIcaah+w9j/E5xksYQdMeprnDrQkkBCb4FIMqfDzBPKvEa8DcQr949K85
+kxhr6LDq9i5l4Egxt2JdH8DaR4GLca6+oHy0MyPs/bZOsfmZUObfM2oZgPpqYM96JanhzO1j
+dpnItyBii2pc+kNx5nMOf4eikE/MBv+WUJ0TttWzApGGmFUzDhtuEvRH9NBjtJ/pMrYspIGu
+O/QNY5KKOKQTvVIlwGcm8dTsSkqtBDSUwZyWbfKfKOI1/RhM9dC3gj5/BOY57DYYV4rdTK01
+ZtYjuhdfs2bhuP1uF/cgnSSZlv8azvf7Egh7tHPnYxvLjfq1bJAhCIX0hNg0a81/ndPAEFky
+fSko+JPKvdSvsUcSi2QQ4U2HX//jNBjXRfG4F0utgbJnhXzEckz6gqt7wSDZH2oddVuO8Ssc
+T7sK+CdXthSKnRyuI+sGUpG+6glpKWIfYkWFKNZWuQ+YUatY3QEDHXTIioycSmV8p4d/g/0S
+V6TegidLxY8bXMkbqz+3n6FArRffv5MH7qt3cYkCPgQTAQIAKAUCWCXhOwIbAwUJAeEzgAYL
+CQgHAwIGFQgCCQoLBBYCAwECHgECF4AACgkQ6I0zNPpfagrN/w/+Igp3vtYdNunikw3yHnYf
+Jkm0MmaMDUM9mtsaXVN6xb9n25N3Xa3GWCpmdsbYZ8334tI/oQ4/NHq/bEI5WFH5F1aFkMkm
+5AJVLuUkipCtmCZ5NkbRPJA9l0uNUUE6uuFXBhf4ddu7jb0jMetRF/kifJHVCCo5fISUNhLp
+7bwcWq9qgDQNZNYMOo4s9WX5Tl+5x4gTZdd2/cAYt49h/wnkw+huM+Jm0GojpLqIQ1jZiffm
+otf5rF4L+JhIIdW0W4IIh1v9BhHVllXw+z9oj0PALstT5h8/DuKoIiirFJ4DejU85GR1KKAS
+DeO19G/lSpWj1rSgFv2N2gAOxq0X+BbQTua2jdcY6JpHR4H1JJ2wzfHsHPgDQcgY1rGlmjVF
+aqU73WV4/hzXc/HshK/k4Zd8uD4zypv6rFsZ3UemK0aL2zXLVpV8SPWQ61nS03x675SmDlYr
+A80ENfdqvsn00JQuBVIv4Tv0Ub7NfDraDGJCst8rObjBT/0vnBWTBCebb2EsnS2iStIFkWdz
+/WXs4L4Yzre1iJwqRjiuqahZR5jHsjAUf2a0O29HVHE7zlFtCFmLPClml2lGQfQOpm5klGZF
+rmvus+qZ9rt35UgWHPZezykkwtWrFOwspwuCWaPDto6tgbRJZ4ftitpdYYM3dKW9IGJXBwrt
+BQrMsu+lp0vDF+yJAlUEEwEIAD8CGwMGCwkIBwMCBhUIAgkKCwQWAgMBAh4BAheAFiEErpbt
+lp5HmwCE8+F/6I0zNPpfagoFAmEAEJwFCQycmLgACgkQ6I0zNPpfagpWoBAAhOcbMAUw6Zt0
+GYzT3sR5/c0iatezPzXEXJf9ebzR8M5uPElXcxcnMx1dvXZmGPXPJKCPa99WCu1NZYy8F+Wj
+GTOY9tfIkvSxhys1p/giPAmvid6uQmD+bz7ivktnyzCkDWfMA+l8lsCSEqVlaq6y5T+a6SWB
+6TzC2S0MPb/RrC/7DpwyrNYWumvyVJh09adm1Mw/UGgst/sZ8eMaRYEd3X0yyT1CBpX4zp2E
+qQj9IEOTizvzv1x2jkHe5ZUeU3+nTBNlhSA+WFHUi0pfBdo2qog3Mv2EC1P2qMKoSdD5tPbA
+zql1yKoHHnXOMsqdftGwbiv2sYXWvrYvmaCd3Ys/viOyt3HOy9uV2ZEtBd9Yqo9x/NZj8QMA
+nY5k8jjrIXbUC89MqrJsQ6xxWQIg5ikMT7DvY0Ln89ev4oJyVvwIQAwCm4jUzFNm9bZLYDOP
+5lGJCV7tF5NYVU7NxNM8vescKc40mVNK/pygS5mxhK9QYOUjZsIv8gddrl1TkqrFMuxFnTyN
+WvzE29wFu/n4N1DkF+ZBqS70SlRvB+Hjz5LrDgEzF1Wf1eA/wq1dZbvMjjDVIc2VGlYp8Cp2
+8ob23c1seTtYXTNYgSR5go4EpH+xi+bIWv01bQQ9xGwBbT5sm4WUeWOcmX4QewzLZ3T/wK9+
+N4Ye/hmU9O34FwWJOY58EIe0OUV0aGVyZXVtIEZvdW5kYXRpb24gU2VjdXJpdHkgVGVhbSA8
+c2VjdXJpdHlAZXRoZXJldW0ub3JnPokCHAQRAQgABgUCWhQmOgAKCRB6DAN0NP5372LSEACT
+wZk1TASWZj5QF7rmkIM1GEyBxLE+PundNcMgM9Ktj1315ED8SmiukNI4knVS1MY99OIgXhQl
+D1foF2GKdTomrwwC4012zTNyUYCY60LnPZ6Z511HG+rZgZtZrbkz0IiUpwAlhGQND77lBqem
+J3K+CFX2XpDA/ojui/kqrY4cwMT5P8xPJkwgpRgw/jgdcZyJTsXdHblV9IGU4H1Vd1SgcfAf
+Db3YxDUlBtzlp0NkZqxen8irLIXUQvsfuIfRUbUSkWoK/n3U/gOCajAe8ZNF07iX4OWjH4Sw
+NDA841WhFWcGE+d8+pfMVfPASU3UPKH72uw86b2VgR46Av6voyMFd1pj+yCA+YAhJuOpV4yL
+QaGg2Z0kVOjuNWK/kBzp1F58DWGh4YBatbhE/UyQOqAAtR7lNf0M3QF9AdrHTxX8oZeqVW3V
+Fmi2mk0NwCIUv8SSrZr1dTchp04OtyXe5gZBXSfzncCSRQIUDC8OgNWaOzAaUmK299v4bvye
+uSCxOysxC7Q1hZtjzFPKdljS81mRlYeUL4fHlJU9R57bg8mriSXLmn7eKrSEDm/EG5T8nRx7
+TgX2MqJs8sWFxD2+bboVEu75yuFmZ//nmCBApAit9Hr2/sCshGIEpa9MQ6xJCYUxyqeJH+Cc
+Aja0UfXhnK2uvPClpJLIl4RE3gm4OXeE1IkCPgQTAQIAKAIbAwYLCQgHAwIGFQgCCQoLBBYC
+AwECHgECF4AFAloJYfoFCQWjYFgACgkQ6I0zNPpfagr4MQ//cfp3GSbSG8dkqgctW67Fy7cQ
+diiTmx3cwxY+tlI3yrNmdjtrIQMzGdqtY6LNz7aN87F8mXNf+DyVHX9+wd1Y8U+E+hVCTzKC
+sefUfxTz6unD9TTcGqaoelgIPMn4IiKz1RZE6eKpfDWe6q78W1Y6x1bE0qGNSjqT/QSxpezF
+E/OAm/t8RRxVxDtqz8LfH2zLea5zaC+ADj8EqgY9vX9TQa4DyVV8MgOyECCCadJQCD5O5hIA
+B2gVDWwrAUw+KBwskXZ7Iq4reJTKLEmt5z9zgtJ/fABwaCFt66ojwg0/RjbO9cNA3ZwHLGwU
+C6hkb6bRzIoZoMfYxVS84opiqf/Teq+t/XkBYCxbSXTJDA5MKjcVuw3N6YKWbkGP/EfQThe7
+BfAKFwwIw5YmsWjHK8IQj6R6hBxzTz9rz8y1Lu8EAAFfA7OJKaboI2qbOlauH98OuOUmVtr1
+TczHO+pTcgWVN0ytq2/pX5KBf4vbmULNbg3HFRq+gHx8CW+jyXGkcqjbgU/5FwtDxeqRTdGJ
+SyBGNBEU6pBNolyynyaKaaJjJ/biY27pvjymL5rlz95BH3Dn16Z4RRmqwlT6eq/wFYginujg
+CCE1icqOSE+Vjl7V8tV8AcgANkXKdbBE+Q8wlKsGI/kS1w4XFAYcaNHFT8qNeS8TSFXFhvU8
+HylYxO79t56JAj4EEwECACgFAlgl3tgCGwMFCQHhM4AGCwkIBwMCBhUIAgkKCwQWAgMBAh4B
+AheAAAoJEOiNMzT6X2oKmUMP/0hnaL6bVyepAq2LIdvIUbHfagt/Oo/KVfZs4bkM+xJOitJR
+0kwZV9PTihXFdzhL/YNWc2+LtEBtKItqkJZKmWC0E6OPXGVuU6hfFPebuzVccYJfm0Q3Ej19
+VJI9Uomf59Bpak8HYyEED7WVQjoYn7XVPsonwus/9+LDX+c5vutbrUdbjga3KjHbewD93X4O
+wVVoXyHEmU2Plyg8qvzFbNDylCWO7N2McO6SN6+7DitGZGr2+jO+P2R4RT1cnl2V3IRVcWZ0
+OTspPSnRGVr2fFiHN/+v8G/wHPLQcJZFvYPfUGNdcYbTmhWdiY0bEYXFiNrgzCCsyad7eKUR
+WN9QmxqmyqLDjUEDJCAh19ES6Vg3tqGwXk+uNUCoF30ga0TxQt6UXZJDEQFAGeASQ/RqE/q1
+EAuLv8IGM8o7IqKO2pWfLuqsY6dTbKBwDzz9YOJt7EOGuPPQbHxaYStTushZmJnm7hi8lhVG
+jT7qsEJdE95Il+I/mHWnXsCevaXjZugBiyV9yvOq4Hwwe2s1zKfrnQ4u0cadvGAh2eIqum7M
+Y3o6nD47aJ3YmEPX/WnhI56bACa2GmWvUwjI4c0/er3esSPYnuHnM9L8Am4qQwMVSmyU80tC
+MI7A9e13Mvv+RRkYFLJ7PVPdNpbW5jqX1doklFpKf6/XM+B+ngYneU+zgCUBiQJVBBMBCAA/
+AhsDBgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIXgBYhBK6W7ZaeR5sAhPPhf+iNMzT6X2oKBQJh
+ABCQBQkMnJi4AAoJEOiNMzT6X2oKAv0P+gJ3twBp5efNWyVLcIg4h4cOo9uD0NPvz8/fm2gX
+FoOJL3MeigtPuSVfE9kuTaTuRbArzuFtdvH6G/kcRQvOlO4zyiIRHCk1gDHoIvvtn6RbRhVm
+/Xo4uGIsFHst7n4A7BjicwEK5Op6Ih5Hoq19xz83YSBgBVk2fYEJIRyJiKFbyPjH0eSYe8v+
+Ra5/F85ugLx1P6mMVkW+WPzULns89riW7BGTnZmXFHZp8nO2pkUlcI7F3KRG7l4kmlC50ox6
+DiG/6AJCVulbAClky9C68TmJ/R1RazQxU/9IqVywsydq66tbJQbm5Z7GEti0C5jjbSRJL2oT
+1xC7Rilr85PMREkPL3vegJdgj5PKlffZ/MocD/0EohiQ7wFpejFD4iTljeh0exRUwCRb6655
+9ib34JSQgU8Hl4JJu+mEgd9v0ZHD0/1mMD6fnAR84zca+O3cdASbnQmzTOKcGzLIrkE8TEnU
++2UZ8Ol7SAAqmBgzY1gKOilUho6dkyCAwNL+QDpvrITDPLEFPsjyB/M2KudZSVEn+Rletju1
+qkMW31qFMNlsbwzMZw+0USeGcs31Cs0B2/WQsro99CExlhS9auUFkmoVjJmYVTIYOM0zuPa4
+OyGspqPhRu5hEsmMDPDWD7Aad5k4GTqogQNnuKyRliZjXXrDZqFD5nfsJSL8Ky/sJGEMuQIN
+BFgl3tgBEACbgq6HTN5gEBi0lkD/MafInmNi+59U5gRGYqk46WlfRjhHudXjDpgD0lolGb4h
+YontkMaKRlCg2Rvgjvk3Zve0PKWjKw7gr8YBa9fMFY8BhAXI32OdyI9rFhxEZFfWAfwKVmT1
+9BdeAQRFvcfd+8w8f1XVc+zddULMJFBTr+xKDlIRWwTkdLPQeWbjo0eHl/g4tuLiLrTxVbnj
+26bf+2+1DbM/w5VavzPrkviHqvKe/QP/gay4QDViWvFgLb90idfAHIdsPgflp0VDS5rVHFL6
+D73rSRdIRo3I8c8mYoNjSR4XDuvgOkAKW9LR3pvouFHHjp6Fr0GesRbrbb2EG66iPsR99MQ7
+FqIL9VMHPm2mtR+XvbnKkH2rYyEqaMbSdk29jGapkAWle4sIhSKk749A4tGkHl08KZ2N9o6G
+rfUehP/V2eJLaph2DioFL1HxRryrKy80QQKLMJRekxigq8greW8xB4zuf9Mkuou+RHNmo8Pe
+bHjFstLigiD6/zP2e+4tUmrT0/JTGOShoGMl8Rt0VRxdPImKun+4LOXbfOxArOSkY6i35+gs
+gkkSy1gTJE0BY3S9auT6+YrglY/TWPQ9IJxWVOKlT+3WIp5wJu2bBKQ420VLqDYzkoWytel/
+bM1ACUtipMiIVeUs2uFiRjpzA1Wy0QHKPTdSuGlJPRrfcQARAQABiQIlBBgBAgAPAhsMBQJa
+CWIIBQkFo2BYAAoJEOiNMzT6X2oKgSwQAKKs7BGF8TyZeIEO2EUK7R2bdQDCdSGZY06tqLFg
+3IHMGxDMb/7FVoa2AEsFgv6xpoebxBB5zkhUk7lslgxvKiSLYjxfNjTBltfiFJ+eQnf+OTs8
+KeR51lLa66rvIH2qUzkNDCCTF45H4wIDpV05AXhBjKYkrDCrtey1rQyFp5fxI+0IQ1UKKXvz
+ZK4GdxhxDbOUSd38MYy93nqcmclGSGK/gF8XiyuVjeifDCM6+T1NQTX0K9lneidcqtBDvlgg
+JTLJtQPO33o5EHzXSiud+dKth1uUhZOFEaYRZoye1YE3yB0TNOOE8fXlvu8iuIAMBSDL9ep6
+sEIaXYwoD60I2gHdWD0lkP0DOjGQpi4ouXM3Edsd5MTi0MDRNTij431kn8T/D0LCgmoUmYYM
+BgbwFhXr67axPZlKjrqR0z3F/Elv0ZPPcVg1tNznsALYQ9Ovl6b5M3cJ5GapbbvNWC7yEE1q
+Scl9HiMxjt/H6aPastH63/7wcN0TslW+zRBy05VNJvpWGStQXcngsSUeJtI1Gd992YNjUJq4
+/Lih6Z1TlwcFVap+cTcDptoUvXYGg/9mRNNPZwErSfIJ0Ibnx9wPVuRN6NiCLOt2mtKp2F1p
+M6AOQPpZ85vEh6I8i6OaO0w/Z0UHBwvpY6jDUliaROsWUQsqz78Z34CVj4cy6vPW2EF4iQIl
+BBgBAgAPBQJYJd7YAhsMBQkB4TOAAAoJEOiNMzT6X2oKTjgP/1ojCVyGyvHMLUgnX0zwrR5Q
+1M5RKFz6kHwKjODVLR3Isp8I935oTQt3DY7yFDI4t0GqbYRQMtxcNEb7maianhK2trCXfhPs
+6/L04igjDf5iTcmzamXN6xnh5xkz06hZJJCMuu4MvKxC9MQHCVKAwjswl/9H9JqIBXAY3E2l
+LpX5P+5jDZuPxS86p3+k4Rrdp9KTGXjiuEleM3zGlz5BLWydqovOck7C2aKh27ETFpDYY0z3
+yQ5AsPJyk1rAr0wrH6+ywmwWlzuQewavnrLnJ2M8iMFXpIhyHeEIU/f7o8f+dQk72rZ9CGzd
+cqig2za/BS3zawZWgbv2vB2elNsIllYLdir45jxBOxx2yvJvEuu4glz78y4oJTCTAYAbMlle
+5gVdPkVcGyvvVS9tinnSaiIzuvWrYHKWll1uYPm2Q1CDs06P5I7bUGAXpgQLUh/XQguy/0sX
+GWqW3FS5JzP+XgcR/7UASvwBdHylubKbeqEpB7G1s+m+8C67qOrc7EQv3Jmy1YDOkhEyNig1
+rmjplLuir3tC1X+D7dHpn7NJe7nMwFx2b2MpMkLA9jPPAGPp/ekcu5sxCe+E0J/4UF++K+CR
+XIxgtzU2UJfp8p9x+ygbx5qHinR0tVRdIzv3ZnGsXrfxnWfSOaB582cU3VRN9INzHHax8ETa
+QVDnGO5uQa+FiQI8BBgBCAAmAhsMFiEErpbtlp5HmwCE8+F/6I0zNPpfagoFAmEAELYFCQyc
+mN4ACgkQ6I0zNPpfagoqAQ/+MnDjBx8JWMd/XjeFoYKx/Oo0ntkInV+ME61JTBls4PdVk+TB
+8PWZdPQHw9SnTvRmykFeznXIRzuxkowjrZYXdPXBxY2b1WyD5V3Ati1TM9vqpaR4osyPs2xy
+I4dzDssh9YvUsIRL99O04/65lGiYeBNuACq+yK/7nD/ErzBkDYJHhMCdadbVWUACxvVIDvro
+yQeVLKMsHqMCd8BTGD7VDs79NXskPnN77pAFnkzS4Z2b8SNzrlgTc5pUiuZHIXPIpEYmsYzh
+ucTU6uI3dN1PbSFHK5tG2pHb4ZrPxY3L20Dgc2Tfu5/SDApZzwvvKTqjdO891MEJ++H+ssOz
+i4O1UeWKs9owWttan9+PI47ozBSKOTxmMqLSQ0f56Np9FJsV0ilGxRKfjhzJ4KniOMUBA7mP
++m+TmXfVtthJred4sHlJMTJNpt+sCcT6wLMmyc3keIEAu33gsJj3LTpkEA2q+V+ZiP6Q8HRB
+402ITklABSArrPSE/fQU9L8hZ5qmy0Z96z0iyILgVMLuRCCfQOMWhwl8yQWIIaf1yPI07xur
+epy6lH7HmxjjOR7eo0DaSxQGQpThAtFGwkWkFh8yki8j3E42kkrxvEyyYZDXn2YcI3bpqhJx
+PtwCMZUJ3kc/skOrs6bOI19iBNaEoNX5Dllm7UHjOgWNDQkcCuOCxucKano=
+=arte
+-----END PGP PUBLIC KEY BLOCK------
\ No newline at end of file
diff --git a/public/upgrades/upgrade_doge.png b/public/upgrades/upgrade_doge.png
deleted file mode 100644
index 7a488669ed9..00000000000
Binary files a/public/upgrades/upgrade_doge.png and /dev/null differ
diff --git a/public/wallets/airgap.png b/public/wallets/airgap.png
deleted file mode 100644
index 8b8f05ead1c..00000000000
Binary files a/public/wallets/airgap.png and /dev/null differ
diff --git a/public/wallets/aktionariat.png b/public/wallets/aktionariat.png
deleted file mode 100644
index 6b8ab9a6179..00000000000
Binary files a/public/wallets/aktionariat.png and /dev/null differ
diff --git a/public/wallets/bitcoindotcom.png b/public/wallets/bitcoindotcom.png
deleted file mode 100644
index 05326fd2aa2..00000000000
Binary files a/public/wallets/bitcoindotcom.png and /dev/null differ
diff --git a/public/wallets/brave.png b/public/wallets/brave.png
deleted file mode 100644
index 772c0f22e2c..00000000000
Binary files a/public/wallets/brave.png and /dev/null differ
diff --git a/public/wallets/coinwallet.png b/public/wallets/coinwallet.png
deleted file mode 100644
index f581792c572..00000000000
Binary files a/public/wallets/coinwallet.png and /dev/null differ
diff --git a/public/wallets/find-wallet-hero.png b/public/wallets/find-wallet-hero.png
deleted file mode 100644
index d6659f20c86..00000000000
Binary files a/public/wallets/find-wallet-hero.png and /dev/null differ
diff --git a/public/wallets/guarda.png b/public/wallets/guarda.png
deleted file mode 100644
index c2784a61a3e..00000000000
Binary files a/public/wallets/guarda.png and /dev/null differ
diff --git a/public/wallets/mycrypto.png b/public/wallets/mycrypto.png
deleted file mode 100644
index 2358abc7a44..00000000000
Binary files a/public/wallets/mycrypto.png and /dev/null differ
diff --git a/public/wallets/numio.png b/public/wallets/numio.png
deleted file mode 100644
index 42423f48060..00000000000
Binary files a/public/wallets/numio.png and /dev/null differ
diff --git a/public/wallets/okx.jpeg b/public/wallets/okx.jpeg
deleted file mode 100644
index 06644a0c790..00000000000
Binary files a/public/wallets/okx.jpeg and /dev/null differ
diff --git a/public/wallets/opera.png b/public/wallets/opera.png
deleted file mode 100644
index 3fe453e467e..00000000000
Binary files a/public/wallets/opera.png and /dev/null differ
diff --git a/public/wallets/portis.png b/public/wallets/portis.png
deleted file mode 100644
index 562cbd229e9..00000000000
Binary files a/public/wallets/portis.png and /dev/null differ
diff --git a/public/wallets/sequence.png b/public/wallets/sequence.png
deleted file mode 100644
index 00268aef5ca..00000000000
Binary files a/public/wallets/sequence.png and /dev/null differ
diff --git a/public/wallets/shapeshift.png b/public/wallets/shapeshift.png
deleted file mode 100644
index 679b1a29cda..00000000000
Binary files a/public/wallets/shapeshift.png and /dev/null differ
diff --git a/public/wallets/status.png b/public/wallets/status.png
deleted file mode 100644
index 1c65198a221..00000000000
Binary files a/public/wallets/status.png and /dev/null differ
diff --git a/public/wallets/web3auth.png b/public/wallets/web3auth.png
deleted file mode 100644
index 40bf9713101..00000000000
Binary files a/public/wallets/web3auth.png and /dev/null differ
diff --git a/public/wallets/zengo.png b/public/wallets/zengo.png
deleted file mode 100644
index 39e6445c5c4..00000000000
Binary files a/public/wallets/zengo.png and /dev/null differ
diff --git a/src/@chakra-ui/components/Avatar.ts b/src/@chakra-ui/components/Avatar.ts
index 90062587eba..62e6d82d977 100644
--- a/src/@chakra-ui/components/Avatar.ts
+++ b/src/@chakra-ui/components/Avatar.ts
@@ -1,4 +1,4 @@
-import { pick } from "lodash"
+import pick from "lodash/pick"
import { avatarAnatomy } from "@chakra-ui/anatomy"
import {
createMultiStyleConfigHelpers,
diff --git a/src/@chakra-ui/components/Popover.ts b/src/@chakra-ui/components/Popover.ts
new file mode 100644
index 00000000000..1a05654f841
--- /dev/null
+++ b/src/@chakra-ui/components/Popover.ts
@@ -0,0 +1,62 @@
+import { popoverAnatomy as parts } from "@chakra-ui/anatomy"
+import { cssVar } from "@chakra-ui/react"
+import { createMultiStyleConfigHelpers } from "@chakra-ui/styled-system"
+
+import { defineMergeStyles, popoverDefaultTheme } from "./components.utils"
+
+const { definePartsStyle, defineMultiStyleConfig } =
+ createMultiStyleConfigHelpers(parts.keys)
+
+const {
+ baseStyle: defaultBaseStyle,
+ sizes: defaultSizes,
+ defaultProps,
+} = popoverDefaultTheme
+
+const $arrowBg = cssVar("popper-arrow-bg")
+const $arrowSize = cssVar("popper-arrow-size")
+const $arrowShadowColor = cssVar("popper-arrow-shadow-color")
+
+const baseStyle = definePartsStyle(
+ defineMergeStyles(defaultBaseStyle, {
+ popper: {
+ borderRadius: "base",
+ zIndex: "popover",
+ },
+ content: {
+ [$arrowSize.variable]: "8px",
+ p: 2,
+ bg: "background.highlight",
+ borderRadius: "base",
+ boxShadow: `0px 0px 16px 0px #00000040`,
+ fontSize: "sm",
+ border: "none",
+ minWidth: "48", // 12rem
+ maxWidth: "xs", // 20rem
+ lineHeight: "base",
+ w: "auto",
+ },
+ body: {
+ color: "body.base",
+ fontWeight: "normal",
+ textTransform: "none",
+ },
+ header: {
+ border: "none",
+ },
+ arrow: {
+ [$arrowBg.variable]: "colors.background.highlight",
+ [$arrowShadowColor.variable]: "colors.background.highlight",
+ border: "none",
+ },
+ })
+)
+
+export const Popover = defineMultiStyleConfig({
+ baseStyle,
+ sizes: defaultSizes,
+ defaultProps: {
+ ...defaultProps,
+ variant: undefined,
+ },
+})
diff --git a/src/@chakra-ui/components/ReactSelect.ts b/src/@chakra-ui/components/ReactSelect.ts
new file mode 100644
index 00000000000..17abb11362f
--- /dev/null
+++ b/src/@chakra-ui/components/ReactSelect.ts
@@ -0,0 +1,135 @@
+import { createMultiStyleConfigHelpers, cssVar } from "@chakra-ui/react"
+
+import { reactSelectAnatomyKeys } from "@/components/Select/innerComponents"
+
+const $borderBaseWidth = cssVar("border-base-width")
+
+const { defineMultiStyleConfig, definePartsStyle } =
+ createMultiStyleConfigHelpers(reactSelectAnatomyKeys)
+
+const baseStyle = definePartsStyle({
+ container: {
+ [$borderBaseWidth.variable]: "borders.1px",
+ w: "full",
+ minH: 10.5,
+ cursor: "pointer",
+ position: "relative",
+ zIndex: 1,
+ "& > .react-select__menu": {
+ zIndex: -1,
+ },
+ },
+ control: {
+ border: $borderBaseWidth.reference,
+ borderColor: "currentColor",
+ outlineOffset: "-2px",
+ p: 2,
+ gap: 4,
+ _hover: {
+ color: "primary.base",
+ borderColor: "primary.lowContrast",
+ },
+ "&[data-expanded=true]": {
+ bg: "background.highlight",
+ color: "primary.base",
+ borderColor: "primary.lowContrast",
+ },
+ "&:focus-within:not([data-expanded=true])": {
+ outline: "3px solid",
+ outlineColor: "primary.hover",
+ borderColor: "transparent",
+ },
+ },
+ groupHeading: {
+ color: "body.medium",
+ },
+ indicatorIcon: {
+ fontSize: "sm",
+ transitionProperty: "common",
+ transitionDuration: "normal",
+ "*[data-expanded=true] &": {
+ transform: "rotate(180deg)",
+ },
+ },
+ menuList: {
+ bg: "background.highlight",
+ w: "full",
+ maxH: "xs",
+ overflowY: "auto",
+ },
+ option: {
+ color: "body.base",
+ p: 2,
+ "&[data-focused=true]": {
+ bg: "primary.lowContrast",
+ color: "primary.base",
+ },
+ "&[data-active=true]": {
+ bg: "body.light",
+ color: "primary.visited",
+ },
+ },
+})
+
+const $borderTopRadius = cssVar("border-top-radius")
+
+const variantFlushed = definePartsStyle({
+ container: {
+ [$borderTopRadius.variable]: "radii.base",
+ borderTopRadius: $borderTopRadius.reference,
+ },
+ control: {
+ borderTopRadius: $borderTopRadius.reference,
+ borderTopColor: "transparent",
+ borderInlineColor: "transparent",
+ _hover: {
+ borderTopColor: "transparent",
+ borderInlineColor: "transparent",
+ },
+ "&[data-expanded=true]": {
+ borderColor: "body.light",
+ borderBottomColor: "primary.base",
+ },
+ },
+ menuList: {
+ borderInline: $borderBaseWidth.reference,
+ borderBottom: $borderBaseWidth.reference,
+ borderColor: "body.light",
+ borderBottomRadius: "base",
+ },
+})
+
+const $borderOutlineRadius = cssVar("border-outline-radius")
+
+const variantOutline = definePartsStyle({
+ container: {
+ [$borderOutlineRadius.variable]: "radii.base",
+ borderRadius: $borderOutlineRadius.reference,
+ },
+ control: {
+ borderRadius: $borderOutlineRadius.reference,
+ "&[data-expanded=true]": {
+ borderBottomColor: "transparent",
+ borderBottomRadius: "none",
+ },
+ },
+ menuList: {
+ borderInline: $borderBaseWidth.reference,
+ borderBottom: $borderBaseWidth.reference,
+ borderColor: "primary.lowContrast",
+ borderBottomRadius: "base",
+ },
+})
+
+const variants = {
+ flushed: variantFlushed,
+ outline: variantOutline,
+}
+
+export const ReactSelect = defineMultiStyleConfig({
+ baseStyle,
+ variants,
+ defaultProps: {
+ variant: "flushed",
+ },
+})
diff --git a/src/@chakra-ui/components/Select.ts b/src/@chakra-ui/components/Select.ts
deleted file mode 100644
index 1ff0d3f138e..00000000000
--- a/src/@chakra-ui/components/Select.ts
+++ /dev/null
@@ -1,78 +0,0 @@
-import { selectAnatomy } from "@chakra-ui/anatomy"
-import { createMultiStyleConfigHelpers, cssVar } from "@chakra-ui/react"
-
-import { defineMergeStyles, selectDefaultTheme } from "./components.utils"
-import { Input as inputTheme } from "./Input"
-
-const { baseStyle: inputBaseStyles } = inputTheme
-
-const baseFieldStyles = inputBaseStyles?.({} as never).field
-
-const { defineMultiStyleConfig, definePartsStyle } =
- createMultiStyleConfigHelpers(selectAnatomy.keys)
-
-const baseStyleField = defineMergeStyles(selectDefaultTheme.baseStyle?.field, {
- ...baseFieldStyles,
- cursor: "pointer",
- py: 2,
- ps: 2,
- pe: 8,
- h: 10.5,
- _focusVisible: {
- outline: "3px solid",
- outlineColor: "primary.hover",
- outlineOffset: "-1px",
- },
- "&:not(:disabled)": {
- _hover: {
- ...baseFieldStyles?.["&:not(:disabled)"],
- boxShadow: "buttonHover",
- },
- },
-})
-
-const baseStyleIcon = defineMergeStyles(selectDefaultTheme.baseStyle?.icon, {
- _peerHover: {
- color: "primary.base",
- },
-})
-
-const baseStyle = definePartsStyle({
- field: baseStyleField,
- icon: baseStyleIcon,
-})
-
-const variantOutline = definePartsStyle({
- field: {
- borderRadius: "base",
- },
-})
-
-const flushedBorderColor = "transparent !important"
-
-const variantFlushed = definePartsStyle({
- field: {
- borderBottomRadius: 0,
- borderTopColor: flushedBorderColor,
- borderInlineColor: flushedBorderColor,
- "&:not(:disabled)": {
- _hover: {
- borderTopColor: flushedBorderColor,
- borderInlineColor: flushedBorderColor,
- },
- },
- },
-})
-
-const variants = {
- outline: variantOutline,
- flushed: variantFlushed,
-}
-
-export const Select = defineMultiStyleConfig({
- baseStyle,
- variants,
- defaultProps: {
- variant: "outline",
- },
-})
diff --git a/src/@chakra-ui/components/components.utils.ts b/src/@chakra-ui/components/components.utils.ts
index f0bb58df0a0..fe4abfb4917 100644
--- a/src/@chakra-ui/components/components.utils.ts
+++ b/src/@chakra-ui/components/components.utils.ts
@@ -1,4 +1,4 @@
-import { merge } from "lodash"
+import merge from "lodash/merge"
import { cssVar, SystemStyleObject, theme } from "@chakra-ui/react"
const {
@@ -20,6 +20,7 @@ const {
List: listDefaultTheme,
Menu: menuDefaultTheme,
Modal: modalDefaultTheme,
+ Popover: popoverDefaultTheme,
Radio: radioDefaultTheme,
Select: selectDefaultTheme,
Spinner: spinnerDefaultTheme,
@@ -48,6 +49,7 @@ export {
listDefaultTheme,
menuDefaultTheme,
modalDefaultTheme,
+ popoverDefaultTheme,
radioDefaultTheme,
selectDefaultTheme,
spinnerDefaultTheme,
diff --git a/src/@chakra-ui/components/index.ts b/src/@chakra-ui/components/index.ts
index f105ee21480..aeb2c667c97 100644
--- a/src/@chakra-ui/components/index.ts
+++ b/src/@chakra-ui/components/index.ts
@@ -19,9 +19,10 @@ import { Heading } from "./Heading"
import { Input } from "./Input"
import { Link } from "./Link"
import { Modal } from "./Modal"
+import { Popover } from "./Popover"
import { Progress } from "./Progress"
import { Radio } from "./Radio"
-import { Select } from "./Select"
+import { ReactSelect } from "./ReactSelect"
import { Switch } from "./Switch"
import { Table } from "./Table"
import { Tabs } from "./Tabs"
@@ -48,9 +49,10 @@ export default {
Link,
Menu: menuDefaultTheme,
Modal,
+ Popover,
Progress,
Radio,
- Select,
+ ReactSelect,
Spinner: spinnerDefaultTheme,
Switch,
Table,
diff --git a/src/@chakra-ui/foundations/spacing.ts b/src/@chakra-ui/foundations/spacing.ts
index b1c918a4759..6f5271b1c7a 100644
--- a/src/@chakra-ui/foundations/spacing.ts
+++ b/src/@chakra-ui/foundations/spacing.ts
@@ -1,6 +1,7 @@
const spacing = {
7.5: "1.875rem",
10.5: "2.625rem",
+ 19: "4.75rem", // Nav height
}
export default spacing
diff --git a/src/@chakra-ui/semanticTokens.ts b/src/@chakra-ui/semanticTokens.ts
index 9e20353d72b..9b81ae3c21a 100644
--- a/src/@chakra-ui/semanticTokens.ts
+++ b/src/@chakra-ui/semanticTokens.ts
@@ -105,6 +105,12 @@ const semanticTokens = {
"linear-gradient(102.7deg, rgba(185, 185, 241, 0.2) 0%, rgba(84, 132, 234, 0.2) 51.56%, rgba(58, 142, 137, 0.2) 100%)",
},
},
+ shadows: {
+ menu: {
+ accordion:
+ "0px 2px 2px 0px rgba(0, 0, 0, 0.12) inset, 0px -3px 2px 0px rgba(0, 0, 0, 0.14) inset",
+ },
+ },
}
export default semanticTokens
diff --git a/src/components/AssetDownload/index.tsx b/src/components/AssetDownload/index.tsx
index 6943ddf484b..dd3e2fc477d 100644
--- a/src/components/AssetDownload/index.tsx
+++ b/src/components/AssetDownload/index.tsx
@@ -62,11 +62,12 @@ const AssetDownload = ({
{t("page-assets-download-download")} (
{extname(imgSrc).slice(1).toUpperCase()})
- {svgUrl && (
+ {/* Disables SVG due to bug: https://github.com/ethereum/ethereum-org-website/issues/12267 */}
+ {/* {svgUrl && (
{t("page-assets-download-download")} (SVG)
- )}
+ )} */}
)
diff --git a/src/components/Card/index.tsx b/src/components/Card/index.tsx
index 513abf5a8b8..ff0fe3e6108 100644
--- a/src/components/Card/index.tsx
+++ b/src/components/Card/index.tsx
@@ -30,7 +30,7 @@ const Card = ({ emoji, title, description, children, ...props }: CardProps) => (
{title}
)}
- {description && {description}}
+ {description && {description}}
{children}
diff --git a/src/components/CardList.tsx b/src/components/CardList.tsx
index 4db06767d15..ad0e7c490b7 100644
--- a/src/components/CardList.tsx
+++ b/src/components/CardList.tsx
@@ -70,6 +70,7 @@ const Card = ({
(
)
-const Select = chakra(StyledSelect, {
- baseStyle: { maxW: "container.sm" },
-})
-
const NoResults = ({ children }) => (
@@ -106,14 +102,17 @@ const CentralizedExchanges = ({
{t("page-get-eth-exchanges-intro")}
-
+
+
+
{!hasSelectedCountry && (
diff --git a/src/components/CommunityEvents/index.tsx b/src/components/CommunityEvents/index.tsx
index ea7d7d174d3..5424098d4ca 100644
--- a/src/components/CommunityEvents/index.tsx
+++ b/src/components/CommunityEvents/index.tsx
@@ -1,4 +1,3 @@
-import { DateTime, DateTimeFormatOptions } from "luxon"
import { useRouter } from "next/router"
import { useTranslation } from "next-i18next"
import { FaDiscord } from "react-icons/fa"
@@ -12,6 +11,7 @@ import {
Icon,
} from "@chakra-ui/react"
+import type { Lang } from "@/lib/types"
import type { CommunityEvent } from "@/lib/interfaces"
import { ButtonLink } from "@/components/Buttons"
@@ -21,6 +21,7 @@ import Text from "@/components/OldText"
import Translation from "@/components/Translation"
import { trackCustomEvent } from "@/lib/utils/matomo"
+import { getLocaleTimestamp } from "@/lib/utils/time"
const matomoEvent = (buttonType: string) => {
trackCustomEvent({
@@ -30,30 +31,15 @@ const matomoEvent = (buttonType: string) => {
})
}
-const renderEventDateTime = (
- date: string,
- language: string,
- params: DateTimeFormatOptions = {
- year: "numeric",
- month: "long",
- day: "numeric",
- hour12: false,
- hour: "numeric",
- minute: "numeric",
- }
-) => {
- return DateTime.fromISO(date).setLocale(language).toLocaleString(params)
-}
-
-interface EventProps {
+type EventProps = {
event: CommunityEvent
- language: string
type: "upcoming" | "past"
}
-const Event = ({ event, language, type }: EventProps) => {
+const Event = ({ event, type }: EventProps) => {
+ const { locale } = useRouter()
const { date, title, calendarLink } = event
- const params: DateTimeFormatOptions = {
+ const options: Intl.DateTimeFormatOptions = {
year: "numeric",
month: "short",
day: "numeric",
@@ -63,11 +49,11 @@ const Event = ({ event, language, type }: EventProps) => {
- {renderEventDateTime(date, language, params)}
+ {getLocaleTimestamp(locale! as Lang, date, options)}
- matomoEvent(type)}>
+ matomoEvent(type)}>
{title}
@@ -130,9 +116,17 @@ const CommunityEvents = ({ events }: CommunityEventsProps) => {
{reversedUpcomingEventData[0].title}
- {renderEventDateTime(
+ {getLocaleTimestamp(
+ locale! as Lang,
reversedUpcomingEventData[0].date,
- locale!
+ {
+ year: "numeric",
+ month: "long",
+ day: "numeric",
+ hour12: false,
+ hour: "numeric",
+ minute: "numeric",
+ }
)}
@@ -177,14 +171,7 @@ const CommunityEvents = ({ events }: CommunityEventsProps) => {
{reversedUpcomingEventData.slice(1).length ? (
reversedUpcomingEventData.slice(1).map((item, idx) => {
- return (
-
- )
+ return
})
) : (
@@ -197,9 +184,7 @@ const CommunityEvents = ({ events }: CommunityEventsProps) => {
{reversedPastEventData.length ? (
reversedPastEventData.map((item, idx) => {
- return (
-
- )
+ return
})
) : (
diff --git a/src/components/Contributors.tsx b/src/components/Contributors.tsx
index 36d81a58acd..891e7dc285b 100644
--- a/src/components/Contributors.tsx
+++ b/src/components/Contributors.tsx
@@ -1,4 +1,4 @@
-import { shuffle } from "lodash"
+import shuffle from "lodash/shuffle"
import { Box, Flex, Image, LinkBox, LinkOverlay } from "@chakra-ui/react"
import InlineLink from "@/components/Link"
diff --git a/src/components/CopyToClipboard.tsx b/src/components/CopyToClipboard.tsx
index 9aa4c41ee60..52b768c09d3 100644
--- a/src/components/CopyToClipboard.tsx
+++ b/src/components/CopyToClipboard.tsx
@@ -1,6 +1,4 @@
-import { useEffect, useRef, useState } from "react"
-import ClipboardJS from "clipboard"
-import { Box } from "@chakra-ui/react"
+import { Box, useClipboard } from "@chakra-ui/react"
export type CopyToClipboardProps = {
text: string
@@ -13,38 +11,15 @@ const CopyToClipboard = ({
text,
inline = false,
}: CopyToClipboardProps) => {
- const [isCopied, setIsCopied] = useState(false)
- const targetEl = useRef(null)
- const timer = useRef(0)
-
- useEffect(() => {
- const afterCopy = () => {
- setIsCopied(true)
- clearTimeout(timer.current)
- timer.current = window.setTimeout(() => setIsCopied(false), 1500)
- }
-
- const clipboard = new ClipboardJS(targetEl.current!, {
- text: () => text,
- })
-
- clipboard.on("success", (e) => {
- afterCopy()
- })
-
- clipboard.on("error", (e) => {
- console.log("error: failed to copy text")
- })
-
- return () => {
- clipboard.destroy()
- clearTimeout(timer.current)
- }
- }, [text])
+ const { onCopy, hasCopied } = useClipboard(text, { timeout: 1500 })
return (
-
- {children(isCopied)}
+
+ {children(hasCopied)}
)
}
diff --git a/src/components/DataProductCard.tsx b/src/components/DataProductCard.tsx
index 2582ef5f704..908f36cc650 100644
--- a/src/components/DataProductCard.tsx
+++ b/src/components/DataProductCard.tsx
@@ -97,7 +97,7 @@ const DataProductCard = ({
{name}
-
+
{description}
@@ -129,7 +129,7 @@ const DataProductCard = ({
objectFit="cover"
alt=""
minWidth="24px"
- me="0.5rem"
+ me={2}
/>
)}
{coin}
diff --git a/src/components/DocsNav.tsx b/src/components/DocsNav.tsx
index bdd11c5d1af..b2f480c38ad 100644
--- a/src/components/DocsNav.tsx
+++ b/src/components/DocsNav.tsx
@@ -58,8 +58,8 @@ const CardLink = ({ docData, isPrev, contentNotTranslated }: CardLinkProps) => {
{
diff --git a/src/components/Emoji.tsx b/src/components/Emoji.tsx
index 61618223898..83640075ece 100644
--- a/src/components/Emoji.tsx
+++ b/src/components/Emoji.tsx
@@ -1,8 +1,14 @@
-import { type BaseProps, Twemoji } from "react-emoji-render"
+import dynamic from "next/dynamic"
+import type { BaseProps } from "react-emoji-render"
import { Box, type BoxProps } from "@chakra-ui/react"
import { IS_DEV } from "@/lib/utils/env"
+const Twemoji = dynamic(
+ () => import("react-emoji-render").then((mod) => mod.Twemoji),
+ { ssr: false }
+)
+
export type EmojiProps = Omit & BaseProps
const Emoji = (props: EmojiProps) => (
diff --git a/src/components/EthPriceCard.tsx b/src/components/EthPriceCard.tsx
index eb49b2bde83..f2cc64cfde7 100644
--- a/src/components/EthPriceCard.tsx
+++ b/src/components/EthPriceCard.tsx
@@ -102,7 +102,7 @@ const EthPriceCard = ({ isLeftAlign = false, ...props }: EthPriceCardProps) => {
const tooltipContent = (
{t("data-provided-by")}{" "}
-
+
coingecko.com
@@ -141,7 +141,9 @@ const EthPriceCard = ({ isLeftAlign = false, ...props }: EthPriceCardProps) => {
>
{t("eth-current-price")}
-
+
+
+
diff --git a/src/components/EventCard.tsx b/src/components/EventCard.tsx
index a40c430b54b..b39405ad27f 100644
--- a/src/components/EventCard.tsx
+++ b/src/components/EventCard.tsx
@@ -93,7 +93,7 @@ const EventCard = ({
{title}
- {description}
+ {description}View Event
diff --git a/src/components/FeedbackWidget.tsx b/src/components/FeedbackWidget.tsx
deleted file mode 100644
index 0e13b47fb4f..00000000000
--- a/src/components/FeedbackWidget.tsx
+++ /dev/null
@@ -1,276 +0,0 @@
-import { useEffect, useMemo, useRef, useState } from "react"
-import { useRouter } from "next/router"
-import { useTranslation } from "next-i18next"
-import {
- AlertDialog,
- AlertDialogBody,
- AlertDialogCloseButton,
- AlertDialogContent,
- AlertDialogFooter,
- AlertDialogHeader,
- AlertDialogOverlay,
- Box,
- Button,
- ButtonProps,
- ScaleFade,
- useDisclosure,
-} from "@chakra-ui/react"
-
-import { FeedbackGlyphIcon } from "@/components/icons"
-import Text from "@/components/OldText"
-
-import { trackCustomEvent } from "@/lib/utils/matomo"
-
-import { DEFAULT_LOCALE } from "@/lib/constants"
-
-import { useSurvey } from "@/hooks/useSurvey"
-
-type FixedDotProps = ButtonProps & {
- bottomOffset: number
- isExpanded: boolean
-}
-const FixedDot = ({
- children,
- bottomOffset,
- isExpanded,
- ...props
-}: FixedDotProps) => {
- const { t } = useTranslation("common")
- const size = "3rem"
- return (
-
- )
-}
-
-const FeedbackWidget = () => {
- const { t } = useTranslation("common")
- const { asPath, locale } = useRouter()
- const { isOpen, onOpen, onClose } = useDisclosure()
- const cancelRef = useRef(null)
- const [isExpanded, setIsExpanded] = useState(false)
- const [feedbackSubmitted, setFeedbackSubmitted] = useState(false)
-
- useEffect(() => {
- // Reset component state when path (asPath) changes
- onClose()
- setFeedbackSubmitted(false)
- setIsExpanded(false)
-
- let expandTimeout = setTimeout(() => setIsExpanded(true), 30_000)
-
- return () => clearTimeout(expandTimeout)
- }, [asPath, onClose])
-
- const surveyUrl = useSurvey(feedbackSubmitted)
-
- const bottomOffset = useMemo(() => {
- const pathsWithBottomNav = ["/staking/", "/dao/", "/defi/", "/nft/"]
- const CONDITIONAL_OFFSET = 6.75
- let offset = 0
- pathsWithBottomNav.forEach((path) => {
- if (asPath.includes(path)) {
- offset = CONDITIONAL_OFFSET
- }
- })
- return offset
- }, [asPath])
-
- const handleClose = (): void => {
- onClose()
- trackCustomEvent({
- eventCategory: `FeedbackWidget toggled`,
- eventAction: `Clicked`,
- eventName: `Closed feedback widget`,
- })
- }
-
- const handleOpen = (): void => {
- onOpen()
- setIsExpanded(false)
- trackCustomEvent({
- eventCategory: `FeedbackWidget toggled`,
- eventAction: `Clicked`,
- eventName: `Opened feedback widget`,
- })
- }
-
- const handleSubmit = (choice: boolean): void => {
- trackCustomEvent({
- eventCategory: `Page is helpful feedback`,
- eventAction: `Clicked`,
- eventName: String(choice),
- })
- setFeedbackSubmitted(true)
- }
- const handleSurveyOpen = (): void => {
- trackCustomEvent({
- eventCategory: `Feedback survey opened`,
- eventAction: `Clicked`,
- eventName: "Feedback survey opened",
- })
- window && surveyUrl && window.open(surveyUrl, "_blank")
- onClose() // Close widget without triggering redundant tracker event
- setIsExpanded(false)
- }
-
- // Display on English pages only
- if (locale !== DEFAULT_LOCALE) return null
-
- return (
- <>
-
-
-
- {isExpanded && (
-
-
- {t("feedback-widget-prompt")}
-
-
- )}
-
-
-
-
-
-
-
-
-
-
- {feedbackSubmitted
- ? t("feedback-widget-thank-you-title")
- : t("feedback-widget-prompt")}
-
-
- {/* Body: */}
- {feedbackSubmitted && (
- <>
-
- {t("feedback-widget-thank-you-subtitle")}
-
-
- {t("feedback-widget-thank-you-timing")}
-
- >
- )}
-
-
- {feedbackSubmitted ? (
-
- ) : (
- <>
-
-
- >
- )}
-
-
-
-
-
- >
- )
-}
-
-export default FeedbackWidget
diff --git a/src/components/FeedbackWidget/FeedbackWidget.stories.tsx b/src/components/FeedbackWidget/FeedbackWidget.stories.tsx
new file mode 100644
index 00000000000..273fcd627bf
--- /dev/null
+++ b/src/components/FeedbackWidget/FeedbackWidget.stories.tsx
@@ -0,0 +1,28 @@
+import * as React from "react"
+import { Box, Stack } from "@chakra-ui/react"
+import { Meta, StoryObj } from "@storybook/react"
+
+import FeedbackWidgetComponent from "./"
+
+type FeedbackWidgetType = typeof FeedbackWidgetComponent
+
+const meta = {
+ title: "FeedbackWidget",
+ parameters: {
+ layout: "fullscreen",
+ },
+ decorators: [
+ (Story) => (
+
+
+
+
+ ),
+ ],
+} satisfies Meta
+
+export default meta
+
+export const FeedbackWidget: StoryObj = {
+ render: () => ,
+}
diff --git a/src/components/FeedbackWidget/FixedDot.tsx b/src/components/FeedbackWidget/FixedDot.tsx
new file mode 100644
index 00000000000..a9a9a8d0a63
--- /dev/null
+++ b/src/components/FeedbackWidget/FixedDot.tsx
@@ -0,0 +1,60 @@
+import { useTranslation } from "next-i18next"
+import { Button, ButtonProps, ScaleFade, Text } from "@chakra-ui/react"
+
+import { FeedbackGlyphIcon } from "../icons"
+
+type FixedDotProps = ButtonProps & {
+ bottomOffset: number
+ isExpanded: boolean
+}
+const FixedDot = ({ bottomOffset, isExpanded, ...props }: FixedDotProps) => {
+ const { t } = useTranslation("common")
+ const size = "12"
+ return (
+ }
+ iconSpacing={{ base: 0, lg: "3" }}
+ sx={{
+ ".chakra-button__icon": {
+ me: !isExpanded ? 0 : undefined,
+ },
+ }}
+ {...props}
+ >
+
+
+ {t("feedback-widget-prompt")}
+
+
+
+ )
+}
+
+export default FixedDot
diff --git a/src/components/FeedbackWidget/index.tsx b/src/components/FeedbackWidget/index.tsx
new file mode 100644
index 00000000000..060581a57a3
--- /dev/null
+++ b/src/components/FeedbackWidget/index.tsx
@@ -0,0 +1,136 @@
+import { useTranslation } from "next-i18next"
+import {
+ AlertDialog,
+ AlertDialogBody,
+ AlertDialogCloseButton,
+ AlertDialogContent,
+ AlertDialogFooter,
+ AlertDialogHeader,
+ AlertDialogOverlay,
+ Box,
+ Button,
+} from "@chakra-ui/react"
+
+import FixedDot from "./FixedDot"
+import { useFeedbackWidget } from "./useFeedbackWidget"
+
+const FeedbackWidget = () => {
+ const { t } = useTranslation("common")
+ const {
+ bottomOffset,
+ cancelRef,
+ feedbackSubmitted,
+ getButtonProps,
+ handleClose,
+ handleOpen,
+ handleSubmit,
+ handleSurveyOpen,
+ isExpanded,
+ isOpen,
+ } = useFeedbackWidget()
+ return (
+ <>
+
+
+
+
+
+
+
+
+
+ {feedbackSubmitted
+ ? t("feedback-widget-thank-you-title")
+ : t("feedback-widget-prompt")}
+
+
+ {/* Body: */}
+ {feedbackSubmitted && (
+ <>
+
+ {t("feedback-widget-thank-you-subtitle")}
+
+
+ {t("feedback-widget-thank-you-timing")}
+
+ >
+ )}
+
+
+ {feedbackSubmitted ? (
+
+ ) : (
+ <>
+
+
+ >
+ )}
+
+
+
+
+
+ >
+ )
+}
+
+export default FeedbackWidget
diff --git a/src/components/FeedbackWidget/useFeedbackWidget.ts b/src/components/FeedbackWidget/useFeedbackWidget.ts
new file mode 100644
index 00000000000..a32efcafb67
--- /dev/null
+++ b/src/components/FeedbackWidget/useFeedbackWidget.ts
@@ -0,0 +1,94 @@
+import { useEffect, useMemo, useRef, useState } from "react"
+import { useRouter } from "next/router"
+import { useDisclosure } from "@chakra-ui/react"
+
+import { trackCustomEvent } from "@/lib/utils/matomo"
+
+import { useSurvey } from "@/hooks/useSurvey"
+
+export const useFeedbackWidget = () => {
+ const { asPath } = useRouter()
+
+ const [isExpanded, setIsExpanded] = useState(false)
+ const [feedbackSubmitted, setFeedbackSubmitted] = useState(false)
+
+ const { getButtonProps, isOpen, onClose, onOpen } = useDisclosure()
+
+ const cancelRef = useRef(null)
+
+ useEffect(() => {
+ // Reset component state when path (asPath) changes
+ onClose()
+ setFeedbackSubmitted(false)
+ setIsExpanded(false)
+
+ let expandTimeout = setTimeout(() => setIsExpanded(true), 30_000)
+
+ return () => clearTimeout(expandTimeout)
+ }, [asPath, onClose])
+
+ const surveyUrl = useSurvey(feedbackSubmitted)
+
+ const bottomOffset = useMemo(() => {
+ const pathsWithBottomNav = ["/staking", "/dao", "/defi", "/nft"]
+ const CONDITIONAL_OFFSET = 6.75
+ let offset = 0
+ pathsWithBottomNav.forEach((path) => {
+ if (asPath.includes(path)) {
+ offset = CONDITIONAL_OFFSET
+ }
+ })
+ return offset
+ }, [asPath])
+
+ const handleClose = (): void => {
+ onClose()
+ trackCustomEvent({
+ eventCategory: `FeedbackWidget toggled`,
+ eventAction: `Clicked`,
+ eventName: `Closed feedback widget`,
+ })
+ }
+
+ const handleOpen = (): void => {
+ onOpen()
+ setIsExpanded(false)
+ trackCustomEvent({
+ eventCategory: `FeedbackWidget toggled`,
+ eventAction: `Clicked`,
+ eventName: `Opened feedback widget`,
+ })
+ }
+
+ const handleSubmit = (choice: boolean): void => {
+ trackCustomEvent({
+ eventCategory: `Page is helpful feedback`,
+ eventAction: `Clicked`,
+ eventName: String(choice),
+ })
+ setFeedbackSubmitted(true)
+ }
+ const handleSurveyOpen = (): void => {
+ trackCustomEvent({
+ eventCategory: `Feedback survey opened`,
+ eventAction: `Clicked`,
+ eventName: "Feedback survey opened",
+ })
+ window && surveyUrl && window.open(surveyUrl, "_blank")
+ onClose() // Close widget without triggering redundant tracker event
+ setIsExpanded(false)
+ }
+
+ return {
+ bottomOffset,
+ cancelRef,
+ feedbackSubmitted,
+ getButtonProps,
+ handleClose,
+ handleOpen,
+ handleSubmit,
+ handleSurveyOpen,
+ isExpanded,
+ isOpen,
+ }
+}
diff --git a/src/components/FileContributors.tsx b/src/components/FileContributors.tsx
index 0d6dff23f33..9b842dec3bd 100644
--- a/src/components/FileContributors.tsx
+++ b/src/components/FileContributors.tsx
@@ -60,7 +60,7 @@ const Contributor = ({ contributor }: { contributor: Author }) => {
me={2}
/>
{contributor.user && (
-
+
@{contributor.user.login}
)}
@@ -146,8 +146,8 @@ const FileContributors = ({
:{" "}
- {lastContributor.user && (
-
+ {lastContributor.user?.url && (
+
@{lastContributor.user.login}
)}
diff --git a/src/components/FindWallet/LanguageSupportFilter.tsx b/src/components/FindWallet/LanguageSupportFilter.tsx
new file mode 100644
index 00000000000..aee8eaa17f7
--- /dev/null
+++ b/src/components/FindWallet/LanguageSupportFilter.tsx
@@ -0,0 +1,150 @@
+import { ReactNode, useContext } from "react"
+import { useRouter } from "next/router"
+import { useTranslation } from "next-i18next"
+import {
+ AccordionButton,
+ AccordionIcon,
+ AccordionItem,
+ AccordionPanel,
+ Box,
+ Heading,
+ List,
+ Text,
+} from "@chakra-ui/react"
+
+import Select from "@/components/Select"
+
+import { getLanguageCodeName } from "@/lib/utils/intl"
+import { trackCustomEvent } from "@/lib/utils/matomo"
+import {
+ getAllWalletsLanguages,
+ getWalletsTopLanguages,
+} from "@/lib/utils/wallets"
+
+import { WalletSupportedLanguageContext } from "@/contexts/WalletSupportedLanguageContext"
+
+export const LanguageSupportFilter = () => {
+ const { t } = useTranslation("page-wallets-find-wallet")
+ const { locale } = useRouter()
+
+ // Context API
+ const { supportedLanguage, setSupportedLanguage } = useContext(
+ WalletSupportedLanguageContext
+ )
+
+ const allWalletsLanguages = getAllWalletsLanguages(locale!)
+ const allWalletsLanguagesOptions = allWalletsLanguages!.map(
+ ({ langCode, langName }) => {
+ return {
+ label: langName,
+ value: langCode,
+ }
+ }
+ )
+
+ const handleLanguageFilterSelectChange = (selectedLanguage) => {
+ if (!selectedLanguage) return
+
+ setSupportedLanguage(selectedLanguage.value)
+
+ trackCustomEvent({
+ eventCategory: "WalletFilterSidebar",
+ eventAction: `Language search`,
+ eventName: getLanguageCodeName(selectedLanguage.value, locale!),
+ })
+ }
+
+ const handleTopLanguageClick = (languageCode: string) => {
+ setSupportedLanguage(languageCode)
+
+ trackCustomEvent({
+ eventCategory: "WalletFilterSidebar",
+ eventAction: `Language search`,
+ eventName: getLanguageCodeName(languageCode, locale!),
+ })
+ }
+
+ return (
+
+ {({ isExpanded }) => (
+ <>
+
+
+
+ {t("page-find-wallet-languages-supported")}
+
+
+
+
+
+
+
+
+
+
+
+ {t("page-find-wallet-popular-languages")}
+
+
+ {getWalletsTopLanguages(5, locale!)
+ .map((language) => {
+ return (
+ handleTopLanguageClick(language.code)}
+ >
+ {language.langName}
+
+ )
+ })
+ // `.reduce()` used to generate the comma separator between languages
+ .reduce((prev, curr) => [prev, ", ", curr])}
+
+
+ >
+ )}
+
+ )
+}
diff --git a/src/components/FindWallet/MobileFiltersButton.tsx b/src/components/FindWallet/MobileFiltersButton.tsx
new file mode 100644
index 00000000000..d1bd2ffa72c
--- /dev/null
+++ b/src/components/FindWallet/MobileFiltersButton.tsx
@@ -0,0 +1,87 @@
+import { useContext } from "react"
+import { useTranslation } from "next-i18next"
+import { Box, Text } from "@chakra-ui/react"
+
+import { WalletFilter } from "@/lib/types"
+
+import { Button } from "@/components/Buttons"
+
+import { trackCustomEvent } from "@/lib/utils/matomo"
+import { walletsListingCount } from "@/lib/utils/wallets"
+
+import { DEFAULT_LOCALE, NAV_BAR_PX_HEIGHT } from "@/lib/constants"
+
+import { FilterBurgerIcon } from "../icons/wallets"
+
+import { WalletSupportedLanguageContext } from "@/contexts/WalletSupportedLanguageContext"
+
+interface MobileFiltersButtonProps {
+ filters: WalletFilter
+ showMobileSidebar: boolean
+ onOpen: () => void
+ onClose: () => void
+}
+
+export const MobileFiltersButton = ({
+ filters,
+ showMobileSidebar,
+ onOpen,
+ onClose,
+}: MobileFiltersButtonProps) => {
+ const { t } = useTranslation("page-wallets-find-wallet")
+
+ // Context API
+ const { supportedLanguage } = useContext(WalletSupportedLanguageContext)
+
+ const handleClick = () => {
+ showMobileSidebar ? onClose() : onOpen()
+
+ trackCustomEvent({
+ eventCategory: "MobileFilterToggle",
+ eventAction: `Tap MobileFilterToggle`,
+ eventName: `show mobile filters ${!showMobileSidebar}`,
+ })
+ }
+
+ return (
+
+ }
+ variant="outline"
+ border="none"
+ ps={0}
+ ms={4}
+ gap={4}
+ sx={{
+ svg: {
+ boxSize: 8,
+ line: { stroke: "primary.base" },
+ circle: { stroke: "primary.base" },
+ },
+ }}
+ onClick={handleClick}
+ >
+
+ {t("page-find-wallet-filters")}
+
+ {walletsListingCount(filters) +
+ (supportedLanguage === DEFAULT_LOCALE ? 0 : 1)}{" "}
+ {t("page-find-wallet-active")}
+
+
+
+
+ )
+}
diff --git a/src/components/FindWallet/MobileFiltersMenu.tsx b/src/components/FindWallet/MobileFiltersMenu.tsx
new file mode 100644
index 00000000000..1d57425b7af
--- /dev/null
+++ b/src/components/FindWallet/MobileFiltersMenu.tsx
@@ -0,0 +1,138 @@
+import { useTranslation } from "next-i18next"
+import {
+ Box,
+ Drawer,
+ DrawerBody,
+ DrawerCloseButton,
+ DrawerContent,
+ DrawerHeader,
+ DrawerOverlay,
+ Flex,
+} from "@chakra-ui/react"
+
+import { Button } from "@/components/Buttons"
+
+import walletData from "@/data/wallets/wallet-data"
+
+import OldHeading from "../OldHeading"
+
+import { MobileFiltersButton } from "./MobileFiltersButton"
+import { ResetFiltersButton } from "./ResetFiltersButton"
+import WalletFilterPersona from "./WalletFilterPersona"
+import WalletFilterSidebar, {
+ WalletFilterSidebarProps,
+} from "./WalletFilterSidebar"
+
+import { useWalletTable } from "@/hooks/useWalletTable"
+
+type MobileFiltersMenuProps = WalletFilterSidebarProps & {
+ showMobileSidebar: boolean
+ onOpen: () => void
+ onClose: () => void
+}
+
+export const MobileFiltersMenu = ({
+ filters,
+ resetWalletFilter,
+ resetFilters,
+ updateFilterOption,
+ updateFilterOptions,
+ selectedPersona,
+ setFilters,
+ setSelectedPersona,
+ showMobileSidebar,
+ onOpen,
+ onClose,
+}: MobileFiltersMenuProps) => {
+ const { t } = useTranslation("page-wallets-find-wallet")
+ const { filteredWallets } = useWalletTable({ filters, t, walletData })
+
+ return (
+ <>
+
+
+
+
+
+
+
+
+
+ {/* Wallet Personas */}
+
+
+ {t("page-find-wallet-personas-title")}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ >
+ )
+}
diff --git a/src/components/FindWallet/ResetFiltersButton.tsx b/src/components/FindWallet/ResetFiltersButton.tsx
new file mode 100644
index 00000000000..8a389765dec
--- /dev/null
+++ b/src/components/FindWallet/ResetFiltersButton.tsx
@@ -0,0 +1,46 @@
+import { useTranslation } from "next-i18next"
+import { BsArrowCounterclockwise } from "react-icons/bs"
+import { Center, Icon, Text } from "@chakra-ui/react"
+
+import { trackCustomEvent } from "@/lib/utils/matomo"
+
+type ResetFiltersProps = {
+ resetFilters: () => void
+ resetWalletFilter: React.MutableRefObject<() => void>
+}
+
+export const ResetFiltersButton = ({
+ resetFilters,
+ resetWalletFilter,
+}: ResetFiltersProps) => {
+ const { t } = useTranslation("page-wallets-find-wallet")
+
+ const handleResetClick = () => {
+ resetFilters()
+ resetWalletFilter.current()
+
+ trackCustomEvent({
+ eventCategory: "WalletFilterSidebar",
+ eventAction: `Reset button`,
+ eventName: `reset_click`,
+ })
+ }
+
+ return (
+
)
@@ -32,22 +32,29 @@ export const GridItem = ({ metric }: GridItemProps) => {
const value = hasError ? (
) : (
-
-
+
+
{state.value}{" "}
+
+
-
+
+
+
-
+
)
// Returns either 90 or 30-day data range depending on `range` selection
@@ -149,15 +156,16 @@ export const GridItem = ({ metric }: GridItemProps) => {
{chart}
)}
-
+
{value}
diff --git a/src/components/TableOfContents/index.tsx b/src/components/TableOfContents/index.tsx
index b19c43cbed7..93ef59abda3 100644
--- a/src/components/TableOfContents/index.tsx
+++ b/src/components/TableOfContents/index.tsx
@@ -71,7 +71,7 @@ const TableOfContents = ({
hideBelow={lgBp}
as="aside"
position="sticky"
- top="7.25rem" // Account for navbar
+ top="19" // Account for navbar
p={4}
pe={0}
maxW="25%"
diff --git a/src/components/Tooltip.tsx b/src/components/Tooltip.tsx
deleted file mode 100644
index d6571c85ab3..00000000000
--- a/src/components/Tooltip.tsx
+++ /dev/null
@@ -1,121 +0,0 @@
-import React, { ReactNode, useState } from "react"
-import { AnimatePresence, motion } from "framer-motion"
-import { Box, useColorModeValue, useToken } from "@chakra-ui/react"
-
-import { isMobile as isMobileCheck } from "../lib/utils/isMobile"
-
-export type TooltipProps = {
- content: ReactNode
- children?: React.ReactNode
-}
-
-// TODO add `position` prop
-const Tooltip = ({ content, children }: TooltipProps) => {
- const [isVisible, setIsVisible] = useState(false)
- const isMobile = isMobileCheck()
- const shadow = useColorModeValue("tableBox.light", "tableBox.dark")
- const borderColor = useToken("colors", "primary.lowContrast")
-
- return (
- <>
- {isVisible && isMobile && (
- // Invisible full screen div "below" the clickable link
- // Added so clicking away anywhere will hide Tooltip
- setIsVisible(false)}
- />
- )}
- setIsVisible(true) : undefined}
- onMouseLeave={!isMobile ? () => setIsVisible(false) : undefined}
- onClick={isMobile ? () => setIsVisible(!isVisible) : undefined}
- >
- {children}
- {isVisible && (
-
-
- {/* This box is used as an area to keep the tooltip open when transitioning from the children content into the tooltip box content */}
-
-
- {content}
-
-
- )}
-
- >
- )
-}
-
-export default Tooltip
diff --git a/src/components/Tooltip/Tooltip.stories.tsx b/src/components/Tooltip/Tooltip.stories.tsx
new file mode 100644
index 00000000000..e0b95a5c677
--- /dev/null
+++ b/src/components/Tooltip/Tooltip.stories.tsx
@@ -0,0 +1,51 @@
+import * as React from "react"
+import { RiInformationLine } from "react-icons/ri"
+import { Box, HStack } from "@chakra-ui/react"
+import { Meta, StoryObj } from "@storybook/react"
+
+import InlineLink from "../Link"
+import Translation from "../Translation"
+
+// TODO: remove `index` when we delete the old tooltip
+import TooltipComponent from "./index"
+
+type TooltipType = typeof TooltipComponent
+
+const TooltipContent = () => (
+
+ {" "}
+ defillama
+
+)
+
+const meta = {
+ title: "Molecules / Overlay Content / Tooltip",
+ component: TooltipComponent,
+ args: {
+ content: ,
+ children: (
+
+
+
+ ),
+ },
+} satisfies Meta
+
+export default meta
+
+type Story = StoryObj
+
+export const Tooltip: Story = {
+ render: (args) => (
+
+
+
+ ),
+}
+
+// for chromatic visual testing
+export const AlwaysOpen: Story = {
+ args: {
+ isOpen: true,
+ },
+}
diff --git a/src/components/Tooltip/index.tsx b/src/components/Tooltip/index.tsx
new file mode 100644
index 00000000000..a7abb3bb6ca
--- /dev/null
+++ b/src/components/Tooltip/index.tsx
@@ -0,0 +1,67 @@
+import React, { ReactNode, useEffect } from "react"
+import {
+ Popover,
+ PopoverArrow,
+ PopoverBody,
+ PopoverContent,
+ PopoverProps,
+ PopoverTrigger,
+ useDisclosure,
+} from "@chakra-ui/react"
+
+import { isMobile } from "@/lib/utils/isMobile"
+
+export interface IProps extends PopoverProps {
+ content: ReactNode
+ children?: ReactNode
+}
+
+const Tooltip: React.FC = ({ content, children, ...rest }) => {
+ const { isOpen, onOpen, onClose } = useDisclosure()
+
+ // Close the popover when the user scrolls.
+ // This is useful for mobile devices where the popover is open by clicking the
+ // trigger, not hovering.
+ useEffect(() => {
+ let originalPosition = 0
+
+ const handleScroll = () => {
+ const delta = window.scrollY - originalPosition
+
+ // Close the popover if the user scrolls more than 80px
+ if (isOpen && Math.abs(delta) > 80) {
+ onClose()
+ }
+ }
+
+ // Add event listener when the popover is open
+ if (isOpen) {
+ window.addEventListener("scroll", handleScroll)
+ originalPosition = window.scrollY
+ }
+
+ return () => {
+ window.removeEventListener("scroll", handleScroll)
+ }
+ }, [isOpen, onClose])
+
+ return (
+
+ {children}
+
+
+ {content}
+
+
+ )
+}
+
+export default Tooltip
diff --git a/src/components/MdLink.tsx b/src/components/TooltipLink.tsx
similarity index 79%
rename from src/components/MdLink.tsx
rename to src/components/TooltipLink.tsx
index be9b5130459..837244a3e63 100644
--- a/src/components/MdLink.tsx
+++ b/src/components/TooltipLink.tsx
@@ -4,8 +4,8 @@ import GlossaryTooltip from "./Glossary/GlossaryTooltip"
import InlineLink from "./Link"
interface Props {
- href: string
- children: ReactNode
+ href?: string
+ children?: ReactNode
}
/**
@@ -18,9 +18,14 @@ interface Props {
* inside of our MD files. The native link syntax has a better UX with Crowdin
* translations.
*/
-function MdLink(props: Props) {
+function TooltipLink(props: Props) {
+ const { href } = props
+ if (!href) {
+ return
+ }
+
const regex = new RegExp(/\/glossary\/#(.+)/)
- const matches = props.href.match(regex)
+ const matches = href.match(regex)
// get the `termKey` from the `href`
// e.g. in `/glossary/#new-term` => "new-term" is the `termKey`
@@ -33,4 +38,4 @@ function MdLink(props: Props) {
return
}
-export default MdLink
+export default TooltipLink
diff --git a/src/components/Translation.tsx b/src/components/Translation.tsx
index af6c47f6202..626f26a7051 100644
--- a/src/components/Translation.tsx
+++ b/src/components/Translation.tsx
@@ -1,26 +1,27 @@
-import htmr from "htmr"
+import htmr, { type HtmrOptions } from "htmr"
import type { TOptions } from "i18next"
import { useRouter } from "next/router"
import { useTranslation } from "next-i18next"
import { getRequiredNamespacesForPage } from "@/lib/utils/translations"
-import InlineLink from "./Link"
+import TooltipLink from "./TooltipLink"
type TranslationProps = {
id: string
options?: TOptions
+ transform?: HtmrOptions["transform"]
}
// Custom components mapping to be used by `htmr` when parsing the translation
// text
-const transform = {
- a: InlineLink,
+const defaultTransform = {
+ a: TooltipLink,
}
// Renders the translation string for the given translation key `id`. It
// fallback to English if it doesn't find the given key in the current language
-const Translation = ({ id, options }: TranslationProps) => {
+const Translation = ({ id, options, transform = {} }: TranslationProps) => {
const { asPath } = useRouter()
const requiredNamespaces = getRequiredNamespacesForPage(asPath)
@@ -28,8 +29,9 @@ const Translation = ({ id, options }: TranslationProps) => {
const translatedText = t(id, options)
// Use `htmr` to parse html content in the translation text
- // @ts-ignore
- return htmr(translatedText, { transform })
+ return htmr(translatedText, {
+ transform: { ...defaultTransform, ...transform },
+ })
}
export default Translation
diff --git a/src/components/TranslationBanner.tsx b/src/components/TranslationBanner.tsx
index 1a621627b95..ff7f5b8e182 100644
--- a/src/components/TranslationBanner.tsx
+++ b/src/components/TranslationBanner.tsx
@@ -96,7 +96,9 @@ const TranslationBanner = ({
{t("translation-banner-button-translate-page")}
- {!isPageContentEnglish && (
+ {/* Todo: Reimplement once fixed */}
+ {/* Issue: https://github.com/ethereum/ethereum-org-website/issues/12292 */}
+ {/* {!isPageContentEnglish && (
- )}
+ )} */}
-
+
{frontmatter.source}
diff --git a/src/components/UpcomingEventsList.tsx b/src/components/UpcomingEventsList.tsx
index 4eae5079e20..08a7f9e00bc 100644
--- a/src/components/UpcomingEventsList.tsx
+++ b/src/components/UpcomingEventsList.tsx
@@ -11,7 +11,7 @@ import InlineLink from "@/components/Link"
import { trackCustomEvent } from "@/lib/utils/matomo"
-import communityConferences from "@/data/community-events"
+import communityEvents from "@/data/community-events.json"
type OrderedUpcomingEvent = CommunityConference & {
date: string
@@ -37,7 +37,7 @@ const UpcomingEventsList = () => {
}
useEffect(() => {
- const eventsList: CommunityConference[] = [...communityConferences]
+ const eventsList = communityEvents as CommunityConference[]
const yesterday = new Date()
yesterday.setDate(yesterday.getDate() - 1)
@@ -86,7 +86,7 @@ const UpcomingEventsList = () => {
return (
{t("page-community-upcoming-events-no-events")}{" "}
-
+
{t("page-community-please-add-to-page")}
diff --git a/src/components/UpgradeBannerNotification.tsx b/src/components/UpgradeBannerNotification.tsx
index 77e00c3b32e..8320ac37c2d 100644
--- a/src/components/UpgradeBannerNotification.tsx
+++ b/src/components/UpgradeBannerNotification.tsx
@@ -1,4 +1,3 @@
-import React from "react"
import { Box } from "@chakra-ui/react"
import BannerNotification from "./BannerNotification"
@@ -13,7 +12,7 @@ const UpgradeBannerNotification = () => (
We've deprecated our use of 'Eth1' and 'Eth2'
terms.
{" "}
-
+
Read the full announcement
diff --git a/src/components/UpgradeTableOfContents.tsx b/src/components/UpgradeTableOfContents.tsx
index 08cb6121fe3..cdc37e629c0 100644
--- a/src/components/UpgradeTableOfContents.tsx
+++ b/src/components/UpgradeTableOfContents.tsx
@@ -28,7 +28,7 @@ const TableOfContentsLink = ({
position="relative"
display="inline-block"
// `li :last-child` global selector wants to override this without `!important`
- mb="1rem !important"
+ mb="md !important"
textDecoration="none"
color="body.medium"
fontWeight="normal"
diff --git a/src/components/VideoIframe/index.tsx b/src/components/VideoIframe/index.tsx
new file mode 100644
index 00000000000..67ae22fa17b
--- /dev/null
+++ b/src/components/VideoIframe/index.tsx
@@ -0,0 +1,31 @@
+import { Box } from "@chakra-ui/react"
+
+type VideoIframeProps = {
+ src: string
+ title?: string
+}
+
+const VideoIframe = ({ src, title }: VideoIframeProps) => {
+ return (
+
+
+
+
+
+ )
+}
+
+export default VideoIframe
diff --git a/src/components/icons/EthereumIcon.tsx b/src/components/icons/EthereumIcon.tsx
new file mode 100644
index 00000000000..af51f4545df
--- /dev/null
+++ b/src/components/icons/EthereumIcon.tsx
@@ -0,0 +1,17 @@
+import { Icon, type IconProps } from "@chakra-ui/react"
+
+export const EthereumIcon = (props: IconProps) => (
+
+
+
+)
diff --git a/src/components/icons/Icons.stories.tsx b/src/components/icons/Icons.stories.tsx
index 97461938b6f..35fddac286e 100644
--- a/src/components/icons/Icons.stories.tsx
+++ b/src/components/icons/Icons.stories.tsx
@@ -70,11 +70,9 @@ import {
BuyCryptoIcon,
ConnectDappsIcon,
DesktopIcon,
- EIP1559Icon,
ENSSupportIcon,
ERC20SupportIcon,
FilterBurgerIcon,
- FrameIcon,
GasFeeCustomizationIcon,
HardwareIcon,
HardwareSupportIcon,
@@ -88,7 +86,6 @@ import {
SocialRecoverIcon,
StakingIcon,
SwapIcon,
- WalletConnectIcon,
WithdrawCryptoIcon,
} from "./wallets"
@@ -154,11 +151,9 @@ const iconsDefinitions = [
BuyCryptoIcon,
ConnectDappsIcon,
DesktopIcon,
- EIP1559Icon,
ENSSupportIcon,
ERC20SupportIcon,
FilterBurgerIcon,
- FrameIcon,
GasFeeCustomizationIcon,
HardwareIcon,
HardwareSupportIcon,
@@ -172,7 +167,6 @@ const iconsDefinitions = [
SocialRecoverIcon,
StakingIcon,
SwapIcon,
- WalletConnectIcon,
WithdrawCryptoIcon,
EthHomeIcon,
FeedbackGlyphIcon,
diff --git a/src/components/icons/staking/EverstakeGlyphIcon.tsx b/src/components/icons/staking/EverstakeGlyphIcon.tsx
new file mode 100644
index 00000000000..0677c26408f
--- /dev/null
+++ b/src/components/icons/staking/EverstakeGlyphIcon.tsx
@@ -0,0 +1,14 @@
+import { createIcon } from "@chakra-ui/react"
+
+export const EverstakeGlyphIcon = createIcon({
+ displayName: "EverstakeGlyphIcon",
+ viewBox: "0 0 32 32",
+ defaultProps: {
+ width: "32px",
+ height: "32px",
+ fill: "currentColor",
+ },
+ path: (
+
+ ),
+})
diff --git a/src/components/icons/staking/index.ts b/src/components/icons/staking/index.ts
index 232706eaf7f..d2e49374a7c 100644
--- a/src/components/icons/staking/index.ts
+++ b/src/components/icons/staking/index.ts
@@ -13,6 +13,7 @@ export * from "./DefaultOpenSourceGlyphIcon"
export * from "./DockerGlyphIcon"
export * from "./EconomicalIcon"
export * from "./EthpoolGlyphIcon"
+export * from "./EverstakeGlyphIcon"
export * from "./GreenCheckProductGlyphIcon"
export * from "./KilnGlyphIcon"
export * from "./LaunchnodesGlyphIcon"
diff --git a/src/components/icons/wallets/DevicesIcon.tsx b/src/components/icons/wallets/DevicesIcon.tsx
new file mode 100644
index 00000000000..b7800d978da
--- /dev/null
+++ b/src/components/icons/wallets/DevicesIcon.tsx
@@ -0,0 +1,21 @@
+/* eslint-disable react/jsx-key */
+import * as React from "react"
+import { createIcon } from "@chakra-ui/react"
+
+import { commonIconDefaultProps } from "../utils"
+
+export const DevicesIcon = createIcon({
+ displayName: "DevicesIcon",
+ viewBox: "0 0 24 25",
+ defaultProps: {
+ width: "24px",
+ height: "25px",
+ ...commonIconDefaultProps,
+ },
+ path: [
+
+
+
+ ,
+ ],
+})
diff --git a/src/components/icons/wallets/EIP1559Icon.tsx b/src/components/icons/wallets/EIP1559Icon.tsx
deleted file mode 100644
index 7c4ed0a8003..00000000000
--- a/src/components/icons/wallets/EIP1559Icon.tsx
+++ /dev/null
@@ -1,20 +0,0 @@
-/* eslint-disable react/jsx-key */
-import * as React from "react"
-import { createIcon } from "@chakra-ui/react"
-
-import { commonIconDefaultProps } from "../utils"
-
-export const EIP1559Icon = createIcon({
- displayName: "EIP1559Icon",
- viewBox: "0 0 256 256",
- defaultProps: {
- width: "256px",
- height: "256px",
- ...commonIconDefaultProps,
- },
- path: [
- ,
- ,
- ,
- ],
-})
diff --git a/src/components/icons/wallets/FrameIcon.tsx b/src/components/icons/wallets/FrameIcon.tsx
deleted file mode 100644
index f1ae4615b64..00000000000
--- a/src/components/icons/wallets/FrameIcon.tsx
+++ /dev/null
@@ -1,10 +0,0 @@
-import { createIcon } from "@chakra-ui/react"
-
-export const FrameIcon = createIcon({
- displayName: "FrameIcon",
- viewBox: "0 0 153.4 152.9",
- defaultProps: {
- fill: "rgb(235, 237, 252)",
- },
- d: "M145.1,75.6v-58c0-5.1-4.2-9.3-9.3-9.3h0H77.7c-0.6,0-1.1-0.2-1.6-0.6l-7-7c-0.4-0.4-1-0.7-1.6-0.7H9.3 C4.2,0,0,4.1,0,9.3c0,0,0,0,0,0l0,0v58c0,0.6,0.2,1.1,0.6,1.6l7,7c0.4,0.4,0.7,1,0.7,1.6v58c0,5.1,4.2,9.3,9.3,9.3c0,0,0,0,0,0h58.2 c0.6,0,1.1,0.2,1.6,0.6l7,7c0.4,0.4,1,0.6,1.6,0.6h58.2c5.1,0,9.3-4.1,9.3-9.3c0,0,0,0,0,0l0,0v-58c0-0.6-0.2-1.1-0.6-1.6l-7-7 C145.4,76.7,145.1,76.2,145.1,75.6z M105.6,106.6H47.9c-0.7,0-1.3-0.6-1.3-1.3V47.7c0-0.7,0.6-1.3,1.3-1.3h57.7 c0.7,0,1.3,0.6,1.3,1.3v57.6C107,106,106.4,106.6,105.6,106.6z",
-})
diff --git a/src/components/icons/wallets/LanguagesIcon.tsx b/src/components/icons/wallets/LanguagesIcon.tsx
new file mode 100644
index 00000000000..ecd18e56b07
--- /dev/null
+++ b/src/components/icons/wallets/LanguagesIcon.tsx
@@ -0,0 +1,21 @@
+/* eslint-disable react/jsx-key */
+import * as React from "react"
+import { createIcon } from "@chakra-ui/react"
+
+import { commonIconDefaultProps } from "../utils"
+
+export const LanguagesIcon = createIcon({
+ displayName: "LanguagesIcon",
+ viewBox: "0 0 24 25",
+ defaultProps: {
+ width: "24px",
+ height: "25px",
+ ...commonIconDefaultProps,
+ },
+ path: [
+ ,
+ ],
+})
diff --git a/src/components/icons/wallets/WalletConnectIcon.tsx b/src/components/icons/wallets/WalletConnectIcon.tsx
deleted file mode 100644
index e61c3412829..00000000000
--- a/src/components/icons/wallets/WalletConnectIcon.tsx
+++ /dev/null
@@ -1,14 +0,0 @@
-import { createIcon } from "@chakra-ui/react"
-
-import { commonIconDefaultProps } from "../utils"
-
-export const WalletConnectIcon = createIcon({
- displayName: "WalletConnectIcon",
- viewBox: "0 0 256 256",
- defaultProps: {
- width: "256px",
- height: "256px",
- ...commonIconDefaultProps,
- },
- d: "M65.6055 78.9859C100.341 44.338 156.659 44.338 191.395 78.9859L195.575 83.1558C197.312 84.8882 197.312 87.697 195.575 89.4293L181.275 103.694C180.406 104.56 178.998 104.56 178.13 103.694L172.377 97.9555C148.144 73.7843 108.856 73.7843 84.6233 97.9555L78.4624 104.101C77.594 104.967 76.1861 104.967 75.3177 104.101L61.017 89.8363C59.2803 88.1039 59.2803 85.2951 61.017 83.5627L65.6055 78.9859ZM220.97 108.486L233.697 121.182C235.434 122.914 235.434 125.723 233.697 127.455L176.308 184.701C174.571 186.433 171.755 186.433 170.018 184.701C170.018 184.701 170.018 184.701 170.018 184.701L129.287 144.072C128.852 143.639 128.148 143.639 127.714 144.072V144.072C127.714 144.072 127.714 144.072 127.714 144.072L86.9834 184.701C85.2466 186.433 82.4307 186.433 80.6939 184.701C80.6939 184.701 80.6939 184.701 80.6939 184.701L23.3026 127.455C21.5658 125.722 21.5658 122.913 23.3026 121.181L36.0302 108.486C37.767 106.753 40.5829 106.753 42.3197 108.486L83.052 149.115C83.4862 149.548 84.1901 149.548 84.6243 149.115C84.6243 149.115 84.6244 149.115 84.6244 149.115L125.355 108.486C127.091 106.753 129.907 106.753 131.644 108.485C131.644 108.485 131.644 108.485 131.644 108.486L172.376 149.115C172.811 149.548 173.515 149.548 173.949 149.115L214.68 108.486C216.417 106.754 219.233 106.754 220.97 108.486Z",
-})
diff --git a/src/components/icons/wallets/index.ts b/src/components/icons/wallets/index.ts
index c893c8bb578..b47a53c7a38 100644
--- a/src/components/icons/wallets/index.ts
+++ b/src/components/icons/wallets/index.ts
@@ -2,14 +2,14 @@ import { BrowserIcon } from "./BrowserIcon"
import { BuyCryptoIcon } from "./BuyCryptoIcon"
import { ConnectDappsIcon } from "./ConnectDappsIcon"
import { DesktopIcon } from "./DesktopIcon"
-import { EIP1559Icon } from "./EIP1559Icon"
+import { DevicesIcon } from "./DevicesIcon"
import { ENSSupportIcon } from "./ENSSupportIcon"
import { ERC20SupportIcon } from "./ERC20SupportIcon"
import { FilterBurgerIcon } from "./FilterBurgerIcon"
-import { FrameIcon } from "./FrameIcon"
import { GasFeeCustomizationIcon } from "./GasFeeCustomizationIcon"
import { HardwareIcon } from "./HardwareIcon"
import { HardwareSupportIcon } from "./HardwareSupportIcon"
+import { LanguagesIcon } from "./LanguagesIcon"
import { Layer2Icon } from "./Layer2Icon"
import { MobileIcon } from "./MobileIcon"
import { MultisigIcon } from "./MultisigIcon"
@@ -20,7 +20,6 @@ import { RPCImportingIcon } from "./RPCImportingIcon"
import { SocialRecoverIcon } from "./SocialRecoverIcon"
import { StakingIcon } from "./StakingIcon"
import { SwapIcon } from "./SwapIcon"
-import { WalletConnectIcon } from "./WalletConnectIcon"
import { WithdrawCryptoIcon } from "./WithdrawCryptoIcon"
export {
@@ -28,14 +27,14 @@ export {
BuyCryptoIcon,
ConnectDappsIcon,
DesktopIcon,
- EIP1559Icon,
+ DevicesIcon,
ENSSupportIcon,
ERC20SupportIcon,
FilterBurgerIcon,
- FrameIcon,
GasFeeCustomizationIcon,
HardwareIcon,
HardwareSupportIcon,
+ LanguagesIcon,
Layer2Icon,
MobileIcon,
MultisigIcon,
@@ -46,6 +45,5 @@ export {
SocialRecoverIcon,
StakingIcon,
SwapIcon,
- WalletConnectIcon,
WithdrawCryptoIcon,
}
diff --git a/src/contexts/WalletSupportedLanguageContext.tsx b/src/contexts/WalletSupportedLanguageContext.tsx
new file mode 100644
index 00000000000..520a05488f8
--- /dev/null
+++ b/src/contexts/WalletSupportedLanguageContext.tsx
@@ -0,0 +1,12 @@
+import { createContext } from "react"
+
+import { WalletSupportedLanguageContextType } from "@/lib/types"
+
+import { DEFAULT_LOCALE } from "@/lib/constants"
+
+// Context API for /find-wallets language support filter
+export const WalletSupportedLanguageContext =
+ createContext({
+ supportedLanguage: DEFAULT_LOCALE,
+ setSupportedLanguage: () => {},
+ })
diff --git a/src/data/NetworkUpgradeSummaryData.ts b/src/data/NetworkUpgradeSummaryData.ts
index 7b6a4578b82..7e9bb46a68a 100644
--- a/src/data/NetworkUpgradeSummaryData.ts
+++ b/src/data/NetworkUpgradeSummaryData.ts
@@ -1,32 +1,21 @@
-interface NetworkUpgradeProps {
- dateTimeAsString: string
- ethPriceInUSD: number
- waybackLink: string
- blockNumber?: number
- epochNumber?: number
- slotNumber?: number
-}
-
-export interface NetworkUpgradeSummaryDataProps {
- [key: string]: NetworkUpgradeProps
-}
+import type { NetworkUpgradeData } from "@/lib/types"
-const NetworkUpgradeSummaryData: NetworkUpgradeSummaryDataProps = {
- shanghai: {
- dateTimeAsString: "2023-04-12T22:27:35.000Z",
- ethPriceInUSD: 1917,
+const NetworkUpgradeSummaryData: NetworkUpgradeData = {
+ dencun: {
+ dateTimeAsString: "2024-03-13T13:55:35.000Z",
+ ethPriceInUSD: 3984,
waybackLink:
- "https://web.archive.org/web/20230411044526/https://ethereum.org/en/",
- blockNumber: 17034870,
- epochNumber: undefined,
- slotNumber: undefined,
+ "https://web.archive.org/web/20240312070259/https://ethereum.org/en/",
+ blockNumber: 19426587,
+ epochNumber: 269568,
+ slotNumber: 269568 * 32,
},
- capella: {
+ shapella: {
dateTimeAsString: "2023-04-12T22:27:35.000Z",
ethPriceInUSD: 1917,
waybackLink:
"https://web.archive.org/web/20230411044526/https://ethereum.org/en/",
- blockNumber: undefined,
+ blockNumber: 17034870,
epochNumber: 194048,
slotNumber: 6209536,
},
diff --git a/src/data/community-events.json b/src/data/community-events.json
new file mode 100644
index 00000000000..93729a23278
--- /dev/null
+++ b/src/data/community-events.json
@@ -0,0 +1,548 @@
+[
+ {
+ "title": "ETH Cinco de Mayo",
+ "startDate": "2024-02-02",
+ "endDate": "2024-02-04",
+ "to": "https://ethcincodemayo.com/",
+ "location": "Cholula, Puebla",
+ "description": "A perfect combination of competition, workshops, networking, entrepreneurship and culture!",
+ "imageUrl": "https://ETHCincoDeMayo.com/assets/images/og-918.jpg"
+ },
+ {
+ "title": "Circuit Breaker",
+ "to": "https://ethglobal.com/events/circuitbreaker",
+ "location": "Remote",
+ "description": "It's finally the time to do a dedicated event all about Zero Knowledge Proofs. Build, learn, and understand how to write ZK Circuits at Circuit Breaker and play a role in making ZK Tooling better. Join us for the month of Feb to do everything ZK.",
+ "startDate": "2024-2-2",
+ "endDate": "2024-2-21"
+ },
+ {
+ "title": "ETH Lima Day",
+ "startDate": "2024-02-03",
+ "endDate": "2024-02-03",
+ "to": "https://ethlima.org",
+ "location": "Lima, PE",
+ "description": "In Ethereum Lima, we are united by the will to create a community that can take advantage of the opportunities of the technological revolution that comes with blockchain, and particularly with Ethereum."
+ },
+ {
+ "title": "NFT Paris",
+ "startDate": "2024-02-23",
+ "endDate": "2024-02-24",
+ "to": "https://nftparis.xyz",
+ "location": "Paris, FR",
+ "description": "Where Finance, Gaming, Art, Fashion, Sport , Media converge to celebrate the era of digital assets."
+ },
+ {
+ "title": "ETHDenver",
+ "startDate": "2024-02-23",
+ "endDate": "2024-03-03",
+ "to": "https://ethdenver.com",
+ "location": "Denver, CO, USA",
+ "description": "ETHDenver celebrates the convergence of blockchain, culture, and education. Located in the heart of Denver, Colorado, ETHDenver is the premiere destination for #BUIDLing the decentralized future.."
+ },
+ {
+ "title": "Pragma Denver",
+ "to": "https://ethglobal.com/events/pragma-denver",
+ "location": "Denver, Colorado",
+ "description": "Our first IRL event of the year will be our One Day Founders Only Pragma conference in Denver just before the big weekend. We're excited to show you our new format for how we believe amazing content focused web3 summits should be executed!",
+ "startDate": "2024-2-28",
+ "endDate": "2024-2-28",
+ "imageUrl": "https://storage.googleapis.com/ethglobal-api-production/event%2Ff5188%2Fimages%2F1707852837903_pragma-denver-og.jpg"
+ },
+ {
+ "title": "ETH Latam",
+ "startDate": "2024-03-13",
+ "endDate": "2024-03-14",
+ "to": "https://ethlatam.org/#/honduras",
+ "location": "San Pedro Sula, HN",
+ "description": "ETH Latam brings together the global community of creators and educators with the most vibrant crypto communities in the world, who use Ethereum protocols and technology in their daily lives, providing real solutions to real problems.",
+ "imageUrl": "https://raw.githubusercontent.com/ethlatam/website/master/public/twitter-card.png"
+ },
+ {
+ "title": "Pragma London",
+ "to": "https://ethglobal.com/events/pragma-london",
+ "location": "London, United Kingdom",
+ "description": "Pragma is a one-day, single-track, in-person summit hosted by ETHGlobal. With a focus on intimacy, Pragma serves as a hub for high-quality talks and as a forum of discussion for builders and leaders from Ethereum ecosystem and beyond. Join us on Pi Day in London to catchup on all things pushing this ecosystem forward",
+ "startDate": "2024-3-14",
+ "endDate": "2024-3-14",
+ "imageUrl": "https://storage.googleapis.com/ethglobal-api-production/event/ujg37/images/1710175563047_pragma_london_twitter.png"
+ },
+ {
+ "title": "ETHGlobal London",
+ "to": "https://ethglobal.com/events/london2024",
+ "location": "London, United Kingdom",
+ "description": "ETHGlobal London is going to be an event full of hacking, networking, side events and fun activities. We are excited to be back in London for our inaugural event of 2024, marking our first return since 2020.",
+ "startDate": "2024-3-15",
+ "endDate": "2024-3-17",
+ "imageUrl": "https://ethglobal.com/og.png"
+ },
+ {
+ "title": "ETH Canal",
+ "startDate": "2024-03-19",
+ "endDate": "2024-03-21",
+ "to": "https://ethcanal.xyz",
+ "location": "Panama City, PA",
+ "description": "Experience three transformative where the Ethereum community gathers in Panama, to discuss blockchain innovation.",
+ "imageUrl": "http://static1.squarespace.com/static/655d268c638893672051146d/t/6565f31326915872624773d4/1701180179382/Color+logo+-+no+background.png?format=1500w"
+ },
+ {
+ "title": "ETHVietnam",
+ "startDate": "2024-03-16",
+ "endDate": "2024-03-17",
+ "to": "https://www.eth-vietnam.com/",
+ "location": "Hanoi, Vietnam",
+ "description": "ETH Community in SEA to #Build, #Learn and #Share together.",
+ "imageUrl": "http://static1.squarespace.com/static/629856e64f44db3799f8e3f6/t/65c04e1059e3477a33a1c105/1707101732532/COVER.png?format=1500w"
+ },
+ {
+ "title": "ETHTaipei",
+ "startDate": "2024-03-21",
+ "endDate": "2024-03-24",
+ "to": "https://ethtaipei.org",
+ "location": "Taipei, TW",
+ "description": "ETHTaipei presents an opportunity to learn about cutting-edge technology and applications about Ethereum, as well as to get involved with the local community in Taiwan.",
+ "imageUrl": "https://ethtaipei.org/images/ethtaipei-meta-image.jpg"
+ },
+ {
+ "title": "ETHSamba",
+ "to": "https://www.ethsamba.org/",
+ "location": "Rio de Janeiro, Brazil",
+ "description": "Bootcamp & Hackathon for builders in sunny Rio de Janeiro with the usual ETHSamba vibes",
+ "startDate": "2024-03-22",
+ "endDate": "2024-03-24",
+ "imageUrl": "https://framerusercontent.com/images/8aVlGCsHbkoS0juwXpKY258ik.png"
+ },
+ {
+ "title": "ETHBucharest",
+ "startDate": "2024-03-27",
+ "endDate": "2024-03-30",
+ "to": "https://ethbucharest.xyz",
+ "location": "Bucharest, ROU",
+ "description": "Eth Bucharest is not just an event; it's a movement empowering creativity, bold ideas, and meaningful connections in the heart of Eastern Europe.",
+ "imageUrl": "https://ethbucharest.xyz/images/og-image.png"
+ },
+ {
+ "title": "ETH Seoul",
+ "startDate": "2024-03-29",
+ "endDate": "2024-03-31",
+ "to": "https://ethseoul.org",
+ "location": "Seoul, KR",
+ "description": "ETH Seoul is a 3 day hackathon that takes place from March 29-31 in Neowiz building in Pangyo, South Korea"
+ },
+ {
+ "title": "DEFICON",
+ "startDate": "2024-03-30",
+ "endDate": "2024-03-30",
+ "to": "https://deficon.nyc",
+ "location": "New York, NYC, USA",
+ "description": "DeFiCon is a nonprofit conference with a mission to elevate the ethos of peer-to-peer crypto."
+ },
+ {
+ "title": "NFT NYC",
+ "startDate": "2024-04-03",
+ "endDate": "2024-04-05",
+ "to": "https://nft.nyc",
+ "location": "NYC, USA",
+ "description": "7th edition of the NFT.NYC",
+ "imageUrl": "https://510411.fs1.hubspotusercontent-na1.net/hubfs/510411/nftnyc2021-eventbrite-header.png#keepProtocol"
+ },
+ {
+ "title": "Ethereumzuri.ch 2024",
+ "to": "https://ethereumzuri.ch/",
+ "location": "Zurich, Switzerland",
+ "description": "Switzerland's largest Ethereum research and development-focused community conference and hackathon, with the goal of connecting academics, developers, researchers, and enthusiasts, and creating a space for collaboration and innovation.",
+ "startDate": "2024-04-05",
+ "endDate": "2024-04-07",
+ "imageUrl": "https://ethereumzuri.ch/Zu24_social.jpg"
+ },
+ {
+ "title": "Scaling Ethereum 2024",
+ "to": "https://ethglobal.com/events/scaling2024",
+ "location": "Remote",
+ "description": "Join us April as we bring back our community favorite — Scaling Ethereum. Strap in for three weeks of hacking and summits devoted to pushing the envelope and building the future L2 infrastructure of our ecosystem.",
+ "startDate": "2024-4-5",
+ "endDate": "2024-4-26"
+ },
+ {
+ "title": "ETHDam",
+ "to": "https://www.ethdam.com/",
+ "location": "Amsterdam, Netherlands",
+ "description": "Conference and hackathon gathering the best Privacy and Security builders",
+ "startDate": "2024-04-12",
+ "endDate": "2024-04-14",
+ "imageUrl": "https://static.wixstatic.com/media/9830df_811f95405189407a8d9a2a7a5a7715f6~mv2.png/v1/fill/w_1250,h_656,al_c/9830df_811f95405189407a8d9a2a7a5a7715f6~mv2.png"
+ },
+ {
+ "title": "Web3FC³",
+ "to": "https://www.web3fc.xyz/",
+ "location": "Barcelona, Spain",
+ "description": "A chain-agnostic conference for the grassroots community. An event by Web3 Family, running in-person meetups and conference in Barcelona.",
+ "startDate": "2024-04-17",
+ "endDate": "2024-04-19"
+ },
+ {
+ "title": "TOKEN2049",
+ "startDate": "2024-04-18",
+ "endDate": "2024-04-19",
+ "to": "https://token2049.com",
+ "location": "Dubai, UAE",
+ "description": "TOKEN2049 is organized annually in Dubai and Singapore, where founders and executives in the web3 industry share their view on the industry",
+ "imageUrl": "https://static.wixstatic.com/media/df5f7a_8ec2fa25938e484a8cc2dc11ef6ed2f7~mv2.png/v1/fill/w_2500,h_1352,al_c/df5f7a_8ec2fa25938e484a8cc2dc11ef6ed2f7~mv2.png"
+ },
+ {
+ "title": "ETHTallinn",
+ "startDate": "2024-04-19",
+ "endDate": "2024-04-21",
+ "to": "https://ethtallinn.org/",
+ "location": "Tallinn, EST",
+ "description": "ETHTallinn is an Ethereum community focused on pushing technologies to new limits within the DeFi, NFT, and web3 industry"
+ },
+ {
+ "title": "ETHDubai",
+ "startDate": "2024-04-19",
+ "endDate": "2024-04-21",
+ "to": "https://www.ethdubaiconf.org/",
+ "location": "Dubai, UAE",
+ "description": "The Ethereum dev conference and hackathon in Dubai on everything DeFi, privacy, EVM scaling, layers 2, Account Abstraction and more with a focus on decentralization and community projects. We also organize a Demo Pitch Day with VCs.",
+ "imageUrl": "https://www.ethdubaiconf.org/twitter-card2.jpg"
+ },
+ {
+ "title": "Pragma Sydney",
+ "to": "https://ethglobal.com/events/pragma-sydney",
+ "location": "Sydney, Australia",
+ "description": "Pragma is a one-day, single-track, in-person summit hosted by ETHGlobal. With a focus on intimacy, Pragma serves as a hub for high-quality talks and as a forum of discussion for builders and leaders from Ethereum ecosystem and beyond. Join us at our first event in Oceania and meet incredible founders helping shape this ecosystem.",
+ "startDate": "2024-5-2",
+ "endDate": "2024-5-2",
+ "imageUrl": "https://og.ethglobal.com/api/generic?text=Pragma%20Sydney"
+ },
+ {
+ "title": "ETHGlobal Sydney",
+ "to": "https://ethglobal.com/events/sydney",
+ "location": "Sydney, Australia",
+ "description": "ETHGlobal Sydney is going to be an event full of hacking, networking, side events and fun activities. This will be our inaugural event on the continent of Oceania-completing the global in ETHGlobal as the sixth and final continent in our world tour.",
+ "startDate": "2024-5-3",
+ "endDate": "2024-5-5",
+ "imageUrl": "https://ethglobal.com/og.png"
+ },
+ {
+ "title": "ETH Rio",
+ "startDate": "2024-05-13",
+ "endDate": "2024-05-15",
+ "to": "https://www.ethereumbrasil.com/",
+ "location": "Rio de Janeiro, Brazil",
+ "description": "3rd Edition of ETH Rio. ETH Rio 2024 will bring regulators, builders and businesses to discuss the future of the Brazilian Tokenized Economy based on EVM."
+ },
+ {
+ "title": "DappConn",
+ "startDate": "2024-05-21",
+ "endDate": "2024-05-23",
+ "to": "https://www.dappcon.io/",
+ "location": "Berlin, Germany",
+ "description": "A 3-day Developer Conference for Ethereum Infrastructure and dApps that would bring together over 900 builders together, hosted by Gnosis since 2018."
+ },
+ {
+ "title": "ETHBerlin04",
+ "to": "https://www.ethberlin.org",
+ "location": "Berlin, Germany",
+ "description": "ETHBerlin is a hackathon, a cultural festival, an educational event, a platform for hacktivism, and a community initiative to push the decentralized ecosystem forward.",
+ "startDate": "2024-05-24",
+ "endDate": "2024-05-26"
+ },
+ {
+ "title": "BlockSplit",
+ "startDate": "2024-05-27",
+ "endDate": "2024-05-30",
+ "to": "https://blocksplit.net",
+ "location": "Split, Croatia",
+ "description": "Web3 Conference in the heart of the Mediterranean."
+ },
+ {
+ "title": "Non Fungible Conference",
+ "startDate": "2024-05-28",
+ "endDate": "2024-05-30",
+ "to": "https://nonfungibleconference.com/",
+ "location": "Lisbon, PRT",
+ "description": "NFC is an experimental Web3 event that brings the global NFT community together"
+ },
+ {
+ "title": "Consensus2024",
+ "startDate": "2024-05-29",
+ "endDate": "2024-05-31",
+ "to": "https://coindesk.com/consensus/",
+ "location": "Austin, TX, USA",
+ "description": "Consensus 2024 is your chance to be a part of important conversation in crypto and Web3.",
+ "imageUrl": "https://consensus2024.coindesk.com/site/consensus2024/images/userfiles/site-defaults/C23_DRD_Metadata_1200x600_default.png"
+ },
+ {
+ "title": "ETHPrague",
+ "startDate": "2024-05-31",
+ "endDate": "2024-06-02",
+ "to": "https://ethprague.com",
+ "location": "Prague, CZ",
+ "description": "An event focused on the future of Ethereum and potential concepts or applications that don't yet exist",
+ "imageUrl": "https://ethprague.com/ETHPrague_soc_share-2024.jpg"
+ },
+ {
+ "title": "ETHDublin",
+ "startDate": "2024-05-31",
+ "endDate": "2024-06-02",
+ "to": "https://ethdublin.io",
+ "location": "Dublin, IRL",
+ "description": "ETHDublin brings together like-minded investors, builders and designers from all over the world to solve industry problems, harnessing the power of Web3",
+ "imageUrl": "https://i.ibb.co/G9N8QGP/banner.png"
+ },
+ {
+ "title": "ETH Belgrade",
+ "to": "https://ethbelgrade.rs/",
+ "location": "Belgrade, Serbia",
+ "description": "ETH Belgrade is a playground for exploring Ethereum possibilities. As part of Belgrade Blockchain Week, this three-day conference gathers extraordinary minds and Ethereum enthusiasts to share knowledge and spark ideas that will ignite the whole ecosystem.",
+ "startDate": "2024-06-03",
+ "endDate": "2024-06-05",
+ "imageUrl": "https://ethbelgrade.rs/eth-blegrade-og2.jpg"
+ },
+ {
+ "title": "Belgrade Blockchain Week",
+ "startDate": "2024-06-01",
+ "endDate": "2024-06-09",
+ "to": "https://belgradeblockchainweek.com/",
+ "location": "Belgrade, SRB",
+ "description": "Belgrade Blockchain Week is a week-long in-person gathering of the greatest Web3 minds and professionals. It features independent events organized by top-tier companies and communities throughout the week.",
+ "imageUrl": "https://belgradeblockchainweek.com/bgbw-og-image.jpg"
+ },
+ {
+ "title": "ETHKyiv",
+ "startDate": "2024-06-01",
+ "endDate": "2024-06-01",
+ "to": "https://ethkyiv.org",
+ "location": "Kyiv, UKR",
+ "description": "Through Hackathon, Conference, side events, discussions, collaborations, and vast networking, we aim to further establish Kyiv as an innovation and infrastructure development leader",
+ "imageUrl": "http://static1.squarespace.com/static/644799dcb1397a180a8c2d81/t/644a43c95c041a7353d4c070/1682588617556/Group+120.png?format=1500w"
+ },
+ {
+ "title": "EthCC",
+ "to": "https://ethcc.io",
+ "location": "Brussels, Belgium",
+ "description": "The Ethereum Community Conference (EthCC) is the largest annual European Ethereum event focused on technology and community. Four intense days of conferences, networking and learning.",
+ "startDate": "2024-7-08",
+ "endDate": "2024-7-11"
+ },
+ {
+ "title": "Pragma Brussels",
+ "to": "https://ethglobal.com/events/pragma-brussels",
+ "location": "Brussels, Belgium",
+ "description": "Pragma is a one-day, single-track, in-person summit hosted by ETHGlobal. With a focus on intimacy, Pragma serves as a hub for high-quality talks and as a forum of discussion for builders and leaders from Ethereum ecosystem and beyond.",
+ "startDate": "2024-7-11",
+ "endDate": "2024-7-11",
+ "imageUrl": "https://og.ethglobal.com/api/generic?text=Pragma%20Brussels"
+ },
+ {
+ "title": "ETHGlobal Brussels",
+ "to": "https://ethglobal.com/events/brussels",
+ "location": "Brussels, Belgium",
+ "description": "ETHGlobal Brussels is going to be an event full of hacking, networking, side events and fun activities. This marks our first event in Belgium and our 3rd hackathon alongside EthCC.",
+ "startDate": "2024-7-12",
+ "endDate": "2024-7-14",
+ "imageUrl": "https://ethglobal.com/og.png"
+ },
+ {
+ "title": "EDCON",
+ "startDate": "2024-07-26",
+ "endDate": "2024-07-30",
+ "to": "https://edcon.io/",
+ "location": "Tokyo, JPN",
+ "description": "EDCON is committed to serving the Ethereum ecosystem by boosting communication and engagement between Ethereum communities worldwide"
+ },
+ {
+ "title": "ETHOnline 2024",
+ "to": "https://ethglobal.com/events/ethonline2024",
+ "location": "Remote",
+ "description": "Our community favorite and flagship event is back once again. Join thousands of developers and creatives online next August for ETHOnline 2024!",
+ "startDate": "2024-8-23",
+ "endDate": "2024-9-13"
+ },
+ {
+ "title": "Web3 Lagos Conference",
+ "startDate": "2024-09-05",
+ "endDate": "2024-09-07",
+ "to": "https://event.web3bridge.com/",
+ "location": "Lagos, NGA",
+ "description": "This conference will bring together Web3 enthusiasts from all over Nigeria and beyond. Here, community meets technology for three days of intensive Networking and Learning experiences."
+ },
+ {
+ "title": "ETHSafari",
+ "startDate": "2024-09-09",
+ "endDate": "2024-09-15",
+ "to": "https://ethsafari.xyz/",
+ "location": "Nairobi & Kilifi, Kenya",
+ "description": "Welcome to the largest Ethereum event happening in Africa! Join the BlockTrain from Nairobi to celebrate an ETH-festival held underneath ancient Boabab trees in Kilifi."
+ },
+ {
+ "title": "TOKEN2049",
+ "startDate": "2024-09-18",
+ "endDate": "2024-09-19",
+ "to": "https://token2049.com",
+ "location": "Singapore, SG",
+ "description": "TOKEN2049 is organized annually in Dubai and Singapore, where founders and executives in the web3 industry share their view on the industry"
+ },
+ {
+ "title": "ETHGlobal Singapore",
+ "to": "https://ethglobal.com/events/singapore2024",
+ "location": "Singapore, Singapore",
+ "description": "ETHGlobal Singapore is going to be an event full of hacking, networking, side events and fun activities. We cannot wait to at long last return to Singapore. Since our last ETHSingapore in 2018, so much has changed.",
+ "startDate": "2024-9-20",
+ "endDate": "2024-9-22",
+ "imageUrl": "https://ethglobal.com/og.png"
+ },
+ {
+ "title": "Pragma San Francisco",
+ "to": "https://ethglobal.com/events/pragma-sanfrancisco",
+ "location": "San Francisco, California",
+ "description": "Pragma is a single-track, in-person summit hosted by ETHGlobal. With a focus on intimacy, Pragma serves as a hub for high-quality talks and as a forum of discussion for builders and leaders from Ethereum ecosystem and beyond. For the first time, we’re excited to introduce a multi-day format to cover an even wider range for all things happening in web3",
+ "startDate": "2024-10-15",
+ "endDate": "2024-10-17",
+ "imageUrl": "https://og.ethglobal.com/api/generic?text=Pragma%20San%20Francisco"
+ },
+ {
+ "title": "ETHSofia",
+ "to": "https://ethsofia.com",
+ "location": "Sofia, Bulgaria",
+ "description": "ETHSofia is a 3-day conference and hackathon event that brings together the Ethereum community in Bulgaria and beyond. It is a place for developers, researchers, and enthusiasts to come together and share knowledge and ideas.",
+ "startDate": "2024-10-17",
+ "endDate": "2024-10-19",
+ "imageUrl": "https://framerusercontent.com/images/OHGIdIaZVjWGAwpmJhN1z6Yuh5g.png"
+ },
+ {
+ "title": "ETHGlobal San Francisco",
+ "to": "https://ethglobal.com/events/sanfrancisco2024",
+ "location": "San Francisco, California",
+ "description": "ETHGlobal Singapore is going to be an event full of hacking, networking, side events and fun activities. In our third iteration of ETHGlobal San Francisco, we're going bigger than ever.",
+ "startDate": "2024-10-18",
+ "endDate": "2024-10-20",
+ "imageUrl": "https://ethglobal.com/og.png"
+ },
+ {
+ "title": "Devcon 7 - Southeast Asia",
+ "to": "https://devcon.org/",
+ "location": "Bangkok, Thailand",
+ "description": "Discover Ethereum and its community at Devcon, the conference for developers, thinkers, and makers and a place for learning, knowledge sharing, and fun.",
+ "startDate": "2024-11-12",
+ "endDate": "2024-11-15",
+ "imageUrl": "https://www.devcon.org/assets/images/dc7-og.png"
+ },
+ {
+ "title": "ETHGlobal Devcon 2024",
+ "to": "https://ethglobal.com/events/devcon2024",
+ "location": "TBD",
+ "description": "Whenever Devcon happens, we'll be running a large hackathon right alongside it. Don't miss the biggest web3 developer meetup of the year in South East Asia.",
+ "startDate": "TBD",
+ "endDate": "TBD"
+ },
+ {
+ "title": "ETHArgentina",
+ "startDate": "2024-03-01",
+ "endDate": "2024-03-02",
+ "to": "https://ethereumargentina.org/en",
+ "location": "Mendoza, ARG",
+ "description": "We are the annual meeting point to promote the use of Ethereum technology, foster technological innovation and facilitate discussion of successful use cases.",
+ "imageUrl": "https://landing-ethereum-argentina-g418ghtf9.vercel.app/images/opengraph-image-en.png"
+ },
+ {
+ "title": "ETHVolcano",
+ "startDate": "2024-03-09",
+ "endDate": "2024-03-09",
+ "to": "https://ethsalvador.org",
+ "location": "San Salvador, SLV",
+ "description": "",
+ "imageUrl": ""
+ },
+ {
+ "title": "ETHMumbai",
+ "startDate": "2024-03-29",
+ "endDate": "2024-03-31",
+ "to": "https://ethmumbai.in",
+ "location": "Mumbai, IND",
+ "description": "First ever Ethereum Hackathon in Mumbai. Build from Mumbai, for the world. 29-31 March 2024.",
+ "imageUrl": ""
+ },
+ {
+ "title": "ETH Gathering",
+ "startDate": "2024-04-25",
+ "endDate": "2024-04-26",
+ "to": "https://ethgathering.com",
+ "location": "Barcelona, SPA",
+ "description": "ETH Gathering Barcelona 2024",
+ "imageUrl": ""
+ },
+ {
+ "title": "ETHBratislava",
+ "startDate": "2024-05-10",
+ "endDate": "2024-05-11",
+ "to": "https://ethbratislava.com/",
+ "location": "Bratislava, Slovakia",
+ "description": "Join the 1st #ETH hackathon & conference in Bratislava empowering local communities & sustainability on Ethereum. Follow us for more updates 🔜",
+ "imageUrl": "https://framerusercontent.com/images/wx8uSNTYpgWtsrSN5A2dkD0F4.png"
+ },
+ {
+ "title": "ETHTokyo",
+ "startDate": "2024-08-23",
+ "endDate": "2024-08-26",
+ "to": "https://ethtokyo.com",
+ "location": "Tokyo, JPN",
+ "description": "ETHTokyo 2024 is a Ethereum hackathon & conference organized by Japanese Ethereum enthusiasts.",
+ "imageUrl": "https://www.ethtokyo.com/images/thumbnail.jpg"
+ },
+ {
+ "title": "ETHAccra",
+ "startDate": "2024-08-29",
+ "endDate": "2024-08-31",
+ "to": "https://ETHAccra.xyz",
+ "location": "Accra, Ghana",
+ "description": "",
+ "imageUrl": "http://pnl.fvr.mybluehost.me/wp-content/uploads/2024/03/eth_new_one-scaled-e1709730770140.jpg"
+ },
+ {
+ "title": "ETHWarsaw",
+ "startDate": "2024-09-04",
+ "endDate": "2024-09-08",
+ "to": "https://ethwarsaw.dev",
+ "location": "Warsaw, POL",
+ "description": "EthWarsaw 2024",
+ "imageUrl": ""
+ },
+ {
+ "title": "NapulETH",
+ "startDate": "2024-09-12",
+ "endDate": "2024-09-14",
+ "to": "https://napul.eth.limo",
+ "location": "Napoli, Italy",
+ "description": "The Biggest ETH Event in Southern Italy",
+ "imageUrl": ""
+ },
+ {
+ "title": "ETHRome Hackathon",
+ "startDate": "2024-10-04",
+ "endDate": "2024-10-06",
+ "to": "https://ethrome.org",
+ "location": "Rome, ITA",
+ "description": "The 1st International Web3 Hackathon in Italy focusing on Governance and Privacy-preserving technologies.",
+ "imageUrl": "https://ethrome.org/social-img01.png"
+ },
+ {
+ "title": "Permissionless III",
+ "startDate": "2024-10-09",
+ "endDate": "2024-10-11",
+ "to": "https://blockworks.co/event/permissionless-iii",
+ "location": "Salt Lake City, Utah, US",
+ "description": "Pack your bags, anon — we're heading west! Join us in the beautiful Salt Lake City for the third installment of Permissionless. Come for the alpha, stay for the fresh air. Permissionless III promises unforgettable panels, killer networking opportunities, and mountains of fun!",
+ "imageUrl": "https://blockworks.co/_next/image?url=https://blockworks-co.imgix.net/wp-content/uploads/2023/11/PMLS_Website_Banner_20240226a-1.png&w=1920&q=75&webp=false"
+ },
+ {
+ "title": "ETHGlobal Bangkok",
+ "startDate": "2024-11-15",
+ "endDate": "2024-11-17",
+ "to": "https://ethglobal.com/events/bangkok",
+ "location": "South East Asia",
+ "description": "Bringing developers onchain to build the future of the internet.",
+ "imageUrl": "https://ethglobal.com/og.png"
+ }
+]
diff --git a/src/data/community-events.ts b/src/data/community-events.ts
deleted file mode 100644
index 62443075058..00000000000
--- a/src/data/community-events.ts
+++ /dev/null
@@ -1,412 +0,0 @@
-import { CommunityConference } from "@/lib/types"
-
-const communityConferences: CommunityConference[] = [
- {
- title: "ETH Cinco de Mayo",
- startDate: "2024-02-02",
- endDate: "2024-02-04",
- to: "https://ethcincodemayo.com/",
- location: "Cholula, Puebla",
- description:
- "A perfect combination of competition, workshops, networking, entrepreneurship and culture!",
- },
- {
- title: "Circuit Breaker",
- to: "https://ethglobal.com/events/circuitbreaker",
- location: "Remote",
- description: "It’s finally the time to do a dedicated event all about Zero Knowledge Proofs. Build, learn, and understand how to write ZK Circuits at Circuit Breaker and play a role in making ZK Tooling better. Join us for the month of Feb to do everything ZK.",
- startDate: "2024-2-2",
- endDate: "2024-2-21"
- },
- {
- title: "ETH Lima Day",
- startDate: "2024-02-03",
- endDate: "2024-02-03",
- to: "https://ethlima.org",
- location: "Lima, PE",
- description: "In Ethereum Lima, we are united by the will to create a community that can take advantage of the opportunities of the technological revolution that comes with blockchain, and particularly with Ethereum.",
- },
- {
- title: "NFT Paris",
- startDate: "2024-02-23",
- endDate: "2024-02-24",
- to: "https://nftparis.xyz",
- location: "Paris, FR",
- description: "Where Finance, Gaming, Art, Fashion, Sport , Media converge to celebrate the era of digital assets.",
- },
- {
- title: "ETHDenver",
- startDate: "2024-02-23",
- endDate: "2024-03-03",
- to: "https://ethdenver.com",
- location: "Denver, CO, USA",
- description: "ETHDenver celebrates the convergence of blockchain, culture, and education. Located in the heart of Denver, Colorado, ETHDenver is the premiere destination for #BUIDLing the decentralized future..",
- },
- {
- title: "Pragma Denver",
- to: "https://ethglobal.com/events/pragma-denver",
- location: "Denver, Colorado",
- description: "Our first IRL event of the year will be our One Day Founders Only Pragma conference in Denver just before the big weekend. We’re excited to show you our new format for how we believe amazing content focused web3 summits should be executed!",
- startDate: "2024-2-28",
- endDate: "2024-2-28"
- },
- {
- title: "ETH Latam",
- startDate: "2024-03-13",
- endDate: "2024-03-14",
- to: "https://ethlatam.org/#/honduras",
- location: "San Pedro Sula, HN",
- description: "ETH Latam brings together the global community of creators and educators with the most vibrant crypto communities in the world, who use Ethereum protocols and technology in their daily lives, providing real solutions to real problems.",
- },
- {
- title: "Pragma London",
- to: "https://ethglobal.com/events/pragma-london",
- location: "London, United Kingdom",
- description: "Pragma is a one-day, single-track, in-person summit hosted by ETHGlobal. With a focus on intimacy, Pragma serves as a hub for high-quality talks and as a forum of discussion for builders and leaders from Ethereum ecosystem and beyond. Join us on Pi Day in London to catchup on all things pushing this ecosystem forward",
- startDate: "2024-3-14",
- endDate: "2024-3-14"
- },
- {
- title: "ETHGlobal London",
- to: "https://ethglobal.com/events/london2024",
- location: "London, United Kingdom",
- description: "ETHGlobal London is going to be an event full of hacking, networking, side events and fun activities. We are excited to be back in London for our inaugural event of 2024, marking our first return since 2020.",
- startDate: "2024-3-15",
- endDate: "2024-3-17"
- },
- {
- title: "ETH Canal",
- startDate: "2024-03-19",
- endDate: "2024-03-21",
- to: "https://ethcanal.xyz",
- location: "Panama City, PA",
- description: "Experience three transformative where the Ethereum community gathers in Panama, to discuss blockchain innovation.",
- },
- {
- title: "ETHVietnam",
- startDate: "2024-03-16",
- endDate: "2024-03-17",
- to: "https://www.eth-vietnam.com/",
- location: "Hanoi, Vietnam",
- description: "ETH Community in SEA to #Build, #Learn and #Share together.",
- },
- {
- title: "Ethereum Rio",
- startDate: "2024-03-19",
- endDate: "2024-03-24",
- to: "https://www.ethereumbrasil.com/",
- location: "Rio de Janeiro, Brazil",
- description:
- "3rd Edition of LATAM's most loved ETH event. Bootcamp, Buildathon & Conference",
- },
- {
- title: "ETHTaipei",
- startDate: "2024-03-21",
- endDate: "2024-03-24",
- to: "https://ethtaipei.org",
- location: "Taipei, TW",
- description: "ETHTaipei presents an opportunity to learn about cutting-edge technology and applications about Ethereum, as well as to get involved with the local community in Taiwan.",
- },
- {
- title: "ETHSamba",
- to: "https://www.ethsamba.org/",
- location: "Rio de Janeiro, Brazil",
- description: "Bootcamp & Hackathon for builders in sunny Rio de Janeiro with the usual ETHSamba vibes",
- startDate: "2024-03-22",
- endDate: "2024-03-24"
- },
- {
- title: "ETHBucharest",
- startDate: "2024-03-27",
- endDate: "2024-03-30",
- to: "https://ethbucharest.xyz",
- location: "Bucharest, ROU",
- description: "Eth Bucharest is not just an event; it’s a movement empowering creativity, bold ideas, and meaningful connections in the heart of Eastern Europe.",
- },
- {
- title: "ETH Seoul",
- startDate: "2024-03-29",
- endDate: "2024-03-31",
- to: "https://ethseoul.org",
- location: "Seoul, KR",
- description: "ETH Seoul is a 3 day hackathon that takes place from March 29-31 in Neowiz building in Pangyo, South Korea",
- },
- {
- title: "DEFICON",
- startDate: "2024-03-30",
- endDate: "2024-03-30",
- to: "https://deficon.nyc",
- location: "New York, NYC, USA",
- description: "DeFiCon is a nonprofit conference with a mission to elevate the ethos of peer-to-peer crypto.",
- },
- {
- title: "NFT NYC",
- startDate: "2024-04-03",
- endDate: "2024-04-05",
- to: "https://nft.nyc",
- location: "NYC, USA",
- description: "7th edition of the NFT.NYC",
- },
- {
- title: "Ethereumzuri.ch 2024",
- to: "https://ethereumzuri.ch/",
- location: "Zurich, Switzerland",
- description: "Switzerland's largest Ethereum research and development-focused community conference and hackathon, with the goal of connecting academics, developers, researchers, and enthusiasts, and creating a space for collaboration and innovation.",
- startDate: "2024-04-05",
- endDate: "2024-04-07"
- },
- {
- title: "Scaling Ethereum 2024",
- to: "https://ethglobal.com/events/scaling2024",
- location: "Remote",
- description: "Join us April as we bring back our community favorite — Scaling Ethereum. Strap in for three weeks of hacking and summits devoted to pushing the envelope and building the future L2 infrastructure of our ecosystem.",
- startDate: "2024-4-5",
- endDate: "2024-4-26"
- },
- {
- title: "ETHDam",
- to: "https://www.ethdam.com/",
- location: "Amsterdam, Netherlands",
- description: "Conference and hackathon gathering the best Privacy and Security builders",
- startDate: "2024-04-12",
- endDate: "2024-04-14"
- },
- {
- title: "Web3FC³",
- to: "https://www.web3fc.xyz/",
- location: "Barcelona, Spain",
- description: "A chain-agnostic conference for the grassroots community. An event by Web3 Family, running in-person meetups and conference in Barcelona.",
- "startDate": "2024-04-17",
- "endDate": "2024-04-19"
- },
- {
- title: "TOKEN2049",
- startDate: "2024-04-18",
- endDate: "2024-04-19",
- to: "https://token2049.com",
- location: "Dubai, UAE",
- description: "TOKEN2049 is organized annually in Dubai and Singapore, where founders and executives in the web3 industry share their view on the industry",
- },
- {
- title: "ETHTallinn",
- startDate: "2024-04-19",
- endDate: "2024-04-21",
- to: "https://ethtallinn.org/",
- location: "Tallinn, EST",
- description: "ETHTallinn is an Ethereum community focused on pushing technologies to new limits within the DeFi, NFT, and web3 industry",
- },
- {
- title: "ETHDubai",
- startDate: "2024-04-19",
- endDate: "2024-04-21",
- to: "https://www.ethdubaiconf.org/",
- location: "Dubai, UAE",
- description:
- "The Ethereum dev conference and hackathon in Dubai on everything DeFi, privacy, EVM scaling, layers 2, Account Abstraction and more with a focus on decentralization and community projects. We also organize a Demo Pitch Day with VCs.",
- },
- {
- title: "Pragma Sydney",
- to: "https://ethglobal.com/events/pragma-sydney",
- location: "Sydney, Australia",
- description: "Pragma is a one-day, single-track, in-person summit hosted by ETHGlobal. With a focus on intimacy, Pragma serves as a hub for high-quality talks and as a forum of discussion for builders and leaders from Ethereum ecosystem and beyond. Join us at our first event in Oceania and meet incredible founders helping shape this ecosystem.",
- startDate: "2024-5-2",
- endDate: "2024-5-2"
- },
- {
- title: "ETHGlobal Sydney",
- to: "https://ethglobal.com/events/sydney",
- location: "Sydney, Australia",
- description: "ETHGlobal Sydney is going to be an event full of hacking, networking, side events and fun activities. This will be our inaugural event on the continent of Oceania-completing the global in ETHGlobal as the sixth and final continent in our world tour.",
- startDate: "2024-5-3",
- endDate: "2024-5-5"
- },
- {
- title: "DappConn",
- startDate: "2024-05-21",
- endDate: "2024-05-23",
- to: "https://www.dappcon.io/",
- location: "Berlin, Germany",
- description:
- "A 3-day Developer Conference for Ethereum Infrastructure and dApps that would bring together over 900 builders together, hosted by Gnosis since 2018.",
- },
- {
- title: "ETHBerlin04",
- to: "https://www.ethberlin.org",
- location: "Berlin, Germany",
- description: "ETHBerlin is a hackathon, a cultural festival, an educational event, a platform for hacktivism, and a community initiative to push the decentralized ecosystem forward.",
- startDate: "2024-05-24",
- endDate: "2024-05-26"
- },
- {
- title: "BlockSplit",
- startDate: "2024-05-27",
- endDate: "2024-05-30",
- to: "https://blocksplit.net",
- location: "Split, Croatia",
- description: "Web3 Conference in the heart of the Mediterranean.",
- },
- {
- title: "Non Fungible Conference",
- startDate: "2024-05-28",
- endDate: "2024-05-30",
- to: "https://nonfungibleconference.com/",
- location: "Lisbon, PRT",
- description: "NFC is an experimental Web3 event that brings the global NFT community together",
- },
- {
- title: "Consensus2024",
- startDate: "2024-05-29",
- endDate: "2024-05-31",
- to: "https://coindesk.com/consensus/",
- location: "Austin, TX, USA",
- description: "Consensus 2024 is your chance to be a part of important conversation in crypto and Web3.",
- },
- {
- title: "ETHPrague",
- startDate: "2024-05-31",
- endDate: "2024-06-02",
- to: "https://ethprague.com",
- location: "Prague, CZ",
- description: "An event focused on the future of Ethereum and potential concepts or applications that don't yet exist",
- },
- {
- title: "ETHDublin",
- startDate: "2024-05-31",
- endDate: "2024-06-02",
- to: "https://ethdublin.io",
- location: "Dublin, IRL",
- description: "ETHDublin brings together like-minded investors, builders and designers from all over the world to solve industry problems, harnessing the power of Web3",
- },
- {
- title: "ETH Belgrade",
- to: "https://ethbelgrade.rs/",
- location: "Belgrade, Serbia",
- description: "ETH Belgrade is a playground for exploring Ethereum possibilities. As part of Belgrade Blockchain Week, this three-day conference gathers extraordinary minds and Ethereum enthusiasts to share knowledge and spark ideas that will ignite the whole ecosystem.",
- startDate: "2024-06-03",
- endDate: "2024-06-05"
- },
- {
- title: "Belgrade Blockchain Week",
- startDate: "2024-06-01",
- endDate: "2024-06-09",
- to: "https://belgradeblockchainweek.com/",
- location: "Belgrade, SRB",
- description: "Belgrade Blockchain Week is a week-long in-person gathering of the greatest Web3 minds and professionals. It features independent events organized by top-tier companies and communities throughout the week.",
- },
- {
- title: "ETHKyiv",
- startDate: "2024-06-01",
- endDate: "2024-06-01",
- to: "https://ethkyiv.org",
- location: "Kyiv, UKR",
- description: "Through Hackathon, Conference, side events, discussions, collaborations, and vast networking, we aim to further establish Kyiv as an innovation and infrastructure development leader",
- },
- {
- title: "EthCC",
- to: "https://ethcc.io",
- location: "Brussels, Belgium",
- description: "The Ethereum Community Conference (EthCC) is the largest annual European Ethereum event focused on technology and community. Four intense days of conferences, networking and learning.",
- startDate: "2024-7-08",
- endDate: "2024-7-11"
- },
- {
- title: "Pragma Brussels",
- to: "https://ethglobal.com/events/pragma-brussels",
- location: "Brussels, Belgium",
- description: "Pragma is a one-day, single-track, in-person summit hosted by ETHGlobal. With a focus on intimacy, Pragma serves as a hub for high-quality talks and as a forum of discussion for builders and leaders from Ethereum ecosystem and beyond.",
- startDate: "2024-7-11",
- endDate: "2024-7-11"
- },
- {
- title: "ETHGlobal Brussels",
- to: "https://ethglobal.com/events/brussels",
- location: "Brussels, Belgium",
- description: "ETHGlobal Brussels is going to be an event full of hacking, networking, side events and fun activities. This marks our first event in Belgium and our 3rd hackathon alongside EthCC.",
- startDate: "2024-7-12",
- endDate: "2024-7-14"
- },
- {
- title: "EDCON",
- startDate: "2024-07-26",
- endDate: "2024-07-30",
- to: "https://edcon.io/",
- location: "Tokyo, JPN",
- description: "EDCON is committed to serving the Ethereum ecosystem by boosting communication and engagement between Ethereum communities worldwide",
- },
- {
- title: "ETHOnline 2024",
- to: "https://ethglobal.com/events/ethonline2024",
- location: "Remote",
- description: "Our community favorite and flagship event is back once again. Join thousands of developers and creatives online next August for ETHOnline 2024!",
- startDate: "2024-8-23",
- endDate: "2024-9-13"
- },
- {
- title: "Web3 Lagos Conference",
- startDate: "2024-09-05",
- endDate: "2024-09-07",
- to: "https://event.web3bridge.com/",
- location: "Lagos, NGA",
- description: "This conference will bring together Web3 enthusiasts from all over Nigeria and beyond. Here, community meets technology for three days of intensive Networking and Learning experiences.",
- },
- {
- title: "ETHSafari",
- startDate: "2024-09-09",
- endDate: "2024-09-15",
- to: "https://ethsafari.xyz/",
- location: "Nairobi & Kilifi, Kenya",
- description:
- "Welcome to the largest Ethereum event happening in Africa! Join the BlockTrain from Nairobi to celebrate an ETH-festival held underneath ancient Boabab trees in Kilifi.",
- },
- {
- title: "TOKEN2049",
- startDate: "2024-09-18",
- endDate: "2024-09-19",
- to: "https://token2049.com",
- location: "Singapore, SG",
- description: "TOKEN2049 is organized annually in Dubai and Singapore, where founders and executives in the web3 industry share their view on the industry",
- },
- {
- title: "ETHGlobal Singapore",
- to: "https://ethglobal.com/events/singapore2024",
- location: "Singapore, Singapore",
- description: "ETHGlobal Singapore is going to be an event full of hacking, networking, side events and fun activities. We cannot wait to at long last return to Singapore. Since our last ETHSingapore in 2018, so much has changed.",
- startDate: "2024-9-20",
- endDate: "2024-9-22"
- },
- {
- title: "Pragma San Francisco",
- to: "https://ethglobal.com/events/pragma-sanfrancisco",
- location: "San Francisco, California",
- description: "Pragma is a single-track, in-person summit hosted by ETHGlobal. With a focus on intimacy, Pragma serves as a hub for high-quality talks and as a forum of discussion for builders and leaders from Ethereum ecosystem and beyond. For the first time, we’re excited to introduce a multi-day format to cover an even wider range for all things happening in web3",
- startDate: "2024-10-15",
- endDate: "2024-10-17"
- },
- {
- title: "ETHGlobal San Francisco",
- to: "https://ethglobal.com/events/sanfrancisco2024",
- location: "San Francisco, California",
- description: "ETHGlobal Singapore is going to be an event full of hacking, networking, side events and fun activities. In our third iteration of ETHGlobal San Francisco, we're going bigger than ever.",
- startDate: "2024-10-18",
- endDate: "2024-10-20"
- },
- {
- title: "Devcon 7 - Southeast Asia",
- to: "https://devcon.org/",
- location: "Bangkok, Thailand",
- description:
- "Discover Ethereum and its community at Devcon, the conference for developers, thinkers, and makers and a place for learning, knowledge sharing, and fun.",
- startDate: "2024-11-12",
- endDate: "2024-11-15",
- },
- {
- title: "ETHGlobal Devcon 2024",
- to: "https://ethglobal.com/events/devcon2024",
- location: "TBD",
- description: "Whenever Devcon happens, we’ll be running a large hackathon right alongside it. Don’t miss the biggest web3 developer meetup of the year in South East Asia.",
- startDate: "TBD",
- endDate: "TBD"
- },
-]
-
-export default communityConferences
diff --git a/src/data/community-meetups.json b/src/data/community-meetups.json
index fff5cc0f18d..293683c22a3 100644
--- a/src/data/community-meetups.json
+++ b/src/data/community-meetups.json
@@ -1,4 +1,10 @@
[
+ {
+ "title": "DC Onchain",
+ "emoji": ":us:",
+ "location": "Arlington, Virginia",
+ "link": "https://dc-onchain.com/"
+ },
{
"title": "Web3 Family",
"emoji": ":es:",
@@ -64,6 +70,36 @@
"emoji": ":co:",
"location": "Colombia",
"link": "https://www.meetup.com/ethereum-bogota"
+ },
+ {
+ "title": "Ethereum Eje Cafetero",
+ "emoji": ":co:",
+ "location": "Colombia",
+ "link": "https://www.meetup.com/ethereum-eje-cafetero"
+ },
+ {
+ "title": "Ethereum Medellin",
+ "emoji": ":co:",
+ "location": "Colombia",
+ "link": "https://www.meetup.com/ethereum-medellin"
+ },
+ {
+ "title": "Ethereum Caribe",
+ "emoji": ":co:",
+ "location": "Colombia",
+ "link": "https://www.meetup.com/ethereum-caribe"
+ },
+ {
+ "title": "Ethereum Cali",
+ "emoji": ":co:",
+ "location": "Colombia",
+ "link": "https://www.meetup.com/ethereumcali"
+ },
+ {
+ "title": "Ethereum Arauca",
+ "emoji": ":co:",
+ "location": "Colombia",
+ "link": "https://www.meetup.com/ethereum-arauca"
},
{
"title": "Bokky's Ethereum Workshop",
diff --git a/src/data/crowdin/combined-translators.json b/src/data/crowdin/combined-translators.json
index 42ed3dd27fe..f07d92ba828 100644
--- a/src/data/crowdin/combined-translators.json
+++ b/src/data/crowdin/combined-translators.json
@@ -154,14 +154,8 @@
{
"id": 15808721,
"username": "fahadanizi",
- "totalCosts": 1682.66,
+ "totalCosts": 438.34,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15808721/medium/a0fd95274585fea89c0735c63f60a0b1.png"
- },
- {
- "id": 15426594,
- "username": "imad1980",
- "totalCosts": 33.33,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15426594/medium/c584e5163eb6d5b7cf18520bf7231ba0.jpg"
}
]
},
@@ -636,7 +630,7 @@
{
"id": 15954257,
"username": "arifulone",
- "totalCosts": 1613.98,
+ "totalCosts": 1582.67,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15954257/medium/a836f4b9acb6585087ed674cb6b3b77e.jpg"
}
]
@@ -751,7 +745,7 @@
{
"id": 14643068,
"username": "egelizo",
- "totalCosts": 158.57,
+ "totalCosts": 151.5,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14643068/medium/f6f25b4f0e429a11e235ade8d866b314.jpeg"
}
]
@@ -1114,7 +1108,7 @@
{
"id": 15086733,
"username": "hedwika",
- "totalCosts": 1463.49,
+ "totalCosts": 1458.44,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15086733/medium/e58bffb1edb2cd4a9e2bbe7046a0d1e8.jpeg"
},
{
@@ -1275,7 +1269,7 @@
{
"id": 15118051,
"username": "dakotaaldama9414",
- "totalCosts": 120.19,
+ "totalCosts": 113.12,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15118051/medium/ab8290a28c6c892656b6e7bae5c292af.png"
},
{
@@ -1304,7 +1298,7 @@
{
"id": 15123193,
"username": "Coram_Deo",
- "totalCosts": 43.43,
+ "totalCosts": 38.38,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15123193/medium/b3211607cc43c707c0034f7502299d8d.jpeg"
},
{
@@ -1699,6 +1693,12 @@
"username": "Coram_Deo",
"totalCosts": 72.72,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15123193/medium/b3211607cc43c707c0034f7502299d8d.jpeg"
+ },
+ {
+ "id": 16191582,
+ "username": "Rise101",
+ "totalCosts": 15.15,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/16191582/medium/227a43e48b1efc223a413da42c733ab4_default.png"
}
]
},
@@ -1743,7 +1743,7 @@
{
"id": 15707609,
"username": "RvonRoit",
- "totalCosts": 1314.01,
+ "totalCosts": 1245.33,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15707609/medium/79e71a64e2766240d93e42ed8730852d_default.png"
},
{
@@ -2082,7 +2082,7 @@
{
"id": 15810863,
"username": "bitblondy",
- "totalCosts": 1455.41,
+ "totalCosts": 1454.4,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15810863/medium/36dab07f1a377151348d57285a7955f7_default.png"
},
{
@@ -2153,7 +2153,7 @@
{
"id": 15810863,
"username": "bitblondy",
- "totalCosts": 247.45,
+ "totalCosts": 197.96,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15810863/medium/36dab07f1a377151348d57285a7955f7_default.png"
},
{
@@ -2240,7 +2240,7 @@
{
"id": 15810863,
"username": "bitblondy",
- "totalCosts": 931.22,
+ "totalCosts": 769.62,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15810863/medium/36dab07f1a377151348d57285a7955f7_default.png"
},
{
@@ -2437,7 +2437,7 @@
{
"id": 15932515,
"username": "Astronaut828",
- "totalCosts": 3069.39,
+ "totalCosts": 3058.28,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15932515/medium/ff4f1f9efa429e626e53821ae26ecf21.png"
},
{
@@ -2903,7 +2903,7 @@
{
"id": 13959389,
"username": "inlak16",
- "totalCosts": 89.89,
+ "totalCosts": 79.79,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13959389/medium/8163669279ee4bd20f4b7db97f6000fa.png"
},
{
@@ -3613,39 +3613,15 @@
{
"id": 13959389,
"username": "inlak16",
- "totalCosts": 836.28,
+ "totalCosts": 448.44,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13959389/medium/8163669279ee4bd20f4b7db97f6000fa.png"
},
- {
- "id": 15116307,
- "username": "Gorm-the-Old",
- "totalCosts": 137.36,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15116307/medium/46b6a030b92eb4909c82bcc68026e4eb_default.png"
- },
- {
- "id": 15123193,
- "username": "Coram_Deo",
- "totalCosts": 129.28,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15123193/medium/b3211607cc43c707c0034f7502299d8d.jpeg"
- },
- {
- "id": 15778695,
- "username": "SeaRay",
- "totalCosts": 28.28,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15778695/medium/39882c72b2ccf81893116e4c5ba6a5e8_default.png"
- },
{
"id": 15545841,
"username": "bensaknikolas",
"totalCosts": 12.12,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15545841/medium/7977648904f48074f4e9fb6200e36a75.png"
},
- {
- "id": 15185884,
- "username": "carmen1912",
- "totalCosts": 9.09,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15185884/medium/0d349af8ba0364fdd96b55b46c40590c.jpg"
- },
{
"id": 15036511,
"username": "Turf_MAsk",
@@ -4075,7 +4051,7 @@
{
"id": 15123193,
"username": "Coram_Deo",
- "totalCosts": 3194.63,
+ "totalCosts": 3170.39,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15123193/medium/b3211607cc43c707c0034f7502299d8d.jpeg"
},
{
@@ -4412,7 +4388,7 @@
{
"id": 15471540,
"username": "KaptainBollo",
- "totalCosts": 40.4,
+ "totalCosts": 32.32,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15471540/medium/77d451813919ef4c15f0a698102f7f46.png"
},
{
@@ -4691,7 +4667,7 @@
{
"id": 15123193,
"username": "Coram_Deo",
- "totalCosts": 38.38,
+ "totalCosts": 14.14,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15123193/medium/b3211607cc43c707c0034f7502299d8d.jpeg"
}
]
@@ -4862,6 +4838,12 @@
"username": "RubenSilva",
"totalCosts": 6.06,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15947755/medium/cf9980cfafab6b7c43f6e16e1ca48324_default.png"
+ },
+ {
+ "id": 16266218,
+ "username": "Kero-i",
+ "totalCosts": 4.04,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/16266218/medium/dc3778227ab31689a3335b962427a8eb.jpeg"
}
]
},
@@ -4981,7 +4963,7 @@
{
"id": 15123193,
"username": "Coram_Deo",
- "totalCosts": 1796.79,
+ "totalCosts": 1112.01,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15123193/medium/b3211607cc43c707c0034f7502299d8d.jpeg"
},
{
@@ -5043,7 +5025,7 @@
{
"id": 15310784,
"username": "Sagitario",
- "totalCosts": 620.14,
+ "totalCosts": 598.93,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15310784/medium/cfdc53d28658b94b21e45d51acc457c7.jpg"
},
{
@@ -5066,13 +5048,13 @@
{
"id": 15947755,
"username": "RubenSilva",
- "totalCosts": 536.31,
+ "totalCosts": 416.12,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15947755/medium/cf9980cfafab6b7c43f6e16e1ca48324_default.png"
},
{
"id": 15810863,
"username": "bitblondy",
- "totalCosts": 130.29,
+ "totalCosts": 120.19,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15810863/medium/36dab07f1a377151348d57285a7955f7_default.png"
}
]
@@ -5111,7 +5093,7 @@
{
"id": 15421538,
"username": "johannt",
- "totalCosts": 1733.16,
+ "totalCosts": 1712.96,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15421538/medium/7e1f5d90509951072c0de0d9684baa35.png"
}
]
@@ -5201,7 +5183,7 @@
{
"id": 15932515,
"username": "Astronaut828",
- "totalCosts": 375.72,
+ "totalCosts": 237.35,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15932515/medium/ff4f1f9efa429e626e53821ae26ecf21.png"
}
]
@@ -5328,7 +5310,7 @@
{
"id": 15810863,
"username": "bitblondy",
- "totalCosts": 1062.52,
+ "totalCosts": 1050.4,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15810863/medium/36dab07f1a377151348d57285a7955f7_default.png"
},
{
@@ -5544,7 +5526,7 @@
{
"id": 14568334,
"username": "mr_giorgos",
- "totalCosts": 1671.55,
+ "totalCosts": 1666.5,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14568334/medium/245b5c69aab62ffabb575daf603b70b8.jpg"
}
]
@@ -5611,7 +5593,7 @@
{
"id": 14568334,
"username": "mr_giorgos",
- "totalCosts": 161.6,
+ "totalCosts": 157.56,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14568334/medium/245b5c69aab62ffabb575daf603b70b8.jpg"
}
]
@@ -5622,7 +5604,7 @@
{
"id": 14568334,
"username": "mr_giorgos",
- "totalCosts": 658.52,
+ "totalCosts": 657.51,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14568334/medium/245b5c69aab62ffabb575daf603b70b8.jpg"
}
]
@@ -5666,7 +5648,7 @@
{
"id": 14568334,
"username": "mr_giorgos",
- "totalCosts": 295.93,
+ "totalCosts": 312.09,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14568334/medium/245b5c69aab62ffabb575daf603b70b8.jpg"
},
{
@@ -5819,7 +5801,7 @@
{
"id": 14564238,
"username": "FreddyAndresParra",
- "totalCosts": 27.27,
+ "totalCosts": 25.25,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14564238/medium/e6feebc5a27754079a07907fffac8389.jpg"
},
{
@@ -5929,12 +5911,6 @@
"totalCosts": 6.06,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14564238/medium/e6feebc5a27754079a07907fffac8389.jpg"
},
- {
- "id": 16028920,
- "username": "paopastorelli",
- "totalCosts": 5.05,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/16028920/medium/e3049f379e035388449ee79ea5b75888.jpeg"
- },
{
"id": 15522923,
"username": "llucC",
@@ -6545,19 +6521,19 @@
{
"id": 14995487,
"username": "Gu1ll0t3",
- "totalCosts": 175.74,
+ "totalCosts": 152.51,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14995487/medium/f890d1e85e50d0289ca19930aae629d1.png"
},
{
"id": 15751029,
"username": "4ndr3s",
- "totalCosts": 130.29,
+ "totalCosts": 127.26,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15751029/medium/5c541b87c5cb9da1ec885228cb23d33b.png"
},
{
"id": 15741847,
"username": "aliensareghosts",
- "totalCosts": 129.28,
+ "totalCosts": 124.23,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15741847/medium/b6dfb039c39057b612dec75f75e5a800_default.png"
},
{
@@ -6746,7 +6722,7 @@
{
"id": 15584447,
"username": "CamoCat",
- "totalCosts": 300.98,
+ "totalCosts": 294.92,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15584447/medium/8f109b2c9ba255441f01effdd0c4341b.JPG"
},
{
@@ -7036,7 +7012,7 @@
{
"id": 14807238,
"username": "rom1919",
- "totalCosts": 15.15,
+ "totalCosts": 14.14,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14807238/medium/4e9d7e22b8ba45851bf0d10bf4bb2f68.jpeg"
},
{
@@ -7071,7 +7047,7 @@
{
"id": 15966607,
"username": "Hackedd.eth",
- "totalCosts": 261.59,
+ "totalCosts": 212.1,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15966607/medium/233013bfe6b35fd53264071d722f63f1.png"
},
{
@@ -7211,7 +7187,7 @@
{
"id": 15946267,
"username": "socopower",
- "totalCosts": 694.88,
+ "totalCosts": 623.17,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15946267/medium/094f1891b25266289c4aa5df7b08cfb7.jpg"
},
{
@@ -7946,7 +7922,7 @@
{
"id": 15429360,
"username": "davidgomezhernandez155",
- "totalCosts": 53.53,
+ "totalCosts": 45.45,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15429360/medium/ed757f2577b1e4993a142a5f60869cf8.jpeg"
},
{
@@ -8115,19 +8091,19 @@
{
"id": 15194310,
"username": "MGETH",
- "totalCosts": 3429.96,
+ "totalCosts": 3402.69,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15194310/medium/7729d9dbda8c9420c26f689b4a2b2918.jpg"
},
{
"id": 15435306,
"username": "ValeriaRaizman",
- "totalCosts": 426.22,
+ "totalCosts": 424.2,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15435306/medium/5e6284f116d89bd11b6dea3228531657.jpeg"
},
{
"id": 15418890,
"username": "Cypherpunkfish1",
- "totalCosts": 53.53,
+ "totalCosts": 51.51,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15418890/medium/e4ddbefa9793c099a4bd2b97bdd5f42b.jpg"
}
]
@@ -8179,7 +8155,7 @@
{
"id": 14755966,
"username": "RealGoye",
- "totalCosts": 69.69,
+ "totalCosts": 59.59,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14755966/medium/f5becfea2dd543f57f356dfb3e42487d_default.png"
},
{
@@ -8828,6 +8804,12 @@
"totalCosts": 159.58,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14995487/medium/f890d1e85e50d0289ca19930aae629d1.png"
},
+ {
+ "id": 15448050,
+ "username": "santi-gnzlz",
+ "totalCosts": 91.91,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15448050/medium/b795cd3e997f1157bb866ef1a077fef2.png"
+ },
{
"id": 15946267,
"username": "socopower",
@@ -9468,62 +9450,38 @@
{
"id": 14755966,
"username": "RealGoye",
- "totalCosts": 521.16,
+ "totalCosts": 344.41,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14755966/medium/f5becfea2dd543f57f356dfb3e42487d_default.png"
},
{
"id": 14794760,
"username": "ignv",
- "totalCosts": 252.5,
+ "totalCosts": 91.91,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14794760/medium/2059ce788a83774e10a1ed6de1bf27ab.jpeg"
},
- {
- "id": 15020371,
- "username": "danielsotog",
- "totalCosts": 138.37,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15020371/medium/8b1687fd801dbe95d4183d2fa783a0f8_default.png"
- },
- {
- "id": 14791370,
- "username": "williamx",
- "totalCosts": 96.96,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14791370/medium/59d86e6d660482edfdda6487b7fc1205_default.png"
- },
- {
- "id": 14924253,
- "username": "Ernestiko",
- "totalCosts": 54.54,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14924253/medium/55a18124dd6da8e74a464035a724349a.jpeg"
- },
{
"id": 14631802,
"username": "edgargrau",
- "totalCosts": 33.33,
+ "totalCosts": 16.16,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14631802/medium/49b31ee9ceace460558cf61dcaaa1e2f.jpeg"
},
{
- "id": 15429360,
- "username": "davidgomezhernandez155",
- "totalCosts": 17.17,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15429360/medium/ed757f2577b1e4993a142a5f60869cf8.jpeg"
- },
- {
- "id": 15418890,
- "username": "Cypherpunkfish1",
- "totalCosts": 15.15,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15418890/medium/e4ddbefa9793c099a4bd2b97bdd5f42b.jpg"
+ "id": 14564238,
+ "username": "FreddyAndresParra",
+ "totalCosts": 7.07,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14564238/medium/e6feebc5a27754079a07907fffac8389.jpg"
},
{
- "id": 15436824,
- "username": "araujo.eth",
- "totalCosts": 13.13,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15436824/medium/1b34b97c1e9e1a2ec99a7fba8d2dbada_default.png"
+ "id": 14791370,
+ "username": "williamx",
+ "totalCosts": 3.03,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14791370/medium/59d86e6d660482edfdda6487b7fc1205_default.png"
},
{
- "id": 14564238,
- "username": "FreddyAndresParra",
- "totalCosts": 9.09,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14564238/medium/e6feebc5a27754079a07907fffac8389.jpg"
+ "id": 15020371,
+ "username": "danielsotog",
+ "totalCosts": 1.01,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15020371/medium/8b1687fd801dbe95d4183d2fa783a0f8_default.png"
}
]
},
@@ -10522,7 +10480,7 @@
{
"id": 14894112,
"username": "Spuknit",
- "totalCosts": 158.57,
+ "totalCosts": 151.5,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14894112/medium/c70d81f75092cc062472ff2457d73c09.jpeg"
},
{
@@ -11004,7 +10962,7 @@
{
"id": 15730101,
"username": "anaphant",
- "totalCosts": 464.6,
+ "totalCosts": 453.49,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15730101/medium/54df140ba50202fe839069eb63683d45.png"
},
{
@@ -11410,13 +11368,13 @@
{
"id": 15770841,
"username": "Angelito_18",
- "totalCosts": 2774.47,
+ "totalCosts": 2765.38,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15770841/medium/f82644a45b17eed3facb1815dcc83d13.jpeg"
},
{
"id": 15751029,
"username": "4ndr3s",
- "totalCosts": 212.1,
+ "totalCosts": 196.95,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15751029/medium/5c541b87c5cb9da1ec885228cb23d33b.png"
},
{
@@ -11586,7 +11544,7 @@
{
"id": 15194310,
"username": "MGETH",
- "totalCosts": 1364.51,
+ "totalCosts": 1347.34,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15194310/medium/7729d9dbda8c9420c26f689b4a2b2918.jpg"
}
]
@@ -11626,7 +11584,7 @@
{
"id": 15194310,
"username": "MGETH",
- "totalCosts": 1507.93,
+ "totalCosts": 1495.81,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15194310/medium/7729d9dbda8c9420c26f689b4a2b2918.jpg"
},
{
@@ -11655,7 +11613,7 @@
{
"id": 15194310,
"username": "MGETH",
- "totalCosts": 950.41,
+ "totalCosts": 941.32,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15194310/medium/7729d9dbda8c9420c26f689b4a2b2918.jpg"
},
{
@@ -11690,7 +11648,7 @@
{
"id": 15274148,
"username": "almartinez",
- "totalCosts": 78.78,
+ "totalCosts": 72.72,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15274148/medium/ba6827b07726231f6fa2a149da7c2627.png"
},
{
@@ -12086,7 +12044,7 @@
{
"id": 15854595,
"username": "badillos1998",
- "totalCosts": 306.03,
+ "totalCosts": 281.79,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15854595/medium/5237fb21647f11d9482225a1295ed2d9.png"
}
]
@@ -12266,7 +12224,7 @@
{
"id": 16028920,
"username": "paopastorelli",
- "totalCosts": 978.69,
+ "totalCosts": 970.61,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/16028920/medium/e3049f379e035388449ee79ea5b75888.jpeg"
},
{
@@ -12343,7 +12301,7 @@
{
"id": 15946267,
"username": "socopower",
- "totalCosts": 826.18,
+ "totalCosts": 822.14,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15946267/medium/094f1891b25266289c4aa5df7b08cfb7.jpg"
}
]
@@ -12557,29 +12515,23 @@
{
"fileId": "7717",
"contributors": [
- {
- "id": 15553253,
- "username": "EmelyGarcia",
- "totalCosts": 903.95,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15553253/medium/2077ec790711bf21dd6cad91f776f003.png"
- },
{
"id": 15968127,
"username": "gonzagramaglia",
- "totalCosts": 870.62,
+ "totalCosts": 653.47,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15968127/medium/0c91665492f81a2479639eba5271d7bc.png"
},
+ {
+ "id": 15553253,
+ "username": "EmelyGarcia",
+ "totalCosts": 334.31,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15553253/medium/2077ec790711bf21dd6cad91f776f003.png"
+ },
{
"id": 15875251,
"username": "noagona",
"totalCosts": 156.55,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15875251/medium/beafaf5c34722390e1d1e1dc58ab193b_default.png"
- },
- {
- "id": 15287132,
- "username": "0xAntonio",
- "totalCosts": 13.13,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15287132/medium/67c5a079a19f5b0cd46f8d628cff446d.png"
}
]
},
@@ -12640,7 +12592,7 @@
{
"id": 15903171,
"username": "SidWeb",
- "totalCosts": 1055.45,
+ "totalCosts": 1034.24,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15903171/medium/16aea0b15b034302e6e656749a0a7b8e.jpg"
}
]
@@ -12651,7 +12603,7 @@
{
"id": 15801343,
"username": "tonior",
- "totalCosts": 669.63,
+ "totalCosts": 539.34,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15801343/medium/47a6621fc47ecf631c19ee0fc5f812e7_default.png"
}
]
@@ -12702,7 +12654,7 @@
{
"id": 15553253,
"username": "EmelyGarcia",
- "totalCosts": 1392.79,
+ "totalCosts": 1372.59,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15553253/medium/2077ec790711bf21dd6cad91f776f003.png"
},
{
@@ -12900,7 +12852,7 @@
{
"id": 15946267,
"username": "socopower",
- "totalCosts": 375.72,
+ "totalCosts": 237.35,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15946267/medium/094f1891b25266289c4aa5df7b08cfb7.jpg"
}
]
@@ -13011,286 +12963,1811 @@
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15194310/medium/7729d9dbda8c9420c26f689b4a2b2918.jpg"
}
]
- }
- ]
- },
- {
- "lang": "fa",
- "data": [
+ },
{
- "fileId": "6161",
+ "fileId": "7631",
"contributors": [
{
- "id": 15097099,
- "username": "nader.sedigh",
- "totalCosts": 158.57,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15097099/medium/4fca4ea357c99c5d605850315f21ae65.png"
+ "id": 15194310,
+ "username": "MGETH",
+ "totalCosts": 2880.52,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15194310/medium/7729d9dbda8c9420c26f689b4a2b2918.jpg"
+ },
+ {
+ "id": 15714091,
+ "username": "Karym_GG",
+ "totalCosts": 113.12,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15714091/medium/69afa2fb791e1be17640c54018cb4e2e_default.png"
}
]
},
{
- "fileId": "6163",
+ "fileId": "6241",
"contributors": [
{
- "id": 15097099,
- "username": "nader.sedigh",
- "totalCosts": 347.44,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15097099/medium/4fca4ea357c99c5d605850315f21ae65.png"
+ "id": 15153752,
+ "username": "jumagios",
+ "totalCosts": 641.35,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15153752/medium/4c5ec8941f8b5f636035a6ca16df9b8d.jpeg"
},
{
- "id": 15967119,
- "username": "timtey",
- "totalCosts": 94.94,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15967119/medium/cdc0fbd1e4667f13ed75ac64b4e6c809.jpeg"
+ "id": 15123407,
+ "username": "JDAL",
+ "totalCosts": 346.43,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15123407/medium/dfea944357736aa8f0908f38c8bd97a8_default.png"
},
{
- "id": 15967125,
- "username": "erfanej",
- "totalCosts": 41.41,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15967125/medium/2223e574efc34243ef6e77236d77a6ba.png"
+ "id": 15061909,
+ "username": "lealp22",
+ "totalCosts": 204.02,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15061909/medium/418c844e1b58b7da484f33f1fb1eaaae.jpeg"
},
{
- "id": 15233666,
- "username": "Alifarhani",
- "totalCosts": 34.34,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15233666/medium/deec4866c37352c795ed3d0000236714.jpeg"
- }
- ]
- },
- {
- "fileId": "6185",
- "contributors": [
+ "id": 15135505,
+ "username": "Andrea00P",
+ "totalCosts": 124.23,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15135505/medium/8e95dff743c0a7e4feedb53ef122eba5_default.png"
+ },
{
- "id": 15097099,
- "username": "nader.sedigh",
- "totalCosts": 266.64,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15097099/medium/4fca4ea357c99c5d605850315f21ae65.png"
+ "id": 15153604,
+ "username": "DiegoRodriguezM",
+ "totalCosts": 21.21,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15153604/medium/11569f93ca6c50d1f1039d949c390a8e.jpeg"
},
{
- "id": 15099529,
- "username": "Aria-Naraghi",
- "totalCosts": 47.47,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15099529/medium/77b12f03c6675c85ad45efc6f3e23be3_default.png"
+ "id": 15383024,
+ "username": "alx255",
+ "totalCosts": 17.17,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15383024/medium/b9e5bd7a7d9dfc1012d3d820da36f6e2_default.png"
},
{
- "id": 15233666,
- "username": "Alifarhani",
- "totalCosts": 23.23,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15233666/medium/deec4866c37352c795ed3d0000236714.jpeg"
- }
- ]
- },
- {
- "fileId": "6165",
- "contributors": [
+ "id": 15966545,
+ "username": "askr",
+ "totalCosts": 12.12,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15966545/medium/350ebd9c64c3a9a5244827c6f34d05e7_default.png"
+ },
{
- "id": 15233666,
- "username": "Alifarhani",
- "totalCosts": 23.23,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15233666/medium/deec4866c37352c795ed3d0000236714.jpeg"
+ "id": 15714091,
+ "username": "Karym_GG",
+ "totalCosts": 8.08,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15714091/medium/69afa2fb791e1be17640c54018cb4e2e_default.png"
},
{
- "id": 15967119,
- "username": "timtey",
- "totalCosts": 21.21,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15967119/medium/cdc0fbd1e4667f13ed75ac64b4e6c809.jpeg"
+ "id": 15155844,
+ "username": "CryptoSpace",
+ "totalCosts": 8.08,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15155844/medium/6e6407e27f509308774f480afe52ff7d.png"
+ },
+ {
+ "id": 15487308,
+ "username": "newton099",
+ "totalCosts": 1.01,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15487308/medium/4039f2f3c1d992a73045fe97fb41aecc.png"
}
]
},
{
- "fileId": "6167",
+ "fileId": "3056",
"contributors": [
{
- "id": 15097099,
- "username": "nader.sedigh",
- "totalCosts": 451.47,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15097099/medium/4fca4ea357c99c5d605850315f21ae65.png"
+ "id": 14750970,
+ "username": "joab83",
+ "totalCosts": 219.17,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14750970/medium/0b87f19553c843060ce216cdd76f919d_default.png"
},
{
- "id": 15233666,
- "username": "Alifarhani",
- "totalCosts": 114.13,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15233666/medium/deec4866c37352c795ed3d0000236714.jpeg"
+ "id": 14834276,
+ "username": "ElTitoDG",
+ "totalCosts": 148.47,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14834276/medium/403ec82c5eab442ae648bc5290a0e6b9.png"
},
{
- "id": 15099529,
- "username": "Aria-Naraghi",
- "totalCosts": 3.03,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15099529/medium/77b12f03c6675c85ad45efc6f3e23be3_default.png"
+ "id": 14737978,
+ "username": "ZeroSlayer",
+ "totalCosts": 95.95,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14737978/medium/d188e89855364d34aad1be1959f11ae6_default.png"
},
{
- "id": 15967119,
- "username": "timtey",
- "totalCosts": 3.03,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15967119/medium/cdc0fbd1e4667f13ed75ac64b4e6c809.jpeg"
- }
- ]
- },
- {
- "fileId": "5559",
- "contributors": [
- {
- "id": 15074339,
- "username": "mmp8103",
- "totalCosts": 266.64,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15074339/medium/5199c5dafe0b10d9bf8a99c34ff3a277.png"
+ "id": 14867212,
+ "username": "haritz_950423",
+ "totalCosts": 79.79,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14867212/medium/f2d03c7459424f9158deca133bb7a6db.jpeg"
},
{
- "id": 15855621,
- "username": "subriper",
- "totalCosts": 220.18,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15855621/medium/ab1a2868b313e6dfc113a754286d37d5.jpg"
+ "id": 14778126,
+ "username": "Thalma",
+ "totalCosts": 68.68,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14778126/medium/3927ee487076db1a7dd83d45a6d2dc64.jpeg"
},
{
- "id": 15233666,
- "username": "Alifarhani",
- "totalCosts": 90.9,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15233666/medium/deec4866c37352c795ed3d0000236714.jpeg"
+ "id": 14652060,
+ "username": "JazminVidal",
+ "totalCosts": 56.56,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14652060/medium/a4f3c9974a51710ea11e87a24ac2df27.png"
},
{
- "id": 15097099,
- "username": "nader.sedigh",
- "totalCosts": 81.81,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15097099/medium/4fca4ea357c99c5d605850315f21ae65.png"
+ "id": 15080289,
+ "username": "mattiaverduci",
+ "totalCosts": 39.39,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15080289/medium/f3c6e7873da71c5307ba187c9e6ebf50.jpeg"
},
{
- "id": 14814690,
- "username": "khodaarahmi",
+ "id": 14631802,
+ "username": "edgargrau",
"totalCosts": 37.37,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14814690/medium/22dbf1e43823e76cb094bff3fdcca212.jpeg"
- }
- ]
- },
- {
- "fileId": "5561",
- "contributors": [
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14631802/medium/49b31ee9ceace460558cf61dcaaa1e2f.jpeg"
+ },
{
- "id": 15099529,
- "username": "Aria-Naraghi",
- "totalCosts": 2924.96,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15099529/medium/77b12f03c6675c85ad45efc6f3e23be3_default.png"
+ "id": 14990899,
+ "username": "juan.baranowa",
+ "totalCosts": 13.13,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14990899/medium/c7ef51465c9acf0f30c989ec42d6d5d2.png"
},
{
- "id": 15967119,
- "username": "timtey",
- "totalCosts": 158.57,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15967119/medium/cdc0fbd1e4667f13ed75ac64b4e6c809.jpeg"
+ "id": 15061909,
+ "username": "lealp22",
+ "totalCosts": 13.13,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15061909/medium/418c844e1b58b7da484f33f1fb1eaaae.jpeg"
},
{
- "id": 14951357,
- "username": "AH1309",
- "totalCosts": 3.03,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14951357/medium/8791c0b99febb787a5293b1b8487a6a9_default.png"
+ "id": 14943545,
+ "username": "k.otika",
+ "totalCosts": 1.01,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14943545/medium/8591b0d6e4eb6d5cf6fb49acabda89d3_default.png"
}
]
},
{
- "fileId": "2766",
+ "fileId": "3124",
"contributors": [
{
- "id": 14733070,
- "username": "loopersosa",
- "totalCosts": 435.31,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14733070/medium/14f75ef000001434196357bca4f22490.jpg"
- },
- {
- "id": 15099529,
- "username": "Aria-Naraghi",
- "totalCosts": 290.88,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15099529/medium/77b12f03c6675c85ad45efc6f3e23be3_default.png"
+ "id": 13522334,
+ "username": "santy95_77",
+ "totalCosts": 303,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13522334/medium/16d302ea919c1608cfa57af85221ca86.jpeg"
},
{
- "id": 15233666,
- "username": "Alifarhani",
- "totalCosts": 219.17,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15233666/medium/deec4866c37352c795ed3d0000236714.jpeg"
+ "id": 14992061,
+ "username": "Divanny",
+ "totalCosts": 251.49,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14992061/medium/932dae148005c8671a50691ac97b7ddc.jpeg"
},
{
- "id": 15002741,
- "username": "dariusheslamipor",
- "totalCosts": 205.03,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15002741/medium/368ee2e7888434a922e5781aa2c194bf.jpeg"
+ "id": 15058949,
+ "username": "gracieluu_ar",
+ "totalCosts": 167.66,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15058949/medium/c8bf678ba85795ea778fbc67e30f0733.jpeg"
},
{
- "id": 15097099,
- "username": "nader.sedigh",
- "totalCosts": 66.66,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15097099/medium/4fca4ea357c99c5d605850315f21ae65.png"
+ "id": 13450175,
+ "username": "elchany2003",
+ "totalCosts": 113.12,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13450175/medium/1512f06d16de820437e75b308d57fd1a.jpg"
},
{
- "id": 15967119,
- "username": "timtey",
- "totalCosts": 53.53,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15967119/medium/cdc0fbd1e4667f13ed75ac64b4e6c809.jpeg"
+ "id": 15194310,
+ "username": "MGETH",
+ "totalCosts": 96.96,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15194310/medium/7729d9dbda8c9420c26f689b4a2b2918.jpg"
},
{
- "id": 15967125,
- "username": "erfanej",
- "totalCosts": 17.17,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15967125/medium/2223e574efc34243ef6e77236d77a6ba.png"
+ "id": 15111835,
+ "username": "LeonelM21",
+ "totalCosts": 93.93,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15111835/medium/5df70e80366ef94764ad8cbde854d2a5.png"
},
{
- "id": 14555882,
- "username": "ElAmir",
- "totalCosts": 4.04,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14555882/medium/47bd8403dc0a881324cf1d5aef976a7b.jpg"
+ "id": 15155844,
+ "username": "CryptoSpace",
+ "totalCosts": 33.33,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15155844/medium/6e6407e27f509308774f480afe52ff7d.png"
},
{
- "id": 15793733,
- "username": "mahdishahabnia10",
- "totalCosts": 2.02,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15793733/medium/530cfa36d26d8b01474098c8952b0478.png"
+ "id": 15946267,
+ "username": "socopower",
+ "totalCosts": 18.18,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15946267/medium/094f1891b25266289c4aa5df7b08cfb7.jpg"
}
]
},
{
- "fileId": "2704",
+ "fileId": "7995",
"contributors": [
{
- "id": 15947697,
- "username": "mahdigachloo33",
- "totalCosts": 712.05,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15947697/medium/6d060369501296118d0d9155a941096a.jpeg"
- },
- {
- "id": 15099529,
- "username": "Aria-Naraghi",
- "totalCosts": 69.69,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15099529/medium/77b12f03c6675c85ad45efc6f3e23be3_default.png"
+ "id": 15714091,
+ "username": "Karym_GG",
+ "totalCosts": 870.62,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15714091/medium/69afa2fb791e1be17640c54018cb4e2e_default.png"
},
{
- "id": 14555882,
- "username": "ElAmir",
- "totalCosts": 15.15,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14555882/medium/47bd8403dc0a881324cf1d5aef976a7b.jpg"
- },
+ "id": 15194310,
+ "username": "MGETH",
+ "totalCosts": 294.92,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15194310/medium/7729d9dbda8c9420c26f689b4a2b2918.jpg"
+ }
+ ]
+ },
+ {
+ "fileId": "6267",
+ "contributors": [
{
- "id": 14733070,
- "username": "loopersosa",
- "totalCosts": 10.1,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14733070/medium/14f75ef000001434196357bca4f22490.jpg"
+ "id": 15085311,
+ "username": "bunturx",
+ "totalCosts": 1864.46,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15085311/medium/ead5dd5aa5070be2f8d446c286f27d7a.jpeg"
},
{
- "id": 14665754,
- "username": "R3z4_Pr0gramm3r",
- "totalCosts": 3.03,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14665754/medium/72c1f853dc01a48166c2ac4476d4a63a.png"
+ "id": 15178052,
+ "username": "sudokunym",
+ "totalCosts": 324.21,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15178052/medium/6d7cf49c669b00f2bcaa28716d078bc0.jpeg"
},
{
- "id": 15233666,
- "username": "Alifarhani",
- "totalCosts": 2.02,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15233666/medium/deec4866c37352c795ed3d0000236714.jpeg"
+ "id": 15135505,
+ "username": "Andrea00P",
+ "totalCosts": 23.23,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15135505/medium/8e95dff743c0a7e4feedb53ef122eba5_default.png"
}
]
},
{
- "fileId": "2702",
+ "fileId": "6243",
"contributors": [
{
- "id": 15967125,
- "username": "erfanej",
- "totalCosts": 604.99,
+ "id": 15109143,
+ "username": "avelinomunoz.13.990",
+ "totalCosts": 1725.08,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15109143/medium/15bc93dea94521f060a6ca73118ace17.png"
+ },
+ {
+ "id": 15714091,
+ "username": "Karym_GG",
+ "totalCosts": 989.8,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15714091/medium/69afa2fb791e1be17640c54018cb4e2e_default.png"
+ },
+ {
+ "id": 15155844,
+ "username": "CryptoSpace",
+ "totalCosts": 588.83,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15155844/medium/6e6407e27f509308774f480afe52ff7d.png"
+ },
+ {
+ "id": 15135505,
+ "username": "Andrea00P",
+ "totalCosts": 209.07,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15135505/medium/8e95dff743c0a7e4feedb53ef122eba5_default.png"
+ },
+ {
+ "id": 15155208,
+ "username": "doblea59",
+ "totalCosts": 150.49,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15155208/medium/10c38f6da511bcb1a7cd9e99bb851b0f.jpeg"
+ },
+ {
+ "id": 15271124,
+ "username": "gael.jggs",
+ "totalCosts": 99.99,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15271124/medium/40d1d2789aa8aa4e636b32dd7d925186_default.png"
+ }
+ ]
+ },
+ {
+ "fileId": "7627",
+ "contributors": [
+ {
+ "id": 15714091,
+ "username": "Karym_GG",
+ "totalCosts": 1374.61,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15714091/medium/69afa2fb791e1be17640c54018cb4e2e_default.png"
+ },
+ {
+ "id": 15857153,
+ "username": "eugedelaoliva93",
+ "totalCosts": 84.84,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15857153/medium/f7cd69b42365e152a5b853421ed0b61d.jpeg"
+ },
+ {
+ "id": 16059186,
+ "username": "Netchevereone",
+ "totalCosts": 4.04,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/16059186/medium/22e49dddeab741905dffdac1d01f0ed0_default.png"
+ }
+ ]
+ },
+ {
+ "fileId": "3100",
+ "contributors": [
+ {
+ "id": 14872676,
+ "username": "VLN_1",
+ "totalCosts": 287.85,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14872676/medium/8d173c43fac87f0975a31275048360c8.jpeg"
+ },
+ {
+ "id": 12673086,
+ "username": "alvaro3639",
+ "totalCosts": 112.11,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12673086/medium/c4dd31ecaaffcae28a9ec421a8a12248.jpg"
+ },
+ {
+ "id": 15085311,
+ "username": "bunturx",
+ "totalCosts": 110.09,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15085311/medium/ead5dd5aa5070be2f8d446c286f27d7a.jpeg"
+ },
+ {
+ "id": 15714091,
+ "username": "Karym_GG",
+ "totalCosts": 69.69,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15714091/medium/69afa2fb791e1be17640c54018cb4e2e_default.png"
+ },
+ {
+ "id": 12596551,
+ "username": "lidiam",
+ "totalCosts": 60.6,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12596551/medium/4d64ba444829e0a830179079cbf8fd80.png"
+ },
+ {
+ "id": 14834276,
+ "username": "ElTitoDG",
+ "totalCosts": 43.43,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14834276/medium/403ec82c5eab442ae648bc5290a0e6b9.png"
+ },
+ {
+ "id": 14778992,
+ "username": "IsmaelRC",
+ "totalCosts": 5.05,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14778992/medium/646865835d4b959bf3bfca67b66ef04f.png"
+ },
+ {
+ "id": 13510211,
+ "username": "MirageIonova",
+ "totalCosts": 4.04,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13510211/medium/f447099407b409a18ab34d7829683e43.png"
+ },
+ {
+ "id": 14755966,
+ "username": "RealGoye",
+ "totalCosts": 2.02,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14755966/medium/f5becfea2dd543f57f356dfb3e42487d_default.png"
+ }
+ ]
+ },
+ {
+ "fileId": "3160",
+ "contributors": [
+ {
+ "id": 15085311,
+ "username": "bunturx",
+ "totalCosts": 849.41,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15085311/medium/ead5dd5aa5070be2f8d446c286f27d7a.jpeg"
+ },
+ {
+ "id": 15002443,
+ "username": "Pamelaocampo444",
+ "totalCosts": 57.57,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15002443/medium/89be2efab05a804101bdf30622d0f983_default.png"
+ },
+ {
+ "id": 15084601,
+ "username": "metanube",
+ "totalCosts": 54.54,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15084601/medium/7e8ee6ec15e9d0be68e2c6ff9a0b34c8_default.png"
+ },
+ {
+ "id": 15714091,
+ "username": "Karym_GG",
+ "totalCosts": 49.49,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15714091/medium/69afa2fb791e1be17640c54018cb4e2e_default.png"
+ },
+ {
+ "id": 13566526,
+ "username": "guido.gentile.1995",
+ "totalCosts": 7.07,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13566526/medium/fbe52bcbb93ae7e2bf52c85b6ea5d5f5.jpg"
+ },
+ {
+ "id": 15080733,
+ "username": "Kuitlahuak",
+ "totalCosts": 1.01,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15080733/medium/9fd244d47265c127c5c0d3cfe4ebf4b2_default.png"
+ },
+ {
+ "id": 15087823,
+ "username": "Alvaro203204",
+ "totalCosts": 1.01,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15087823/medium/bfdfab68e4c4b9482f9c7f533ec845c9.png"
+ }
+ ]
+ },
+ {
+ "fileId": "7999",
+ "contributors": [
+ {
+ "id": 15194310,
+ "username": "MGETH",
+ "totalCosts": 3253.21,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15194310/medium/7729d9dbda8c9420c26f689b4a2b2918.jpg"
+ },
+ {
+ "id": 15058949,
+ "username": "gracieluu_ar",
+ "totalCosts": 2218.97,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15058949/medium/c8bf678ba85795ea778fbc67e30f0733.jpeg"
+ },
+ {
+ "id": 15714091,
+ "username": "Karym_GG",
+ "totalCosts": 23.23,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15714091/medium/69afa2fb791e1be17640c54018cb4e2e_default.png"
+ }
+ ]
+ },
+ {
+ "fileId": "3074",
+ "contributors": [
+ {
+ "id": 14834276,
+ "username": "ElTitoDG",
+ "totalCosts": 388.85,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14834276/medium/403ec82c5eab442ae648bc5290a0e6b9.png"
+ },
+ {
+ "id": 14911627,
+ "username": "marcoporracin",
+ "totalCosts": 168.67,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14911627/medium/29719c7ebb665982afa5447e382aeb13.jpeg"
+ },
+ {
+ "id": 15714091,
+ "username": "Karym_GG",
+ "totalCosts": 90.9,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15714091/medium/69afa2fb791e1be17640c54018cb4e2e_default.png"
+ },
+ {
+ "id": 13510211,
+ "username": "MirageIonova",
+ "totalCosts": 59.59,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13510211/medium/f447099407b409a18ab34d7829683e43.png"
+ },
+ {
+ "id": 14778126,
+ "username": "Thalma",
+ "totalCosts": 42.42,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14778126/medium/3927ee487076db1a7dd83d45a6d2dc64.jpeg"
+ },
+ {
+ "id": 14631802,
+ "username": "edgargrau",
+ "totalCosts": 18.18,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14631802/medium/49b31ee9ceace460558cf61dcaaa1e2f.jpeg"
+ }
+ ]
+ },
+ {
+ "fileId": "3120",
+ "contributors": [
+ {
+ "id": 15714091,
+ "username": "Karym_GG",
+ "totalCosts": 398.95,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15714091/medium/69afa2fb791e1be17640c54018cb4e2e_default.png"
+ },
+ {
+ "id": 15401858,
+ "username": "andykamin3",
+ "totalCosts": 120.19,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15401858/medium/8ef405a63e7eaade682b4a8059685184.jpeg"
+ },
+ {
+ "id": 14807238,
+ "username": "rom1919",
+ "totalCosts": 61.61,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14807238/medium/4e9d7e22b8ba45851bf0d10bf4bb2f68.jpeg"
+ },
+ {
+ "id": 15480452,
+ "username": "asusrid",
+ "totalCosts": 18.18,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15480452/medium/39ea3acb0c4e9143d7fba152016d26c7_default.png"
+ },
+ {
+ "id": 25420,
+ "username": "Ryo567",
+ "totalCosts": 5.05,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/25420/medium/c407ca20cecfad35ba1bc9ef42232137.png"
+ }
+ ]
+ },
+ {
+ "fileId": "3164",
+ "contributors": [
+ {
+ "id": 15084601,
+ "username": "metanube",
+ "totalCosts": 1558.43,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15084601/medium/7e8ee6ec15e9d0be68e2c6ff9a0b34c8_default.png"
+ },
+ {
+ "id": 15714091,
+ "username": "Karym_GG",
+ "totalCosts": 106.05,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15714091/medium/69afa2fb791e1be17640c54018cb4e2e_default.png"
+ },
+ {
+ "id": 15082987,
+ "username": "Grampus",
+ "totalCosts": 45.45,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15082987/medium/3745aa71b5e8897fcee2ab6c9e9a26fe.jpeg"
+ },
+ {
+ "id": 15070281,
+ "username": "SZ14RT",
+ "totalCosts": 41.41,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15070281/medium/dc29b1568f0c3b8fb54a0a6724e2f13b_default.png"
+ },
+ {
+ "id": 14682564,
+ "username": "rich1n",
+ "totalCosts": 23.23,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14682564/medium/3198f898fb53f31fa32bf08236627a34.jpeg"
+ }
+ ]
+ },
+ {
+ "fileId": "2994",
+ "contributors": [
+ {
+ "id": 14886730,
+ "username": "charlyzona",
+ "totalCosts": 2024.04,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14886730/medium/5f19a49b0b330b8b575eee9a41d7faac.jpeg"
+ },
+ {
+ "id": 14791370,
+ "username": "williamx",
+ "totalCosts": 122.21,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14791370/medium/59d86e6d660482edfdda6487b7fc1205_default.png"
+ },
+ {
+ "id": 14885094,
+ "username": "FrancoElicabe",
+ "totalCosts": 31.31,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14885094/medium/ff9074ceb417d440b86adcd9172cc6e6_default.png"
+ },
+ {
+ "id": 14631802,
+ "username": "edgargrau",
+ "totalCosts": 21.21,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14631802/medium/49b31ee9ceace460558cf61dcaaa1e2f.jpeg"
+ },
+ {
+ "id": 15714091,
+ "username": "Karym_GG",
+ "totalCosts": 19.19,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15714091/medium/69afa2fb791e1be17640c54018cb4e2e_default.png"
+ },
+ {
+ "id": 14823390,
+ "username": "bitgalea",
+ "totalCosts": 14.14,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14823390/medium/443d0c232ef980933088d87cccbceadf_default.png"
+ },
+ {
+ "id": 14890278,
+ "username": "Hephaistos357",
+ "totalCosts": 10.1,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14890278/medium/7fd731668afeab1f389fbe0b256f0619.png"
+ },
+ {
+ "id": 15135505,
+ "username": "Andrea00P",
+ "totalCosts": 8.08,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15135505/medium/8e95dff743c0a7e4feedb53ef122eba5_default.png"
+ },
+ {
+ "id": 14943545,
+ "username": "k.otika",
+ "totalCosts": 1.01,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14943545/medium/8591b0d6e4eb6d5cf6fb49acabda89d3_default.png"
+ }
+ ]
+ },
+ {
+ "fileId": "2986",
+ "contributors": [
+ {
+ "id": 15085311,
+ "username": "bunturx",
+ "totalCosts": 569.64,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15085311/medium/ead5dd5aa5070be2f8d446c286f27d7a.jpeg"
+ },
+ {
+ "id": 15966349,
+ "username": "chiogonzalezt",
+ "totalCosts": 534.29,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15966349/medium/1d277519e5b8ccdfc1de7b60ec89e1b0.jpeg"
+ },
+ {
+ "id": 14865328,
+ "username": "Lostday",
+ "totalCosts": 239.37,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14865328/medium/16e7617eadda7d8511b4bcc3c6e5ae57_default.png"
+ },
+ {
+ "id": 15061725,
+ "username": "octaaaa",
+ "totalCosts": 221.19,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15061725/medium/4bf352fdf48fcda0d615d83b89ae4263.png"
+ },
+ {
+ "id": 14791370,
+ "username": "williamx",
+ "totalCosts": 125.24,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14791370/medium/59d86e6d660482edfdda6487b7fc1205_default.png"
+ },
+ {
+ "id": 15058949,
+ "username": "gracieluu_ar",
+ "totalCosts": 47.47,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15058949/medium/c8bf678ba85795ea778fbc67e30f0733.jpeg"
+ },
+ {
+ "id": 13510211,
+ "username": "MirageIonova",
+ "totalCosts": 37.37,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13510211/medium/f447099407b409a18ab34d7829683e43.png"
+ },
+ {
+ "id": 14631802,
+ "username": "edgargrau",
+ "totalCosts": 20.2,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14631802/medium/49b31ee9ceace460558cf61dcaaa1e2f.jpeg"
+ },
+ {
+ "id": 15224384,
+ "username": "mezaj4486",
+ "totalCosts": 8.08,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15224384/medium/a2a78d9a9f74c8e5a5c47cd503aa557d.png"
+ }
+ ]
+ },
+ {
+ "fileId": "6259",
+ "contributors": [
+ {
+ "id": 15154968,
+ "username": "Secvndvs",
+ "totalCosts": 170.69,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15154968/medium/63bd618dfc395cc82c1ba5119280c40c_default.png"
+ },
+ {
+ "id": 15714091,
+ "username": "Karym_GG",
+ "totalCosts": 160.59,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15714091/medium/69afa2fb791e1be17640c54018cb4e2e_default.png"
+ },
+ {
+ "id": 15998451,
+ "username": "gato1904",
+ "totalCosts": 52.52,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15998451/medium/b48c75b54930b781a82c9146d5ba2daf.png"
+ },
+ {
+ "id": 15674887,
+ "username": "Charlyboy",
+ "totalCosts": 23.23,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15674887/medium/adf7358a1af66b39938e57334b2ce312.jpg"
+ }
+ ]
+ },
+ {
+ "fileId": "3088",
+ "contributors": [
+ {
+ "id": 14687676,
+ "username": "joseachemazzei",
+ "totalCosts": 342.39,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14687676/medium/dc4cef6c7ba35e45690a3cbfb2db7009.jpg"
+ },
+ {
+ "id": 15714091,
+ "username": "Karym_GG",
+ "totalCosts": 212.1,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15714091/medium/69afa2fb791e1be17640c54018cb4e2e_default.png"
+ },
+ {
+ "id": 14776878,
+ "username": "JoshNX",
+ "totalCosts": 141.4,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14776878/medium/21ac9de5adfcb01ba92df55ea1428126_default.png"
+ },
+ {
+ "id": 14631802,
+ "username": "edgargrau",
+ "totalCosts": 20.2,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14631802/medium/49b31ee9ceace460558cf61dcaaa1e2f.jpeg"
+ },
+ {
+ "id": 14964031,
+ "username": "Charlongolo",
+ "totalCosts": 5.05,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14964031/medium/1fcad8b23307ba5ad33dac76e91ee6a3.png"
+ }
+ ]
+ },
+ {
+ "fileId": "3116",
+ "contributors": [
+ {
+ "id": 15191278,
+ "username": "julioenrique19",
+ "totalCosts": 827.19,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15191278/medium/93a3b7e041a6ed6bb7f72586f223ebd8.png"
+ },
+ {
+ "id": 14682564,
+ "username": "rich1n",
+ "totalCosts": 194.93,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14682564/medium/3198f898fb53f31fa32bf08236627a34.jpeg"
+ },
+ {
+ "id": 15714091,
+ "username": "Karym_GG",
+ "totalCosts": 106.05,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15714091/medium/69afa2fb791e1be17640c54018cb4e2e_default.png"
+ },
+ {
+ "id": 14320782,
+ "username": "JoseDeFreitas",
+ "totalCosts": 80.8,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14320782/medium/db9b49609d804eb2048076de466d3162_default.png"
+ },
+ {
+ "id": 15135505,
+ "username": "Andrea00P",
+ "totalCosts": 22.22,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15135505/medium/8e95dff743c0a7e4feedb53ef122eba5_default.png"
+ }
+ ]
+ },
+ {
+ "fileId": "6261",
+ "contributors": [
+ {
+ "id": 15714091,
+ "username": "Karym_GG",
+ "totalCosts": 805.98,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15714091/medium/69afa2fb791e1be17640c54018cb4e2e_default.png"
+ },
+ {
+ "id": 15294248,
+ "username": "kempo17",
+ "totalCosts": 157.56,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15294248/medium/5b2b23f53504fd6a13a351ee58209ec7_default.png"
+ },
+ {
+ "id": 15135505,
+ "username": "Andrea00P",
+ "totalCosts": 148.47,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15135505/medium/8e95dff743c0a7e4feedb53ef122eba5_default.png"
+ },
+ {
+ "id": 15161680,
+ "username": "agustinasegat",
+ "totalCosts": 104.03,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15161680/medium/62b2a3ce8e4003b84a0fceb6be409bba.jpeg"
+ },
+ {
+ "id": 15186514,
+ "username": "Nach3",
+ "totalCosts": 12.12,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15186514/medium/e053f5e70fadd69a00fce56662e286fa_default.png"
+ }
+ ]
+ },
+ {
+ "fileId": "2980",
+ "contributors": [
+ {
+ "id": 15714091,
+ "username": "Karym_GG",
+ "totalCosts": 104.03,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15714091/medium/69afa2fb791e1be17640c54018cb4e2e_default.png"
+ },
+ {
+ "id": 14935087,
+ "username": "Martinpons",
+ "totalCosts": 88.88,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14935087/medium/a96e2edf880e873237f137148aa343c1_default.png"
+ },
+ {
+ "id": 15425492,
+ "username": "luenconi",
+ "totalCosts": 68.68,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15425492/medium/d0d3884eb7d2b3f03f3e8e6c56c9b787.jpeg"
+ },
+ {
+ "id": 14631802,
+ "username": "edgargrau",
+ "totalCosts": 55.55,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14631802/medium/49b31ee9ceace460558cf61dcaaa1e2f.jpeg"
+ },
+ {
+ "id": 15094993,
+ "username": "javier.donoso",
+ "totalCosts": 45.45,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15094993/medium/824cbde6ec1e62405249bcf060ef90d1.jpeg"
+ },
+ {
+ "id": 14977143,
+ "username": "David0",
+ "totalCosts": 39.39,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14977143/medium/6ffd071efb4fab7bd5081b6e579dc0c9_default.png"
+ },
+ {
+ "id": 15423118,
+ "username": "samuelproxd1",
+ "totalCosts": 14.14,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15423118/medium/0b73e2850265eaffa68201bc0c8a026c.jpeg"
+ },
+ {
+ "id": 14791370,
+ "username": "williamx",
+ "totalCosts": 2.02,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14791370/medium/59d86e6d660482edfdda6487b7fc1205_default.png"
+ }
+ ]
+ },
+ {
+ "fileId": "6245",
+ "contributors": [
+ {
+ "id": 15714091,
+ "username": "Karym_GG",
+ "totalCosts": 803.96,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15714091/medium/69afa2fb791e1be17640c54018cb4e2e_default.png"
+ },
+ {
+ "id": 15155208,
+ "username": "doblea59",
+ "totalCosts": 430.26,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15155208/medium/10c38f6da511bcb1a7cd9e99bb851b0f.jpeg"
+ },
+ {
+ "id": 14763374,
+ "username": "elmarceloc",
+ "totalCosts": 94.94,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14763374/medium/25a8ac3837c276bc3a9e89b158668552.png"
+ },
+ {
+ "id": 15058949,
+ "username": "gracieluu_ar",
+ "totalCosts": 33.33,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15058949/medium/c8bf678ba85795ea778fbc67e30f0733.jpeg"
+ }
+ ]
+ },
+ {
+ "fileId": "6263",
+ "contributors": [
+ {
+ "id": 15085311,
+ "username": "bunturx",
+ "totalCosts": 566.61,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15085311/medium/ead5dd5aa5070be2f8d446c286f27d7a.jpeg"
+ },
+ {
+ "id": 15714091,
+ "username": "Karym_GG",
+ "totalCosts": 171.7,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15714091/medium/69afa2fb791e1be17640c54018cb4e2e_default.png"
+ }
+ ]
+ },
+ {
+ "fileId": "6432",
+ "contributors": [
+ {
+ "id": 15714091,
+ "username": "Karym_GG",
+ "totalCosts": 2926.98,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15714091/medium/69afa2fb791e1be17640c54018cb4e2e_default.png"
+ },
+ {
+ "id": 15155844,
+ "username": "CryptoSpace",
+ "totalCosts": 1258.46,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15155844/medium/6e6407e27f509308774f480afe52ff7d.png"
+ },
+ {
+ "id": 14631802,
+ "username": "edgargrau",
+ "totalCosts": 68.68,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14631802/medium/49b31ee9ceace460558cf61dcaaa1e2f.jpeg"
+ },
+ {
+ "id": 16028920,
+ "username": "paopastorelli",
+ "totalCosts": 41.41,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/16028920/medium/e3049f379e035388449ee79ea5b75888.jpeg"
+ },
+ {
+ "id": 15194310,
+ "username": "MGETH",
+ "totalCosts": 3.03,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15194310/medium/7729d9dbda8c9420c26f689b4a2b2918.jpg"
+ }
+ ]
+ },
+ {
+ "fileId": "6436",
+ "contributors": [
+ {
+ "id": 15155844,
+ "username": "CryptoSpace",
+ "totalCosts": 3484.5,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15155844/medium/6e6407e27f509308774f480afe52ff7d.png"
+ }
+ ]
+ },
+ {
+ "fileId": "7308",
+ "contributors": [
+ {
+ "id": 15194310,
+ "username": "MGETH",
+ "totalCosts": 2874.46,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15194310/medium/7729d9dbda8c9420c26f689b4a2b2918.jpg"
+ },
+ {
+ "id": 15881053,
+ "username": "luxxing",
+ "totalCosts": 70.7,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15881053/medium/95bd3e1a44d660c405ba34c0732edbcc_default.png"
+ },
+ {
+ "id": 15714091,
+ "username": "Karym_GG",
+ "totalCosts": 54.54,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15714091/medium/69afa2fb791e1be17640c54018cb4e2e_default.png"
+ }
+ ]
+ },
+ {
+ "fileId": "3144",
+ "contributors": [
+ {
+ "id": 15085311,
+ "username": "bunturx",
+ "totalCosts": 457.53,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15085311/medium/ead5dd5aa5070be2f8d446c286f27d7a.jpeg"
+ },
+ {
+ "id": 15058949,
+ "username": "gracieluu_ar",
+ "totalCosts": 12.12,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15058949/medium/c8bf678ba85795ea778fbc67e30f0733.jpeg"
+ },
+ {
+ "id": 14958987,
+ "username": "fernanmartine",
+ "totalCosts": 4.04,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14958987/medium/c3675bae5c0086400ebe95c94d4a4580_default.png"
+ }
+ ]
+ },
+ {
+ "fileId": "6247",
+ "contributors": [
+ {
+ "id": 15135505,
+ "username": "Andrea00P",
+ "totalCosts": 207.05,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15135505/medium/8e95dff743c0a7e4feedb53ef122eba5_default.png"
+ }
+ ]
+ },
+ {
+ "fileId": "3138",
+ "contributors": [
+ {
+ "id": 15083265,
+ "username": "siulnairda",
+ "totalCosts": 448.44,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15083265/medium/827dfe415bb9980315b0256b43afbe67.png"
+ },
+ {
+ "id": 15714091,
+ "username": "Karym_GG",
+ "totalCosts": 410.06,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15714091/medium/69afa2fb791e1be17640c54018cb4e2e_default.png"
+ },
+ {
+ "id": 14763374,
+ "username": "elmarceloc",
+ "totalCosts": 119.18,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14763374/medium/25a8ac3837c276bc3a9e89b158668552.png"
+ },
+ {
+ "id": 15247956,
+ "username": "kenip",
+ "totalCosts": 60.6,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15247956/medium/d5a5d69f6aecc80fe75873d940743a36.png"
+ },
+ {
+ "id": 15966545,
+ "username": "askr",
+ "totalCosts": 16.16,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15966545/medium/350ebd9c64c3a9a5244827c6f34d05e7_default.png"
+ },
+ {
+ "id": 15135505,
+ "username": "Andrea00P",
+ "totalCosts": 1.01,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15135505/medium/8e95dff743c0a7e4feedb53ef122eba5_default.png"
+ }
+ ]
+ },
+ {
+ "fileId": "3156",
+ "contributors": [
+ {
+ "id": 15084601,
+ "username": "metanube",
+ "totalCosts": 255.53,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15084601/medium/7e8ee6ec15e9d0be68e2c6ff9a0b34c8_default.png"
+ },
+ {
+ "id": 15714091,
+ "username": "Karym_GG",
+ "totalCosts": 140.39,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15714091/medium/69afa2fb791e1be17640c54018cb4e2e_default.png"
+ },
+ {
+ "id": 15966545,
+ "username": "askr",
+ "totalCosts": 70.7,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15966545/medium/350ebd9c64c3a9a5244827c6f34d05e7_default.png"
+ }
+ ]
+ },
+ {
+ "fileId": "7304",
+ "contributors": [
+ {
+ "id": 15966349,
+ "username": "chiogonzalezt",
+ "totalCosts": 750.43,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15966349/medium/1d277519e5b8ccdfc1de7b60ec89e1b0.jpeg"
+ },
+ {
+ "id": 15714091,
+ "username": "Karym_GG",
+ "totalCosts": 749.42,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15714091/medium/69afa2fb791e1be17640c54018cb4e2e_default.png"
+ },
+ {
+ "id": 15155844,
+ "username": "CryptoSpace",
+ "totalCosts": 432.28,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15155844/medium/6e6407e27f509308774f480afe52ff7d.png"
+ },
+ {
+ "id": 15770841,
+ "username": "Angelito_18",
+ "totalCosts": 134.33,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15770841/medium/f82644a45b17eed3facb1815dcc83d13.jpeg"
+ }
+ ]
+ },
+ {
+ "fileId": "2998",
+ "contributors": [
+ {
+ "id": 14886730,
+ "username": "charlyzona",
+ "totalCosts": 919.1,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14886730/medium/5f19a49b0b330b8b575eee9a41d7faac.jpeg"
+ },
+ {
+ "id": 14656338,
+ "username": "transgresor_metal",
+ "totalCosts": 88.88,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14656338/medium/994846d1f939b5a9efdafa335adcc091.jpeg"
+ },
+ {
+ "id": 15553253,
+ "username": "EmelyGarcia",
+ "totalCosts": 57.57,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15553253/medium/2077ec790711bf21dd6cad91f776f003.png"
+ },
+ {
+ "id": 15194310,
+ "username": "MGETH",
+ "totalCosts": 28.28,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15194310/medium/7729d9dbda8c9420c26f689b4a2b2918.jpg"
+ },
+ {
+ "id": 14631802,
+ "username": "edgargrau",
+ "totalCosts": 20.2,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14631802/medium/49b31ee9ceace460558cf61dcaaa1e2f.jpeg"
+ },
+ {
+ "id": 13510211,
+ "username": "MirageIonova",
+ "totalCosts": 3.03,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13510211/medium/f447099407b409a18ab34d7829683e43.png"
+ }
+ ]
+ },
+ {
+ "fileId": "3148",
+ "contributors": [
+ {
+ "id": 15553253,
+ "username": "EmelyGarcia",
+ "totalCosts": 498.94,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15553253/medium/2077ec790711bf21dd6cad91f776f003.png"
+ },
+ {
+ "id": 15087823,
+ "username": "Alvaro203204",
+ "totalCosts": 151.5,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15087823/medium/bfdfab68e4c4b9482f9c7f533ec845c9.png"
+ },
+ {
+ "id": 15474196,
+ "username": "Ivan_Sarapura",
+ "totalCosts": 20.2,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15474196/medium/7d0c8d1b9a3745f3d1dbfaec3ab9e4a2.jpeg"
+ },
+ {
+ "id": 14964031,
+ "username": "Charlongolo",
+ "totalCosts": 4.04,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14964031/medium/1fcad8b23307ba5ad33dac76e91ee6a3.png"
+ }
+ ]
+ },
+ {
+ "fileId": "6265",
+ "contributors": [
+ {
+ "id": 15161680,
+ "username": "agustinasegat",
+ "totalCosts": 151.5,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15161680/medium/62b2a3ce8e4003b84a0fceb6be409bba.jpeg"
+ },
+ {
+ "id": 15553253,
+ "username": "EmelyGarcia",
+ "totalCosts": 2.02,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15553253/medium/2077ec790711bf21dd6cad91f776f003.png"
+ }
+ ]
+ },
+ {
+ "fileId": "3036",
+ "contributors": [
+ {
+ "id": 15085311,
+ "username": "bunturx",
+ "totalCosts": 235.33,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15085311/medium/ead5dd5aa5070be2f8d446c286f27d7a.jpeg"
+ },
+ {
+ "id": 15058949,
+ "username": "gracieluu_ar",
+ "totalCosts": 214.12,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15058949/medium/c8bf678ba85795ea778fbc67e30f0733.jpeg"
+ },
+ {
+ "id": 15714091,
+ "username": "Karym_GG",
+ "totalCosts": 163.62,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15714091/medium/69afa2fb791e1be17640c54018cb4e2e_default.png"
+ },
+ {
+ "id": 14914189,
+ "username": "carloscuadro",
+ "totalCosts": 117.16,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14914189/medium/7ec4ee047758da8e4a91c37eeda0f674_default.png"
+ },
+ {
+ "id": 15135505,
+ "username": "Andrea00P",
+ "totalCosts": 84.84,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15135505/medium/8e95dff743c0a7e4feedb53ef122eba5_default.png"
+ },
+ {
+ "id": 15155844,
+ "username": "CryptoSpace",
+ "totalCosts": 69.69,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15155844/medium/6e6407e27f509308774f480afe52ff7d.png"
+ },
+ {
+ "id": 14779212,
+ "username": "matthewrock2011",
+ "totalCosts": 68.68,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14779212/medium/39661a937aa3dc153a7acd8d06b4a8fd.jpeg"
+ },
+ {
+ "id": 15946267,
+ "username": "socopower",
+ "totalCosts": 51.51,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15946267/medium/094f1891b25266289c4aa5df7b08cfb7.jpg"
+ },
+ {
+ "id": 14690796,
+ "username": "Elksomi",
+ "totalCosts": 40.4,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14690796/medium/660146d2708cef70c249f33235e06eb5_default.png"
+ },
+ {
+ "id": 14752336,
+ "username": "Necis",
+ "totalCosts": 37.37,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14752336/medium/208a2993fae0ba74355502af0dbf7bd4_default.png"
+ },
+ {
+ "id": 14865328,
+ "username": "Lostday",
+ "totalCosts": 14.14,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14865328/medium/16e7617eadda7d8511b4bcc3c6e5ae57_default.png"
+ },
+ {
+ "id": 14320782,
+ "username": "JoseDeFreitas",
+ "totalCosts": 12.12,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14320782/medium/db9b49609d804eb2048076de466d3162_default.png"
+ },
+ {
+ "id": 13510211,
+ "username": "MirageIonova",
+ "totalCosts": 6.06,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13510211/medium/f447099407b409a18ab34d7829683e43.png"
+ },
+ {
+ "id": 14964031,
+ "username": "Charlongolo",
+ "totalCosts": 5.05,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14964031/medium/1fcad8b23307ba5ad33dac76e91ee6a3.png"
+ },
+ {
+ "id": 14861960,
+ "username": "isaul",
+ "totalCosts": 4.04,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14861960/medium/96f44a8792e2cf800d5e2f1545bee4a3_default.png"
+ }
+ ]
+ },
+ {
+ "fileId": "3010",
+ "contributors": [
+ {
+ "id": 14948857,
+ "username": "ultralord97",
+ "totalCosts": 366.63,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14948857/medium/34c7ec153c8ed21b3c11340e8dda6641_default.png"
+ },
+ {
+ "id": 15553253,
+ "username": "EmelyGarcia",
+ "totalCosts": 351.48,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15553253/medium/2077ec790711bf21dd6cad91f776f003.png"
+ },
+ {
+ "id": 14702332,
+ "username": "joaquindeleonamerio",
+ "totalCosts": 209.07,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14702332/medium/f5e389288946c3f0bd1b305fdb383daf.jpg"
+ },
+ {
+ "id": 15085311,
+ "username": "bunturx",
+ "totalCosts": 108.07,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15085311/medium/ead5dd5aa5070be2f8d446c286f27d7a.jpeg"
+ },
+ {
+ "id": 14953547,
+ "username": "Tostaito",
+ "totalCosts": 82.82,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14953547/medium/49fb806cf50b5b40e0539f0bd1ef2445_default.png"
+ },
+ {
+ "id": 14865328,
+ "username": "Lostday",
+ "totalCosts": 70.7,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14865328/medium/16e7617eadda7d8511b4bcc3c6e5ae57_default.png"
+ },
+ {
+ "id": 14763374,
+ "username": "elmarceloc",
+ "totalCosts": 50.5,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14763374/medium/25a8ac3837c276bc3a9e89b158668552.png"
+ },
+ {
+ "id": 15155844,
+ "username": "CryptoSpace",
+ "totalCosts": 38.38,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15155844/medium/6e6407e27f509308774f480afe52ff7d.png"
+ },
+ {
+ "id": 15542547,
+ "username": "Andrew22123",
+ "totalCosts": 26.26,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15542547/medium/fffae8cd8da3c88db943d27cc0e4208b_default.png"
+ },
+ {
+ "id": 14631802,
+ "username": "edgargrau",
+ "totalCosts": 3.03,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14631802/medium/49b31ee9ceace460558cf61dcaaa1e2f.jpeg"
+ }
+ ]
+ },
+ {
+ "fileId": "3092",
+ "contributors": [
+ {
+ "id": 14481500,
+ "username": "Diana1941",
+ "totalCosts": 1012.02,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14481500/medium/4f38cf223b0db6882a77961b52ca9eb1_default.png"
+ },
+ {
+ "id": 15553253,
+ "username": "EmelyGarcia",
+ "totalCosts": 422.18,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15553253/medium/2077ec790711bf21dd6cad91f776f003.png"
+ },
+ {
+ "id": 15155844,
+ "username": "CryptoSpace",
+ "totalCosts": 19.19,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15155844/medium/6e6407e27f509308774f480afe52ff7d.png"
+ },
+ {
+ "id": 15255998,
+ "username": "rolandopiconnadales",
+ "totalCosts": 14.14,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15255998/medium/43dc1eaa54592e9e6c019bef41e1e4eb.jpeg"
+ },
+ {
+ "id": 15194310,
+ "username": "MGETH",
+ "totalCosts": 13.13,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15194310/medium/7729d9dbda8c9420c26f689b4a2b2918.jpg"
+ },
+ {
+ "id": 14631802,
+ "username": "edgargrau",
+ "totalCosts": 2.02,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14631802/medium/49b31ee9ceace460558cf61dcaaa1e2f.jpeg"
+ }
+ ]
+ },
+ {
+ "fileId": "3024",
+ "contributors": [
+ {
+ "id": 15194310,
+ "username": "MGETH",
+ "totalCosts": 9.09,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15194310/medium/7729d9dbda8c9420c26f689b4a2b2918.jpg"
+ },
+ {
+ "id": 16224092,
+ "username": "coscujin64",
+ "totalCosts": 7.07,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/16224092/medium/3d8af10f6adb207ed307b53a2942fe16.png"
+ },
+ {
+ "id": 14777840,
+ "username": "educordobac",
+ "totalCosts": 1.01,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14777840/medium/28e0c7c5a9b9377a04173c40e52eb5f2.jpeg"
+ },
+ {
+ "id": 15553253,
+ "username": "EmelyGarcia",
+ "totalCosts": 1.01,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15553253/medium/2077ec790711bf21dd6cad91f776f003.png"
+ },
+ {
+ "id": 14865328,
+ "username": "Lostday",
+ "totalCosts": 1.01,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14865328/medium/16e7617eadda7d8511b4bcc3c6e5ae57_default.png"
+ }
+ ]
+ },
+ {
+ "fileId": "3070",
+ "contributors": [
+ {
+ "id": 14652358,
+ "username": "Iberriak",
+ "totalCosts": 155.54,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14652358/medium/b670537abb6dfccf1ff57ac170a7d1ee.jpeg"
+ },
+ {
+ "id": 14865328,
+ "username": "Lostday",
+ "totalCosts": 145.44,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14865328/medium/16e7617eadda7d8511b4bcc3c6e5ae57_default.png"
+ },
+ {
+ "id": 15553253,
+ "username": "EmelyGarcia",
+ "totalCosts": 76.76,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15553253/medium/2077ec790711bf21dd6cad91f776f003.png"
+ },
+ {
+ "id": 15135505,
+ "username": "Andrea00P",
+ "totalCosts": 66.66,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15135505/medium/8e95dff743c0a7e4feedb53ef122eba5_default.png"
+ },
+ {
+ "id": 15506008,
+ "username": "RvalM",
+ "totalCosts": 31.31,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15506008/medium/4fc0dc01596dd2eaffca626acccd754c_default.png"
+ },
+ {
+ "id": 15373568,
+ "username": "erick.marro2000",
+ "totalCosts": 30.3,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15373568/medium/7c6f24a85885abafd0a8c67b450e71a8.png"
+ },
+ {
+ "id": 14935087,
+ "username": "Martinpons",
+ "totalCosts": 21.21,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14935087/medium/a96e2edf880e873237f137148aa343c1_default.png"
+ },
+ {
+ "id": 14987673,
+ "username": "vlunaram",
+ "totalCosts": 17.17,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14987673/medium/e34007ba233ab626cef7659c13a7d685_default.png"
+ },
+ {
+ "id": 16224092,
+ "username": "coscujin64",
+ "totalCosts": 7.07,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/16224092/medium/3d8af10f6adb207ed307b53a2942fe16.png"
+ },
+ {
+ "id": 14631802,
+ "username": "edgargrau",
+ "totalCosts": 2.02,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14631802/medium/49b31ee9ceace460558cf61dcaaa1e2f.jpeg"
+ }
+ ]
+ },
+ {
+ "fileId": "3110",
+ "contributors": [
+ {
+ "id": 15714091,
+ "username": "Karym_GG",
+ "totalCosts": 732.25,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15714091/medium/69afa2fb791e1be17640c54018cb4e2e_default.png"
+ },
+ {
+ "id": 15193964,
+ "username": "MrAlizarinCrimson",
+ "totalCosts": 68.68,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15193964/medium/c6d2e5c698abf1ad8d755ef78ebbe86b.jpg"
+ },
+ {
+ "id": 15946101,
+ "username": "w1lkns",
+ "totalCosts": 63.63,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15946101/medium/3d2813e6686c380c0a74b58d86b12c3d.jpeg"
+ },
+ {
+ "id": 15084601,
+ "username": "metanube",
+ "totalCosts": 1.01,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15084601/medium/7e8ee6ec15e9d0be68e2c6ff9a0b34c8_default.png"
+ }
+ ]
+ },
+ {
+ "fileId": "8003",
+ "contributors": [
+ {
+ "id": 15714091,
+ "username": "Karym_GG",
+ "totalCosts": 3403.7,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15714091/medium/69afa2fb791e1be17640c54018cb4e2e_default.png"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "lang": "fa",
+ "data": [
+ {
+ "fileId": "6161",
+ "contributors": [
+ {
+ "id": 15097099,
+ "username": "nader.sedigh",
+ "totalCosts": 151.5,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15097099/medium/4fca4ea357c99c5d605850315f21ae65.png"
+ }
+ ]
+ },
+ {
+ "fileId": "6163",
+ "contributors": [
+ {
+ "id": 15097099,
+ "username": "nader.sedigh",
+ "totalCosts": 347.44,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15097099/medium/4fca4ea357c99c5d605850315f21ae65.png"
+ },
+ {
+ "id": 15967119,
+ "username": "timtey",
+ "totalCosts": 94.94,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15967119/medium/cdc0fbd1e4667f13ed75ac64b4e6c809.jpeg"
+ },
+ {
+ "id": 15967125,
+ "username": "erfanej",
+ "totalCosts": 41.41,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15967125/medium/2223e574efc34243ef6e77236d77a6ba.png"
+ },
+ {
+ "id": 15233666,
+ "username": "Alifarhani",
+ "totalCosts": 33.33,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15233666/medium/deec4866c37352c795ed3d0000236714.jpeg"
+ }
+ ]
+ },
+ {
+ "fileId": "6185",
+ "contributors": [
+ {
+ "id": 15097099,
+ "username": "nader.sedigh",
+ "totalCosts": 266.64,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15097099/medium/4fca4ea357c99c5d605850315f21ae65.png"
+ },
+ {
+ "id": 15099529,
+ "username": "Aria-Naraghi",
+ "totalCosts": 47.47,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15099529/medium/77b12f03c6675c85ad45efc6f3e23be3_default.png"
+ },
+ {
+ "id": 15233666,
+ "username": "Alifarhani",
+ "totalCosts": 23.23,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15233666/medium/deec4866c37352c795ed3d0000236714.jpeg"
+ }
+ ]
+ },
+ {
+ "fileId": "6165",
+ "contributors": [
+ {
+ "id": 15233666,
+ "username": "Alifarhani",
+ "totalCosts": 23.23,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15233666/medium/deec4866c37352c795ed3d0000236714.jpeg"
+ },
+ {
+ "id": 15967119,
+ "username": "timtey",
+ "totalCosts": 21.21,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15967119/medium/cdc0fbd1e4667f13ed75ac64b4e6c809.jpeg"
+ }
+ ]
+ },
+ {
+ "fileId": "6167",
+ "contributors": [
+ {
+ "id": 15097099,
+ "username": "nader.sedigh",
+ "totalCosts": 451.47,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15097099/medium/4fca4ea357c99c5d605850315f21ae65.png"
+ },
+ {
+ "id": 15233666,
+ "username": "Alifarhani",
+ "totalCosts": 114.13,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15233666/medium/deec4866c37352c795ed3d0000236714.jpeg"
+ },
+ {
+ "id": 15099529,
+ "username": "Aria-Naraghi",
+ "totalCosts": 3.03,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15099529/medium/77b12f03c6675c85ad45efc6f3e23be3_default.png"
+ },
+ {
+ "id": 15967119,
+ "username": "timtey",
+ "totalCosts": 3.03,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15967119/medium/cdc0fbd1e4667f13ed75ac64b4e6c809.jpeg"
+ }
+ ]
+ },
+ {
+ "fileId": "5559",
+ "contributors": [
+ {
+ "id": 15074339,
+ "username": "mmp8103",
+ "totalCosts": 266.64,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15074339/medium/5199c5dafe0b10d9bf8a99c34ff3a277.png"
+ },
+ {
+ "id": 15855621,
+ "username": "subriper",
+ "totalCosts": 220.18,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15855621/medium/ab1a2868b313e6dfc113a754286d37d5.jpg"
+ },
+ {
+ "id": 15233666,
+ "username": "Alifarhani",
+ "totalCosts": 90.9,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15233666/medium/deec4866c37352c795ed3d0000236714.jpeg"
+ },
+ {
+ "id": 15097099,
+ "username": "nader.sedigh",
+ "totalCosts": 81.81,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15097099/medium/4fca4ea357c99c5d605850315f21ae65.png"
+ },
+ {
+ "id": 14814690,
+ "username": "khodaarahmi",
+ "totalCosts": 37.37,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14814690/medium/22dbf1e43823e76cb094bff3fdcca212.jpeg"
+ }
+ ]
+ },
+ {
+ "fileId": "5561",
+ "contributors": [
+ {
+ "id": 15099529,
+ "username": "Aria-Naraghi",
+ "totalCosts": 2924.96,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15099529/medium/77b12f03c6675c85ad45efc6f3e23be3_default.png"
+ },
+ {
+ "id": 15967119,
+ "username": "timtey",
+ "totalCosts": 158.57,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15967119/medium/cdc0fbd1e4667f13ed75ac64b4e6c809.jpeg"
+ },
+ {
+ "id": 14951357,
+ "username": "AH1309",
+ "totalCosts": 3.03,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14951357/medium/8791c0b99febb787a5293b1b8487a6a9_default.png"
+ }
+ ]
+ },
+ {
+ "fileId": "2766",
+ "contributors": [
+ {
+ "id": 14733070,
+ "username": "loopersosa",
+ "totalCosts": 435.31,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14733070/medium/14f75ef000001434196357bca4f22490.jpg"
+ },
+ {
+ "id": 15099529,
+ "username": "Aria-Naraghi",
+ "totalCosts": 290.88,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15099529/medium/77b12f03c6675c85ad45efc6f3e23be3_default.png"
+ },
+ {
+ "id": 15233666,
+ "username": "Alifarhani",
+ "totalCosts": 219.17,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15233666/medium/deec4866c37352c795ed3d0000236714.jpeg"
+ },
+ {
+ "id": 15002741,
+ "username": "dariusheslamipor",
+ "totalCosts": 205.03,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15002741/medium/368ee2e7888434a922e5781aa2c194bf.jpeg"
+ },
+ {
+ "id": 15097099,
+ "username": "nader.sedigh",
+ "totalCosts": 66.66,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15097099/medium/4fca4ea357c99c5d605850315f21ae65.png"
+ },
+ {
+ "id": 15967119,
+ "username": "timtey",
+ "totalCosts": 53.53,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15967119/medium/cdc0fbd1e4667f13ed75ac64b4e6c809.jpeg"
+ },
+ {
+ "id": 15967125,
+ "username": "erfanej",
+ "totalCosts": 17.17,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15967125/medium/2223e574efc34243ef6e77236d77a6ba.png"
+ },
+ {
+ "id": 14555882,
+ "username": "ElAmir",
+ "totalCosts": 4.04,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14555882/medium/47bd8403dc0a881324cf1d5aef976a7b.jpg"
+ },
+ {
+ "id": 15793733,
+ "username": "mahdishahabnia10",
+ "totalCosts": 2.02,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15793733/medium/530cfa36d26d8b01474098c8952b0478.png"
+ }
+ ]
+ },
+ {
+ "fileId": "2704",
+ "contributors": [
+ {
+ "id": 15947697,
+ "username": "mahdigachloo33",
+ "totalCosts": 712.05,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15947697/medium/6d060369501296118d0d9155a941096a.jpeg"
+ },
+ {
+ "id": 15099529,
+ "username": "Aria-Naraghi",
+ "totalCosts": 69.69,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15099529/medium/77b12f03c6675c85ad45efc6f3e23be3_default.png"
+ },
+ {
+ "id": 14555882,
+ "username": "ElAmir",
+ "totalCosts": 15.15,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14555882/medium/47bd8403dc0a881324cf1d5aef976a7b.jpg"
+ },
+ {
+ "id": 14733070,
+ "username": "loopersosa",
+ "totalCosts": 10.1,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14733070/medium/14f75ef000001434196357bca4f22490.jpg"
+ },
+ {
+ "id": 14665754,
+ "username": "R3z4_Pr0gramm3r",
+ "totalCosts": 3.03,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14665754/medium/72c1f853dc01a48166c2ac4476d4a63a.png"
+ },
+ {
+ "id": 15233666,
+ "username": "Alifarhani",
+ "totalCosts": 2.02,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15233666/medium/deec4866c37352c795ed3d0000236714.jpeg"
+ }
+ ]
+ },
+ {
+ "fileId": "2702",
+ "contributors": [
+ {
+ "id": 15967125,
+ "username": "erfanej",
+ "totalCosts": 604.99,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15967125/medium/2223e574efc34243ef6e77236d77a6ba.png"
},
{
@@ -13360,7 +14837,7 @@
{
"id": 15967125,
"username": "erfanej",
- "totalCosts": 293.91,
+ "totalCosts": 280.78,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15967125/medium/2223e574efc34243ef6e77236d77a6ba.png"
},
{
@@ -13372,7 +14849,7 @@
{
"id": 15967119,
"username": "timtey",
- "totalCosts": 83.83,
+ "totalCosts": 70.7,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15967119/medium/cdc0fbd1e4667f13ed75ac64b4e6c809.jpeg"
},
{
@@ -13459,7 +14936,7 @@
{
"id": 15967125,
"username": "erfanej",
- "totalCosts": 921.12,
+ "totalCosts": 741.34,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15967125/medium/2223e574efc34243ef6e77236d77a6ba.png"
},
{
@@ -13637,6 +15114,12 @@
"totalCosts": 19.19,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15233666/medium/deec4866c37352c795ed3d0000236714.jpeg"
},
+ {
+ "id": 16001243,
+ "username": "0xArkonomi",
+ "totalCosts": 15.15,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/16001243/medium/b75b58e1e84d60e633167eb068b1253e.jpg"
+ },
{
"id": 14665754,
"username": "R3z4_Pr0gramm3r",
@@ -13832,7 +15315,7 @@
{
"id": 15099529,
"username": "Aria-Naraghi",
- "totalCosts": 1754.37,
+ "totalCosts": 1740.23,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15099529/medium/77b12f03c6675c85ad45efc6f3e23be3_default.png"
},
{
@@ -13858,6 +15341,12 @@
{
"fileId": "5565",
"contributors": [
+ {
+ "id": 16279808,
+ "username": "alien_max",
+ "totalCosts": 269.67,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/16279808/medium/569d39880c4f22122a7b4a18290b56e5.png"
+ },
{
"id": 16001243,
"username": "0xArkonomi",
@@ -13908,7 +15397,7 @@
{
"id": 15955625,
"username": "Coiniran",
- "totalCosts": 676.7,
+ "totalCosts": 661.55,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15955625/medium/cea2317824f592725aac52fcd2eedb26_default.png"
},
{
@@ -14514,13 +16003,13 @@
{
"id": 15967119,
"username": "timtey",
- "totalCosts": 306.03,
+ "totalCosts": 281.79,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15967119/medium/cdc0fbd1e4667f13ed75ac64b4e6c809.jpeg"
},
{
"id": 15955625,
"username": "Coiniran",
- "totalCosts": 293.91,
+ "totalCosts": 269.67,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15955625/medium/cea2317824f592725aac52fcd2eedb26_default.png"
}
]
@@ -14576,31 +16065,31 @@
{
"id": 15955625,
"username": "Coiniran",
- "totalCosts": 3208.77,
+ "totalCosts": 3184.53,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15955625/medium/cea2317824f592725aac52fcd2eedb26_default.png"
},
{
"id": 15942179,
"username": "erfan1366erfan",
- "totalCosts": 1601.86,
+ "totalCosts": 1587.72,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15942179/medium/01f700e015f539a1262e058e281a8d9f.png"
},
{
"id": 15950767,
"username": "mahdi_ghasemi",
- "totalCosts": 41.41,
+ "totalCosts": 37.37,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15950767/medium/1afbe600b69aa04f13e882f27b84ad6c.jpg"
},
{
"id": 15967119,
"username": "timtey",
- "totalCosts": 23.23,
+ "totalCosts": 18.18,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15967119/medium/cdc0fbd1e4667f13ed75ac64b4e6c809.jpeg"
},
{
"id": 15967353,
"username": "sipbikardi",
- "totalCosts": 22.22,
+ "totalCosts": 12.12,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15967353/medium/bdbc4e456ff62160eead47d69c036137.jpg"
},
{
@@ -14628,14 +16117,20 @@
{
"id": 15955625,
"username": "Coiniran",
- "totalCosts": 1807.9,
+ "totalCosts": 1123.12,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15955625/medium/cea2317824f592725aac52fcd2eedb26_default.png"
},
{
"id": 15953233,
"username": "shakibashamloo72",
- "totalCosts": 109.08,
+ "totalCosts": 85.85,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15953233/medium/b0e24acd4c4cbb051af9f719a6cb55c4.jpeg"
+ },
+ {
+ "id": 16271482,
+ "username": "matinmirakhori",
+ "totalCosts": 56.56,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/16271482/medium/7585210123e73fb6091ce2dcb7f959b4_default.png"
}
]
},
@@ -14696,7 +16191,7 @@
{
"id": 15955625,
"username": "Coiniran",
- "totalCosts": 1055.45,
+ "totalCosts": 1034.24,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15955625/medium/cea2317824f592725aac52fcd2eedb26_default.png"
}
]
@@ -14707,13 +16202,13 @@
{
"id": 15955625,
"username": "Coiniran",
- "totalCosts": 666.6,
+ "totalCosts": 536.31,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15955625/medium/cea2317824f592725aac52fcd2eedb26_default.png"
},
{
"id": 15971303,
"username": "web3senior",
- "totalCosts": 108.07,
+ "totalCosts": 97.97,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15971303/medium/6f6d7db906ee32c836d3daf71181b5da.png"
}
]
@@ -14752,7 +16247,7 @@
{
"id": 15955625,
"username": "Coiniran",
- "totalCosts": 1733.16,
+ "totalCosts": 1712.96,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15955625/medium/cea2317824f592725aac52fcd2eedb26_default.png"
},
{
@@ -14896,7 +16391,7 @@
{
"id": 15109017,
"username": "mpoulin371",
- "totalCosts": 158.57,
+ "totalCosts": 151.5,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15109017/medium/40931e6324a057568f57519eb7706fc9.png"
},
{
@@ -14981,18 +16476,18 @@
"totalCosts": 68.68,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14956479/medium/342153a6e0540337ea2efae82b1b98d4.png"
},
- {
- "id": 15954931,
- "username": "XofEE",
- "totalCosts": 20.2,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15954931/medium/7254d648c451b822632980e5bfcb61fa.png"
- },
{
"id": 15095735,
"username": "nareymhd",
"totalCosts": 16.16,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15095735/medium/7061d769461e0a0d1f6ed83375b0c7f6.png"
},
+ {
+ "id": 15954931,
+ "username": "XofEE",
+ "totalCosts": 15.15,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15954931/medium/7254d648c451b822632980e5bfcb61fa.png"
+ },
{
"id": 12844463,
"username": "MATsxm",
@@ -15297,7 +16792,7 @@
{
"id": 12844463,
"username": "MATsxm",
- "totalCosts": 15.15,
+ "totalCosts": 9.09,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12844463/medium/6fae27edb4b41f363587f737ea2f96de.jpg"
}
]
@@ -15496,13 +16991,13 @@
{
"id": 15682041,
"username": "Joker71293921",
- "totalCosts": 1159.48,
+ "totalCosts": 1108.98,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15682041/medium/e62239d0be9e3327d12dd221caf5bd97.jpg"
},
{
"id": 14823260,
"username": "omahs",
- "totalCosts": 415.11,
+ "totalCosts": 407.03,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14823260/medium/2e90039ed53752ac5277c9cf4fce6fe7.jpeg"
},
{
@@ -15756,7 +17251,7 @@
{
"id": 15954931,
"username": "XofEE",
- "totalCosts": 1183.72,
+ "totalCosts": 1175.64,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15954931/medium/7254d648c451b822632980e5bfcb61fa.png"
},
{
@@ -15821,7 +17316,7 @@
{
"id": 15528915,
"username": "J4yD3v",
- "totalCosts": 335.32,
+ "totalCosts": 329.26,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15528915/medium/c334abf55946c66116d12971fd368f2d_default.png"
},
{
@@ -16080,7 +17575,7 @@
{
"id": 12844463,
"username": "MATsxm",
- "totalCosts": 2303.81,
+ "totalCosts": 2291.69,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12844463/medium/6fae27edb4b41f363587f737ea2f96de.jpg"
},
{
@@ -16120,7 +17615,7 @@
{
"id": 12844463,
"username": "MATsxm",
- "totalCosts": 562.57,
+ "totalCosts": 556.51,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12844463/medium/6fae27edb4b41f363587f737ea2f96de.jpg"
}
]
@@ -16292,6 +17787,12 @@
"totalCosts": 590.85,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15624473/medium/7790c08f2ef4a5ba028091b6393900be_default.png"
},
+ {
+ "id": 15466824,
+ "username": "Niainarisoa",
+ "totalCosts": 187.86,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15466824/medium/a5fd6d5af3cb8d37ce7784e9c70237a6.png"
+ },
{
"id": 15954931,
"username": "XofEE",
@@ -16581,7 +18082,7 @@
{
"id": 14823260,
"username": "omahs",
- "totalCosts": 577.72,
+ "totalCosts": 571.66,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14823260/medium/2e90039ed53752ac5277c9cf4fce6fe7.jpeg"
},
{
@@ -17329,7 +18830,7 @@
{
"id": 12844463,
"username": "MATsxm",
- "totalCosts": 66.66,
+ "totalCosts": 58.58,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12844463/medium/6fae27edb4b41f363587f737ea2f96de.jpg"
},
{
@@ -17557,7 +19058,7 @@
{
"id": 15426512,
"username": "Recktosaurus",
- "totalCosts": 639.33,
+ "totalCosts": 628.22,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15426512/medium/3d6568dc6e76931cee4766ecb4c3163a.jpg"
},
{
@@ -17680,7 +19181,7 @@
{
"id": 12844463,
"username": "MATsxm",
- "totalCosts": 161.6,
+ "totalCosts": 159.58,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12844463/medium/6fae27edb4b41f363587f737ea2f96de.jpg"
},
{
@@ -17773,7 +19274,7 @@
{
"id": 14711854,
"username": "Gamma-Software",
- "totalCosts": 86.86,
+ "totalCosts": 76.76,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14711854/medium/0ae62f880c9fdec755310b2d551953ae.jpeg"
},
{
@@ -19716,69 +21217,21 @@
{
"id": 14737644,
"username": "DylanCONIN",
- "totalCosts": 752.45,
+ "totalCosts": 364.61,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14737644/medium/d981e7d9ae1b98b7e8a21245675fc0e0.jpg"
},
- {
- "id": 12682536,
- "username": "Lulucmy",
- "totalCosts": 85.85,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12682536/medium/d53fc2fb046f9781090c1e4adcc7bcb3.png"
- },
{
"id": 14675712,
"username": "LEMIBANDDEXARI",
"totalCosts": 78.78,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14675712/medium/4344febb7140aae51808e858b8b86858.jpg"
},
- {
- "id": 15185884,
- "username": "carmen1912",
- "totalCosts": 54.54,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15185884/medium/0d349af8ba0364fdd96b55b46c40590c.jpg"
- },
- {
- "id": 17361,
- "username": "plamarque",
- "totalCosts": 31.31,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/17361/medium/fecfafa7716ac9d6838b43c31f48f6b9.png"
- },
- {
- "id": 13473469,
- "username": "jules.seigneur77",
- "totalCosts": 27.27,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13473469/medium/4118d6e220ce9b45529503a39159dc48.jpg"
- },
- {
- "id": 14075861,
- "username": "Kler",
- "totalCosts": 25.25,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14075861/medium/a3cf69cc209acc2c520607aab4d1c615.jpeg"
- },
- {
- "id": 15158630,
- "username": "breakthewall",
- "totalCosts": 16.16,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15158630/medium/b9a6bb842fd3c52dc0834af7a67522f5.jpeg"
- },
- {
- "id": 15318490,
- "username": "arthursw",
- "totalCosts": 15.15,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15318490/medium/673173431aeb53f29ca5516e9aa87bec_default.png"
- },
{
"id": 14587890,
"username": "Elikill58",
- "totalCosts": 15.15,
+ "totalCosts": 14.14,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14587890/medium/1d5b3a9de8a7b7f6082357f1fe99d654.jpeg"
},
- {
- "id": 15624473,
- "username": "CaverneCrypto",
- "totalCosts": 13.13,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15624473/medium/7790c08f2ef4a5ba028091b6393900be_default.png"
- },
{
"id": 15753095,
"username": "ctremblayperron",
@@ -19786,10 +21239,10 @@
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15753095/medium/bac57df7455d9809661f69e2bd8844e8.png"
},
{
- "id": 15528915,
- "username": "J4yD3v",
- "totalCosts": 2.02,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15528915/medium/c334abf55946c66116d12971fd368f2d_default.png"
+ "id": 12682536,
+ "username": "Lulucmy",
+ "totalCosts": 1.01,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12682536/medium/d53fc2fb046f9781090c1e4adcc7bcb3.png"
}
]
},
@@ -19933,7 +21386,7 @@
{
"id": 14823260,
"username": "omahs",
- "totalCosts": 67.67,
+ "totalCosts": 66.66,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14823260/medium/2e90039ed53752ac5277c9cf4fce6fe7.jpeg"
},
{
@@ -20712,31 +22165,31 @@
{
"id": 15689365,
"username": "Vitanergie",
- "totalCosts": 1543.28,
+ "totalCosts": 1524.09,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15689365/medium/69a7b82eee2a901151a0414599bdf30f_default.png"
},
{
"id": 15780197,
"username": "mane42120",
- "totalCosts": 968.59,
+ "totalCosts": 962.53,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15780197/medium/7e35936906ac293f0ef43741cba99215.png"
},
{
"id": 15442454,
"username": "Im-SpiETH",
- "totalCosts": 909,
+ "totalCosts": 903.95,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15442454/medium/860696ab89262fe98a0b888882d2b2da_default.png"
},
{
"id": 15732749,
"username": "Meedew",
- "totalCosts": 457.53,
+ "totalCosts": 442.38,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15732749/medium/d304869640e3e51803f3f3d72d285786.PNG"
},
{
"id": 17361,
"username": "plamarque",
- "totalCosts": 413.09,
+ "totalCosts": 397.94,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/17361/medium/fecfafa7716ac9d6838b43c31f48f6b9.png"
},
{
@@ -20772,7 +22225,7 @@
{
"id": 12844463,
"username": "MATsxm",
- "totalCosts": 32.32,
+ "totalCosts": 28.28,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12844463/medium/6fae27edb4b41f363587f737ea2f96de.jpg"
},
{
@@ -20781,12 +22234,6 @@
"totalCosts": 8.08,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15914449/medium/8d2590e4c534ca5125f1d70b6d9c71cc.jpeg"
},
- {
- "id": 14587728,
- "username": "Bennyhierry",
- "totalCosts": 4.04,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14587728/medium/5db6b643ec64fbe695ab618b21b91fd3_default.png"
- },
{
"id": 15768057,
"username": "Redeorts",
@@ -20941,7 +22388,7 @@
{
"id": 15624473,
"username": "CaverneCrypto",
- "totalCosts": 1756.39,
+ "totalCosts": 1752.35,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15624473/medium/7790c08f2ef4a5ba028091b6393900be_default.png"
},
{
@@ -20973,17 +22420,17 @@
"totalCosts": 928.19,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15185884/medium/0d349af8ba0364fdd96b55b46c40590c.jpg"
},
+ {
+ "id": 12844463,
+ "username": "MATsxm",
+ "totalCosts": 16.16,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12844463/medium/6fae27edb4b41f363587f737ea2f96de.jpg"
+ },
{
"id": 15829153,
"username": "Francoisc23",
"totalCosts": 15.15,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15829153/medium/8817724f0106278d9bdcb040991d7842_default.png"
- },
- {
- "id": 12844463,
- "username": "MATsxm",
- "totalCosts": 4.04,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12844463/medium/6fae27edb4b41f363587f737ea2f96de.jpg"
}
]
},
@@ -21471,7 +22918,7 @@
{
"id": 15949345,
"username": "mehdibouzit",
- "totalCosts": 38.38,
+ "totalCosts": 14.14,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15949345/medium/2eb9da6ad8eb6399c9aff2b21957916d.png"
}
]
@@ -21752,7 +23199,7 @@
{
"id": 12844463,
"username": "MATsxm",
- "totalCosts": 71.71,
+ "totalCosts": 85.85,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12844463/medium/6fae27edb4b41f363587f737ea2f96de.jpg"
}
]
@@ -21774,7 +23221,7 @@
{
"id": 14823260,
"username": "omahs",
- "totalCosts": 349.46,
+ "totalCosts": 211.09,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14823260/medium/2e90039ed53752ac5277c9cf4fce6fe7.jpeg"
},
{
@@ -21866,8 +23313,14 @@
{
"id": 12844463,
"username": "MATsxm",
- "totalCosts": 3.03,
+ "totalCosts": 58.58,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12844463/medium/6fae27edb4b41f363587f737ea2f96de.jpg"
+ },
+ {
+ "id": 15466824,
+ "username": "Niainarisoa",
+ "totalCosts": 39.39,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15466824/medium/a5fd6d5af3cb8d37ce7784e9c70237a6.png"
}
]
},
@@ -21896,6 +23349,12 @@
"username": "omahs",
"totalCosts": 224.22,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14823260/medium/2e90039ed53752ac5277c9cf4fce6fe7.jpeg"
+ },
+ {
+ "id": 15466824,
+ "username": "Niainarisoa",
+ "totalCosts": 19.19,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15466824/medium/a5fd6d5af3cb8d37ce7784e9c70237a6.png"
}
]
},
@@ -21974,7 +23433,7 @@
{
"id": 15954931,
"username": "XofEE",
- "totalCosts": 449.45,
+ "totalCosts": 432.28,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15954931/medium/7254d648c451b822632980e5bfcb61fa.png"
},
{
@@ -22353,15 +23812,21 @@
{
"id": 15954931,
"username": "XofEE",
- "totalCosts": 1796.79,
+ "totalCosts": 1112.01,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15954931/medium/7254d648c451b822632980e5bfcb61fa.png"
},
{
"id": 17361,
"username": "plamarque",
- "totalCosts": 731.24,
+ "totalCosts": 396.93,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/17361/medium/fecfafa7716ac9d6838b43c31f48f6b9.png"
},
+ {
+ "id": 16278488,
+ "username": "jimmy-martin",
+ "totalCosts": 21.21,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/16278488/medium/f6b89a52a7c0f643d801f5fabe0a1689.jpeg"
+ },
{
"id": 12844463,
"username": "MATsxm",
@@ -22427,7 +23892,7 @@
{
"id": 15914449,
"username": "CoinHoodie",
- "totalCosts": 1055.45,
+ "totalCosts": 1034.24,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15914449/medium/8d2590e4c534ca5125f1d70b6d9c71cc.jpeg"
}
]
@@ -22438,7 +23903,7 @@
{
"id": 15914449,
"username": "CoinHoodie",
- "totalCosts": 666.6,
+ "totalCosts": 536.31,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15914449/medium/8d2590e4c534ca5125f1d70b6d9c71cc.jpeg"
}
]
@@ -22489,7 +23954,7 @@
{
"id": 15914449,
"username": "CoinHoodie",
- "totalCosts": 1733.16,
+ "totalCosts": 1712.96,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15914449/medium/8d2590e4c534ca5125f1d70b6d9c71cc.jpeg"
}
]
@@ -22745,7 +24210,7 @@
{
"id": 15967185,
"username": "waseemnaik",
- "totalCosts": 1223.11,
+ "totalCosts": 1191.8,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15967185/medium/8544c16b7d24e687e63334d42c70d6dd.png"
},
{
@@ -22845,6 +24310,12 @@
"totalCosts": 191.9,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15956379/medium/435901b02d5b5f77c10fc06ff2c1c3e6.png"
},
+ {
+ "id": 16270318,
+ "username": "ishankjena",
+ "totalCosts": 98.98,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/16270318/medium/de2924fc5568c2afb654e7b567aea1f8.jpeg"
+ },
{
"id": 15967185,
"username": "waseemnaik",
@@ -22871,7 +24342,7 @@
{
"id": 15956379,
"username": "bhangbuddy",
- "totalCosts": 700.94,
+ "totalCosts": 686.8,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15956379/medium/435901b02d5b5f77c10fc06ff2c1c3e6.png"
},
{
@@ -23081,7 +24552,7 @@
{
"id": 15956379,
"username": "bhangbuddy",
- "totalCosts": 303,
+ "totalCosts": 283.81,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15956379/medium/435901b02d5b5f77c10fc06ff2c1c3e6.png"
},
{
@@ -23098,13 +24569,13 @@
{
"id": 15916347,
"username": "puru-khedre",
- "totalCosts": 1595.8,
+ "totalCosts": 1576.61,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15916347/medium/2310ee06d441291171855c0917fc542d.jpg"
},
{
"id": 15967185,
"username": "waseemnaik",
- "totalCosts": 1296.84,
+ "totalCosts": 1291.79,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15967185/medium/8544c16b7d24e687e63334d42c70d6dd.png"
},
{
@@ -23127,7 +24598,7 @@
{
"id": 15363678,
"username": "Dawyer",
- "totalCosts": 306.03,
+ "totalCosts": 281.79,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15363678/medium/50e493deacc1ae7d512f2b38aab07d00.png"
}
]
@@ -23277,7 +24748,7 @@
{
"id": 15965461,
"username": "Satglow",
- "totalCosts": 1008.99,
+ "totalCosts": 1015.05,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15965461/medium/d0c82c3b7d4885069b13e4b4dc3f2963_default.png"
},
{
@@ -23385,7 +24856,7 @@
{
"id": 15965461,
"username": "Satglow",
- "totalCosts": 31.31,
+ "totalCosts": 47.47,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15965461/medium/d0c82c3b7d4885069b13e4b4dc3f2963_default.png"
}
]
@@ -23396,7 +24867,7 @@
{
"id": 15965461,
"username": "Satglow",
- "totalCosts": 445.41,
+ "totalCosts": 458.54,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15965461/medium/d0c82c3b7d4885069b13e4b4dc3f2963_default.png"
},
{
@@ -23470,7 +24941,7 @@
{
"id": 15965461,
"username": "Satglow",
- "totalCosts": 1821.03,
+ "totalCosts": 1598.83,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15965461/medium/d0c82c3b7d4885069b13e4b4dc3f2963_default.png"
},
{
@@ -23578,7 +25049,7 @@
{
"id": 15965461,
"username": "Satglow",
- "totalCosts": 1608.93,
+ "totalCosts": 1637.21,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15965461/medium/d0c82c3b7d4885069b13e4b4dc3f2963_default.png"
},
{
@@ -23765,13 +25236,13 @@
{
"id": 15965461,
"username": "Satglow",
- "totalCosts": 800.93,
+ "totalCosts": 790.83,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15965461/medium/d0c82c3b7d4885069b13e4b4dc3f2963_default.png"
},
{
"id": 14357794,
"username": "robertdosa",
- "totalCosts": 89.89,
+ "totalCosts": 79.79,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14357794/medium/a28b741096516a710523b87d9ee07223.png"
}
]
@@ -23850,7 +25321,7 @@
{
"id": 15965461,
"username": "Satglow",
- "totalCosts": 3424.91,
+ "totalCosts": 3439.05,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15965461/medium/d0c82c3b7d4885069b13e4b4dc3f2963_default.png"
}
]
@@ -24003,13 +25474,13 @@
{
"id": 15965461,
"username": "Satglow",
- "totalCosts": 1555.4,
+ "totalCosts": 1446.32,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15965461/medium/d0c82c3b7d4885069b13e4b4dc3f2963_default.png"
},
{
"id": 14357794,
"username": "robertdosa",
- "totalCosts": 836.28,
+ "totalCosts": 448.44,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14357794/medium/a28b741096516a710523b87d9ee07223.png"
}
]
@@ -24057,17 +25528,17 @@
"totalCosts": 29.29,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14357794/medium/a28b741096516a710523b87d9ee07223.png"
},
- {
- "id": 15965461,
- "username": "Satglow",
- "totalCosts": 20.2,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15965461/medium/d0c82c3b7d4885069b13e4b4dc3f2963_default.png"
- },
{
"id": 14727038,
"username": "agolautner",
"totalCosts": 19.19,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14727038/medium/4150668cd11c03c029aeaaa44409248e.png"
+ },
+ {
+ "id": 15965461,
+ "username": "Satglow",
+ "totalCosts": 18.18,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15965461/medium/d0c82c3b7d4885069b13e4b4dc3f2963_default.png"
}
]
},
@@ -24077,7 +25548,7 @@
{
"id": 15965461,
"username": "Satglow",
- "totalCosts": 1782.65,
+ "totalCosts": 2096.76,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15965461/medium/d0c82c3b7d4885069b13e4b4dc3f2963_default.png"
},
{
@@ -24135,7 +25606,7 @@
{
"id": 15965461,
"username": "Satglow",
- "totalCosts": 251.49,
+ "totalCosts": 266.64,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15965461/medium/d0c82c3b7d4885069b13e4b4dc3f2963_default.png"
},
{
@@ -24255,7 +25726,7 @@
{
"id": 15965461,
"username": "Satglow",
- "totalCosts": 906.98,
+ "totalCosts": 903.95,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15965461/medium/d0c82c3b7d4885069b13e4b4dc3f2963_default.png"
}
]
@@ -24266,7 +25737,7 @@
{
"id": 15965461,
"username": "Satglow",
- "totalCosts": 320.17,
+ "totalCosts": 336.33,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15965461/medium/d0c82c3b7d4885069b13e4b4dc3f2963_default.png"
}
]
@@ -24344,7 +25815,7 @@
{
"id": 15965461,
"username": "Satglow",
- "totalCosts": 1669.53,
+ "totalCosts": 1664.48,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15965461/medium/d0c82c3b7d4885069b13e4b4dc3f2963_default.png"
}
]
@@ -24410,7 +25881,7 @@
{
"id": 15965461,
"username": "Satglow",
- "totalCosts": 306.03,
+ "totalCosts": 298.96,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15965461/medium/d0c82c3b7d4885069b13e4b4dc3f2963_default.png"
}
]
@@ -24454,7 +25925,7 @@
{
"id": 15965461,
"username": "Satglow",
- "totalCosts": 2472.48,
+ "totalCosts": 2555.3,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15965461/medium/d0c82c3b7d4885069b13e4b4dc3f2963_default.png"
}
]
@@ -24537,7 +26008,7 @@
{
"id": 15965461,
"username": "Satglow",
- "totalCosts": 1665.49,
+ "totalCosts": 1668.52,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15965461/medium/d0c82c3b7d4885069b13e4b4dc3f2963_default.png"
}
]
@@ -24548,7 +26019,7 @@
{
"id": 15965461,
"username": "Satglow",
- "totalCosts": 3235.03,
+ "totalCosts": 3210.79,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15965461/medium/d0c82c3b7d4885069b13e4b4dc3f2963_default.png"
}
]
@@ -24559,7 +26030,7 @@
{
"id": 15965461,
"username": "Satglow",
- "totalCosts": 158.57,
+ "totalCosts": 154.53,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15965461/medium/d0c82c3b7d4885069b13e4b4dc3f2963_default.png"
}
]
@@ -24858,7 +26329,7 @@
{
"id": 15965461,
"username": "Satglow",
- "totalCosts": 1820.02,
+ "totalCosts": 1540.25,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15965461/medium/d0c82c3b7d4885069b13e4b4dc3f2963_default.png"
}
]
@@ -24880,7 +26351,7 @@
{
"id": 15965461,
"username": "Satglow",
- "totalCosts": 1105.95,
+ "totalCosts": 1130.19,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15965461/medium/d0c82c3b7d4885069b13e4b4dc3f2963_default.png"
}
]
@@ -24913,7 +26384,7 @@
{
"id": 15965461,
"username": "Satglow",
- "totalCosts": 666.6,
+ "totalCosts": 631.25,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15965461/medium/d0c82c3b7d4885069b13e4b4dc3f2963_default.png"
}
]
@@ -24983,6 +26454,94 @@
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15965461/medium/d0c82c3b7d4885069b13e4b4dc3f2963_default.png"
}
]
+ },
+ {
+ "fileId": "7328",
+ "contributors": [
+ {
+ "id": 15965461,
+ "username": "Satglow",
+ "totalCosts": 151.5,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15965461/medium/d0c82c3b7d4885069b13e4b4dc3f2963_default.png"
+ }
+ ]
+ },
+ {
+ "fileId": "7340",
+ "contributors": [
+ {
+ "id": 15965461,
+ "username": "Satglow",
+ "totalCosts": 1816.99,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15965461/medium/d0c82c3b7d4885069b13e4b4dc3f2963_default.png"
+ }
+ ]
+ },
+ {
+ "fileId": "7334",
+ "contributors": [
+ {
+ "id": 15965461,
+ "username": "Satglow",
+ "totalCosts": 1016.06,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15965461/medium/d0c82c3b7d4885069b13e4b4dc3f2963_default.png"
+ }
+ ]
+ },
+ {
+ "fileId": "7336",
+ "contributors": [
+ {
+ "id": 15965461,
+ "username": "Satglow",
+ "totalCosts": 965.56,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15965461/medium/d0c82c3b7d4885069b13e4b4dc3f2963_default.png"
+ }
+ ]
+ },
+ {
+ "fileId": "7483",
+ "contributors": [
+ {
+ "id": 15965461,
+ "username": "Satglow",
+ "totalCosts": 773.66,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15965461/medium/d0c82c3b7d4885069b13e4b4dc3f2963_default.png"
+ }
+ ]
+ },
+ {
+ "fileId": "6568",
+ "contributors": [
+ {
+ "id": 15965461,
+ "username": "Satglow",
+ "totalCosts": 2327.04,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15965461/medium/d0c82c3b7d4885069b13e4b4dc3f2963_default.png"
+ }
+ ]
+ },
+ {
+ "fileId": "6572",
+ "contributors": [
+ {
+ "id": 15965461,
+ "username": "Satglow",
+ "totalCosts": 385.82,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15965461/medium/d0c82c3b7d4885069b13e4b4dc3f2963_default.png"
+ }
+ ]
+ },
+ {
+ "fileId": "8011",
+ "contributors": [
+ {
+ "id": 15965461,
+ "username": "Satglow",
+ "totalCosts": 1124.13,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15965461/medium/d0c82c3b7d4885069b13e4b4dc3f2963_default.png"
+ }
+ ]
}
]
},
@@ -25042,7 +26601,7 @@
{
"id": 14866604,
"username": "yeremiaryangunadi",
- "totalCosts": 160.59,
+ "totalCosts": 153.52,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14866604/medium/285a89179a206f3621ba14bf04085b27.png"
}
]
@@ -25088,7 +26647,7 @@
{
"id": 14708760,
"username": "hypebeans",
- "totalCosts": 11.11,
+ "totalCosts": 6.06,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14708760/medium/c99d5e08a676eaebe6f2a383a81222e1.jpg"
}
]
@@ -25487,7 +27046,7 @@
{
"id": 15934037,
"username": "fuji.anggara10",
- "totalCosts": 432.28,
+ "totalCosts": 406.02,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15934037/medium/e913f10d6d3550452e0b7c072e15aa40.jpeg"
},
{
@@ -25505,7 +27064,7 @@
{
"id": 15927303,
"username": "roifnaufal21",
- "totalCosts": 21.21,
+ "totalCosts": 8.08,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15927303/medium/e39f725004e850246a765bb86dddf780_default.png"
}
]
@@ -25545,7 +27104,7 @@
{
"id": 15934037,
"username": "fuji.anggara10",
- "totalCosts": 840.32,
+ "totalCosts": 839.31,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15934037/medium/e913f10d6d3550452e0b7c072e15aa40.jpeg"
},
{
@@ -25615,7 +27174,7 @@
{
"id": 15927303,
"username": "roifnaufal21",
- "totalCosts": 73.73,
+ "totalCosts": 24.24,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15927303/medium/e39f725004e850246a765bb86dddf780_default.png"
},
{
@@ -25686,22 +27245,22 @@
{
"fileId": "2860",
"contributors": [
- {
- "id": 15934037,
- "username": "fuji.anggara10",
- "totalCosts": 411.07,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15934037/medium/e913f10d6d3550452e0b7c072e15aa40.jpeg"
- },
{
"id": 15927303,
"username": "roifnaufal21",
"totalCosts": 396.93,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15927303/medium/e39f725004e850246a765bb86dddf780_default.png"
},
+ {
+ "id": 15934037,
+ "username": "fuji.anggara10",
+ "totalCosts": 330.27,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15934037/medium/e913f10d6d3550452e0b7c072e15aa40.jpeg"
+ },
{
"id": 14861756,
"username": "RahayuRafika_12",
- "totalCosts": 161.6,
+ "totalCosts": 80.8,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14861756/medium/68ce2b760b107d1cf2a5a1508aa8ee96.jpeg"
},
{
@@ -26109,7 +27668,7 @@
{
"id": 15927303,
"username": "roifnaufal21",
- "totalCosts": 22.22,
+ "totalCosts": 14.14,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15927303/medium/e39f725004e850246a765bb86dddf780_default.png"
},
{
@@ -26201,7 +27760,7 @@
{
"id": 15927303,
"username": "roifnaufal21",
- "totalCosts": 735.28,
+ "totalCosts": 724.17,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15927303/medium/e39f725004e850246a765bb86dddf780_default.png"
},
{
@@ -26340,7 +27899,7 @@
{
"id": 14866604,
"username": "yeremiaryangunadi",
- "totalCosts": 103.02,
+ "totalCosts": 92.92,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14866604/medium/285a89179a206f3621ba14bf04085b27.png"
}
]
@@ -27534,20 +29093,14 @@
{
"id": 14866604,
"username": "yeremiaryangunadi",
- "totalCosts": 955.46,
+ "totalCosts": 430.26,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14866604/medium/285a89179a206f3621ba14bf04085b27.png"
},
{
"id": 14861756,
"username": "RahayuRafika_12",
- "totalCosts": 359.56,
+ "totalCosts": 171.7,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14861756/medium/68ce2b760b107d1cf2a5a1508aa8ee96.jpeg"
- },
- {
- "id": 15934037,
- "username": "fuji.anggara10",
- "totalCosts": 200.99,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15934037/medium/e913f10d6d3550452e0b7c072e15aa40.jpeg"
}
]
},
@@ -27620,7 +29173,7 @@
{
"id": 14866604,
"username": "yeremiaryangunadi",
- "totalCosts": 1592.77,
+ "totalCosts": 1578.63,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14866604/medium/285a89179a206f3621ba14bf04085b27.png"
},
{
@@ -27711,6 +29264,12 @@
"totalCosts": 95.95,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15711553/medium/78d86636558fbd59511b5c714ae72f78.jpeg"
},
+ {
+ "id": 16251160,
+ "username": "rianchain",
+ "totalCosts": 32.32,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/16251160/medium/26d629279417cf8f3001bbb5d5b51e7d.png"
+ },
{
"id": 15752359,
"username": "feriywahyu",
@@ -27731,7 +29290,7 @@
{
"id": 15934037,
"username": "fuji.anggara10",
- "totalCosts": 673.67,
+ "totalCosts": 658.52,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15934037/medium/e913f10d6d3550452e0b7c072e15aa40.jpeg"
},
{
@@ -27901,7 +29460,7 @@
{
"id": 15775647,
"username": "utomo878",
- "totalCosts": 1577.62,
+ "totalCosts": 1546.31,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15775647/medium/e6c4302f1613714c53e496f87b61ae01.jpg"
},
{
@@ -28201,7 +29760,7 @@
{
"id": 15934037,
"username": "fuji.anggara10",
- "totalCosts": 306.03,
+ "totalCosts": 281.79,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15934037/medium/e913f10d6d3550452e0b7c072e15aa40.jpeg"
}
]
@@ -28274,13 +29833,13 @@
{
"id": 15934037,
"username": "fuji.anggara10",
- "totalCosts": 1490.76,
+ "totalCosts": 869.61,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15934037/medium/e913f10d6d3550452e0b7c072e15aa40.jpeg"
},
{
"id": 14861756,
"username": "RahayuRafika_12",
- "totalCosts": 317.14,
+ "totalCosts": 253.51,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14861756/medium/68ce2b760b107d1cf2a5a1508aa8ee96.jpeg"
}
]
@@ -28360,7 +29919,7 @@
{
"id": 15662523,
"username": "Jokowdd",
- "totalCosts": 1020.1,
+ "totalCosts": 998.89,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15662523/medium/a1bde18af96dc28c3fd1c1dd610e8896.JPG"
},
{
@@ -28377,7 +29936,7 @@
{
"id": 15927303,
"username": "roifnaufal21",
- "totalCosts": 666.6,
+ "totalCosts": 536.31,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15927303/medium/e39f725004e850246a765bb86dddf780_default.png"
}
]
@@ -28416,7 +29975,7 @@
{
"id": 14920051,
"username": "regislanderge",
- "totalCosts": 1706.9,
+ "totalCosts": 1686.7,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14920051/medium/9ba58eec03e143bcd1acbe5b2ecf8250.jpg"
},
{
@@ -28600,7 +30159,7 @@
{
"id": 14657804,
"username": "jhonnyvianello",
- "totalCosts": 108.07,
+ "totalCosts": 106.05,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14657804/medium/005d9fa70fdc5a4fcd818f63cf61e1a0.jpg"
},
{
@@ -28664,7 +30223,7 @@
{
"id": 13461670,
"username": "Herbie_23",
- "totalCosts": 33.33,
+ "totalCosts": 28.28,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13461670/medium/c9291075edb8582a7efe26fe983237e1.jpg"
},
{
@@ -29137,7 +30696,7 @@
{
"id": 13461670,
"username": "Herbie_23",
- "totalCosts": 1677.61,
+ "totalCosts": 1608.93,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13461670/medium/c9291075edb8582a7efe26fe983237e1.jpg"
},
{
@@ -29265,7 +30824,7 @@
{
"id": 13461670,
"username": "Herbie_23",
- "totalCosts": 1721.04,
+ "totalCosts": 1712.96,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13461670/medium/c9291075edb8582a7efe26fe983237e1.jpg"
},
{
@@ -29306,7 +30865,7 @@
{
"id": 15504286,
"username": "loscarlos",
- "totalCosts": 98.98,
+ "totalCosts": 92.92,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15504286/medium/49a3defb705ade665e9b711c1048e0c4_default.png"
},
{
@@ -29501,7 +31060,7 @@
{
"id": 13461670,
"username": "Herbie_23",
- "totalCosts": 1352.39,
+ "totalCosts": 1335.22,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13461670/medium/c9291075edb8582a7efe26fe983237e1.jpg"
},
{
@@ -29611,7 +31170,7 @@
{
"id": 15630617,
"username": "andrea0x.eth",
- "totalCosts": 39.39,
+ "totalCosts": 27.27,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15630617/medium/b03e6368819544b642a8371e0a875054.jpeg"
},
{
@@ -29645,7 +31204,7 @@
{
"id": 13461670,
"username": "Herbie_23",
- "totalCosts": 576.71,
+ "totalCosts": 570.65,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13461670/medium/c9291075edb8582a7efe26fe983237e1.jpg"
}
]
@@ -29864,7 +31423,7 @@
{
"id": 15266690,
"username": "Fuliggine",
- "totalCosts": 76.76,
+ "totalCosts": 27.27,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15266690/medium/beb929d96ab06718fce198051fdffaae.jpg"
}
]
@@ -29968,7 +31527,7 @@
{
"id": 13754187,
"username": "Carla78",
- "totalCosts": 723.16,
+ "totalCosts": 717.1,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13754187/medium/37de2106b564cdd5431a9c1f7e091087.png"
},
{
@@ -29977,18 +31536,18 @@
"totalCosts": 147.46,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13461670/medium/c9291075edb8582a7efe26fe983237e1.jpg"
},
- {
- "id": 15266690,
- "username": "Fuliggine",
- "totalCosts": 102.01,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15266690/medium/beb929d96ab06718fce198051fdffaae.jpg"
- },
{
"id": 14633448,
"username": "ilrado",
"totalCosts": 54.54,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14633448/medium/00e36a91231d5f6980f4ea96c1f24ab9.jpg"
},
+ {
+ "id": 15266690,
+ "username": "Fuliggine",
+ "totalCosts": 36.36,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15266690/medium/beb929d96ab06718fce198051fdffaae.jpg"
+ },
{
"id": 15185884,
"username": "carmen1912",
@@ -30549,7 +32108,7 @@
{
"id": 13461670,
"username": "Herbie_23",
- "totalCosts": 271.69,
+ "totalCosts": 263.61,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13461670/medium/c9291075edb8582a7efe26fe983237e1.jpg"
},
{
@@ -30693,7 +32252,7 @@
{
"id": 13461670,
"username": "Herbie_23",
- "totalCosts": 728.21,
+ "totalCosts": 717.1,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13461670/medium/c9291075edb8582a7efe26fe983237e1.jpg"
},
{
@@ -30750,7 +32309,7 @@
{
"id": 13461670,
"username": "Herbie_23",
- "totalCosts": 3660.24,
+ "totalCosts": 3658.22,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13461670/medium/c9291075edb8582a7efe26fe983237e1.jpg"
},
{
@@ -30807,13 +32366,13 @@
{
"id": 13461670,
"username": "Herbie_23",
- "totalCosts": 815.07,
+ "totalCosts": 804.97,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13461670/medium/c9291075edb8582a7efe26fe983237e1.jpg"
},
{
"id": 14686678,
"username": "ametel01",
- "totalCosts": 89.89,
+ "totalCosts": 79.79,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14686678/medium/42da64bc8743fcf14d7efc7aaebbd99f.jpeg"
}
]
@@ -31755,9 +33314,9 @@
},
{
"id": 13461670,
- "username": "GiorgioHerbie",
+ "username": "Herbie_23",
"totalCosts": 168.67,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13461670/medium/9093f2d7047615a270b4c00bc2abd595_default.png"
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13461670/medium/c9291075edb8582a7efe26fe983237e1.jpg"
}
]
},
@@ -32092,27 +33651,9 @@
{
"id": 14633448,
"username": "ilrado",
- "totalCosts": 782.75,
+ "totalCosts": 439.35,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14633448/medium/00e36a91231d5f6980f4ea96c1f24ab9.jpg"
},
- {
- "id": 13461670,
- "username": "Herbie_23",
- "totalCosts": 262.6,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13461670/medium/c9291075edb8582a7efe26fe983237e1.jpg"
- },
- {
- "id": 15185884,
- "username": "carmen1912",
- "totalCosts": 54.54,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15185884/medium/0d349af8ba0364fdd96b55b46c40590c.jpg"
- },
- {
- "id": 15587175,
- "username": "Mattimatt",
- "totalCosts": 36.36,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15587175/medium/04048242c04ed4e297073617103ca738_default.png"
- },
{
"id": 14657804,
"username": "jhonnyvianello",
@@ -32120,16 +33661,10 @@
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14657804/medium/005d9fa70fdc5a4fcd818f63cf61e1a0.jpg"
},
{
- "id": 14313472,
- "username": "ntotao",
- "totalCosts": 16.16,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14313472/medium/c09ed4450f8a65235c896745bd06abd0.jpg"
- },
- {
- "id": 15416538,
- "username": "g.gangemi98",
- "totalCosts": 2.02,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15416538/medium/c426736cce6799595393451976d898aa.jpeg"
+ "id": 13461670,
+ "username": "Herbie_23",
+ "totalCosts": 8.08,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13461670/medium/c9291075edb8582a7efe26fe983237e1.jpg"
}
]
},
@@ -32325,7 +33860,7 @@
{
"id": 13461670,
"username": "Herbie_23",
- "totalCosts": 320.17,
+ "totalCosts": 295.93,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13461670/medium/c9291075edb8582a7efe26fe983237e1.jpg"
}
]
@@ -32569,7 +34104,7 @@
{
"id": 13461670,
"username": "Herbie_23",
- "totalCosts": 1796.79,
+ "totalCosts": 1112.01,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13461670/medium/c9291075edb8582a7efe26fe983237e1.jpg"
},
{
@@ -32666,7 +34201,7 @@
{
"id": 13461670,
"username": "Herbie_23",
- "totalCosts": 1055.45,
+ "totalCosts": 1034.24,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13461670/medium/c9291075edb8582a7efe26fe983237e1.jpg"
}
]
@@ -32677,7 +34212,7 @@
{
"id": 13461670,
"username": "Herbie_23",
- "totalCosts": 666.6,
+ "totalCosts": 536.31,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13461670/medium/c9291075edb8582a7efe26fe983237e1.jpg"
}
]
@@ -32710,7 +34245,7 @@
{
"id": 13461670,
"username": "Herbie_23",
- "totalCosts": 1733.16,
+ "totalCosts": 1712.96,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13461670/medium/c9291075edb8582a7efe26fe983237e1.jpg"
}
]
@@ -32991,13 +34526,13 @@
{
"id": 15721133,
"username": "LucaPennella",
- "totalCosts": 1560.45,
+ "totalCosts": 1556.41,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15721133/medium/57413183f5da136c6e2546edbe8ff01d.png"
},
{
"id": 13461670,
"username": "Herbie_23",
- "totalCosts": 1278.66,
+ "totalCosts": 1258.46,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13461670/medium/c9291075edb8582a7efe26fe983237e1.jpg"
},
{
@@ -33032,7 +34567,7 @@
{
"id": 15416538,
"username": "g.gangemi98",
- "totalCosts": 422.18,
+ "totalCosts": 418.14,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15416538/medium/c426736cce6799595393451976d898aa.jpeg"
},
{
@@ -33197,7 +34732,7 @@
{
"id": 13461670,
"username": "Herbie_23",
- "totalCosts": 400.97,
+ "totalCosts": 262.6,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13461670/medium/c9291075edb8582a7efe26fe983237e1.jpg"
}
]
@@ -33565,13 +35100,13 @@
{
"id": 15102815,
"username": "vivi.miss.wed",
- "totalCosts": 128.27,
+ "totalCosts": 123.22,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15102815/medium/0d550a1a7342f65a5af52ee14ff723a9.jpeg"
},
{
"id": 14968267,
"username": "Dekicrypto",
- "totalCosts": 32.32,
+ "totalCosts": 30.3,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14968267/medium/d8a28f790e86204c5608ecdf54ec91eb_default.png"
},
{
@@ -33583,7 +35118,7 @@
{
"id": 15208868,
"username": "HiroyukiNaito",
- "totalCosts": 2.02,
+ "totalCosts": 5.05,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15208868/medium/4ed4a0a0659f1c63e52f395079aeb3c4.jpg"
}
]
@@ -33600,7 +35135,7 @@
{
"id": 15208868,
"username": "HiroyukiNaito",
- "totalCosts": 11.11,
+ "totalCosts": 165.64,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15208868/medium/4ed4a0a0659f1c63e52f395079aeb3c4.jpg"
},
{
@@ -33635,7 +35170,7 @@
{
"id": 15208868,
"username": "HiroyukiNaito",
- "totalCosts": 10.1,
+ "totalCosts": 14.14,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15208868/medium/4ed4a0a0659f1c63e52f395079aeb3c4.jpg"
}
]
@@ -33675,7 +35210,7 @@
{
"id": 15208868,
"username": "HiroyukiNaito",
- "totalCosts": 8.08,
+ "totalCosts": 29.29,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15208868/medium/4ed4a0a0659f1c63e52f395079aeb3c4.jpg"
}
]
@@ -33692,7 +35227,7 @@
{
"id": 15208868,
"username": "HiroyukiNaito",
- "totalCosts": 115.14,
+ "totalCosts": 127.26,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15208868/medium/4ed4a0a0659f1c63e52f395079aeb3c4.jpg"
}
]
@@ -33933,7 +35468,7 @@
{
"id": 15208868,
"username": "HiroyukiNaito",
- "totalCosts": 129.28,
+ "totalCosts": 123.22,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15208868/medium/4ed4a0a0659f1c63e52f395079aeb3c4.jpg"
},
{
@@ -34054,7 +35589,7 @@
{
"id": 15680077,
"username": "miyamo",
- "totalCosts": 1493.79,
+ "totalCosts": 1462.48,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15680077/medium/a9db402339c4ac996a32133a844692ef_default.png"
},
{
@@ -34066,7 +35601,7 @@
{
"id": 15208868,
"username": "HiroyukiNaito",
- "totalCosts": 56.56,
+ "totalCosts": 82.82,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15208868/medium/4ed4a0a0659f1c63e52f395079aeb3c4.jpg"
},
{
@@ -34248,7 +35783,7 @@
{
"id": 15208868,
"username": "HiroyukiNaito",
- "totalCosts": 2418.95,
+ "totalCosts": 2410.87,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15208868/medium/4ed4a0a0659f1c63e52f395079aeb3c4.jpg"
},
{
@@ -34283,7 +35818,7 @@
{
"id": 15208868,
"username": "HiroyukiNaito",
- "totalCosts": 657.51,
+ "totalCosts": 663.57,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15208868/medium/4ed4a0a0659f1c63e52f395079aeb3c4.jpg"
},
{
@@ -34324,13 +35859,13 @@
{
"id": 15649609,
"username": "ta1suke",
- "totalCosts": 1872.54,
+ "totalCosts": 1868.5,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15649609/medium/1c03845153fc375404b108070aef6a43.png"
},
{
"id": 15208868,
"username": "HiroyukiNaito",
- "totalCosts": 2.02,
+ "totalCosts": 7.07,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15208868/medium/4ed4a0a0659f1c63e52f395079aeb3c4.jpg"
}
]
@@ -34528,7 +36063,7 @@
{
"id": 15208868,
"username": "HiroyukiNaito",
- "totalCosts": 414.1,
+ "totalCosts": 440.36,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15208868/medium/4ed4a0a0659f1c63e52f395079aeb3c4.jpg"
},
{
@@ -34610,7 +36145,7 @@
{
"id": 15208868,
"username": "HiroyukiNaito",
- "totalCosts": 1646.3,
+ "totalCosts": 1662.46,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15208868/medium/4ed4a0a0659f1c63e52f395079aeb3c4.jpg"
},
{
@@ -34758,7 +36293,7 @@
{
"id": 15208868,
"username": "HiroyukiNaito",
- "totalCosts": 429.25,
+ "totalCosts": 442.38,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15208868/medium/4ed4a0a0659f1c63e52f395079aeb3c4.jpg"
},
{
@@ -34916,7 +36451,7 @@
{
"id": 15208868,
"username": "HiroyukiNaito",
- "totalCosts": 988.79,
+ "totalCosts": 827.19,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15208868/medium/4ed4a0a0659f1c63e52f395079aeb3c4.jpg"
},
{
@@ -35109,7 +36644,7 @@
{
"id": 15208868,
"username": "HiroyukiNaito",
- "totalCosts": 3460.26,
+ "totalCosts": 3463.29,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15208868/medium/4ed4a0a0659f1c63e52f395079aeb3c4.jpg"
},
{
@@ -35213,7 +36748,7 @@
{
"id": 15208868,
"username": "HiroyukiNaito",
- "totalCosts": 168.67,
+ "totalCosts": 178.77,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15208868/medium/4ed4a0a0659f1c63e52f395079aeb3c4.jpg"
},
{
@@ -35283,7 +36818,7 @@
{
"id": 15208868,
"username": "HiroyukiNaito",
- "totalCosts": 672.66,
+ "totalCosts": 700.94,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15208868/medium/4ed4a0a0659f1c63e52f395079aeb3c4.jpg"
},
{
@@ -35300,7 +36835,7 @@
{
"id": 15208868,
"username": "HiroyukiNaito",
- "totalCosts": 741.34,
+ "totalCosts": 752.45,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15208868/medium/4ed4a0a0659f1c63e52f395079aeb3c4.jpg"
},
{
@@ -35555,13 +37090,13 @@
{
"id": 15208868,
"username": "HiroyukiNaito",
- "totalCosts": 76.76,
+ "totalCosts": 84.84,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15208868/medium/4ed4a0a0659f1c63e52f395079aeb3c4.jpg"
},
{
"id": 15427130,
"username": "universay",
- "totalCosts": 40.4,
+ "totalCosts": 32.32,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15427130/medium/67a9892e5cdc1c7711bbc9698c3f4962.jpg"
},
{
@@ -35735,7 +37270,7 @@
{
"id": 15208868,
"username": "HiroyukiNaito",
- "totalCosts": 773.66,
+ "totalCosts": 762.55,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15208868/medium/4ed4a0a0659f1c63e52f395079aeb3c4.jpg"
},
{
@@ -35798,13 +37333,13 @@
{
"id": 15135089,
"username": "indwm",
- "totalCosts": 3617.82,
+ "totalCosts": 3615.8,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15135089/medium/ad0dde7b6943eb1bdc2b8c64223dd070.png"
},
{
"id": 15208868,
"username": "HiroyukiNaito",
- "totalCosts": 1222.1,
+ "totalCosts": 1247.35,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15208868/medium/4ed4a0a0659f1c63e52f395079aeb3c4.jpg"
}
]
@@ -35885,13 +37420,13 @@
{
"id": 15208868,
"username": "HiroyukiNaito",
- "totalCosts": 167.66,
+ "totalCosts": 157.56,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15208868/medium/4ed4a0a0659f1c63e52f395079aeb3c4.jpg"
},
{
"id": 14880458,
"username": "sekisanchi",
- "totalCosts": 90.9,
+ "totalCosts": 80.8,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14880458/medium/6b71180a926d6213e33b21e50df8e409_default.png"
},
{
@@ -36082,7 +37617,7 @@
{
"id": 15208868,
"username": "HiroyukiNaito",
- "totalCosts": 3157.26,
+ "totalCosts": 3171.4,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15208868/medium/4ed4a0a0659f1c63e52f395079aeb3c4.jpg"
},
{
@@ -37410,44 +38945,32 @@
{
"id": 15208868,
"username": "HiroyukiNaito",
- "totalCosts": 600.95,
+ "totalCosts": 196.95,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15208868/medium/4ed4a0a0659f1c63e52f395079aeb3c4.jpg"
},
{
"id": 14880458,
"username": "sekisanchi",
- "totalCosts": 328.25,
+ "totalCosts": 125.24,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14880458/medium/6b71180a926d6213e33b21e50df8e409_default.png"
},
- {
- "id": 14730036,
- "username": "shoyu",
- "totalCosts": 124.23,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14730036/medium/3f53daf0320c8412a99de867a0ca6d2c_default.png"
- },
{
"id": 15133461,
"username": "ANorton",
"totalCosts": 24.24,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15133461/medium/fd9fdd0fe067cbc1731e8bcc7edf9bac_default.png"
},
- {
- "id": 14395884,
- "username": "Frodo821",
- "totalCosts": 18.18,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14395884/medium/be6488d24fd9f5ff7ac7d461e6cd6758.jpeg"
- },
{
"id": 15242922,
"username": "nsugimoto",
- "totalCosts": 16.16,
+ "totalCosts": 12.12,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15242922/medium/80daa04f1516da24f438a0243036dd09_default.png"
},
{
- "id": 15488702,
- "username": "nonno",
- "totalCosts": 15.15,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15488702/medium/05e244b35702080883c4e5730ef4d1e5.jpeg"
+ "id": 14395884,
+ "username": "Frodo821",
+ "totalCosts": 5.05,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14395884/medium/be6488d24fd9f5ff7ac7d461e6cd6758.jpeg"
},
{
"id": 15084773,
@@ -37530,18 +39053,18 @@
"totalCosts": 37.37,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14852734/medium/da1e9138c30b0fbcfd54f987a7e55328.jpg"
},
+ {
+ "id": 15208868,
+ "username": "HiroyukiNaito",
+ "totalCosts": 25.25,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15208868/medium/4ed4a0a0659f1c63e52f395079aeb3c4.jpg"
+ },
{
"id": 14942697,
"username": "cclefjp",
"totalCosts": 12.12,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14942697/medium/f0b6f7427184742914c4e061e485ecf0.jpeg"
},
- {
- "id": 15208868,
- "username": "HiroyukiNaito",
- "totalCosts": 11.11,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15208868/medium/4ed4a0a0659f1c63e52f395079aeb3c4.jpg"
- },
{
"id": 14880458,
"username": "sekisanchi",
@@ -37655,7 +39178,7 @@
{
"id": 15208868,
"username": "HiroyukiNaito",
- "totalCosts": 334.31,
+ "totalCosts": 349.46,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15208868/medium/4ed4a0a0659f1c63e52f395079aeb3c4.jpg"
},
{
@@ -37722,6 +39245,12 @@
"totalCosts": 88.88,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15135089/medium/ad0dde7b6943eb1bdc2b8c64223dd070.png"
},
+ {
+ "id": 16274540,
+ "username": "Buyabuya",
+ "totalCosts": 82.82,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/16274540/medium/fff14edb8869578304921016a436ab18.jpeg"
+ },
{
"id": 15208868,
"username": "HiroyukiNaito",
@@ -37896,6 +39425,12 @@
"totalCosts": 86.86,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15242922/medium/80daa04f1516da24f438a0243036dd09_default.png"
},
+ {
+ "id": 16274540,
+ "username": "Buyabuya",
+ "totalCosts": 22.22,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/16274540/medium/fff14edb8869578304921016a436ab18.jpeg"
+ },
{
"id": 15369914,
"username": "Rt3mis10",
@@ -38029,7 +39564,7 @@
{
"id": 15680077,
"username": "miyamo",
- "totalCosts": 3210.79,
+ "totalCosts": 3186.55,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15680077/medium/a9db402339c4ac996a32133a844692ef_default.png"
},
{
@@ -38107,7 +39642,7 @@
{
"id": 15208868,
"username": "HiroyukiNaito",
- "totalCosts": 1433.19,
+ "totalCosts": 1416.02,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15208868/medium/4ed4a0a0659f1c63e52f395079aeb3c4.jpg"
}
]
@@ -38118,7 +39653,7 @@
{
"id": 15208868,
"username": "HiroyukiNaito",
- "totalCosts": 1671.55,
+ "totalCosts": 1659.43,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15208868/medium/4ed4a0a0659f1c63e52f395079aeb3c4.jpg"
},
{
@@ -38141,7 +39676,7 @@
{
"id": 15208868,
"username": "HiroyukiNaito",
- "totalCosts": 1008.99,
+ "totalCosts": 999.9,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15208868/medium/4ed4a0a0659f1c63e52f395079aeb3c4.jpg"
},
{
@@ -38164,13 +39699,13 @@
{
"id": 15208868,
"username": "HiroyukiNaito",
- "totalCosts": 583.78,
+ "totalCosts": 577.72,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15208868/medium/4ed4a0a0659f1c63e52f395079aeb3c4.jpg"
},
{
"id": 15384904,
"username": "_Sakura_",
- "totalCosts": 429.25,
+ "totalCosts": 423.19,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15384904/medium/c2c00eb3c10ba62f1b8fee328e145fa6_default.png"
}
]
@@ -38203,7 +39738,7 @@
{
"id": 15208868,
"username": "HiroyukiNaito",
- "totalCosts": 1107.97,
+ "totalCosts": 1130.19,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15208868/medium/4ed4a0a0659f1c63e52f395079aeb3c4.jpg"
}
]
@@ -38225,8 +39760,14 @@
{
"id": 15208868,
"username": "HiroyukiNaito",
- "totalCosts": 1055.45,
+ "totalCosts": 1034.24,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15208868/medium/4ed4a0a0659f1c63e52f395079aeb3c4.jpg"
+ },
+ {
+ "id": 16274540,
+ "username": "Buyabuya",
+ "totalCosts": 21.21,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/16274540/medium/fff14edb8869578304921016a436ab18.jpeg"
}
]
},
@@ -38236,8 +39777,14 @@
{
"id": 15208868,
"username": "HiroyukiNaito",
- "totalCosts": 668.62,
+ "totalCosts": 538.33,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15208868/medium/4ed4a0a0659f1c63e52f395079aeb3c4.jpg"
+ },
+ {
+ "id": 16274540,
+ "username": "Buyabuya",
+ "totalCosts": 94.94,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/16274540/medium/fff14edb8869578304921016a436ab18.jpeg"
}
]
},
@@ -38269,7 +39816,7 @@
{
"id": 15208868,
"username": "HiroyukiNaito",
- "totalCosts": 1733.16,
+ "totalCosts": 1712.96,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15208868/medium/4ed4a0a0659f1c63e52f395079aeb3c4.jpg"
}
]
@@ -38302,8 +39849,14 @@
{
"id": 15208868,
"username": "HiroyukiNaito",
- "totalCosts": 1820.02,
+ "totalCosts": 1217.05,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15208868/medium/4ed4a0a0659f1c63e52f395079aeb3c4.jpg"
+ },
+ {
+ "id": 16274540,
+ "username": "Buyabuya",
+ "totalCosts": 305.02,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/16274540/medium/fff14edb8869578304921016a436ab18.jpeg"
}
]
},
@@ -38358,7 +39911,7 @@
{
"id": 15208868,
"username": "HiroyukiNaito",
- "totalCosts": 543.38,
+ "totalCosts": 547.42,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15208868/medium/4ed4a0a0659f1c63e52f395079aeb3c4.jpg"
}
]
@@ -38553,6 +40106,12 @@
"totalCosts": 16.16,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13471138/medium/2d75a021ff9aad863e9ea3435aa3c682_default.png"
},
+ {
+ "id": 13903009,
+ "username": "igntsh",
+ "totalCosts": 15.15,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13903009/medium/04ae0d1fd930da54d2c40b2d5e37e31c.jpg"
+ },
{
"id": 14362948,
"username": "jcxmt125",
@@ -38602,7 +40161,7 @@
{
"id": 15442454,
"username": "Im-SpiETH",
- "totalCosts": 1611.96,
+ "totalCosts": 1580.65,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15442454/medium/860696ab89262fe98a0b888882d2b2da_default.png"
},
{
@@ -38663,17 +40222,17 @@
{
"fileId": "2680",
"contributors": [
- {
- "id": 14261470,
- "username": "DHtheCreator",
- "totalCosts": 16.16,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14261470/medium/78d6d680bab6a88f1b8df92013bee804.jpg"
- },
{
"id": 15328532,
"username": "Seung_Gi_Kim",
- "totalCosts": 15.15,
+ "totalCosts": 11.11,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15328532/medium/78e4ff5d50b928c2aea8ff50b2ff1c39.jpg"
+ },
+ {
+ "id": 14261470,
+ "username": "DHtheCreator",
+ "totalCosts": 10.1,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14261470/medium/78d6d680bab6a88f1b8df92013bee804.jpg"
}
]
},
@@ -38683,7 +40242,7 @@
{
"id": 15105599,
"username": "SaturnPiece",
- "totalCosts": 1810.93,
+ "totalCosts": 1796.79,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15105599/medium/a3e031fc91bbbf728f3bb5dd384e8400_default.png"
},
{
@@ -38921,7 +40480,7 @@
{
"id": 15430302,
"username": "kwangtaekim",
- "totalCosts": 1333.2,
+ "totalCosts": 1314.01,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15430302/medium/705b3a29a93430236982b318c9131fcf.png"
},
{
@@ -39127,7 +40686,7 @@
{
"id": 15084373,
"username": "tarcanhursit",
- "totalCosts": 158.57,
+ "totalCosts": 151.5,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15084373/medium/63831adb2cf079020b094666d47417fd.jpg"
}
]
@@ -39254,7 +40813,7 @@
{
"id": 15084373,
"username": "tarcanhursit",
- "totalCosts": 2034.14,
+ "totalCosts": 2020,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15084373/medium/63831adb2cf079020b094666d47417fd.jpg"
}
]
@@ -39288,7 +40847,7 @@
{
"id": 15958911,
"username": "charlaiz",
- "totalCosts": 562.57,
+ "totalCosts": 547.42,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15958911/medium/8f11adb77af544d9fd33ec842e035832_default.png"
},
{
@@ -39412,7 +40971,7 @@
{
"id": 15750423,
"username": "less_explorer",
- "totalCosts": 972.63,
+ "totalCosts": 949.4,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15750423/medium/44085a2751d1f337f4e4aee5459b2ccf.jpg"
},
{
@@ -39424,7 +40983,7 @@
{
"id": 15084373,
"username": "tarcanhursit",
- "totalCosts": 225.23,
+ "totalCosts": 217.15,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15084373/medium/63831adb2cf079020b094666d47417fd.jpg"
}
]
@@ -39527,7 +41086,7 @@
{
"id": 15894449,
"username": "wosek_",
- "totalCosts": 159.58,
+ "totalCosts": 174.73,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15894449/medium/a1d92e3a822252a09f842a8a5451c403.jpg"
},
{
@@ -39579,13 +41138,13 @@
{
"id": 15771025,
"username": "Andrzej1072",
- "totalCosts": 1606.91,
+ "totalCosts": 1575.6,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15771025/medium/e70215b910c59f0fa39516bbbe11c35d.png"
},
{
"id": 15894449,
"username": "wosek_",
- "totalCosts": 34.34,
+ "totalCosts": 88.88,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15894449/medium/a1d92e3a822252a09f842a8a5451c403.jpg"
}
]
@@ -39821,7 +41380,7 @@
{
"id": 15894449,
"username": "wosek_",
- "totalCosts": 28.28,
+ "totalCosts": 27.27,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15894449/medium/a1d92e3a822252a09f842a8a5451c403.jpg"
},
{
@@ -39867,13 +41426,13 @@
{
"id": 15284800,
"username": "msliwinski123",
- "totalCosts": 247.45,
+ "totalCosts": 197.96,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15284800/medium/a5707bdd7287b30379bd9c3cb122ef9b.png"
},
{
"id": 15894449,
"username": "wosek_",
- "totalCosts": 142.41,
+ "totalCosts": 112.11,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15894449/medium/a1d92e3a822252a09f842a8a5451c403.jpg"
}
]
@@ -40014,6 +41573,12 @@
"totalCosts": 90.9,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15894449/medium/a1d92e3a822252a09f842a8a5451c403.jpg"
},
+ {
+ "id": 16278518,
+ "username": "DrEverr",
+ "totalCosts": 51.51,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/16278518/medium/9eef3c0b6429bc9a434a60c15d879ea5.jpeg"
+ },
{
"id": 14775946,
"username": "Beas",
@@ -40334,7 +41899,7 @@
{
"id": 14775946,
"username": "Beas",
- "totalCosts": 90.9,
+ "totalCosts": 80.8,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14775946/medium/22ad4db44fa2f657ec257775cddc899c.jpg"
}
]
@@ -40904,32 +42469,20 @@
{
"id": 14775946,
"username": "Beas",
- "totalCosts": 839.31,
+ "totalCosts": 449.45,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14775946/medium/22ad4db44fa2f657ec257775cddc899c.jpg"
},
- {
- "id": 15071649,
- "username": "budomcity",
- "totalCosts": 91.91,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15071649/medium/0ae631185ea5bf1ae0215a74903d1c8d.png"
- },
- {
- "id": 15809583,
- "username": "mn895532",
- "totalCosts": 61.61,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15809583/medium/e63f59ae9d5cb8307bd4d5f5d23be4a4.jpeg"
- },
- {
- "id": 15894449,
- "username": "wosek_",
- "totalCosts": 25.25,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15894449/medium/a1d92e3a822252a09f842a8a5451c403.jpg"
- },
{
"id": 15483158,
"username": "Buki92",
"totalCosts": 4.04,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15483158/medium/47aea7d184be65fcf5ab1d5f8749ca4e_default.png"
+ },
+ {
+ "id": 15071649,
+ "username": "budomcity",
+ "totalCosts": 1.01,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15071649/medium/0ae631185ea5bf1ae0215a74903d1c8d.png"
}
]
},
@@ -41048,7 +42601,7 @@
{
"id": 15894449,
"username": "wosek_",
- "totalCosts": 371.68,
+ "totalCosts": 356.53,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15894449/medium/a1d92e3a822252a09f842a8a5451c403.jpg"
},
{
@@ -41227,7 +42780,7 @@
{
"id": 14933675,
"username": "JuliannaMlynarska",
- "totalCosts": 158.57,
+ "totalCosts": 151.5,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14933675/medium/0a154caf851ba66ad323ab1b30379663.jpg"
}
]
@@ -41238,7 +42791,7 @@
{
"id": 15894449,
"username": "wosek_",
- "totalCosts": 722.15,
+ "totalCosts": 726.19,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15894449/medium/a1d92e3a822252a09f842a8a5451c403.jpg"
},
{
@@ -41267,7 +42820,7 @@
{
"id": 15894449,
"username": "wosek_",
- "totalCosts": 303,
+ "totalCosts": 297.95,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15894449/medium/a1d92e3a822252a09f842a8a5451c403.jpg"
},
{
@@ -41335,7 +42888,7 @@
{
"id": 15894449,
"username": "wosek_",
- "totalCosts": 217.15,
+ "totalCosts": 226.24,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15894449/medium/a1d92e3a822252a09f842a8a5451c403.jpg"
},
{
@@ -41566,7 +43119,7 @@
{
"id": 15894449,
"username": "wosek_",
- "totalCosts": 1631.15,
+ "totalCosts": 1611.96,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15894449/medium/a1d92e3a822252a09f842a8a5451c403.jpg"
},
{
@@ -41583,7 +43136,7 @@
{
"id": 15894449,
"username": "wosek_",
- "totalCosts": 3210.79,
+ "totalCosts": 3186.55,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15894449/medium/a1d92e3a822252a09f842a8a5451c403.jpg"
},
{
@@ -41600,7 +43153,7 @@
{
"id": 15894449,
"username": "wosek_",
- "totalCosts": 306.03,
+ "totalCosts": 281.79,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15894449/medium/a1d92e3a822252a09f842a8a5451c403.jpg"
}
]
@@ -41709,7 +43262,7 @@
{
"id": 14702518,
"username": "Byrde",
- "totalCosts": 158.57,
+ "totalCosts": 151.5,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14702518/medium/cc9b682031319fe073d73822ee71f11a_default.png"
},
{
@@ -41883,7 +43436,7 @@
{
"id": 13986387,
"username": "rafarocha",
- "totalCosts": 375.72,
+ "totalCosts": 237.35,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13986387/medium/72bb87143f2a8d013cddac84c4e2afac.jpg"
}
]
@@ -42062,6 +43615,12 @@
"totalCosts": 30.3,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15121067/medium/7622a32578aec0440b8e01743f23435f.png"
},
+ {
+ "id": 15422032,
+ "username": "Fritzhoy",
+ "totalCosts": 12.12,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15422032/medium/a2df65c9d9309dec39402a0175f3a57f.png"
+ },
{
"id": 15515516,
"username": "MCreimer",
@@ -42146,7 +43705,7 @@
{
"id": 13986387,
"username": "rafarocha",
- "totalCosts": 232.3,
+ "totalCosts": 226.24,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13986387/medium/72bb87143f2a8d013cddac84c4e2afac.jpg"
},
{
@@ -42264,6 +43823,12 @@
"totalCosts": 520.15,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15454064/medium/9a469555fbc3d3c781b12b438d7f0211_default.png"
},
+ {
+ "id": 15422032,
+ "username": "Fritzhoy",
+ "totalCosts": 71.71,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15422032/medium/a2df65c9d9309dec39402a0175f3a57f.png"
+ },
{
"id": 15317682,
"username": "junowoz",
@@ -42313,7 +43878,7 @@
{
"id": 13986387,
"username": "rafarocha",
- "totalCosts": 1076.66,
+ "totalCosts": 1007.98,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13986387/medium/72bb87143f2a8d013cddac84c4e2afac.jpg"
},
{
@@ -42542,7 +44107,7 @@
{
"id": 13986387,
"username": "rafarocha",
- "totalCosts": 820.12,
+ "totalCosts": 814.06,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13986387/medium/72bb87143f2a8d013cddac84c4e2afac.jpg"
},
{
@@ -42583,7 +44148,7 @@
{
"id": 15515516,
"username": "MCreimer",
- "totalCosts": 1856.38,
+ "totalCosts": 1852.34,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15515516/medium/cad56d6fa7c03af94b18ead23e791019.png"
},
{
@@ -42741,12 +44306,6 @@
"totalCosts": 32.32,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14733026/medium/ffb6aa67fea863e4898aa8a6e5c69e87.jpeg"
},
- {
- "id": 15661337,
- "username": "dariovlopes",
- "totalCosts": 14.14,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15661337/medium/7bdad35b42bb2e81620660e6456a90f9.jpeg"
- },
{
"id": 14631192,
"username": "rafael.yanase",
@@ -42808,7 +44367,7 @@
{
"id": 13986387,
"username": "rafarocha",
- "totalCosts": 940.31,
+ "totalCosts": 923.14,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13986387/medium/72bb87143f2a8d013cddac84c4e2afac.jpg"
},
{
@@ -42924,7 +44483,7 @@
{
"id": 15515516,
"username": "MCreimer",
- "totalCosts": 1646.3,
+ "totalCosts": 1634.18,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15515516/medium/cad56d6fa7c03af94b18ead23e791019.png"
},
{
@@ -42947,7 +44506,7 @@
{
"id": 13986387,
"username": "rafarocha",
- "totalCosts": 97.97,
+ "totalCosts": 88.88,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13986387/medium/72bb87143f2a8d013cddac84c4e2afac.jpg"
},
{
@@ -42964,7 +44523,7 @@
{
"id": 13986387,
"username": "rafarocha",
- "totalCosts": 539.34,
+ "totalCosts": 533.28,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13986387/medium/72bb87143f2a8d013cddac84c4e2afac.jpg"
}
]
@@ -43188,7 +44747,7 @@
{
"id": 13986387,
"username": "rafarocha",
- "totalCosts": 127.26,
+ "totalCosts": 77.77,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13986387/medium/72bb87143f2a8d013cddac84c4e2afac.jpg"
},
{
@@ -43339,7 +44898,7 @@
{
"id": 13986387,
"username": "rafarocha",
- "totalCosts": 671.65,
+ "totalCosts": 591.86,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13986387/medium/72bb87143f2a8d013cddac84c4e2afac.jpg"
},
{
@@ -44099,7 +45658,7 @@
{
"id": 15515516,
"username": "MCreimer",
- "totalCosts": 697.91,
+ "totalCosts": 686.8,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15515516/medium/cad56d6fa7c03af94b18ead23e791019.png"
},
{
@@ -44162,13 +45721,13 @@
{
"id": 15657153,
"username": "leomarar",
- "totalCosts": 362.59,
+ "totalCosts": 360.57,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15657153/medium/83f088e12e6711ed615f8dd77c3f2be7_default.png"
},
{
"id": 15435992,
"username": "italosantana",
- "totalCosts": 254.52,
+ "totalCosts": 252.5,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15435992/medium/61afc2a3a2417f17a118fea970030cbf.jpeg"
}
]
@@ -44233,6 +45792,12 @@
{
"fileId": "2822",
"contributors": [
+ {
+ "id": 15422032,
+ "username": "Fritzhoy",
+ "totalCosts": 55.55,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15422032/medium/a2df65c9d9309dec39402a0175f3a57f.png"
+ },
{
"id": 13986387,
"username": "rafarocha",
@@ -44991,6 +46556,12 @@
{
"fileId": "6183",
"contributors": [
+ {
+ "id": 15422032,
+ "username": "Fritzhoy",
+ "totalCosts": 675.69,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15422032/medium/a2df65c9d9309dec39402a0175f3a57f.png"
+ },
{
"id": 15849127,
"username": "IagoEmanuel15",
@@ -45035,38 +46606,14 @@
{
"id": 13893213,
"username": "RelliuG",
- "totalCosts": 314.11,
+ "totalCosts": 173.72,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13893213/medium/88d6b8bda7b6073efd27b5a1799694cc.jpeg"
},
{
"id": 14711810,
"username": "malzebu",
- "totalCosts": 169.68,
+ "totalCosts": 139.38,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14711810/medium/cd03191615e232f82ead1a505c725868.jpeg"
- },
- {
- "id": 15317682,
- "username": "junowoz",
- "totalCosts": 68.68,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15317682/medium/81940bf015f6f858cb88c0363d135cfa.jpeg"
- },
- {
- "id": 13986387,
- "username": "rafarocha",
- "totalCosts": 44.44,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13986387/medium/72bb87143f2a8d013cddac84c4e2afac.jpg"
- },
- {
- "id": 15575979,
- "username": "MarianeNavarro",
- "totalCosts": 43.43,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15575979/medium/06bee989c7903c83e2ebe29f4cb44d17.jpeg"
- },
- {
- "id": 15515516,
- "username": "MCreimer",
- "totalCosts": 13.13,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15515516/medium/cad56d6fa7c03af94b18ead23e791019.png"
}
]
},
@@ -45139,7 +46686,7 @@
{
"id": 14957477,
"username": "asdcBRA",
- "totalCosts": 1588.73,
+ "totalCosts": 1574.59,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14957477/medium/4731034c4ad881ab8ce76389b7952162.jpeg"
},
{
@@ -45191,7 +46738,7 @@
{
"id": 13986387,
"username": "rafarocha",
- "totalCosts": 38.38,
+ "totalCosts": 14.14,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13986387/medium/72bb87143f2a8d013cddac84c4e2afac.jpg"
}
]
@@ -45327,6 +46874,12 @@
{
"fileId": "5565",
"contributors": [
+ {
+ "id": 15422032,
+ "username": "Fritzhoy",
+ "totalCosts": 303,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15422032/medium/a2df65c9d9309dec39402a0175f3a57f.png"
+ },
{
"id": 16099664,
"username": "yanvictorsn",
@@ -45685,6 +47238,12 @@
"username": "Cristianoluizz",
"totalCosts": 11.11,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15912891/medium/d8e9c294bdfe19b843d80b68714c6a6d.png"
+ },
+ {
+ "id": 15422032,
+ "username": "Fritzhoy",
+ "totalCosts": 2.02,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15422032/medium/a2df65c9d9309dec39402a0175f3a57f.png"
}
]
},
@@ -45917,13 +47476,13 @@
{
"id": 15515516,
"username": "MCreimer",
- "totalCosts": 2257.35,
+ "totalCosts": 2238.16,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15515516/medium/cad56d6fa7c03af94b18ead23e791019.png"
},
{
"id": 13986387,
"username": "rafarocha",
- "totalCosts": 966.57,
+ "totalCosts": 961.52,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13986387/medium/72bb87143f2a8d013cddac84c4e2afac.jpg"
}
]
@@ -46059,13 +47618,13 @@
{
"id": 15350616,
"username": "Carlos_Silva",
- "totalCosts": 1244.32,
+ "totalCosts": 708.01,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15350616/medium/d1c4c996fc6985d2df9db6d157e17356.png"
},
{
"id": 13986387,
"username": "rafarocha",
- "totalCosts": 501.97,
+ "totalCosts": 353.5,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13986387/medium/72bb87143f2a8d013cddac84c4e2afac.jpg"
},
{
@@ -46110,7 +47669,7 @@
{
"id": 13986387,
"username": "rafarocha",
- "totalCosts": 962.53,
+ "totalCosts": 941.32,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13986387/medium/72bb87143f2a8d013cddac84c4e2afac.jpg"
},
{
@@ -46127,13 +47686,13 @@
{
"id": 13986387,
"username": "rafarocha",
- "totalCosts": 394.91,
+ "totalCosts": 358.55,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13986387/medium/72bb87143f2a8d013cddac84c4e2afac.jpg"
},
{
"id": 14573604,
"username": "bceschini",
- "totalCosts": 334.31,
+ "totalCosts": 240.38,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14573604/medium/e07f0a64aea775f906b999491ca671d9.jpeg"
}
]
@@ -46172,13 +47731,13 @@
{
"id": 13986387,
"username": "rafarocha",
- "totalCosts": 1289.77,
+ "totalCosts": 1269.57,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13986387/medium/72bb87143f2a8d013cddac84c4e2afac.jpg"
},
{
"id": 15422032,
"username": "Fritzhoy",
- "totalCosts": 508.03,
+ "totalCosts": 487.83,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15422032/medium/a2df65c9d9309dec39402a0175f3a57f.png"
}
]
@@ -47294,7 +48853,7 @@
{
"id": 14087195,
"username": "nicklcanada",
- "totalCosts": 158.57,
+ "totalCosts": 151.5,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14087195/medium/810aea3ef8ba145e88db17a73c95a4b8_default.png"
}
]
@@ -48012,7 +49571,7 @@
{
"id": 14087195,
"username": "nicklcanada",
- "totalCosts": 90.9,
+ "totalCosts": 80.8,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14087195/medium/810aea3ef8ba145e88db17a73c95a4b8_default.png"
},
{
@@ -48724,7 +50283,7 @@
{
"id": 14087195,
"username": "nicklcanada",
- "totalCosts": 993.84,
+ "totalCosts": 450.46,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14087195/medium/810aea3ef8ba145e88db17a73c95a4b8_default.png"
}
]
@@ -48874,7 +50433,7 @@
{
"id": 14514124,
"username": "ViktorOn",
- "totalCosts": 160.59,
+ "totalCosts": 153.52,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14514124/medium/fa0297b182b72fbcf006daba457ef1a3.png"
},
{
@@ -48976,12 +50535,6 @@
"username": "andrejklim480",
"totalCosts": 6.06,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15214262/medium/5727db09ace3c2d258ba36991ad941ea.jpg"
- },
- {
- "id": 15763855,
- "username": "dovbyshbgd",
- "totalCosts": 5.05,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15763855/medium/5b59dc54e26664f82eab09a76961eaf7.png"
}
]
},
@@ -49571,21 +51124,21 @@
{
"id": 15947515,
"username": "blockson",
- "totalCosts": 1022.12,
+ "totalCosts": 860.52,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15947515/medium/52b0b3490fcf6940d9027ef2f32a424b.jpeg"
},
- {
- "id": 15763855,
- "username": "dovbyshbgd",
- "totalCosts": 76.76,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15763855/medium/5b59dc54e26664f82eab09a76961eaf7.png"
- },
{
"id": 14514124,
"username": "ViktorOn",
"totalCosts": 74.74,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14514124/medium/fa0297b182b72fbcf006daba457ef1a3.png"
},
+ {
+ "id": 15763855,
+ "username": "dovbyshbgd",
+ "totalCosts": 32.32,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15763855/medium/5b59dc54e26664f82eab09a76961eaf7.png"
+ },
{
"id": 14744448,
"username": "yani4ek",
@@ -50083,6 +51636,12 @@
"totalCosts": 230.28,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15966943/medium/0d340104d53d3ff4df1c7c2412e8c86e_default.png"
},
+ {
+ "id": 16276134,
+ "username": "Vorosha",
+ "totalCosts": 211.09,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/16276134/medium/35e076208e5ad5652df5e78fbfaaf364_default.png"
+ },
{
"id": 15720271,
"username": "storming_heaven",
@@ -50145,13 +51704,13 @@
{
"id": 15967233,
"username": "jasminesprout",
- "totalCosts": 673.67,
+ "totalCosts": 658.52,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15967233/medium/b3515c2cf957fd413921b8fc9ccd6960.jpg"
},
{
"id": 15763855,
"username": "dovbyshbgd",
- "totalCosts": 382.79,
+ "totalCosts": 367.64,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15763855/medium/5b59dc54e26664f82eab09a76961eaf7.png"
},
{
@@ -50403,7 +51962,7 @@
{
"id": 15566151,
"username": "AlexanderSh",
- "totalCosts": 1163.52,
+ "totalCosts": 1137.26,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15566151/medium/2044a8dd6ae21fc4f7d8a8dad0190230_default.png"
},
{
@@ -50484,7 +52043,7 @@
{
"id": 15763855,
"username": "dovbyshbgd",
- "totalCosts": 306.03,
+ "totalCosts": 281.79,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15763855/medium/5b59dc54e26664f82eab09a76961eaf7.png"
},
{
@@ -50765,6 +52324,12 @@
"totalCosts": 43.43,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15199956/medium/74aea56a748b12af52448b2ecf7ca2ac.png"
},
+ {
+ "id": 15763855,
+ "username": "dovbyshbgd",
+ "totalCosts": 21.21,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15763855/medium/5b59dc54e26664f82eab09a76961eaf7.png"
+ },
{
"id": 15947515,
"username": "blockson",
@@ -50855,13 +52420,13 @@
{
"id": 15763855,
"username": "dovbyshbgd",
- "totalCosts": 3198.67,
+ "totalCosts": 3178.47,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15763855/medium/5b59dc54e26664f82eab09a76961eaf7.png"
},
{
"id": 15619839,
"username": "mediaquest",
- "totalCosts": 12.12,
+ "totalCosts": 8.08,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15619839/medium/99c14ce4e8161f6b077fa0849ac4c5b0.png"
}
]
@@ -50941,13 +52506,13 @@
{
"id": 15967233,
"username": "jasminesprout",
- "totalCosts": 1746.29,
+ "totalCosts": 1061.51,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15967233/medium/b3515c2cf957fd413921b8fc9ccd6960.jpg"
},
{
"id": 15763855,
"username": "dovbyshbgd",
- "totalCosts": 1488.74,
+ "totalCosts": 925.16,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15763855/medium/5b59dc54e26664f82eab09a76961eaf7.png"
},
{
@@ -51027,7 +52592,7 @@
{
"id": 15967233,
"username": "jasminesprout",
- "totalCosts": 1055.45,
+ "totalCosts": 1034.24,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15967233/medium/b3515c2cf957fd413921b8fc9ccd6960.jpg"
},
{
@@ -51044,7 +52609,7 @@
{
"id": 15763855,
"username": "dovbyshbgd",
- "totalCosts": 669.63,
+ "totalCosts": 539.34,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15763855/medium/5b59dc54e26664f82eab09a76961eaf7.png"
}
]
@@ -51101,7 +52666,7 @@
{
"id": 15947515,
"username": "blockson",
- "totalCosts": 1733.16,
+ "totalCosts": 1712.96,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15947515/medium/52b0b3490fcf6940d9027ef2f32a424b.jpeg"
},
{
@@ -51170,14 +52735,7 @@
"data": [
{
"fileId": "2680",
- "contributors": [
- {
- "id": 12457393,
- "username": "rchk",
- "totalCosts": 1.01,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/12457393/medium/53a93cd1e740ee2af8c99ba5296ae2bc_default.png"
- }
- ]
+ "contributors": []
},
{
"fileId": "5565",
@@ -51439,7 +52997,7 @@
{
"id": 14977831,
"username": "PeterKecman",
- "totalCosts": 1616,
+ "totalCosts": 1601.86,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14977831/medium/e1e3f150ce524a6cb88fccb8b4f52422.png"
}
]
@@ -51487,7 +53045,7 @@
{
"id": 14957177,
"username": "joeurassa",
- "totalCosts": 159.58,
+ "totalCosts": 152.51,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14957177/medium/8323f79a3f73f2e723da72db082c0c22.jpg"
}
]
@@ -51498,7 +53056,7 @@
{
"id": 14957177,
"username": "joeurassa",
- "totalCosts": 417.13,
+ "totalCosts": 414.1,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14957177/medium/8323f79a3f73f2e723da72db082c0c22.jpg"
}
]
@@ -51660,7 +53218,7 @@
{
"id": 14996861,
"username": "kaanmetu",
- "totalCosts": 159.58,
+ "totalCosts": 152.51,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14996861/medium/eb0c9870f3f6317e6bfdc4a838e4fd5f.jpg"
}
]
@@ -51718,7 +53276,7 @@
{
"id": 16108182,
"username": "onurureten",
- "totalCosts": 20.2,
+ "totalCosts": 15.15,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/16108182/medium/3d5629416b1216444844a95617af94f7.jpg"
},
{
@@ -52633,7 +54191,7 @@
{
"id": 15966007,
"username": "0xselimc",
- "totalCosts": 393.9,
+ "totalCosts": 367.64,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15966007/medium/6008a158d741536a305a81bd295ab407.jpeg"
},
{
@@ -52715,7 +54273,7 @@
{
"id": 15966989,
"username": "Alamalu",
- "totalCosts": 81.81,
+ "totalCosts": 80.8,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15966989/medium/1e1908bc80462f4994503e7bb99a2c92.png"
},
{
@@ -52773,7 +54331,7 @@
{
"id": 15966669,
"username": "0xSahbaz",
- "totalCosts": 244.42,
+ "totalCosts": 194.93,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15966669/medium/e56294c61e4c32a43c8735040ea67364_default.png"
},
{
@@ -52877,7 +54435,7 @@
{
"id": 15963921,
"username": "bicebaris",
- "totalCosts": 868.6,
+ "totalCosts": 707,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15963921/medium/5ed57dad6d6d747e47d9378a8006ede1.jpg"
},
{
@@ -53221,7 +54779,7 @@
{
"id": 15082707,
"username": "selcuk45",
- "totalCosts": 3074.44,
+ "totalCosts": 3063.33,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15082707/medium/1422c6237f35e4d0e31e08554a233472.jpeg"
},
{
@@ -53506,7 +55064,7 @@
{
"id": 15082707,
"username": "selcuk45",
- "totalCosts": 142.41,
+ "totalCosts": 134.33,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15082707/medium/1422c6237f35e4d0e31e08554a233472.jpeg"
},
{
@@ -53518,7 +55076,7 @@
{
"id": 14131653,
"username": "Berke37",
- "totalCosts": 22.22,
+ "totalCosts": 14.14,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14131653/medium/ff295534ec23d3428ba06f99e0fd50bb.jpg"
},
{
@@ -53692,13 +55250,13 @@
{
"id": 15963465,
"username": "Ozje",
- "totalCosts": 557.52,
+ "totalCosts": 546.41,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15963465/medium/da85affc52fa58f2bf27e2e90cebb31e_default.png"
},
{
"id": 14131653,
"username": "Berke37",
- "totalCosts": 555.5,
+ "totalCosts": 544.39,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14131653/medium/ff295534ec23d3428ba06f99e0fd50bb.jpg"
},
{
@@ -53773,13 +55331,13 @@
{
"id": 15418650,
"username": "kadirchan",
- "totalCosts": 377.74,
+ "totalCosts": 375.72,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15418650/medium/08ccea1a2b5d659ff3978f98d75921b4.png"
},
{
"id": 15082707,
"username": "selcuk45",
- "totalCosts": 298.96,
+ "totalCosts": 271.69,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15082707/medium/1422c6237f35e4d0e31e08554a233472.jpeg"
},
{
@@ -53869,17 +55427,17 @@
"totalCosts": 675.69,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14996861/medium/eb0c9870f3f6317e6bfdc4a838e4fd5f.jpg"
},
- {
- "id": 15082707,
- "username": "selcuk45",
- "totalCosts": 98.98,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15082707/medium/1422c6237f35e4d0e31e08554a233472.jpeg"
- },
{
"id": 14690454,
"username": "sekoman01",
"totalCosts": 91.91,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14690454/medium/595a121d4a7427f7a21b75b32017c247.jpg"
+ },
+ {
+ "id": 15082707,
+ "username": "selcuk45",
+ "totalCosts": 88.88,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15082707/medium/1422c6237f35e4d0e31e08554a233472.jpeg"
}
]
},
@@ -55107,26 +56665,8 @@
{
"id": 14996861,
"username": "kaanmetu",
- "totalCosts": 975.66,
+ "totalCosts": 442.38,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14996861/medium/eb0c9870f3f6317e6bfdc4a838e4fd5f.jpg"
- },
- {
- "id": 15963921,
- "username": "bicebaris",
- "totalCosts": 189.88,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15963921/medium/5ed57dad6d6d747e47d9378a8006ede1.jpg"
- },
- {
- "id": 15966289,
- "username": "cinaryasemin",
- "totalCosts": 18.18,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15966289/medium/4db7c2566069e455f22d0027dcd3bb06_default.png"
- },
- {
- "id": 15966007,
- "username": "0xselimc",
- "totalCosts": 2.02,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15966007/medium/6008a158d741536a305a81bd295ab407.jpeg"
}
]
},
@@ -55139,6 +56679,12 @@
"totalCosts": 244.42,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14996861/medium/eb0c9870f3f6317e6bfdc4a838e4fd5f.jpg"
},
+ {
+ "id": 16253720,
+ "username": "Jakkrih3",
+ "totalCosts": 30.3,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/16253720/medium/3566a35c5fe400a00afee12a231380a6.png"
+ },
{
"id": 15964741,
"username": "0xberil",
@@ -55193,7 +56739,7 @@
{
"id": 14966275,
"username": "zer0knowledge",
- "totalCosts": 1590.75,
+ "totalCosts": 1576.61,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14966275/medium/dead80d7c0e54990ad4fee448e0aacaa.jpeg"
},
{
@@ -55225,6 +56771,12 @@
"totalCosts": 225.23,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15966007/medium/6008a158d741536a305a81bd295ab407.jpeg"
},
+ {
+ "id": 16280946,
+ "username": "Alpiren",
+ "totalCosts": 197.96,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/16280946/medium/03d579e1eebac2974a7eb25b8945a049_default.png"
+ },
{
"id": 14996861,
"username": "kaanmetu",
@@ -55358,7 +56910,7 @@
{
"id": 15964741,
"username": "0xberil",
- "totalCosts": 140.39,
+ "totalCosts": 125.24,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15964741/medium/f8fb148047395cf62c924755cb300f17_default.png"
},
{
@@ -55903,7 +57455,7 @@
{
"id": 13429141,
"username": "Faedonn",
- "totalCosts": 245.43,
+ "totalCosts": 240.38,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13429141/medium/47665044a49c8caae72a8e5d6c6c74fc.jpg"
},
{
@@ -55921,7 +57473,7 @@
{
"id": 15672817,
"username": "thebuzagi",
- "totalCosts": 168.67,
+ "totalCosts": 142.41,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15672817/medium/51945b15a89b4d9de324372227ac36de_default.png"
},
{
@@ -55980,7 +57532,7 @@
{
"id": 15672817,
"username": "thebuzagi",
- "totalCosts": 86.86,
+ "totalCosts": 74.74,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15672817/medium/51945b15a89b4d9de324372227ac36de_default.png"
}
]
@@ -56008,7 +57560,7 @@
{
"id": 14996861,
"username": "kaanmetu",
- "totalCosts": 400.97,
+ "totalCosts": 394.91,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14996861/medium/eb0c9870f3f6317e6bfdc4a838e4fd5f.jpg"
},
{
@@ -56204,7 +57756,7 @@
{
"id": 15082707,
"username": "selcuk45",
- "totalCosts": 306.03,
+ "totalCosts": 281.79,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15082707/medium/1422c6237f35e4d0e31e08554a233472.jpeg"
}
]
@@ -56300,13 +57852,13 @@
{
"id": 15963921,
"username": "bicebaris",
- "totalCosts": 1433.19,
+ "totalCosts": 769.62,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15963921/medium/5ed57dad6d6d747e47d9378a8006ede1.jpg"
},
{
"id": 15672817,
"username": "thebuzagi",
- "totalCosts": 391.88,
+ "totalCosts": 353.5,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15672817/medium/51945b15a89b4d9de324372227ac36de_default.png"
}
]
@@ -56374,7 +57926,7 @@
{
"id": 15963921,
"username": "bicebaris",
- "totalCosts": 659.53,
+ "totalCosts": 638.32,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15963921/medium/5ed57dad6d6d747e47d9378a8006ede1.jpg"
},
{
@@ -56397,7 +57949,7 @@
{
"id": 15964741,
"username": "0xberil",
- "totalCosts": 666.6,
+ "totalCosts": 536.31,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15964741/medium/f8fb148047395cf62c924755cb300f17_default.png"
}
]
@@ -56442,7 +57994,7 @@
{
"id": 15963921,
"username": "bicebaris",
- "totalCosts": 1668.52,
+ "totalCosts": 1648.32,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15963921/medium/5ed57dad6d6d747e47d9378a8006ede1.jpg"
},
{
@@ -56622,7 +58174,7 @@
{
"id": 15966191,
"username": "0xokan",
- "totalCosts": 493.89,
+ "totalCosts": 479.75,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15966191/medium/a5d1d36d7404974d591cbcf59f089df9.jpg"
},
{
@@ -56634,7 +58186,7 @@
{
"id": 15916327,
"username": "avalidurl",
- "totalCosts": 176.75,
+ "totalCosts": 170.69,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15916327/medium/89e2154a494b74da402f3b5c4ad73240.png"
},
{
@@ -56646,7 +58198,7 @@
{
"id": 15709983,
"username": "muggyw",
- "totalCosts": 49.49,
+ "totalCosts": 45.45,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15709983/medium/e0909209fc16ef904edcd84c5ba39f62_default.png"
}
]
@@ -56657,7 +58209,7 @@
{
"id": 15964741,
"username": "0xberil",
- "totalCosts": 375.72,
+ "totalCosts": 237.35,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15964741/medium/f8fb148047395cf62c924755cb300f17_default.png"
},
{
@@ -56786,7 +58338,7 @@
{
"id": 15966271,
"username": "zeydrm",
- "totalCosts": 1871.53,
+ "totalCosts": 1867.49,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15966271/medium/bbeac0fbc387f8f821f861bc79c625fd.png"
}
]
@@ -57006,7 +58558,7 @@
{
"id": 15082707,
"username": "selcuk45",
- "totalCosts": 1317.04,
+ "totalCosts": 1299.87,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15082707/medium/1422c6237f35e4d0e31e08554a233472.jpeg"
},
{
@@ -58239,19 +59791,19 @@
{
"id": 14686790,
"username": "Horus267",
- "totalCosts": 97.97,
+ "totalCosts": 95.95,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14686790/medium/9695742f9165e3cf2585e31e74898270.png"
},
{
"id": 15138990,
"username": "polinashorokhova",
- "totalCosts": 94.94,
+ "totalCosts": 92.92,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15138990/medium/5f669759466df426ddbcbeade35e684c_default.png"
},
{
"id": 15039341,
"username": "maria_kabakova",
- "totalCosts": 42.42,
+ "totalCosts": 40.4,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15039341/medium/e82a74324d44b778d5dbcc1be5ef3cc8_default.png"
},
{
@@ -58436,8 +59988,8 @@
{
"id": 15473664,
"username": "hotr1pak",
- "totalCosts": 1449.35,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15473664/medium/97a49851d4c929fd21f8ebcc8947a400.jpeg"
+ "totalCosts": 1521.06,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15473664/medium/3a3252bf9769d99be4ca6d1b94dbb91f.jpg"
},
{
"id": 15585897,
@@ -58494,9 +60046,15 @@
{
"id": 15804803,
"username": "sun_dariia",
- "totalCosts": 1606.91,
+ "totalCosts": 1575.6,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15804803/medium/e753b43a4cf480cd2a37c5795cdb83ba_default.png"
},
+ {
+ "id": 15473664,
+ "username": "hotr1pak",
+ "totalCosts": 55.55,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15473664/medium/3a3252bf9769d99be4ca6d1b94dbb91f.jpg"
+ },
{
"id": 15800361,
"username": "nazarenkooleksij0",
@@ -58525,6 +60083,12 @@
{
"fileId": "6183",
"contributors": [
+ {
+ "id": 15473664,
+ "username": "hotr1pak",
+ "totalCosts": 421.17,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15473664/medium/3a3252bf9769d99be4ca6d1b94dbb91f.jpg"
+ },
{
"id": 15869379,
"username": "viktoriia.mykytiuk02",
@@ -58581,38 +60145,20 @@
{
"id": 14815312,
"username": "001-uk_00455358",
- "totalCosts": 639.33,
+ "totalCosts": 442.38,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14815312/medium/866bc874cf7462eff3219fa2d337e5f2.png"
},
- {
- "id": 14802894,
- "username": "015-uk_0002",
- "totalCosts": 197.96,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14802894/medium/588f892df67fca18b552e5c40980776e.png"
- },
- {
- "id": 15129995,
- "username": "alinabilyk",
- "totalCosts": 137.36,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15129995/medium/91175a3cc7e81c64ccdb5b22139074e3_default.png"
- },
{
"id": 15039341,
"username": "maria_kabakova",
- "totalCosts": 54.54,
+ "totalCosts": 50.5,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15039341/medium/e82a74324d44b778d5dbcc1be5ef3cc8_default.png"
},
{
- "id": 14815080,
- "username": "0904508678duy",
- "totalCosts": 23.23,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14815080/medium/d175930e28a0382f4ad6127ee47c961a.png"
- },
- {
- "id": 15131459,
- "username": "Yulya",
- "totalCosts": 4.04,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15131459/medium/d1dd1782ce227108eae7851d56ec4e39_default.png"
+ "id": 14802894,
+ "username": "015-uk_0002",
+ "totalCosts": 6.06,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14802894/medium/588f892df67fca18b552e5c40980776e.png"
}
]
},
@@ -58649,6 +60195,12 @@
"totalCosts": 25.25,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15143910/medium/c51e6458948ee8d9c7deb546cbb114a6_default.png"
},
+ {
+ "id": 15473664,
+ "username": "hotr1pak",
+ "totalCosts": 22.22,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15473664/medium/3a3252bf9769d99be4ca6d1b94dbb91f.jpg"
+ },
{
"id": 14686790,
"username": "Horus267",
@@ -58660,6 +60212,12 @@
{
"fileId": "5565",
"contributors": [
+ {
+ "id": 15473664,
+ "username": "hotr1pak",
+ "totalCosts": 379.76,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15473664/medium/3a3252bf9769d99be4ca6d1b94dbb91f.jpg"
+ },
{
"id": 15967233,
"username": "jasminesprout",
@@ -58684,12 +60242,6 @@
"totalCosts": 3.03,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15895803/medium/96636c4279311f716614648a85940e81_default.png"
},
- {
- "id": 15473664,
- "username": "hotr1pak",
- "totalCosts": 3.03,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15473664/medium/97a49851d4c929fd21f8ebcc8947a400.jpeg"
- },
{
"id": 13490273,
"username": "Cmml",
@@ -58824,6 +60376,12 @@
"username": "Horus267",
"totalCosts": 11.11,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14686790/medium/9695742f9165e3cf2585e31e74898270.png"
+ },
+ {
+ "id": 15473664,
+ "username": "hotr1pak",
+ "totalCosts": 8.08,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15473664/medium/3a3252bf9769d99be4ca6d1b94dbb91f.jpg"
}
]
},
@@ -58905,6 +60463,12 @@
"totalCosts": 86.86,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15825921/medium/75b88c5c4f949a723e15dccdaeb69c16.jpeg"
},
+ {
+ "id": 15473664,
+ "username": "hotr1pak",
+ "totalCosts": 7.07,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15473664/medium/3a3252bf9769d99be4ca6d1b94dbb91f.jpg"
+ },
{
"id": 15824883,
"username": "anastasiia.danchuk",
@@ -58953,7 +60517,7 @@
{
"id": 15824955,
"username": "dmytro.zalatukhin",
- "totalCosts": 217.15,
+ "totalCosts": 192.91,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15824955/medium/517b6400bc31546d1889eb56a4d5f6ee.jpeg"
},
{
@@ -59001,6 +60565,12 @@
"username": "jasminesprout",
"totalCosts": 30.3,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15967233/medium/b3515c2cf957fd413921b8fc9ccd6960.jpg"
+ },
+ {
+ "id": 15473664,
+ "username": "hotr1pak",
+ "totalCosts": 25.25,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15473664/medium/3a3252bf9769d99be4ca6d1b94dbb91f.jpg"
}
]
},
@@ -59029,6 +60599,12 @@
"username": "jasminesprout",
"totalCosts": 1165.54,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15967233/medium/b3515c2cf957fd413921b8fc9ccd6960.jpg"
+ },
+ {
+ "id": 15473664,
+ "username": "hotr1pak",
+ "totalCosts": 29.29,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15473664/medium/3a3252bf9769d99be4ca6d1b94dbb91f.jpg"
}
]
},
@@ -59064,6 +60640,12 @@
"totalCosts": 64.64,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15804803/medium/e753b43a4cf480cd2a37c5795cdb83ba_default.png"
},
+ {
+ "id": 15473664,
+ "username": "hotr1pak",
+ "totalCosts": 27.27,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15473664/medium/3a3252bf9769d99be4ca6d1b94dbb91f.jpg"
+ },
{
"id": 15895803,
"username": "KristiKris",
@@ -59169,6 +60751,12 @@
"totalCosts": 84.84,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15824955/medium/517b6400bc31546d1889eb56a4d5f6ee.jpeg"
},
+ {
+ "id": 15473664,
+ "username": "hotr1pak",
+ "totalCosts": 45.45,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15473664/medium/3a3252bf9769d99be4ca6d1b94dbb91f.jpg"
+ },
{
"id": 15967233,
"username": "jasminesprout",
@@ -59221,6 +60809,12 @@
"username": "dmytro.zalatukhin",
"totalCosts": 8.08,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15824955/medium/517b6400bc31546d1889eb56a4d5f6ee.jpeg"
+ },
+ {
+ "id": 15473664,
+ "username": "hotr1pak",
+ "totalCosts": 7.07,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15473664/medium/3a3252bf9769d99be4ca6d1b94dbb91f.jpg"
}
]
},
@@ -59230,7 +60824,7 @@
{
"id": 15804803,
"username": "sun_dariia",
- "totalCosts": 1350.37,
+ "totalCosts": 1335.22,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15804803/medium/e753b43a4cf480cd2a37c5795cdb83ba_default.png"
},
{
@@ -59242,7 +60836,7 @@
{
"id": 15967233,
"username": "jasminesprout",
- "totalCosts": 678.72,
+ "totalCosts": 673.67,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15967233/medium/b3515c2cf957fd413921b8fc9ccd6960.jpg"
},
{
@@ -59260,8 +60854,14 @@
{
"id": 15860037,
"username": "makc7",
- "totalCosts": 49.49,
+ "totalCosts": 45.45,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15860037/medium/9c2048ac721bc2d7abd49d178bf2857e.png"
+ },
+ {
+ "id": 15473664,
+ "username": "hotr1pak",
+ "totalCosts": 24.24,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15473664/medium/3a3252bf9769d99be4ca6d1b94dbb91f.jpg"
}
]
}
@@ -59276,15 +60876,9 @@
{
"id": 15844527,
"username": "huephuong",
- "totalCosts": 1692.76,
+ "totalCosts": 436.32,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15844527/medium/a4d5a8ae8c27d8cae9261676ee81bbeb_default.png"
},
- {
- "id": 16004409,
- "username": "crackpotjackpotdiscord",
- "totalCosts": 158.57,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/16004409/medium/a6091a149da0ed8d0301cc4d33c8d616.png"
- },
{
"id": 15660097,
"username": "anhhuyis",
@@ -59498,7 +61092,7 @@
{
"id": 14829178,
"username": "EffectChen",
- "totalCosts": 161.6,
+ "totalCosts": 154.53,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14829178/medium/39ff70d1cbcdbad8e9056cb4aa4ee789.jpg"
},
{
@@ -60136,7 +61730,7 @@
{
"id": 15314206,
"username": "cuijia",
- "totalCosts": 27.27,
+ "totalCosts": 21.21,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15314206/medium/97a1d7142aa4eba6ed8a0212ddada4a8.jpeg"
},
{
@@ -60365,7 +61959,7 @@
{
"id": 15657887,
"username": "DreamInMorning",
- "totalCosts": 1329.16,
+ "totalCosts": 1268.56,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15657887/medium/9212535a0a5fb7ec22a9f8a8329dac3b.jpg"
},
{
@@ -60383,7 +61977,7 @@
{
"id": 15680993,
"username": "nzinmymind",
- "totalCosts": 109.08,
+ "totalCosts": 104.03,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15680993/medium/c48e18c9909ca14dd2c4796c916a6007.jpeg"
},
{
@@ -60431,7 +62025,7 @@
{
"id": 15684231,
"username": "Jimmy666",
- "totalCosts": 10.1,
+ "totalCosts": 7.07,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15684231/medium/bb90eab4b3972397ca4e5efffe390855_default.png"
},
{
@@ -60744,7 +62338,7 @@
{
"id": 15558917,
"username": "imalittlemole",
- "totalCosts": 333.3,
+ "totalCosts": 327.24,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15558917/medium/3140ea0253adc0e3f3c81b050f3b30b3.png"
},
{
@@ -60833,7 +62427,7 @@
{
"id": 14829178,
"username": "EffectChen",
- "totalCosts": 271.69,
+ "totalCosts": 267.65,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14829178/medium/39ff70d1cbcdbad8e9056cb4aa4ee789.jpg"
},
{
@@ -61150,7 +62744,7 @@
{
"id": 15657887,
"username": "DreamInMorning",
- "totalCosts": 1329.16,
+ "totalCosts": 1311.99,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15657887/medium/9212535a0a5fb7ec22a9f8a8329dac3b.jpg"
},
{
@@ -61314,7 +62908,7 @@
{
"id": 15314206,
"username": "cuijia",
- "totalCosts": 257.55,
+ "totalCosts": 245.43,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15314206/medium/97a1d7142aa4eba6ed8a0212ddada4a8.jpeg"
},
{
@@ -61390,13 +62984,13 @@
{
"id": 15324082,
"username": "cxme1998",
- "totalCosts": 224.22,
+ "totalCosts": 221.19,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15324082/medium/5f8fc82f2adc80176619514d7eb5a905.png"
},
{
"id": 15350892,
"username": "xiaomage",
- "totalCosts": 31.31,
+ "totalCosts": 28.28,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15350892/medium/12f685a4bf7fab1e51d80ba3b7b0e55d_default.png"
}
]
@@ -61767,18 +63361,18 @@
"totalCosts": 106.05,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15531935/medium/e07673c727d9da1415b7f284c143d903_default.png"
},
- {
- "id": 15988145,
- "username": "cxr1025048717",
- "totalCosts": 76.76,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15988145/medium/f630d0d88a1125dbfcb7a0709531db9e_default.png"
- },
{
"id": 15314206,
"username": "cuijia",
"totalCosts": 28.28,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15314206/medium/97a1d7142aa4eba6ed8a0212ddada4a8.jpeg"
},
+ {
+ "id": 15988145,
+ "username": "cxr1025048717",
+ "totalCosts": 27.27,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15988145/medium/f630d0d88a1125dbfcb7a0709531db9e_default.png"
+ },
{
"id": 15425018,
"username": "TTa77",
@@ -61946,7 +63540,7 @@
{
"id": 15386722,
"username": "Fred-Porlock",
- "totalCosts": 673.67,
+ "totalCosts": 593.88,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15386722/medium/d45a14868eeb521fcff121613eaeee3c.png"
},
{
@@ -61973,6 +63567,12 @@
"totalCosts": 47.47,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14829178/medium/39ff70d1cbcdbad8e9056cb4aa4ee789.jpg"
},
+ {
+ "id": 15236832,
+ "username": "Andypsl8",
+ "totalCosts": 5.05,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15236832/medium/59227a901011469470b992963cd20855.jpg"
+ },
{
"id": 15895151,
"username": "ChaosGod",
@@ -61985,12 +63585,6 @@
"totalCosts": 5.05,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15515726/medium/98af5d1ee9b8c33327474cf6dce467b5.jpeg"
},
- {
- "id": 15236832,
- "username": "Andypsl8",
- "totalCosts": 5.05,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15236832/medium/59227a901011469470b992963cd20855.jpg"
- },
{
"id": 16044050,
"username": "noahazael",
@@ -62532,6 +64126,12 @@
"totalCosts": 14.14,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15073799/medium/a33ad8c1e01cf31890babace80908193.png"
},
+ {
+ "id": 15236832,
+ "username": "Andypsl8",
+ "totalCosts": 1.01,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15236832/medium/59227a901011469470b992963cd20855.jpg"
+ },
{
"id": 16072688,
"username": "lz895779981",
@@ -62543,12 +64143,6 @@
"username": "sheepskin1",
"totalCosts": 1.01,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15524545/medium/7777b3e0ba87243b51733b6016b6a945.png"
- },
- {
- "id": 15236832,
- "username": "Andypsl8",
- "totalCosts": 1.01,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15236832/medium/59227a901011469470b992963cd20855.jpg"
}
]
},
@@ -63016,7 +64610,7 @@
{
"id": 15314206,
"username": "cuijia",
- "totalCosts": 40.4,
+ "totalCosts": 32.32,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15314206/medium/97a1d7142aa4eba6ed8a0212ddada4a8.jpeg"
},
{
@@ -63167,7 +64761,7 @@
{
"id": 14829178,
"username": "EffectChen",
- "totalCosts": 711.04,
+ "totalCosts": 699.93,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14829178/medium/39ff70d1cbcdbad8e9056cb4aa4ee789.jpg"
},
{
@@ -63290,7 +64884,7 @@
{
"id": 15314206,
"username": "cuijia",
- "totalCosts": 3692.56,
+ "totalCosts": 3690.54,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15314206/medium/97a1d7142aa4eba6ed8a0212ddada4a8.jpeg"
},
{
@@ -63308,7 +64902,7 @@
{
"id": 15381970,
"username": "tzbkk",
- "totalCosts": 90.9,
+ "totalCosts": 88.88,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15381970/medium/b43b331e365346453668db293656f269.jpeg"
},
{
@@ -63389,7 +64983,7 @@
{
"id": 14770398,
"username": "zhangyuenet",
- "totalCosts": 83.83,
+ "totalCosts": 73.73,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14770398/medium/8895f12e399c436af12059556ba1aaf7_default.png"
},
{
@@ -66131,57 +67725,15 @@
{
"id": 14792200,
"username": "liuxiaotong15",
- "totalCosts": 801.94,
+ "totalCosts": 421.17,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14792200/medium/651095028597144eac73720a0c320b3d.jpeg"
},
- {
- "id": 14792498,
- "username": "tyevlag",
- "totalCosts": 153.52,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14792498/medium/3d13e013f50df91c50a9d67e9034daf8.png"
- },
- {
- "id": 14553216,
- "username": "rielychen",
- "totalCosts": 153.52,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14553216/medium/ff7357a18e524ec40facc964cb2d15bc.jpeg"
- },
- {
- "id": 15314206,
- "username": "cuijia",
- "totalCosts": 69.69,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15314206/medium/97a1d7142aa4eba6ed8a0212ddada4a8.jpeg"
- },
{
"id": 14125747,
"username": "misakajwk",
- "totalCosts": 35.35,
+ "totalCosts": 27.27,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14125747/medium/27c8b5a8d49f829339205e8f4bf47ca0.jpeg"
},
- {
- "id": 15643829,
- "username": "Microapples",
- "totalCosts": 15.15,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15643829/medium/08eb6ac51a186b2e4360e6e07960d701_default.png"
- },
- {
- "id": 15657887,
- "username": "DreamInMorning",
- "totalCosts": 13.13,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15657887/medium/9212535a0a5fb7ec22a9f8a8329dac3b.jpg"
- },
- {
- "id": 15911295,
- "username": "Xin_Cheng",
- "totalCosts": 13.13,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15911295/medium/8aae130b64f46cd1ea960d085950a560_default.png"
- },
- {
- "id": 15558917,
- "username": "imalittlemole",
- "totalCosts": 2.02,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15558917/medium/3140ea0253adc0e3f3c81b050f3b30b3.png"
- },
{
"id": 14708760,
"username": "hypebeans",
@@ -66386,17 +67938,17 @@
"totalCosts": 226.24,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15729281/medium/0be4e0167eb236dea935c2ecf60ab99e_default.png"
},
- {
- "id": 15871701,
- "username": "maxwellcotto",
- "totalCosts": 38.38,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15871701/medium/211aaa985795803b88e9fa89069ed517.png"
- },
{
"id": 15884671,
"username": "zhaozhenming",
"totalCosts": 14.14,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15884671/medium/60884f4a653164bb3d315f947cbecd83_default.png"
+ },
+ {
+ "id": 15871701,
+ "username": "maxwellcotto",
+ "totalCosts": 14.14,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15871701/medium/211aaa985795803b88e9fa89069ed517.png"
}
]
},
@@ -66544,6 +68096,12 @@
"totalCosts": 43.43,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14814538/medium/a758db833b50a769463ef35c5d5b99f1.gif"
},
+ {
+ "id": 16105472,
+ "username": "Mindy00",
+ "totalCosts": 38.38,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/16105472/medium/e3c4ba4f35bd3c3e5bc13053976cd282.png"
+ },
{
"id": 15381970,
"username": "tzbkk",
@@ -67130,18 +68688,18 @@
"totalCosts": 40.4,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15311346/medium/62e0a2b5c543569c10511bcf1f84c112_default.png"
},
- {
- "id": 15101527,
- "username": "alexanderhawl",
- "totalCosts": 27.27,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15101527/medium/d5363de72b7fd3067a430db7ac9ad8ab.jpeg"
- },
{
"id": 15236832,
"username": "Andypsl8",
"totalCosts": 27.27,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15236832/medium/59227a901011469470b992963cd20855.jpg"
},
+ {
+ "id": 15101527,
+ "username": "alexanderhawl",
+ "totalCosts": 27.27,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15101527/medium/d5363de72b7fd3067a430db7ac9ad8ab.jpeg"
+ },
{
"id": 15635039,
"username": "farmerlesheng",
@@ -67601,13 +69159,13 @@
{
"id": 15657887,
"username": "DreamInMorning",
- "totalCosts": 2951.22,
+ "totalCosts": 2946.17,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15657887/medium/9212535a0a5fb7ec22a9f8a8329dac3b.jpg"
},
{
"id": 15680993,
"username": "nzinmymind",
- "totalCosts": 551.46,
+ "totalCosts": 527.22,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15680993/medium/c48e18c9909ca14dd2c4796c916a6007.jpeg"
},
{
@@ -67938,26 +69496,20 @@
{
"id": 15871701,
"username": "maxwellcotto",
- "totalCosts": 1001.92,
+ "totalCosts": 796.89,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15871701/medium/211aaa985795803b88e9fa89069ed517.png"
},
- {
- "id": 15623859,
- "username": "w33d",
- "totalCosts": 644.38,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15623859/medium/1b48569cd42fdf8a9e5af38841b58d4f.jpeg"
- },
{
"id": 15924353,
"username": "Li_Rui",
- "totalCosts": 444.4,
+ "totalCosts": 359.56,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15924353/medium/24be33af9672c1afbe79146c7acda3a0_default.png"
},
{
- "id": 13358093,
- "username": "ChesleyCN",
- "totalCosts": 303,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13358093/medium/63b334419836be7ef7af1c645b084fc9.png"
+ "id": 15623859,
+ "username": "w33d",
+ "totalCosts": 315.12,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15623859/medium/1b48569cd42fdf8a9e5af38841b58d4f.jpeg"
},
{
"id": 15911295,
@@ -67965,12 +69517,6 @@
"totalCosts": 221.19,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15911295/medium/8aae130b64f46cd1ea960d085950a560_default.png"
},
- {
- "id": 15900245,
- "username": "kairlv",
- "totalCosts": 172.71,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15900245/medium/e4ed4348b743118b599d6864cb79f64f_default.png"
- },
{
"id": 15381970,
"username": "tzbkk",
@@ -67990,10 +69536,16 @@
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15889307/medium/d4da3df063e63fa135a05da6d555e5a0.png"
},
{
- "id": 15816363,
- "username": "chenggang-zh",
- "totalCosts": 49.49,
- "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15816363/medium/a2ca44a459e8ce152ba8dfce117cb8fa.jpeg"
+ "id": 13358093,
+ "username": "ChesleyCN",
+ "totalCosts": 67.67,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/13358093/medium/63b334419836be7ef7af1c645b084fc9.png"
+ },
+ {
+ "id": 15900245,
+ "username": "kairlv",
+ "totalCosts": 52.52,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15900245/medium/e4ed4348b743118b599d6864cb79f64f_default.png"
},
{
"id": 15073799,
@@ -68067,7 +69619,7 @@
{
"id": 15856841,
"username": "weiyuzhi2022",
- "totalCosts": 513.08,
+ "totalCosts": 491.87,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15856841/medium/604c48d6d4f0f60a4495f8586908076c.png"
},
{
@@ -68096,13 +69648,13 @@
{
"id": 15381970,
"username": "tzbkk",
- "totalCosts": 614.08,
+ "totalCosts": 493.89,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15381970/medium/b43b331e365346453668db293656f269.jpeg"
},
{
"id": 15856841,
"username": "weiyuzhi2022",
- "totalCosts": 170.69,
+ "totalCosts": 160.59,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15856841/medium/604c48d6d4f0f60a4495f8586908076c.png"
},
{
@@ -68114,8 +69666,14 @@
{
"id": 15906651,
"username": "ying.ying09",
- "totalCosts": 68.68,
+ "totalCosts": 58.58,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15906651/medium/7fbb552cabdbfcd79477e56fc90a2670.png"
+ },
+ {
+ "id": 16266862,
+ "username": "HarryJing",
+ "totalCosts": 57.57,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/16266862/medium/6cac8bffcdc418bbf91be6c574556862.jpeg"
}
]
},
@@ -68183,13 +69741,13 @@
{
"id": 15924353,
"username": "Li_Rui",
- "totalCosts": 1276.64,
+ "totalCosts": 1256.44,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15924353/medium/24be33af9672c1afbe79146c7acda3a0_default.png"
},
{
"id": 15871701,
"username": "maxwellcotto",
- "totalCosts": 827.19,
+ "totalCosts": 806.99,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15871701/medium/211aaa985795803b88e9fa89069ed517.png"
},
{
@@ -68614,6 +70172,17 @@
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15438492/medium/cccf6914fa8683665b5a72a175b712a7.jpeg"
}
]
+ },
+ {
+ "fileId": "8011",
+ "contributors": [
+ {
+ "id": 16158452,
+ "username": "sang_shi",
+ "totalCosts": 1124.13,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/16158452/medium/8544f339158effd95f9bda0987cb93aa_default.png"
+ }
+ ]
}
]
},
@@ -68679,7 +70248,7 @@
{
"id": 15399006,
"username": "Xeift",
- "totalCosts": 31.31,
+ "totalCosts": 46.46,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15399006/medium/4b4638642287027a89529ecb11074e44.png"
}
]
@@ -68719,7 +70288,7 @@
{
"id": 15399006,
"username": "Xeift",
- "totalCosts": 593.88,
+ "totalCosts": 595.9,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15399006/medium/4b4638642287027a89529ecb11074e44.png"
},
{
@@ -68760,7 +70329,7 @@
{
"id": 14779158,
"username": "K0ue1",
- "totalCosts": 989.8,
+ "totalCosts": 446.42,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14779158/medium/a0145bfd442c7c2b368c5aeae336f176.png"
},
{
@@ -69052,7 +70621,7 @@
{
"id": 15399006,
"username": "Xeift",
- "totalCosts": 437.33,
+ "totalCosts": 443.39,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15399006/medium/4b4638642287027a89529ecb11074e44.png"
},
{
@@ -69150,7 +70719,7 @@
{
"id": 15399006,
"username": "Xeift",
- "totalCosts": 927.18,
+ "totalCosts": 749.42,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15399006/medium/4b4638642287027a89529ecb11074e44.png"
},
{
@@ -69241,7 +70810,7 @@
{
"id": 15399006,
"username": "Xeift",
- "totalCosts": 391.88,
+ "totalCosts": 405.01,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15399006/medium/4b4638642287027a89529ecb11074e44.png"
},
{
@@ -69408,13 +70977,13 @@
{
"id": 14817838,
"username": "Tadashi1024",
- "totalCosts": 158.57,
+ "totalCosts": 151.5,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14817838/medium/e8bbda9fb55464b5d13482f3f1bef0d4.jpg"
},
{
"id": 15841839,
"username": "ekc9399",
- "totalCosts": 158.57,
+ "totalCosts": 151.5,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15841839/medium/0a25585c566bb1f7be4cba84b02e8561_default.png"
},
{
@@ -69437,13 +71006,13 @@
{
"id": 15222542,
"username": "Jcys",
- "totalCosts": 243.41,
+ "totalCosts": 240.38,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15222542/medium/c4b538278714558f9a5430c0cef783de.JPG"
},
{
"id": 15399006,
"username": "Xeift",
- "totalCosts": 154.53,
+ "totalCosts": 161.6,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15399006/medium/4b4638642287027a89529ecb11074e44.png"
},
{
@@ -69565,7 +71134,7 @@
{
"id": 15399006,
"username": "Xeift",
- "totalCosts": 1986.67,
+ "totalCosts": 1991.72,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15399006/medium/4b4638642287027a89529ecb11074e44.png"
}
]
@@ -69711,7 +71280,7 @@
{
"id": 15399006,
"username": "Xeift",
- "totalCosts": 59.59,
+ "totalCosts": 81.81,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15399006/medium/4b4638642287027a89529ecb11074e44.png"
},
{
@@ -69809,8 +71378,14 @@
{
"id": 15806537,
"username": "Tyou",
- "totalCosts": 306.03,
+ "totalCosts": 281.79,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15806537/medium/bcd829ea4cae49b3ec63925ecd75c126.jpeg"
+ },
+ {
+ "id": 15399006,
+ "username": "Xeift",
+ "totalCosts": 17.17,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15399006/medium/4b4638642287027a89529ecb11074e44.png"
}
]
},
@@ -69912,7 +71487,7 @@
{
"id": 15399006,
"username": "Xeift",
- "totalCosts": 493.89,
+ "totalCosts": 478.74,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15399006/medium/4b4638642287027a89529ecb11074e44.png"
},
{
@@ -69977,7 +71552,7 @@
{
"id": 15399006,
"username": "Xeift",
- "totalCosts": 1651.35,
+ "totalCosts": 978.69,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15399006/medium/4b4638642287027a89529ecb11074e44.png"
},
{
@@ -70086,7 +71661,7 @@
{
"id": 15399006,
"username": "Xeift",
- "totalCosts": 1055.45,
+ "totalCosts": 1034.24,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15399006/medium/4b4638642287027a89529ecb11074e44.png"
}
]
@@ -70097,7 +71672,7 @@
{
"id": 15956019,
"username": "cc03668",
- "totalCosts": 666.6,
+ "totalCosts": 536.31,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15956019/medium/2db4e1795f6076358b4fc078852af802.png"
}
]
@@ -70154,7 +71729,7 @@
{
"id": 15399006,
"username": "Xeift",
- "totalCosts": 1673.57,
+ "totalCosts": 1653.37,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15399006/medium/4b4638642287027a89529ecb11074e44.png"
},
{
@@ -70205,7 +71780,7 @@
{
"id": 15399006,
"username": "Xeift",
- "totalCosts": 664.58,
+ "totalCosts": 702.96,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15399006/medium/4b4638642287027a89529ecb11074e44.png"
},
{
@@ -70246,7 +71821,7 @@
{
"id": 15399006,
"username": "Xeift",
- "totalCosts": 48.48,
+ "totalCosts": 131.3,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15399006/medium/4b4638642287027a89529ecb11074e44.png"
},
{
@@ -70269,7 +71844,7 @@
{
"id": 15399006,
"username": "Xeift",
- "totalCosts": 481.77,
+ "totalCosts": 503.99,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15399006/medium/4b4638642287027a89529ecb11074e44.png"
},
{
@@ -70292,26 +71867,32 @@
{
"id": 15730443,
"username": "shinnku",
- "totalCosts": 2227.05,
+ "totalCosts": 2223.01,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15730443/medium/66ac38b84d1d3ef0166033202f82e355.png"
},
{
"id": 15957819,
"username": "ming30650",
- "totalCosts": 640.34,
+ "totalCosts": 635.29,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15957819/medium/2baae61ca579f0a04efd89cd210f2c6a_default.png"
},
{
"id": 14778478,
"username": "ricky321u",
- "totalCosts": 238.36,
+ "totalCosts": 227.25,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/14778478/medium/4172614fb3568f84106c89c102f7fb5b_default.png"
},
{
"id": 15508914,
"username": "0xycl",
- "totalCosts": 129.28,
+ "totalCosts": 125.24,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15508914/medium/98fd4c1396bf4b16bcf44f291ee28fcc.png"
+ },
+ {
+ "id": 15399006,
+ "username": "Xeift",
+ "totalCosts": 24.24,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15399006/medium/4b4638642287027a89529ecb11074e44.png"
}
]
},
@@ -70524,6 +72105,12 @@
{
"fileId": "5565",
"contributors": [
+ {
+ "id": 16275116,
+ "username": "efereum",
+ "totalCosts": 361.58,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/16275116/medium/514d93e943fe6c7ac6a122f588df32f8_default.png"
+ },
{
"id": 15837955,
"username": "Magdalena_",
@@ -70596,7 +72183,7 @@
{
"id": 15837955,
"username": "Magdalena_",
- "totalCosts": 1613.98,
+ "totalCosts": 1582.67,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15837955/medium/8c0a833a266fd86e17f6e6ce9592278d.jpg"
}
]
@@ -70708,6 +72295,12 @@
"username": "Magdalena_",
"totalCosts": 230.28,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15837955/medium/8c0a833a266fd86e17f6e6ce9592278d.jpg"
+ },
+ {
+ "id": 16275116,
+ "username": "efereum",
+ "totalCosts": 7.07,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/16275116/medium/514d93e943fe6c7ac6a122f588df32f8_default.png"
}
]
},
@@ -70717,7 +72310,7 @@
{
"id": 15837955,
"username": "Magdalena_",
- "totalCosts": 2089.69,
+ "totalCosts": 2075.55,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15837955/medium/8c0a833a266fd86e17f6e6ce9592278d.jpg"
}
]
@@ -70767,7 +72360,7 @@
{
"id": 15837955,
"username": "Magdalena_",
- "totalCosts": 306.03,
+ "totalCosts": 281.79,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15837955/medium/8c0a833a266fd86e17f6e6ce9592278d.jpg"
}
]
@@ -70811,7 +72404,7 @@
{
"id": 15710553,
"username": "StarIsland",
- "totalCosts": 1677.61,
+ "totalCosts": 1658.42,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15710553/medium/0ac5008c20552404c3f6826699f42375.jpg"
}
]
@@ -70822,7 +72415,7 @@
{
"id": 15837955,
"username": "Magdalena_",
- "totalCosts": 3210.79,
+ "totalCosts": 3186.55,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15837955/medium/8c0a833a266fd86e17f6e6ce9592278d.jpg"
}
]
@@ -70851,6 +72444,12 @@
"username": "mk_1023",
"totalCosts": 351.48,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15952609/medium/2cefc34ddb056ff1a484e60803e24088_default.png"
+ },
+ {
+ "id": 16254604,
+ "username": "lja0207",
+ "totalCosts": 3.03,
+ "avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/16254604/medium/fb499391a046c43dcb2260028458a6d4.jpeg"
}
]
}
@@ -70909,7 +72508,7 @@
{
"id": 15948377,
"username": "Isaachavertz",
- "totalCosts": 306.03,
+ "totalCosts": 281.79,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15948377/medium/b55b9374fd682ba0148fe93427edeb2a.jpg"
}
]
@@ -71053,7 +72652,7 @@
{
"id": 15967185,
"username": "waseemnaik",
- "totalCosts": 517.12,
+ "totalCosts": 485.81,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15967185/medium/8544c16b7d24e687e63334d42c70d6dd.png"
}
]
@@ -71153,7 +72752,7 @@
{
"id": 15962007,
"username": "omkarkamale001",
- "totalCosts": 1613.98,
+ "totalCosts": 1582.67,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15962007/medium/9019d6a347ebffa6f6464e00132355aa.jpeg"
}
]
@@ -71336,7 +72935,7 @@
{
"id": 15934037,
"username": "fuji.anggara10",
- "totalCosts": 306.03,
+ "totalCosts": 281.79,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15934037/medium/e913f10d6d3550452e0b7c072e15aa40.jpeg"
}
]
@@ -71483,7 +73082,7 @@
{
"id": 15885247,
"username": "ct1aic.eth",
- "totalCosts": 1613.98,
+ "totalCosts": 1582.67,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15885247/medium/cf22113f9226047f8f9868e4774bc4c3.png"
}
]
@@ -71594,7 +73193,7 @@
{
"id": 15967793,
"username": "TanjaPale",
- "totalCosts": 1613.98,
+ "totalCosts": 1582.67,
"avatarUrl": "https://crowdin-static.downloads.crowdin.com/avatar/15967793/medium/7a23945a1b7ec0fd21d81d4820ba115f_default.png"
}
]
diff --git a/src/data/crowdin/translation-buckets-dirs.json b/src/data/crowdin/translation-buckets-dirs.json
index 047969f7919..d8a003ebaa7 100644
--- a/src/data/crowdin/translation-buckets-dirs.json
+++ b/src/data/crowdin/translation-buckets-dirs.json
@@ -110,9 +110,5 @@
{
"id": 7833,
"name": "28) Developer Tutorials IV"
- },
- {
- "id": 8218,
- "name": "Menu redesign & language picker"
}
]
\ No newline at end of file
diff --git a/src/data/developer-docs-links.yaml b/src/data/developer-docs-links.yaml
index 5a6070ad1c3..39700df5c21 100644
--- a/src/data/developer-docs-links.yaml
+++ b/src/data/developer-docs-links.yaml
@@ -70,12 +70,12 @@
to: /developers/docs/consensus-mechanisms/pow/mining/
items:
- id: docs-nav-mining-algorithms
- to: /developers/docs/consensus-mechanisms/pow/mining-algorithms/
+ to: /developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/
items:
- id: docs-nav-dagger-hashimoto
- to: /developers/docs/consensus-mechanisms/pow/mining-algorithms/dagger-hashimoto/
+ to: /developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/dagger-hashimoto/
- id: docs-nav-ethash
- to: /developers/docs/consensus-mechanisms/pow/mining-algorithms/ethash/
+ to: /developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/ethash/
- id: docs-nav-proof-of-stake
to: /developers/docs/consensus-mechanisms/pos/
items:
diff --git a/src/data/execution-bounty-hunters.json b/src/data/execution-bounty-hunters.json
index f1282594b14..a393e44ba00 100644
--- a/src/data/execution-bounty-hunters.json
+++ b/src/data/execution-bounty-hunters.json
@@ -24,6 +24,11 @@
"name": "Yoonho Kim (team Hithereum)",
"score": 20000
},
+ {
+ "username": "",
+ "name": "nrv (@nervoir)",
+ "score": 31000
+ },
{
"username": "johnyangk",
"name": "John Youngseok Yang (Software Platform Lab)",
@@ -169,6 +174,11 @@
"name": "Hwanjo Heo",
"score": 1500
},
+ {
+ "username": "BlockTrident",
+ "name": "BlockTrident",
+ "score": 1500
+ },
{
"username": "DVPNET",
"name": "DVP (dvpnet.io)",
diff --git a/src/data/externalTutorials.json b/src/data/externalTutorials.json
index 1c833f66d63..068de0d8512 100644
--- a/src/data/externalTutorials.json
+++ b/src/data/externalTutorials.json
@@ -1,4 +1,24 @@
[
+ {
+ "url": "https://updraft.cyfrin.io/courses/security",
+ "title": "Learn Smart Contract Auditing, Security, and DeFi",
+ "description": "The ultimate web3 security course for all those looking to be top smart contract developer or security researchers. We teach you all the cutting edge skills needed to make web3 safer and start a successful career in web3 security.",
+ "author": "Cyfrin Updraft",
+ "authorGithub": "https://github.com/PatrickAlphaC",
+ "tags": [
+ "solidity",
+ "smart contracts",
+ "video",
+ "oracles",
+ "foundry",
+ "defi",
+ "fuzzing"
+ ],
+ "skillLevel": "advanced",
+ "timeToRead": "1320",
+ "lang": "en",
+ "publishDate": "12/13/2023"
+ },
{
"url": "https://youtu.be/umepbfKp5rI",
"title": "Learn Solidity, Blockchain Development, & Smart Contracts using Foundry",
@@ -458,5 +478,16 @@
"skillLevel": "beginner",
"lang": "en",
"publishDate": "03/22/2023"
+ },
+ {
+ "url": "https://veridelisi.medium.com/learn-opcodes-7bd28d5f0d1b",
+ "title": "Learn EVM Opcodes Series",
+ "description": "Welcome to the comprehensive series on understanding Ethereum Virtual Machine (EVM) Opcodes",
+ "author": "Engin YILMAZ @veridelisi",
+ "authorGithub": "https://github.com/veridelisi",
+ "tags": ["opcodes", "foundry", "smart contracts", "solidity", "yul", "storage", "memory"],
+ "skillLevel": "beginner",
+ "lang": "en",
+ "publishDate": "03/08/2023"
}
]
diff --git a/src/data/placeholders/content-developers-docs-accounts-data.json b/src/data/placeholders/content-developers-docs-accounts-data.json
index f2652d15455..d9207e764d1 100644
--- a/src/data/placeholders/content-developers-docs-accounts-data.json
+++ b/src/data/placeholders/content-developers-docs-accounts-data.json
@@ -1,7 +1,7 @@
{
"/content/developers/docs/accounts/accounts.png": {
- "hash": "a95ce6de",
- "base64": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAJCAYAAAA7KqwyAAAACXBIWXMAAAsTAAALEwEAmpwYAAABxklEQVR4nGNYVXWD+2VHuUAk+zpmVsZGpuio9cxlJf/ZO9r/c2yeeoGzNbWVY0FuDut8y2zW1uhWtoXtu7lmz/rPDsJ1tf95GUAKP005zL1z9X/hHdv/i23Z8l9o5///zP+luZj+V8gIPO9okLs9Y6364cWHFffOPSHxv86J92quFSsDEDQ2/BcG0YzrN/4Pn7/o78k5879dWbXq/+5l6/+bgST+d3Zwrd3wP2/p8v9HFy7+d2rFuv/Tdi17KMUABZUVP4QYZs16wg60lW3KlA/c7W2P+RYv/s8F5DMfd3Nl+d+RwbFq3f/U+Qt/r5w37/uaFWv+tx9b9UQaZkBVxX8hBpBfGLCA/x0eQANEWFas/p+1aPG/3UAX7Fuy8v/k7XOOCG/pvGC+ZcI9w9Sk/9woBshw/WeEGxDHz/x/djk7UFPG/AU/1gJdsQHoup7di3aLTGz5Gdbd9d8n0BeoF6cLtkox32s3Zlu+7n/2oiX/D8xf+PcIMCym7Fl8QqSl+G1Ac/kPN1AE4DYA5IIqIU6gNzjAuEqN839VLCdIvKHqv29Z43/r6VP/c4KikQ+IJYBYDB03Nf4Xh2EYH6R23tz/PFB9UgD3PgEBfDDN5AAAAABJRU5ErkJggg=="
+ "hash": "904f7f94",
+ "base64": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAICAYAAADwdn+XAAAACXBIWXMAABYlAAAWJQFJUiTwAAAB40lEQVR4nC2PMWgTYRiG/2KbpFZREJ2KDoYOOkax4CAuEh3cgi4uDqEgjl1c/qHQJThkDFgOs1gvrSLUE3s21+Yu1ztT7xJ7IfFSG0JsG5NY1JrkEu/yyh0OL8/w8j18L6GU+mZnH56cn390ZjoyPd5pm5O9Vm2m06jN9Br1aOf73mOrWb1DCCGiiPPZLJ5uiEiIWURDodAYYRgmkEpVLi8u6dfn5tYu2Ec/76PbxKBZHdqHdRvWD6B7qLgCXcetQgH4mAPKX5CORulxsrIyuKaqTjeXs6Hm0GyY7Ri0l3+RYYZOhhlATwG7uU1CyIgk/bq7bQClElAs/hdwXO/ipornstx/syEj0a7sPUF+Gfb6AizhmY3PS0BtS6YG63vLY0qSwH1Y6ykZCTQcDvsJy7I+9z1BEEZd9uvlByi8Rj+dsPvphQG2FuFUVJXQG6M8j6uajpZegKNpeBEMBv0kHo/7AYwA8AQ4OrgH8x0gMQ4kxkbxFeyq9omEQmOi2LxtGBju7Hgz3kcikXFP4B2y7DGPrcpNfJVNlAUDpfVtmOIuvhlJt1tdxRVFcf7k84CiYNmb4AoopSdisdiEm2QyOaGZ+2fzBzhn7v/2KAj6aYbSQCLBnuJ5ayqTsS5xXHuSUhr4BzxhS50aoiLjAAAAAElFTkSuQmCC"
},
"/content/translations/de/developers/docs/accounts/accounts.png": {
"hash": "abae6b89",
diff --git a/src/data/placeholders/content-developers-docs-blocks-data.json b/src/data/placeholders/content-developers-docs-blocks-data.json
index 6f632224a79..0dbc059c319 100644
--- a/src/data/placeholders/content-developers-docs-blocks-data.json
+++ b/src/data/placeholders/content-developers-docs-blocks-data.json
@@ -1,7 +1,7 @@
{
"/content/developers/docs/blocks/tx-block.png": {
- "hash": "00f61ce4",
- "base64": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAJCAYAAAA7KqwyAAAACXBIWXMAAAsTAAALEwEAmpwYAAABWElEQVR4nI2RTUsCYRDHV1kjo0OHwC4GglQfIBH6ANmh6OAXKA8dvAZ9BalEz+Gldp9d19V9cXexFTtIJ0O69jU03y5C/+YxpIKUBv4wzPxmnpl5BGGBpYBAIY/gXIu4meVvX8WfQrEQxOmmOM+jGA3y2MlN9xe3tGnnrnPoKMN0WcHxIxsfYGcj8Cf41ELYtHFet3HhkgwTmXa+vaapkCQF70xFv6JAfSuVwkYdGc5x2RbOmIx1gZytRhOThg/M1MT42UGMimRZxYRpGGtlSF0XMcp/cz4G9Pi24DcQ0Q2MVA2oGQBNM2hVEXceelmdTSWjjHuP9bLUNF41MZLZFLpOnIl+00dUqOmIWHWMHBdwPMB2MDBq2P06XkHE1WWI+1YFe8QNifvgHPl9y6QGegUhz0PCdZDk0k0kaK1VXpRL5cTro5fZtXlsztHESbrHPq2wsvQn/mOfeTwBaNAoZtUAAAAASUVORK5CYII="
+ "hash": "646832b0",
+ "base64": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAHCAYAAAABIM1CAAAACXBIWXMAABYlAAAWJQFJUiTwAAABUElEQVR4nG2QS0sCcRTFJ3ss27RoF20LalEt+gwRFEXfoC/Ralbta9FDosVotJASxSiK0h7mjOPrrzOa1oihIS2LoMcE/mKmgoQOXA7ce87h3itJf4Ase1yOby2SUMJcbftIKHtcK8tAh/QfZBlPIECnU+k03W5A5WiHpwJUYjaPOtwdlwks9DizWIyuX73jldo24LtBdt/HfZL34sUrlgoiYiIPuwEgtW+SSDCi6sxrKWZUlSlXlA/5eUjzYUZtahoUImW8492xKyb1DHPJJNOOx/FKqRTBWg0Mk5Zp8LmiMEB6dx0rzmf+5IWbKGSDGU1e7c0KSpblau16HTIZgpJhEGo0oFSiVbnFPjhvDT0rs32cbE5wuTbKqXfs7Uge9PsPe80iVrXqau1m0+WQpOksCYGay3OWFRyEw/T//KPtVudhus6GEMSF4DiXQ3O8X0ofCYk4lB/TAAAAAElFTkSuQmCC"
},
"/content/translations/de/developers/docs/blocks/tx-block.png": {
"hash": "1fa2409d",
diff --git a/src/data/placeholders/content-developers-docs-consensus-mechanisms-pos-attack-and-defense-data.json b/src/data/placeholders/content-developers-docs-consensus-mechanisms-pos-attack-and-defense-data.json
index bae5b89c69f..a24e0367790 100644
--- a/src/data/placeholders/content-developers-docs-consensus-mechanisms-pos-attack-and-defense-data.json
+++ b/src/data/placeholders/content-developers-docs-consensus-mechanisms-pos-attack-and-defense-data.json
@@ -1,7 +1,7 @@
{
"/content/developers/docs/consensus-mechanisms/pos/attack-and-defense/reorg-schematic.png": {
- "hash": "aaff0fbb",
- "base64": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAJCAYAAAA7KqwyAAAACXBIWXMAAAsTAAALEwEAmpwYAAABUUlEQVR4nGNggIK0tDT+jo4OORA7NDSUs7m6WR5IM4P4QLZicUwxNwM+cOXYMaFLZ8/qZSbna86cOFP57dvn2leuXGEDyV0+d0L//Pn9Alg1hoauAtsyafOVRRM3XfkPMuTu3btZ33/8/P/27atQGRkLzqnbbv2fvuVyL1h9/Sq2////M8INqK+vZwLRMzddTJm48cxChv8MjG/evNH6/+PT/P8/v+jb19ezTFx5YvP0tafjQOqAmplwegNs8jYG9glHN5lWzzuyctbWE05QcRYQvXj/aYeWJce3bzlxyRjTMKBL0maeYQUx1x4/7tqx/ur/uQfOpoH49vt7RED0rD3HE5pXXvi/8/gNTxB/1SqI9zFdAQRvn9/RmdTcreisEStcb1/PArMRiNnxegMKGMvKymSiA9Mk/e3jBWDRSTQAuQKYLkDeYUSTYGRAjgEgAAAQw6QrLEaZfwAAAABJRU5ErkJggg=="
+ "hash": "e8523f39",
+ "base64": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAPCAYAAADtc08vAAAACXBIWXMAABYlAAAWJQFJUiTwAAACRklEQVR4nIVTT2iSYRjXzW25OWY5ZoTZnxFBdFixS3SN7h0MOkS3DjslHVoEfZDl/78ZiB4yPYx6iRwjBEv8yK1PP/2yiNA2hDzUYbQ5dhmIa7/e1/yWm0YPPLzv8z7P83v+vgqO4/ooq8Lh8ED7vkdWKBRKJjM2mUz9iv1kt9vH/H6/kZ4Gj8ejJoQMWiyWo+zN5/NpA4HAENNRNlL9oS4ARiwac7ZarTpmFOW4A+3oLWJ3BtzTWTbw+x/pHQ7HeZfLdZaeo/v1LEhPZ56HipAtYySyYpilGQQp14jrBFKuCdlmbg76WKxuBKDsAnifx82PnwBJQpXJWHx8qfnuaQPZ6DqS9yafJTFZLDbXi8XtRj6Py3LQXbDlZdxeWwOqVWye4VY1DTFyFV9eAh+e/2rwD6dIClNfK9iu1YByGVdaQYC/01hawmkhj7uCiBst5ZvgESyS2Z3sCzMEj/oJgSad2XiQyWzYeH7HwGwWFjA8P49RQtpAtHEjcpdTWVzMlSAKJWRev8VJuYkUWik7FwrI0JJXafnXWTpKQgR1LPZKxwzK5a1rP74DtW9oiuLmBfrUn0jw2mg0oTWbTep0+rO+UsHPer1V9p3dUuSm5HI4nhPhLUi4n0hA26n7kw1UtJm3pBI8tJnT/9qLwZkZk8Zmsx2k8x8PBoM6t9s9zmSmoybd4+ykZDI5FAqFTlGnc2yxvF7vND2POZ3OwwxEkqQBNgnKfV3ObOMoj7HV7vl5/kfxeHyERpugn0lPgYbbz8oO3kO/AcDmXQ6fytPKAAAAAElFTkSuQmCC"
},
"/content/translations/es/developers/docs/consensus-mechanisms/pos/attack-and-defense/reorg-schematic.png": {
"hash": "2e38c778",
diff --git a/src/data/placeholders/content-developers-docs-consensus-mechanisms-pos-attestations-data.json b/src/data/placeholders/content-developers-docs-consensus-mechanisms-pos-attestations-data.json
index ab9a70ecfb6..781ad5b78f8 100644
--- a/src/data/placeholders/content-developers-docs-consensus-mechanisms-pos-attestations-data.json
+++ b/src/data/placeholders/content-developers-docs-consensus-mechanisms-pos-attestations-data.json
@@ -1,7 +1,7 @@
{
"/content/developers/docs/consensus-mechanisms/pos/attestations/attestation_schematic.png": {
- "hash": "78675710",
- "base64": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAOCAYAAAAmL5yKAAAACXBIWXMAAAsTAAALEwEAmpwYAAAC6klEQVR4nH1TbUhTURi+mjn8IEKxwCD60hSiiEKoqJ9BhWZBQRGk9COsJn1QUj8aQQ2HWM0t1IzErx9e17YkZZvEymzN2nS6ue3efbD2db3b3WfebRrtdI5t/qoOHM577/u8z/s+73sOhsGFazQFPp1jq0wm20imSU4oFOKbzeaPDBPsAQCsx/63rrb375ONyeQrKrtptEcy2zXwhh8Oh+8b5gxS/3fG4Z0L3UU4ANR5kCznjw0K4C6DuxB7+YXkf16YHU0N6R6M42Z3x4BKcqetrQgBFcOgxfhu0RideC/IBK5DJ0zQTJKkNhgM3sN6p23ntITtBnQeEA0YbvNE8joTbSqGzoNJkNzp1szWBAzmSujnpNNgAyKIx+PV0Wh0IZFIHEKs50mCZEmC+AXtCwgQi8VKmWBwDGbqZBimORKP11OUd4z2u9Uw6CJFUUUwAZ5MJrdjLADlNE0fj8Qj9ZCgEuB48RRheyFg2XJE5vH4bwHgLVVNLje+nUg8B8BdAAk2wZgPqVSqcq2ZFgvZSBCWZxqNkysbj6VH1cuN6P/8/I/N6OSKktybopVeTzi8N0TTh+GkJJCgAknIMZlM+QqFokQoHOeQM5NleinVpuhNVQGA5XZ361bH+GgEnLjSCWoSsdhlv99/DUroW6sAkuTyeDw0pjyoWex0OKZCoSAffRMEsQVhxGJQnJnAJUjQlKmgCgXXuVwug8vt/gbtk5FIZNvS0tKpQCCgYZhwO9TbIhQKOdk7AP0NqAKPxzMIm70bEewn7U6xnbCPxBPxowjk8/kKWZY9k0qxZynKx8VxPD/bK0hcARMesVqtfXAKO7BaXs8uiVzStSw3fpJ14trXQ1JBFuzWO49556jrqzJ5vNy/XuVBg/eJwW5Ssfh8q1JC+Dr6lMMURTc4nfaHxumfeqty0RZSTjzO4lG/MnJWJWFPNZZaqXbmNIiCktZuXZPglaIeltmv1+lpr5dWMXqimlJ/3fOvt/QbQvQI2PE+79MAAAAASUVORK5CYII="
+ "hash": "3c87820c",
+ "base64": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAOCAYAAAAmL5yKAAAACXBIWXMAABYlAAAWJQFJUiTwAAAC2UlEQVR4nGVSa0hTYRg+OjMLo4gKQRCkMCLqj2lBUFB/giAymgZC1o8sopv2xyA9kFGGk7azdnS6qaERHrzgTJPUOed1Y9txKl7m5sw5r+k00nQ6nr6zqT/shffP837P816ejzKacatVhxYhzWbcoEg0a1HR1YVGk2nzu9GIutpaRAs4gCBqd9hsyBodBYQctiFzS+CP0QAYen6D57Gs0+HUlkAwOE4EGsE7An19yBofB1wuoL8fbwTsR/38udJmxBcacFqtrs3Nzy9QM1JphlKp3LNFC9qZhqjHdXQhq60dmVotzhMomC5xhq3cC4lDIhX3TvIxnS1gW6VSKVtCp4ShTXUJzaXxuzfxq3FpafvInCI8DL2NZyIfMg4CD4KfbD9Ce/FrWMqAzmKgozjJD7a2IoTjuIjPSi6KY3KjqRKE4TnFIDsSyD4OPKWqKA4iWnw5HP1VenQT8gAH2Grk/x2Uo8WhlHCoRwcuIP2YEy+PLCy9OJksCPj31itvrjQVza+3FNrQzsb6ScS6O8TCxjY9NAYDrglYqtK9X5MaG2URhx99n5f3gWUVczKZrImixCJ8+xSBGvrQTle7HRKnM2DjyKD3lYBpm1aTm9pxV9uNJE11v6SsrCKFZZkrQu1tXl6kjGHMLMu6JRKJgjKaIBkaAgZJmix47L+LDqu9vcTWAcBqxQZx6sx2Q5qmD+fk5CQqFIr7xJmrFG9CwgDv1Vj5zcqfYxDj79IJghVZLaiw8t6vVouvfNbtvYi15RhgLWbG4ThL/kAEyb0Ba+Yd2RhoIO3q5jA9tApTtQ9jnR5M8oswVy5i0uqBvdOLvnofpkZ8sDasY9oCLLoLAgJry3JMdRBrNBvwkGMYic+TZmCWzN+jBn4NA442sl85IdlJ/csGXDrAt6IKCCy7rsPFqzDBS7EwycDZzWBqWI45O4NhnRwzdjlcvXLY9HJ/3dEjhdOsgmciQeD/A0TCDcLTgNMoAAAAAElFTkSuQmCC"
},
"/content/translations/es/developers/docs/consensus-mechanisms/pos/attestations/attestation_schematic.png": {
"hash": "186d5aef",
diff --git a/src/data/placeholders/content-developers-docs-consensus-mechanisms-pos-keys-data.json b/src/data/placeholders/content-developers-docs-consensus-mechanisms-pos-keys-data.json
index 45ab7a7df5b..4efda1b53e8 100644
--- a/src/data/placeholders/content-developers-docs-consensus-mechanisms-pos-keys-data.json
+++ b/src/data/placeholders/content-developers-docs-consensus-mechanisms-pos-keys-data.json
@@ -1,11 +1,11 @@
{
"/content/developers/docs/consensus-mechanisms/pos/keys/validator-key-schematic.png": {
- "hash": "3b3c1972",
- "base64": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAPCAYAAADtc08vAAAACXBIWXMAAAsTAAALEwEAmpwYAAAB7ElEQVR4nH1STU8aURSd2L9H2PAf3NGk3dCkXUgwqUkT/Ejc1ZUrYxM3xmiIhZmOwqCMiBNCkKpBQguSYegU+ZjC8d2rbyz4cZI7uXPum/PuPXcUTGE0GuGfiGl4nvfkHEEpl8solUowTROFQoHzk3wexEuOcuKoZlkW85RTKLVaDcViEZXKOR+kuPa5ygQnc+KpXq/XodCLpmowjCwyaUOo53FxeQld15HLmcwfHx0LgWtRzyAtwsydQFXVewGa46p2jp39LRyd6nBcm2e7sX9ByySwf7gD27lhzu06zOnZ76g3ru49oIfzt4Xt3S2UKhb6Xk8YNMZt/w+0dBJqOoGh12fOGw3xw0gidZCAe9t+FCBHbdtGr9djUm7BdV10Oh3Ohw9baLfbzEuwQLVaxVw0is1vm/666NDi0hKWV1b8D+iCr2tr+LywwBf6AmTk29lZbKyvoz8YcMERN0c/fsKX+XnOCd1uF6uLcXx4/w6tVutRgAo/rTMYwvlms4mxGGEs+KyuIbW3xyMR97vRwEEqiQuxQnmR8v/fNRAk7ZnUaRRq2RYzE08cdSp9mvBAGimDQH/cm5kZBAIB9ui5M086kF0QwuEwFEXhCAaDvonTeFEgEon4AqFQaKL2qoBsj/Ydi8UQj8cn9j6NOwF8Y22U33zBAAAAAElFTkSuQmCC"
+ "hash": "7a00837b",
+ "base64": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAQCAYAAAAiYZ4HAAAACXBIWXMAABYlAAAWJQFJUiTwAAACmklEQVR4nCWQTWsTexSH/76vFD+Gi7vxEwiuBFeCC1cV5V4Etd67UBEEu9Aq1YX00horuFC4ys21abVvtulkWs3LNDNJ2maa96ZNk4akGnMr00ycZPLIxMXhnIfncOD8hBDs0zTtkBBCeD5wZ3KKkKYxp2rMqBpBReW249xu9wGnC2C/LMsHnXniPY+mp0lGI205EGhEQqFGOqzYD7p7snxQ192HxZ99fcf/uv/kdG9v7xFH9A32Hbt69+GZgYGBo92LQohb/YOnrvf3n+hCY27k5vr481DL5/obZeSsOTfye278WfiH5Boi+OIcgWe/lSZdUnXq+Rv8I/cE9bCKkQB7C2p+N9+CU5hp6BTh/+g7yrNXaGXgm97CTCII/3eNuHeINXkY5c15gq970OeG0SUXkdELeAdPsjo5RHLhKcsTjwXVzCVT8VzfC7p7KWkXqeZ7TG38WpfXlcvsFnus6OzV3YV/b5D+9Idgd8MgJ0PWBztxs2OU62wsQkqCctRir1Kj4IeU16a6jKCS32Ur1qEQs9lOGXzZ/EpxBQqxNuWE2d4p7FBadbxFxfkhFzRavhc0vS5YmTYprNQ7iy/Zmx2CiMeiGK/hf8X3mWGb2CiinQ0ZrHmx13yQWjTbuXCdhJeWLkHKZ7XWtZrDTV2yyS0gyKsGmc+0MwHI+k17M1on+xkrHYTsotXZXK453EwFbTYCCDYiBqobwm8h6TM7pUQd7R0ob0H/aNnb6RpRD4T+sUnMIuxs6HtTGaWheDrE5/fsvFazljw0lDGb1Y9NNld2WuoYhjLWQp92UoobFFUoxmA7YlJN1imGf3FJs/iSrnV5K2ZTiSIo6/Mk5sPdyi95qSRnSMyrJKQlcgGZr7kJUpLKmhQi82npJ0j6VwdqpUGwAAAAAElFTkSuQmCC"
},
"/content/developers/docs/consensus-mechanisms/pos/keys/multiple-keys.png": {
- "hash": "fa02b5c9",
- "base64": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAALCAYAAAB24g05AAAACXBIWXMAAAsTAAALEwEAmpwYAAAz0XRFWHRSYXcACmV4aWYKICAgIDY1MzIKNDU3ODY5NjYwMDAwNDk0OTJhMDAwODAwMDAwMDA5MDAwMDAxMDQwMDAxMDAwMDAwMmEwMzAwMDAwMTAxMDQwMDAxMDAwMDAwCjJkMDIwMDAwMDIwMTAzMDAwMzAwMDAwMDdhMDAwMDAwMWEwMTA1MDAwMTAwMDAwMDgwMDAwMDAwMWIwMTA1MDAwMTAwMDAwMAo4ODAwMDAwMDI4MDEwMzAwMDEwMDAwMDAwMjAwMDAwMDMxMDEwMjAwMGQwMDAwMDA5MDAwMDAwMDMyMDEwMjAwMTQwMDAwMDAKOWUwMDAwMDA2OTg3MDQwMDAxMDAwMDAwYjIwMDAwMDBjNDAwMDAwMDA4MDAwODAwMDgwMDQ4MDAwMDAwMDEwMDAwMDA0ODAwCjAwMDAwMTAwMDAwMDQ3NDk0ZDUwMjAzMjJlMzEzMDJlMzEzODAwMDAzMjMwMzIzMDNhMzAzNzNhMzIzNDIwMzEzNjNhMzIzMgozYTMyMzkwMDAxMDAwMWEwMDMwMDAxMDAwMDAwMDEwMDAwMDAwMDAwMDAwMDA4MDAwMDAxMDQwMDAxMDAwMDAwMDAwMTAwMDAKMDEwMTA0MDAwMTAwMDAwMGIwMDAwMDAwMDIwMTAzMDAwMzAwMDAwMDJhMDEwMDAwMDMwMTAzMDAwMTAwMDAwMDA2MDAwMDAwCjA2MDEwMzAwMDEwMDAwMDAwNjAwMDAwMDE1MDEwMzAwMDEwMDAwMDAwMzAwMDAwMDAxMDIwNDAwMDEwMDAwMDAzMDAxMDAwMAowMjAyMDQwMDAxMDAwMDAwNGQxODAwMDAwMDAwMDAwMDA4MDAwODAwMDgwMGZmZDhmZmUwMDAxMDRhNDY0OTQ2MDAwMTAxMDAKMDAwMTAwMDEwMDAwZmZkYjAwNDMwMDA4MDYwNjA3MDYwNTA4MDcwNzA3MDkwOTA4MGEwYzE0MGQwYzBiMGIwYzE5MTIxMzBmCjE0MWQxYTFmMWUxZDFhMWMxYzIwMjQyZTI3MjAyMjJjMjMxYzFjMjgzNzI5MmMzMDMxMzQzNDM0MWYyNzM5M2QzODMyM2MyZQozMzM0MzJmZmRiMDA0MzAxMDkwOTA5MGMwYjBjMTgwZDBkMTgzMjIxMWMyMTMyMzIzMjMyMzIzMjMyMzIzMjMyMzIzMjMyMzIKMzIzMjMyMzIzMjMyMzIzMjMyMzIzMjMyMzIzMjMyMzIzMjMyMzIzMjMyMzIzMjMyMzIzMjMyMzIzMjMyMzIzMjMyMzIzMjMyCmZmYzAwMDExMDgwMGIwMDEwMDAzMDEyMjAwMDIxMTAxMDMxMTAxZmZjNDAwMWYwMDAwMDEwNTAxMDEwMTAxMDEwMTAwMDAwMAowMDAwMDAwMDAwMDEwMjAzMDQwNTA2MDcwODA5MGEwYmZmYzQwMGI1MTAwMDAyMDEwMzAzMDIwNDAzMDUwNTA0MDQwMDAwMDEKN2QwMTAyMDMwMDA0MTEwNTEyMjEzMTQxMDYxMzUxNjEwNzIyNzExNDMyODE5MWExMDgyMzQyYjFjMTE1NTJkMWYwMjQzMzYyCjcyODIwOTBhMTYxNzE4MTkxYTI1MjYyNzI4MjkyYTM0MzUzNjM3MzgzOTNhNDM0NDQ1NDY0NzQ4NDk0YTUzNTQ1NTU2NTc1OAo1OTVhNjM2NDY1NjY2NzY4Njk2YTczNzQ3NTc2Nzc3ODc5N2E4Mzg0ODU4Njg3ODg4OThhOTI5Mzk0OTU5Njk3OTg5OTlhYTIKYTNhNGE1YTZhN2E4YTlhYWIyYjNiNGI1YjZiN2I4YjliYWMyYzNjNGM1YzZjN2M4YzljYWQyZDNkNGQ1ZDZkN2Q4ZDlkYWUxCmUyZTNlNGU1ZTZlN2U4ZTllYWYxZjJmM2Y0ZjVmNmY3ZjhmOWZhZmZjNDAwMWYwMTAwMDMwMTAxMDEwMTAxMDEwMTAxMDEwMAowMDAwMDAwMDAwMDEwMjAzMDQwNTA2MDcwODA5MGEwYmZmYzQwMGI1MTEwMDAyMDEwMjA0MDQwMzA0MDcwNTA0MDQwMDAxMDIKNzcwMDAxMDIwMzExMDQwNTIxMzEwNjEyNDE1MTA3NjE3MTEzMjIzMjgxMDgxNDQyOTFhMWIxYzEwOTIzMzM1MmYwMTU2MjcyCmQxMGExNjI0MzRlMTI1ZjExNzE4MTkxYTI2MjcyODI5MmEzNTM2MzczODM5M2E0MzQ0NDU0NjQ3NDg0OTRhNTM1NDU1NTY1Nwo1ODU5NWE2MzY0NjU2NjY3Njg2OTZhNzM3NDc1NzY3Nzc4Nzk3YTgyODM4NDg1ODY4Nzg4ODk4YTkyOTM5NDk1OTY5Nzk4OTkKOWFhMmEzYTRhNWE2YTdhOGE5YWFiMmIzYjRiNWI2YjdiOGI5YmFjMmMzYzRjNWM2YzdjOGM5Y2FkMmQzZDRkNWQ2ZDdkOGQ5CmRhZTJlM2U0ZTVlNmU3ZThlOWVhZjJmM2Y0ZjVmNmY3ZjhmOWZhZmZkYTAwMGMwMzAxMDAwMjExMDMxMTAwM2YwMGY3ZmEyOAphMjgwMGEyOGEyODAwYTI4YTI4MDBhNDBjMGIxNTA3OTFkNjk2YTI0ZmYwMDhmODk3ZjBhMDA5NjhhMjhhMDAyOGEyOGEwMDIKOGEyOGEwMDI4YTI4YTAwMjhhMjhhMDAyOGEyOGEwMDI4YTI4YTAwMjhhMjhhMDAyOGEyOGEwMDI4YTI4YTAwMjhhMjhhMDAyCjhhMjhhMDAyOGEyOGEwMDI4YTI4YTAwMjhhMjhhMDAyYTI0ZmY4Zjg5N2YwYTk2YTAzMTg5NjQ5OTFiMzgzYjdhMWM1MDA0Zgo0NTY3OWQyMjAyYjgzMjRmY2Y1M2U2MWM5YWIwOTY3MWE2YzM5NzYyOGU1ZDRiMzY0ZTQ4MjNmOTFhNTc2MmQ0YTdhNmQ4NTkKY2JhN2M0ZjI1YTQwZWVkOTI1OWEzMDQ5MzkzNTZiZmIzMmMzZmU3Y2FkYmZlZmQyZmYwMDg1Mzc0YWZmMDA5MDY0MWY0M2ZjCmNkNTdkNWY0YjlmNTI3YjczMTVmNGI2Y2IxMzAyYzIzNjYxYmM2ZjQ2MjBlMDhlYWFhY2JmZjAwMDJhNjMyZDdmNjZkODdmYwpmOTViN2ZkZmE1ZmYwMDBhM2ZiMzc0ZmNlM2VjNTZkZmY3ZTk3ZmMyYTE4NzRkNzU4MGFjZjcwZDM0ODZkOTIwMmNkZDMyMDEKY2I3ZDQ5M2NmZDA1NGYyNTk4OTI0OTVkODgyNWExZjI5NzIzZWVmNWNmZTdjN2U0MjgxZjQxM2ZiMzJjM2ZlN2NhZGJmZWZkCjJmZjg1NDRiNmI2ZjZmYWI0MjYwODIyODg5ODI0Y2VjNDBiOWY5OTNkMmFlYzY5ZTVjNDg5OWNlZDUwMzM1NWU0ZmY5MGFkYgpmZjAwZDcwOTdmZjQyNGEwNDVhYWNmYjhiNzg2ZTM1Njg5Njc4NjM5NDA4MTg4MGVhMGUzZTY1ZjVhZDBhYThkZmYwMDIxODgKZmYwMGViODM3ZmU4NGI0MDBiZmQ5OTYxZmYwMDNlNTZkZmY3ZTk3ZmMyODNhNmQ4MDE5MzY1NmQ4ZmZhZTRiZmUxNTYxYzE2CjQ2NTA3MDQ4MjAxZjRhY2Q4NzRhNzg2Mzk2M2ZiNGJjODkyMTVjODk1OTlmODBlNDkxYzkzZDU0ODVmYzI4MDJkN2Y2NmU5ZgpmZjAwM2U1NmRmZjdlOTdmYzI4ZmVjY2IwZmY5ZjJiNmZmMDBiZjRiZmUxNTAzZTlkMjMxYjkyYjI0Njg2NzY1MGM0MjY3MjgKMWJlNjFmNTJiOTE5ZWQ5ZjZjNTVjNDg3NjVjNGIyZTdmZDYwNTE4ZmE2N2ZjNjkwZTQ5MjdhMTU2ZWI0ZGIxMTY5MzExNjU2CmUwODQ2ZTdjYTVmNGZhNTU4YjJmZjhmMGI3ZmYwMGFlNGJmYzg1MmRkZmZjNzljZmZmMDA1Y2RiZjk1MjU4ZmYwMGM3ODViNwpmZDcyNWZlNDI5ODg5MjZmZjUxMjdmYmE2YWE0MWE2ZDg5Yjc4YzliMmI2Y2VkMWZmMmM5N2QzZTk1NmU2ZmY1MTI3ZmJhNjkKMmRmZjAwZTNkZTJmZjcwN2YyYTAwODdmYjMyYzNmZTdjYWRiZmVmZDJmZjg1MWZkOWJhN2ZmMDBjZjk1YjdmZGZhNWZmMGFhCmI3ZGE1Y2Q3NzdhYjcwOTc5MmM0YWFhMDA0NTc2MDMyMDNmMzgwNDAzY2IyOWZmODBkM2FlZjRjN2JhYjc5ZTMzMmE2NjY5MApiMTJjOTkwYTM2ZWQwMDczYzExYzFmY2ZkNjkzMmEyOTM3NjZlYzU4ZmVjZGIwZmYwMDlmMmI2ZmZiZjRiZmUxNDdmNjY1ODcKZmNmOTViN2ZkZmE1ZmYwMDBhNGZiMGU3Y2UyZDIxNjY5NjQ1N2M5ZmUxMGI4YzAxZWRjMTNmNTI2YWRkMzI0Y2FiMzgyMmI3CmYxMGRmMjQzMTI0NjlmNjU4MGVkNDUwMDY3N2NiY2YxNWFiNTlkMGZmYzhjOTdiZmY1ZTk2ZmZmMDBhMWNkNWEzNDAxMTRmNwoxMWRiODUzMjEyMDEyNDY3MWMwYzAyNzlmYzAxYTgzZmI1MmQzY2M0NGYzODZlNmUwN2Q3MTljN2Q2YWM0ZjA0NzczMTc5NzIKYWVlNDI0MWM2N2QwZTZhYTJlOGQ2MmFlMWM0NGMxODM2ZTA3N2I2NDFjNjMzZDZhNWYzNzQxM2I5MmFlYTM2OGU4OGUyNjE4CjcwMDhlM2Q0NmUxZmEwYTcxYmRiNjA4NWZjZTVkYWE0MDI3M2MwMjQ2NDY3ZjBhODk3NDliMzVlOTFiNzAwMDFmM2I3NjE4MQpkZWE1MzYzNmNkMDk4NWEzY2ExMjA5MDQ5M2NlMzE5Y2ZhZjE0N2JjMWE4ODc1MGIzMTljZGNjNzkwNzA3ZTZhYjA4ZWIyMjIKYmExMDU1ODY0MTFkYzU1MWZlYzdiMzBlMDg4YzgwMDM2MTcyNzhkYzAwMzhmNGUwNzZhYjkxNDY5MGM0OTEyMGMyMjAwYTA2CjdiNTM1N2VhMGFlM2VhMjhmOTlhNTNkYjgxNTIzMmFiOGMzMGM4YThhMTUwOTJjYTgzODAzMDQwYTYzMjZhMjhhMjgwMzM1Nwo0ODc4ZDc2YzVhOWRlYzY5OTM4NTUyOTgxZWRjYWQyZmY2NjRkZmY0MTZiZmZjZTNmZjAwZTIyYjQ2OGEwMGUyZmM2OTI2YmYKYTNlOGYxNDlhMTNlYTM3ZjdiMjVjNDY5YjM3NDJhYWE4NTg2NDkyY2EwNzNmNzQ3YmI3YjFhZGZiN2IxOWU3Yjc4ZTUzYTllCmE1MTk3NTBjNTFjNDYxOTczZDg4ZDlkNmE3ZDVmZjAwZTNjNTdmZWJlMjBmZmQxYTk1N2E4MDMzYmZiMzI2ZmYwMGEwYjVmZgowMGU3MWZmZjAwMTE1MjViNjllNjBiOTEzYmRlZGNjZWMxMGEwMTI5NWMwMDQ4MjdhMjhmNDE1NzY4YTAwMmFhNWQ1ODdkYTYKNjQ5NTZlYTdiNzc0NTJiOTg4YWYyMGUwZjM5MDdkMmFkZDE0MDE5ZGZkOTkzN2ZkMDVhZmZmMDAzOGZmMDBmODhhM2ZiMzI2CmZmMDBhMGI1ZmYwMGU3MWZmZjAwMTE1YTM0NTAwNzBkZTE5OWZjNDVhOTZiM2FkNDFhYjBkNGFjYWQ2MmI4YzU4NDg0YzQ3NwpjNTgxZjdiMGJjMzFlMWIwNzFjMzYzYjFhZWEzZmIzMjZmZmEwYjVmZmU3MWZmMDBmMTE1MzU5ZmZjN2Q1ZmZmMDBkNzcxZmYKMDBhMmQyYWRkMDA2NmI2OTMyYmEzMjM2YWI3ZTU1ODYwOGNjN2QzZmVmOGFkMDhhMzU4YTI0OGQ3M2I1MTQyOGNmYTBhNzUxCjQwMDhjYTFkNGE5ZTg0NjJiMzk3NGE5NTU0MjhkNWFmYzAwMzAzOThmZjAwZjg4YWQyYTI4MDMzYmZiMzI2ZmYwMGEwYjVmZgowMGU3MWZmZjAwMTE1Y2E3OGFlZjM1ZWQyNzVhZDAyZGI0ZDdkNTZlZWRlZTZlOGFkZTNhNzkzYzI2YzczODVjYThjYjdjYTUKYjhlYzk4ZWUyYmJjYWM1ZDZmZmU0MmJlMWNmZjAwYjA4YjdmZTkyY2Y0MDE2N2ZiMzI2ZmZhMGI1ZmZlNzFmZjAwZjExNDdmCjY2NGRmZjAwNDE2YmZmMDBjZTNmZmUyMmI0NjhhMDBhNTY3YTcwYjRiOTlhZTFhZTY3OWU1OTUxNTBiNGE1Nzg1NTJjNDAxOAowM2ZiYzZhZWQxNDUwMDE0NTE0NTAwMTQ1MTQ1MDAxNDUxNDUwMDE1MTI3ZmM3YzRiZjg1NGI1MTI3ZmM3YzRiZjg1MDA0YjQKNTE0NTAwMTQ1NjVkODVhMjRmNjUxY2IyNGI3MmNlZDkyNGZkYTY0MWRjZmYwMGI1NTY3ZmIzYTBmZWZkY2ZmZTA1NDlmZjAwCmM1NTAwMzM1N2ZmOGYxNWZmYWY4ODNmZjAwNDZhNTVlYWE0ZmE1ZGI0OGJiNWNkYzMwYzgzODM3MzIxZTQxYzgzZjdiZDQ1MwpiZmIzYTBmZWZkY2ZmZTA1NDlmZjAwYzU1MDA1YmEyYWE3ZjY3NDFmZGZiOWZmMDBjMGE5M2ZmOGFhOGQyMDViN2Q1MjEwOTIKNGM1NWExOTA5NTc5OWRjNzBjOTgzODI0ZmE5ZmNlODAyZmQxNDU1MGI4ODg0ZmE5YzUxYmJjYTEwNDJjZDg0OTU5MzlkY2JlCjg0NjY4MDJmZDE1NTNmYjNhMGZlZmRjZmZlMDU0OWZmMDBjNTUxZmQ5ZDA3ZjdlZTdmZjAyYTRmZmUyYTgwMGIzZmY4ZmFiZgpmZjAwYWVlM2ZmMDA0NWE1NWJhYTZiYTY1YjI5NjJhNmUwMTYzOTYyMmU2NGU0ZTMxZmRlZjQwMjk3ZmIzYTBmZWZkY2ZmMDAKZTA1NDlmZmM1NTAwNWJhMmE4NWNkODQ0OTZiMmIyYzk3NDA4NDI0MWZiNTQ5ZTlmZWY1NTliMzYyZDY1NmVjYzQ5NjMxYTkyCjRmN2UyODAyNmEyOTkzMTIyMTcyMGUwZWQzNTUyMWIwODVhMDhkOGM5NzI0OTUwNGZmMDBhNTQ5ZTlmZWY1MDA1ZWFjNWQ2ZgpmZTQyYmUxY2ZmMDBiMDhiN2ZlOTJjZjU3ZmZiM2EwZmVmZGNmZjAwZTA1NDlmZmM1NTMyNGQyMmQyNTc4OWU0MTNiYjQ0ZGIKZTMyZDcxMjEyOGQ4MmI5MWYzNzA3MDQ4ZmExMzQwMTdhOGFhOWZkOWQwN2Y3ZWU3ZmYwMDAyYTRmZjAwZTJhOGZlY2U4M2ZiCmY3M2ZmODE1MjdmZjAwMTU0MDE2ZThhY2NiNDQzMGViYjc5MGFjOTMzNDYyZGEwNzBiMjRhY2UwMTJkMjgyNDY0OWM2NzAzZgoyYWQzYTAwMjhhMjhhMDAyOGEyOGEwMDI4YTI4YTAwMmEwMjllNjQ5MzJlZjY1Y2VkZTU0ZTBkNGY1MDkzZTU0Y2NjNDFkYWMKMDcyMDY3OWEwMGE4NzRjOTE4NjBkZmRjNjc5YzkwNzFmZTdhNTU4OGVkNTkwYTE2OWU0NzJhYzRmY2M3ZDdmY2ZmMDAzYTkzCmNmNGZmNmJmZWY5MzQ3OWU5ZmVkN2ZkZjI2OTcyYTE1ODgzNGFmZjkwNjQxZjQzZmNjZDQxYWFjMWFhNGNmNmZmZDlkNzJiMAphMDYxZTZlNDBjOTFiZDMzOGM4M2ZjMWU2N2UzOGEyMTg2NmI3ODg0NTE1ZTkwOGI5YzAzMDY0OGU2OWZmZTkzZmYwMDNmYmYKZjkyZmZmMDBkN2E2MzEyMmI2YmU3ODA5Yjk5Yzc5YzZkOTIzYzQ2NzAwNDk4M2I5YjNlZTcxZjk3YmQ0YjcxNmQzNGFlZWNhCmU3MWU1YWFhYTg3MmJmYzU5NmU5ZWEwMDE5ZWQ1ODNlMjhmMTBjZmUxY2QyN2VkOWU3MzVjNGFkMjI0NzFjMjk2ZmYzM2U0OApjZTM5ZWMzMjdmMGFkNjgyNzk2ZWFkZTM5ZTFkNDU1ZTI5MTQzYTMwODM4MjBmMjBmNWEyYzE3ZDJjNWZiNjQ3OGVkYTI0OTAKZTVkNTQwNjM5Y2YzOGY1ZWY1MTQ5ZmYyMTViN2ZmMDBhZTEyZmYwMGU4NDk1MGZmMDBhNGZmMDBjZmY3ZmU0YmZmMDBmNWU5CjYyNTY1YmE1OWU2YjkzMjZkNDY0MGEyMmRiZDQ4MzlmZmM3NjgwMmZkNTQ2ZmYwMDkwYzQ3ZmY1YzFiZmY0MjVhOWJlZDExZgphOWZmMDBiZTRkNTU5ZDdjY2I5NDllMmI4MzEzMmExNDM5OGY3MDIwOTA3ZmE1MDA1ZDdkYzUxODI5YzM2MGUzZWI1OWQxNWEKZWEwMjI5NjM5YWU3Y2QwZmI0MDJjNDAyMDZmM2JiZWU4MWZjMzhmYzY5ZjliOWZmMDA5ZmUxZmYwMDgwZmYwMGZkN2EwOWI4CjAzMjZmYzdmZGY4ZmZlYmQwMDM1ZWRhZjBiNWQxNDIwNzljY2FhYjk5NGUwMjY3MGM0N2ExZGE0ZTMxZGMwZmFkNGQ2ZjA1Ywo0NzdkNzEyNDhlNGM2ZmY3N2Y3ODRlN2QzZTVlOGI4ZTljNzVhZTdiYzM5ZTI2OTNjNDMyNmEwOGIyYzk2ZTZkNmUwYzY5ZTYKNDAzZjdkMWZmMGM4YmNmNDNjZDZlZTZlN2ZlN2Y4N2ZlMDNmZmYwMDVlOTU4NzI3Y2NlZWNiNTc3ZmYxZTczZmZkNzM2ZmU1CjQ5NjNmZjAwMWUxNmRmZjVjOTdmOTBhYTkyMmNmMjQ2YzhkN2UzMGMwODM4ODNmZjAwYWY1NmExOTIyODYxOGUyMGM0ODQ1MAphMDkwN2IwYTYyMjU5YmZkNDQ5ZmVlOWE0YjdmZjhmNzhiZmRjMWZjYTlhZjM0NGU4Y2JiODhjOGM3NDM1NTExNmUxMTE1NDUKZjhjMDE4MWZiOGZmMDBlYmQwMDM2ZjYwZDRlNGJkMGY2Yjc0MjM4MDI4ZjkzOGU1YjBmOWNlNDFlZmU1ZmUwMGQxNzk2YjdiCjM0MzJmOTZmODkxYTVkYzk4OTU5MDIwMGI4MWQzYWYzYzkxZWZlZDRmY2RjN2ZjZmY4ZmYwMGJmMWZmZDdhYzBmMTE3OGEyNApkMDJmNzRhODFhZTdjZDE3OTcxZTVjY2MyMGZmMDA1MzFlZDNmMzllN2E2ZWRhM2U5OTNkYTkzNTcyYTMyZTU3NzQ2ZTVlNTkKZGVjZDFjZTYzOWM4Njc5MzI4MDM5NGQ4YTEzMDM5MWZlZDdjZGZhNTY5OGU5Y2Q2N2U2ZTNmZTdmZDdmZWZjN2ZmMDA1ZThjCmRjN2ZjZmY4ZmYwMGJmMWZmZDdhMmRhZGM5MTIxZmY5MTkyZjdmZWJkMmRmZmYwMDQzOWFiNDZiM2FkYTIxMGRlY2Q3NzJkYwo5OTY0OTYzNDhmMWU1ZWQwMDI5NjIzZmYwMDQzMzVhMGFjMWQ0MzBlODY5ODBiNDUxNDUwMDE0NTE0NTAwMTQ1MTQ1MDAxNDUKMTUxOTlkMDEyMzkzOGUzODE0MDEyNTE1MTc5ZTllOGRmZjAwN2M5YTNjZjRmNDZmZmJlNGQwMDRiNDU0NWU3YTdhMzdmZGYyCjY4ZjNkM2QxYmZlZjkzNDAxNTc1NzAwZTllNGUwNjQ0OTFmM2ZmMDA2ZDE2YWYwMDAwYzAwMDBmNmFjZWQ1YTc1M2E3OTE4NgpmZjAwNTkxZmYwOWZlZmFkNWRmM2QzZDFiZmVmOTM0MDEyZDE1MTc5ZTllOGRmZjdjOWEzY2Y0ZjQ2ZmYwMGJlNGQwMDRiNDUKNDVlN2E3YTM3ZmRmMjY4ZjNkM2QxYmZlZjkzNDAxMmQyMTAwODIwODA0MWVhMGQ0N2U3YTdhMzdmZGYyNjhmM2QzZDFiZmVmCjkzNDAxMWRiMjhmMzZlMGUwNjQ0OTgwN2ZlMDJiNTY2YTlkYmNlYmU2NWNmMGRmZWI3ZmJhN2ZiYTJhN2YzZDNkMWJmZWY5Mwo0MDEyZDE1MTc5ZTllOGRmZjdjOWEzY2Y0ZjQ2ZmYwMGJlNGQwMDRiNDU0NWU3YTdhMzdmZGYyNjhmM2QzZDFiZmVmOTM0MDEKMmQ2NWVhY2EwZGVlOTA3MDM5YmNjMWZmMDBiZjUyNTVmZjAwM2QzZDFiZmVmOTM1OWJhYTRjYTZlZjQ5Mzg2ZTJmMzNkM2ZlCjk5NDk0MDFhZmQwNjA1MTUxNzllOWU4ZGZmMDA3YzlhM2NmNGY0NmZmYmU0ZDAwNGI0NTQ1ZjY4NGY0NmZmMDBiZTRkNDhhYwoxOTQxMTljN2JkMDAyZDI2NDdhOGE4MmYyZGRhZWFkOGM2OTI3OTZjNDhjMzYzMzhmNWZkMzM1NDIwZDEzYzgyMDA5Yzk1ZGMKYmRjODM4NTI3MWM4M2Q3Njg1MWY4NjZhNWI3N2Q4ZDIzMTgzNTc3MmIzMzVlOGFjYzFhNzVjODBmOWJiNjJlNTQwMGRiOTgxCmUwMzBmNWZmMDA2ODdlNTUxZmY2NTVmNjNmZTQyOTI5M2IwMmUzOWVhMDYzM2Y1ZWE3ZWI4ZjRhMmVmYjBmZDljM2Y5OGQ3YQoyYjJhMmQyZWU5MmNlZGUzMzdlZmU3Yzc5MmYyODVlNjQyN2FlN2Y5ZmQ3ZGIyMGM5NjU2NTc1NmYzMjk5YWYyNTk5MTUwODIKMThlNzczMTNkN2YwMWM1MTc3ZDgxYzIyOTNiNDhkMWE4YWRmZmQ0MmZlM2ZjZTlkMjA3MmJmMjEwM2VhMjkyMGZmMDA1MDk4CmY0YWEzMjI0YTI4YTI4MDMzZWNkNmUyZWFkNTI2NmJjOTU0YmU0ZTE1NTMwMzlmNzVhOWZlY2QzN2ZjZmY0ZmYwMGY3Y2E3ZgpmMTM0Y2QyYmZlNDE5MDdkMGZmMzM1NzI4MDI4ZGM2OWVmNzMxNzk1MjVmNWM2ZGM4NmUxNTNiMTA0N2YwZmI1NGJmNjY5YmYKZTdmYTdmZmJlNTNmZjg5YWE5MTVkZWE1YjI2Njk2ZDk3ZmQ1YjM0NmE4YTQxZGMwMjkwMGU0ZjcyYzQ3NmZiYmY5NWQ4ZmNlCjE3MGM4ZTc3NDYyMzVjMzZkYzY1YjljZmY0YTA2OTBkZmIzNGRmZjNmZDNmZmRmMjlmZmM0ZDMxM2NlOGFmZTM4OWFlMWU1NAo3ODlkODg3NTUxODIwYWUzYTAxZWE2YWU1NTU5M2ZlNDJiNmZmZjAwNWMyNWZmMDBkMDkyODExNmFhOWNlZDJiZGZjNzAyNGMKZDEyOTg5OWNlZDBhNDkyMDgxZGMxZjVhYjk1NTFiZmU0MzExZmYwMGQ3MDZmZjAwZDA5NjgwMWRmNjY5YmZlN2ZhN2ZmYmU1CjNmZjg5YTNlY2QzN2ZjZmYwMDRmZmYwMDdjYTdmZjAwMTM1NjZiMmY1NmJiZDRhZDhlNmMyZDU2NzAyMzY2MjE4MTM5MjAxMgowMGMxZWY4YzdlMzQwMTYxMmNhNTQyZTQ1ZjRmOTc2ZGM3ZTU0ZWI4MDNmYmJlZDRmZjAwYjM0ZGZmMDAzZmQzZmYwMGRmMjkKZmYwMGM0ZDQxNzEyZGUwNTlkZDM3YTgwNTU2MzUwOWJiOWM2NGI3NGU5OTM4ZWZmMDA3N2RlYWY4Y2VkMTllYjhhMmUzYjY5CjcyOWNmMGNmMTViYzkyMGJlOWIyYWE0OGNhYTc2MWZlZWQ1OGI2OTFhNWI0ODY0NmZiY2U4YWM3ZWE0NTI1ZGZmYzc5Y2ZmZgowMDVjZGJmOTUyNThmZjAwYzc4NWI3ZmQ3MjVmZTQyODExMmM4YzU2Mjc2MWQ0MDI0NTU1OGEwOWRlMjQ3MzdkMzY1OTQxZmIKYTlmZjAwYzRkNTk5YmZkNDQ5ZmVlOWE0YjdmZjAwOGY3OGJmZGMxZmNhODAyMmZiMzRkZmYzZmQzZmZkZjI5ZmZjNGQ0MzNlCjk4ZDcxMjViYmJkZjVjNjYwOTNjYzRjMDRlYmI0YWYzZjJmYTMxYWI3NzBmMjQ3NmQyYmM0OWJlNDU0MjU1N2ZiYzcxYzBhYQozMGNmYTgzYTQ4OTM0NmE4ZmU2MDBhZTg4NDAyYmJjODI3OTI3Zjg0NjdmZTA0M2YxMDBiM2Y2NjliZmU3ZmE3ZmYwMGJlNTMKZmYwMDg5YTNlY2QzN2ZjZmY0ZmYwMGY3Y2E3ZmYxMzQ5NmIyNGVmNzE3MjI1MDdjYjU2MWU1OTJiOGY1ZmYwMGViN2FmNWZjCjA1YWE0OWRjNzI1Njc2MzNlZGE1OTk3NTdiYWI0OTI2Njk2MzhlMDhhNDUyYzAwMjBiMzQ4MGY0MDNmYjgyYjQyYjNhMWZmOQoxOTJmN2ZlYmQyZGZmZjAwNDM5YWI0Njk4ODI4YTI4YTAwMjhhMjhhMDAyOGEyOGEwMDJhMTgxOTQ0MmEwYjAwNDc1MDRkNGQKNGMzMTQ2NGU0YTI5M2Y0YTAwNWRlYmZkZTFmOWQxYmQ3ZmJjM2YzYTRmMjYzZmVlMmZlNTQ3OTMxZmY3MTdmMmEwMGNmYjYxCjdkNmI2ZWIwYWE1YTNhYTY0MDYzMzMwMjQ2N2QzNmQ0YmU3NmExZmYwMDNjYWNmZjAwZWZmYjdmZjEzNTZmYzk4ZmZiOGJmOQo1MWU0YzdmZGM1ZmNhODAyOGNiNzFhOTI0NGVjOTZkNjZlYzAxMjEzZWQwYzM3MWY0ZmJiNDk2ZjdiNzk3MzZlOTM0NTE1YTEKNDcxOTE5OTk4MTFlYzQxNGM4M2VkNTdmYzk4ZmZiOGJmOTU1MDlhMjRkM2VlYmNmMDgzZWNiMjljNGMzMWM0NmRkOWZkODFlCjg3ZjAzZWE2ODAyNGYzYjUwZmY5ZTU2N2ZmMDA3ZmRiZmYwMDg5YTIyMTcyZjdjOTM1YzBiNzQ0NDhkOTAwOGU0MmM0OTI1NApmNzAzZmJiNTZmY2E4ZmZiOGJmOTUxZTU0N2ZkYzVmY2E4MDE3N2FmZjc4N2U3NTRlZTE2NzE3OTFkYzViZjkwZDg4ZDkwODkKMjQyYmQ0ODNkODFmNGFiN2U0YzdmZGM1ZmNhOGYyNjNmZWUyZmU1NDAxNTNjZWQ0M2ZlNzk1OWZmZGZmMDA2ZmZlMjY4ZjNiCjUwZmYwMDllNTY3ZmY3ZmRiZmY4OWFiN2U0YzdmZGM1ZmNhOGYyYTNmZWUyZmU1NDAxNDYzYmFiZjkxYTQxZTRkOThkOGRiNwpmZDdiNzNjMDNmZGRmN2E3ZjlkYTg3ZmNmMmIzZmYwMGJmZWRmZjAwYzRkM2VkZTI4ZmNjYjlmOTE3ZmQ2ZmE3ZmIyYjU2M2MKYThmZjAwYjhiZjk1MDA1MTk1YjUwOTYxNzhmY2FiMzFiOTRhZTdjZjZlMzNmZjAwMDFhYjc2ZTA0MzZkMTQ0NWQ0OTQ0MGE0CjgzZTgyOWZlNGM3ZmRjNWZjYThmMjYyZmY5ZTZiZjk1MDAyNDg1NWUzNjUwY2I5MjA4ZWI1NGUzN2Q0MTIzNTRmMmFjY2VkMAowNjdjZjZmZjAwZTI2YWVmOTMxN2Y3MTdmMmEzYzk4YmZiOGJmOTUwMDU0ZjNiNTBmZjAwOWU1NjdmZjdmZGJmZjg5YTgwZGYKNmExZjZjNWI3NGI3YjQ2M2I3NzQ4ZGY2ODZjMjBlZGZjMWQ0OWVkZjVmYzZjNWU0ODkwMjJhNDUwYWM5NzEyOWRiMWE3ZjMyCjdkODc1M2ZlMjQwYTdkYWQ4YzU2ZDE2ZGMwNzc2M2I5ZTQyMzk3NmVlN2ZjZjQxODE0MDExZjlkYTg3ZmNmMmIzZmZiZmVkZgpmYzRkMWU3NmExZmYwMDNjYWNmZjAwZWZmYjdmZjEzNTZmYzk4YmZlNzlhZmU1NDc5MzE3ZmNmMzVmY2E4MDI5NWE0MzM4ZDQKYWU2ZWVlMGMwYmU2NDMxYzRhYjFiOTZmYmE1Y2U0ZTQwZmVmZmU5NWEwMDgyMzIyOTllNGM1ZmYwMDNjZDdmMmE3MDAxNDYwCjBjMGEwMDVhMjhhMjgwMGEyOGEyODAwYTI4YTI4MDBhMjhhMjgwMGEyOGEyODAwYTI4YTI4MDBhZTVlNmQyYWMyZjI1Yjg3Ygo5YjI4MjY2Nzk2NDBjNjQ4YzM2ZTFiODhjMWNmYjU3NTE1NTlmNGZiMjk1Y2JjOTY5NmVlZWRjOTY2OGMxMjdmNGFjNmI1MzcKNTIzNjRlYzRjOTVkMWM1NGI2NTM0NzMzMjQ3ZTFjYjM5MjMyY2ZiMWY3ODVjMDFmNzcyMzA3YWY1ZTNhN2E1Njk0MWE0ZDhjCjkxODY5NzRiYjc4OTg4MDc2OTQwNDhlMDY0MWZhMWM4YWRlOWI0N2QzNjc4NWUyN2IxYjdkYWMzMDRhYzYwMTFlZTBlMzgzNQo1ZWQ2Y2VjYzRhNmNlZTZjYWQ4Y2U4YmI5NWZjOTUwMjU1ZmVmMGUzMTlmNTFkYjhlYzQ1NzNiYzI0YmY5YmZhZmJjOWU0N2QKYzZlODc2ZjBkYWNiNzkxNDExMmM2OTk0M2I1NDYwNjcxNWIxNTE0MzZmMDViMjk1ODIxOGUyMDRlNDg0NTBiOWZjYWE1YWViCjg0Nzk2MmEyY2I0YWM4YzBmMTNjNjkzYmU4ZDBjYWExZTM3YmUyMTkwZjIxODc5MTMxZTQ3ZDQwM2Y4NTY3NWU2OTU2ZjEyNAo2NmQ3NDliNTk0ZWVmOWMxNTAzZTVjMTNjN2JlNDAxZjhkNzU5MzViYzM3MmExNjc4NjM5NTQxYzgwZWExODAzZWJjZDQzZmQKOTlhN2ZmMDBjZjhkYjdmZGZhNWZmMGFjNmI1MDk1NDk3MzI5NTg5OTQ2ZWNlM2FkMmM0Y2E4ZWQ3MWUxZGI1YjcyNzY5NTAwCmFiOTM5YzY3M2QzYTdhZmI3ZTc3ZTVkMzJjNmRkYWRlNTg2ZDIxOGU0NWI5ODcwY2E4MDExZmJjNWFkYWI3ZDM2YzBjOTcxOQpiMmI2Mzg5NzhmZGQyZmY3NDdiNTU5NWQzYWM1MTk1OTZjYWRkNTk0ODIwODg5NzIwOGVmZDJiMzU4NTkyOTI3Y2RmZDdkZTEKY2FjYjM0NTE0NTc2OTY3MmE5YTVkOGNlZDM0YjJkOWMyZWVkMzQ4NGIzMjAyNGZjZTZiMjI2YjRiOThlZTRjNzFmODY2Y2E1CjhjYmJlZDkzY2M1NWMyOGZiYjkxODNjOWY2Y2Q3NmQzNThlOWNhYWYzNGQ2YjZhMDBjYjNiYmM2YmY1MjQ5YWE1NmRhNWRhNQpkY2EyZjI0YjA4MTIzYzdlZTYyMzEwMDcwN2Y4OTg2M2E5ZjRlYzNkYzljNzEzYzJjYWVkZjM3ZjVmNzk5ZjIzZWU2NGMxYTMKZDg0ODU5ZTVkMmFkYTM2MDcwYmYyMjkyNTcwM2ZhZmYwMDJhZDdmMGZjNDkwNWJkZGM1MTIwNDhkNmU1ODJhYThjMDFmMmFkCjVkZmVjY2QzZmYwMGU3YzZkYmZlZmQyZmY4NTRkMGMxMTViYTZjODYyNDhkMzM5ZGE4YTAwY2ZlMTVhNTFhMTJhNzJiYjk1YwphNGI1YjkyNTE0NTE1ZDI1MDUxNDUxNDAwNTE0NTE0MDA1MTQ1MTQwMDUxNDUxNDAwNTE0NTE0MDA1MTQ1MTQwMDUxNDUxNDAKMDUxNDUxNDAwNTUzZDUyMjU3YjE5MjVlOTJjMGE2NTg5Yzc1NDYwMGYyM2Y1MWVlMDkxNTcyYWI2YTFmZjIwZGJhZmYwMGFlCjJmZmM4ZDAwMzE2MWJkMmEwZmRiMTc5MWZmMDAzYzQ3ZjhkMzY1ZjNlMDQwZjM2YTMxNDZhNTgyODJmMTgwMDkyNzAwNzI3YQo5M2M1NWM0ZmY1NmJmNDE1NTM1NWQyZWRmNThiMDdiM2JhZGZlNTMxMGQ5NDM4MjA4MzkwNDFlYzQxZTczNDAwOTE3OWYzNDQKYjJjNWE4YzUyNDZlMDMyYmFjNjA4MjBmNzA3MzRlZjJhZWZmMDBlN2Y5M2ZlZmQwZmYwMDFhYzRmZjAwODQxMzQ4MGZiYTM3CmI5OGM2YzA4NTUxZDQyOTUwMTgwMThjN2EzN2U4M2I2NDFjYmJiZDMzYzM5ZTFmZDc2ZGVkZTczNzRiZjZiN2YzMTUwZTBjNQpiYjAxNDJlMzZmNzBhN2U1MDc5YzkzODM4Y2E4MDc1NzBjMzNmZWYxZTNkNDIzNjBjZTc3MTExODM4MjM4MjNhZmI1M2Q1NmUKMWMxMmJhODQ0YzAxMjA5MTE4M2M4ZWEzYWQ2M2RhZjg0YjRkNGIwYjg1YjRiYTk5YTNiYzhmZmQ2OTI5MjcwNWI3ZTQxMmJjCmU3M2QwZTQ3YjcyNzI4OWUwNWQyMjNiNTY4MTFhZTAwNjRkOWJiNzI5NjFmMzY3NzAyNDdkZWVkOWY0ZTI4MDM2ZmNhYmJmZgowMDlmZDRmZjAwYmY0M2ZjNjhmMjJmM2ZlN2YxN2ZlZmM4ZmYwMDFhY2VkMzdjMmQ2NWE1ZWEyZjdkMGNmNzJmMjNiM2IxNTkKMWMxNWNiMTFkODAxZDNhMGZkNzM4MThkY2EwMGNkNzgyNTkyZmVkZTFiOTlmY2Q4YjZiNGJiMDI2ZDA1OTRhZTMzZWEzZTZjCmUzZDQwYWQyYWFiMjdmYzg1YWRmZmViODRiZmYwMGExNDc1NmE4MDBhMjhhMjgwMGEyOGEyODAwYTI4YTI4MDBhMjhhMjgwMAphMjhhMjgwMGEyOGEyODAwYTI4YTI4MDBhMjhhMjgwMGEyOGEyODAwYTI4YTI4MDBhYWRhODdmYzgzNmViZmViOGJmZjAwMjMKNTY2OTkyYzRiMzQyZjEzZTc2YmE5NTM4ZjQzNDAwYTlmZWFkN2U4MjlkNTllMzRkOTQwYzBkNTJmYjFmNThmZjAwZjg4YTVmCmVjZDk3ZmU4Mjk3ZGY5YzdmZjAwYzQ1MDA1ZmFhYmE4NjlkNjdhYWQ5YjVhNWY1YmE0ZjAzMTA1OTFmYTFjMWM4ZmU1NTE3Zgo2NmNiZmYwMDQxNGJlZmNlM2ZmZTIyOGZlY2Q5N2ZlODI5N2RmOWM3ZmYwMGM0NTAwNzhhNWMzNzg4N2MzMWUzMDlmNDkxYWMKNWVjMTZmMTI5OWVkYjc0NTM0ZmYwMDZiNzMyMTA5MThkYTc2YWZjOWI3MjQ4ZTRmMmQ5YzlhZjc0YjU2OTllY2UwN2I5NDA5CjNiNDZhNjQ0MDcyMTViMWM4ZmNlYWExZDJkY2IwNjNhOTVlMTYxZDA5ZjJmMjNmZjAwMWNhNzdmNjZjYmZmMDA0MTRiZWZjZQozZmZlMjI4MDJmZDE1NDNmYjM2NWZmMDBhMGE1ZjdlNzFmZmYwMDExNDdmNjZjYmZmNDE0YmVmY2UzZmYwMGUyMjgwMjU5M2YKZTQyZDZmZmYwMDVjMjVmZjAwZDBhM2FiNTU1MmRlYzRjMzcxZTczZGQ1YzRlYzE0YTBmMzRhZTAwMjQxM2QwMGY0MTU2ZTgwCjBhMjhhMjgwMGEyOGEyODAwYTI4YTI4MDNmZmZkOTAwCuBFZDEAAAHISURBVHicfZFJS0JRFMcvtegD1Ddo3UdoETSCRUQDpTbQ5GsgWhhYRvSKQIpIoqykFvmyAZ+CPAK12rgpo0XurEVSFJKRNpib6p/3WGEF/eFyh3Pu757/uQwZSiaTNOLx+Pf8NTLPM9fs64Dr+uYanr1dqNVqdHe0w2gcxo7DgRatFs1aDWySBLPZjJrqarSm9n6/H8zjU7AqLePk9Jiosdg9FEWBVqNBIBAg+Mz0NARBoHgkEoFer4cojqcrSLwk8Jx4wuvbKwXD4QsCyLIDPp8XoVAILqcTGxsSgsEgvcr3a2urqdwwWGYPuAW34oJOp0NFeSlZ4LD6uloUFRWSHYvFgpLiYpSXlVCF7HcTo7dRetVkMlECr0qWZSwsLtL66vISdrsdS0vLaQtuyYa50RG4beufFsIwDBsw2D8A64qVLk9MTGJsZJQuyrKTYkJXJw6PjsCeHx8Qu4uCz7xJHKAou+jtE9DT35mq4hAG4xBa2hrI/5RpHE2aemxtblGlfyxwCNfs/BQYY5Bd22hsq0J+QR7BcnIZGltV3/k/AL91dnZOvcjKyiaYKIo42D+g2Nv7O83/AtJ2FFRWqgjg8XrJBhf/dq4Pwlw0HW21aGIAAAAASUVORK5CYII="
+ "hash": "bf9d1e38",
+ "base64": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIWXMAABYlAAAWJQFJUiTwAAADCklEQVR4nG2RTW8bRRyH97twQuKAuLYgVCQOXOh34QgIKYlSyokDt1qJ1abESQNKlVakpcWNEztrx944zqp24pes7fhlvbZ3N3ac3ezMPmixBBdGevT/PaPRaEY/Rc3ys6bxWM2xms8TLxSIn54SL5fnVCrzWSr9lysVVstlnmSzLCuNBje6Dn+8gmh2uzCZzHFdcBywbUmvN/vHI2yb0PPANOkrh4eMDtLTW1UVfiYz8/NHwr8wCAxD+Ofn/k21dutVa7d+vS68szPPO6/6frXqe5cthK7TUA6yfFwscvfoiDsRqQx3Mhk+Saf57O3b6VfpNPdSqeCL3d3O/YO94Mv0XnBvf5/PVZVPk0k+Uv5vLTx88M33D5a+jvLi4uIHSz8uL363sPBh5NH+wvLSt/8exu3/wmS0yZW1jmslsPsJ5ySpXhVeJ2kcPRGX5e1x4XXeL73Zoac/ntW1N3buVZbquy06lZ8U4U0deXOFuHFD4c/gxobyCyhtQf1PsPR5juio0FbhZCOkugODU0Nh3C2ETr8VOt2L0DaNcNgyOH7eRE20KO0YGHmD/LMm6q8tKu8MqimD7HqTo2cdGrmkgtPdxu6UGPcKOD0Nt6fhWFpgdYtcmVqEdPrHc7e0iNth9xjH1HHNNSWYWo4/6uK7g9BzTELPhcAlmA7g1gFxTeiN5y6uQUyjHCKuIJgYCu5gxGRI6JjCH/aktJqS/O+SzFNJYVvSyErUDSnTa5LyX5JKUnK4JsgloJ5tRC04zMbIcT/0rA7hoAGHT+FgFdR1qOzDQRxSK1B8CaVd2F8JycShshe9oO9wPYbpKIwuYjoCs4psl2BQA6cPvTKyrcO4DeNLRKsUMqzBqG0o2P0RrhVim4E/7Ao5bAm0HRGqm4Ljl4JGTpDbEuIwIajsCc5SQqobAfmo5ugLcuaAhOA6xJ+ANwL9ORQ34f0L6BbheBO0BDRSYKRB2wjRf4NO3ohqfIgzWGFiPcK1Yrj9GJd6jOZJjMv3MUYXMdqluZvVGFYtRrv4iFYxzqD2w99ZgVw8gFDt7wAAAABJRU5ErkJggg=="
},
"/content/translations/es/developers/docs/consensus-mechanisms/pos/keys/validator-key-schematic.png": {
"hash": "326d987a",
diff --git a/src/data/placeholders/content-developers-docs-evm-data.json b/src/data/placeholders/content-developers-docs-evm-data.json
index 9808ce64de3..dde00a25a17 100644
--- a/src/data/placeholders/content-developers-docs-evm-data.json
+++ b/src/data/placeholders/content-developers-docs-evm-data.json
@@ -1,11 +1,11 @@
{
"/content/developers/docs/evm/evm.png": {
- "hash": "4719961e",
- "base64": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAJCAYAAAA7KqwyAAAACXBIWXMAAAsTAAALEwEAmpwYAAAB1UlEQVR4nHWRy2tTURDGr4kxj/qID1wLigtxkY2vUpXipvviwoULlYJ0KXTXP0ChVhFBiGmjhRgiRmutdlMfxIbYtDTJzb25SW5yxRhTiViEFIlU8/Ocq9npwMfMnMfMN98omcmVHu7FdxGd20H4sZ+Zp/53j2q+Z3E8/8JiErf1ZsPLzML2+RBeRZ/GU69dc9brdef6dGuzNpp3ioeO/0ERRrDfR/TcHjNe3qrIbgQvuhgMbLIvBwMOrvY5lb/G8wFHN+7cuumS/skkh6fCjKfvt7bJQ9/aQmeflaT//SKnvqQ4Ws6yP5+lt5TjuK5yoJDlmFag90OSQ7KAGmbvcoQTgrHHrlzQGFFVKBoCJiWjSKjRAMsCwyBSrdBuNqFq8NBmNTe7RbKWmigMH3Hl0pzOrDCezzGWzTBcLnJDAC3PT+Gn1CzrsnjF4IEccS2xcfJX9O3uO9exR1L0HCNF8aFSAdOiVP9IqNWC5lcQcWR1lfb3tsgbxKRWL2YJLsU5+Eek0SvuWprAUorL6jJDguZZU6evqnOprHNBF+xE5/OmxtDnDGdkAXsLEwM7X7384VVeT+BtBD+5u0rHYjFH53bK1c3lartxYixhzy1E7Pl2d94v498GP1bJGKLdBgAAAABJRU5ErkJggg=="
+ "hash": "569f0dec",
+ "base64": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAOCAYAAAAmL5yKAAAACXBIWXMAABYlAAAWJQFJUiTwAAACs0lEQVR4nD2SW08TYRCGPxOiQoR4oYVIvPWSBP+BBhKj/gR/gPFK1KtChBuFRCCloaC2ZBcoLbBdqKQpVi0SAiGlHEoPLFBKS0EpbOsBiVr4uuPMprjJm52d+Z7Z2XeW1dTUlDO8AOBcZSWrLrvIDBfOsyskTF8tLWUGg6GssqKCXbt8iZWXlLDqqqqS68TorLHRecNkXrpp7l2pNTZJ9Q1PhHuPG/rvtrZ9utXcIt1paZHrX7z01D19ZrtvbBq7/bxZrjM2DtdbxUgtsWxgMDasKDnw+1Pc50vCR38KJie3YVRSdMnyJoyNb8JZrVjnxBDLBCEizc19gYmJrZN3E1saCWNNFEOayezXui2ftSFHRPN4EtpZ/b0veTI//xWIZYP2qGsnfQTYhFOSmtF9dnbvfzwzswtTU2k9Dgb3weNN8ETiOxDLXGPrUi73hw7ko9EsFTg1G7THaMzTdProFMfnRYjH4984vjlPLyWW+XwJV6GgQWAhyTc2cpDJHMPe3i9QlCyo6m+g5rHYIT6rep7q8XiWE0Msa301+8juWPOOjK5LKLkoF07gdo4oNqzZHI41N+Wcw4qMpsr4LGHNSyzrfR2yut3xv4IQypi7Z1STaUq1WhcP0MhjYSDqJeEWji098weWnjnV1DWtovsZYiw9SzbdRFoJAlwQg+hsAOTxzUIodAjo+CJpefkAnM5IQZLDMDS0BOPudX2Nuol9fWFX0d1TNFELh1USJ+dx1AXS9PQukMH4D2hotkZnaUPEMqt1Rf8PYmvZPBZ4ILBPbp8Q5HAqAfzuAK2QcvgpnCbFZnlaM7EMx3WlUj/pAN/e/kF3wNUVcF3g9SWDJIpxZD1HogmJIZa1tn14gHu12PpC7WJ/tLPfHusUxXCHIKxaOrsWH5IofvN2tYPqJBy9nRhi/wFeMojsR2e6lgAAAABJRU5ErkJggg=="
},
"/content/developers/docs/gas/gas.png": {
- "hash": "54879603",
- "base64": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAJCAYAAAA7KqwyAAAACXBIWXMAAAsTAAALEwEAmpwYAAACE0lEQVR4nEVS32vTUBS+azf6U8Q5NwTFX/QPmANFH9yDsBeZD0oQfLCgmLeIpTLGKrta1qbL1mpsTJY1TdaWVAl1Mlb6phOmb0NELKizTmdxiKs1UNDC3DG9c3jgwMf5zvnOPR8X8Tw4MAYnw2w6tpOmwd2qE04GdzwOLoYhfW4rvRgvtCMS0IZawwQCagOKsgPd10GwsYVbHMbIBsEeDyBkWw3EXSWGd5AZq04EKAPsgPu9EN/neoNx58iNBs4G5w59V8Z3KBm4qilwJiuudee1jeuCAqe+YHzucyxarIZC+/+/gEFEVaaX3ENDcEWn9a7ns7+O5A2AfB4WH6vmyfkigKaDAdcGe75yd8+vTUx40B0JDkpSI5SSfozqGtxSVfChf1EUygfSM/BJ05pzhlQ5pmgbm9PKH3XrZLCRJiENx7mkWecEs35vGhpSFi5l71cHBbF+WZZN/wN5fUAQwPsNY2/KgE5RhF0UBXbDOpuY+Gy84HudeCi+52en3iVy4hO5TElKczKTrLxIT9UKMzk4Sza2TKRRx4Jfc5rDp3eDHzktE51o5XbyxHIk/PsjG23W+QSsR7kBwNhd48ae/oyFL26fU42wN1fYyPzbSb0LApQryZmRArt4GC3FKjvLbKb3VVjpXR5Tj5YipT1+y9hHONstW1zA+gOoH9pfhlXfBzbVFwyCZ9USGB2uXciN5Pb+BYm+H27q3VdTAAAAAElFTkSuQmCC"
+ "hash": "5c7e3803",
+ "base64": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAJCAYAAAA7KqwyAAAACXBIWXMAABYlAAAWJQFJUiTwAAACLElEQVR4nB1RXUxSARi9Wa0fuLhsudZj+Zar+aqbm63Wz0ubq8VsbT72kC9sMsZTD/ASjIQoKCQZtyaWsyUrsRUMuAKCKPcCaigGGhA6N0Ighbine/vezrfznZ99hNFobLNYLGKKokiVSnVyZ2e/u1Rq3C8Wq71yufyETqdr1Wg0ZwyG0Xaed/bIocctoI0P4NGakEqJCLPZLCH4kclkxyhqhKzVMN9oAAcNRHw+n0ir1Z7mTTpUqqF2mWxQolY/a0Pw9VcsUWh47d2E4M47tygUIyJBqFKBh+MAXijocrlI29jQUWEfZ9EbXkD//wTelwPwmig4nYeJcBTDqRTcPOHT9xV83sxhgOO4nnIZF0OhWqfbvcUnmyFzOaQLBXBm29oF0M9nELYA7ORl4mcek+UqsJ5B/XcFKBZxT3CMxfAqxvAcFiapVCpmWOgYBu/vKtMkfI7But9hg8cjIRL+/KN8vDK7ndibysdKzh+Lfzotlo/ixCrW4yvAagrLVmv4lFCzr+/8cZpudvFV5rwBbMQSGCYQHLUjaAKCtjKWxpuIWO8ICfajywpszaMcyz4UcILFC5aBg1ngbvJJqskkkE7DTCD89h3YMSA8Xkf8AxCxS4UD0Prr+PZ0A7S6S8CFX1grbqPqD6A/k8Xe7i6Q2eQFsk7zpTr95kYzZL/anLNdS07pzwkfmTBMiKan/a16vV6kVCrJQODvFb+/fuvL7EHHIoMn0Sis/ANu/wOs/HZuAex5IgAAAABJRU5ErkJggg=="
},
"/content/translations/de/developers/docs/evm/evm.png": {
"hash": "544392c2",
diff --git a/src/data/placeholders/content-developers-docs-gas-data.json b/src/data/placeholders/content-developers-docs-gas-data.json
index ebd86874972..023ad8cb6ca 100644
--- a/src/data/placeholders/content-developers-docs-gas-data.json
+++ b/src/data/placeholders/content-developers-docs-gas-data.json
@@ -1,11 +1,11 @@
{
"/content/developers/docs/gas/gas.png": {
- "hash": "54879603",
- "base64": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAJCAYAAAA7KqwyAAAACXBIWXMAAAsTAAALEwEAmpwYAAACE0lEQVR4nEVS32vTUBS+azf6U8Q5NwTFX/QPmANFH9yDsBeZD0oQfLCgmLeIpTLGKrta1qbL1mpsTJY1TdaWVAl1Mlb6phOmb0NELKizTmdxiKs1UNDC3DG9c3jgwMf5zvnOPR8X8Tw4MAYnw2w6tpOmwd2qE04GdzwOLoYhfW4rvRgvtCMS0IZawwQCagOKsgPd10GwsYVbHMbIBsEeDyBkWw3EXSWGd5AZq04EKAPsgPu9EN/neoNx58iNBs4G5w59V8Z3KBm4qilwJiuudee1jeuCAqe+YHzucyxarIZC+/+/gEFEVaaX3ENDcEWn9a7ns7+O5A2AfB4WH6vmyfkigKaDAdcGe75yd8+vTUx40B0JDkpSI5SSfozqGtxSVfChf1EUygfSM/BJ05pzhlQ5pmgbm9PKH3XrZLCRJiENx7mkWecEs35vGhpSFi5l71cHBbF+WZZN/wN5fUAQwPsNY2/KgE5RhF0UBXbDOpuY+Gy84HudeCi+52en3iVy4hO5TElKczKTrLxIT9UKMzk4Sza2TKRRx4Jfc5rDp3eDHzktE51o5XbyxHIk/PsjG23W+QSsR7kBwNhd48ae/oyFL26fU42wN1fYyPzbSb0LApQryZmRArt4GC3FKjvLbKb3VVjpXR5Tj5YipT1+y9hHONstW1zA+gOoH9pfhlXfBzbVFwyCZ9USGB2uXciN5Pb+BYm+H27q3VdTAAAAAElFTkSuQmCC"
+ "hash": "5c7e3803",
+ "base64": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAJCAYAAAA7KqwyAAAACXBIWXMAABYlAAAWJQFJUiTwAAACLElEQVR4nB1RXUxSARi9Wa0fuLhsudZj+Zar+aqbm63Wz0ubq8VsbT72kC9sMsZTD/ASjIQoKCQZtyaWsyUrsRUMuAKCKPcCaigGGhA6N0Ighbine/vezrfznZ99hNFobLNYLGKKokiVSnVyZ2e/u1Rq3C8Wq71yufyETqdr1Wg0ZwyG0Xaed/bIocctoI0P4NGakEqJCLPZLCH4kclkxyhqhKzVMN9oAAcNRHw+n0ir1Z7mTTpUqqF2mWxQolY/a0Pw9VcsUWh47d2E4M47tygUIyJBqFKBh+MAXijocrlI29jQUWEfZ9EbXkD//wTelwPwmig4nYeJcBTDqRTcPOHT9xV83sxhgOO4nnIZF0OhWqfbvcUnmyFzOaQLBXBm29oF0M9nELYA7ORl4mcek+UqsJ5B/XcFKBZxT3CMxfAqxvAcFiapVCpmWOgYBu/vKtMkfI7But9hg8cjIRL+/KN8vDK7ndibysdKzh+Lfzotlo/ixCrW4yvAagrLVmv4lFCzr+/8cZpudvFV5rwBbMQSGCYQHLUjaAKCtjKWxpuIWO8ICfajywpszaMcyz4UcILFC5aBg1ngbvJJqskkkE7DTCD89h3YMSA8Xkf8AxCxS4UD0Prr+PZ0A7S6S8CFX1grbqPqD6A/k8Xe7i6Q2eQFsk7zpTr95kYzZL/anLNdS07pzwkfmTBMiKan/a16vV6kVCrJQODvFb+/fuvL7EHHIoMn0Sis/ANu/wOs/HZuAex5IgAAAABJRU5ErkJggg=="
},
"/content/developers/docs/transactions/gas-tx.png": {
- "hash": "82a55670",
- "base64": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAJCAYAAAA7KqwyAAAACXBIWXMAAAsTAAALEwEAmpwYAAABgUlEQVR4nGP4/5+B8X89A8f/ensWBnLAtGkfBKdPe7d26tQPG2bN+79n2tz/LiDxVav+MxNlwKr6K2zzZn60mjHjmd2cGZ+dF898JQkS3w900f9QBmZ0vAqKwXwGBkaG+noGpv+5DOz/7RnAXvi/aj/P52Wzxf8bM7D+TzOG4JnGrGdA9H6gof+BGkG4XpIL7u2T+58kHDj09uSJkz+OXjj7o+jdkpm6INP/98pw/i9k4Fy1ahXYO/t2f/Hesu3nsc07/hw4sOG+IdwbNy/+qnnw6P//Zy/+/79z/lcZ2CXt3oL/S4V5QfhfvRkf0ECmTUv/pE+e8f//9Jn//29f/t0BbsCFnRcUL1/+b3Xi4n+La/vv6Lxd3iML0gCT////PyM4XF7+57m3+lTJw9lLf7+YMsUfIgkKDKAzYYrvz5/P8W/xRL7/oLCpZ2BBwaAoLwzlfFsco/OpyF4EpIYB7Nd6eY778+PB+P/MNFawobAARMK3JnqwX1kVyga2GGIoEwD0NtPmKOCv0gAAAABJRU5ErkJggg=="
+ "hash": "6bd32249",
+ "base64": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAKCAYAAAC9vt6cAAAACXBIWXMAABYlAAAWJQFJUiTwAAAB90lEQVR4nJVSS2gTURR9Jo2ftIWEoghdunNVyEZdCC78QdBuBiGYjWDAZcCtzCabZNCghMEBobSrkoUVG6OFNqOTyWfqkImNpJihGWNitFitDTHpJ+nxPbVQXOmDy33nvnsP997zCM/zA36/f8Tn87kDgYCT/O/JZhHUtF4pk9lUNA2aquE0iwOw/ROBmsfVXK7/IJVq3cvmICgKTrJ4PB4/KEmS42/jOM7OccTOPMOEjjBE820Bj8fBCj8Vi8fWSvoFeWbGFQzePSIIwiBNdDLP85JTFJfck5PaSDRquKLRqIs8STTPykr3lqJu3ZxP4zw+V6ZgPga+N+/8GcW+N046jVM5DUUl3TF0Ha8Tic4ZsrjYj9frgGkCb5ZQ6dataXw10Vv7wAgGRFF0S5L+qzvDwLhlAcvl/u7KCpDJtL1EVbtxo9inYAN5bbtWKOBobXX1RDKZPBQKhUYjkchxQZgaZASv1K1rJi2sNrBdfY+eLO94qQr96b0OCgbMdcsax8fyw3bj7RgrYouamJAPs/uLDLyN8iaQf45qaWf32Rwuk0SiMUblu0jlvDSXggc/viUBytht3d+3gwPkN7BtLDy9jVm+tb7w8saVRxgm4XB4eL/unWbleru2rOFL/RzDuq47qKR2ZlQxm0w/3rv52VH2FovFhn4CJ9FDecEidzMAAAAASUVORK5CYII="
},
"/content/translations/de/developers/docs/gas/gas.png": {
"hash": "105af052",
diff --git a/src/data/placeholders/content-developers-docs-networking-layer-data.json b/src/data/placeholders/content-developers-docs-networking-layer-data.json
index 9ae2f7fdf37..7450d990d51 100644
--- a/src/data/placeholders/content-developers-docs-networking-layer-data.json
+++ b/src/data/placeholders/content-developers-docs-networking-layer-data.json
@@ -1,11 +1,11 @@
{
"/content/developers/docs/networking-layer/cons_client_net_layer.png": {
- "hash": "73213308",
- "base64": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAICAIAAAB/FOjAAAAACXBIWXMAAAsTAAALEwEAmpwYAAAA4ElEQVR4nGWQIRaEMAxEcwUUGs0VMByAA6BWoXAoFAqHQ+FQOBQOtw6Hq6urq8Phun/b9zCMSNN0ZpJU2rZN0zSKomEYuq7Lsqyqqq+HUoporXXO3fdNJJfjOMj2fW+a5uNR13Xf9/M8X9eltd62jYgANhaiPMZxPM/TeXBFsCwLuTEGwbquZVki+ws4eIvjmIfQmgnFAx4CIlMwgvEQjBkUg0cwTRP7sBtPwTUsQKQisKlaD8woQcUSHjkJmzxLAwmWkJg7z3NkdEuShH9D716Q8FnaoygK/OjJrFzfbPADwgccyGtnHs8AAAAASUVORK5CYII="
+ "hash": "8a7feba2",
+ "base64": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAJCAYAAAA7KqwyAAAACXBIWXMAABYlAAAWJQFJUiTwAAAB1ElEQVR4nE2Ry2tTQRSHr49KpWJF3Lp16SZ/QDYWXbjN1i4KF4mkPjYuuiiK+j90m00hpYoI9vYiDUlMSmJKxDx787hp2qYN6SstaNJ7r59zki4c+HHmzJz5zXdmtHSaD7mfxDc2MAoFzMUI5sdPmCo30xnMzIVyuaEMtZ6Ix3mkqRGJcEWrbJLa34dqDW9nB5aW4fMXKJc98gUoFkdqNKDewD04gFKJl2IQjXJVyxdJ1GrDgvNyGbfZ9NxaHbdSwZUDnc4oKnN3e5tBvQ6KOiQGCwvZMS2fvyCo/vEKxQGW1ce2h0Q0m9DtMszb7eHcq1bhV4Flw8jcDQaDN7QfWVKyKS1YanPTAiESbDkoJrIm2t2V1vhr2y6pVOeJgrimWRYJKV5cYqAQnVar77bb587WFo7dxNnbw5GWGjaOuqgv5utpXksL4XB4Qmu1SJ6dqRtLeKencHQEvd4oCv7JCcjDHR6CqnMlVxSzYpDNqjeIxXiYTPI8uc7stygvVlZ779bW+nOx7zw1zOO3K6vHb74a3feG+XsuluCZ+sJXSvfEALgkUfP5fGNTU/cnAoHAdV1/MDkzE7g9P8/lUCh0c3raf0vXH9/R9cCk3+8fV/m49t/4B+jIq/qgfZKKAAAAAElFTkSuQmCC"
},
"/content/developers/docs/networking-layer/exe_client_net_layer.png": {
- "hash": "424bf4e8",
- "base64": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAICAIAAAB/FOjAAAAACXBIWXMAAAsTAAALEwEAmpwYAAAA40lEQVR4nGWQIQ6EMBBF5wJcCovgFggMAo3AYLhBDQKNwWAwGDQGhcE0WTAoDMnSfbvNVuw2Kfkd/n8zrRhj9n3XWh/HUdf1dV1lWS7Lsq7reZ7mbwm77/umaXCHYWhjQRCgoZD/DWDNsixJEqVUVVXzPE/TZDsQQNs+LinjOFJt29Za0zTF7Rxo6lbz5ShsGPAo0c3zPCZEP7bted/UOQKCS0NuK5Q4x3HM9JRohSiKQkQYEtYwDLjzPOcvZsGtPgu8m4SHIuD7vg1gRQB6jwQyiiIAXF1/FyTequs6cIzhQGRexpwzLgEgRiwAAAAASUVORK5CYII="
+ "hash": "0a34ce89",
+ "base64": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAICAYAAADwdn+XAAAACXBIWXMAABYlAAAWJQFJUiTwAAABuElEQVR4nG2Qy08TYRTFx0eCxufahSv+CxdsTGTljgVxQUxMTIyPxIqNjzhL1yZGKITahBSkAVpBamlLq85MH8AwVIbBNu0IpBEUgia6cfp9/EzrAhf+kru4Obkn51xF+YeOHvVY5xX19OXe3lOqqh7uuaOe7ei6cfJil/9Me+ezNuV/kOm74GWC17+9Hbj7JR64V596/vhrvN9PIdT9MzV4u/6m78n2TP/DrfiA/1d28BrGUDda4HzrFg4pmGGdtSiYYUlpHGL3IfqI/UIYtCAYL9nXg2COgvVK4M7AwvCtlkE2e1ShOKrj6rCSaLCWlpgTkpWExMkI7FmBNS1ZTUpWZyVO6jf2BLwP3DwwKL022K0ga/OSDQtqedi0wM3D+gK4ObDjoA9BWZM4cShNj5n6yDmfz3dCwYpqbBTBmvJw5gTlD4L1RYFbFHxeFFQ0wceEID8sqLxrYCcaXjknN43YVUVpb1Oopgy+V/GqRcmOA9sm/KjRTMXeJ9gyYa+KrNuwWxbU52Bp5EGzQi4SOa5QCD1laVL3CuNJrFia+bE0y7G/Y00e7E1tOZpEDxlkXlxq/SASOfIHdfZjvLJfg1sAAAAASUVORK5CYII="
},
"/content/translations/it/developers/docs/networking-layer/cons_client_net_layer.png": {
"hash": "3916176f",
diff --git a/src/data/placeholders/content-developers-docs-nodes-and-clients-data.json b/src/data/placeholders/content-developers-docs-nodes-and-clients-data.json
index 3202b70f648..38198d3ae72 100644
--- a/src/data/placeholders/content-developers-docs-nodes-and-clients-data.json
+++ b/src/data/placeholders/content-developers-docs-nodes-and-clients-data.json
@@ -1,11 +1,11 @@
{
"/content/developers/docs/nodes-and-clients/eth1eth2client.png": {
- "hash": "ca73e11f",
- "base64": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAALCAIAAAD5gJpuAAAACXBIWXMAAAsTAAALEwEAmpwYAAABA0lEQVR4nGWRLRKDQAxG9wqcA8UMRXEFFAdAoXAoFILW4VA4FA6Fw+FwdXU4HA5X176S6bK0ETv7877kS1a9/mJZlmma7kas66pf1Q/NW5qmvu97nlfX9WOPvu95eu5xCDiwzvPctu0wDECSvuu6PM9JxJ7iStMiwIxt21mWwUVRhKwsS2o6jhPH8ccSUiBWCMuyoHnADByy2x4IUIpDBYddpRQ0ZlCO40gmOC6bpmEPczSNXcrRJTTKMAxJg9ckSbCEgCOMTG/bNmV2THqcuBe3uBbo2SOgVBAEJMLhSaA1zKSqKhGwioCCMqvffxADDHf4BiORHk6WzN8wvxaIFNxo4A1xeYmoPV+HsAAAAABJRU5ErkJggg=="
+ "hash": "9b48ab5d",
+ "base64": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAICAYAAADwdn+XAAAACXBIWXMAABYlAAAWJQFJUiTwAAABvElEQVR4nF2RzWvTABjGYzvR4sdNRNxfsIM76m3KEMSTB3vwICKM3uZNEC8R75um5BJ0IgwnRgZd2xVEQhjWbHZfpH5M3Lq2o7aFbllobGebNj9J3Qb6Xh54eXjf9/c+gvBfqaoaFEUxoEMftfxjKuuTXav0vLvz84WvWKUpnNKw7wUCgqoS1HX6RJHAfvOIr1sQojBfZG2W1l7T6zRs3GbdpVedB75H1/Xj/2yXJOlYNBq98XR8/M5ELDVAPvMDM0HXTLUxUy7mbIuNNBTNz5YRH+oPh0PCXJqRtIGoaQyOjl47rSjKiCzL9yem3l5kw8ixMk3beO11F97gpl95fHuPl8vsVhdmbp0ZGDopbBaoWLuQzdriPkKwp1tGiD27yG+HxnbFa9k1XMf6i1Cv9BBisdgpYT7D3cwSDzXt16AgCAFZlq8/GRu7Nz23dI7NxRxmkvbyjNtdTXZYjrusf4DCyvfqp/hw/6Vw6JDff14kEjmqKMoVWZJuJ4zV81SzRfIafE15rL2DL0mP8iKUs7Xyx8TNsxeunuil4J99kMLhQFUN0qg9orHzkqat4FjPaFoK9e1JnNrlgxT+AN2FPKYjTs7vAAAAAElFTkSuQmCC"
},
"/content/developers/docs/nodes-and-clients/nodes.png": {
- "hash": "beafff5a",
- "base64": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAICAYAAADwdn+XAAAACXBIWXMAAAsTAAALEwEAmpwYAAABe0lEQVR4nIVRuUoDURRNgqCFjYVWIhaChYKVra2I6A8Igr1go7bTWAtBsNEfUHFBEAuLESXBLZKJC+YlmWgS35iMmUVfJrPkzZERAylELxzOhXO4ayj0T0Sj0fZdSeotWVgq1vhWifHVFwdDgSYAkW+TIAgRAOFWiEBboMVy6cl0UXZti/kNq+bDsaDrei1bZRN/dsZP9TePr/u+h2pGsj/IrWc+XTquVobm8AdRFDtChJD2scGBhdTR9hwj8TgjF3v13PX8x+NZksmJZcU0Eq95AiOX4kZBBq00fFrxUDZclxruaGg3FutZi+5sktPzqaKUuFMfbjZs+Wr6NXktmXJyVmUs/lYqQM8/NoziMyj99Kli+RXds+WyNvI9KqXoFgRE9o/r/dsiOoPRD0+0voCrnK8AHrSs5H6SG7eWjjswVagmzprrhgO0HDDSRCDeA52K+X5Q9xxwDm7XORSqZ7KKM9x6sHCTf8uDjxQ8jJdYY/FZxcyLga6m5wtjMDRqNzp0rAAAAABJRU5ErkJggg=="
+ "hash": "ff843b91",
+ "base64": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAICAYAAADwdn+XAAAACXBIWXMAABYlAAAWJQFJUiTwAAABtUlEQVR4nD2RzWsTURTFx3ThwkJL/xkRcefCXVcFF0W66j+QQCmlRDfVVoQWKoiIO0VmYSwoFipNdCYzmcwk2CQ2DalSkplMStMP2mYgHy8/36TWtzk87rn33HOuAtxQVUZCVOT7rjOpmyw4DrH8T6JOnsXtH9wOa5z6M5z78xwfxCTOcdaYVa4bhwSUSGIDY2UVymXE0RG9fh8qFV5c1Ts+4gQ+RQVBk8GgEyhSfdS2uZtIML6+Hh/NZrGzNjQaiMtLelKAev3fgODU650ccu587XZanqB9dqHIho8ZCyyLrenp57fSaR46jnhqmmLJsnksrSyndO6pW+oYtWKTPxm6VUuwp4FbCJTdXQ5tB/YqHKtqacKwmDJNlkxLLOdyPMnneZZMcl/d3Jzg1zcP7S2d5Bsx2H6N/AeKZjCVtYUh8VG4ZqFAWtPBl27b7SsLBzVeKQ/WbvJbr2F/oG+875J5J6hqF9fx/Q9yZwdNquK6iFaLnhBQrfByyHJzDcpfoPhZUNgAzwnCK0TicSLhKUOSnmHSzrEgs4lJ/1GZzWIqxZ3hAH9/Bq8033eLMeqlOZr7s38BBmlvgq3jm/sAAAAASUVORK5CYII="
},
"/content/translations/de/developers/docs/nodes-and-clients/eth1eth2client.png": {
"hash": "265d5e16",
diff --git a/src/data/placeholders/content-developers-docs-nodes-and-clients-node-architecture-data.json b/src/data/placeholders/content-developers-docs-nodes-and-clients-node-architecture-data.json
index ff1db1de8e5..19e8309f042 100644
--- a/src/data/placeholders/content-developers-docs-nodes-and-clients-node-architecture-data.json
+++ b/src/data/placeholders/content-developers-docs-nodes-and-clients-node-architecture-data.json
@@ -1,7 +1,7 @@
{
"/content/developers/docs/nodes-and-clients/node-architecture/node-architecture-text-background.png": {
- "hash": "de6ade43",
- "base64": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAPCAYAAADtc08vAAAACXBIWXMAAAsTAAALEwEAmpwYAABMoHRFWHRSYXcACmV4aWYKICAgIDk2NjQKNDU3ODY5NjYwMDAwNDk0OTJhMDAwODAwMDAwMDBhMDAwMDAxMDQwMDAxMDAwMDAwMDkwNjAwMDAwMTAxMDQwMDAxMDAwMDAwCjk3MDUwMDAwMDIwMTAzMDAwMzAwMDAwMDg2MDAwMDAwMTIwMTAzMDAwMTAwMDAwMDAxMDAwMDAwMWEwMTA1MDAwMTAwMDAwMAo4YzAwMDAwMDFiMDEwNTAwMDEwMDAwMDA5NDAwMDAwMDI4MDEwMzAwMDEwMDAwMDAwMjAwMDAwMDMxMDEwMjAwMGQwMDAwMDAKOWMwMDAwMDAzMjAxMDIwMDE0MDAwMDAwYWEwMDAwMDA2OTg3MDQwMDAxMDAwMDAwYmUwMDAwMDBkMDAwMDAwMDA4MDAwODAwCjA4MDA0ODAwMDAwMDAxMDAwMDAwNDgwMDAwMDAwMTAwMDAwMDQ3NDk0ZDUwMjAzMjJlMzEzMDJlMzMzMDAwMDAzMjMwMzIzMgozYTMxMzEzYTMwMzcyMDMxMzAzYTMxMzIzYTMzMzgwMDAxMDAwMWEwMDMwMDAxMDAwMDAwMDEwMDAwMDAwMDAwMDAwMDA5MDAKZmUwMDA0MDAwMTAwMDAwMDAxMDAwMDAwMDAwMTA0MDAwMTAwMDAwMDAwMDEwMDAwMDEwMTA0MDAwMTAwMDAwMGVkMDAwMDAwCjAyMDEwMzAwMDMwMDAwMDA0MjAxMDAwMDAzMDEwMzAwMDEwMDAwMDAwNjAwMDAwMDA2MDEwMzAwMDEwMDAwMDAwNjAwMDAwMAoxNTAxMDMwMDAxMDAwMDAwMDMwMDAwMDAwMTAyMDQwMDAxMDAwMDAwNDgwMTAwMDAwMjAyMDQwMDAxMDAwMDAwNzEyNDAwMDAKMDAwMDAwMDAwODAwMDgwMDA4MDBmZmQ4ZmZlMDAwMTA0YTQ2NDk0NjAwMDEwMTAwMDAwMTAwMDEwMDAwZmZkYjAwNDMwMDA4CjA2MDYwNzA2MDUwODA3MDcwNzA5MDkwODBhMGMxNDBkMGMwYjBiMGMxOTEyMTMwZjE0MWQxYTFmMWUxZDFhMWMxYzIwMjQyZQoyNzIwMjIyYzIzMWMxYzI4MzcyOTJjMzAzMTM0MzQzNDFmMjczOTNkMzgzMjNjMmUzMzM0MzJmZmRiMDA0MzAxMDkwOTA5MGMKMGIwYzE4MGQwZDE4MzIyMTFjMjEzMjMyMzIzMjMyMzIzMjMyMzIzMjMyMzIzMjMyMzIzMjMyMzIzMjMyMzIzMjMyMzIzMjMyCjMyMzIzMjMyMzIzMjMyMzIzMjMyMzIzMjMyMzIzMjMyMzIzMjMyMzIzMjMyMzIzMmZmYzAwMDExMDgwMGVkMDEwMDAzMDEyMgowMDAyMTEwMTAzMTEwMWZmYzQwMDFmMDAwMDAxMDUwMTAxMDEwMTAxMDEwMDAwMDAwMDAwMDAwMDAwMDEwMjAzMDQwNTA2MDcKMDgwOTBhMGJmZmM0MDBiNTEwMDAwMjAxMDMwMzAyMDQwMzA1MDUwNDA0MDAwMDAxN2QwMTAyMDMwMDA0MTEwNTEyMjEzMTQxCjA2MTM1MTYxMDcyMjcxMTQzMjgxOTFhMTA4MjM0MmIxYzExNTUyZDFmMDI0MzM2MjcyODIwOTBhMTYxNzE4MTkxYTI1MjYyNwoyODI5MmEzNDM1MzYzNzM4MzkzYTQzNDQ0NTQ2NDc0ODQ5NGE1MzU0NTU1NjU3NTg1OTVhNjM2NDY1NjY2NzY4Njk2YTczNzQKNzU3Njc3Nzg3OTdhODM4NDg1ODY4Nzg4ODk4YTkyOTM5NDk1OTY5Nzk4OTk5YWEyYTNhNGE1YTZhN2E4YTlhYWIyYjNiNGI1CmI2YjdiOGI5YmFjMmMzYzRjNWM2YzdjOGM5Y2FkMmQzZDRkNWQ2ZDdkOGQ5ZGFlMWUyZTNlNGU1ZTZlN2U4ZTllYWYxZjJmMwpmNGY1ZjZmN2Y4ZjlmYWZmYzQwMDFmMDEwMDAzMDEwMTAxMDEwMTAxMDEwMTAxMDAwMDAwMDAwMDAwMDEwMjAzMDQwNTA2MDcKMDgwOTBhMGJmZmM0MDBiNTExMDAwMjAxMDIwNDA0MDMwNDA3MDUwNDA0MDAwMTAyNzcwMDAxMDIwMzExMDQwNTIxMzEwNjEyCjQxNTEwNzYxNzExMzIyMzI4MTA4MTQ0MjkxYTFiMWMxMDkyMzMzNTJmMDE1NjI3MmQxMGExNjI0MzRlMTI1ZjExNzE4MTkxYQoyNjI3MjgyOTJhMzUzNjM3MzgzOTNhNDM0NDQ1NDY0NzQ4NDk0YTUzNTQ1NTU2NTc1ODU5NWE2MzY0NjU2NjY3Njg2OTZhNzMKNzQ3NTc2Nzc3ODc5N2E4MjgzODQ4NTg2ODc4ODg5OGE5MjkzOTQ5NTk2OTc5ODk5OWFhMmEzYTRhNWE2YTdhOGE5YWFiMmIzCmI0YjViNmI3YjhiOWJhYzJjM2M0YzVjNmM3YzhjOWNhZDJkM2Q0ZDVkNmQ3ZDhkOWRhZTJlM2U0ZTVlNmU3ZThlOWVhZjJmMwpmNGY1ZjZmN2Y4ZjlmYWZmZGEwMDBjMDMwMTAwMDIxMTAzMTEwMDNmMDBmMDA1NTJlYzE1NDY0OWE3ZjkwZmZlY2ZmZGY2M2YKYzY4ODNmZDZmZjAwYzA1YmY5MWE4ZTgwMjRmMjFmZmQ5ZmZiZWM3ZjhkMWU0M2ZmMDBiM2ZmMDA3ZDhmZjFhZDBkMTdjMzdhCmM3ODg5YTY1ZDIzNGY5YWVjYzAwMTk3Y2IwM2U1MDc4MTlmY2FiNmJmZTE1Nzc4ZTNmZTg1YWJlZmYwMGJlNDdmOGQwMDcyYgplNDNmZmIzZmY3ZDhmZjAwMWEzYzg3ZmYwMDY3ZmVmYjFmZTM1ZDU3ZmMyYWVmMWM3ZmQwYjU3ZGZmMDA3YzhmZjFhMGZjMmYKZjFiYTgyNGY4NmVmODAxYzkyNTQ3ZjhkMDA3MmJlNDNmZjAwYjNmZjAwN2Q4ZmYxYTNjODdmZjY3ZmVmYjFmZTM1ZDRhZmMzCjFmMWFiOTIxN2MzOTdhNzFkNzAwN2Y4ZDY1NmI3ZTE0ZDdiYzM2OTBiZWIxYTVkYzU5MmNjNDg4Y2NhMzFiODhlYjhhMDBjYgpmMjFmZmQ5ZmZiZWM3ZjhkMzE5NGEzNmQ2MTgzNDk0Zjk3ZWYwZmY3NTdmOTBhMDA2NTE0NTE0MDA1MTQ1MTQwMDUxNDUxNDAKMDUxNDU3NWRlMThmMGMyZjhhMzQ5OTYyYjViNTJiN2I2ZjcwYTVlN2YzNGUyNDhkODdkZGRiZmMzOGM2Nzc3M2Q3MTRkMmJlCmMyNmQyNTc2NzIzNDU3YTA0ZmUwODhlMzVkNjU2MGIwOTVkYzNiMGI1MTNjYTU0ZGJhMmIxMDE5ODgxODYyZGQ4MWMwYzEwNwozNWMwYWM2ZWNjNTU1MThiMGVjMDczNDM1NmQwNmFmNmJmNDFiNDUxNDUyMDBhMjhhMjgwMGEyOGEyODAwYTI4YWQ1YjRkMGUKNGJlZDFhNmJlYjY5ZDI0OWUyOTc2MzVhMjgyNjRkOThjZWYxZWEyOWE1N2Q4NGRkOGE5M2U5YjdiNmQyNDUxY2Y2OTM0NmYyCmM0MjY4ZDU5MGU1OTA4Y2VlMDNkMzAwOWE2YmQ4ZGRjNzYzMTVmM2RiYzhiNmIyYjk0OGU2MmJmMmIzMGVhMDFhZjcxZjBlZgo4MzNjZGYwZWQ5MWJlYjg5ODZhODkxNGIwYzUzZmNjNWExMGMwYTkxZDdhMDUzOGRiOWM3NzFkNGQ2MTc4YmZjMjA5NmRlMWYKNGI2NDQ5OWFmMTBhYWRhZGJjNjRmOTY4MzIwN2RkZTk5M2NlNThmZDQ5YWI3NGVjYWU4OWE3MmU3NmQ2ZDZlZTc5MWQxNTdiCjU3YjA4NzRkZDQ1ZWQ2MGJlODZmNTExNTQ5OWExMDc2ZTQ4YzkxY2ZhMWUyYThkNjY1YWQ0OTIwZmYwMDViZmYwMDAxNmZlNAo2YTNhOTIwZmY1YmZmMDE2ZmU0NmEzYTAwZjZmZmQ5Y2FkNjNiYmQ0MzVmNDkwOTFiNjI4NTgxMThlMGU1Yzc0M2MxZTA5ZWIKNWVmYWRhMWRiMzE3M2U2ZGMwMmVhMTQ5MTI2MzAwN2E3ZjllZDVlMGRmYjM3MGNkZmYwMDg4ZjIxOGUyMDg0ZTE3YTlmOTllCmJkZDRhYWI5MGFkNjk3ODNlNjI3NzAzOGY2ZWRmNDFmOWQwMDRhYmEyZGIyZTcxMjRmOTIwMGNmOTg3M2MzNmVmZTYyOWViYQo0YzBhMWIzMjRjYzU4MjgyNTliM2QwZTQxYzc0ZWI1MDNhMjA4OTU5NmRhZjNlNzUyYTUxNGYyMzFkM2YzYzUzMjQ4ZTIyMjQKOTVhMWJiNDBhNzNiN2E2ZTI0OWUwN2UzZmNjNTAwNGVkYTI1YWI0OGIyMTc5YjIwMGUwM2UwMWZjMDcxNWUyOWZiNDY1YmE1CmFlOTFlMWY4YTNjZWQxMzRjNzkzOTM5MjAxMzVlY2Y3MDYyOTdlNjk2ZDJlYjI0MDhjZTA2MzIzMzgxZDNmZGUzNWUzOWZiNAo5OGM2OTllMWYxY2YxMjQ5ZDdmZGQxNDAxZjNjZDNlNWZiYzNmZGQ1ZmU0Mjk5NGY5N2VmMGZmNzU3ZjkwYTAwNjUxNDUxNDAKMDU1ODZiNTU0M2I1ZWU2MTU2YzcyYTQzMWM3ZTRiNTVlYTdiY2ZmOGZhN2ZjM2Y5NTAwMWY2NzhiZmU3ZjIwZmM5ZmYwMGY4CjlhM2VjZjE3ZmNmZTQxZjkzZmZmMDAxMzUwNTE0MDFkMDc4N2ZmMDBkMGVmMGI0N2FiZDhjMDkzYzMyNDUzODlkNWNhM2E2MAo5MjhkODE5ZjliMDA3MWNmYTU3YjdmODI3NGZkMjJjYmMzOGE2YzY1MDIzOTQwZGViMTRhZTQ4NmM5MjQ2NDg1NmZjYzAzODEKNWYzZTY5YmE4MWQzMmUxYWUxMmRlMTk2NWYyY2FjNmQyODI3Y2E2M2QxZDQ2NzFiODc2Y2U0N2I1NzczZTEyZjE4ZWIzNjVhCjU0ZGU2YzZmMzQwYmJiNmRjY2YyMTNiZGNmZGQ4ZDc3NjcyNDllYzNmMmFkYTliNWI1Y2MyYjQ1YjVhMWVhZmUyOTc4ZTNkMAplNzllMzcxMWIwYzA5MDkyNDY0N2I5MGFjN2I3NjA2YmMyYmM0OTdmMzViOGIxYjViM2Q0ZWRlNGI0OGUzNjY4ZTBiNTJmODgKNDk2M2I4MzE3MDE4YjFjNjQ5MjNiZjQxNWQ4NzhiYmM1YmFiYjY5Zjc5NmQxZDkxNTExYzhmMDRmMmM2YzU1YWRkOTU4YWE5CjYwMzkxOTUwMDgyNzhlNmJjZmVlMzU5OGY1MGI1ODUyZmVjZDY1Yjg4NTRhZmRhOTVjODkyNDFkYjc5Y2UwZTNhMDM4ZmNlOQpkNDZiNjRjNTQ1NGVkNjdiMTk2MjY5MDYzMTIzOGM3NGMzMWUyODEyYzgzNmUyNDYxYjczOGMxZTk0NGNhMTI2OTEwMDYwMTUKODgwMWJhOGZhZDMyYjAzYTA3ODk2NDVkYjg5MTg2ZGNlZGMxZTk5ZjRhMDRiMjJlZGMzYjBkYjlkYjgzZDMzZTk0Y2EyODAxCmUyNTkwNjMxMjM4ZGJjOGY5OGYxNDA5NjQxOGM0OGUzNmYyM2U2ZTk0Y2EyODAyNDU3OWIwMGFiM2ZjYTc4YzEzYzEzNWQ1Nwo4N2M1ZWU5OWE1ZGNkZjVkZGJhNDU2NDkzMjAxNzMyZjk5YmQ2NDFjODQ0MDhjYTQ5MzljOWNmMTgxZjg1NzJmYmRkNmQ1MDAKNzcwMzdiMWM3NDFkMTdiZmFkMzI0OWE1OTRmZWYyNDc3ZmY3OTg5YWE0ZWM0YjU3NTYzZWExYjRkNzIxYmJiMzg2NDhhNTg1CjE2NGY5ODAxZjJmNWU3M2NmNDFmZTM1Yzc3YzQ1ZDQ2ZDFhZGFjZmVkMzJjNjhiMjNmOTZjY2MyNDY0ZWZmMDA3YmNiNzUzOApmNWViZjRhZjNkYjRiY2I1ZDNlMWIzYjdiN2JjYmFiYThhNjgxYTY5ZTYwMzZlYzczMWJhMmM2YWFjYzA2MTU4OWM5Y2YzYzYKM2E1NTNmMTFjMjY3ZDNhZDM1MzkyNjk1NmUyNzYyYjJkYWUwYjQ2ODQwZmJlYWY5YzdjZGZkZGVhMzlhZGRjZTJhM2EyMzlhCjM0OWYzMjZjY2VmMTBkOTVkNTg2Yjk3MzE1ZGQ5NDU2NzIzMzc5ODIwODRmYzhhYWRjOGRiYzllMzA3OGFjYmEwOTI0ZTQ5YwpkMTVjZWNlYTViMTI0MWZlYjdmZTAyZGZjOGQ0NzUyNDFmZWI3ZmUwMmRmYzhkNDc0ODY1Y2IwZDU3NTFkMjk5ZGI0ZWQ0MmUKYWNkYTQwMDM5Yjc5OWEzMmMwNzRjZWQyMzM1ZDc3ODNjZjhiZmM2M2FiYmU5ZjZiZTJiZDQyZGQ5MjIzMjk3OTZmYTVjNjA2CjA2MDAwNzllYjVjMmQ1OWIwZjMwZGZjMjkxZGM5YjY2NzcwOWU2ODYyMzY4M2M2NzhlNzE0ZDZlMjk1ZWRhMWIxNzVlMjNmMQo1ZGE2YTEzNTkzZjg4NzU2MzM0NTJiNDQ0MmRlY2E3MmMwZTM4ZTZhZjZiOTc1ZTNjZjBkY2QwNDVhYWVhZmFjNWJiY2YxZjkKOTFlNmY5Y2U0N2UwZGQ2YmI2ZDZmYzAzMmVhZjdmNmIxNGQzNGFmN2IwYjQ2OTM2YTcxNDI0MmNlOWU1YjFkYzQ3NGRjMGE4CjE5Y2YzYjg2NmIyM2M0NWE3NGRhZTc4ZmY0MWQyZjUzYmM5YWUyZGZlYzkxMjM0YzA5YzNlMTQ5NjJiOWU5OWM3ZWI1YTNhNwo2MzI1NTZlNTFkMzJkZmM2N2E5ZjgzYjUxZjEyMjc4YWI1MDhlZGVjYzkxZTViZGVjYmJhNGM2MzM4ZTdkZWI4Y2JmZDY3NTQKZDUxNTE3NTBkNGFmMmYwMjFjYTBiODlkYTRkYmY0YzkzOGFlY2FlNmM2ZmYwMGM0MzFkYzMzYWRjYzE2NTY3NmZlNjdkOGFjCmM3ZWVlZDYwNWU3ZTdjZmYwMDE3N2Y1MjdmMWM3MTVhODU5MzY5ZjdhZjZlY2MxYjZlMGFiNjMxOTA3OTA3MWRhYjM3NmU4NgpmZWNlNzE1Nzk3ZmMzMTU2OWYyZmRlMWZlZWFmZjIxNGNhN2NiZjc4N2ZiYWJmYzg1MjEwY2EyYmJjZjBlN2MyNGYxMTc4OWYKYzM5MTZiYjYzMzY5ZTk2NzJiOTQ1ZjNhNTYwZDkwZGI3YTA1M2RlYjYxM2UwMDc4YmU0OTRjNmI3MWE0ZWUwMzI3ZjdlZmViCjhmZWU1MDA3OTVkNGY3OWZmMWY0ZmYwMDg3ZjJhOWY1OWQyYWUzNDNkNjZlZjRiYmIzMTliOGI1OTRjNTIxOGNlNTcyM2QwZAo0MTc5ZmYwMDFmNGZmODdmMmEwMDgyOGEyOGEwMDJiYjdkM2VkYWU2ZmRhMmI0ODVlNDE2ZGJjNDgyMzc2MDUwMzZkMDBiNmQKZTgwZjFkYWI4OGFlOTdjMzMzNDZiNzUwYWM5NmYxNGU4ZDk1MjkyMDFjOWVkYzllZjU1MTEzMzdjNjhiYThlYjNhYWNkYTRkCmIyYzkwNmExNzJhN2VkMjIxOTcwMjY1NTE5ZjlkN2ExZmNlYmNmZWUyMTZiN2I5OTYwN2ZiZDFiOTQzZjUwNzE1ZDk2YjEzNApmYTdjOGZhOWQ4YWFkOTNhZTAyMDhjZTMxOWUwOGM3NGFlMmU0NzY5NjQ2OTFkOGIzYjEyY2M0ZjcyNjg5MDIyNmI4ODI1MTcKMTJmZWU1YzAwZDllZTcwMDllMzlmZWI1MTk4MjYwNzA2MjkzYWVkZmJhN2FmYTUzMzI3ZDRkMWI4ZmE5YTkxOTZlZGI0YWJlCmJiNDk1ZTBiNjc2MTEyYjNiZjQxODBiYzllYmQ3MTVkYjc4MWJjMzEyNzhhNzQwYmFiNTkxMjE4ZTE4MmUxNjY4YTU2OGIyYwo1ODhjMzAyZDkxOTVjMGM2ZGY3YzgzYzU3MjllMWM5NTQ2YjEwYWM5MmRmYTgzOWQ4MmNiMDVjYzlmYzNjMzcxOGNlMzM5ZWQKNWY0MDc4NTI0YjAxZTFmODNjOGI3NGM5NTFiOTIzZDliNzJhYzcwN2U0MjQ3YmQ2OTA1ZDRjNmFjOWE0NzA5N2RlMDk5MTUzCjVjMTFkYWRhNTlhY2VlYzRlNjMwNDI0NDE5NGEwOGY5Zjk0OWVhN2JmNmUzYmY5N2JlOTU3Yzk2NTZmNzhkNmIyN2Q5ZWUzNwpmOTUyMDE5MGRiNDgwZGY5NjQ1N2QxYmUyYjllMjkzYzM5NzBlZmIwMzQ3OGM5Y2E4MDQ3ZDQ5MDMxZjUzOGFmMDlmMTQ1YzEKOGFmYTExMDRiN2U4ZmU1MGRlOTI5NTU4YzBmZTExMTZjMjQ2Y2RiOGFhYTkxNGI1MGE1NTU0OTI1NmQ0YzE2MDQ1YjQ2NDg2CjAwYmI2MDkzYzFlMDc0YThhOTRiMzEwMDEyNDgxZDAxM2QyOTJiMTM2M2EzZDA4YWRjYWMxNmM0NGFjNDY1NDJhMjAzOWU3MwpkYzhlNzlhZTgyZWExODJkNzUyYjU4MmUzZWQ3NmY2MzMzODY5YmNlOGMwMDE3OWRkYzY0ODIzYTc1YWUzZjQ3OTFkMjdjYWUKZWY5NTgxMTgzOGU3ZWJmODU3NTdhZGUyNmQzZWUyNjk2Njc5NTg0NDc2MTYzZDAxMWQyYWQ2YzRiZGNlNjdjNTEwNjlkNmRlCjIyYmM4YjRhOWQ2NmIyMGRmYmI3NDE4MDdmMGVkZjRlZDU4ZjQ1MTUwNTEyNDFmZWI3ZmUwMmRmYzhkMzE0YTg3NTJjMDk1YwpmMjA3YTUzZTBmZjViZmYwMTZmZTQ2YTNhMDBlZTdjNTc2MWExNmIzNjY5YWFmODNlZDhjNzZmNmIxMDViZGI2MjA4OTEwZjYKOTMxY2U1N2IxMjNiOGE3NzgxZmMzMmY3NzAzNmExNzM2OTFjYjZmMjlkOTEzNDlkMDEwNzA3ZjlmZTg2OWQ2M2UwOGYxMDY4CmRhNmU5OWUyMWIxZDUzNGU4NWFlZDM3MjA3Yjk1NGMwMjNhMWRmZjJiNjQ3NTFjZDdhZGY4NjJkNjRiYWYwZjY5OGY3OGQ2OAo2NjQ2N2YzOGRiOTU3NDc5MDM2NzgyYjk1ZTg2YjViY2UzMjUyOGM3YWZmNGNlNzcyOGYyYjRkZGQ3ZTI2Y2RlNWMzZTllMjEKYjViNmIyNjkwYjI5ZDhhNDg0MDE1NTQ5MzlmYTAxZTk1MDZhOWE1YzdhODVhNDI1YTNkYjJkYjM2Zjg4ODFjYTY0NzIwNjA4CmVjNGY0M2RhYjUxZGUxNTJhYWU0OTcyMGI3ZGRjODUxZWE0ZjZhNjQ3MzA2M2I1OGE4NjM5MjAwM2RhYjY0ZWRhOWNhZDljYwpjODYxZjBlZThkNzUwYzcwYzQ0MTEyM2JhNmMyODFmMjk4ZjliM2Q0NjAxZWJkYjE1ZTE5ZmQ5YTdjNDFhZTI1YWU5ZGZlYTIKMDg1NTY1OWU0N2MyNDY4YTM5NzJkZDk3MWY4ZDdiZTc4YmUzNjNhNmJjYThjYTFiY2I5MDdjZDhjNjc2MWM2NDllMzFkN2FkCjc5NDRkYTY3OGJiNWYwOWE1NGRhYmU4Y2IwZGM0OGExOTYxYmFiNzVkZGNmMTkwOWNiNzVlOWNkNGQ0ODI3NjkyM2FlOWUyNgo0ZTFjOGNjNGYxYjVlZjg1NmU1ZWNhMWYwY2Q5NDkwMGI3NDI5M2NhYzMwMjYyMzAwMTFjOWNmNDI3M2M3NWFlNWE1ZmJjM2YKZGQ1ZmU0MmI0ZmM0OWEwNWM3ODY3NWRiOGQyYWU2NThhNTk2MWM2NWUyMzk1MjA4YzhhYTcxY2QxYzMzMDY5MjA0OTg2YzVlCjE4OTE4ZTJiMDdiZWE2YjFiNWI0M2RmYmUxNWZjNDBkMDM0MWY4N2I2MWE3NWVlYjU2NzZiNzExYzkyOTkyMjk5NThiMGNjOAo0ODNjMGM3NGFlZDA3YzU5ZjBhOGU5ZTI1ZDM0MGM4MjcwOGZjZjIzZGJlYjVmMjU3OWYxZmYwMGNmYTQzZjliZmYwMGYxNTQKNzlmMWZmMDBjZmE0M2Y5YmZmMDBmMTU1MjUxYjFlMzhiZmI2ZDRmYzcxYWQ1ZjU5Y2EyNWI2OWVlZGRlMzkwNzQ2NTI3ODM1CjhmNzlmZjAwMWY0ZmY4N2YyYTNjZjhmZjAwZTdkMjFmY2RmZjAwZjhhYThlNTkwY2IyYjQ4YzAwMjdiMGU5NDAwY2EyOGEyOAowMGFkM2QzMmViZWNmOTdjMjgxMWYzOTNmNWUyYjMyOGE2OWQ4MGQ2ZDVmNTg5MzUwNDQ4OGVkZDhhNzc2NDBlZjhmZjAwZWIKZDY0ZDE0NTIwMGEyOGEyODAyZGQ4NmE3NzlhNWJjZWY2NTMxODlhNzg1YTA5MDgwMDkyOGRkNDczZDNhNzUxY2Q3NTNlMThkCjQ3NTRkMjc0MjlhZTQ1Y2M3MTU4YzhlZDBjMjg0OGRjZjM5NTE4MjQ3NjUxOWRjNDlmNGFlMmViYThkMmQyMmI5NGI2NWYzMgoyOGIxMWFhYjMxOTQwM2MxY2YzZjlkNWMyNGQzZDA4OWM1NDk2YTc0MWUyOWQ2ZjUyZDQ2Y2Y1NzgyY2Y1MjgyZTJkYWQyNTcKNWI4MDI0MGRiYTE2NjAxMTkwZjQ2ZWI4MzhlNmI4MWI4ZDRhZWVlYWMyZDZjYTY5OGJkYmRhNmZmMjUwODFmMjZlMjA5ZTdhCmY2MTVkYmNiYTUyNmFkYWE1YTY4ZWYzNWE0ZWYzYzgxMjI5ZDI0MDRhYTlmNTcxYzdhNzA3MzVjNmViN2E2OWQxZjVhYmJkMwpjYmVmMzA0ODUzNzY0MWNmZTIzYWQzOWM5YzllYTI4NDE0NTY4NTBhMjhhMmIzMzQyNmI2OWJjODk3NzFjZWRlZTA3N2Y0YTkKMmU2ZmE1Yjk0MDhkYzI4ZTQ4Y2Y1YWFiNDUxNzAwYTI4YTI4MDI0ODNmZDZmZjAwYzA1YmY5MWE4ZWE0ODNmZDZmZmMwNWJmCjkxYTYyYjZkNjBjMDAzODM5ZTY4MDNhMGQzMzQ1NzllYzlhZmI1YTlhZTJkNzQ4YjdlMTczOTBkMmI5MDQ4NDg4MTE4MjRmNwozZDAwYWY0YmY4N2JhOGU5ZDE2OTgyMWQzMzU2YmMxMDg5MWJmZDAyZTM2YjMyYjEyMzBkOTUwMzgzZmQyYmNlM2M2NWUzM2IKYWYxOTVkZGE0ZjcxNmQxNWIyZGI0MjIyNThlMjI0ODNlYTZhYjc4NjdjNDI3YzNkNzMzNGJlNDE5NDRhYTA3MGQ4MjA4MzkxCjVhYzFjNzlhY2RkOTc3MzE5YTkzOGRlZGFmNjNlOGU3MTJkYzIyOTk0ZTQxNjE5ODU0MTdlMzIzMjczZmZkNmMwYTZjOGMwMgowOTEyMTcxMTdkZGRkZDcyN2YwYWYyZTFlM2Y2YjlmMGZjZmE5NDk2OGVkMWMxNzA5MDZjZjM4ODI0YjJiMWNlN2ZlMDM1YjUKMDc4YzZlMjZkNjc0YmQxODQyNDdkYmFkNjM5ZDU4Yzg0ODQwYzg1ODAyMzFjZTMxNWQyZjk2ZmE0YjQzOGRkMzZkNTljNGU4CmZjNGQ3MDFiNDI5MTI1NmM4ZjJhNDI1N2Y4YjFiMWFiYzUyZDM0YmQwNzU4NzdiNmQxZWU2ZmFkYjUzZmJkNmViNzhlOWIyNQo2MWZjMjE5NDBkYWRlOTllYmQyYjZiNTNmODlhZDdkNjczNWJmZDgxYjczMjMyMDJkMmU0MGM4YzdhNTc5ZWFiMTU3MGUwZTEKODFjODM1OTU2OTQzNDRiNTNhMjg1Mzk0NTNiZTg0ZDc5MGRkYzM3MmViN2IxY2M5M2U0ZWVmMzgxMGQ5ZTlkZWEzOTdlZjBmCmY3NTdmOTBhZTk3YzVmZTM2YmJmMTgyNjljYjc1NjkwNDJkNjcxMTRkZDFlNzJlNGUzMjRlN2E3NGU5NWNkNGJmNzg3ZmJhYgpmYzg1NzNiYjc0M2E2MzdiNmEzMjhhMjhhNDMwYTI4YTI4MDBhMjhhMjgwMGEyOGEyODAwYTI4YTI4MDBhMjhhMjgwMGFkYWYKMGZkZDNkYjVjYzcyMjE1MWIxYzY3NzBjOGM3YmQ2MmQ1Y2QzZTdmMjY0Mzk2NTUwMDE2YzllYmY0ZjdhNmI3MTMzYjJmMTFiCjRiMjQ3MmRlM2Y5NTBiYzI5ODRmMmM2MzA3M2M2MGZhZDcwOTJjYjI0ZDJiNDkyYmIzYmIxY2IzMzFjOTI2YjRiNTBkNjY2YgpjYjcxMDc5ODRjNjc5NjA1NDBlODc4YWNhYTFiMDQxNDUxNDUyMTg1MTQ1MTQwMDUxNDUxNDAxMjQxZmViN2ZlMDJkZmM4ZDQKNzUyNDFmZWI3ZmUwMmRmYzhkNDc0MDA1NmU3ODU3YzI5YThmOGJmNTM3YjFkMzhjMmIyNDcxOTk1OWE1N2RhMDAwNDBmN2VlCjQ1NjFkNGY2OTc5NzU2MTM4OWVkMmUyNWI3OTQwMjM3YzRlNTViMDdhOGM4YTZhZDdkNDRlZjZkMGRmZDdhZWFjZWNhMTFlMQo5ZDM3ZmUzZGUwOWYzNzU3NTIwYzM0ZjMwY2E5MzhlYzhiOTIwMGZjNGQ2ZWY4ZGMwZjBiNzg4ZjQwYmNkMmY1NGI3YmM5NjAKYjA4NTQxOGMwMjA2YzFiNzkxOTIzMGMzMzVlN2E0OTI0OTI0OTI3YTkzNTY2ZjVmY2M2ODRlZDBiODg1NDYwNTU3MzEzYzliCjFkNjVlNzg0NTc1YmQwMmVmYzU3YTE3OTcwZDhjMjBiNWQ1YTQ4Yzc3NDJlMzk2MDg3MWYzMmUwODIzYmY2YWUyNmE3OGVmYQplZTFiNDk2ZDYyYjk5OTJkZTYyMGM5MTJiOTBhZjhlOTkxZDBkNDE1MmRhNjM4YTZiNzBhN2NiZjc4N2ZiYWJmYzg1MzI5ZjIKZmRlMWZlZWFmZjAwMjE0OGExOTQ1MTQ1MDAxNDUxNDUwMDE0NTE0NTAwMTQ1MTQ1MDAxNDUxNDUwMDE0NTE0NTAwMTViM2UxCjVmMGVkY2Y4YTNjNDU2YmE1ZGI4M2ZiYzZjY2FlM2ZlNTljNjNlZjM3ZTVmYWUyYjFhYmU5MWY4NDdlMGQxZTFlZjBmOGQ0YQplZTMwMzUwYmY1MGU3MjMwZDFjN2Q1NTc5ZWZkY2ZlMWU5NDliYjJiOTcwOGYzM2IxZTM1ZTNkZjA2YzllMGZkNWEwNDQyY2YKNjM3NzEwOTZkYTQ2MzkyNzgxYjk0ZmI4MjdmMjIyYjkzYWZhZDNjNWZlMTE4YmM2M2UwNTViMDNiNTZlOTIyNTk2ZGE0MjNlCmViODFkM2U4N2ExZmFkN2M5ZjcxNmYzNWFkYzQ5NmY3MTFiNDczNDRjNTFkMTg2MGFiMGUwODM1YWQ0NTY3NzQ3MzUxYWJjZQo5YWVhODhlOGE3NDcxYmNkMmE0NTEyMzNjOGU0MmFhYThjOTYyN2EwMDNiOWFkMWZmODQ2ZjVkZmZhMDJlYTNmZjgwYWZmMDAKZTE1OTliMTk5NDU2OWZmYzIzN2FlZmZkMDE3NTFmZmMwNTdmZjBhODJlZjQ5ZDRhYzIyMTJkZTY5Zjc3NmQxOTZkYTFlNjg1CjkwMTNlOTkyM2FmMDY4MDI5ZDE0NTE0MDEyNDFmZWI3ZmUwMmRmYzhkNDc1MjQxZmViN2ZlMDJkZmM4ZDQ3NDAwNTE0NTE0MAowNTdhZTdjMzhmODVmYTVmOGU3NDM5NmZlZmVlYWZlMjkyMTk0NDAwNWI2Y2M2MzZhOWM5ZGMwZjNmMzdlOTVlNDc1YTA3NTEKYmRiMzU4ZDJkNmYyZTIwNTMxYTkyYjE0YWNhMDljNzVlMGQwMDdiZDQ1ZmIzZmY4NjY1MmExNzUyZDczMGM0MDA3NmM3OGVkCmQ3ZTVmN2ZkMmIzN2M0YmYwM2Y0MmQxYmMzM2FhZWE5NmY3ZGFiYmM5Njc2YjI0ZTllNjg4YzIxMmEwOTAwZmNhMGYzOGFmMQo2ZmVkY2Q1YmZlODI5N2JmZjgxMGZmMDBlMzRkOTM1OGQ0ZTY4ZGEzOTc1MWJiNzhkODYxOTVhNzYyMDhmNDIzMzQwMTRhOWYKMmZkZTFmZWVhZmYyMTRjYTdjYmY3ODdmYmFiZmM4NTAwMzI4YTI4YTAwMjhhMjhhMDAyOGEyOGEwMDI4YTI4YTAwMjhhMjhhCjAwMjhhMjhhMDBlODNjMTQ5YTUzNzhhYWNkZjU5OTAyNWE0NmRiYzA2ZTE1ZGMxMWI1NThmNjE5ZWJmOTc3YWZhM2U1ZDRhNgpiZDQwYzI2MWU1MzBlMDQ2N2U1MjNlYmRlYmU1ZWQyMzU0OWI0NmQ0ZTFiZDg1NTVjYzZkZjNjNmUwMTU5MTdiYWIwM2Q4OGUKMmJkZTM0OWQxYmVkZGEzYzFhZWY4MWVmMTYzYjc5ODE2OTc0OWI5NzJkMTJiZjUyYWE3YWM2NDFmYzM5YWVhYzNkNGEzMDdmCmJjNWYzMjY3MGE5MzhkYTBmZTQ3NmRhNTRmMmRiNjlmNmJlNTQ4NTU0NDRiZjJmZjAwMGY0ZjRhZjA1ZjhiZWRhMzVjNzhhYwo1ZGU5YjJjNmQ3NTJhZmZhNmFjNDcyODFjNjAwMzllOTkyM2E4ZjZmN2FmNDQxNjFhYzZhZGE0YWRjZjg4ZWYwNjkzYTQ0MzAKZTVlY2VkNjRmOWRkNDBlYjI0ODNiNzFkMTdkNmJjNGZjNGRhY2MzYWM2YTg0ZDk1YjI1YWU5ZDAwZjJlZDYwNDVjNmQ0ZjUzCmVhNGY1MzViZTI5YzZjZGY3MGY2NzE0ZDQ5MmIzMWZlMGFmZjAwOTFmM2MzYmZmNjEzYjZmZjAwZDFhYjVmNWNjODlhNTU5MApiODg0ZGY1ZDQwZjFjN2IwOThjMWRjMzE5MjU4NjMzYzllNzllOWM1N2M1ZjY5NzczZDg1ZWMxNzk2YjIxOGVlMjA5MTY1ODkKYzc1NTY1MzkwN2YwMjJiYWM2ZjhhZGUzNzc2ZGNkYWY0YWM3ZDRjMzE5ZmYwMGQ5N2RlYmNlMjhmYWFlNDkzNGYyMjQ1MWFiCmRkYTkyODE0OTUyZGYyNzRlN2E3NWUzMWZmMDBkN2FmMzBmOGZiMWM0N2UxZmQ4ZGM0MzczMzRhYWZhOTQ0YTQ0OGM0ODUyYgoxNGI5ZTNiMWU3OWFmMjJmZjg1YTllMzZlM2ZlMjdiMjcwNzIzZjczMTcxZmY4ZWQ2NzZiYmUzOGYxMjc4OTZjNTJjYjU4ZDUKNjRiYmI2NDkwNGFiMWIyMjgwMWMwMmEwZjAwNzYyNDUwMDczZjQ1MTQ1MDA0OTA3ZmFkZmY4MGI3ZjIzNTFkNDkwN2ZhZGZmCjAwODBiN2YyMzUxZDAwMTU2MjRiNDdmYjY0YjA0NGFjZGIxOGY1ZjRjZjUzZmE1NDAwZTE4MWMwMzhmNWFlYTJmMmUyMTZiOQowNTEyMzkxMTkzZjg1NDczOGUzZmE1MzQ4NGNjNjhmNGI2OTBlMDRkMWU3ZDhmMDJiNTJlYmMzMzc3NzMxMmNmNjI2MDlkNTIKMzU1NjU4ZGNlZWNmZDBkNjhlOTdhN2M3NzdhOGE1YmM1MmFjMmIyYjYwMzNmNDAzYjY2OTYyOWU0YjFiOWRkMTFjYjY3MDc2CjllYjU0OTIxNmE3MTcyNDZmMGM4ZDFjODhjOGVhNzBjYWMzMDQxYTZkNzVmYWJkYzdmNmI5NThhZTc0ZjU4ZWUzMDBhYmFiNgo1YjA3ZmNmN2FjOWQ2MzQwOWI0Yzg1MjZmMmU0ZGJkMjRkY2NhNGE5M2QzMzhlOTlhOTZiYjBkMzMxYTlmMmZkZTFmZWVhZmYKMDAyMTRjYTdjYmY3ODdmYmFiZmM4NTIxOGNhMjhhMjgwMGEyOGEyODAwYTI4YTI4MDBhMjhhMjgwMGEyOGEyODAwYTI4YTI4CjAwYWVlZmUxODc4ZGRiYzI3YWUwYjdiYTkwZmYwMDY1NWUzMDU5ODEzYzQ2ZGQwM2ZlMWRmZGJlOTVjMjU1Zjg3NDhiYmI4ZAozNDVmYzJhOGYxNzllMjAyYTFjNmU1NjIzODI0NzYwNzM4YzllMzM0NWFlMzUyZTU3NzNiZWY4OWRlMzc1ZDQ2MzhiNDBkMzYKNjBkNmIxODU2Yjk5MTc5MTIzNzA0MjgzZTgzZjlmZDJiY2NhYjU2N2YwZWVhNTZhYmE4MWI5ODUyMWZiMDMwNDljM2M4YmY3CmM5ZmJhYmNlMThmN2MwZWMyYjJhYjRhOTM3Mzk1ZDhhZjcwYTI4YTJiMzAwYTI4YTI4MDBhMjhhMjgwMjQ4M2ZkNmZmMDBjMAo1YmY5MWE4ZWE0ODNmZDZmZmMwNWJmOTFhOGU4MDFkMTZjMTJhNzk4MzI5Yjg2ZTFlZGRlYmEzYjZiZmIzMjcwMmRmZjAwMjAKMmI5YWFkNGIxNzAyZGQ3MWQ0MTM1NDg0Y2ViZWM3NWJkMjIwMjFhZTM0ZGRlM2IxZGEzZjJhYjNhYTc4ODc0MmJiYjUxMGQ4CjY5YTkwY2U3MDMzYjEzM2Y4MTFjZDFlMTdkNGVkNWExOTIwYmM1NGRjNTg2MTlkNDEwN2ZjMmI1NzVkOTc0YzRkM2U1YjY2OAphMzMyMTE5NTU4YzAwNTRmNjM5ZWQ1NzdkMDliMWM5NjkzNzUwYjc4OTNjY2JhZmI5ZTZmNDNkOTQxZTA3ZTU1ZThiZjE0MGYKODZhNWYwYjk5NzQ5ZjJiY2Q1Yjc1MTMxNWNmMmU1ODYwMWZmMDA2YmVmNTc5NDVjNDY4OTY5MmNlODA4OWQ0MDIxYjNkMzA2CmIyYWVmNTdiZWJlODEyMGI4Yjg3Nzg5MGU0Mjc2Y2Q0M2QwYTVhOTRhOWYyZmRlMWZlZWFmZjAwMjE0Y2FiMjkwMDllNjBhNgo1OGEyMDExNzk5MWIxZGFhNDY1NmEyYWM3ZDk3ZmU5YmMxZmYwMDdkZDFmNjVmZmE2ZjA3ZmRmNzQ1ODBhZjQ1NThmYjJmZmQKMzc4M2ZlZmJhNTViMzY2NjBhYjM0MjU4OWMwMDFmYTlhMmMwNTZhMjgyMDgyNDFlYTI4YTAwMjhhMjhhMDAyOGFkMzRmMGY2CmFiMjRiNjExNDU2NmYyNDk3ZjE5OTJkOTUzMGM2NDUxOWNmNGZhMWE4MWY0YmJjOGY0YjFhOTNjMDU2ZDRjZTZkYzM5MjA3YwplMDY0OGM3NWU5NGVjYzU3NDUzYTI4YTI5MGNiZGE0YzM2MTcxNzRkMGVhMTJjZjEyYmM2NTYyOTIyMDA4NTkzOGRhNWYzZmMKMDM5Y2UzOWFmNjJmODY5ZTEwZmIxNjhmM2RjNWY0MzBjZWQ3NWIxOTU0MzJiYWVkZTcxZjMwMDc4ZWU3OTIwZjFlOTVlNTNlCjE3OWRlZDc1NDkyZTUzNTQ1ZDNiY2FiNzkxOWE0MjAxNjkxNzE4Mjg4MDhjNmYyMGYxNWViN2UxMGYxZGQ4NWNlODZiMDRiNwo1MjQ0ZDAyYjY2M2I4OTU2NDkzNjhlNDlkZDgxYzAxZGNmYTdiNTZiNGQ1ZjYzMGFjZGQ4ZDBkN2JjM2RhNzY5NTYxN2Q3YjIKYzQ2NThlNDJmMjBkZDIwMDE1OWIwNTg5MjdiNzFkZjhmZTllMTdhOWRhZDhkOWMxNmIxNDEzYmNkNzk4MjZlNTk0ODMwOGNlCjM2ODQyM2FlMzkwNGY0Y2Y0YWY2ZmYwMDE2ZjhhNzRkODM0MGJhODdlZGNhNjRlNzZjNjkyZWM3MmNiZDQyOTIzMjA4M2M3NAplMmJjN2ZjNGI3Yzc1MmI3ZDNhZTg2YTZkNzMxOTQ3NDRiNzk4ODY5YWRiMDc5MGM0MGY5ODEyNzIwZjUyM2QyYWFhYzUyZDcKYTg1MWE5Mzk0NTQ2NWIyMzlmYTI4YTJiMDM3MGEyOGEyODAwYTI4YTI4MDI0ODNmZDZmZjAwYzA1YmY5MWE4ZWE0ODNmZDZmCmZjMDViZjkxYThlODAwYWJiYTc5ZTVjNjdkMGQ1MmFiOTYwYWQ5NzdlMzY4YzAzY2YzOTNmZjAwZWEzNGQ2ZTI2NzQ3YTIwOAoxZWVmZWNmM2JiMjc5OTgwYWMzYTY3ZDJiNTg1OTk1Nzc1OTczODA3MDA3YWQ2MGQ5Mjc5YzU0YTkwMjU0NjE4MzlhZTllNTkKZmNlNzJlNzAzM2U5NTY0OTkxYWI1YTQ1MTY5NTcwNTdlNWY5MDkyN2Y5MGFlMjJiYWVmMTM1Y2E3ZjY3MDg5MjU1ZGM2NDE5CjUwNzkyMzlmZWI4YWU0NmE2NWI5NTEwYTdjYmY3ODdmYmFiZmM4NTMyOWYyZmRlMWZlZWFmZjAwMjE1MjMzZDJiZTE5N2MyYwpiN2YxZjY5MWE4NWY0ZGE5NGQ2YWQ2OTI4OGMyNDcxMDZkZGYyZTdiOWFlZDEzZjY3M2IzN2I4MTExZDZlZjAwYzFjYmZkOWMKNjA3NGZmMDAxYWUzZmUxNzdjNGRkMzdjMGRhNDVmZDlkZWMzYTgzYzk3MTM4OTE1YWQ1NTA4MDM2ZTM5ZGNjMmJiYzZmZGEwCmZjM2VkOTFmNjZkNzQyOWNmMWIyMmZlN2JlODAzYzc3ZTIyNzg0NjJmMDQ3OGIyNGQxYTFiYjdiYTQ1ODUyNGYzMWQwMjlmOQo4NzRjMGFlNmFkM2ZlM2Y2MGZmYWU4YmZjZWJhOGY4OTFlMmJiNGYxOWY4YjlmNTdiMjhhZTIyODRjMTFjNThiODBhMWM5NTEKODI0ZWQyNDU3MmY2OWZmMWZiMDdmZDc0NWZlNzQwMGM5N2ZkNzNmZjAwYmM2OTk0Zjk3ZmQ3M2ZmYmM2OTk0MDA1NmE2OTlhCjY0MWE5ZGFkYzIyNWQ2ZGQ0NTRhZmQ5ZWRkOTcwMjYxY2VlMDFiYjM3NGMwZWY1OTc1ZDFmODZlZWJlYzM2MWE4Y2YyZGM1OQphNWE5MDhiMjQ1MjQ1MWNiMzQ4NzI0YTg4ZDVjMTFkNDcyN2I3ZTU0ZTNiZWE0Y2I2ZDBmNWRmMDY3ODNhM2IwZjBlZGE0NTcKZjZjNWFlZTNiODY5NzcyNjAxOGRiNmUzMjQ5M2VlNDcxZjk1NjNmOGFiYzFmNmY2M2UxZGZiMjI0MjI3YmEwMTYyYjc3NjUxCmYyYTJhOTE5YzlmYmE0OTFiODllOWQ3ZDZiYWJkMWJjNTc2OWE5NjkzNmQzMWJhNTUzMjAwNzY5MDE0ZTRmYTgxOTAwZDczZgpmMTBiNWViMGZlYzhiNjEzNGIxY2Q4OTg2NDJjNTFjYTcwNDFlNzZjODA4ZmM3MTVkM2M4Zjk3ZGUzOTY5ZDY5NDZhNWQ3NTMKYzY3NTRiNmIzYjRiYTU4NmNhZWZlZDRhYjFhZjk5MjA1YzJmOTlmYzQxN2Q1NDFlODdiZDUyYWQ5ZjE0M2NiMzZiNmY3MzJkCmNkOWRjMTlkMTI0NTdiNDAxNTM2ZTMwYjk1MWY3NWIwMDY0NzUxNThlMDEzOWMwMjcxZDZiOTllZTc1Yzc2MTJiYTdkMzE2MQpiM2QyNTQyNWI5Mzc3NzI3Zjc5M2IxMzgzMDM3MDYzNTAzYTEyNDFjYjdhMWUyYjlhZjJlNDI3MDExYjM5YzYzMWRlYmE4ZDAKMjQyZjczNmYwY2IwMmY5OGI4NDVmM2E0NjUxYzc0MWQzOGE3MTE0OGI5YWZiZmRiZWRiNTFiOTliNGY1NzQ5NjUzMmRhMWI2Cjk0YjFiNjc2NjFiYzNlNDAyY2E3MDdiNzVhZTI0ODIwZTA4YzFhZjQ5YmM5MmRiNGRmMTFkYTVjNWY1ODQ1ZjY0NDYxMmNmMApjMzMxNzI0Njc5ZTQ4YzhmYTU3MTNhZmNkNmQ3YmFmNWU1YzY5ZjBiYTVhY2IyMTY4OTQ4MzljN2Y1YTI1YTg0NTU4Y2NhMjkKNGE5MDAxMjA4MDdhMWFiN2E0OWI2MWFiNWI3ZGFlY2U1YmM4MGI4MGY2ZjEzMTU3OTNkODExY2U2YTRhMjZkMzM0ODZkNTIwCmJjNjhhZTIyNWI4ODEwM2M3NmU3M2JlN2Y1MDllZTAwY2Q1YzgzYzI5NzcyZGNjMzFjYjcxNmQxNDUyNWE4Yjk2OWNiMTJiMQo4NjA3NmFiNjA2NzcxMjMxYjQ2NGZlNDZiZDJmZTFjNzgzNDU5ZWE3M2VhY2FjZWQxMzE3OGUyODlkNTkxOTQ2MDFkYWUwZjcKYzkxZmY3Y2U2YmI1YmJmMGZkOGM1MzlkNGQ2ZGUzNjk1MTU3N2M2NzI1NWI2OTZjNzFlZGJkYWI1OGQzNGQ3OTk4YmFhOTRhCmNmNjNlNjIyMDgyNDEwNDExZDQxYTRhZWE3YzQ1Njc2YjZiNmY3MzNiZDk0ZWQ3NTc1NzFiZDJlMTQzMmMzMTBlNzI5OTIzZQo2NjNjMTNlOWVmNWNiNTY2ZDU4ZGFlYWZhMTI0MWZlYjdmZTAyZGZjOGQ0NzUyNDFmZWI3ZmUwMmRmYzhkNDc0ODAyOWYxYzgKZDEzODY1ZmM0N2FkMzI4YTAwZGI4MTk0YzQxY2YxYjg2NzlhNzdkYTUzNjQ4YzI0Yzg0MWYzNjBkNjQ0ZDcyZjM0NzEyMzcwCjIzNWRiYzc3ZjdhODY5ZGM1NjI0OWU2NjllNDJlZGY4MGY0YThlOGEyOTBjMjlmMmZkZTFmZWVhZmYwMDIxNGNhN2NiZjc4NwpmYmFiZmM4NTAwMzI4YTI4YTAwMmE2YjRmZjAwOGZkODNmZWJhMmZmMDAzYTg2YTZiNGZmMDA4ZmQ4M2ZlYmEyZmYwMDNhMDAKNjRiZmViOWZmZGUzNGNhN2NiZmViOWZmMDBkZTM0Y2EwMDI4YTI4YTAwZTk3NDlkNzM0YWQyMWY0ZGYyZWRhZWE1NTQ5MTZlCjJmNDk2NTU2NjkxNDMwNTU0ZWMxNDZlY2YzYzljOWY0YWNmYmZiZGIxYmVkMzYwNzMxY2M5YThjNDU2MTI0NjNjYjc4NTU3MAphNGY3ZGUzODFlOTgxNTdmNGFiMjE3NzFkYjE4ZDE3N2VjZGE1OTk5N2ZiYzdkN2ViNWIxNzllMWUxM2RmNWJlOTJkNjk2ZTIKZWE3OTAyYzMyYzJjYWFjNDEzZGYxYzFmYzc5ZTZhZjViMTE2NTdiOWMxZDRkMWJiMmRhY2MwMzkxOTJiOTAwNzVlYmRlYWQ2CmI5YTRjZGExZWI1NzVhNmNmZjAwZWIyMDdkYTc5YWFhOTlmYjJjYmY3ZjFiOTczOGM2M2JmNWE4MmM2MDlhNTBkYjg0OGY5YwplNzM5ZWY1YTdhNjRjZWYzMDkyNDkzN2I2ZjA3MmU3M2Y5ZmI1NjRkNGIwNGM2MDcyYzA2NDk1MjA3M2QzZGU5YTYyNjc2MWEKZTVkZGE0N2E3NGM2MTY0MzIzOGRhYmYzNjQ4YzlhZTM0NGIyMGRiODkxODZkZTljZjRhNTk2NzkyNmRiZTYzNjcxZDJhM2ExCmJiODI0NGRiZDhkOWVkMmVjNDA3MDQyZTM4ZTg3OWNkNGRhNDg4MGVhZDZiZjY5YmU3YjE4ODQ4MGI1Y2EyOTY2OGIxY2VlMAowNzM5YTgwMTNmNjQyMzJkOGRlMzhjNzFkMGY3ZjVhOGE4MDNkNmZjMTVlM2FiNThlZmE3ZDM5ZGE1NThlNTk5NTYwNzc5OWQKZTQ5ZDliOGNiNmUzODA0OTAwZjZlYmVkNWQ0NWQ3OGViNDY4YjRmMzJiNWNiMjI0ODgzYWE5YzFkZGJiMWY5ZWM2ZWRkYWJjCjNmNGFkNTk3NGE4NmVjYzc2YThmNzkyMmE4YjdiOTJjNDM1YjljZjJjYTNkNDhlM2RiYWQ1YjhiYzRjN2NkODE2ZWI0ZWI1OQplZDIzYjU1YjY2YjYwMGE4OTM2ODZkYWU0ZjI0MzgyYzRlNDYzYjhlZjViYzZhYTRiNTVhOWNmM2ExY2NjNzZhNWFhNWI2YWIKYTMzMTdiYTllMGI5ODY2MWI2Y2MzM2JjNTI4MzljYzgzNzEzYjU4MGMwM2M5Y2Y2YzU3M2Y0NTE1ODM3NzNhMTJiMTI0MWZlCmI3ZmUwMmRmYzhkNDc1MjQxZmViN2ZlMDJkZmM4ZDQ3NDg2NzU5ZjBjZjRhODM1YmY4ODNhNjY5ZDczNmQxZGM0NTMwOWIzMQo0ODMyYWM0NDRlNDY3ZjEwMGZlMTVmNDkxZjg1ZmUxYTU2NTU1ZjA5ZTk4Y2EzMTk2NjFmMzFlMDczODBkOGNlNzNjNzRlOWUKYmM3Y2ZkZjA1ODgxZjE3MzQyMjc4MTk5ZmYwMGY0NDQ5NWY2MDA3NDIzMjE5NDhlYjkwNjgwM2NmMWJlMThmODcwYmEwMWUxCjRkMjg2MjU2MGNiZGNhNzYzZDdhZjRlM2Y1YTdmZjAwYzJhZmYwY2I0NDMzZTE3ZDI5MjRmMzQ4MjEwMTI3NjYwZTNhOWViOQpkYjlmNjI2YmFiYjhkMGVkNmUyZWRlZTFhZTY1NTc2M2NlYzY1MWQzMzhlYTA5ZmUyNmZjMGQzZWQ3NDZiNmIzOTg0OTE0Y2UKNGY5ZWQzMzA3MjBmMjQxMThlMzFlYjQwMWM3MjdjMmVkMDE1MDJiNzg1MzQ5NjYwMDY1OGU3OWUwZTdhMWY1YzU3ODE3YzYxCmQxNmMzNDFmMWUzZDhlOWQ2NzE1YTQyMmQ2MTczMTQ0MzBhMThhZjNmYWQ3ZDgwYWU4ZGY3NTk0ZjM4ZTBkN2NhM2YxZjdmZQo0YThkYzdmZDdhYzNmY2E4MDNjYzI5ZjJmZGUxZmVlYWZmMDAyMTRjYTdjYmY3ODdmYmFiZmM4NTAwMzI4YTI4YTAwMjlmMTQKOWU1NGM5MjYzM2IxODM2M2Q3MTRjYTI4MDJjYjM1YTMzMTYyMjdjOTM5ZWEyOTNmZDBmZDI3ZmNjNTU3YTI4MDJjN2ZhMWZhCjRmZjk4YTNmZDBmZDI3ZmNjNTU3YTI4MDM3MzQ5OWVkYTFiZDQ2ODYzZGYxMmI4ZGMyZTAwMzkwN2Q3ZGFiYTNkNjU1NDAzNwo1MGRhYzU2NjJkZDQ5ZmRjZjA3MjNiZmE1NzE5YTc0ZGU1NGE0NjA2M2VmMTI3ZGFiNWFlNzViOGVmYWQ5YWRlNjlmNjIzMGUKNGFjNjQ5M2VkY2Q1YTdhMTJkMTk1N2I3NTE1ZTVmMzRmMjQ5NzEyNmYxZjMzM2UzNzEzZmNiMTU1ZjdjNjJkY2EwNTZmMzA5CjA0OTI3ODAwNjdiNTIwNTg3ZTVjYzkyMGY1YzIwZTNmNWU2ODAyMWY5NzJlZTNhZWVjMjBlM2QzMWNmMzUyNTExZDE1MjAxMApmY2I5NzdlYmNmYzgzODFmOWQxODg3OGY5ZGZhZjNmMjBlOWY5ZDIwMjNhMmE0YzQzYzdjZWZmN2I5ZjkwNzRmNWViZDdkYTgKYzQzZmRmN2ZiZGZkYzFkM2Q3YWY1ZjZmZDY4MDFjODUwZGIzYWI0OGNhYzE4MzA1YzcwN2ZmMDBhZjRiMWM1MDE5OTE1ZWUzCjA4NDY1OTgyMWUzZGE5OTg4N2ZlN2EzZmRlZmVlMGU5ZWJkN2FmYjUxODg3ZmU3YTNmZGVmZWUwZTllYmQ3YWZiNTMwMzZlYwo3NGU4NmUxMjNmMjIzNjlkYjA0NmUxMTFjMWY5OGY2ZmE3ZDZiNTJmM2MzZjFjYjJjMTYyZDYxMmMxNzkyMzg0ODllMzQyYmIKYzFlOTk1MzhjZmQ3OGFjOWQyZGVkNjFiZDQxMTlmYjQ0MmFlMzcwOTA2ZDA0MWVkZmYwMGQ3YWU4NzU3MGIwMzBiZGQzNmRkCmVkMWFkNTRiODIxZjlkYzM5MDZhYmExMjcxZGFiNjk5M2U4ZmE5Y2Y2MTcyYTU2NTg5YjA0MzI5NTNmODgzZDBmYjU1MmFiNwphOTZhNTc3YWJkZmNiN2Q3ZDMzNGQ3MTI5Y2IzYjc1MzU1MmEwYTI0ODNmZDZmZmMwNWJmOTFhOGVhNDgzZmQ2ZmYwMGMwNWIKZjkxYThlODAzYmVmODJiZmYyNTc3NDJmYWNmZjAwZmEyMjRhZmFhY2RiYTg2M2ZmMDAxMmQyNzBhNzlmMzBmYWU3ZjNjODE1CmYyYTdjMTVmZjkyYmJhMTdkNjdmZmQxMTI1N2Q3MTdjNTdlY2FmMWI0NzIzYWM4MGExMTE4MTkwMDgzY2QwMDUxMTAyZTczZgpkOThkZjI5Y2ZjZDIxM2NlNDdmODBmY2JlOTk3YzkxMjMzMjE2ZDM5OTlkZDcyYzAzZjRlOWY4NjdhN2U1ZjhkNDVlNjViNDYKNTY1MTE1ZDI2ZDI0MDNiMzAzZjFmNmNmM2Y4ZDJiMDhlNjI1ZmYwMGUyNjJhMWM5ZTg3MWQ3Zjk2MzNmYTUwMDExZGE0MjY2CjhkNGU5ZWYxMGRjMWY3ODYyNzA3ODNmY2YxZjk1N2NjZmYwMDFmN2ZlNGE4Y2ZmZjAwNWViMGZmMDAyYWZhYjIwN2YzMjIwNwo2YmFmNmMzZjVhZjk0ZmUzZWZmYzk1MWI4ZmZhZjU4N2Y5NTAwNzk4NTNlNWZiYzNmZGQ1ZmU0Mjk5NGY5N2VmMGZmNzU3ZjkKMGEwMDY1MTQ1MTQwMDUxNDUxNDAwNTE0NTE0MDA1MTQ1MTQwMDUxNDUxNDAwNTE0NTE0MDA1MTQ1MTQwMDUxNDUxNDAwNTE0CjUxNDAxNzM0ZTk0MjRmODIzMzllN2RiMDMzOWFkN2Q0YjVmMzM1OTM0MGExMThjOGJiNDkwN2EwYWU3M2E1MTRlZTJiMDUxNAo1MTQ4NjQ5MDdmYWQxYzgxOTA0NzNmNDM0NzkxMjdmYjNmZjdkMGZmMDAxYThlOGEwMDkzYzg5M2ZkOWZmYmU4N2Y4ZDFlNDQKOWZlY2ZmMDBkZjQzZmM2YTNhZWViYzJmZjA5ZjVmZjE2Njg2OWFiZDg1Y2U5ZDE1YjMzMzgwMmUyNjY1NmY5MDgwNGYwYTQ3CjcxZGU4MDM4OWYyMjRmZjY3ZmVmYTFmZTM0NzkxMjdmYjNmZjAwN2QwZmYxYWY0YzNmMDIzYzRlM2NiZmY4OThlODlmYmM2MAo4OThiOTczYjg5ZTgwN2M5NGQ1ZjgxOWUyNTYyZTNmYjRiNDUwNTA5MGMwZGM0ODMxODI0Nzc4ZmQ0MWEwMGYzNWYyMjRmZjYKN2ZlZmExZmUzNDc5MTI3ZmIzZmYwMDdkMGZmMWFlYTdjNTdmMGY3NTVmMDdlOWY2YjdiN2Q3NTYxM2MzNzJmZTVhN2Q5NjU2CjYyMGVkZGRjODJhMzFjNTcyNTQwMTI3OTEyN2ZiM2ZmMDA3ZDBmZjFhMjZlMWMwYzhlMTQwZTBlN2I1NDc0NTAwMTQ1MTQ1MAowMTQ1MTQ1MDAxNDUxNDUwMDE0NTE0NTAwMTQ1MTQ1MDAxNDUxNDUwMDE0NTE0NTAwMTQ1MTQ1MDAxNDUxNDUwMDE0NTE0NTAKMDE0NTE0NTAwMTQ1MTQ1MDAxNWQ5Nzg3YmUyNzc4OGZjMzFhMzI2OTVhNzQ5NjlmNjU0NjY2NTU5YWRkNWNlNWJhZjI3ZTk1CmM2ZDE0MDFlOGJmZjAwMGJiN2M2MWI5MWI3NjliYjkwZTUwZmQ4OTNlNTNlYTNkM2E1MDdlMzY3OGJkOTk5OGI2OWE0Yjc1MwpmNjE0ZTZiY2VhOGEwMGVhM2M0ZmUzZmQ3M2M1ZDY1NmY2OWFhMzVhZjkzNmYyMTkxMTYwODE2M2U3MThlZGVkNWNiZDE0NTAKMDE0NTE0NTAwMTQ1MTQ1MDAxNDUxNDUwMDE0NTE0NTAwMTQ1MTQ1MDAxNDUxNDUwMDE0NTE0NTAwMTQ1MTQ1MDAxNDUxNDUwCjAxNDUxNDUwMDE0NTE0NTAwMTQ1MTQ1MDA3ZmZkOTAwColit9UAAAKjSURBVHicYwgNDWXeduIE39ELF8ROAGkQ/////4wMDAwgzNC7aodQ745jQiB26KpVzCC6fOYq/s7VR2xXQfkMz549m/vkydNvz1+8WsQABT5paVwgunLJnuTyZXuyQez6/ftZQHRG5zT1kgXbe+pnbgKrYTh365nW8n0X809fuWtWX1/P9PLDB5X6+l6wrYbW7ulOPhFgA2o3HAhs2nE+AMQ2MLefER+fJQE2oHTesqSOnSf/V8/f35BWX8919eqN2FWrNkuD5NR0DPUs7Fx0QezAvLrE6IrOLBDb1MrewNjYmBVsQMnCzalFKw5+T1+0r2lVfT0b0LFM0HCAASYQISoq66arZRAKFWOG0vVMaUC/JHcsNetbfEYSFHj7gX5FMoARFljHj181X335ucP/M2dYz5y5JgmWDQ2FSN69e1f8669fJsAwYGFAA/uhgbd18+PuNZu/T7x8+YzjlSu3K+EK1LQNTM2sXedFxqbZgN1U/58J2QCYa/YvOquyd8ptbRB71ar/zHAFKppG+U6ewf+9fcKWwfwHSg/QtMBYv2oVGzgWdhwPrt5+HhwG9f+RLBEQkbCzdvT57+wdGQ3iX7lyM/3IkVPqIPaULSclmjafagax7fxi4nwT8nJA7LrVuyJ7lu4XgZjAwyMiJadao2FqKgzivnv3jn/+/P0cIJf4pNVz+SVX5O2/f59DQUXD3sTC2hfsmvXHs7LnHJEC63/9+nXxs2fPL71//74EEgb1TPX1DExAb3ACudz6JtYTw8MTZGEuFhYW5jUwsmhJS0uDuACocdrff///f/z4eTYkgFYhAggcSCrswPhitre3Z4HGGouhuUuQvX08B1j+xv37GucvXYq5dveuGnKoEw2uXLnCc+7cOdUzZ85wkaANHAsA92QSr0wdzy4AAAAASUVORK5CYII="
+ "hash": "ed132a2b",
+ "base64": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAAQCAYAAADNo/U5AAAACXBIWXMAABYlAAAWJQFJUiTwAAACyElEQVR4nC1QS2sTYRT9tFgfBVGxP8Bf4M5tdyKCCGLdWCiuBKG66sJVdwWRFly4aeiDljYwCyNpF1ZNE5O2SeMkmSRjJmZeaSaPOk1mMpnJtHYmOTKNFw7n3nMf3HuJYcBfreLz4SECHhoNBEwTAcPoBSwLAVUd6IqCT5UKNo+PsUBsG5BlIBwB4gmgWgVcF7Bt55xVFcizQDQGCAKgaQBRVbjZHNxQqOdGY3ALHFzDgNvt9lzT7LmCCDeegBva6bkMA1eW4ZJmczAplbKRTp+hUABaLQfNpg1N+wteAJhsH3TKBPsLKJcB0mrBURQ4PN92yuWuU6vBMU04tg3HsuDU63AkyXJk2YN9nicnJ4M9vd1brYHv3eJZrwd0OgNd1wDLGsTE0PFRELAolbHEi1jxWNfONnTt1K/rZ/56HUsyjxVexJJcxop6hHfkv12YnJy84jEh5OL4+PjVsbHHN+49eH6dEDLk6VNTDy7PzMxcPK82sj+mUYp/g0R/h3jgh5S5j9JuAJVMEGLiCw6zj1HcW3D4gwiUTDAX3lonXSW/AZ0DTAlocm10Kq9QZxzoQh+2CNiNadSzEiwJ6JT6AhMrEuNXfPaUpyVbSAlWMZGAknxi/07kz8Q0ZxYTApTURJdPbndFuuJIKTYXCn4jPp/vFmj60vbq6gjLUsMEuFD68GIUb269rn+YGiUUNcRS1PDa2pp3H5mbm31IFhcXRxuNxkhsa+sms709QlEzwxS1eic99/IutbpwZ3l5+QpN166Fw8HbXtP8/Pwj0s1F36MYa0CmFQj7DKTMM/yOFFHJcBD3FFRyL8BFIm4p/geVA5GLbEZIV2E2oHGAxgON/OARtbSDFt+HUQKs6jSqGQltEWgW+mI6WiS1ZPhtk43vaoVkWGX3gsrP709b7P7XdjG5c5zbjR1lohMqs7uuF5KxDhcPMTubvn+iJoy8dImMSwAAAABJRU5ErkJggg=="
},
"/content/translations/de/developers/docs/nodes-and-clients/node-architecture/node-architecture-text-background.png": {
"hash": "0a0bffa2",
diff --git a/src/data/placeholders/content-developers-docs-nodes-and-clients-run-a-node-data.json b/src/data/placeholders/content-developers-docs-nodes-and-clients-run-a-node-data.json
index fa5bb2fa9bd..a803e44a2b6 100644
--- a/src/data/placeholders/content-developers-docs-nodes-and-clients-run-a-node-data.json
+++ b/src/data/placeholders/content-developers-docs-nodes-and-clients-run-a-node-data.json
@@ -1,7 +1,7 @@
{
"/content/developers/docs/nodes-and-clients/run-a-node/diagram.png": {
- "hash": "f9758089",
- "base64": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAJCAYAAAA7KqwyAAAACXBIWXMAAAsTAAALEwEAmpwYAAAGPnRFWHRteGZpbGUAJTNDbXhmaWxlJTIwaG9zdCUzRCUyMmFwcC5kaWFncmFtcy5uZXQlMjIlMjBtb2RpZmllZCUzRCUyMjIwMjItMDctMTlUMTAlM0EyNyUzQTU1LjA5OVolMjIlMjBhZ2VudCUzRCUyMjUuMCUyMChNYWNpbnRvc2gpJTIyJTIwZXRhZyUzRCUyMmFMRl82a3dVTS1wSlpXUnUyTG91JTIyJTIwdmVyc2lvbiUzRCUyMjIwLjEuMSUyMiUyMHR5cGUlM0QlMjJkZXZpY2UlMjIlM0UlM0NkaWFncmFtJTIwaWQlM0QlMjJaVVM2dXdLRlVsTTgwUWVpTFN0OSUyMiUyMG5hbWUlM0QlMjJQYWdlLTElMjIlM0U3Vm5MY3Rvd0ZQMGFsdTM0eVdNSmhEVHBwRWttZEpwa3FkcUtyV0lzS3NzQjh2Vzl3aktXWlROMmFLQjBrZzBqSGV0NWozeU9ydW5ZNCUyRm5xQzBPTDhCdjFjZFN4REglMkZWc2M4Nmx1VU9YUGdWd0RvREJqMHpBd0pHJTJGQXhTZ0NsNXdSSTBKSm9TSHllbGhwelNpSk5GR2ZSb0hHT1BsekRFR0YyV216M1JxRHpyQWdXNEFrdzlGRlhSZSUyQkx6TUVQN3JsSGdGNWdFWVQ2emFjZ25jNVEzbGtBU0lwOHVGY2llZE93eG81Um5wZmxxakNNUnV6d3VXYiUyRnpIVSUyQjNDMk00NW0wNnpORDV6RUd6bTh1WGkxNTY5V3VVQkElMkZza3lucGVVWlJLbmNzVjh2WGVRZ1lUV01maTFHTWpqMWFob1RqNlFKNTR1a1NPQWNzNVBNSWFpWVVreG5tWGlncmNtek1PRjd0WExXNWpRV2NJVXpubUxNMU5Nazc1SkdXNThmT3c3a3MySEFjaVlVS0U5WkFna2llZ0dBN2RoRWtLTWc0dlNKbWcxTVBXVThMbVZzVE1xTW1aS1o5cUpDWk5TSHJSakR0eUNmUFVBeEVjYkxDWHNvSmphSGxGVnBqbHJlQktaVm1OVDFqVUowYyUyRnNuMGhucjNVJTJCTEtNalN1QmxXdVRLdUdxJTJCNmhxTExhVURXbWNZTGpKRTFlVGRVSUkyJTJGRDhQJTJGTG1XT2RHbWQyc3lMaDJCOEtPNFNhRjZFa0laNklERWVNVjJFbGR1VkE0eFhoRCUyRktKS0Q4SyUyRkxNcmEyY3JwZG5aT3ElMkZFc01NSHRhTDBFdFdpMjZhVzk2dGhEZnNWcjlZNGd5M1RsSG00V1lwZzV3SG1UZTlCOVF3b0hMczFGT2NZd3hIaTVMbTgzRHJlNVF5M2xNQkdDbG5vbDQlMkJZNDJwSEo5dW03S1dhdmphUW8lMkJuTDl1em1BMlZ4cUF3RWh3S3RsV1lMMFNEWnZlQmQ4eFNuT2h1eE9PUGJtTzUlMkY3T3Z1TGxWWGlRTVNnOUlZdzl2TDFpcTF0ekNCcW5CTmZUaWpNenltRVdXQXhCVFdZbyUyQmVTQlJwRUlwSUVJdlhFRTQwNktrOUVocEY0Q0k2bEElMkZteFBmRk5MVnlWMzVQMzFyeDdEYUtWM2VqT05pRm90dUclMkJxJTJGMzMxc3pQa3g1Q05HQWdITUk0d2Y5SmZvZDdlVzJxJTJGUjNqOGwlMkJmMCUyQiUyRjIybHNwWWp0NjFqdFRhclJmSGJ3Y1J6ejJhWUJ1enlqcmZub3NyRTFpUWJ6ZVN0JTJGeUw4aE5LakU5T1lhR3QzZGpsdUx4UjMlMkJuZUpFJTJCT0dIVGlnNjBkWHBkaXN5MFR1bVRKalZ0SE1DS3M5d09nZjBlcE9BdkF0aUt2NWQ4MFhndVA1dDFxVXNiNWhtJTJGZ0E2Zk1RcDIlMkZzVlBha1UwelZyQ0R0cWltazZlM3J1YTNQTXNoWExoTE5JTWg4N1NvN1prSEFXanYyb1d2dGYyM2R6am1tMzlQbCUyRm0yUnEzd2xkM1o3MzluazlXejIwejFlekFVWG5GU2w0SDJLdjNkYmQlMkZzRnU2MUF0JTJGciUyRkkyQ3olMkJCTEluZndBJTNEJTNDJTJGZGlhZ3JhbSUzRSUzQyUyRm14ZmlsZSUzRSmFCXUAAAEySURBVHicXZChy8JQFMVf9X8SBgvCwsBgs9sXBnaDYcEgWATjgmFhwbCwsGAwLBgMBoPBsGAZWAxHfpfvCZ8PDu++e+8759zr3u+3OJfLRXVd63A4qKoqNU1jICYPTqeTjsej5dq21Xw+l9PfIXG9XtX3vZ7Pp933+13b7VaLxUJlWQox8qDrOiNyu91OeZ7/U1wul1qv1xbjCKC+Wq2Upqnd1HDjaNxsNiqKQpDhBDXeNFDPssxIcJMkid1+tO8IqDMCgASwl/1+byPwgTdikBHT4/wSeTAzuN1uRkQT8ePx0Pl8NhIIcEiNPXwdYJflQfgLL8Dn2WxmNzuB+EuAwuv10u/xW/fuWLjvtR14BQpBEGg0GhnCMNR4PNZgMJBzTsPhUHEcazKZKIoiTadTy38APyfPwGpAOFEAAAAASUVORK5CYII="
+ "hash": "27a95e2a",
+ "base64": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAJCAYAAAA7KqwyAAAACXBIWXMAABYlAAAWJQFJUiTwAAAB/klEQVR4nFWQTWjTcBjGszKZioiXehb07mHgYeJ97KSH6bEwxFsP3gdB8NDS0Bipk7L2MndzYxs6Chtpq51CpR9bv2bNli61runapk3b9CPJv4+k4mEPPDy8H/x4eSkAU5EIpkHD5nA4rjZOM0u9isCqZcGlCT/c3ULcrUiCWykdT6yWim5VKrr6FYEVs8lnlCULYuXLxcVrRNfCAEAAE+IBUPgMfTSE0WtC7zYxNg2Mx2PT2hl0GusUz+NuNIqFaAiPOO7XTdRP9lD7CUjpEUpJE83f5qhxbpot2YBSMSEdGpDSQygitEpxjTrKIFAuA/k8tI+8OmemP4VwEEQ/9FYnYT8xygXSrZ6RQaNqEiFOtF2WdHbf6Ih/gF74skaFY5iNfcOL+Hc85YJf7VBKPHonwJ9DE3IW6NehKzXonTrQvwCqGRApacI4x6AhrV/6wfz8vRnSklegtU/HveYRtFYW6kUWbTmLdi2Hbj2FoRIjqhyD0U71ZXGZomnYEonEFQA2mvbdoGl6egKlKAs6ZSVo2mb1QluDO/v72iueb7sjEX15c1O8P7ngv3y+CcDmdDpnPB7PbZZlb3EcZw8Gg3Zrns7giSgCuTxI6QyIp0bPLwH8fv91hmFmvV7vQ5fLNccwzMT/6tcPAoGtx9vbxysbG7l3OzvF96urewt/Abn9iFThQ+VdAAAAAElFTkSuQmCC"
},
"/content/translations/de/developers/docs/nodes-and-clients/run-a-node/diagram.png": {
"hash": "a1ffccb5",
diff --git a/src/data/placeholders/content-developers-docs-smart-contracts-verifying-data.json b/src/data/placeholders/content-developers-docs-smart-contracts-verifying-data.json
index d12f9cbc826..29afa88c42f 100644
--- a/src/data/placeholders/content-developers-docs-smart-contracts-verifying-data.json
+++ b/src/data/placeholders/content-developers-docs-smart-contracts-verifying-data.json
@@ -1,7 +1,7 @@
{
"/content/developers/docs/smart-contracts/verifying/source-code-verification.png": {
- "hash": "42415142",
- "base64": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAGCAIAAABFHomwAAAACXBIWXMAAAsTAAALEwEAmpwYAAAA5UlEQVR4nD2PQW7CMBBFLeUW0Lv1Dix6AcQJYNuy4ApVD4ASJUqFVAXBJgpSNwkLEhNMZurYOP0htH9h+c/4/RkL1z10u+vPdc49ijjzPE+SZLCiIVJXzWysvV0UGWPQUEoVx5OUZ2utsU5duaxqXPBIwMiaELeON8+Tl/BzAwB5QRDEccxEmEXMxD9t26IlZN3Imq11xalcvX8UZYlldrt9GIZf221z+K7SLIoi8Gma9gA2QbzW7fLtdTqdLeYLrIEwZtZaI/5cScC+72dZ1gPDt4joaTwSQnieN4z+F3h1V8933S8FDQHqouW1xwAAAABJRU5ErkJggg=="
+ "hash": "07c68892",
+ "base64": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAQCAYAAADJViUEAAAACXBIWXMAABYlAAAWJQFJUiTwAAADD0lEQVR4nGWSS28bZRSGh0r8ASQkxJYVsAAkWHTBtj8BdYGEKIsuEAuEuiqVKyEkEBtEQDSARRsKSgNpRWlJ0tj1eGzH8WVsJ77F90vjZJz6lnFjj2fGfvjGoQvEbM7MfOc95/nec6R4nKJPprsV5qCSty9QC2ZJbxyR3WyS9zyhtfuVJB6ONXnaPezZnVZTvA8YHNyTKhWMaAxyeexWbfgZu3eOUdzo699b7P4OjfCSC85g9EtWv41WyliMe2Acq5LPx2o0agQCIe5nYtrFaXx1ZMpuLGXJJLkKlfD1uXigFTEGmJ19k4kOw3ZcEtjXZT9/CezfiunOB0SXx8O/F7Bkt8XOChTkJRxx/7A0ajep51KW2T3AeNxUpVYLI5GAchV7v9b5gkdJnXIIsl6Lbg4OC6fiYafEqIdez1tMBqA/VqVIhEgiOc4LAlWNHV2edasjUn+C9zuLXkHgdZdwueadqSrgF17Ug9A7UKVAgC89D7gh4jep9OA8mbUxnq/hrsskexta2Rvzzg21SOgHuP+5yfaPUIvFpVIZw6+cul2v2y4qgQHKIsiiQ3kDOo1TbK1QQr0Jf1yySPyK+FYlMSY9FjOJRLH3MsbHnOwXZ/mH/WlsRUPbM8Vdr83nPGwneKQOiS9rNOMnPDncdLBfk2XOipG9GfHxQr3AR9UyV0oFrtYqfNIuNl5yxN3a6GypwuV0dnq1WuVKOWefd/5LLhdnnCiKvJxKYW+FR4JkQiLFWBR93TkLhnl3rwjB0NDMZCGZIi4591lc5FknQTj/ajCkT71eDdl3hBLQR9m1o7c5Jz0XDdgXYrEJHo9mboV1QqGR+p/O29u8Egwdz8WK0sEbttuThQ/vce2crbm/XXkYnsw8nv3pVngoxOP/i/3+/mRtvWFtbNRnm36923cvvM870sX83Z1LsjJgfa0xdor7FT06FzvoT7HFfaaR6InYmAnpNIbw4A3nbCfDe+UyCGQzJxZP5KlPxc84UVF4Xk3y03Zk9ks0yk1h2GLwAS/+a+ZbYguXBd3PqsotkffpP6bn31860qPBAAAAAElFTkSuQmCC"
},
"/content/translations/es/developers/docs/smart-contracts/verifying/source-code-verification.png": {
"hash": "9e1984a6",
diff --git a/src/data/placeholders/content-developers-docs-transactions-data.json b/src/data/placeholders/content-developers-docs-transactions-data.json
index 51045a102bc..313a80fe56d 100644
--- a/src/data/placeholders/content-developers-docs-transactions-data.json
+++ b/src/data/placeholders/content-developers-docs-transactions-data.json
@@ -1,11 +1,11 @@
{
"/content/developers/docs/transactions/tx.png": {
- "hash": "92f79da7",
- "base64": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAJCAYAAAA7KqwyAAAACXBIWXMAAAsTAAALEwEAmpwYAAABKUlEQVR4nK1RwUrDQBBdbVEREXqyF71X8CqolX6EBCnof/SWbygm2GTtJpsUrdtULajX/oR/ofQQsBECec5GC2WP4sAww9s3M292GCMDsGr4CjNMYybP5PzNbPttzRM49n2c8gAnnoeWy78aS7NLNS5Ho99HKyCO5vZucNTtYp05DupygHl8C8gI+X1CMUZSlnYOaug0azoPIjyNxkAgkUcDIIqRSok9xjl2hETqXM+KnveZUTH6IVTZwN7f+rAPt3VOnAcRFrhy3zOfZ4UIMBMCu4wk1YcJ5rq7SpA/vwJ36keBslRlak+rOids8kJvwxHy8WMZU6VIATXYIHlWGKNNU84pXtCuzcX+i4vovUn+5S+nTTVn9F+b/3UJVJfdslAxORozeRr/Bjnz6PdpCMVRAAAAAElFTkSuQmCC"
+ "hash": "bccf54b8",
+ "base64": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAECAYAAACHtL/sAAAACXBIWXMAABYlAAAWJQFJUiTwAAAA60lEQVR4nDWOPUvDUABFIzoIsYIdHC1iraO/pqu/wT9QModHILg5BdKtk8XaGkuIWJDUr7y8xgoNzVC6CDoqWJQjT+xdLvdwhmt0Omxd9KldRlTbbXbrdVaN/wghTNu2S8vdarFxfsV+N2Svf0MtCNg24piTooBRxiJVfJz1ONCy53nrQoiK67o7vh+YmsV3HOc5KMXnJIeHJ3qGlJzO53/wZzxmMRhwqGXf903HccqWZZWbze6mZlJ+N2YzGD3zNZ1ClnFtDIc0pOQ9TSmShJcwpKJlYGV5PYpY030bc5QkvEnJRCle7x/xfgG7ppVqqIy8IAAAAABJRU5ErkJggg=="
},
"/content/developers/docs/transactions/gas-tx.png": {
- "hash": "82a55670",
- "base64": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAJCAYAAAA7KqwyAAAACXBIWXMAAAsTAAALEwEAmpwYAAABgUlEQVR4nGP4/5+B8X89A8f/ensWBnLAtGkfBKdPe7d26tQPG2bN+79n2tz/LiDxVav+MxNlwKr6K2zzZn60mjHjmd2cGZ+dF898JQkS3w900f9QBmZ0vAqKwXwGBkaG+noGpv+5DOz/7RnAXvi/aj/P52Wzxf8bM7D+TzOG4JnGrGdA9H6gof+BGkG4XpIL7u2T+58kHDj09uSJkz+OXjj7o+jdkpm6INP/98pw/i9k4Fy1ahXYO/t2f/Hesu3nsc07/hw4sOG+IdwbNy/+qnnw6P//Zy/+/79z/lcZ2CXt3oL/S4V5QfhfvRkf0ECmTUv/pE+e8f//9Jn//29f/t0BbsCFnRcUL1/+b3Xi4n+La/vv6Lxd3iML0gCT////PyM4XF7+57m3+lTJw9lLf7+YMsUfIgkKDKAzYYrvz5/P8W/xRL7/oLCpZ2BBwaAoLwzlfFsco/OpyF4EpIYB7Nd6eY778+PB+P/MNFawobAARMK3JnqwX1kVyga2GGIoEwD0NtPmKOCv0gAAAABJRU5ErkJggg=="
+ "hash": "6bd32249",
+ "base64": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAKCAYAAAC9vt6cAAAACXBIWXMAABYlAAAWJQFJUiTwAAAB9klEQVR4nJVRS2gTYRD+zcNH2kJCUYQevXkq5KIeBA++IGgvQQjmIhjwGPAq/yWXZNGghOCCUNpT2YMVG6OFNqub3U3+umRjIykmJDEmRovV2hCTPpJ+8hcLxZMODDPfDPMx3wyhlNr8fv+oz+dzBQIBB/lf03UEGesXNG1TYQxMZTjL6wAs/0SgZnE9kxk8SqXaD/QMBEXBaV6XJOmwKIr2v93r9Vq9XmLlkWNCKR0mhFgCbredD37J50+sFYxL8uysMxi8f0wQhCFRFB08Uio64vFl19QUG41GTWc0GnWSZ4nWeVnp3VHUrdsLaVzE19I0yk+Bn617f6RY9+Wk0ziTYcgr6a5pGHibSHTPkaWlgdRoAOUy8G4ZpV6jNoPvZfTXPnECWzwed4misbedaWKiVgNWioPdSgXQtI6HqGpPMvMDaNoGsmy7nsvheH119VQymTwSCoXGIpHISUGYHuIEb9StG+UKUG1iu/oRfVne8RBdH8zsb5AzUV6v1Sbwufi403w/zof4oSYn5aM8f6XB0yxuAtmXqBZ2dl/M4ypJJJrjjOGyruPKfApu/PqRBBpAr/3wwA0O7b0MsGwsPr+LOdpeX3x969oTjJBwODxy8O/dVulmp77C8K1xgWPDMOySJFm5U0otMqW2DwtzY7wXi8WGfwMn0UN5M6P2CgAAAABJRU5ErkJggg=="
},
"/content/translations/de/developers/docs/transactions/tx.png": {
"hash": "5fd99561",
diff --git a/src/data/placeholders/content-security-data.json b/src/data/placeholders/content-security-data.json
index 2c8a0df4dab..992ebf4edea 100644
--- a/src/data/placeholders/content-security-data.json
+++ b/src/data/placeholders/content-security-data.json
@@ -18,5 +18,9 @@
"/content/security/brokerScam.png": {
"hash": "82e65321",
"base64": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAHCAYAAAABIM1CAAAACXBIWXMAABYlAAAWJQFJUiTwAAABCklEQVR4nGWRv2qDUBTG7wukj1Eo2KUWChFCYlMdWqGDm2Mo1BQa3Nwc3Rwd3RwdHR3FobjVdHJ09RW+9jvkhpYOH+ffPef8OFcppWAYBkzzBtuHLYIggOd5YqMoQpqmSJIEcRwjyzLxddy2LVTXdXh8esbtnSWFoijkYZ7nGIYB0zSJxnEUMafFvPo6HmFvbFxeXWO/f5NGDinL8jyMFMzP8/xPqu8/sFpZcBwHYfgqjURrmgZ1XYuqqhLb973UfltFrPfD4XQHE67rwvf9n2HhHwoSUNqnZU0Nwyfu7Q2WS0sOxyQfsFlv1xs1mfZ5B8VDvOx2WCwuhILb+Qskodbr9ZlEU+iYC74Bngswzn88zHUAAAAASUVORK5CYII="
+ },
+ "/content/security/twitterPhishingScam.png": {
+ "hash": "0215897c",
+ "base64": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAANCAYAAACgu+4kAAAACXBIWXMAABYlAAAWJQFJUiTwAAACuklEQVR4nHWSW0iTcQDF/7rt28p92xyaftPNyHqJCKKgB4ueKoh6s3ugJVFWWlnYBDOJILpjUJFKVhZSVpr4kJayImm1LmoNQ2tam8zy3vQzNuQXZdFLPfw4nPNw4MARZtmIEm9FsSXhsNux2GYhNHqEEAgR9Vv/jd5gQCyYk0ra/HkkJCYwM8VBnJKMTpLQREcT/RNNNBqNBq1WM+W1OqKipoolvR5htliwxNswxSVijksk1jqD2HgFW7IdxZZMUpIduyMFm2MWc1KSSF28HK00/W9B6rItHK4MUNgQxFndRs75ZgrKW9j5tIf01l72uLooqHzOisqP5N3zUtrUTk75M5aXvMOxdCNizYYzDIegZ0Dly3foGwc1DOWDsLQ+QJ5nEKdXpcijUuQeZ/8zlTx3iD2PwsxelYtYt7EYz2s/tQ9c1DQ+pqbBTUurl4r2MLOdz1lf2sGx+j5OvRnj5HCY4w0j5Fb4mbv3Cakr9yI2bSqk6+M4La/e8dL7CU9rD4H+Uc54YPHZIQ42Rsi+Pcy26iFyXd/YV/uZrZWTZLXAwqwTiCUri/EFoMs/Su9A5Nec7xGoaAuRVddJTs0Iq8/1k908wP1AmB13vOyqGqLO1c6GrP2ItZuLCEUgONJHsH+QTt9XhibA3RGkrP4VF5q6OVvbTdkTL7feD3P62guuNL/H1eTmQEYGIufcSRrckF8At+9CKBRichI6ff3UtfZS/UmlIqhysVvlVPcEV/0TeNRJqnoiZGbnIxZlbGfdkXrS1laRnnsT5+XrHCoppfDSDfIbvWx/2MZR91sufPBS5uvA2d7FPf8AvjGVjMzdCGm6jDXZRuJMBUtCPFrZgilBYZrFimQyY5BNxJhkZLMRsyUGo8mI1mjCGhuLLMsISafDoNej0+qQJIlpBgM2RfmV/bns/5AkPT8AIKnnWRt5rJEAAAAASUVORK5CYII="
}
}
\ No newline at end of file
diff --git a/src/data/published.json b/src/data/published.json
index e1840840831..9b812fa5bc8 100644
--- a/src/data/published.json
+++ b/src/data/published.json
@@ -1 +1 @@
-{ "date": "2023-10-26" }
+{"date":"2024-03-13"}
diff --git a/src/data/staking-products.json b/src/data/staking-products.json
index 6351bea26b2..b6b5ae669e7 100644
--- a/src/data/staking-products.json
+++ b/src/data/staking-products.json
@@ -1061,6 +1061,44 @@
"eventAction": "Clicked",
"eventName": "Clicked Bedrock go to link"
}
+ },
+ {
+ "name": "Everstake",
+ "imageName": "Everstake",
+ "hue": 43,
+ "launchDate": "2023-09-14",
+ "url": "https://stake.everstake.one/ethereum/",
+ "audits": [
+ {
+ "name": "ChainSecurity 2023",
+ "url": "https://chainsecurity.com/security-audit/everstake-eth-b2c-staking/"
+ },
+ {
+ "name": "Ackee 2023",
+ "url": "https://ackeeblockchain.com/blog/everstake-ethereum-staking-protocol-audit-summary/"
+ }
+ ],
+ "minEth": 0.1,
+ "feePercentage": 10,
+ "tokens": [],
+ "isFoss": false,
+ "hasBugBounty": false,
+ "isTrustless": true,
+ "hasPermissionlessNodes": false,
+ "pctMajorityExecutionClient": 50,
+ "pctMajorityConsensusClient": 100,
+ "platforms": ["Browser", "Wallet"],
+ "ui": ["GUI"],
+ "socials": {
+ "discord": "https://discord.gg/NvcW47V3Xb",
+ "twitter": "https://twitter.com/everstake_pool",
+ "medium": "https://medium.com/everstake"
+ },
+ "matomo": {
+ "eventCategory": "StakingProductCard",
+ "eventAction": "Clicked",
+ "eventName": "Clicked Everstake (pool) go to link"
+ }
}
]
}
diff --git a/src/data/translationProgress.json b/src/data/translationProgress.json
index 59e3f858350..b70d7408a11 100644
--- a/src/data/translationProgress.json
+++ b/src/data/translationProgress.json
@@ -3,637 +3,637 @@
"languageId": "af",
"words": {
"approved": 0,
- "total": 340023
+ "total": 338836
}
},
{
"languageId": "am",
"words": {
- "approved": 10264,
- "total": 340023
+ "approved": 10511,
+ "total": 338836
}
},
{
"languageId": "ar",
"words": {
- "approved": 40831,
- "total": 340023
+ "approved": 40885,
+ "total": 338836
}
},
{
"languageId": "az",
"words": {
- "approved": 19233,
- "total": 340023
+ "approved": 29447,
+ "total": 338836
}
},
{
"languageId": "be",
"words": {
- "approved": 6512,
- "total": 340023
+ "approved": 6752,
+ "total": 338836
}
},
{
"languageId": "bg",
"words": {
- "approved": 15288,
- "total": 340023
+ "approved": 15430,
+ "total": 338836
}
},
{
"languageId": "bi",
"words": {
"approved": 0,
- "total": 340023
+ "total": 338836
}
},
{
"languageId": "bn",
"words": {
- "approved": 36709,
- "total": 340023
+ "approved": 36811,
+ "total": 338836
}
},
{
"languageId": "br-FR",
"words": {
"approved": 82,
- "total": 340023
+ "total": 338836
}
},
{
"languageId": "bs",
"words": {
- "approved": 6512,
- "total": 340023
+ "approved": 6762,
+ "total": 338836
}
},
{
"languageId": "ca",
"words": {
- "approved": 20283,
- "total": 340023
+ "approved": 20405,
+ "total": 338836
}
},
{
"languageId": "cs",
"words": {
- "approved": 27147,
- "total": 340023
+ "approved": 41394,
+ "total": 338836
}
},
{
"languageId": "da",
"words": {
- "approved": 2087,
- "total": 340023
+ "approved": 2348,
+ "total": 338836
}
},
{
"languageId": "de",
"words": {
- "approved": 163389,
- "total": 340023
+ "approved": 161586,
+ "total": 338836
}
},
{
"languageId": "el",
"words": {
- "approved": 104170,
- "total": 340023
+ "approved": 103498,
+ "total": 338836
}
},
{
"languageId": "eo",
"words": {
"approved": 169,
- "total": 340023
+ "total": 338836
}
},
{
"languageId": "es-EM",
"words": {
- "approved": 327805,
- "total": 340023
+ "approved": 324865,
+ "total": 338836
}
},
{
"languageId": "et",
"words": {
"approved": 75,
- "total": 340023
+ "total": 338836
}
},
{
"languageId": "eu",
"words": {
"approved": 36,
- "total": 340023
+ "total": 338836
}
},
{
"languageId": "fa",
"words": {
- "approved": 96963,
- "total": 340023
+ "approved": 96077,
+ "total": 338836
}
},
{
"languageId": "fa-AF",
"words": {
"approved": 186,
- "total": 340023
+ "total": 338836
}
},
{
"languageId": "fi",
"words": {
- "approved": 23151,
- "total": 340023
+ "approved": 23387,
+ "total": 338836
}
},
{
"languageId": "fil",
"words": {
- "approved": 55116,
- "total": 340023
+ "approved": 55093,
+ "total": 338836
}
},
{
"languageId": "fr",
"words": {
- "approved": 335812,
- "total": 340023
+ "approved": 330986,
+ "total": 338836
}
},
{
"languageId": "gi",
"words": {
"approved": 0,
- "total": 340023
+ "total": 338836
}
},
{
"languageId": "gl",
"words": {
- "approved": 1680,
- "total": 340023
+ "approved": 2206,
+ "total": 338836
}
},
{
"languageId": "gu-IN",
"words": {
- "approved": 1924,
- "total": 340023
+ "approved": 2445,
+ "total": 338836
}
},
{
"languageId": "ha",
"words": {
"approved": 4,
- "total": 340023
+ "total": 338836
}
},
{
"languageId": "he",
"words": {
- "approved": 1839,
- "total": 340023
+ "approved": 2194,
+ "total": 338836
}
},
{
"languageId": "hi",
"words": {
- "approved": 58037,
- "total": 340023
+ "approved": 58024,
+ "total": 338836
}
},
{
"languageId": "hr",
"words": {
- "approved": 14065,
- "total": 340023
+ "approved": 14192,
+ "total": 338836
}
},
{
"languageId": "hu",
"words": {
- "approved": 199117,
- "total": 340023
+ "approved": 223438,
+ "total": 338836
}
},
{
"languageId": "hy-AM",
"words": {
- "approved": 10264,
- "total": 340023
+ "approved": 10506,
+ "total": 338836
}
},
{
"languageId": "id",
"words": {
- "approved": 159747,
- "total": 340023
+ "approved": 158214,
+ "total": 338836
}
},
{
"languageId": "ig",
"words": {
- "approved": 23987,
- "total": 340023
+ "approved": 24319,
+ "total": 338836
}
},
{
"languageId": "it",
"words": {
- "approved": 335339,
- "total": 340023
+ "approved": 330121,
+ "total": 338836
}
},
{
"languageId": "ja",
"words": {
- "approved": 284322,
- "total": 340023
+ "approved": 307357,
+ "total": 338836
}
},
{
"languageId": "ka",
"words": {
- "approved": 2067,
- "total": 340023
+ "approved": 2325,
+ "total": 338836
}
},
{
"languageId": "kk",
"words": {
- "approved": 1773,
- "total": 340023
+ "approved": 2378,
+ "total": 338836
}
},
{
"languageId": "km",
"words": {
- "approved": 16244,
- "total": 340023
+ "approved": 16331,
+ "total": 338836
}
},
{
"languageId": "kn",
"words": {
- "approved": 27688,
- "total": 340023
+ "approved": 27722,
+ "total": 338836
}
},
{
"languageId": "ko",
"words": {
- "approved": 52457,
- "total": 340023
+ "approved": 53247,
+ "total": 338836
}
},
{
"languageId": "ku",
"words": {
"approved": 0,
- "total": 340023
+ "total": 338836
}
},
{
"languageId": "ky",
"words": {
"approved": 12,
- "total": 340023
+ "total": 338836
}
},
{
"languageId": "lb",
"words": {
"approved": 0,
- "total": 340023
+ "total": 338836
}
},
{
"languageId": "lt",
"words": {
- "approved": 2195,
- "total": 340023
+ "approved": 2725,
+ "total": 338836
}
},
{
"languageId": "mai",
"words": {
"approved": 0,
- "total": 340023
+ "total": 338836
}
},
{
"languageId": "mk",
"words": {
"approved": 88,
- "total": 340023
+ "total": 338836
}
},
{
"languageId": "ml-IN",
"words": {
- "approved": 11949,
- "total": 340023
+ "approved": 12302,
+ "total": 338836
}
},
{
"languageId": "mn",
"words": {
"approved": 64,
- "total": 340023
+ "total": 338836
}
},
{
"languageId": "mr",
"words": {
- "approved": 26532,
- "total": 340023
+ "approved": 26577,
+ "total": 338836
}
},
{
"languageId": "ms",
"words": {
- "approved": 37764,
- "total": 340023
+ "approved": 37818,
+ "total": 338836
}
},
{
"languageId": "my",
"words": {
"approved": 706,
- "total": 340023
+ "total": 338836
}
},
{
"languageId": "ne-NP",
"words": {
- "approved": 2067,
- "total": 340023
+ "approved": 2302,
+ "total": 338836
}
},
{
"languageId": "nl",
"words": {
- "approved": 37990,
- "total": 340023
+ "approved": 38042,
+ "total": 338836
}
},
{
"languageId": "no",
"words": {
- "approved": 2335,
- "total": 340023
+ "approved": 2724,
+ "total": 338836
}
},
{
"languageId": "or",
"words": {
"approved": 0,
- "total": 340023
+ "total": 338836
}
},
{
"languageId": "pa-IN",
"words": {
"approved": 6,
- "total": 340023
+ "total": 338836
}
},
{
"languageId": "pcm",
"words": {
- "approved": 17795,
- "total": 340023
+ "approved": 17816,
+ "total": 338836
}
},
{
"languageId": "pl",
"words": {
- "approved": 95690,
- "total": 340023
+ "approved": 93173,
+ "total": 338836
}
},
{
"languageId": "pt-BR",
"words": {
- "approved": 318546,
- "total": 340023
+ "approved": 313737,
+ "total": 338836
}
},
{
"languageId": "pt-PT",
"words": {
- "approved": 26642,
- "total": 340023
+ "approved": 26688,
+ "total": 338836
}
},
{
"languageId": "ro",
"words": {
- "approved": 78449,
- "total": 340023
+ "approved": 78035,
+ "total": 338836
}
},
{
"languageId": "ru",
"words": {
- "approved": 97033,
- "total": 340023
+ "approved": 93847,
+ "total": 338836
}
},
{
"languageId": "sat",
"words": {
"approved": 57,
- "total": 340023
+ "total": 338836
}
},
{
"languageId": "si-LK",
"words": {
"approved": 706,
- "total": 340023
+ "total": 338836
}
},
{
"languageId": "sk",
"words": {
- "approved": 6995,
- "total": 340023
+ "approved": 7257,
+ "total": 338836
}
},
{
"languageId": "sl",
"words": {
- "approved": 27027,
- "total": 340023
+ "approved": 27177,
+ "total": 338836
}
},
{
"languageId": "sn",
"words": {
"approved": 465,
- "total": 340023
+ "total": 338836
}
},
{
"languageId": "so",
"words": {
"approved": 493,
- "total": 340023
+ "total": 338836
}
},
{
"languageId": "sq",
"words": {
"approved": 693,
- "total": 340023
+ "total": 338836
}
},
{
"languageId": "sr-CS",
"words": {
- "approved": 26783,
- "total": 340023
+ "approved": 26829,
+ "total": 338836
}
},
{
"languageId": "sv-SE",
"words": {
- "approved": 10613,
- "total": 340023
+ "approved": 10889,
+ "total": 338836
}
},
{
"languageId": "sw",
"words": {
- "approved": 17140,
- "total": 340023
+ "approved": 17244,
+ "total": 338836
}
},
{
"languageId": "ta",
"words": {
- "approved": 2071,
- "total": 340023
+ "approved": 2329,
+ "total": 338836
}
},
{
"languageId": "te",
"words": {
- "approved": 694,
- "total": 340023
+ "approved": 7919,
+ "total": 338836
}
},
{
"languageId": "tg",
"words": {
"approved": 0,
- "total": 340023
+ "total": 338836
}
},
{
"languageId": "th",
"words": {
- "approved": 6569,
- "total": 340023
+ "approved": 6838,
+ "total": 338836
}
},
{
"languageId": "ti",
"words": {
"approved": 0,
- "total": 340023
+ "total": 338836
}
},
{
"languageId": "tk",
"words": {
- "approved": 6514,
- "total": 340023
+ "approved": 6757,
+ "total": 338836
}
},
{
"languageId": "tl",
"words": {
"approved": 86,
- "total": 340023
+ "total": 338836
}
},
{
"languageId": "tr",
"words": {
- "approved": 320889,
- "total": 340023
+ "approved": 315957,
+ "total": 338836
}
},
{
"languageId": "uk",
"words": {
- "approved": 64983,
- "total": 340023
+ "approved": 64966,
+ "total": 338836
}
},
{
"languageId": "ur-IN",
"words": {
- "approved": 1838,
- "total": 340023
+ "approved": 2326,
+ "total": 338836
}
},
{
"languageId": "ur-PK",
"words": {
"approved": 725,
- "total": 340023
+ "total": 338836
}
},
{
"languageId": "uz",
"words": {
- "approved": 2496,
- "total": 340023
+ "approved": 2922,
+ "total": 338836
}
},
{
"languageId": "vi",
"words": {
- "approved": 16708,
- "total": 340023
+ "approved": 19250,
+ "total": 338836
}
},
{
"languageId": "yo",
"words": {
"approved": 687,
- "total": 340023
+ "total": 338836
}
},
{
"languageId": "zh-CN",
"words": {
- "approved": 306060,
- "total": 340023
+ "approved": 306062,
+ "total": 338836
}
},
{
"languageId": "zh-TW",
"words": {
- "approved": 113683,
- "total": 340023
+ "approved": 122546,
+ "total": 338836
}
},
{
"languageId": "zu",
"words": {
"approved": 109,
- "total": 340023
+ "total": 338836
}
}
]
\ No newline at end of file
diff --git a/src/data/wallets/wallet-data.ts b/src/data/wallets/wallet-data.ts
index 1cb1e141a44..d55355c5671 100644
--- a/src/data/wallets/wallet-data.ts
+++ b/src/data/wallets/wallet-data.ts
@@ -1,27 +1,21 @@
-import { StaticImageData } from "next/image"
+import { WalletData } from "@/lib/types"
import OneInchWalletImage from "@/public/wallets/1inch.png"
-import AirgapImage from "@/public/wallets/airgap.png"
-import AktionariatImage from "@/public/wallets/aktionariat.png"
import AlphaWalletImage from "@/public/wallets/alpha.png"
import AmbireImage from "@/public/wallets/ambire.png"
import ApexImage from "@/public/wallets/apex.png"
import ArgentImage from "@/public/wallets/argent.png"
import AuroxImage from "@/public/wallets/aurox.png"
-import BitcoindotcomImage from "@/public/wallets/bitcoindotcom.png"
import BitkeepImage from "@/public/wallets/bitkeep.png"
import BlockWalletImage from "@/public/wallets/blockwallet.png"
-import BraveImage from "@/public/wallets/brave.png"
import BridgeWalletImage from "@/public/wallets/bridge.png"
import Coin98Image from "@/public/wallets/coin98.png"
import CoinbaseImage from "@/public/wallets/coinbase.png"
-import CoinwalletImage from "@/public/wallets/coinwallet.png"
import EnkryptImage from "@/public/wallets/enkrypt.png"
import ExodusImage from "@/public/wallets/exodus.png"
import FoxWalletImage from "@/public/wallets/foxwallet.png"
import FrameImage from "@/public/wallets/frame.png"
import GridPlusImage from "@/public/wallets/gridplus.png"
-import GuardaImage from "@/public/wallets/guarda.png"
import imTokenImage from "@/public/wallets/imtoken.png"
import InfinityWalletImage from "@/public/wallets/infinity_wallet.png"
import KeystoneImage from "@/public/wallets/keystone.png"
@@ -29,82 +23,24 @@ import LedgerImage from "@/public/wallets/ledger.png"
import LoopringImage from "@/public/wallets/loopring.png"
import MetaMaskImage from "@/public/wallets/metamask.png"
import MewImage from "@/public/wallets/mew.png"
-import MyCryptoImage from "@/public/wallets/mycrypto.png"
import MyEtherWalletImage from "@/public/wallets/myetherwallet.png"
-import NumioImage from "@/public/wallets/numio.png"
-import OKXImage from "@/public/wallets/okx.jpeg"
import OneKeyImage from "@/public/wallets/onekey.png"
-import OperaImage from "@/public/wallets/opera.png"
import PhantomImage from "@/public/wallets/phantom.png"
import PillarImage from "@/public/wallets/pillar.png"
-import PortisImage from "@/public/wallets/portis.png"
import RabbyWalletImage from "@/public/wallets/rabbywallet.png"
import RainbowImage from "@/public/wallets/rainbow.png"
import SafeImage from "@/public/wallets/safe.png"
-import SequenceImage from "@/public/wallets/sequence.png"
-import ShapeShiftImage from "@/public/wallets/shapeshift.png"
-import StatusImage from "@/public/wallets/status.png"
import TahoImage from "@/public/wallets/taho.png"
import TokenPocketImage from "@/public/wallets/tokenpocket.png"
import TorusImage from "@/public/wallets/torus.png"
import TrezorImage from "@/public/wallets/trezor.png"
import UnstoppableWalletImage from "@/public/wallets/unstoppable.png"
-import Web3AuthImage from "@/public/wallets/web3auth.png"
import XDEFIImage from "@/public/wallets/xdefi.png"
-import ZengoImage from "@/public/wallets/zengo.png"
import ZerionImage from "@/public/wallets/zerion.png"
-export interface WalletData {
- last_updated: string
- name: string
- image: StaticImageData
- brand_color: string
- url: string
- wallet_live_date: string
- active_development_team: boolean
- languages_supported: string[]
- twitter: string
- discord: string
- reddit: string
- telegram: string
- ios: boolean
- android: boolean
- linux: boolean
- windows: boolean
- macOS: boolean
- firefox: boolean
- chromium: boolean
- hardware: boolean
- open_source: boolean
- repo_url: string
- non_custodial: boolean
- security_audit: string[]
- scam_protection: boolean
- hardware_support: boolean
- walletconnect: boolean
- rpc_importing: boolean
- nft_support: boolean
- connect_to_dapps: boolean
- staking: boolean
- swaps: boolean
- multichain?: boolean
- layer_2: boolean
- gas_fee_customization: boolean
- ens_support: boolean
- erc_20_support: boolean
- eip_1559_support: boolean
- buy_crypto: boolean
- withdraw_crypto: boolean
- multisig: boolean
- social_recovery: boolean
- onboard_documentation: string
- documentation: string
- mpc?: boolean
-}
-
-const walletData: WalletData[] = [
+export const walletsData: WalletData[] = [
{
- last_updated: "June 22, 2022",
+ last_updated: "2022-06-22",
name: "Keystone",
image: KeystoneImage,
brand_color: "#ffffff",
@@ -133,7 +69,6 @@ const walletData: WalletData[] = [
],
scam_protection: false,
hardware_support: true,
- walletconnect: false,
rpc_importing: false,
nft_support: true,
connect_to_dapps: true,
@@ -143,7 +78,6 @@ const walletData: WalletData[] = [
gas_fee_customization: false,
ens_support: true,
erc_20_support: false,
- eip_1559_support: true,
buy_crypto: false,
withdraw_crypto: false,
multisig: false,
@@ -152,52 +86,7 @@ const walletData: WalletData[] = [
documentation: "",
},
{
- last_updated: "June 22, 2022",
- name: "Numio",
- image: NumioImage,
- brand_color: "#3F3F3F",
- url: "https://www.numio.one/",
- wallet_live_date: "December 2020",
- active_development_team: true,
- languages_supported: ["en"],
- twitter: "https://twitter.com/GetNumio/",
- discord: "",
- reddit: "",
- telegram: "",
- ios: true,
- android: true,
- linux: false,
- windows: false,
- macOS: false,
- firefox: false,
- chromium: false,
- hardware: false,
- open_source: false,
- repo_url: "",
- non_custodial: true,
- security_audit: [],
- scam_protection: false,
- hardware_support: false,
- walletconnect: true,
- rpc_importing: false,
- nft_support: true,
- connect_to_dapps: true,
- staking: false,
- swaps: true,
- layer_2: true,
- gas_fee_customization: false,
- ens_support: false,
- erc_20_support: false,
- eip_1559_support: false,
- buy_crypto: true,
- withdraw_crypto: false,
- multisig: false,
- social_recovery: false,
- onboard_documentation: "https://docs.numio.one/",
- documentation: "",
- },
- {
- last_updated: "June 22, 2022",
+ last_updated: "2022-06-22",
name: "Coin98",
image: Coin98Image,
brand_color: "#ffffff",
@@ -208,7 +97,7 @@ const walletData: WalletData[] = [
"vi",
"en",
"zh",
- "jp",
+ "ja",
"ko",
"tr",
"th",
@@ -236,7 +125,6 @@ const walletData: WalletData[] = [
security_audit: ["https://coin98.com/audit"],
scam_protection: true,
hardware_support: true,
- walletconnect: true,
rpc_importing: false,
nft_support: true,
connect_to_dapps: true,
@@ -246,7 +134,6 @@ const walletData: WalletData[] = [
gas_fee_customization: true,
ens_support: true,
erc_20_support: true,
- eip_1559_support: true,
buy_crypto: true,
withdraw_crypto: false,
multisig: false,
@@ -255,7 +142,7 @@ const walletData: WalletData[] = [
documentation: "",
},
{
- last_updated: "June 22, 2022",
+ last_updated: "2022-06-22",
name: "Loopring wallet",
image: LoopringImage,
brand_color: "#ffffff",
@@ -285,7 +172,6 @@ const walletData: WalletData[] = [
],
scam_protection: false,
hardware_support: true,
- walletconnect: true,
rpc_importing: false,
nft_support: true,
connect_to_dapps: false,
@@ -295,7 +181,6 @@ const walletData: WalletData[] = [
gas_fee_customization: true,
ens_support: true,
erc_20_support: true,
- eip_1559_support: true,
buy_crypto: true,
withdraw_crypto: false,
multisig: true,
@@ -303,53 +188,6 @@ const walletData: WalletData[] = [
onboard_documentation: "",
documentation: "",
},
- {
- last_updated: "June 22, 2022",
- name: "AirGap wallet",
- image: AirgapImage,
- brand_color: "#50249F",
- url: "https://airgap.it/",
- wallet_live_date: "July 2017",
- active_development_team: true,
- languages_supported: ["en", "de", "zh"],
- twitter: "https://twitter.com/AirGap_it/",
- discord: "https://discord.gg/gnWqCQsteh",
- reddit: "",
- telegram: "https://t.me/AirGap",
- ios: true,
- android: true,
- linux: true,
- windows: true,
- macOS: true,
- firefox: false,
- chromium: false,
- hardware: false,
- open_source: true,
- repo_url: "https://github.com/airgap-it/airgap-wallet",
- non_custodial: true,
- security_audit: [
- "https://github.com/airgap-it/airgap-coin-lib/tree/master/docs/audits",
- ],
- scam_protection: false,
- hardware_support: true,
- walletconnect: true,
- rpc_importing: false,
- nft_support: false,
- connect_to_dapps: true,
- staking: true,
- swaps: true,
- layer_2: false,
- gas_fee_customization: true,
- ens_support: false,
- erc_20_support: false,
- eip_1559_support: false,
- buy_crypto: false,
- withdraw_crypto: false,
- multisig: false,
- social_recovery: true,
- onboard_documentation: "https://support.airgap.it/",
- documentation: "",
- },
{
last_updated: "June 22, 2022",
name: "Argent",
@@ -380,7 +218,6 @@ const walletData: WalletData[] = [
],
scam_protection: true,
hardware_support: true,
- walletconnect: true,
rpc_importing: false,
nft_support: true,
connect_to_dapps: true,
@@ -390,7 +227,6 @@ const walletData: WalletData[] = [
gas_fee_customization: true,
ens_support: true,
erc_20_support: true,
- eip_1559_support: true,
buy_crypto: true,
withdraw_crypto: false,
multisig: true,
@@ -399,59 +235,26 @@ const walletData: WalletData[] = [
documentation: "",
},
{
- last_updated: "June 22, 2022",
- name: "Portis",
- image: PortisImage,
- brand_color: "#ffffff",
- url: "https://www.portis.io",
- wallet_live_date: "Nov, 2018",
- active_development_team: true,
- languages_supported: ["en"],
- twitter: "https://twitter.com/portis_io",
- discord: "",
- reddit: "",
- telegram: "https://t.me/PortisHQ",
- ios: false,
- android: false,
- linux: false,
- windows: false,
- macOS: false,
- firefox: false,
- chromium: false,
- hardware: false,
- open_source: false,
- repo_url: "",
- non_custodial: true,
- security_audit: [],
- scam_protection: false,
- hardware_support: false,
- walletconnect: false,
- rpc_importing: true,
- nft_support: true,
- connect_to_dapps: true,
- staking: false,
- swaps: false,
- layer_2: true,
- gas_fee_customization: false,
- ens_support: false,
- erc_20_support: true,
- eip_1559_support: false,
- buy_crypto: true,
- withdraw_crypto: false,
- multisig: false,
- social_recovery: false,
- onboard_documentation: "https://docs.portis.io/",
- documentation: "",
- },
- {
- last_updated: "November 15, 2022",
+ last_updated: "2022-11-15",
name: "Coinbase Wallet",
image: CoinbaseImage,
brand_color: "#0052FF",
url: "https://www.coinbase.com/wallet",
wallet_live_date: "2018",
active_development_team: true,
- languages_supported: ["no response.."],
+ languages_supported: [
+ "en",
+ "de",
+ "es",
+ "fr",
+ "ja",
+ "it",
+ "pt-br",
+ "ru",
+ "zh",
+ "tr",
+ "th",
+ ],
twitter: "https://twitter.com/CoinbaseWallet",
discord: "",
reddit: "",
@@ -470,7 +273,6 @@ const walletData: WalletData[] = [
security_audit: [],
scam_protection: false,
hardware_support: true,
- walletconnect: false,
rpc_importing: true,
nft_support: true,
connect_to_dapps: true,
@@ -480,17 +282,17 @@ const walletData: WalletData[] = [
gas_fee_customization: true,
ens_support: true,
erc_20_support: true,
- eip_1559_support: true,
buy_crypto: true,
withdraw_crypto: false,
multisig: false,
social_recovery: false,
onboard_documentation: "https://www.coinbase.com/wallet/tutorials",
documentation: "",
+ new_to_crypto: true,
// note: "Community contribution, let's follow up with Coinbase",
},
{
- last_updated: "June 22, 2022",
+ last_updated: "2022-06-22",
name: "Frame",
image: FrameImage,
brand_color: "#222021",
@@ -516,7 +318,6 @@ const walletData: WalletData[] = [
security_audit: ["asked if these are available"],
scam_protection: false,
hardware_support: true,
- walletconnect: false,
rpc_importing: true,
nft_support: true,
connect_to_dapps: true,
@@ -526,7 +327,6 @@ const walletData: WalletData[] = [
gas_fee_customization: true,
ens_support: true,
erc_20_support: true,
- eip_1559_support: true,
buy_crypto: false,
withdraw_crypto: false,
multisig: false,
@@ -536,61 +336,64 @@ const walletData: WalletData[] = [
documentation: "",
},
{
- last_updated: "June 22, 2022",
- name: "Brave Wallet",
- image: BraveImage,
- brand_color: "#fe1f02",
- url: "https://brave.com/wallet",
- wallet_live_date: "November 2021",
- active_development_team: true,
- languages_supported: ["en"],
- twitter: "https://twitter.com/brave",
- discord: "",
- reddit: "https://www.reddit.com/r/brave_browser",
- telegram: "",
- ios: true,
- android: true,
- linux: false,
- windows: false,
- macOS: false,
- firefox: false,
- chromium: true,
- hardware: false,
- open_source: true,
- repo_url: "https://github.com/brave/brave-core/ ",
- non_custodial: true,
- security_audit: ["asked if these are available"],
- scam_protection: true,
- hardware_support: true,
- walletconnect: false,
- rpc_importing: true,
- nft_support: true,
- connect_to_dapps: true,
- staking: false,
- swaps: true,
- layer_2: true,
- gas_fee_customization: true,
- ens_support: true,
- erc_20_support: true,
- eip_1559_support: true,
- buy_crypto: true,
- withdraw_crypto: false,
- multisig: false,
- social_recovery: false,
- onboard_documentation:
- "https://wallet-docs.brave.com/, https://support.brave.com/hc/en-us/articles/4415497656461-Brave-Wallet-FAQ",
- documentation:
- "https://wallet-docs.brave.com/, https://support.brave.com/hc/en-us/articles/4415497656461-Brave-Wallet-FAQ",
- },
- {
- last_updated: "June 22, 2022",
+ last_updated: "2022-06-22",
name: "MetaMask",
image: MetaMaskImage,
brand_color: "#ffffff",
url: "https://metamask.io",
wallet_live_date: "2016",
active_development_team: true,
- languages_supported: ["TODO: 30 languages!"],
+ languages_supported: [
+ "en",
+ "am",
+ "ar",
+ "bg",
+ "bn",
+ "ca",
+ "cs",
+ "da",
+ "de",
+ "el",
+ "es",
+ "et",
+ "fa",
+ "fi",
+ "fil",
+ "fr",
+ "gu",
+ "he",
+ "hi",
+ "hr",
+ "ht",
+ "hu",
+ "id",
+ "it",
+ "ja",
+ "kn",
+ "ko",
+ "lt",
+ "lv",
+ "ml",
+ "mr",
+ "pt",
+ "pt-br",
+ "ro",
+ "ru",
+ "sk",
+ "sl",
+ "sr",
+ "sv",
+ "sw",
+ "ta",
+ "te",
+ "th",
+ "tl",
+ "tr",
+ "uk",
+ "vi",
+ "zh",
+ "zh-tw",
+ ],
twitter: "https://twitter.com/metamask",
discord: "",
reddit: "",
@@ -609,7 +412,6 @@ const walletData: WalletData[] = [
security_audit: [],
scam_protection: false,
hardware_support: true,
- walletconnect: true,
rpc_importing: true,
nft_support: true,
connect_to_dapps: true,
@@ -619,13 +421,13 @@ const walletData: WalletData[] = [
gas_fee_customization: true,
ens_support: true,
erc_20_support: true,
- eip_1559_support: true,
buy_crypto: true,
withdraw_crypto: false,
multisig: false,
social_recovery: false,
onboard_documentation: "https://support.metamask.io",
documentation: "",
+ new_to_crypto: true,
},
{
last_updated: "2023-01-25",
@@ -654,7 +456,6 @@ const walletData: WalletData[] = [
security_audit: ["https://gnosis-safe.io/security/"],
scam_protection: false,
hardware_support: true,
- walletconnect: true,
rpc_importing: false,
nft_support: true,
connect_to_dapps: true,
@@ -664,7 +465,6 @@ const walletData: WalletData[] = [
gas_fee_customization: true,
ens_support: true,
erc_20_support: true,
- eip_1559_support: true,
buy_crypto: true,
withdraw_crypto: false,
multisig: true,
@@ -672,77 +472,6 @@ const walletData: WalletData[] = [
onboard_documentation: "https://docs.safe.global/",
documentation: "https://docs.safe.global/",
},
- {
- last_updated: "June 22, 2022",
- name: "Coin wallet",
- image: CoinwalletImage,
- brand_color: "#ffffff",
- url: "https://coin.space/",
- wallet_live_date: "July 2015",
- active_development_team: true,
- languages_supported: [
- "id",
- "ba",
- "cs",
- "de",
- "en",
- "es",
- "fr",
- "cr",
- "it",
- "hu",
- "nl",
- "no",
- "pl",
- "pt-br",
- "rs",
- "vi",
- "tr",
- "ph",
- "ru",
- "uk",
- "th",
- "kh",
- "ko",
- "jp",
- "zh",
- ],
- twitter: "https://twitter.com/CoinAppWallet",
- discord: "",
- reddit: "",
- telegram: "",
- ios: true,
- android: true,
- linux: true,
- windows: true,
- macOS: true,
- firefox: false,
- chromium: false,
- hardware: false,
- open_source: true,
- repo_url: "https://github.com/CoinSpace/CoinSpace",
- non_custodial: true,
- security_audit: [""],
- scam_protection: false,
- hardware_support: false,
- walletconnect: false,
- rpc_importing: false,
- nft_support: false,
- connect_to_dapps: false,
- staking: false,
- swaps: false,
- layer_2: false,
- gas_fee_customization: true,
- ens_support: true,
- erc_20_support: true,
- eip_1559_support: false,
- buy_crypto: true,
- withdraw_crypto: true,
- multisig: false,
- social_recovery: false,
- onboard_documentation: "https://support.coin.space/hc/en-us",
- documentation: "",
- },
{
last_updated: "August 23, 2023",
name: "Ambire",
@@ -770,7 +499,6 @@ const walletData: WalletData[] = [
security_audit: ["https://github.com/ambireTech/wallet#audits"],
scam_protection: true,
hardware_support: true,
- walletconnect: true,
rpc_importing: false,
nft_support: true,
connect_to_dapps: true,
@@ -780,7 +508,6 @@ const walletData: WalletData[] = [
gas_fee_customization: true,
ens_support: false,
erc_20_support: true,
- eip_1559_support: true,
buy_crypto: true,
withdraw_crypto: false,
multisig: true,
@@ -790,57 +517,12 @@ const walletData: WalletData[] = [
documentation: "",
},
{
- last_updated: "June 23, 2022",
- name: "ZenGo",
- image: ZengoImage,
- brand_color: "#35C4BA",
- url: "https://zengo.com/",
- wallet_live_date: "Jan, 2020",
- active_development_team: true,
- languages_supported: ["en", "fr"],
- twitter: "https://twitter.com/ZenGo",
- discord: "https://twitter.com/zengo",
- reddit: "",
- telegram: "",
- ios: true,
- android: true,
- linux: false,
- windows: false,
- macOS: false,
- firefox: false,
- chromium: false,
- hardware: false,
- open_source: false,
- repo_url: "https://github.com/ZenGo-X",
- non_custodial: false,
- security_audit: ["https://zengo.com/security/"],
- scam_protection: true,
- hardware_support: true,
- walletconnect: true,
- rpc_importing: false,
- nft_support: true,
- connect_to_dapps: true,
- staking: true,
- swaps: true,
- layer_2: false,
- gas_fee_customization: false,
- ens_support: false,
- erc_20_support: false,
- eip_1559_support: false,
- buy_crypto: true,
- withdraw_crypto: true,
- multisig: false,
- social_recovery: false,
- onboard_documentation: "https://help.zengo.com/en/",
- documentation: "",
- },
- {
- last_updated: "June 24, 2022",
- name: "imToken",
- image: imTokenImage,
- brand_color: "#098de6",
- url: "https://token.im/",
- wallet_live_date: "2016",
+ last_updated: "June 24, 2022",
+ name: "imToken",
+ image: imTokenImage,
+ brand_color: "#098de6",
+ url: "https://token.im/",
+ wallet_live_date: "2016",
active_development_team: true,
languages_supported: [
"en",
@@ -848,7 +530,7 @@ const walletData: WalletData[] = [
"zh-tw",
"ru",
"de",
- "jp",
+ "ja",
"ko",
"fr",
"es",
@@ -872,7 +554,6 @@ const walletData: WalletData[] = [
security_audit: ["https://cure53.de/pentest-report_imtoken.pdf"],
scam_protection: true,
hardware_support: true,
- walletconnect: true,
rpc_importing: true,
nft_support: true,
connect_to_dapps: true,
@@ -882,7 +563,6 @@ const walletData: WalletData[] = [
gas_fee_customization: true,
ens_support: true,
erc_20_support: true,
- eip_1559_support: true,
buy_crypto: true,
withdraw_crypto: false,
multisig: false,
@@ -906,7 +586,7 @@ const walletData: WalletData[] = [
"de",
"hi",
"id",
- "jp",
+ "ja",
"ko",
"pt",
"es",
@@ -931,7 +611,6 @@ const walletData: WalletData[] = [
security_audit: [""],
scam_protection: true,
hardware_support: false,
- walletconnect: true,
rpc_importing: false,
nft_support: true,
connect_to_dapps: true,
@@ -941,7 +620,6 @@ const walletData: WalletData[] = [
gas_fee_customization: true,
ens_support: true,
erc_20_support: true,
- eip_1559_support: true,
buy_crypto: true,
withdraw_crypto: false,
multisig: false,
@@ -950,7 +628,7 @@ const walletData: WalletData[] = [
documentation: "",
},
{
- last_updated: "June 24, 2022",
+ last_updated: "2022-06-24",
name: "FoxWallet",
image: FoxWalletImage,
brand_color: "#ffffff",
@@ -976,7 +654,6 @@ const walletData: WalletData[] = [
security_audit: ["https://www.certik.com/projects/fox-wallet"],
scam_protection: false,
hardware_support: false,
- walletconnect: false,
rpc_importing: true,
nft_support: true,
connect_to_dapps: true,
@@ -986,7 +663,6 @@ const walletData: WalletData[] = [
gas_fee_customization: true,
ens_support: false,
erc_20_support: true,
- eip_1559_support: true,
buy_crypto: false,
withdraw_crypto: false,
multisig: false,
@@ -995,80 +671,14 @@ const walletData: WalletData[] = [
documentation: "https://hc.foxwallet.com/docs/faq",
},
{
- last_updated: "June 24, 2022",
- name: "MyCrypto",
- image: MyCryptoImage,
- brand_color: "#FFFFFF",
- url: "https://mycrypto.com",
- wallet_live_date: "Feb, 2018",
- active_development_team: true,
- languages_supported: [
- "en",
- "de",
- "el",
- "es",
- "fi",
- "fr",
- "hu",
- "id",
- "it",
- "jp",
- "nl",
- "no",
- "pl",
- "pt",
- "ru",
- "ko",
- "tr",
- "vi",
- "zh",
- "zh-tw",
- ],
- twitter: "https://twitter.com/mycrypto",
- discord: "",
- reddit: "",
- telegram: "",
- ios: false,
- android: false,
- linux: true,
- windows: true,
- macOS: true,
- firefox: false,
- chromium: false,
- hardware: false,
- open_source: true,
- repo_url: "https://github.com/MyCryptoHQ",
- non_custodial: true,
- security_audit: [""],
- scam_protection: false,
- hardware_support: true,
- walletconnect: true,
- rpc_importing: true,
- nft_support: false,
- connect_to_dapps: true,
- staking: false,
- swaps: true,
- layer_2: true,
- gas_fee_customization: true,
- ens_support: true,
- erc_20_support: true,
- eip_1559_support: true,
- buy_crypto: true,
- withdraw_crypto: false,
- multisig: false,
- social_recovery: false,
- onboard_documentation: "https://blog.mycrypto.com",
- documentation: "",
- },
- {
- last_updated: "June 24, 2022",
+ last_updated: "2022-06-24",
name: "Pillar",
image: PillarImage,
brand_color: "#7501D9",
url: "https://www.pillar.fi/",
wallet_live_date: "December 18 2018 V1, June 2020 V2",
active_development_team: true,
- languages_supported: ["en", "et", "ba", "zh"],
+ languages_supported: ["en", "et", "bs", "zh"],
twitter: "https://twitter.com/PillarWallet",
discord: "https://chat.pillar.fi/",
reddit: "",
@@ -1089,7 +699,6 @@ const walletData: WalletData[] = [
],
scam_protection: false,
hardware_support: false,
- walletconnect: true,
rpc_importing: false,
nft_support: true,
connect_to_dapps: true,
@@ -1100,7 +709,6 @@ const walletData: WalletData[] = [
gas_fee_customization: false,
ens_support: true,
erc_20_support: false,
- eip_1559_support: true,
buy_crypto: true,
withdraw_crypto: false,
multisig: false,
@@ -1109,14 +717,14 @@ const walletData: WalletData[] = [
documentation: "https://help.pillar.fi/en/",
},
{
- last_updated: "June 24, 2022",
+ last_updated: "2022-06-24",
name: "MEW wallet",
image: MewImage,
brand_color: "#05C0A5",
url: "https://www.mewwallet.com",
wallet_live_date: "13 March 2020",
active_development_team: true,
- languages_supported: ["en", "ru"],
+ languages_supported: ["en", "ru", "zh"],
twitter: "https://twitter.com/myetherwallet",
discord: "",
reddit: "https://www.reddit.com/r/MyEtherWallet/",
@@ -1135,7 +743,6 @@ const walletData: WalletData[] = [
security_audit: [""],
scam_protection: true,
hardware_support: false,
- walletconnect: true,
rpc_importing: false,
nft_support: true,
connect_to_dapps: true,
@@ -1146,16 +753,16 @@ const walletData: WalletData[] = [
gas_fee_customization: true,
ens_support: false,
erc_20_support: true,
- eip_1559_support: true,
buy_crypto: true,
withdraw_crypto: false,
multisig: false,
social_recovery: false,
onboard_documentation: "https://www.mewtopia.com/",
documentation: "https://help.myetherwallet.com/en/",
+ new_to_crypto: true,
},
{
- last_updated: "June 24, 2022",
+ last_updated: "2022-06-24",
name: "Unstoppable wallet",
image: UnstoppableWalletImage,
brand_color: "#ffbe43",
@@ -1181,7 +788,6 @@ const walletData: WalletData[] = [
security_audit: ["https://www.certik.com/projects/unstoppable.money"],
scam_protection: true,
hardware_support: false,
- walletconnect: true,
rpc_importing: true,
nft_support: true,
connect_to_dapps: true,
@@ -1192,7 +798,6 @@ const walletData: WalletData[] = [
gas_fee_customization: true,
ens_support: true,
erc_20_support: true,
- eip_1559_support: true,
buy_crypto: false,
withdraw_crypto: false,
multisig: false,
@@ -1201,7 +806,7 @@ const walletData: WalletData[] = [
documentation: "https://unstoppable.money/faq",
},
{
- last_updated: "June 24, 2022",
+ last_updated: "2022-06-24",
name: "MyEtherWallet",
image: MyEtherWalletImage,
brand_color: "#ffffff",
@@ -1227,7 +832,6 @@ const walletData: WalletData[] = [
security_audit: [""],
scam_protection: false,
hardware_support: true,
- walletconnect: true,
rpc_importing: false,
nft_support: true,
connect_to_dapps: true,
@@ -1238,7 +842,6 @@ const walletData: WalletData[] = [
gas_fee_customization: true,
ens_support: true,
erc_20_support: true,
- eip_1559_support: true,
buy_crypto: true,
withdraw_crypto: true,
multisig: false,
@@ -1247,14 +850,14 @@ const walletData: WalletData[] = [
documentation: "https://help.myetherwallet.com/en/",
},
{
- last_updated: "June 24, 2022",
+ last_updated: "2022-06-24",
name: "AlphaWallet",
image: AlphaWalletImage,
brand_color: "#ffffff",
url: "https://alphawallet.com/",
wallet_live_date: "2018",
active_development_team: true,
- languages_supported: ["en", "zh", "es", "fr", "vi", "mm"],
+ languages_supported: ["en", "zh", "es", "fr", "vi"],
twitter: "https://twitter.com/alphawallet",
discord: "https://discord.gg/qYkK6VrWEd",
reddit: "",
@@ -1273,7 +876,6 @@ const walletData: WalletData[] = [
security_audit: [""],
scam_protection: false,
hardware_support: false,
- walletconnect: true,
rpc_importing: false,
nft_support: true,
connect_to_dapps: true,
@@ -1284,7 +886,6 @@ const walletData: WalletData[] = [
gas_fee_customization: true,
ens_support: true,
erc_20_support: true,
- eip_1559_support: true,
buy_crypto: true,
withdraw_crypto: false,
multisig: false,
@@ -1292,145 +893,6 @@ const walletData: WalletData[] = [
onboard_documentation: "https://alphawallet.zendesk.com/hc/en-us",
documentation: "",
},
- {
- last_updated: "June 24, 2022",
- name: "Opera wallet",
- image: OperaImage,
- brand_color: "#ffffff",
- url: "https://crypto.opera.com/",
- wallet_live_date: "January 19 2022",
- active_development_team: true,
- languages_supported: ["en"],
- twitter: "https://twitter.com/Opera_Crypto",
- discord: "https://discord.gg/operacrypto",
- reddit: "",
- telegram: "",
- ios: true,
- android: true,
- linux: true,
- windows: true,
- macOS: true,
- firefox: false,
- chromium: false,
- hardware: false,
- open_source: false,
- repo_url: "",
- non_custodial: true,
- security_audit: [""],
- scam_protection: true,
- hardware_support: false,
- walletconnect: false,
- rpc_importing: false,
- nft_support: true,
- connect_to_dapps: true,
- staking: false,
- swaps: true,
- multichain: true,
- layer_2: false,
- gas_fee_customization: false,
- ens_support: true,
- erc_20_support: true,
- eip_1559_support: false,
- buy_crypto: true,
- withdraw_crypto: true,
- multisig: false,
- social_recovery: false,
- onboard_documentation: "",
- documentation: "",
- },
- {
- last_updated: "June 24, 2022",
- name: "Guarda",
- image: GuardaImage,
- brand_color: "#ffffff",
- url: "https://guarda.com/",
- wallet_live_date: "2017",
- active_development_team: true,
- languages_supported: ["en"],
- twitter: "https://twitter.com/GuardaWallet",
- discord: "",
- reddit: "https://www.reddit.com/r/GuardaWallet/",
- telegram: "https://t.me/Guarda_community",
- ios: true,
- android: true,
- linux: true,
- windows: true,
- macOS: true,
- firefox: true,
- chromium: true,
- hardware: false,
- open_source: false,
- repo_url: "",
- non_custodial: true,
- security_audit: [""],
- scam_protection: true,
- hardware_support: true,
- walletconnect: true,
- rpc_importing: false,
- nft_support: true,
- connect_to_dapps: true,
- staking: true,
- swaps: true,
- multichain: true,
- layer_2: false,
- gas_fee_customization: true,
- ens_support: true,
- erc_20_support: true,
- eip_1559_support: false,
- buy_crypto: true,
- withdraw_crypto: false,
- multisig: false,
- social_recovery: false,
- onboard_documentation: "",
- documentation: "https://support.guarda.com/",
- },
- {
- last_updated: "September 14, 2022",
- name: "Web3Auth",
- image: Web3AuthImage,
- brand_color: "#0364ff",
- url: "https://web3auth.io",
- wallet_live_date: "Jan, 2022",
- active_development_team: true,
- languages_supported: ["en", "de", "ja", "ko", "zh", "es"],
- twitter: "https://twitter.com/web3auth",
- discord: "https://discord.gg/web3auth",
- reddit: "",
- telegram: "https://t.me/web3authdev",
- ios: true,
- android: true,
- linux: false,
- windows: true,
- macOS: true,
- firefox: true,
- chromium: true,
- hardware: false,
- open_source: true,
- repo_url: "https://github.com/web3auth/web3auth",
- non_custodial: true,
- security_audit: ["https://web3auth.io/docs/overview/key-management/audits"],
- scam_protection: false,
- hardware_support: true,
- walletconnect: true,
- rpc_importing: true,
- nft_support: true,
- connect_to_dapps: true,
- staking: false,
- swaps: false,
- multichain: true,
- layer_2: true,
- gas_fee_customization: true,
- ens_support: true,
- erc_20_support: true,
- eip_1559_support: true,
- buy_crypto: true,
- withdraw_crypto: false,
- multisig: true,
- social_recovery: false,
- onboard_documentation: "https://web3auth.io/docs/overview/what-is-web3auth",
- documentation: "https://web3auth.io/docs/",
- mpc: true,
- },
{
last_updated: "June 24, 2022",
name: "Bridge wallet",
@@ -1458,7 +920,6 @@ const walletData: WalletData[] = [
security_audit: [""],
scam_protection: true,
hardware_support: false,
- walletconnect: true,
rpc_importing: true,
nft_support: false,
connect_to_dapps: true,
@@ -1469,7 +930,6 @@ const walletData: WalletData[] = [
gas_fee_customization: true,
ens_support: false,
erc_20_support: true,
- eip_1559_support: true,
buy_crypto: true,
withdraw_crypto: true,
multisig: false,
@@ -1478,7 +938,7 @@ const walletData: WalletData[] = [
documentation: "",
},
{
- last_updated: "September 14, 2022",
+ last_updated: "2022-9-14",
name: "Torus Wallet",
image: TorusImage,
brand_color: "#0364ff",
@@ -1504,7 +964,6 @@ const walletData: WalletData[] = [
security_audit: ["https://docs.tor.us/key-infrastructure/audits"],
scam_protection: false,
hardware_support: false,
- walletconnect: true,
rpc_importing: true,
nft_support: true,
connect_to_dapps: true,
@@ -1515,7 +974,6 @@ const walletData: WalletData[] = [
gas_fee_customization: true,
ens_support: true,
erc_20_support: true,
- eip_1559_support: true,
buy_crypto: true,
withdraw_crypto: false,
multisig: true,
@@ -1525,7 +983,7 @@ const walletData: WalletData[] = [
mpc: true,
},
{
- last_updated: "July 18, 2022",
+ last_updated: "2022-7-18",
name: "TokenPocket",
image: TokenPocketImage,
brand_color: "#2980fe",
@@ -1534,263 +992,120 @@ const walletData: WalletData[] = [
active_development_team: true,
languages_supported: [
"en",
- "ph",
- "hi",
- "jp",
- "ko",
- "ru",
- "zh",
- "es",
- "th",
- "zh-tw",
- ],
- twitter: "https://twitter.com/TokenPocket_TP",
- discord: "",
- reddit: "",
- telegram: "https://t.me/tokenPocket_en",
- ios: true,
- android: true,
- linux: false,
- windows: true,
- macOS: true,
- firefox: false,
- chromium: true,
- hardware: false,
- open_source: false,
- repo_url: "",
- non_custodial: true,
- security_audit: [""],
- scam_protection: true,
- hardware_support: true,
- walletconnect: true,
- rpc_importing: true,
- nft_support: true,
- connect_to_dapps: true,
- staking: false,
- swaps: true,
- multichain: true,
- layer_2: true,
- gas_fee_customization: true,
- ens_support: true,
- erc_20_support: true,
- eip_1559_support: true,
- buy_crypto: true,
- withdraw_crypto: false,
- multisig: false,
- social_recovery: false,
- onboard_documentation: "",
- documentation: "https://help.tokenpocket.pro/developer-en/",
- },
- {
- last_updated: "June 30, 2022",
- name: "Rainbow",
- image: RainbowImage,
- brand_color: "#001A4D",
- url: "https://rainbow.me",
- wallet_live_date: "June 2019",
- active_development_team: true,
- languages_supported: ["en"],
- twitter: "https://twitter.com/rainbowdotme",
- discord: "",
- reddit: "",
- telegram: "",
- ios: true,
- android: true,
- linux: false,
- windows: false,
- macOS: false,
- firefox: true,
- chromium: true,
- hardware: false,
- open_source: true,
- repo_url: "https://github.com/rainbow-me/rainbow",
- non_custodial: true,
- security_audit: [""],
- scam_protection: true,
- hardware_support: true,
- walletconnect: true,
- rpc_importing: false,
- nft_support: true,
- connect_to_dapps: true,
- staking: false,
- swaps: true,
- multichain: true,
- layer_2: true,
- gas_fee_customization: true,
- ens_support: true,
- erc_20_support: true,
- eip_1559_support: true,
- buy_crypto: true,
- withdraw_crypto: false,
- multisig: false,
- social_recovery: false,
- onboard_documentation: "https://learn.rainbow.me/",
- documentation: "",
- },
- {
- last_updated: "June 30, 2022",
- name: "Status",
- image: StatusImage,
- brand_color: "#4360DF",
- url: "https://status.im/",
- wallet_live_date:
- "Status Mobile has been available in beta since 2017, with the 1.0 version released in Feb 2020.",
- active_development_team: true,
- languages_supported: [
"ar",
"bn",
+ "da",
"de",
- "el",
- "en",
"es",
- "ph",
+ "fa",
+ "fil",
"fr",
"hi",
+ "hu",
"id",
- "it",
- "jp",
- "ko",
- "my",
- "nl",
- "pl",
+ "ja",
+ "ko",
+ "ms",
"pt",
- "pt-br",
"ru",
+ "th",
"tr",
"vi",
"zh",
"zh-tw",
],
- twitter: "https://twitter.com/ethstatus",
- discord: "https://discord.gg/HGSAcAHGMA",
- reddit: "https://www.reddit.com/r/statusim/",
- telegram: "",
+ twitter: "https://twitter.com/TokenPocket_TP",
+ discord: "",
+ reddit: "",
+ telegram: "https://t.me/tokenPocket_en",
ios: true,
android: true,
linux: false,
- windows: false,
- macOS: false,
+ windows: true,
+ macOS: true,
firefox: false,
- chromium: false,
+ chromium: true,
hardware: false,
- open_source: true,
- repo_url: "https://github.com/status-im/",
+ open_source: false,
+ repo_url: "",
non_custodial: true,
- security_audit: ["https://github.com/status-im/status-security#audits"],
+ security_audit: [""],
scam_protection: true,
hardware_support: true,
- walletconnect: true,
rpc_importing: true,
nft_support: true,
connect_to_dapps: true,
staking: false,
- swaps: false,
- multichain: false,
+ swaps: true,
+ multichain: true,
layer_2: true,
gas_fee_customization: true,
ens_support: true,
erc_20_support: true,
- eip_1559_support: true,
buy_crypto: true,
withdraw_crypto: false,
multisig: false,
social_recovery: false,
- onboard_documentation: "https://status.im/faq/",
- documentation: "https://our.status.im/",
+ onboard_documentation: "",
+ documentation: "https://help.tokenpocket.pro/developer-en/",
},
{
- last_updated: "June 30, 2022",
- name: "Aktionariat",
- image: AktionariatImage,
- brand_color: "#ffffff",
- url: "https://www.aktionariat.com/",
- wallet_live_date: "28.01.2021",
+ last_updated: "2022-6-30",
+ name: "Rainbow",
+ image: RainbowImage,
+ brand_color: "#001A4D",
+ url: "https://rainbow.me",
+ wallet_live_date: "June 2019",
active_development_team: true,
- languages_supported: ["en"],
- twitter: "https://twitter.com/aktionariat",
+ languages_supported: [
+ "en",
+ "es",
+ "fr",
+ "hi",
+ "id",
+ "ja",
+ "ko",
+ "pt-br",
+ "ru",
+ "th",
+ "tr",
+ "zh",
+ ],
+ twitter: "https://twitter.com/rainbowdotme",
discord: "",
reddit: "",
- telegram: "https://t.me/Aktionariat",
+ telegram: "",
ios: true,
android: true,
linux: false,
windows: false,
macOS: false,
- firefox: false,
- chromium: false,
- hardware: false,
- open_source: false,
- repo_url: "",
- non_custodial: true,
- security_audit: [""],
- scam_protection: false,
- hardware_support: false,
- walletconnect: true,
- rpc_importing: false,
- nft_support: false,
- connect_to_dapps: true,
- staking: false,
- swaps: false,
- multichain: false,
- layer_2: true,
- gas_fee_customization: true,
- ens_support: false,
- erc_20_support: false,
- eip_1559_support: true,
- buy_crypto: true,
- withdraw_crypto: false,
- multisig: false,
- social_recovery: false,
- onboard_documentation: "",
- documentation: "https://www.aktionariat.com/faq/en#wallet",
- },
- {
- last_updated: "2022-08-21",
- name: "Sequence",
- image: SequenceImage,
- brand_color: "#000000",
- url: "https://www.sequence.xyz",
- wallet_live_date: "2021-11-04",
- active_development_team: true,
- languages_supported: ["en"],
- twitter: "https://twitter.com/0xsequence",
- discord: "https://discord.gg/sequence",
- reddit: "https://www.reddit.com/r/0xSequence/",
- telegram: "",
- ios: false,
- android: false,
- linux: false,
- windows: false,
- macOS: false,
firefox: true,
chromium: true,
hardware: false,
open_source: true,
- repo_url: "https://github.com/0xsequence/wallet-contracts",
+ repo_url: "https://github.com/rainbow-me/rainbow",
non_custodial: true,
- security_audit: [
- "https://docs.sequence.build/wallet-contracts/contract-audits",
- ],
+ security_audit: [""],
scam_protection: true,
- hardware_support: false,
- walletconnect: true,
+ hardware_support: true,
rpc_importing: false,
nft_support: true,
connect_to_dapps: true,
staking: false,
swaps: true,
multichain: true,
- layer_2: false,
- gas_fee_customization: false,
+ layer_2: true,
+ gas_fee_customization: true,
ens_support: true,
erc_20_support: true,
- eip_1559_support: true,
- buy_crypto: false,
+ buy_crypto: true,
withdraw_crypto: false,
- multisig: true,
+ multisig: false,
social_recovery: false,
- onboard_documentation: "https://support.sequence.xyz/",
- documentation: "https://docs.sequence.xyz/",
+ onboard_documentation: "https://learn.rainbow.me/",
+ documentation: "",
+ new_to_crypto: true,
},
{
last_updated: "2022-08-21",
@@ -1819,7 +1134,6 @@ const walletData: WalletData[] = [
security_audit: ["https://blog.trezor.io/security-updates/home"],
scam_protection: false,
hardware_support: false,
- walletconnect: false,
rpc_importing: false,
nft_support: false,
connect_to_dapps: false,
@@ -1830,7 +1144,6 @@ const walletData: WalletData[] = [
gas_fee_customization: true,
ens_support: false,
erc_20_support: false,
- eip_1559_support: true,
buy_crypto: true,
withdraw_crypto: true,
multisig: false,
@@ -1876,7 +1189,6 @@ const walletData: WalletData[] = [
security_audit: [""],
scam_protection: false,
hardware_support: true,
- walletconnect: true,
rpc_importing: false,
nft_support: true,
connect_to_dapps: true,
@@ -1887,7 +1199,6 @@ const walletData: WalletData[] = [
gas_fee_customization: true,
ens_support: false,
erc_20_support: true,
- eip_1559_support: true,
buy_crypto: true,
withdraw_crypto: true,
multisig: false,
@@ -1923,7 +1234,6 @@ const walletData: WalletData[] = [
security_audit: [""],
scam_protection: true,
hardware_support: false,
- walletconnect: true,
rpc_importing: false,
nft_support: true,
connect_to_dapps: true,
@@ -1934,7 +1244,6 @@ const walletData: WalletData[] = [
gas_fee_customization: true,
ens_support: false,
erc_20_support: true,
- eip_1559_support: true,
buy_crypto: true,
withdraw_crypto: true,
multisig: false,
@@ -1975,7 +1284,6 @@ const walletData: WalletData[] = [
],
scam_protection: false,
hardware_support: true,
- walletconnect: true,
rpc_importing: false,
nft_support: true,
connect_to_dapps: true,
@@ -1986,7 +1294,6 @@ const walletData: WalletData[] = [
gas_fee_customization: true,
ens_support: false,
erc_20_support: true,
- eip_1559_support: true,
buy_crypto: true,
withdraw_crypto: false,
multisig: false,
@@ -2023,7 +1330,6 @@ const walletData: WalletData[] = [
],
scam_protection: true,
hardware_support: true,
- walletconnect: true,
rpc_importing: false,
nft_support: true,
connect_to_dapps: true,
@@ -2034,7 +1340,6 @@ const walletData: WalletData[] = [
gas_fee_customization: true,
ens_support: false,
erc_20_support: true,
- eip_1559_support: true,
buy_crypto: false,
withdraw_crypto: false,
multisig: false,
@@ -2042,76 +1347,6 @@ const walletData: WalletData[] = [
onboard_documentation: "",
documentation: "",
},
- {
- last_updated: "2022-08-22",
- name: "Bitcoin.com Wallet",
- image: BitcoindotcomImage,
- brand_color: "#F2F7FC",
- url: "https://wallet.bitcoin.com",
- wallet_live_date: "2017-06-18",
- active_development_team: true,
- languages_supported: [
- "en",
- "ar",
- "bg",
- "ca",
- "zh",
- "zh-tw",
- "cs",
- "de",
- "fr",
- "hi",
- "id",
- "it",
- "ja",
- "ko",
- "fa",
- "po",
- "pt",
- "ru",
- "es",
- "se",
- "th",
- "tr",
- "vi",
- ],
- twitter: "https://twitter.com/BitcoinCom",
- discord: "https://discord.gg/7yHF65s7Z2",
- reddit: "",
- telegram: "https://t.me/www_Bitcoin_com",
- ios: true,
- android: true,
- linux: false,
- windows: false,
- macOS: true,
- firefox: false,
- chromium: false,
- hardware: false,
- open_source: false,
- repo_url: "",
- non_custodial: true,
- security_audit: [""],
- scam_protection: false,
- hardware_support: false,
- walletconnect: true,
- rpc_importing: false,
- nft_support: false,
- connect_to_dapps: true,
- staking: false,
- swaps: true,
- multichain: true,
- layer_2: false,
- gas_fee_customization: true,
- ens_support: true,
- erc_20_support: true,
- eip_1559_support: false,
- buy_crypto: true,
- withdraw_crypto: true,
- multisig: false,
- social_recovery: false,
- onboard_documentation: "http://www.bitcoin.com/get-started/",
- documentation: "http://www.bitcoin.com/get-started/",
- },
{
last_updated: "2022-08-31",
name: "Zerion Wallet",
@@ -2120,7 +1355,22 @@ const walletData: WalletData[] = [
url: "https://zerion.io/",
wallet_live_date: "2022-05-26",
active_development_team: true,
- languages_supported: ["en", "ru", "zh", "fr", "de", "es"],
+ languages_supported: [
+ "en",
+ "ru",
+ "tr",
+ "es",
+ "de",
+ "nl",
+ "ko",
+ "hr",
+ "pt",
+ "ja",
+ "it",
+ "fr",
+ "zh",
+ "id",
+ ],
twitter: "https://twitter.com/zerion_io",
discord: "https://zerion.io/discord",
reddit: "",
@@ -2139,7 +1389,6 @@ const walletData: WalletData[] = [
security_audit: ["We've been audited by Cure53 and SecFault security"],
scam_protection: false,
hardware_support: true,
- walletconnect: true,
rpc_importing: false,
nft_support: true,
connect_to_dapps: true,
@@ -2150,13 +1399,13 @@ const walletData: WalletData[] = [
gas_fee_customization: true,
ens_support: true,
erc_20_support: true,
- eip_1559_support: true,
buy_crypto: true,
withdraw_crypto: false,
multisig: false,
social_recovery: false,
onboard_documentation: "",
documentation: "https://help.zerion.io/en/",
+ new_to_crypto: true,
},
{
last_updated: "2022-08-31",
@@ -2185,7 +1434,6 @@ const walletData: WalletData[] = [
security_audit: ["none"],
scam_protection: false,
hardware_support: true,
- walletconnect: false,
rpc_importing: false,
nft_support: true,
connect_to_dapps: true,
@@ -2196,7 +1444,6 @@ const walletData: WalletData[] = [
gas_fee_customization: false,
ens_support: false,
erc_20_support: true,
- eip_1559_support: true,
buy_crypto: true,
withdraw_crypto: false,
multisig: false,
@@ -2231,7 +1478,6 @@ const walletData: WalletData[] = [
security_audit: ["none"],
scam_protection: true,
hardware_support: true,
- walletconnect: false,
rpc_importing: true,
nft_support: true,
connect_to_dapps: true,
@@ -2242,7 +1488,6 @@ const walletData: WalletData[] = [
gas_fee_customization: false,
ens_support: false,
erc_20_support: true,
- eip_1559_support: true,
buy_crypto: false,
withdraw_crypto: false,
multisig: false,
@@ -2277,7 +1522,6 @@ const walletData: WalletData[] = [
security_audit: ["audit team"],
scam_protection: false,
hardware_support: false,
- walletconnect: true,
rpc_importing: true,
nft_support: true,
connect_to_dapps: true,
@@ -2288,7 +1532,6 @@ const walletData: WalletData[] = [
gas_fee_customization: true,
ens_support: true,
erc_20_support: true,
- eip_1559_support: true,
buy_crypto: false,
withdraw_crypto: false,
multisig: false,
@@ -2329,7 +1572,6 @@ const walletData: WalletData[] = [
],
scam_protection: true,
hardware_support: true,
- walletconnect: false,
rpc_importing: true,
nft_support: false,
connect_to_dapps: true,
@@ -2340,7 +1582,6 @@ const walletData: WalletData[] = [
gas_fee_customization: true,
ens_support: true,
erc_20_support: true,
- eip_1559_support: true,
buy_crypto: true,
withdraw_crypto: false,
multisig: false,
@@ -2348,54 +1589,6 @@ const walletData: WalletData[] = [
onboard_documentation: "https://blockwallet.io/docs",
documentation: "https://github.com/block-wallet/extension",
},
- {
- last_updated: "2023-01-25",
- name: "OKX",
- image: OKXImage,
- brand_color: "#000000",
- url: "https://www.okx.com/web3",
- wallet_live_date: "2019-03-25",
- active_development_team: true,
- languages_supported: ["en"],
- twitter: "https://twitter.com/okx?s=21&t=VcG0BDlBFxg45H5jtLIaDQ",
- discord: "https://discord.gg/okx",
- reddit: "https://www.reddit.com/r/OKX/",
- telegram: "https://t.me/OKXOfficial_English",
- ios: true,
- android: true,
- linux: false,
- windows: false,
- macOS: false,
- firefox: true,
- chromium: true,
- hardware: false,
- open_source: true,
- repo_url: "https://github.com/orgs/okex/repositories",
- non_custodial: true,
- security_audit: ["none"],
- scam_protection: true,
- hardware_support: true,
- walletconnect: true,
- rpc_importing: false,
- nft_support: true,
- connect_to_dapps: true,
- staking: false,
- swaps: true,
- multichain: true,
- layer_2: true,
- gas_fee_customization: true,
- ens_support: false,
- erc_20_support: true,
- eip_1559_support: false,
- buy_crypto: true,
- withdraw_crypto: true,
- multisig: false,
- social_recovery: false,
- onboard_documentation:
- "https://www.okx.com/web3-docs/getting-start.html#basic-considerations",
- documentation:
- "https://www.okx.com/web3-docs/getting-start.html#basic-considerations",
- },
{
last_updated: "2022-01-24",
name: "OneKey",
@@ -2404,7 +1597,27 @@ const walletData: WalletData[] = [
url: "https://onekey.so/",
wallet_live_date: "2022-07-31",
active_development_team: true,
- languages_supported: ["en"],
+ languages_supported: [
+ "en",
+ "zh",
+ "zh-tw",
+ "ja",
+ "ko",
+ "bn",
+ "de",
+ "es",
+ "fil",
+ "hi",
+ "it",
+ "mn",
+ "pt",
+ "ru",
+ "th",
+ "uk",
+ "vi",
+ "id",
+ "pt-br",
+ ],
twitter: "https://twitter.com/OneKeyHQ",
discord: "https://discord.gg/onekey",
reddit: "",
@@ -2423,7 +1636,6 @@ const walletData: WalletData[] = [
security_audit: ["none"],
scam_protection: false,
hardware_support: true,
- walletconnect: true,
rpc_importing: true,
nft_support: true,
connect_to_dapps: true,
@@ -2434,13 +1646,13 @@ const walletData: WalletData[] = [
gas_fee_customization: true,
ens_support: true,
erc_20_support: true,
- eip_1559_support: true,
buy_crypto: true,
withdraw_crypto: true,
multisig: false,
social_recovery: false,
onboard_documentation: "https://help.onekey.so/hc/en-us",
documentation: "https://developer.onekey.so/guide/introduction",
+ new_to_crypto: true,
},
{
last_updated: "2023-01-25",
@@ -2469,7 +1681,6 @@ const walletData: WalletData[] = [
security_audit: ["audited by Bishop Fox"],
scam_protection: false,
hardware_support: false,
- walletconnect: false,
rpc_importing: true,
nft_support: true,
connect_to_dapps: true,
@@ -2480,7 +1691,6 @@ const walletData: WalletData[] = [
gas_fee_customization: false,
ens_support: true,
erc_20_support: true,
- eip_1559_support: true,
buy_crypto: false,
withdraw_crypto: false,
multisig: false,
@@ -2518,7 +1728,6 @@ const walletData: WalletData[] = [
],
scam_protection: false,
hardware_support: true,
- walletconnect: false,
rpc_importing: false,
nft_support: true,
connect_to_dapps: true,
@@ -2529,7 +1738,6 @@ const walletData: WalletData[] = [
gas_fee_customization: true,
ens_support: true,
erc_20_support: true,
- eip_1559_support: true,
buy_crypto: false,
withdraw_crypto: false,
multisig: false,
@@ -2539,52 +1747,6 @@ const walletData: WalletData[] = [
documentation:
"https://tahowallet.notion.site/Taho-Knowledge-Base-4d95ed5439c64d6db3d3d27abf1fdae5",
},
- {
- last_updated: "2023-05-01",
- name: "ShapeShift Wallet",
- image: ShapeShiftImage,
- brand_color: "#386FF9",
- url: "https://app.shapeshift.com/",
- wallet_live_date: "2020-07-01",
- active_development_team: true,
- languages_supported: ["en", "es", "pt", "fr", "de", "tr", "ru", "uk"],
- twitter: "https://twitter.com/shapeshift",
- discord: "https://discord.gg/shapeshift",
- reddit: "",
- telegram: "https://t.me/shapeshiftofficial",
- ios: true,
- android: true,
- linux: false,
- windows: false,
- macOS: false,
- firefox: false,
- chromium: false,
- hardware: false,
- open_source: true,
- repo_url: "https://github.com/shapeshift/hdwallet",
- non_custodial: true,
- security_audit: ["https://www.defisafety.com/app/pqrs/108"],
- scam_protection: false,
- hardware_support: true,
- walletconnect: true,
- rpc_importing: false,
- nft_support: true,
- connect_to_dapps: true,
- staking: true,
- swaps: true,
- multichain: true,
- layer_2: true,
- gas_fee_customization: true,
- ens_support: true,
- erc_20_support: true,
- eip_1559_support: true,
- buy_crypto: true,
- withdraw_crypto: true,
- multisig: false,
- social_recovery: false,
- onboard_documentation: "https://shapeshift.zendesk.com/hc/en-us/",
- documentation: "https://docs.shapeshift.com/",
- },
{
last_updated: "2023-07-19",
name: "Phantom",
@@ -2600,7 +1762,6 @@ const walletData: WalletData[] = [
"fr",
"it",
"zh",
- "zh",
"bn",
"ja",
"ko",
@@ -2612,7 +1773,7 @@ const walletData: WalletData[] = [
"vi",
"pt",
"tr",
- "tl",
+ "fil",
"my",
"am",
"ar",
@@ -2645,7 +1806,6 @@ const walletData: WalletData[] = [
],
scam_protection: true,
hardware_support: true,
- walletconnect: false,
rpc_importing: false,
nft_support: true,
connect_to_dapps: true,
@@ -2656,7 +1816,6 @@ const walletData: WalletData[] = [
gas_fee_customization: true,
ens_support: true,
erc_20_support: true,
- eip_1559_support: true,
buy_crypto: true,
withdraw_crypto: false,
multisig: false,
@@ -2693,7 +1852,6 @@ const walletData: WalletData[] = [
],
scam_protection: false,
hardware_support: true,
- walletconnect: true,
rpc_importing: true,
nft_support: true,
connect_to_dapps: true,
@@ -2704,7 +1862,6 @@ const walletData: WalletData[] = [
gas_fee_customization: true,
ens_support: true,
erc_20_support: true,
- eip_1559_support: true,
buy_crypto: true,
withdraw_crypto: false,
multisig: false,
@@ -2740,7 +1897,6 @@ const walletData: WalletData[] = [
security_audit: ["https://skynet.certik.com/projects/aurox"],
scam_protection: true,
hardware_support: true,
- walletconnect: false,
rpc_importing: true,
nft_support: true,
connect_to_dapps: true,
@@ -2751,7 +1907,6 @@ const walletData: WalletData[] = [
gas_fee_customization: true,
ens_support: true,
erc_20_support: true,
- eip_1559_support: true,
buy_crypto: false,
withdraw_crypto: false,
multisig: false,
@@ -2763,4 +1918,4 @@ const walletData: WalletData[] = [
},
]
-export default walletData
+export default walletsData
diff --git a/src/data/wallets/wallet-filters.ts b/src/data/wallets/wallet-filters.ts
index 7e8ab36f7ab..0ebd639380b 100644
--- a/src/data/wallets/wallet-filters.ts
+++ b/src/data/wallets/wallet-filters.ts
@@ -1,15 +1,9 @@
-import type { TranslationKey } from "@/lib/types"
+import type { WalletFilterData } from "@/lib/types"
-interface WalletFilter {
- title: TranslationKey
- filterKey: string | undefined
- description: TranslationKey | ""
-}
-
-const walletFilterData: { [key: string]: WalletFilter } = {
+const walletFilterData: { [key: string]: WalletFilterData } = {
mobile: {
title: "page-find-wallet-mobile",
- description: "page-find-wallet-mobile-desc",
+ description: "",
filterKey: undefined,
},
android: {
@@ -24,7 +18,7 @@ const walletFilterData: { [key: string]: WalletFilter } = {
},
desktop: {
title: "page-find-wallet-desktop",
- description: "page-find-wallet-desktop-desc",
+ description: "",
filterKey: undefined,
},
linux: {
@@ -44,7 +38,7 @@ const walletFilterData: { [key: string]: WalletFilter } = {
},
browser: {
title: "page-find-wallet-browser",
- description: "page-find-wallet-browser-desc",
+ description: "",
filterKey: undefined,
},
firefox: {
@@ -59,7 +53,7 @@ const walletFilterData: { [key: string]: WalletFilter } = {
},
hardware: {
title: "page-find-wallet-hardware",
- description: "page-find-wallet-hardware-desc",
+ description: "",
filterKey: "hardware",
},
open_source: {
@@ -77,11 +71,6 @@ const walletFilterData: { [key: string]: WalletFilter } = {
description: "page-find-wallet-hardware-wallet-support-desc",
filterKey: "hardware_support",
},
- walletconnect: {
- title: "page-find-wallet-walletconnect",
- description: "page-find-wallet-walletconnect-desc",
- filterKey: "walletconnect",
- },
rpc_importing: {
title: "page-find-wallet-rpc-importing",
description: "page-find-wallet-rpc-importing-desc",
@@ -127,11 +116,6 @@ const walletFilterData: { [key: string]: WalletFilter } = {
description: "page-find-wallet-token-importing-desc",
filterKey: "erc_20_support",
},
- eip_1559_support: {
- title: "page-find-wallet-fee-optimization",
- description: "page-find-wallet-fee-optimization-desc",
- filterKey: "eip_1559_support",
- },
buy_crypto: {
title: "page-find-wallet-buy-crypto",
description: "page-find-wallet-buy-crypto-desc",
diff --git a/src/hooks/useCentralizedExchanges.ts b/src/hooks/useCentralizedExchanges.ts
index a4941db44a3..1394529b482 100644
--- a/src/hooks/useCentralizedExchanges.ts
+++ b/src/hooks/useCentralizedExchanges.ts
@@ -1,5 +1,5 @@
import { useState } from "react"
-import { shuffle } from "lodash"
+import shuffle from "lodash/shuffle"
import { useRouter } from "next/router"
import { useTranslation } from "next-i18next"
@@ -12,6 +12,7 @@ import { useTranslation } from "next-i18next"
// import squarelink from "@/public/wallets/squarelink.png"
// import trust from "@/public/wallets/trust.png"
import type { ImageProps } from "@/components/Image"
+import { SelectOnChange } from "@/components/Select"
import { trackCustomEvent } from "@/lib/utils/matomo"
@@ -294,9 +295,10 @@ export const useCentralizedExchanges = () => {
}))
.sort((a, b) => a.value.localeCompare(b.value))
- const handleSelectChange = (
- selectedOption: ExchangeByCountryOption
- ): void => {
+ const handleSelectChange: SelectOnChange = (
+ selectedOption
+ ) => {
+ if (!selectedOption) return
trackCustomEvent({
eventCategory: `Country input`,
eventAction: `Selected`,
diff --git a/src/hooks/useNavMenuColors.ts b/src/hooks/useNavMenuColors.ts
new file mode 100644
index 00000000000..5fa622dc496
--- /dev/null
+++ b/src/hooks/useNavMenuColors.ts
@@ -0,0 +1,46 @@
+import { useColorModeValue } from "@chakra-ui/react"
+
+import { Level } from "@/components/Nav/types"
+
+type LevelColors = {
+ subtext: string
+ background: string
+ activeBackground: string
+}
+
+type NavMenuColors = {
+ body: string
+ stroke: string
+ highlight: string
+ active: string
+ lvl: Record
+}
+
+export const useNavMenuColors = (): NavMenuColors => ({
+ body: "body.base",
+ stroke: "body.light",
+ highlight: "primary.base",
+ active: "primary.highContrast",
+ lvl: {
+ 1: {
+ subtext: useColorModeValue("gray.400", "gray.400"),
+ background: useColorModeValue("white", "black"),
+ activeBackground: useColorModeValue("gray.150", "gray.700"),
+ },
+ 2: {
+ subtext: useColorModeValue("gray.400", "gray.300"),
+ background: useColorModeValue("gray.150", "gray.700"),
+ activeBackground: useColorModeValue("gray.200", "gray.600"),
+ },
+ 3: {
+ subtext: useColorModeValue("gray.500", "gray.300"),
+ background: useColorModeValue("gray.200", "gray.600"),
+ activeBackground: useColorModeValue("gray.100", "gray.700"),
+ },
+ 4: {
+ subtext: useColorModeValue("gray.700", "gray.300"),
+ background: useColorModeValue("gray.300", "gray.700"),
+ activeBackground: useColorModeValue("gray.200", "gray.800"),
+ },
+ },
+})
diff --git a/src/components/FindWallet/WalletFilterSidebar/WalletFilterFeature/useWalletFilterFeature.tsx b/src/hooks/useWalletFilterFeature.tsx
similarity index 87%
rename from src/components/FindWallet/WalletFilterSidebar/WalletFilterFeature/useWalletFilterFeature.tsx
rename to src/hooks/useWalletFilterFeature.tsx
index e166c2f4eb0..ebecb0c4668 100644
--- a/src/components/FindWallet/WalletFilterSidebar/WalletFilterFeature/useWalletFilterFeature.tsx
+++ b/src/hooks/useWalletFilterFeature.tsx
@@ -1,16 +1,19 @@
// Libraries
import { useEffect, useState } from "react"
import { useTranslation } from "next-i18next"
-import { Icon } from "@chakra-ui/react"
+
+import { FilterOption } from "@/lib/types"
+
+import { WalletFilterFeatureProps } from "@/components/FindWallet/WalletFilterFeature"
// Data
-import walletFilterData from "../../../../data/wallets/wallet-filters"
+import walletFilterData from "@/data/wallets/wallet-filters"
+
import {
BrowserIcon,
BuyCryptoIcon,
ConnectDappsIcon,
DesktopIcon,
- EIP1559Icon,
ENSSupportIcon,
ERC20SupportIcon,
GasFeeCustomizationIcon,
@@ -26,37 +29,21 @@ import {
SocialRecoverIcon,
StakingIcon,
SwapIcon,
- WalletConnectIcon,
WithdrawCryptoIcon,
-} from "../../../icons/wallets"
+} from "../components/icons/wallets"
-import { WalletFilterFeatureProps } from "."
-
-type FilterOptionType = {
- title: string
- items: Array<{
- title: string
- icon: typeof Icon
- description: string
- filterKey: string | undefined
- showOptions: boolean | undefined
- options:
- | Array<{
- name: string
- filterKey?: string
- inputType: "checkbox"
- }>
- | []
- }>
-}
+type UseWalletFilterFeatureProps = Omit<
+ WalletFilterFeatureProps,
+ "updateFilterOption"
+>
export const useWalletFilterFeature = ({
resetWalletFilter,
filters,
updateFilterOptions,
-}: Omit) => {
+}: UseWalletFilterFeatureProps) => {
const { t } = useTranslation("page-wallets-find-wallet")
- const [filterOptions, setFilterOptions] = useState([
+ const [filterOptions, setFilterOptions] = useState([
{
title: t("page-find-wallet-device"),
items: [
@@ -109,7 +96,7 @@ export const useWalletFilterFeature = ({
icon: BrowserIcon,
description: t(walletFilterData.browser.description),
filterKey: walletFilterData.browser.filterKey,
- showOptions: filters.firefox || filters.chrome ? true : false,
+ showOptions: filters.firefox || filters.chromium ? true : false,
options: [
{
name: t(walletFilterData.firefox.title),
@@ -134,21 +121,23 @@ export const useWalletFilterFeature = ({
],
},
{
- title: t("page-find-wallet-security"),
+ title: `${t("page-find-wallet-buy-crypto")} / ${t(
+ "page-find-wallet-sell-for-fiat"
+ )}`,
items: [
{
- title: t(walletFilterData.open_source.title),
- icon: OpenSourceWalletIcon,
- description: t(walletFilterData.open_source.description),
- filterKey: walletFilterData.open_source.filterKey,
+ title: t(walletFilterData.buy_crypto.title),
+ icon: BuyCryptoIcon,
+ description: t(walletFilterData.buy_crypto.description),
+ filterKey: walletFilterData.buy_crypto.filterKey,
showOptions: undefined,
options: [],
},
{
- title: t(walletFilterData.non_custodial.title),
- icon: NonCustodialIcon,
- description: t(walletFilterData.non_custodial.description),
- filterKey: walletFilterData.non_custodial.filterKey,
+ title: t(walletFilterData.withdraw_crypto.title),
+ icon: WithdrawCryptoIcon,
+ description: t(walletFilterData.withdraw_crypto.description),
+ filterKey: walletFilterData.withdraw_crypto.filterKey,
showOptions: undefined,
options: [],
},
@@ -158,26 +147,10 @@ export const useWalletFilterFeature = ({
title: t("page-find-wallet-features"),
items: [
{
- title: t(walletFilterData.hardware_support.title),
- icon: HardwareSupportIcon,
- description: t(walletFilterData.hardware_support.description),
- filterKey: walletFilterData.hardware_support.filterKey,
- showOptions: undefined,
- options: [],
- },
- {
- title: t(walletFilterData.walletconnect.title),
- icon: WalletConnectIcon,
- description: t(walletFilterData.walletconnect.description),
- filterKey: walletFilterData.walletconnect.filterKey,
- showOptions: undefined,
- options: [],
- },
- {
- title: t(walletFilterData.rpc_importing.title),
- icon: RPCImportingIcon,
- description: t(walletFilterData.rpc_importing.description),
- filterKey: walletFilterData.rpc_importing.filterKey,
+ title: t(walletFilterData.connect_to_dapps.title),
+ icon: ConnectDappsIcon,
+ description: t(walletFilterData.connect_to_dapps.description),
+ filterKey: walletFilterData.connect_to_dapps.filterKey,
showOptions: undefined,
options: [],
},
@@ -189,14 +162,6 @@ export const useWalletFilterFeature = ({
showOptions: undefined,
options: [],
},
- {
- title: t(walletFilterData.connect_to_dapps.title),
- icon: ConnectDappsIcon,
- description: t(walletFilterData.connect_to_dapps.description),
- filterKey: walletFilterData.connect_to_dapps.filterKey,
- showOptions: undefined,
- options: [],
- },
{
title: t(walletFilterData.staking.title),
icon: StakingIcon,
@@ -205,14 +170,6 @@ export const useWalletFilterFeature = ({
showOptions: undefined,
options: [],
},
- {
- title: t(walletFilterData.swaps.title),
- icon: SwapIcon,
- description: t(walletFilterData.swaps.description),
- filterKey: walletFilterData.swaps.filterKey,
- showOptions: undefined,
- options: [],
- },
{
title: t(walletFilterData.layer_2.title),
icon: Layer2Icon,
@@ -222,57 +179,47 @@ export const useWalletFilterFeature = ({
options: [],
},
{
- title: t(walletFilterData.gas_fee_customization.title),
- icon: GasFeeCustomizationIcon,
- description: t(walletFilterData.gas_fee_customization.description),
- filterKey: walletFilterData.gas_fee_customization.filterKey,
- showOptions: undefined,
- options: [],
- },
- {
- title: t(walletFilterData.ens_support.title),
- icon: ENSSupportIcon,
- description: t(walletFilterData.ens_support.description),
- filterKey: walletFilterData.ens_support.filterKey,
+ title: t(walletFilterData.swaps.title),
+ icon: SwapIcon,
+ description: t(walletFilterData.swaps.description),
+ filterKey: walletFilterData.swaps.filterKey,
showOptions: undefined,
options: [],
},
{
- title: t(walletFilterData.erc_20_support.title),
- icon: ERC20SupportIcon,
- description: t(walletFilterData.erc_20_support.description),
- filterKey: walletFilterData.erc_20_support.filterKey,
+ title: t(walletFilterData.hardware_support.title),
+ icon: HardwareSupportIcon,
+ description: t(walletFilterData.hardware_support.description),
+ filterKey: walletFilterData.hardware_support.filterKey,
showOptions: undefined,
options: [],
},
{
- title: t(walletFilterData.eip_1559_support.title),
- icon: EIP1559Icon,
- description: t(walletFilterData.eip_1559_support.description),
- filterKey: walletFilterData.eip_1559_support.filterKey,
+ title: t(walletFilterData.ens_support.title),
+ icon: ENSSupportIcon,
+ description: t(walletFilterData.ens_support.description),
+ filterKey: walletFilterData.ens_support.filterKey,
showOptions: undefined,
options: [],
},
],
},
{
- title: `${t("page-find-wallet-buy-crypto")} / ${t(
- "page-find-wallet-sell-for-fiat"
- )}`,
+ title: t("page-find-wallet-security"),
items: [
{
- title: t(walletFilterData.buy_crypto.title),
- icon: BuyCryptoIcon,
- description: t(walletFilterData.buy_crypto.description),
- filterKey: walletFilterData.buy_crypto.filterKey,
+ title: t(walletFilterData.open_source.title),
+ icon: OpenSourceWalletIcon,
+ description: t(walletFilterData.open_source.description),
+ filterKey: walletFilterData.open_source.filterKey,
showOptions: undefined,
options: [],
},
{
- title: t(walletFilterData.withdraw_crypto.title),
- icon: WithdrawCryptoIcon,
- description: t(walletFilterData.withdraw_crypto.description),
- filterKey: walletFilterData.withdraw_crypto.filterKey,
+ title: t(walletFilterData.non_custodial.title),
+ icon: NonCustodialIcon,
+ description: t(walletFilterData.non_custodial.description),
+ filterKey: walletFilterData.non_custodial.filterKey,
showOptions: undefined,
options: [],
},
@@ -299,6 +246,35 @@ export const useWalletFilterFeature = ({
},
],
},
+ {
+ title: t("page-find-wallet-advanced"),
+ items: [
+ {
+ title: t(walletFilterData.rpc_importing.title),
+ icon: RPCImportingIcon,
+ description: t(walletFilterData.rpc_importing.description),
+ filterKey: walletFilterData.rpc_importing.filterKey,
+ showOptions: undefined,
+ options: [],
+ },
+ {
+ title: t(walletFilterData.erc_20_support.title),
+ icon: ERC20SupportIcon,
+ description: t(walletFilterData.erc_20_support.description),
+ filterKey: walletFilterData.erc_20_support.filterKey,
+ showOptions: undefined,
+ options: [],
+ },
+ {
+ title: t(walletFilterData.gas_fee_customization.title),
+ icon: GasFeeCustomizationIcon,
+ description: t(walletFilterData.gas_fee_customization.description),
+ filterKey: walletFilterData.gas_fee_customization.filterKey,
+ showOptions: undefined,
+ options: [],
+ },
+ ],
+ },
])
const setShowOptions = (idx, itemidx, value) => {
diff --git a/src/hooks/useWalletPersonas.tsx b/src/hooks/useWalletPersonas.tsx
new file mode 100644
index 00000000000..fff64e82706
--- /dev/null
+++ b/src/hooks/useWalletPersonas.tsx
@@ -0,0 +1,162 @@
+import { useTranslation } from "next-i18next"
+
+import { WalletPersonas } from "@/lib/types"
+
+export const useWalletPersonas = () => {
+ const { t } = useTranslation("page-wallets-find-wallet")
+ const personas: WalletPersonas[] = [
+ {
+ title: t("page-find-wallet-new-to-crypto-title"),
+ description: t("page-find-wallet-new-to-crypto-desc"),
+ presetFilters: {
+ android: false,
+ ios: false,
+ linux: false,
+ windows: false,
+ macOS: false,
+ firefox: false,
+ chromium: false,
+ hardware: false,
+ open_source: false,
+ non_custodial: false,
+ hardware_support: false,
+ rpc_importing: false,
+ nft_support: false,
+ connect_to_dapps: true,
+ staking: false,
+ swaps: false,
+ layer_2: true,
+ gas_fee_customization: false,
+ ens_support: false,
+ erc_20_support: true,
+ buy_crypto: true,
+ withdraw_crypto: false,
+ multisig: false,
+ social_recovery: false,
+ new_to_crypto: true,
+ },
+ },
+ {
+ title: t("page-find-wallet-nfts-title"),
+ description: t("page-find-wallet-nfts-desc"),
+ presetFilters: {
+ android: false,
+ ios: false,
+ linux: false,
+ windows: false,
+ macOS: false,
+ firefox: false,
+ chromium: false,
+ hardware: false,
+ open_source: false,
+ non_custodial: false,
+ hardware_support: false,
+ rpc_importing: false,
+ nft_support: true,
+ connect_to_dapps: true,
+ staking: false,
+ swaps: false,
+ layer_2: true,
+ gas_fee_customization: false,
+ ens_support: false,
+ erc_20_support: false,
+ buy_crypto: false,
+ withdraw_crypto: false,
+ multisig: false,
+ social_recovery: false,
+ },
+ },
+ {
+ title: t("page-find-wallet-hodler-title"),
+ description: t("page-find-wallet-hodler-desc"),
+ presetFilters: {
+ android: false,
+ ios: false,
+ linux: false,
+ windows: false,
+ macOS: false,
+ firefox: false,
+ chromium: false,
+ hardware: true,
+ open_source: false,
+ non_custodial: true,
+ hardware_support: false,
+ rpc_importing: false,
+ nft_support: false,
+ connect_to_dapps: false,
+ staking: false,
+ swaps: false,
+ layer_2: false,
+ gas_fee_customization: false,
+ ens_support: false,
+ erc_20_support: false,
+ buy_crypto: false,
+ withdraw_crypto: false,
+ multisig: false,
+ social_recovery: false,
+ },
+ },
+ {
+ title: t("page-find-wallet-finance-title"),
+ description: t("page-find-wallet-finance-desc"),
+ presetFilters: {
+ android: false,
+ ios: false,
+ linux: false,
+ windows: false,
+ macOS: false,
+ firefox: false,
+ chromium: false,
+ hardware: false,
+ open_source: false,
+ non_custodial: false,
+ hardware_support: true,
+ rpc_importing: false,
+ nft_support: false,
+ connect_to_dapps: true,
+ staking: false,
+ swaps: false,
+ layer_2: false,
+ gas_fee_customization: true,
+ ens_support: false,
+ erc_20_support: true,
+ buy_crypto: false,
+ withdraw_crypto: false,
+ multisig: false,
+ social_recovery: false,
+ },
+ },
+ {
+ title: t("page-find-wallet-developer-title"),
+ description: t("page-find-wallet-developer-desc"),
+ presetFilters: {
+ android: false,
+ ios: false,
+ linux: false,
+ windows: false,
+ macOS: false,
+ firefox: false,
+ chromium: false,
+ hardware: false,
+ open_source: true,
+ non_custodial: false,
+ hardware_support: false,
+ rpc_importing: true,
+ nft_support: false,
+ connect_to_dapps: true,
+ staking: false,
+ swaps: false,
+ layer_2: true,
+ gas_fee_customization: true,
+ ens_support: false,
+ erc_20_support: true,
+ buy_crypto: false,
+ withdraw_crypto: false,
+ multisig: false,
+ social_recovery: false,
+ },
+ },
+ ]
+
+ return personas
+}
diff --git a/src/components/FindWallet/WalletTable/useWalletTable.tsx b/src/hooks/useWalletTable.tsx
similarity index 60%
rename from src/components/FindWallet/WalletTable/useWalletTable.tsx
rename to src/hooks/useWalletTable.tsx
index 60d3cd1a1e7..0251b7391dc 100644
--- a/src/components/FindWallet/WalletTable/useWalletTable.tsx
+++ b/src/hooks/useWalletTable.tsx
@@ -1,39 +1,10 @@
-import { useState } from "react"
-import { Icon } from "@chakra-ui/react"
+import { useContext, useState } from "react"
-import { WalletTableProps } from "@/components/FindWallet/WalletTable"
-import {
- BuyCryptoIcon,
- ConnectDappsIcon,
- EIP1559Icon,
- ENSSupportIcon,
- ERC20SupportIcon,
- GasFeeCustomizationIcon,
- HardwareSupportIcon,
- Layer2Icon,
- MultisigIcon,
- NFTSupportIcon,
- NonCustodialIcon,
- OpenSourceWalletIcon,
- RPCImportingIcon,
- SocialRecoverIcon,
- StakingIcon,
- SwapIcon,
- WalletConnectIcon,
- WithdrawCryptoIcon,
-} from "@/components/icons/wallets"
-
-import { trackCustomEvent } from "@/lib/utils/matomo"
+import { DropdownOption } from "@/lib/types"
-export interface DropdownOption {
- label: string
- value: string
- filterKey: string
- category: string
- icon: typeof Icon
-}
+import { WalletTableProps } from "@/components/FindWallet/WalletTable"
-export type ColumnClassName = "firstCol" | "secondCol" | "thirdCol"
+import { WalletSupportedLanguageContext } from "@/contexts/WalletSupportedLanguageContext"
type UseWalletTableProps = Pick & {
t: (x: string) => string
@@ -50,126 +21,102 @@ export const useWalletTable = ({
value: t("page-find-wallet-open-source"),
filterKey: "open_source",
category: "security",
- icon: OpenSourceWalletIcon,
},
{
label: t("page-find-wallet-self-custody"),
value: t("page-find-wallet-self-custody"),
filterKey: "non_custodial",
category: "security",
- icon: NonCustodialIcon,
},
{
label: t("page-find-wallet-hardware-wallet-support"),
value: t("page-find-wallet-hardware-wallet-support"),
filterKey: "hardware_support",
category: "feature",
- icon: HardwareSupportIcon,
- },
- {
- label: t("page-find-wallet-walletconnect"),
- value: t("page-find-wallet-walletconnect"),
- filterKey: "walletconnect",
- category: "feature",
- icon: WalletConnectIcon,
},
{
label: t("page-find-wallet-rpc-importing"),
value: t("page-find-wallet-rpc-importing"),
filterKey: "rpc_importing",
- category: "feature",
- icon: RPCImportingIcon,
+ category: "advanced",
},
{
label: t("page-find-wallet-nft-support"),
value: t("page-find-wallet-nft-support"),
filterKey: "nft_support",
category: "feature",
- icon: NFTSupportIcon,
},
{
label: t("page-find-wallet-connect-to-dapps"),
value: t("page-find-wallet-connect-to-dapps"),
filterKey: "connect_to_dapps",
category: "feature",
- icon: ConnectDappsIcon,
},
{
label: t("page-find-wallet-staking"),
value: t("page-find-wallet-staking"),
filterKey: "staking",
category: "feature",
- icon: StakingIcon,
},
{
label: t("page-find-wallet-swaps"),
value: t("page-find-wallet-swaps"),
filterKey: "swaps",
category: "feature",
- icon: SwapIcon,
},
{
label: t("page-find-wallet-layer-2"),
value: t("page-find-wallet-layer-2"),
filterKey: "layer_2",
category: "feature",
- icon: Layer2Icon,
},
{
label: t("page-find-wallet-gas-fee-customization"),
value: t("page-find-wallet-gas-fee-customization"),
filterKey: "gas_fee_customization",
- category: "feature",
- icon: GasFeeCustomizationIcon,
+ category: "advanced",
},
{
label: t("page-find-wallet-ens-support"),
value: t("page-find-wallet-ens-support"),
filterKey: "ens_support",
category: "feature",
- icon: ENSSupportIcon,
},
{
label: t("page-find-wallet-token-importing"),
value: t("page-find-wallet-token-importing"),
filterKey: "erc_20_support",
- category: "feature",
- icon: ERC20SupportIcon,
- },
- {
- label: t("page-find-wallet-fee-optimization"),
- value: t("page-find-wallet-fee-optimization"),
- filterKey: "eip_1559_support",
- category: "feature",
- icon: EIP1559Icon,
+ category: "advanced",
},
{
label: t("page-find-wallet-buy-crypto"),
value: t("page-find-wallet-buy-crypto"),
filterKey: "buy_crypto",
category: "trade_and_buy",
- icon: BuyCryptoIcon,
},
{
label: t("page-find-wallet-sell-for-fiat"),
value: t("page-find-wallet-sell-for-fiat"),
filterKey: "withdraw_crypto",
category: "trade_and_buy",
- icon: WithdrawCryptoIcon,
},
{
label: t("page-find-wallet-multisig"),
value: t("page-find-wallet-multisig"),
filterKey: "multisig",
category: "smart_contract",
- icon: MultisigIcon,
},
{
label: t("page-find-wallet-social-recovery"),
value: t("page-find-wallet-social-recovery"),
filterKey: "social_recovery",
category: "smart_contract",
- icon: SocialRecoverIcon,
+ },
+ {
+ label: t("page-find-wallet-new-to-crypto-title"),
+ value: t("page-find-wallet-new-to-crypto-title"),
+ filterKey: "new_to_crypto",
+ category: "new_to_crypto",
},
]
@@ -178,15 +125,9 @@ export const useWalletTable = ({
return { ...wallet, moreInfo: false, key: wallet.name }
})
)
- const [firstFeatureSelect, setFirstFeatureSelect] = useState(
- featureDropdownItems[14]
- )
- const [secondFeatureSelect, setSecondFeatureSelect] = useState(
- featureDropdownItems[1]
- )
- const [thirdFeatureSelect, setThirdFeatureSelect] = useState(
- featureDropdownItems[9]
- )
+
+ // Context API for language filter
+ const { supportedLanguage } = useContext(WalletSupportedLanguageContext)
const updateMoreInfo = (key) => {
const temp = [...walletCardData]
@@ -208,9 +149,14 @@ export const useWalletTable = ({
let hardwareCheck = true
const featureFilterKeys = featureDropdownItems.map((item) => item.filterKey)
+
const deviceFilters = Object.entries(filters).filter(
(item) => !featureFilterKeys.includes(item[0])
)
+
+ const languageSupportFilter =
+ wallet.languages_supported.includes(supportedLanguage)
+
const mobileFiltersTrue = deviceFilters
.filter((item) => item[0] === "ios" || item[0] === "android")
.filter((item) => item[1])
@@ -274,66 +220,19 @@ export const useWalletTable = ({
})
return (
- mobileCheck && desktopCheck && browserCheck && hardwareCheck && showWallet
+ mobileCheck &&
+ desktopCheck &&
+ browserCheck &&
+ hardwareCheck &&
+ showWallet &&
+ languageSupportFilter
)
})
- const filteredFeatureDropdownItems = [...featureDropdownItems].filter(
- (item) => {
- return (
- item.label !== firstFeatureSelect.label &&
- item.label !== secondFeatureSelect.label &&
- item.label !== thirdFeatureSelect.label
- )
- }
- )
-
- /**
- *
- * @param selectedOption selected dropdown option
- * @param stateUpdateMethod method for updating state for dropdown
- * @param className className of column
- *
- * This method gets the elements with the className, adds a fade class to fade icons out, after 0.5s it will then update state for the dropdown with the selectedOption, and then remove the fade class to fade the icons back in. Then it will send a matomo event for updating the dropdown.
- */
- const updateDropdown = (
- selectedOption: DropdownOption,
- stateUpdateMethod: Function,
- className: ColumnClassName
- ) => {
- const domItems: HTMLCollectionOf =
- document.getElementsByClassName(className)
-
- Array.from(domItems).forEach((item) => {
- item.classList.add("fade")
- })
-
- setTimeout(() => {
- stateUpdateMethod(selectedOption)
- Array.from(domItems).forEach((item) => {
- item.classList.remove("fade")
- })
- }, 375)
-
- trackCustomEvent({
- eventCategory: "WalletFeatureCompare",
- eventAction: `Select WalletFeatureCompare`,
- eventName: `${selectedOption.filterKey} selected`,
- })
- }
-
return {
featureDropdownItems,
updateMoreInfo,
filteredWallets,
- filteredFeatureDropdownItems,
- updateDropdown,
- setFirstFeatureSelect,
- setSecondFeatureSelect,
- setThirdFeatureSelect,
walletCardData,
- firstFeatureSelect,
- secondFeatureSelect,
- thirdFeatureSelect,
}
}
diff --git a/src/intl/am/common.json b/src/intl/am/common.json
index 20178488c16..3e188d51ed4 100644
--- a/src/intl/am/common.json
+++ b/src/intl/am/common.json
@@ -1,17 +1,29 @@
{
- "account-abstraction": "የመለያ ረቂቅ",
"about-ethereum-org": "ስለ Ethereum.org",
"about-us": "ስለ እኛ",
+ "adding-desci-projects": "Desci ፕሮጀክቶችን በማከል ላይ",
+ "adding-developer-tools": "ማበልጸጊያ መሳሪያዎችን በማከል ላይ",
+ "adding-exchanges": "ልውውጦችን በማከል ላይ",
+ "adding-glossary-terms": "የመዝገበ ቃላት አባባሎችን በማከል ላይ",
+ "adding-staking-products": "የስታኪንግ ምርቶችን በማከል ላይ",
+ "adding-wallets": "ዋሌቶችን በማከል ላይ",
+ "account-abstraction": "የመለያ ረቂቅ",
+ "acknowledgements": "እውቅና",
"aria-toggle-search-button": "የመፈለጊያ ቁልፍን ቀያይር",
"aria-toggle-menu-button": "የማውጫ ቁልፍን ቀያይር",
"beacon-chain": "ቢከን ሰንሰለት",
"bridges": "የብሎክቼይን ድልድዮች",
- "clear": "አጽዳ",
- "close": "ዝጋ",
+ "bug-bounty": "ሽልማት",
+ "build": "ይገንቡ",
+ "build-menu": "DeFiን ይገንቡ",
+ "clear": "ያጽዱ",
+ "close": "ይዝጉ",
"community": "ማህበረሰብ",
"community-hub": "የማህበረሰብ ማዕከል",
"community-menu": "የማህበረሰብ ማውጫ",
- "contact": "ማግኛ",
+ "contact": "እውቂያ",
+ "content-buckets": "የይዘት ማከማቻ",
+ "content-resources": "የይዘት መረጃ ማዕከል",
"content-standardization": "የይዘት መደበኛነት",
"contributing": "አስተዋጽኦ ማድረግ",
"contributors": "አስተዋጽኦ ያደረጉ ሰዎች",
@@ -20,14 +32,17 @@
"copied": "ተገልብጧል",
"copy": "መገልበጥ",
"danksharding": "ዳንክሻርዲንግ",
- "dao-page": "ያልተማከሉ ራስ ገዝ ድርጅቶች (DAOs)",
+ "dao-page": "DAOs - ያልተማከሉ ራስ ገዝ ድርጅቶች",
"dark-mode": "ጨለማ",
"data-provided-by": "የዳታ ምንጭ:",
- "decentralized-applications-dapps": "ያልተማከሉ መተግበሪያዎች (dapps)",
+ "decentralized-applications-dapps": "Dapps - ያልተማከሉ መተግበሪያዎች",
"decentralized-identity": "ያልተማከለ ማንነት",
"decentralized-social-networks": "ያልተማከሉ ማህበራዊ አውታረ-መረቦች፡፡",
- "decentralized-science": "ያልተማከለ ሳይንስ (DeSci)",
- "defi-page": "ያልተማከለ ፋይናንስ (DeFi)",
+ "decentralized-science": "DeSci - ያልተማከለ ሳይንስ",
+ "description": "ለnav ንጥል መግለጫ",
+ "defi-page": "DeFi - ያልተማከለ ፋይናንስ",
+ "design": "ንድፍ",
+ "design-principles": "የንድፍ መርሆች",
"devcon": "የገንቢዎች ጉባኤ (Devcon)",
"developers": "ገንቢዎች",
"developers-home": "የገንቢዎች መነሻ-ገፅ",
@@ -75,7 +90,7 @@
"ethereum-protocol": "የኢቲሪየም ፕሮቶኮል",
"ethereum-security": "የኢቲሪየም ደህንነትና ማጭበርበርን መከላከል",
"ethereum-support": "የኢቲሪየም ድጋፍ",
- "ethereum-wallets": "Ethereum Wallets",
+ "ethereum-wallets": "የኢቴርየም ቦርሳዎች",
"ethereum-whitepaper": "የኢቲሪየም ነጭ ወረቀት",
"feedback-widget-prompt": "ይህ ገፅ አግዞዎታል?",
"feedback-card-prompt-page": "ይህ ገፅ አግዞዎት ነበር?",
@@ -83,22 +98,22 @@
"feedback-card-prompt-tutorial": "ይህ ስልጠና አግዞዎት ነበር?",
"feedback-widget-thank-you-title": "ለአስተያየተዎ እናመሰግናለን!",
"feedback-widget-thank-you-subtitle": "ጥቂት ጥያቄዎችን በመመለስ ይህን ገፅ ከዚህ የተሻለ ያድርጉ፡፡",
- "feedback-widget-thank-you-subtitle-ext": "እርዳታ ከፈለጉ በDiscord ላይ ያለዉን ማህበረሰብ ማግኘት ይችላሉ፡፡",
+ "feedback-widget-thank-you-subtitle-ext": "እርዳታ ከፈለጉ ማህበረሰቡን በእኛ <ዲስኮርዶች ላይ ማግኘት ይችላሉ።",
"feedback-widget-thank-you-timing": "2–3 ደቂቃ ",
"feedback-widget-thank-you-cta": "የፈጣን ንግድ ዳሰሳ ጥናት",
"find-wallet": "ቦርሳ ያግኙ",
"future-proofing": "የወደፊቱን-ማረጋገጫ",
- "get-eth": "ኤቴሪየም(ETH) ያግኙ",
+ "get-eth": "ETHን ያግኙ",
"get-involved": "ይሳተፉ",
"get-started": "ጀምር",
"grants": "ፍቃዶች",
"grant-programs": "የስነ-ምህዳረ ፍቃድ ፕሮግራሞች",
"guides": "መመሪያዎች",
- "guides-hub": "የመመሪያዎች ማዕከል",
+ "guides-hub": "እንዴት ለሚለው ጥያቄ መመሪያ",
"history-of-ethereum": "የኢቲሪየም ታሪክ",
"home": "መነሻ-ገጽ",
"how-ethereum-works": "ኢቲሪየም እንዴት ይሰራል",
- "how-to-register-an-ethereum-account": "ለኢቲሪየም መለያ እንዴት \"መመዝገብ\" ይቻላል",
+ "how-to-create-an-ethereum-account": "የኢቲሪየም መለያ እንዴት \"መፍጠር\" ይቻላል",
"how-to-revoke-token-access": "እንዴት በእርሰዎ ክሪፐቶ ገንዘብ ላይ ፈቃድ ያለውን ዘመናዊ ውል መሻር ይቻላል",
"how-to-swap-tokens": "ቶከኖችን እንዴት መለዋወጥ ይቻላል",
"how-to-use-a-bridge": "እንዴት ቶከኖችን ወደ ንብርብር 2 ማሻገር ይቻላል",
@@ -128,11 +143,108 @@
"loading-error-try-again-later": "ዳታ መጫን አልተቻለም፣ ትንሽ ቆይተው ይሞክሩ፡፡",
"logo": "አርማ",
"mainnet-ethereum": "የኢቲሪየም ዋና አውታረ-መረብ",
+ "merge": "መደባለቅ",
"more": "ተጨማሪ",
- "nav-developers": "ገንቢዎች",
+ "nav-about-description": "ለEthereum ማህበረሰብ ይፋዊ፣ ክፍት ምንጭ ፕሮጀክት",
+ "nav-advanced-description": "የበለጠ ውስብስብ ርዕሶችን ይማሩ",
+ "nav-advanced-label": "የላቀ",
+ "nav-basics-description": "የEthereum መሰረታዊ ነገሮችን ይረዱ",
+ "nav-basics-label": "መሰረታውያን",
+ "nav-bridges-description": "Web3 ወደ አንደኛ ደረጃ L1 ብሎክ ቼይን እና L2 የምጣኔ መፍትሄዎች ሥነ-ምህዳር ተለውጧል",
+ "nav-builders-home-description": "ለEthereum የገንቢዎች መመሪያ—በገንቢዎች፣ ለገንቢዎች።",
+ "nav-builders-home-label": "የገንቢዎች መነሻ",
+ "nav-contribute-description": "እርዳታ ከፈለጉ፣ ይህ ይመራዎታል",
+ "nav-contribute-label": "ለ ethereum.org አስተዋጽኦ ማበርከት",
+ "nav-dao-description": "ያለ ማዕከላዊ ባለስልጣን በአባል ባለቤትነት ያሉ ማህበረሰቦች",
+ "nav-dapps-description": "Ethereumን በመጠቀም የበለጸጉ የመተግበሪያዎች ስነ-ምህዳርን ያስሱ",
+ "nav-defi-description": "ለባህላዊው የፋይናንስ ገበያ ዓለም አቀፋዊና ክፍት አማራጭ",
+ "nav-desci-description": "አሁን ላለው የሳይንስ ሥርዓት ዓለም አቀፋዊና ክፍት አማራጭ",
+ "nav-desoc-description": "ለማህበራዊ መስተጋብር እና ይዘት ፈጠራ በብሎክቼይን ላይ የተመሰረቱ መድረኮች",
"nav-developers-docs": "የገንቢዎች ሰነዶች",
+ "nav-developers": "ገንቢዎች",
+ "nav-did-description": "የእርስዎን ልዩ ያልተማከሉ መለያዎች ይስጡ እና ባለቤት ይሁኑ",
+ "nav-docs-description": "Ethereumን ለመረዳት እና በእሱ ለመገንባት የሚያግዙ ሰነዶች",
+ "nav-docs-design-description": "የልዩ web3 ዲዛይን ፈተናዎች፣ ምርጥ ልምዶች እና የተጠቃሚ ምርምር ግንዛቤዎች መግለጫ",
+ "nav-docs-design-label": "የUX/UI ዲዛይን መሰረታዊ ነገሮች",
+ "nav-docs-foundation-description": "በEthereum ላይ ለማዳበር ዋና መሰረታዊ ነገሮች",
+ "nav-docs-foundation-label": "መሰረታዊ ርዕሰ ጉዳዮች",
+ "nav-docs-overview-description": "የእርስዎ መነሻ ለገንቢ ሰነዶች",
+ "nav-docs-stack-description": "የEthereum ቁልል ሁሉንም ዝርዝሮች ይረዱ",
+ "nav-docs-stack-label": "የኢቲሪየም ስታክ",
+ "nav-eip-description": "አዲስ ባህሪያትን ወይም ሂደቶችን የሚገልጹ ደረጃዎች",
+ "nav-eip-label": "EIPዎች - የEthereum ማሻሻያ ፕሮፖዛል",
+ "nav-emerging-description": "ለEthereum ሌሎች አዳዲስ የጉዳዩ ጥቅሞችን ይወቁ",
+ "nav-enterprise-description": "ለEthereum የንግድ መተግበሪያዎች",
+ "nav-ethereum-org-description": "ይህ ድረ ገጽ በማህበረሰብ የሚመራ ነው - ይቀላቀሉን እና እርስዎም ያዋጡ",
+ "nav-ethereum-wallets-description": "ከEthereum መለያዎ ጋር መገናኛ መተግበሪያ",
+ "nav-events-description": "ያልተማከለ እና ለማንኛውም ሰው የመሳተፍ ነፃነት",
+ "nav-events-irl-description": "በየወሩ በአካል እና በመስመር ላይ ዋና ዋና የEthereum ዝግጅቶች አሉ",
+ "nav-events-label": "ማህበረሰቦች እና ዝግጅቶች",
+ "nav-events-online-description": "በመቶ ሺዎች የሚቆጠሩ የEthereum አድናቂዎች በእነዚህ የመስመር ላይ ማህበረሰቦች ውስጥ ይጠለላሉ",
+ "nav-find-wallet-description": "ዋሌቶች ክሪፕቶ እንዲጠቀሙ ያስችሉዎታል",
+ "nav-find-wallet-label": "ዋሌትዎን ይምረጡ",
+ "nav-gas-fees-description": "የETH ግብይት ክፍያዎች እንዴት ይሰላሉ",
+ "nav-get-eth-description": "የEthereum መተግበሪያዎችን ለመጠቀም ኤተር (ETH) ያስፈልግዎታል",
+ "nav-get-started-description": "Ethereum ለመጠቀም የመጀመሪያ እርምጃዎችዎ",
+ "nav-governance-description": "የEthereum ፕሮቶኮልን ማሻሻል ውስጥ የተካተተው ሂደት",
+ "nav-grants-description": "የእርዳታ የገንዘብ ድጋፍ ፕሮግራሞችን በሚሰጡ ፕሮጀክቶች ላይ በማህበረሰባችን የተሰበሰበ ዝርዝር",
+ "nav-guide-create-account-description": "ማንኛውም ሰው በማንኛውም ጊዜ በኪስ ቦርሳ በነጻ የEthereum መለያ መፍጠር ይችላል",
+ "nav-guide-create-account-label": "የኢቲሪየም አካውንት እንዴት መፍጠር ይቻላል",
+ "nav-guide-revoke-access-description": "በEthereum ስነ ምህዳር ውስጥ ካሉ ዘመናዊ ኮንትራቶች እና መተግበሪያዎች ጋር ሲገናኙ ደህንነትዎን ይጠብቁ",
+ "nav-guide-revoke-access-label": "የዘመናዊ ኮንትራት መዳረሻን እንዴት መሻር እንደሚቻል",
+ "nav-guide-use-wallet-description": "የዋሌት ሁሉንም መሰረታዊ ተግባራት እንዴት እንደሚሠሩ ይወቁ",
+ "nav-guide-use-wallet-label": "ቦርሳ እንዴት መጠቀም ይቻላል",
+ "nav-guides-description": "ለመጀመር የሚያግዙ ተግባራዊ የደረጃ በደረጃ መመሪያዎች",
+ "nav-guides-label": "እንዴት እንደሚደረጉ መመሪያዎች",
+ "nav-history-description": "የሁሉም ዋና ዋና ፎርኮች እና ዝመናዎች የጊዜ መስመር",
+ "nav-history-label": "የEthereum ቴክኒካዊ ታሪክ",
+ "nav-layer-2-description": "ለEthereum ርካሽ እና ፈጣን ግብይቶች",
+ "nav-learn-by-coding-description": "በEthereum ለመሞከር የሚረዱዎት መሳሪያዎች",
+ "nav-local-env-description": "የእርስዎን የEthereum ልማት ቁልል ይምረጡ እና ያቀናብሩ",
+ "nav-mainnet-description": "የድርጅት ብሎክቼይን መተግበሪያዎች በይፋዊው Ethereum ዋና መረብ ላይ ሊገነቡ ይችላሉ",
+ "nav-nft-description": "ማንኛውንም ልዩ የሆነ ነገር የሚወከልበት መንገድ እንደ Ethereum-ተኮር ንብረት",
+ "nav-open-research-description": "ከEthereum ዋነኛ ጥንካሬዎች አንዱ ንቁ የምርምር ማህበረሰቡ ነው",
+ "nav-open-research-label": "ምርምሩን ይክፈቱ",
+ "nav-overview-description": "ሁሉም ነገሮች Ethereum ትምህርት",
+ "nav-overview-label": "አጠቃላይ እይታ",
+ "nav-participate-overview-description": "እንዴት መሳተፍ እንደሚቻል አጠቃላይ እይታ",
"nav-primary": "ዋነኛ",
- "nft-page": "የማይተኩ ቶከኖች (NFTs)",
+ "nav-quizzes-description": "Ethereumን እና ክሪፕቶከረንሲዎችን ምን ያህል እንደሚረዱ ይወቁ",
+ "nav-quizzes-label": "እውቀትዎን ይፈትሹ",
+ "nav-refi-description": "በመልሶ ማልማት መርሆዎች ላይ የተገነባ አማራጭ የኢኮኖሚ ስርዓት",
+ "nav-research-description": "Ethereumን ለማሻሻል ጥቅም ላይ የዋሉ ሂደቶች",
+ "nav-research-label": "ምርምር እና እድገት",
+ "nav-roadmap-description": "ለEthereum የበለጠ መስፋፋት፣ ደህንነት እና ዘላቂነት ያለው መንገድ",
+ "nav-roadmap-future-description": "Ethereumን እንደ ጠንካራ እና ያልተማከለ አውታረ መረብ ማጠናከር",
+ "nav-roadmap-future-label": "የወደፊቱን-ማረጋገጫ",
+ "nav-roadmap-label": "ዕቅድ",
+ "nav-roadmap-scaling-description": "የግብይት ወጪዎችን እና ፍጥነትን የበለጠ ለመቀነስ የአውታረ መረብ ዝመናዎች",
+ "nav-roadmap-security-description": "Ethereum ለወደፊቱ ሁሉንም አይነት ጥቃቶች የሚቋቋም መሆኑን ማረጋገጥ",
+ "nav-roadmap-security-label": "Ethereum ለወደፊቱ ሁሉንም አይነት ጥቃቶች የሚቋቋም መሆኑን ማረጋገጥ",
+ "nav-roadmap-ux-description": "Ethereumን መጠቀም ቀላል መሆን አለበት",
+ "nav-run-a-node-description": "የአውታረ መረቡን ደህንነት በማገዝ ሙሉ በሙሉ ሉዓላዊ ይሁኑ",
+ "nav-security-description": "ክሪፕቶከረንሲ ሲጠቀሙ ምርጥ ልምዶችን ይማሩ",
+ "nav-smart-contracts-description": "የEthereum ሥነ-ምህዳር መሰረታዊ ማነቆዎች",
+ "nav-stablecoins-description": "Stablecoins በቋሚ እሴት ላይ ለመቆየት የተነደፉ የEthereum ቶከኖች ናቸው",
+ "nav-stake-description": "Ethereumን ለማስጠበቅ ሽልማቶችን ያግኙ",
+ "nav-stake-label": "ስቴክ",
+ "nav-staking-home-description": "ስቴክ ለማድረግ የተለያዩ አማራጮች አጠቃላይ እይታ",
+ "nav-staking-home-label": "የቀብድ ማስያዝ የፊት-ገፅ",
+ "nav-staking-pool-description": "ከሌሎች ጋር በመቀላቀል በማንኛውም የETH መጠን ስቴክ ያድርጉ እንዲሁም ሽልማቶችን ያግኙ",
+ "nav-staking-pool-label": "የተዋሃዱ ቀብዶች",
+ "nav-staking-saas-label": "በአገልግሎት ስቴክ ማድረግ",
+ "nav-staking-solo-label": "የብቻ ስታኪንግ",
+ "nav-start-building-description": "ለአዲስ መጪዎች ጠቃሚ መረጃ",
+ "nav-translation-program-description": "ethereum.org ወደ ሁሉም ቋንቋዎች ለመተርጎም የትብብር ጥረት",
+ "nav-tutorials-description": "የተመረጡ የማህበረሰብ አጋዥ ስልጠናዎች ዝርዝር",
+ "nav-use-cases-description": "ለEthereum አጠቃቀም የተለያዩ ሀሳቦችን ያግኙ",
+ "nav-what-is-ether-description": "የEthereum መተግበሪያዎች መገበያያ ገንዘብ",
+ "nav-what-is-ethereum-description": "Ethereumን ልዩ የሚያደርገው ምን እንደሆነ ይረዱ",
+ "nav-what-is-web3-label": "Web3 ምንደን ነው?",
+ "nav-what-is-web3-description": "ደንቦቹን ከሚወስኑት የተማከሉ ሞኖፖሊዎች አማራጭ",
+ "nav-whitepaper-description": "በ2014 በቪታሊክ ቡቴሪን የተፃፈው ዋናው የEthereum ነጭ ወረቀት",
+ "nav-zkp-description": "መግለጫውን ራሱ ሳይገልጥ የመግለጫውን ትክክለኛነት የሚያረጋግጥበት መንገድ",
+ "nft-page": "NFTs - የማይተኩ ቶከኖች",
"nfts": "NFTዎች",
"no": "አይደለም",
"on-this-page": "በዚህ ገፅ ላይ",
@@ -140,6 +252,7 @@
"page-developers-aria-label": "የገንቢዎች መነሻ-ገጽ",
"page-index-meta-title": "መነሻ-ገጽ",
"page-last-updated": "ገፁ በቅርብ ጊዜ የዘመነው",
+ "participate-menu": "መሳተፊያ ምናሌ",
"pbs": "የፕሮፖሰር-ገንቢ መለያየት",
"pools": "የተዋሃዱ ቀብዶች",
"privacy-policy": "የግላዊነት ፖሊሲ",
@@ -150,10 +263,11 @@
"refresh": "አባኮዎትን ገጹን ያድሱ፡፡",
"return-home": "ወደ መነሻ-ገፅ ይመለሱ",
"roadmap": "የኢቲሪየም ፍኖተ ካርታ",
+ "research": "ምርምር",
+ "research-menu": "የምርምር ምናሌ",
"resources": "የትርጉም ምንጮች",
- "regenerative-finance": "መልሶ ማልሚያ ፋይናንስ (ReFi)",
+ "regenerative-finance": "ReFi - መልሶ ማልሚያ ፋይናንስ",
"run-a-node": "ኖድ ማንቀሳቀስ ይጀምሩ",
- "rollup-component-website": "Website",
"rollup-component-developer-docs": "የገንቢዎች ሰነዶች",
"rollup-component-technology-and-risk-summary": "የቴክኖሎጂ እና የስጋት ማጠቃለያ",
"scaling": "ማሳደግ",
@@ -168,19 +282,16 @@
"statelessness": "ይዞታ አልባነት",
"see-contributors": "አስተዋጽዖ አበርካቾችን ይመልከቱ",
"set-up-local-env": "ሎካል ኢንቫይሮመንተ ያዘጋጁ",
- "sharding": "Sharding",
"show-all": "ሁሉንም አሳይ",
"show-less": "ቀንሰህ አሳይ",
"site-description": "ኢቴሪየም ለገንዘብ እና አዲስ ዓይነት መተግበሪያዎች የሚውል ዓለም አቀፍ፣ ያልተማከለ መድረክ ነው። \nበኢቴሪየም ላይ ገንዘብን የሚቆጣጠር ኮድ መጻፍ ይችላሉ፣ እና በዓለም ላይ በየትኛውም ቦታ የሚገኙ መተግበሪያዎችን መገንባት ይችላሉ።.",
- "site-title": "ethereum.org",
"skip-to-main-content": "ወደ ዋናው ይዘት ይዝለሉ",
"smart-contracts": "ስማርት ኮንትራቶች",
"stablecoins": "ስቴብልኮይኖች",
"stake-eth": "ETHን ያስይዙ",
"staking": "ቀብድ ማስያዝ",
"start-here": "እዚህ ጋር ይጀምሩ",
- "style-guide": "Style guide",
- "solo": "የብቸኛ ቀብዶች",
+ "solo": "የብቻ ስታኪንግ",
"terms-of-use": "የአጠቃቀም መመሪያ",
"translation-banner-body-new": "ይህን ገጽ ገና ስላልተረጎምነው በእንግሊዝኛ እያዩት ነው። ይህንን ይዘት ለመተርጎም ይርዱን።",
"translation-banner-body-update": "የዚህ ገጽ አዲስ ስሪት አለ ግን አሁን በእንግሊዝኛ ብቻ ነው። የቅርብ ጊዜውን ስሪት ለመተርጎም ይረዱን።",
@@ -191,17 +302,19 @@
"translation-banner-no-bugs-title": "አዚህ ምንም ችግር የለም!",
"translation-banner-no-bugs-content": "ይህ ገጽ እየተተረጎመ አይደለም። ለጊዜው ይህ ገጽ በእንግሊዝኛ ብቻ እንዲሆን ትተነዋል።",
"translation-banner-no-bugs-dont-show-again": "ድጋሚ እንዳታሳይ",
+ "translation-program": "የትርጉም ፕሮግራም",
"try-using-search": "የሚፈልጉትን ለማግኘት ይፈልጉ የሚለውን ይጠቀሙ ወይም",
"tutorials": "ስልጠናዎች",
"up": "ወደ ላይ",
+ "use": "ጥቅም",
"use-ethereum": "ኢቲሪየምን ይጠቀሙ",
"use-ethereum-menu": "የኢቲሪየም ማውጫን ይጠቀሙ",
+ "use-menu": "የጥቅም ምናሌ",
"user-experience": "የተጠቃሚው ልምድ",
"verkle-trees": "የቨርክል ዛፎች",
"wallets": "ቦርሳዎች",
"we-couldnt-find-that-page": "ያሉትን ገፅ ልናገኝ አልቻልንም",
"web3": "Web3 ምንደን ነው?",
- "web3-title": "Web3",
"website-last-updated": "ድህረ-ገጹ ለመጨረሻ ጊዜ የተሻሻለበት",
"what-is-ether": "Ether (ETH) ምንድን ነው?",
"what-is-ethereum": "ኢቴርየምን ምንድን ነው?",
diff --git a/src/intl/am/page-languages.json b/src/intl/am/page-languages.json
index 8beba82967c..04225a6b9a7 100644
--- a/src/intl/am/page-languages.json
+++ b/src/intl/am/page-languages.json
@@ -17,45 +17,39 @@
"page-languages-translated": "ተተርጉሟል",
"page-languages-words": "ቃላት",
"page-languages-recruit-community": "ethereum.org እንድንተረጉም ይርዱን።",
- "langauge-am": "Amharic",
+ "langauge-am": "አማርኛ",
"language-ar": "አረብኛ",
"language-az": "አዘርባጃንኛ",
- "langauge-be": "Belarusian",
+ "langauge-be": "ቤላሩስኛ",
"language-bg": "ቡልጋርያኛ",
"language-bn": "ቤንጋሊኛ",
- "language-bs": "Bosnian",
+ "language-bs": "ቦስኒያኛ",
"language-ca": "ካታላንኛ",
- "language-cs": "Czech",
"language-da": "ዳኒሸኛ",
- "language-de": "German",
"language-el": "ግሪክኛ",
"language-en": "እንግሊዝኛ",
- "language-es": "Spanish",
"language-fa": "ፋርስኛ",
"language-fi": "ፊኒሽኛ",
- "language-fr": "French",
"language-gl": "ጋሊሺያኛ",
"language-gu": "ጉጅራቲኛ",
"language-he": "እብራይስጥ",
"language-hi": "ህንደኛ",
"language-hr": "ክሮሺያኛ",
"language-hu": "ሃጋሪኛ",
- "language-hy-am": "Armenian",
+ "language-hy-am": "አርመንኛ",
"language-id": "ኢንዶኔዢያኛ",
"language-ig": "የኢግቦ ቋንቋ",
- "language-it": "Italian",
- "language-ja": "Japanese",
"language-ka": "ጆርጂያኛ",
"language-kk": "ካዛክኛ",
- "language-km": "ክመርኛ",
- "language-kn": "Kannada",
+ "language-km": "ካህመርኛ",
+ "language-kn": "ካናዳኛ",
"language-ko": "ኮርያኛ",
"language-lt": "ሉቲኒያኛ",
"language-ml": "የማላያላም ቋንቋ",
"language-mr": "የማራቲ ቋንቋ",
"language-ms": "ማላይኛ",
"language-nb": "ኖርዌጂያኛ",
- "language-ne-np": "Nepali",
+ "language-ne-np": "ኔፓልኛ",
"language-nl": "ደች",
"language-pcm": "የናይጀሪያ ፒድጊን",
"language-fil": "ፊልፒንኛ",
@@ -63,7 +57,6 @@
"language-pt": "ፖርቹጋልኛ",
"language-pt-br": "ፖርቹጋልኛ(የብራዚል)",
"language-ro": "ሮማንያንኛ",
- "language-ru": "Russian",
"language-se": "ስዊድንኛ",
"language-sk": "ስሎቫክኛ",
"language-sl": "ስሎቬንያኛ",
@@ -71,12 +64,10 @@
"language-sw": "የስዋሂሊ ቋንቋ",
"language-ta": "ታሚልኛ",
"language-th": "የታይ ቋንቋ",
- "language-tk": "Turkmen",
- "language-tr": "Turkish",
+ "language-tk": "ቱርክሜንኛ",
"language-uk": "ዩክሬንኛ",
"language-ur": "ኡድሩኛ",
"language-uz": "ኡዝቤክኛ",
- "language-vi": "Vietnamese",
"language-zh": "ቻይንኛ (ቀላሉ)",
"language-zh-tw": "ቻይንኛ (ባህላዊ)"
}
diff --git a/src/intl/am/page-wallets-find-wallet.json b/src/intl/am/page-wallets-find-wallet.json
index f791806e528..a6c69459276 100644
--- a/src/intl/am/page-wallets-find-wallet.json
+++ b/src/intl/am/page-wallets-find-wallet.json
@@ -7,7 +7,6 @@
"page-find-wallet-meta-title": "የኢቴርየም ቦርሳ ያግኙ",
"page-find-wallet-title": "ቦርሳ ያግኙ",
"page-find-wallet-try-removing": "አንድ ወይም ሁለት ባህሪን ለማስወገድ ይሞክሩ",
- "page-find-wallet-choose-to-compare": "ለማነፃፀር ይምረጡ",
"page-stake-eth": "ETHን ያስይዙ",
"page-find-wallet-open-source": "Open source",
"page-find-wallet-open-source-desc": "ክፍት-ምንጭ ሶፍትዌር ማንኛውም ሰው የመተግበሪያውን ትክክለኛነት እና ደህንነት እንዲመረምር ያስችለዋል።",
@@ -16,8 +15,6 @@
"page-find-wallet-non-custodial-desc": "የግል ቁልፎችዎን የማይቆጣጠሩ ቦርሳዎች።",
"page-find-wallet-hardware-wallet-support": "የሃርድዌር ቦርሳ ድጋፍ",
"page-find-wallet-hardware-wallet-support-desc": "ለተሻለ ደህንነት ከሃርድዌር ቦርሳ ጋር መገናኘት የሚችሉ ቦርሳዎች",
- "page-find-wallet-walletconnect": "WalletConnect",
- "page-find-wallet-walletconnect-desc": "ከdapps ጋር ለመገናኘት WalletConnectን የሚደግፉ ቦርሳዎች",
"page-find-wallet-rpc-importing": "RPCን ማስመጣት",
"page-find-wallet-rpc-importing-desc": "ከተለያዩ ኖድዎች ወይም አውታረ-መረቦች ጋር የሚያገናኙ ብጁ RPC መጨረሻ ነጥቦችን የሚደግፉ ቦርሳዎች",
"page-find-wallet-nft-support": "የNFT ድጋፍ",
@@ -36,8 +33,6 @@
"page-find-wallet-ens-support-desc": "የኢቴርየም ስም አገልግሎትን(ENS) የሚደግፉ ቦርሳዎች",
"page-find-wallet-token-importing": "ቶከኖችን ማስመጣት",
"page-find-wallet-token-importing-desc": "በቦርሳ ውስጥ ለመጠቀም ማንኛውንም ERC-20 ቶከን ያስመጡ",
- "page-find-wallet-fee-optimization": "ክፍያን ማመቻቸት",
- "page-find-wallet-fee-optimization-desc": "ለተመቻቹ የጋዝ ክፍያዎች እና ጥቅም ላይ ያልዋለ ጋዝ ክፍያን ተመላሽ ለማግኘት አይነት 2 ግብይቶችን ይደግፉ",
"page-find-wallet-buy-crypto": "ክሪፕቶን ይግዙ",
"page-find-wallet-buy-crypto-desc": "ከቦርሳ በቀጥታ በብር ኖት ክሪፕቶን ይግዙ\n *ማስታወሻ፡ ክሪፕቶን መግዛት እንደየ ሀገሩ ሊለያይ ይችላል",
"page-find-wallet-sell-for-fiat": "ወደ ገንዘብ ኖት ይሽጡ",
@@ -46,7 +41,6 @@
"page-find-wallet-multisig-desc": "ግብይትን ለመፍቀድ ከአንድ በላይ ፊርማዎችን የሚጠይቁ ቦርሳዎች",
"page-find-wallet-social-recovery": "ማህበራዊ ማገገም",
"page-find-wallet-social-recovery-desc": "የዘመናዊ ውል ቦርሳዎችን የመፈረሚያ ቁልፍ ለጠባቂዎች እንዲቀይሩ የሚያስችሉ ቦርሳዎች",
- "page-find-wallet-token-support": "የቶከን ድጋፍ",
"page-find-wallet-features": "Features",
"page-find-wallet-security": "Security",
"page-find-wallet-smart-contract": "Smart contract",
@@ -63,7 +57,6 @@
"page-find-wallet-chromium": "Chromium",
"page-find-wallet-firefox": "Firefox",
"page-find-wallet-hardware": "Hardware",
- "page-find-wallet-hardware-desc": "ሃርዳዌር ቦርሳዎች",
"page-find-wallet-new-to-crypto-title": "ለክሪፕቶ አዲስ",
"page-find-wallet-new-to-crypto-desc": "የመጀመሪያው ቦርሳዎን የሚፈልጉ አዲስ ተጠቃሚ ነዎት",
"page-find-wallet-nfts-title": "NFTዎች",
@@ -74,21 +67,13 @@
"page-find-wallet-finance-desc": "DeFiን የሚጠቀሙ እና ከDeFi መተግበሪያዎች ጋር መገናኘት የሚያስችል ቦርሳ የሚፈልጉ ሰው ነዎት",
"page-find-wallet-developer-title": "የሶፍትዌር ገንቢ",
"page-find-wallet-developer-desc": "የሶፍትዌር ገንቢ ነዎት እና dappsን ለመገንባት እና ለመሞከር ቦርሳ ያስፈልግዎታል",
- "page-find-wallet-persona-desc": "ከእርስዎ የተጠቃሚ አይነት ጋር የሚዛመደውን መግለጫ ይምረጡ እና የቦርሳ ዝርዝሩን ያጣሩ",
"page-find-wallet-filters": "ማጣሪያዎች",
"page-find-wallet-active": "ንቁ",
- "page-find-wallet-profile-filters": "የመገለጫ ማጣሪያ",
- "page-find-wallet-feature-filters": "የባህርያት ማጣሪያዎች",
"page-find-wallet-footnote-1": "በዚህ ገጽ ላይ የተዘረዘሩ ቦርሳዎች ይፋዊ ማረጋገጫዎች አይደሉም፣ እና እዚህ የቀረቡት ለመረጃ አገልግሎት ብቻ ነው።",
"page-find-wallet-footnote-2": "የእነሱ መግለጫዎች በራሳቸው የቦርሳ ፕሮጀክቶች ቀርበዋል፡፡",
"page-find-wallet-footnote-3": "በእኛ ዝርዝር ፖሊሲ ውስጥ ባሉ መስፈርቶች መሰረት ምርቶችን ወደዚህ ገጽ እንጨምራለን። ቦርሳ እንድንጨምር ከፈለጉ በGitHub ላይ ችግሮን ያንሱ።",
"page-find-wallet-mobile": "ሞባይል",
- "page-find-wallet-mobile-desc": "የሞባይል መተግበሪያ ያላቸው ቦርሳዎች",
"page-find-wallet-desktop": "ዴስክቶፕ",
- "page-find-wallet-desktop-desc": "የዴስክቶፕ መተግበሪያ ያላቸው መተግበሪያዎች",
"page-find-wallet-browser": "የድረገጽ ማሰሻ",
- "page-find-wallet-browser-desc": "የድረገጽ ማሰሻ ቅጥያ ያላቸው ቦርሳዎች",
- "page-find-wallet-device": "መሳሪያ",
- "page-find-choose-to-compare": "ለማነፃፀር ይምረጡ",
- "page-find-wallet-choose-features": "ባህርያትን ይምረጡ"
+ "page-find-wallet-device": "መሳሪያ"
}
diff --git a/src/intl/ar/common.json b/src/intl/ar/common.json
index 1e0aea21d31..f5a4c6f0cc0 100644
--- a/src/intl/ar/common.json
+++ b/src/intl/ar/common.json
@@ -1,17 +1,30 @@
{
- "account-abstraction": "تجريد حساب",
"about-ethereum-org": "نبذة عن ethereum.org",
"about-us": "نبذة عنا",
+ "adding-desci-projects": "إضافة مشاريع علمية لامركزية",
+ "adding-developer-tools": "إضافة أدوات المبرمج",
+ "adding-exchanges": "إضافة مبادلات",
+ "adding-glossary-terms": "إضافة مصطلحات المسرد",
+ "adding-layer-2s": "إضافة الطبقة الثانية",
+ "adding-staking-products": "إضافة منتجات تجميد العملات",
+ "adding-wallets": "إضافة محافظ",
+ "account-abstraction": "تجريد الحساب",
+ "acknowledgements": "الإقرارات",
"aria-toggle-search-button": "تبديل زر البحث",
"aria-toggle-menu-button": "تبديل زر القائمة",
"beacon-chain": "سلسلة المنارة",
- "bridges": "جسور سلسلة الكتل",
+ "bridges": "جسور البلوكتشين",
+ "bug-bounty": "مكافأة اكتشاف الخلل",
+ "build": "بناء",
+ "build-menu": "بناء القائمة",
"clear": "مسح",
"close": "إغلاق",
"community": "المجتمع",
"community-hub": "مركز المجتمع",
"community-menu": "قائمة المجتمع",
"contact": "تواصل",
+ "content-buckets": "مجموعات المحتوى",
+ "content-resources": "موارد المحتوى",
"content-standardization": "توحيد المحتوى",
"contributing": "المساهمة",
"contributors": "المساهمون",
@@ -20,14 +33,17 @@
"copied": "تم النسخ",
"copy": "نسخ",
"danksharding": "Danksharding",
- "dao-page": "المنظمات المستقلة اللامركزية (DAO)",
+ "dao-page": "DAO - المنظمات المستقلة اللامركزية",
"dark-mode": "داكن",
"data-provided-by": "مصدر البيانات:",
- "decentralized-applications-dapps": "التطبيقات اللامركزية (dapps)",
+ "decentralized-applications-dapps": "Dapps - التطبيقات اللامركزية",
"decentralized-identity": "الهوية اللامركزية",
"decentralized-social-networks": "الشبكات الاجتماعية اللامركزية",
- "decentralized-science": "لا مركزية العلوم (DeSci)",
- "defi-page": "التمويل اللامركزي (DeFi)",
+ "decentralized-science": "DeSci - لا مركزية العلوم",
+ "description": "وصف عنصر التنقل",
+ "defi-page": "DeFi - التمويل اللامركزي",
+ "design": "التصميم",
+ "design-principles": "مبادئ التصميم",
"devcon": "ديفكون",
"developers": "المبرمجون",
"developers-home": "الصفحة الرئيسية للمبرمجين",
@@ -83,22 +99,22 @@
"feedback-card-prompt-tutorial": "هل كانت تعليمات الاستخدام هذه مفيدة؟",
"feedback-widget-thank-you-title": "شكرًا لك على إبداء ملاحظاتك!",
"feedback-widget-thank-you-subtitle": "اجعل هذه الصفحة أفضل من خلال الإجابة عن بعض الأسئلة.",
- "feedback-widget-thank-you-subtitle-ext": "إذا كنت بحاجة إلى المساعدة، فإنه يمكنك التواصل مع المجتمع على Discord.",
+ "feedback-widget-thank-you-subtitle-ext": "إذا كنت بحاجة إلى المساعدة، يمكنك التواصل مع المجتمع على Discord.",
"feedback-widget-thank-you-timing": "٢-٣ دقائق",
"feedback-widget-thank-you-cta": "فتح استبيان قصير",
"find-wallet": "البحث عن المحفظة",
"future-proofing": "إثبات مستقبلي",
- "get-eth": "الحصول إلى إثير",
+ "get-eth": "احصل على عملات إثير",
"get-involved": "المشاركة",
- "get-started": "بدء الاستخدام",
+ "get-started": "ابدأ الاستخدام",
"grants": "منح",
"grant-programs": "برامج منح النظام البيئي",
"guides": "الأدلة",
- "guides-hub": "مركز الأدلة",
+ "guides-hub": "أدلة إرشادية",
"history-of-ethereum": "تاريخ إثيريوم",
"home": "الصفحة الرئيسية",
"how-ethereum-works": "كيفية عمل إثيريوم",
- "how-to-register-an-ethereum-account": "كيفية \"تسجيل\" حساب إثيريوم",
+ "how-to-create-an-ethereum-account": "كيف \"تُنشئ\" حساب إيثريوم",
"how-to-revoke-token-access": "كيفية إلغاء وصول العقد الذكي إلى أموال العملات المشفرة",
"how-to-swap-tokens": "كيفية مبادلة الرموز المميزة",
"how-to-use-a-bridge": "كيفية نقل الرموز المميزة عبر جسر إلى الطبقة 2",
@@ -115,7 +131,7 @@
"last-edit": "آخر تعديل",
"layer-2": "الطبقة ٢",
"learn": "تعلّم",
- "learn-by-coding": "تعلّم عن طريق البرمجة",
+ "learn-by-coding": "تعلم عن طريق البرمجة",
"learn-hub": "مركز التعلم",
"learn-menu": "قائمة التعلّم",
"learn-more": "معرفة المزيد",
@@ -128,18 +144,122 @@
"loading-error-try-again-later": "يتعذر تحميل البيانات، يُرجى إعادة المحاولة لاحقًا.",
"logo": "الشعار",
"mainnet-ethereum": "إثيريوم للشبكة الرئيسية",
+ "merge": "دمج",
"more": "المزيد",
- "nav-developers": "المبرمجون",
+ "nav-about-description": "مشروع عام مفتوح المصدر لمجتمع إيثيريوم",
+ "nav-advanced-description": "تعلّم أكثر المواضيع تعقيدًا",
+ "nav-advanced-label": "إعدادات متقدمة",
+ "nav-basics-description": "فهم أساسيات إيثيريوم",
+ "nav-basics-label": "الأساسيات",
+ "nav-bridges-description": "لقد تطور الإصدار الثالث من الويب Web3 إلى منظومة من البلوكتشين من الطبقة الأولى الأساسية وحلول التوسع من الطبقة الثانية",
+ "nav-builders-home-description": "دليل مبرمجي إيثيريوم—من المطورين، للمطورين",
+ "nav-builders-home-label": "الصفحة الرئيسية للمطورين",
+ "nav-contribute-description": "إذا كنت تريد المساعدة، فهذا سيوجهك",
+ "nav-contribute-label": "الإسهام في ethereum.org",
+ "nav-dao-description": "المجتمعات التي يمتلكها الأعضاء من دون سلطة مركزية",
+ "nav-dapps-description": "استكشف منظومة غنية من التطبيقات باستخدام إيثريوم",
+ "nav-defi-description": "بديل عالمي مفتوح عن السوق المالية التقليدية",
+ "nav-desci-description": "بديل عالمي مفتوح عن النظام العلمي الحالي",
+ "nav-desoc-description": "منصات قائمة على البلوكتشين للتفاعل الاجتماعي وإنشاء المحتوى",
"nav-developers-docs": "وثائق المبرمجين",
+ "nav-developers": "المبرمجون",
+ "nav-did-description": "يمكنك إصدار المعرّفات اللامركزية الفريدة الخاصة بك وامتلاكها",
+ "nav-docs-description": "مستندات لمساعدتك على الفهم والبناء باستخدام إيثريوم",
+ "nav-docs-design-description": "وصف للتحديات وأفضل الممارسات ونتائج بحث المستخدم المتعلقة بتصميم الإصدار الثالث من الويب web3",
+ "nav-docs-design-label": "أساسيات تصميم تجربة المستخدم/واجهة المستخدم",
+ "nav-docs-foundation-description": "الأساسيات الجوهرية للتطوير اعتمادًا على إيثريوم",
+ "nav-docs-foundation-label": "مواضيع أساسية",
+ "nav-docs-overview-description": "الصفحة الرئيسية لمستندات المبرمج",
+ "nav-docs-stack-description": "فهم جميع التفاصيل المتعلقة بحزمة إيثيريوم",
+ "nav-docs-stack-label": "كومة ايثيريوم",
+ "nav-eip-description": "المعايير التي تحدد الميزات أو العمليات الجديدة",
+ "nav-eip-label": "EIP - مقترحات تحسين إيثيريوم",
+ "nav-emerging-description": "تعرَّف على أحدث حالات استخدام إيثريوم الأخرى",
+ "nav-emerging-label": "حالات الاستخدام الناشئة",
+ "nav-enterprise-description": "تطبيقات إيثريوم للأعمال",
+ "nav-ethereum-org-description": "هذا الموقع الإلكتروني يقوده المجتمع—انضم إلينا وساهم أيضًا",
+ "nav-ethereum-wallets-description": "تطبيق للتفاعل مع حساب إيثريوم الخاص بك",
+ "nav-events-description": "اللامركزية وحرية المشاركة لأي شخص",
+ "nav-events-irl-description": "تقام أحداث كبرى تخص إيثريوم بشكل شخصي أو على الإنترنت كل شهر",
+ "nav-events-label": "المجتمعات والأحداث",
+ "nav-events-online-description": "ينشأ مئات الآلاف من المتحمسين لإيثريوم في تلك المجتمعات على الإنترنت",
+ "nav-find-wallet-description": "تتيح لك المحافظ استخدام العملات الرقمية",
+ "nav-find-wallet-label": "اختر محفظتك",
+ "nav-gas-fees-description": "كيف يتم حساب رسوم تحويل ETH",
+ "nav-gas-fees-label": "رسوم الغاز",
+ "nav-get-eth-description": "تحتاج إلى ether (ETH) لاستخدام تطبيقات إيثريوم",
+ "nav-get-started-description": "خطواتك الأولى لاستخدام إيثريوم",
+ "nav-governance-description": "العملية التي تنطوي عليها ترقية بروتوكول إيثريوم",
+ "nav-governance-label": "إرشادات",
+ "nav-grants-description": "قائمة منسقة من قِبل مجتمعنا عن المشاريع التي تقدم برامج التمويل بالمِنح",
+ "nav-guide-create-account-description": "يمكن لأي شخص إنشاء حساب إيثريوم في أي وقت وبشكل مجاني باستخدام تطبيق محفظة",
+ "nav-guide-create-account-label": "كيف تُنشئ حساب إيثريوم",
+ "nav-guide-revoke-access-description": "حافظ على أمانك عند التفاعل مع العقود الذكية والتطبيقات في منظومة إيثريوم",
+ "nav-guide-revoke-access-label": "كيفية إلغاء وصول العقد الذكي",
+ "nav-guide-use-wallet-description": "تعرَّف على كيفية تشغيل جميع الوظائف الأساسية للمحفظة",
+ "nav-guide-use-wallet-label": "كيفية استخدام محفظة",
+ "nav-guides-description": "إرشادات عملية خطوة بخطوة لمساعدتك على البدء",
+ "nav-guides-label": "أدلة إرشادية",
+ "nav-history-description": "جدول زمني لجميع التَّفَرُّعات والتحديثات الرئيسية",
+ "nav-history-label": "التاريخ الفني للإيثريوم",
+ "nav-layer-2-description": "معاملات أرخص وأسرع لإيثريوم",
+ "nav-learn-by-coding-description": "أدوات ستساعدك على تجربة إيثريوم",
+ "nav-local-env-description": "اختر حزمة تطوير إيثريوم الخاصة بك وقم بإعدادها",
+ "nav-mainnet-description": "يمكن بناء تطبيقات بلوكتشين الخاصة بالشركات على شبكة إيثريوم الرئيسية العامة",
+ "nav-nft-description": "طريقة لتمثيل أي شيء فريد بوصفه أصلاً مستندًا إلى إيثريوم",
+ "nav-open-research-description": "تُعَد إحدى نقاط القوة الأساسية في إيثريوم هي مجتمع البحوث النشط الخاص به",
+ "nav-open-research-label": "البحث المفتوح",
+ "nav-overview-description": "كل ما يتعلق بالمحتوى التعليمي عن إيثريوم",
+ "nav-overview-label": "نظرة عامة",
+ "nav-participate-overview-description": "نظرة عامة إلى طريقة المشاركة",
"nav-primary": "رئيسي",
- "nft-page": "رموز رقمية غير قابلة للاستبدال (NFT)",
+ "nav-quizzes-description": "اكتشف مدى فهمك لإيثريوم والعملات الرقمية",
+ "nav-quizzes-label": "اختبر معلوماتك",
+ "nav-refi-description": "نظام اقتصادي بديل قائم على أُسُس متجددة",
+ "nav-research-description": "العمليات المتبعة لتحسين إيثريوم",
+ "nav-research-label": "البحث والتطوير",
+ "nav-roadmap-description": "الطريق إلى زيادة إمكانية توسيع نطاق إيثريوم وأمنه واستدامته",
+ "nav-roadmap-future-description": "ترسيخ إيثريوم بوصفه شبكة قوية ولامركزية",
+ "nav-roadmap-future-label": "إثبات مستقبلي",
+ "nav-roadmap-label": "خريطة الطريق",
+ "nav-roadmap-scaling-description": "تحديثات الشبكة لتقليل تكاليف المعاملات والوقت الذي تستغرقه بشكل أكبر",
+ "nav-roadmap-security-description": "التأكد من حفاظ إيثريوم على مرونته في مواجهة جميع أنواع الهجمات في المستقبل",
+ "nav-roadmap-security-label": "تحسين الأمان",
+ "nav-roadmap-ux-description": "يلزم تبسيط استخدام إيثريوم",
+ "nav-run-a-node-description": "تمتع بالسيادة الكاملة في أثناء المساعدة على تأمين الشبكة",
+ "nav-security-description": "تعلّم أفضل الممارسات عند استخدام العملة الرقمية",
+ "nav-smart-contracts-description": "المكونات الأساسية لمنظومة إيثريوم",
+ "nav-stablecoins-description": "العملات المستقرة هي رموز لإيثريوم مصممة للبقاء عند قيمة ثابتة",
+ "nav-stake-description": "اربح المكافآت مقابل حماية إيثريوم",
+ "nav-stake-label": "تجميد العملات",
+ "nav-staking-home-description": "نظرة عامة إلى الخيارات المختلفة لتجميد العملات",
+ "nav-staking-home-label": "الصفحة الرئيسية للمراهنة",
+ "nav-staking-pool-description": "جمّد العملات واربح مكافآت بأي مبلغ من ETH من خلال الانضمام إلى الآخرين",
+ "nav-staking-pool-label": "تجميد العملات المجمّع",
+ "nav-staking-saas-description": "تتولى جهة خارجية مختصة بتشغيل العقد عمليات تشغيل عميلك المدقق",
+ "nav-staking-saas-label": "تجميد العملات باستخدام خدمة",
+ "nav-staking-solo-description": "تشغيل الأجهزة المنزلية، وتعزيز أمان ولامركزية شبكة إيثريوم بشكلٍ شخصي",
+ "nav-staking-solo-label": "تجميد العملات الفردي",
+ "nav-start-building-description": "معلومات مفيدة للمستجدين",
+ "nav-translation-program-description": "جهد تعاوني لترجمة موقع ethereum.org إلى جميع اللغات",
+ "nav-tutorials-description": "قائمة منسقة من تعليمات الاستخدام المجتمعية",
+ "nav-use-cases-description": "اكتشف أفكارًا مختلفة لاستخدام إيثريوم",
+ "nav-what-is-ether-description": "عملة تطبيقات إيثريوم",
+ "nav-what-is-ethereum-description": "فهم ما يميز إيثريوم",
+ "nav-what-is-web3-label": "ما هو Web3؟",
+ "nav-what-is-web3-description": "بديل عن الاحتكارات المركزية التي تفرض القواعد",
+ "nav-whitepaper-description": "المستند الفني الأصلي لإيثريوم الذي أعده فيتاليك بوتيرين في عام 2014",
+ "nav-zkp-description": "طريقة لإثبات صحة مسألة ما دون الحاجة إلى كشف هذه المسألة",
+ "nft-page": "NFT - رموز رقمية غير قابلة للاستبدال",
"nfts": "الرموز المميزة غير القابلة للاستبدال",
"no": "لا",
"on-this-page": "في هذه الصفحة",
"open-research": "البحث المفتوح",
- "page-developers-aria-label": "قائمة المطورين",
+ "page-developers-aria-label": "قائمة المبرمجين",
"page-index-meta-title": "الصفحة الرئيسية",
"page-last-updated": "آخر تحديث للصفحة",
+ "participate": "المشاركة",
+ "participate-menu": "قائمة المشاركة",
"pbs": "الفصل بين المقدم والمنشيء",
"pools": "تجميد العملات المجمّع",
"privacy-policy": "سياسة الخصوصية",
@@ -150,9 +270,11 @@
"refresh": "يُرجى تحديث الصفحة.",
"return-home": "العودة إلى الرئيسية",
"roadmap": "خارطة طريق إثيريوم",
+ "research": "البحوث",
+ "research-menu": "قائمة البحوث",
"resources": "مصادر الترجمة",
- "regenerative-finance": "التمويل المتجدد (ري فاي)",
- "run-a-node": "تشغيل عقدة",
+ "regenerative-finance": "ري فاي - التمويل المتجدد",
+ "run-a-node": "إضافة عقدة",
"rollup-component-website": "الموقع الإلكتروني",
"rollup-component-developer-docs": "وثائق المبرمج",
"rollup-component-technology-and-risk-summary": "ملخص التكنولوجيا والخطر",
@@ -164,10 +286,11 @@
"search-box-blank-state-text": "البحث بعيدًا!",
"search-eth-address": "يبدو هذا كعنوان إثيريوم. نحن لا نقدم بيانات محددة للعناوين. حاول البحث عنه في مستكشف كتلة مثل",
"search-no-results": "لا توجد نتائج لهذا البحث",
+ "security": "الأمان",
"single-slot-finality": "نهائية فتحة واحدة",
"statelessness": "انعدام الجنسية",
"see-contributors": "عرض المساهمين",
- "set-up-local-env": "إعداد البيئة المحلية",
+ "set-up-local-env": "إعداد البيئة المحلية الخاصة بك",
"sharding": "التقسيم",
"show-all": "إظهار الكل",
"show-less": "إظهار أقل",
@@ -175,12 +298,12 @@
"site-title": "ethereum.org",
"skip-to-main-content": "تخطٍ إلى المحتوى الرئيسي",
"smart-contracts": "العقود الذكية",
- "stablecoins": "العملات الثابتة",
+ "stablecoins": "العملات المستقرة",
"stake-eth": "تجميد عملات إثير",
"staking": "تجميد العملات",
"start-here": "البدء من هنا",
- "style-guide": "Style guide",
"solo": "تجميد العملات الفردي",
+ "support": "الدعم",
"terms-of-use": "شروط الاستخدام",
"translation-banner-body-new": "ترى هذه الصفحة بالإنجليزية لأننا لم نترجمها بعد. ساعدنا في ترجمة هذا المحتوى.",
"translation-banner-body-update": "هناك نسخة جديدة من هذه الصفحة لكنها باللغة الإنجليزية فقط الآن. ساعدنا في ترجمة أحدث نسخة.",
@@ -191,20 +314,23 @@
"translation-banner-no-bugs-title": "لا توجد أخطاء هنا!",
"translation-banner-no-bugs-content": "هذه الصفحة ليست مترجمة. لقد تركنا هذه الصفحة باللغة الإنجليزية بشكل متعمد للوقت الحالي.",
"translation-banner-no-bugs-dont-show-again": "عدم الإظهار مجدّدًا",
+ "translation-program": "برنامج الترجمة",
"try-using-search": "حاول استخدام البحث للعثور على ما تبحث عنه أو",
"tutorials": "تعليمات الاستخدام",
"up": "فوق",
+ "use": "الاستخدام",
"use-ethereum": "استخدام إثيريوم",
"use-ethereum-menu": "استخدام قائمة إثيريوم",
+ "use-menu": "قائمة الاستخدام",
"user-experience": "تجربة المستخدم",
"verkle-trees": "أشجار فيركل",
- "wallets": "المحافظ",
+ "wallets": "المحافظ الإلكترونية",
"we-couldnt-find-that-page": "لا يمكننا العثور على تلك الصفحة",
"web3": "ما هو Web3؟",
- "web3-title": "Web3",
+ "web3-title": "الإصدار الثالث من الويب. تم اقتراح Web3 لأول مرة من قبل الدكتور جافين وود، ويمثل رؤية جديدة وتركيزًا لتطبيقات الويب - من التطبيقات المملوكة والمدارة مركزيًا ، إلى التطبيقات المبنية على البروتوكولات اللامركزية (انظر Dapp)",
"website-last-updated": "آخر تحديث للموقع",
- "what-is-ether": "ما إيثر (ETH)؟",
- "what-is-ethereum": "ما هو الإثيريوم؟",
+ "what-is-ether": "ما إثير (ETH)؟",
+ "what-is-ethereum": "ما إثيريوم؟",
"withdrawals": "عمليات سحب تجميد العملات",
"yes": "نعم",
"zero-knowledge-proofs": "براهين المعرفة الصفرية"
diff --git a/src/intl/ar/page-languages.json b/src/intl/ar/page-languages.json
index 9a46aea4e51..8f24be831ac 100644
--- a/src/intl/ar/page-languages.json
+++ b/src/intl/ar/page-languages.json
@@ -17,7 +17,7 @@
"page-languages-translated": "تمت الترجَمة",
"page-languages-words": "من الكلمات",
"page-languages-recruit-community": "ساعدنا على ترجَمة ethereum.org.",
- "langauge-am": "Amharic",
+ "langauge-am": "الأمهرية",
"language-ar": "العربية",
"language-az": "الأذربيجانية",
"langauge-be": "البيلاروسية",
@@ -35,11 +35,11 @@
"language-fr": "الفرنسية",
"language-gl": "الغاليسية",
"language-gu": "الغوجاراتية",
- "language-he": "عبرية",
+ "language-he": "العبرية",
"language-hi": "الهندية",
"language-hr": "الكرواتية",
"language-hu": "الهنغارية",
- "language-hy-am": "Armenian",
+ "language-hy-am": "الأرمينية",
"language-id": "الإندونيسية",
"language-ig": "الإيجبو",
"language-it": "الإيطالية",
@@ -54,7 +54,7 @@
"language-mr": "الماراثية",
"language-ms": "المالاوية",
"language-nb": "النرويجية",
- "language-ne-np": "Nepali",
+ "language-ne-np": "النيبالية",
"language-nl": "الهولندية",
"language-pcm": "اللغة الهجين النيجيرية",
"language-fil": "الفلبينية",
@@ -70,7 +70,7 @@
"language-sw": "السواحيلية",
"language-ta": "التاميلية",
"language-th": "التايلاندية",
- "language-tk": "Turkmen",
+ "language-tk": "التركمانية",
"language-tr": "التركية",
"language-uk": "الأوكرانية",
"language-ur": "الأوردية",
diff --git a/src/intl/ar/page-run-a-node.json b/src/intl/ar/page-run-a-node.json
index c1fe2774b48..669d0ffa923 100644
--- a/src/intl/ar/page-run-a-node.json
+++ b/src/intl/ar/page-run-a-node.json
@@ -106,7 +106,7 @@
"page-run-a-node-staking-description": "على الرغم من أنه غير مطلوب، مع عقدة قيد التشغيل أنت أقرب خطوة إلى تجميد عملات إثير الخاصة بك لكسب المكافآت والمساعدة في المساهمة في مكون مختلف من مكونات أمان إثيريوم.",
"page-run-a-node-staking-link": "تجميد عملات إثير",
"page-run-a-node-staking-plans-title": "هل تخطط لتجميد العملات؟",
- "page-run-a-node-staking-plans-description": "لتعظيم كفاءة المصادق من المفضل استخدام 16 جيجابايت من الذاكرة العشوائية، ولكن استخدام 32 جيجا يعتبر أفضل، مع استخدام وحدة معالجة مركزية بتقييم يزيد علي 6667 وفق ما يرد علي موقع cpubenchmark.net. من الموصي به أيضاً أن يتمكن المراهن من الوصول إلي سرعة عالية وغير محدودة للانترنت ولكنه لا يعتبر خيار إجباري.",
+ "page-run-a-node-staking-plans-description": "لتعظيم كفاءة المصادق من المفضل استخدام 16 جيجابايت من الذاكرة العشوائية، ولكن استخدام 32 جيجا يعتبر أفضل، مع استخدام وحدة معالجة مركزية بتقييم يزيد علي 6667 وفق ما يرد علي موقع cpubenchmark.net. من الموصي به أيضاً أن يتمكن المراهن من الوصول إلي سرعة عالية وغير محدودة للانترنت ولكنه لا يعتبر خيار إجباري.",
"page-run-a-node-staking-plans-ethstaker-link-label": "كيفية التسوّق لأجهزة برنامج المدقق لإثيريوم",
"page-run-a-node-staking-plans-ethstaker-link-description": "EthStaker يتناول المزيد من التفاصيل لمدة ساعة خاصة",
"page-run-a-node-sovereignty-title": "السيادة",
diff --git a/src/intl/ar/page-wallets-find-wallet.json b/src/intl/ar/page-wallets-find-wallet.json
index 494b9415439..c722387882c 100644
--- a/src/intl/ar/page-wallets-find-wallet.json
+++ b/src/intl/ar/page-wallets-find-wallet.json
@@ -7,7 +7,6 @@
"page-find-wallet-meta-title": "العثور على محفظة إثيريوم",
"page-find-wallet-title": "البحث عن محفظة",
"page-find-wallet-try-removing": "حاول إزالة ميزة أو اثنين",
- "page-find-wallet-choose-to-compare": "اختر للمقارنة",
"page-stake-eth": "تجميد عملات إثير",
"page-find-wallet-open-source": "مفتوح المصدر",
"page-find-wallet-open-source-desc": "البرمجيات مفتوحة المصدر تتيح لأي شخص تدقيق سلامة التطبيق وأمنه",
@@ -16,8 +15,6 @@
"page-find-wallet-non-custodial-desc": "المحافظ التي لا تتحكم في مفاتيحك الخاصة",
"page-find-wallet-hardware-wallet-support": "دعم محفظة الأجهزة",
"page-find-wallet-hardware-wallet-support-desc": "المحافظ التي تستطيع الاتصال بمحفظة الأجهزة للحصول على أمان أفضل",
- "page-find-wallet-walletconnect": "WalletConnect",
- "page-find-wallet-walletconnect-desc": "المحافظ التي تدعم WalletConnect للاتصال بالتطبيقات اللامركزية",
"page-find-wallet-rpc-importing": "استيراد RPC",
"page-find-wallet-rpc-importing-desc": "المحافظ التي تدعم نقاط نهاية RPC المخصصة للاتصال بعقد أو شبكات مختلفة",
"page-find-wallet-nft-support": "دعم NFT",
@@ -36,8 +33,6 @@
"page-find-wallet-ens-support-desc": "المحافظ التي تدعم خدمة اسم الإيثيريوم (ENS)",
"page-find-wallet-token-importing": "استيراد الرمز المميز",
"page-find-wallet-token-importing-desc": "قم باستيراد أي رمز ERC-20 مميز لاستخدامه في المحفظة",
- "page-find-wallet-fee-optimization": "تحسين الرسم",
- "page-find-wallet-fee-optimization-desc": "دعم معاملات النوع 2 لرسوم الغاز المحسّنة، واسترداد رسم الغاز غير المستخدم",
"page-find-wallet-buy-crypto": "شراء العملات المشفرة",
"page-find-wallet-buy-crypto-desc": "شراء العملات المشفرة باستخدام العملات الورقية مباشرة في المحفظة \n *ملاحظة: قد يكون شراء العملات المشفرة محددًا بالمنطقة",
"page-find-wallet-sell-for-fiat": "بيع مقابل العملات الورقية",
@@ -46,7 +41,6 @@
"page-find-wallet-multisig-desc": "المحافظ التي تتطلب توقيعات متعددة لتفويض معاملة",
"page-find-wallet-social-recovery": "التعافي الاجتماعي",
"page-find-wallet-social-recovery-desc": "محافظ تسمح للأوصياء بتغيير مفتاح التوقيع لمحافظ العقد الذكي",
- "page-find-wallet-token-support": "دعم الرمز المميز",
"page-find-wallet-features": "الخصائص",
"page-find-wallet-security": "الأمن",
"page-find-wallet-smart-contract": "عقد ذكي",
@@ -63,7 +57,6 @@
"page-find-wallet-chromium": "الكروميوم",
"page-find-wallet-firefox": "فايرفوكس",
"page-find-wallet-hardware": "معدات الجهاز",
- "page-find-wallet-hardware-desc": "محافظ الأجهزة",
"page-find-wallet-new-to-crypto-title": "جديد في العملات المشفرة",
"page-find-wallet-new-to-crypto-desc": "أنت مستخدم لأول مرة تبحث عن محفظتك الأولى",
"page-find-wallet-nfts-title": "NFTs",
@@ -74,22 +67,14 @@
"page-find-wallet-finance-desc": "أنت شخص يستخدم DeFi وتريد محفظة تتيح لك الاتصال بتطبيقات DeFi",
"page-find-wallet-developer-title": "مبرمج",
"page-find-wallet-developer-desc": "أنت مبرمج وتحتاج إلى محفظة للمساعدة في تطوير واختبار التطبيقات اللامركزية",
- "page-find-wallet-persona-desc": "اختر الملف الشخصي الذي يتطابق مع نوع المستخدم الخاص بك وقم بتصفية قائمة المحفظة",
"page-find-wallet-filters": "عوامل التصفية",
"page-find-wallet-active": "نشط",
- "page-find-wallet-profile-filters": "عوامل تصفية الملف الشخصي",
- "page-find-wallet-feature-filters": "عوامل تصفية الميزات",
"page-find-wallet-footnote-1": "المحافظ المدرجة في هذه الصفحة ليست مصادقات رسمية، ويتم توفيرها للأغراض الإعلامية فقط.",
"page-find-wallet-footnote-2": "تم توفير أوصافها من خلال مشاريع المحفظة نفسها.",
"page-find-wallet-footnote-3": "نضيف منتجات إلى هذه الصفحة بناءً على المعايير الواردة في سياسة العرض. إذا كنت تريد إضافة محفظة، فقدِّم تذكرة مشكلة في GitHub.",
"page-find-wallet-mobile": "جوال",
- "page-find-wallet-mobile-desc": "محافظ مع تطبيقات الجوال",
"page-find-wallet-desktop": "سطح المكتب",
- "page-find-wallet-desktop-desc": "محافظ مع تطبيقات سطح المكتب",
"page-find-wallet-browser": "المتصفح",
- "page-find-wallet-browser-desc": "محافظ مع ملحقات المتصفح",
"page-find-wallet-device": "جهاز",
- "page-find-choose-to-compare": "اختر للمقارنة",
- "page-find-wallet-choose-features": "اختر الميزات",
"page-find-wallet-reset-filters": "إعادة تعيين عناصر التصفية"
}
diff --git a/src/intl/az/common.json b/src/intl/az/common.json
index 7902cf319e3..9db7908da16 100644
--- a/src/intl/az/common.json
+++ b/src/intl/az/common.json
@@ -5,23 +5,24 @@
"adding-developer-tools": "Tərtibatçı Alətlərinin əlavə edilməsi",
"adding-exchanges": "Mübadilələrin əlavə edilməsi",
"adding-glossary-terms": "Lüğət Şərtlərinin əlavə edilməsi",
- "adding-layer-2s": "Adding Layer 2s",
- "adding-products": "Adding Products",
- "adding-staking-products": "Staking Məhsullarının əlavə edilməsi",
- "adding-wallets": "Pulqablarının əlavə edilməsi",
+ "adding-staking-products": "Payçı məhsulların əlavə edilməsi",
+ "adding-wallets": "Cüzdanların əlavə edilməsi",
"account-abstraction": "Hesab abstraksiyası",
"acknowledgements": "Təsdiqlər",
"aria-toggle-search-button": "Axtarış düyməsini aç/bağla",
"aria-toggle-menu-button": "Menyu düyməsini aç/bağla",
"beacon-chain": "İşarə (Beacon) zənciri",
- "bridges": "Blockchain körpüləri",
+ "bridges": "Blokçeyn körpüləri",
+ "bug-bounty": "Xəta bonusu",
+ "build": "Yarat",
+ "build-menu": "Yaratma menyusu",
"clear": "Təmizlə",
"close": "Bağla",
"community": "İcma",
"community-hub": "İcma mərkəzi",
"community-menu": "İcma Menyusu",
"contact": "Əlaqə",
- "content-buckets": "Məzmun Kovaları",
+ "content-buckets": "Məzmun qutuları",
"content-resources": "Məzmun Resursları",
"content-standardization": "Məzmun standartlaşdırılması",
"contributing": "Töhfələr",
@@ -31,14 +32,15 @@
"copied": "Kopyalandı",
"copy": "Kopyala",
"danksharding": "Dankşardinq",
- "dao-page": "Mərkəzləşdirilməmiş muxtar təşkilatlar (DAO)",
- "dark-mode": "Tünd",
- "data-provided-by": "Məlumat mənbəyi:",
- "decentralized-applications-dapps": "Mərkəzləşdirilməmiş tətbiqlər (dapps)",
- "decentralized-identity": "Mərkəzləşdirilməmiş şəxsiyyət",
+ "dao-page": "DAO - Mərkəzləşdirilməmiş muxtar təşkilatlar",
+ "dark-mode": "Qaranlıq",
+ "data-provided-by": "Verilənlər mənbəyi:",
+ "decentralized-applications-dapps": "Dapps - Mərkəzləşdirilməmiş tətbiqlər",
+ "decentralized-identity": "Mərkəzləşdirilməmiş kimlik",
"decentralized-social-networks": "Mərkəzləşdirilməmiş sosial şəbəkələr",
- "decentralized-science": "Mərkəzləşdirilməmiş elm (DeSci)",
- "defi-page": "Mərkəzləşdirilməmiş maliyyə (DeFi)",
+ "decentralized-science": "DeSci - Mərkəzləşdirilməmiş elm",
+ "description": "Naviqasiya elementi üçün təsvir",
+ "defi-page": "DeFi - Mərkəzləşdirilməmiş maliyyə",
"design": "Dizayn",
"design-principles": "Dizayn Prinsipləri",
"devcon": "İllik konfrans (Devcon)",
@@ -57,7 +59,7 @@
"docsearch-start-remove-favorite-search": "Bu axtarışı seçilmişdən silin",
"docsearch-no-results-text": "Nəticə yoxdur:",
"docsearch-no-results-suggested-query": "Axtarmağa çalışın:",
- "docsearch-no-results-missing": "İnanırsınız ki, bu sorğu nəticə verməlidir?",
+ "docsearch-no-results-missing": "Axtarmağa çalışın:",
"docsearch-no-results-missing-link": "Bizə bildirin.",
"docsearch-error-title": "Nəticələri əldə etmək mümkün deyil",
"docsearch-error-help": "Şəbəkə bağlantınızı yoxlayın.",
@@ -65,57 +67,55 @@
"down": "Aşağı",
"ecosystem": "Ekosistem",
"edit-page": "Səhifəni redaktə et",
- "ef-blog": "Ethereum Fondu üzrə Bloq",
+ "ef-blog": "Ethereum Fondu Blogu",
"eips": "Ethereum Təkmilləşdirmə Təklifləri",
"energy-consumption": "Ethereum enerji istehlakı",
"enterprise": "Müəssisə",
"enterprise-menu": "Müəssisə Menyu",
"esp": "Ekosistemə Dəstək Proqramı",
"eth-current-price": "Cari ETH qiyməti (USD)",
- "ethereum-basics": "Ethereum basics",
"ethereum-bug-bounty": "Ethereum baq mükafatı proqramı",
"consensus-when-shipping": "Nə vaxt göndərilir?",
"ethereum-upgrades": "Ethereum yenilənmələri",
"ethereum-brand-assets": "Ethereum brend aktivləri",
"ethereum-online": "Onlayn icmalar",
- "ethereum-events": "Ethereum hadisələri",
+ "ethereum-events": "Ethereum tədbirləri",
"ethereum-foundation": "Ethereum Fondu",
"ethereum-foundation-logo": "Ethereum Fondunun loqosu",
"ethereum-glossary": "Ethereum lüğəti",
"ethereum-governance": "Ethereum idarəçiliyi",
- "ethereum-logo": "Ethereum logosu",
+ "ethereum-logo": "Ethereum loqosu",
"ethereum-roadmap": "Ethereum planlama xəritəsi",
"ethereum-protocol": "Ethereum protokolu",
"ethereum-security": "Ethereum təhlükəsizliyi və saxtakarlığın qarşısının alınması",
"ethereum-support": "Ethereum dəstəyi",
- "ethereum-wallets": "Ethereum pull kisəsi",
+ "ethereum-wallets": "Ethereum pulqabısı",
"ethereum-whitepaper": "Ethereum Ağ Sənədi",
"feedback-widget-prompt": "Bu səhifə faydalıdır?",
"feedback-card-prompt-page": "Bu səhifə faydalı oldu?",
"feedback-card-prompt-article": "Bu məqalə faydalı oldu?",
"feedback-card-prompt-tutorial": "Bu təlimat faydalı oldu?",
- "feedback-widget-thank-you-title": "Rəyə görə təşəkkür edirik!",
+ "feedback-widget-thank-you-title": "Rəyiniz üçün təşəkkür edirik!",
"feedback-widget-thank-you-subtitle": "Bir neçə sualı cavablandırmaqla bu səhifəni daha da yaxşılaşdırın.",
- "feedback-widget-thank-you-subtitle-ext": "Köməyə ehtiyacınız varsa, bizim səhifəmizdə icma ilə əlaqə saxlaya bilərsiniz: Discord.",
+ "feedback-widget-thank-you-subtitle-ext": "Əgər köməyə ehtiyacınız varsa, Discord vasitəsilə icma ilə əlaqə saxlaya bilərsiniz.",
"feedback-widget-thank-you-timing": "2-3 dəqiqə",
- "feedback-widget-thank-you-cta": "Qısa sorğunu aç",
+ "feedback-widget-thank-you-cta": "Qısa sorğunu açın",
"find-wallet": "Pulqabı tap",
- "future-proofing": "Gələcəyin planlaşdırılması",
+ "future-proofing": "Gələcək zəmanətli",
"get-eth": "ETH əldə et",
"get-involved": "İştirak et",
"get-started": "Başla",
"grants": "Qrantlar",
"grant-programs": "Ekosistem dəstək proqramları",
"guides": "Bələdçilər",
- "guides-hub": "Bələdçi mərkəzi",
+ "guides-hub": "Təlimatlar",
"history-of-ethereum": "Ethereumun tarixi",
"home": "Əsas səhifə",
"how-ethereum-works": "Ethereumun işləmə prinsipi",
- "how-to-create-an-ethereum-account": "How to \"create\" an Ethereum account",
"how-to-revoke-token-access": "Kriptofondlarınıza ağıllı müqavilə girişini necə ləğv etmək olar",
"how-to-swap-tokens": "Tokenləri necə dəyişmək olar",
"how-to-use-a-bridge": "Tokenləri 2-ci Qrupla necə əlaqələndirmək olar",
- "how-to-use-a-wallet": "Pulqabını necə istifadə etmək olar",
+ "how-to-use-a-wallet": "Pul kisəsindən necə istifadə etmək olar",
"image": "şəkil",
"in-this-section": "Bu bölmədə",
"individuals": "Fərdlər",
@@ -128,25 +128,118 @@
"last-edit": "Son redaktə",
"layer-2": "2-ci Qrup",
"learn": "Öyrən",
- "learn-by-coding": "Kodlaşdırma yolu ilə öyrən",
+ "learn-by-coding": "Kodlaşdırma ilə öyrənin",
"learn-hub": "Öyrənmə mərkəzi",
"learn-menu": "Menyunu öyrən",
"learn-more": "Daha ətraflı",
"less": "Daha az",
"light-mode": "İşıq",
- "listing-policy-disclaimer": "Bu səhifədə sadalanan məhsullar rəsmi tövsiyələr olmamaqla yanaşı, sadəcə məlumat məqsədi üçün nəzərdə tutulub. Məhsul əlavə etmək və ya bu siyasətlə bağlı rəy bildirmək istəyirsinizsə, GitHub-da bununla bağlı məsələ qaldırın.",
+ "listing-policy-disclaimer": "Bu səhifədə sadalanan bütün məhsullar rəsmi tövsiyələr olmamaqla yanaşı, sadəcə məlumat məqsədi üçün nəzərdə tutulub. Məhsul əlavə etmək və ya bu siyasətlə bağlı rəy bildirmək istəyirsinizsə, GitHub-da bununla bağlı məsələ qaldırın.",
"loading": "Yüklənilir...",
"loading-error": "Yükləmə xətası.",
"loading-error-refresh": "Xəta, lütfən yeniləyin.",
"loading-error-try-again-later": "Datanı yükləmək alınmadı. Biraz sonra yenidən cəhd edin.",
- "logo": "logo",
+ "logo": "loqo",
"mainnet-ethereum": "Mainnet Ethereum",
"merge": "Birləşdirmə",
"more": "Daha çox",
- "nav-developers": "Tərtibatçılar",
+ "nav-about-description": "Ethereum icması üçün ictimai, açıq mənbə layihəsi",
+ "nav-advanced-description": "Daha mürəkkəb mövzuları öyrənin",
+ "nav-advanced-label": "Təkmilləşmiş",
+ "nav-basics-description": "Ethereum-un əsaslarını anlayın",
+ "nav-basics-label": "Əsaslar",
+ "nav-bridges-description": "Web3 təməl L1 blokçeynləri və L2 genişləmə həlləri üçün ekosistemə çevrilib",
+ "nav-builders-home-description": "Ethereum üçün yaradıcı təlimatı. Yaradıcılar tərəfindən yaradıcılar üçün",
+ "nav-builders-home-label": "Yaradıcının əsas səhifəsi",
+ "nav-contribute-description": "Kömək etmək istəyirsinizsə, bu sizi yönləndirəcək",
+ "nav-contribute-label": "ethereum.org saytına töhfə et",
+ "nav-dao-description": "Mərkəzləşdirilmiş rəhbərliyi olmayan üzvlərə məxsus icmalar",
+ "nav-dapps-description": "Ethereum-dan istifadə edərək tətbiqlərin zəngin ekosistemini araşdırın",
+ "nav-defi-description": "Ənənəvi maliyyə bazarının qlobal, açıq alternativi",
+ "nav-desci-description": "Hazırkı elmi sistemin qlobal, açıq alternativi",
+ "nav-desoc-description": "Sosial qarşılıqlı əlaqə və məzmun yaradılması üçün blokçeyn əsaslı platformalar",
"nav-developers-docs": "Tərtibatçı sənədləri",
+ "nav-developers": "Tərtibatçılar",
+ "nav-did-description": "Unikal mərkəzləşdirilməmiş eyniləşdiricilərinizi yaradın və sahib olun",
+ "nav-docs-description": "Ethereum-u anlamaq və qurmağınıza kömək edəcək sənədlər",
+ "nav-docs-design-description": "Unikal web3 dizayn çətinliklərinin, qabaqcıl təcrübələrin və istifadəçi araşdırması nəticələrinin təsviri",
+ "nav-docs-design-label": "UX/UI dizayn əsasları",
+ "nav-docs-foundation-description": "Ethereum-da inkişaf etmək üçün əsaslar",
+ "nav-docs-overview-description": "Tərtibatçı sənədləri üçün mərkəz",
+ "nav-docs-stack-description": "Ethereum platformasının bütün təfərrüatlarını anlayın",
+ "nav-eip-description": "Yeni xüsusiyyətləri və ya prosesləri müəyyən edən standartlar",
+ "nav-eip-label": "EIP-lər - Ethereum təkmilləşdirmə təklifləri",
+ "nav-emerging-description": "Ethereum-un digər daha yeni istifadə halları barədə öyrənin",
+ "nav-enterprise-description": "Ethereum üçün biznes tətbiqləri",
+ "nav-ethereum-org-description": "Bu vebsayt icma tərəfindən idarə edilir—bizə qoşulun və öz töhfənizi verin",
+ "nav-ethereum-wallets-description": "Ethereum hesabınızla əlaqədə olmaq üçün tətbiq",
+ "nav-events-description": "Hər kəs üçün mərkəzləşdirilməmiş və sərbəst iştirak imkanı",
+ "nav-events-irl-description": "Hər ay Ethereum ilə bağlı geniş canlı və onlayn tədbirlər keçirilir",
+ "nav-events-label": "İcmalar və tədbirlər",
+ "nav-events-online-description": "Yüz minlərlə Ethereum entuziastı bu onlayn icmalarda birləşir",
+ "nav-find-wallet-description": "Cüzdanlar sizə kriptovalyutadan istifadə etmək imkanı verir",
+ "nav-find-wallet-label": "Cüzdan seç",
+ "nav-gas-fees-description": "ETH tranzaksiya haqları necə hesablanır",
+ "nav-gas-fees-label": "Qaz haqları",
+ "nav-get-eth-description": "Ethereum tətbiqlərindən istifadə etmək üçün sizə ether (ETH) lazımdır",
+ "nav-get-started-description": "Ethereum-dan istifadə edilməsində ilk addımlarınız",
+ "nav-governance-description": "Ethereum protokolunun təkmilləşdirilməsinin həyata keçirildiyi proses",
+ "nav-governance-label": "İdarəçilik",
+ "nav-grants-description": "Qrant maliyyələşdirmə proqramlarını təmin edən layihələrin icmamız tərəfindən seçilmiş siyahısı",
+ "nav-guide-create-account-description": "Hər kəs istənilən vaxt cüzdan tətbiqi ilə pulsuz Ethereum hesabı yarada bilər",
+ "nav-guide-revoke-access-description": "Ethereum ekosistemindəki ağıllı müqavilələr və tətbiqlər ilə qarşılıqlı əlaqə zamanı təhlükəsizliyinizi təmin edin",
+ "nav-guide-revoke-access-label": "Ağıllı müqaviləyə çıxışı necə ləğv etmək olar",
+ "nav-guide-use-wallet-description": "Cüzdanın bütün əsas funksiyalarının işlədilməsi qaydasını öyrənin",
+ "nav-guide-use-wallet-label": "Pul kisəsindən necə istifadə etmək olar",
+ "nav-guides-description": "Başlamanıza kömək etmək üçün təfərrüatlı təlimat",
+ "nav-guides-label": "Təlimat",
+ "nav-history-description": "Bütün əsas şaxələnmələr və yeniləmələrin qrafiki",
+ "nav-history-label": "Ethereum-un texnoloji tarixçəsi",
+ "nav-layer-2-description": "Ethereum üçün daha ucuz və daha sürətli tranzaksiyalar",
+ "nav-learn-by-coding-description": "Ethereum-u sınamanıza kömək edən alətlər",
+ "nav-local-env-description": "Ethereum inkişaf platformanızı seçin və quraşdırın",
+ "nav-mainnet-description": "Ethereum-un əsas ictimai şəbəkəsində qurula biləcək olan Müəssisə blokçeyn tətbiqləri",
+ "nav-nft-description": "Unikal olan hər bir şeyin Ethereum əsaslı aktiv kimi təqdim edilmə yolu",
+ "nav-open-research-description": "Ethereum-un əsas güclü tərəflərindən biri onun fəal tədqiqat icmasıdır",
+ "nav-open-research-label": "Açıq araşdırma",
+ "nav-overview-description": "Ethereum təlimləri ilə bağlı bütün məlumatlar",
+ "nav-participate-overview-description": "İştirak etmə qaydalarına ümumi baxış",
"nav-primary": "Əsas",
- "nft-page": "Bir-birini əvəz edə bilməyən nişanlar (NFTs)",
+ "nav-quizzes-description": "Ethereum və kriptovalyutanı nə dərəcədə yaxşı anladığınızı öyrənin",
+ "nav-quizzes-label": "Biliyinizi yoxlayın",
+ "nav-refi-description": "Regenerativ prinsiplər üzərində qurulmuş alternativ iqtisadi sistem",
+ "nav-research-description": "Ethereum-u təkmilləşdirmək üçün istifadə olunan prorseslər",
+ "nav-research-label": "Tədqiqat və inkişaf",
+ "nav-roadmap-description": "Ethereum üçün genişlənmə, təhlükəsizlik və dayanıqlılığa gedən yol",
+ "nav-roadmap-future-description": "Ethereum-un etibarlı və mərkəzləşdirilməmiş şəbəkə kimi gücləndirilməsi",
+ "nav-roadmap-future-label": "Gələcək zəmanətli",
+ "nav-roadmap-label": "Tədbir planı",
+ "nav-roadmap-scaling-description": "Tranzaksiya xərclərini daha da azaltmaq üçün şəbəkə və sürət yeniləmələri",
+ "nav-roadmap-security-description": "Gələcəkdə Ethereum-un hər cür hücuma qarşı dayanıqlılığının təmin edilməsi",
+ "nav-roadmap-security-label": "Təkmilləşdirilmiş təhlükəsizlik",
+ "nav-roadmap-ux-description": "Ethereum-dan istifadə sadələşdirilməlidir",
+ "nav-run-a-node-description": "Şəbəkənin təhlükəsizliyinin təmin edilməsinə kömək edərkən tamamilə müstəqil ol",
+ "nav-security-description": "Kriptovalyutadan istifadə edərkən qabaqcıl təcrübələr barədə öyrənin",
+ "nav-smart-contracts-description": "Ethereum ekosisteminin təməl komponentləri",
+ "nav-stablecoins-description": "Steyblkoynlar (stablecoin) sabit dəyərdə qalmaq üçün nəzərdə tutulmuş Ethereum tokenləridir",
+ "nav-stake-description": "Ethereum-un təhlükəsizliyinin təmin edilməsi üçün mükafatlar qazanın",
+ "nav-stake-label": "Pay",
+ "nav-staking-home-description": "Pay yerləşdirmə üçün müxtəlif variantların icmalı",
+ "nav-staking-pool-description": "Başqaları ilə qoşularaq payınızla iştirak edin və istənilən ETH məbləği ilə mükafatlar qazanın",
+ "nav-staking-pool-label": "Birləşdirilmiş paylar",
+ "nav-staking-saas-label": "Xidmətlə pay yatırmaq",
+ "nav-staking-solo-label": "Solo payçılıq",
+ "nav-start-building-description": "Yeni başlayanlar üçün faydalı məlumat",
+ "nav-translation-program-description": "ethereum.org saytının bütün dillərə tərcümə edilməsi üçün birgə səy",
+ "nav-tutorials-description": "İcma təlimatlarının seçilmiş siyahısı",
+ "nav-use-cases-description": "Ethereum-un istifadəsi üçün fərqli ideyalar kəşf edin",
+ "nav-what-is-ether-description": "Ethereum tətbiqlərinin valyutası",
+ "nav-what-is-ethereum-description": "Ethereum-u xüsusi edən məqamları anlayın",
+ "nav-what-is-web3-label": "Web3 nədir?",
+ "nav-what-is-web3-description": "Qaydaları diktə edən mərkəzləşdirilməmiş monopoliyaların alternativi",
+ "nav-whitepaper-description": "Vitalik Buterin tərəfindən 2014-cü ildə yazılmış ilk Ethereum texniki məlumat sənədi",
+ "nav-zkp-description": "Bəyanatın özünü açıqlamadan onun hüquqi qüvvəsini sübut etmə yolu",
+ "nft-page": "NFTs - Bir-birini əvəz edə bilməyən tokenlər",
"nfts": "NFT-lər",
"no": "Xeyr",
"on-this-page": "Bu səhifədə",
@@ -154,54 +247,55 @@
"page-developers-aria-label": "Tərtibatçı menyusu",
"page-index-meta-title": "Əsas səhifə",
"page-last-updated": "Səhifə ən son yeniləndi",
+ "participate-menu": "İştirak menyusu",
"pbs": "Təklif edən-qurucu ayrılması",
- "pools": "Birləşdirilmiş steykinq",
- "privacy-policy": "Gizlilik siyasəti",
+ "pools": "Birləşdirilmiş paylar",
+ "privacy-policy": "Məıxfilik siyasəti",
"private-ethereum": "Şəxsi Ethereum",
- "product-disclaimer": "Məhsullar və xidmətlər Ethereum icmasının rahatlığı üçün siyahıya alınmışdır. Məhsul və ya xidmətin daxil edilməsi, ethereum.org veb-sayt komandası və ya Ethereum Fondu tərəfindənonun təsdiqləndiyi demək deyil.",
+ "product-disclaimer": "Məhsullar və xidmətlər Ethereum icmasının rahatlığı üçün siyahıya alınmışdır. Məhsul və ya xidmətin daxil edilməsi, ethereum.org veb-sayt komandası və ya Ethereum Fondu tərəfindən onun təsdiqləndiyi demək deyil.",
"quizzes-title": "Sorğu-sual şəbəkəsi",
"quizzes": "Sorğu-suallar",
"refresh": "Səhifəni yeniləyin.",
"return-home": "əsas səhifəyə qayıdın",
"roadmap": "Ethereum planlama xəritəsi",
+ "research": "Tədqiqat",
+ "research-menu": "Tədqiqat menyusu",
"resources": "Tərcümə resursları",
- "regenerative-finance": "Regenerativ maliyyə (ReFi)",
+ "regenerative-finance": "ReFi - Regenerativ maliyyə",
"run-a-node": "Düyün başladın",
- "rollup-component-website": "Veb-sayt",
+ "rollup-component-website": "Vebsayt",
"rollup-component-developer-docs": "Tərtibatçı sənədləri",
"rollup-component-technology-and-risk-summary": "Texnologiya və risk icmalı",
- "scaling": "Ölçəkləmə",
+ "scaling": "Miqyaslama",
"saas": "Bir xidmət kimi steykinq",
"search": "Axtarış",
"search-ethereum-org": "Ethereum.org-da axtarın",
"secret-leader-election": "Gizli lider seçimi",
"search-box-blank-state-text": "Axtarış et!",
- "search-eth-address": "Bu, Ethereum ünvanına bənzəyir. Biz ünvanlar üçün xüsusi məlumat təqdim etmirik. Gərəkli məlumatları blok tədqiqatçılarında tapmağa çalışın, məsələn:",
+ "search-eth-address": "Bu, Ethereum ünvanına bənzəyir. Biz ünvanlar üçün xüsusi məlumat təqdim etmirik. Lazımi məlumatları blok tədqiqatçılarında tapmağa çalışın, məsələn:",
"search-no-results": "Axtarışınız heç bir nəticə vermədi",
"security": "Təhlükəsizlik",
"single-slot-finality": "Tək yuvalı tamamlama",
"statelessness": "Vətəndaşsızlıq",
"see-contributors": "Töhfəçilərə bax",
"set-up-local-env": "Yerli mühiti qur",
- "sharding": "Parçalanma",
+ "sharding": "Parçalanma(Sharding)",
"show-all": "Hamısını göstər",
"show-less": "Daha az göstər",
- "site-description": "Ethereum, pul və yeni tətbiqetmə növləri üçün qlobal və mərkəzi olmayan bir platformadır. Ethereum-da pula nəzarət edən kodlar yaza bilər və dünyanın hər yerindən müraciət edilən bilən tətbiqetmələr yarada bilərsiniz.",
- "site-title": "ethereum.org",
+ "site-description": "Ethereum pul və yeni tətbiqetmə növləri üçün qlobal və mərkəzi olmayan bir platformadır. Ethereum-da pula nəzarət edən kodlar yaza bilər və dünyanın hər yerindən müraciət edilən bilən tətbiqetmələr yarada bilərsiniz.",
"skip-to-main-content": "Əsas məzmuna keç",
"smart-contracts": "Ağıllı müqavilələr",
- "stablecoins": "Stabil koinlər",
+ "stablecoins": "Stabilkoinlər",
"stake-eth": "ETH-ni steyk",
- "staking": "Steykinq",
+ "staking": "Payçılıq",
"start-here": "Buradan başlayın",
- "style-guide": "Style guide",
- "solo": "Solo steykinq",
+ "solo": "Solo payçılıq",
"support": "Dəstək",
"terms-of-use": "İstifadə şərtləri",
- "translation-banner-body-new": "Bu səhifə hələ tərcümə edilmədiyi üçün İngilis dilində təqdim olunur. Bu məzmunu tərcümə etməyimizə kömək edin.",
+ "translation-banner-body-new": "Bu səhifə hələ tərcümə edilmədiyi üçün ingilis dilində təqdim olunur. Bu məzmunu tərcümə etməyimizə kömək edin.",
"translation-banner-body-update": "Bu səhifənin yeni versiyası var, lakin hazırda yalnız ingilis dilindədir. Ən son versiyanı tərcümə etməkdə bizə kömək edin.",
"translation-banner-button-see-english": "İngiliscə bax",
- "translation-banner-button-translate-page": "Səhifəni tərcümə Et",
+ "translation-banner-button-translate-page": "Səhifəni tərcümə et",
"translation-banner-title-new": "Bu səhifəni tərcümə et",
"translation-banner-title-update": "Bu səhifəni yeniləməyimizə kömək et",
"translation-banner-no-bugs-title": "Burada baq yoxdur!",
@@ -211,18 +305,20 @@
"try-using-search": "Axtardığınızı tapmaq üçün axtarışdan istifadə etməyə çalışın və ya",
"tutorials": "Təlimatlar",
"up": "Yuxarı",
+ "use": "İstifadə",
"use-ethereum": "Ethereum istifadə et",
"use-ethereum-menu": "Ethereum menyusunu istifadə et",
+ "use-menu": "İstifadə menyusu",
"user-experience": "İstifadəçi təcrübəsi",
"verkle-trees": "Verkle ağacı",
"wallets": "Pulqabıları",
"we-couldnt-find-that-page": "Həmin səhifəni tapa bilmədik",
"web3": "Web3 nədir?",
"web3-title": "Web3",
- "website-last-updated": "Veb-səhifə ən son yeniləndi",
- "what-is-ether": "Efir (ETH) nədir?",
+ "website-last-updated": "Veb-saytın ən son yenilənməsi",
+ "what-is-ether": "Ether (ETH) nədir?",
"what-is-ethereum": "Ethereum nədir?",
- "withdrawals": "Steykinq çıxarılması",
+ "withdrawals": "Payın çıxarılması",
"yes": "Bəli",
- "zero-knowledge-proofs": "Sıfır bilik verməklə isbat protokolu"
+ "zero-knowledge-proofs": "Sıfır biliklərlə təsdiqləmə"
}
diff --git a/src/intl/az/page-wallets-find-wallet.json b/src/intl/az/page-wallets-find-wallet.json
index 0c5f04e3392..d18497e620e 100644
--- a/src/intl/az/page-wallets-find-wallet.json
+++ b/src/intl/az/page-wallets-find-wallet.json
@@ -7,7 +7,6 @@
"page-find-wallet-meta-title": "Ethereum pulqabı tapın",
"page-find-wallet-title": "Pulqabı tapın",
"page-find-wallet-try-removing": "Bir və ya iki funksiyanı silməyə çalışın",
- "page-find-wallet-choose-to-compare": "Müqayisə etmək üçün seçin",
"page-stake-eth": "ETH-ni steyk",
"page-find-wallet-open-source": "Açıq mənbə",
"page-find-wallet-open-source-desc": "Açıq mənbə proqram təminatı hər kəsə tətbiqin bütövlüyünü və təhlükəsizliyini yoxlamaq imkanı verir",
@@ -16,8 +15,6 @@
"page-find-wallet-non-custodial-desc": "Şəxsi açarlarınızı idarə etməyən pulqabılar",
"page-find-wallet-hardware-wallet-support": "Harware pulqabı dəstəyi",
"page-find-wallet-hardware-wallet-support-desc": "Daha yaxşı təhlükəsizlik üçün hardware pulqabına qoşula bilən pul kisələri",
- "page-find-wallet-walletconnect": "WalletConnect",
- "page-find-wallet-walletconnect-desc": "Dapps-a qoşulmaq üçün WalletConnect-i dəstəkləyən pulqabılar",
"page-find-wallet-rpc-importing": "RPC idxalı",
"page-find-wallet-rpc-importing-desc": "Fərqli qovşaqlara və ya şəbəkələrə qoşulmaq üçün fərdi RPC son nöqtələrini dəstəkləyən pulqabılar",
"page-find-wallet-nft-support": "NFT dəstəyi",
@@ -36,8 +33,6 @@
"page-find-wallet-ens-support-desc": "Ethereum Name Service-i (ENS) dəstəkləyən pulqabılar",
"page-find-wallet-token-importing": "Token idxalı",
"page-find-wallet-token-importing-desc": "Pulqabıda istifadə etmək üçün istənilən ERC-20 tokenini idxal edin",
- "page-find-wallet-fee-optimization": "Optimallaşdırma",
- "page-find-wallet-fee-optimization-desc": "Optimallaşdırılmış qaz haqları üçün 2-ci növ əməliyyatları və istifadə olunmamış qaz üçün geri ödənişi dəstəkləyin",
"page-find-wallet-buy-crypto": "Kriptovalyuta alın",
"page-find-wallet-buy-crypto-desc": "Fiat ilə kriptovalyutanı birbaşa pulqabıdan alın\n *Qeyd: kriptovalyutanın alınması hər ölkədə fərqli ola bilər",
"page-find-wallet-sell-for-fiat": "Fiata satılır",
@@ -46,7 +41,6 @@
"page-find-wallet-multisig-desc": "Tranzaksiyaya icazə vermək üçün birdən çox imza tələb edən pulqabılar",
"page-find-wallet-social-recovery": "Sosial bərpa",
"page-find-wallet-social-recovery-desc": "Qəyyumlara ağıllı müqavilə pulqabıları üçün imza açarını dəyişməyə imkan verən pulqabılar",
- "page-find-wallet-token-support": "Token dəstəyi",
"page-find-wallet-features": "Xüsusiyyətləri",
"page-find-wallet-security": "Təhlükəsizlik",
"page-find-wallet-smart-contract": "Ağıllı müqavilə",
@@ -63,7 +57,6 @@
"page-find-wallet-chromium": "Chromium",
"page-find-wallet-firefox": "Firefox",
"page-find-wallet-hardware": "Avadanlıq",
- "page-find-wallet-hardware-desc": "Avadanlıq pulqabıları",
"page-find-wallet-new-to-crypto-title": "Siz kriptovalyuta ilə yeni tanışsınız",
"page-find-wallet-new-to-crypto-desc": "Siz ilk pulqabını axtaran yeni istifadəçisiniz",
"page-find-wallet-nfts-title": "NFT-lər",
@@ -74,22 +67,14 @@
"page-find-wallet-finance-desc": "Siz DeFi istifadə edən və DeFi tətbiqlərinə qoşulmağa imkan verən pulqabı istəyən birisiniz",
"page-find-wallet-developer-title": "Tərtibatçı",
"page-find-wallet-developer-desc": "Siz tərtibatçısınız və tətbiqləri inkişaf etdirmək və sınaqdan keçirmək üçün pulqabına ehtiyacınız var",
- "page-find-wallet-persona-desc": "İstifadəçi tipinizə uyğun profili seçin və pulqabı siyahısını filtrləyin",
"page-find-wallet-filters": "Filtrlər",
"page-find-wallet-active": "aktiv",
- "page-find-wallet-profile-filters": "Profil filtrləri",
- "page-find-wallet-feature-filters": "Xüsusiyyət filtrləri",
"page-find-wallet-footnote-1": "Bu səhifədə qeyd olunan pulqabıları rəsmi olaraq təsdiqlənməyib və yalnız məlumat məqsədləri üçün verilir.",
"page-find-wallet-footnote-2": "Onların təsvirləri pulqabı layihələrinin özləri tərəfindən verilmişdir.",
"page-find-wallet-footnote-3": "Məhsullarımızı siyahı siyasəti səhifəmizdəki kriteriyalara əsasən əlavə edirik. Pulqabı əlavə etməyimizi istəyirsinizsə,GitHub-da problemdən şikayət edin.",
"page-find-wallet-mobile": "Mobil",
- "page-find-wallet-mobile-desc": "Mobil tətbiqləri olan pulqabılar",
"page-find-wallet-desktop": "Masaüstü kompüter",
- "page-find-wallet-desktop-desc": "Masaüstü tətbiqləri olan pulqabılar",
"page-find-wallet-browser": "Brauzer",
- "page-find-wallet-browser-desc": "Brauzer uzantıları olan pulqabılar",
"page-find-wallet-device": "Cihazlar",
- "page-find-choose-to-compare": "Müqayisə etmək üçün seçin",
- "page-find-wallet-choose-features": "Xüsusiyyətləri seçin",
"page-find-wallet-reset-filters": "Filtrləri sıfırlayın"
}
diff --git a/src/intl/be/common.json b/src/intl/be/common.json
index b14782dd9ce..3b83299e9df 100644
--- a/src/intl/be/common.json
+++ b/src/intl/be/common.json
@@ -1,17 +1,29 @@
{
- "account-abstraction": "Дамашняя старонка",
"about-ethereum-org": "Аб партале ethereum.org",
"about-us": "Пра нас",
+ "adding-desci-projects": "Даданне праектаў Desci",
+ "adding-developer-tools": "Даданне інструментаў распрацоўшчыка",
+ "adding-exchanges": "Даданне біржаў",
+ "adding-glossary-terms": "Даданне тэрмінаў слоўніка",
+ "adding-staking-products": "Даданне прадуктаў для стэйкінгу",
+ "adding-wallets": "Даданне гаманцоў",
+ "account-abstraction": "Дамашняя старонка",
+ "acknowledgements": "Падзякі",
"aria-toggle-search-button": "Пераключэнне кнопкі пошуку",
"aria-toggle-menu-button": "Пераключэнне кнопкі меню",
"beacon-chain": "Beacon Chain",
"bridges": "Масты блокчэйну",
+ "bug-bounty": "Узнагарода за выяўленне памылак",
+ "build": "Стварыць",
+ "build-menu": "Меню стварэння",
"clear": "Ачысціць",
"close": "Закрыць",
"community": "Супольнасць",
"community-hub": "Цэнтр супольніцтва",
"community-menu": "Меню Супольнасці",
"contact": "Кантакты",
+ "content-buckets": "Катэгорыі кантэнту",
+ "content-resources": "Рэсурсы кантэнту",
"content-standardization": "Стандартызацыя кантэнту",
"contributing": "Садзейнічанне",
"contributors": "Саўдзельнікі",
@@ -20,14 +32,17 @@
"copied": "Скапіявана",
"copy": "Капіраваць",
"danksharding": "Danksharding",
- "dao-page": "Дэцэнтралізаваныя аўтаномныя арганізацыі (DAO)",
+ "dao-page": "DAO - Дэцэнтралізаваныя аўтаномныя арганізацыі",
"dark-mode": "Цёмны",
"data-provided-by": "Крыніца дадзеных:",
- "decentralized-applications-dapps": "Дэцэнтралізаваныя дадаткі (dapps)",
+ "decentralized-applications-dapps": "Dapps - Дэцэнтралізаваныя дадаткі",
"decentralized-identity": "Дэцэнтралізаваная ідэнтычнасць",
"decentralized-social-networks": "Дэцэнтралізаваная сацыяльная сетка",
- "decentralized-science": "Дэцэнтралізаваная навука (DeSci)",
- "defi-page": "Дэцэнтралізаваныя фінансы (DeFi)",
+ "decentralized-science": "DeSci - Дэцэнтралізаваная навука",
+ "description": "Апісанне элемента навігацыі",
+ "defi-page": "DeFi - Дэцэнтралізаваныя фінансы",
+ "design": "Дызайн",
+ "design-principles": "Прынцыпы дызайну",
"devcon": "Devcon",
"developers": "Распрацоўшчыкі",
"developers-home": "Галоўная старонка для распрацоўшчыкаў",
@@ -59,7 +74,6 @@
"enterprise-menu": "Меню карпаратыўнага сектару",
"esp": "Праграма падтрымкі экасістэмы",
"eth-current-price": "Бягучая цана ETH (USD)",
- "ethereum-basics": "Ethereum basics",
"ethereum-bug-bounty": "Праграма ўзнагароды за пошук памылак у Ethereum",
"consensus-when-shipping": "Калі адбудзецца запуск?",
"ethereum-upgrades": "Абновы Ethereum",
@@ -75,7 +89,7 @@
"ethereum-protocol": "Пратакол Ethereum",
"ethereum-security": "Бяспека Ethereum і прадухіленне ашуканства",
"ethereum-support": "Падтрымка Ethereum",
- "ethereum-wallets": "Ethereum гаманцы",
+ "ethereum-wallets": "Гаманцы Ethereum",
"ethereum-whitepaper": "Тэхнічная дакументацыя Ethereum",
"feedback-widget-prompt": "Ці дапамагла вам гэтая старонка?",
"feedback-card-prompt-page": "Ці была гэтая старонка карыснай?",
@@ -83,10 +97,9 @@
"feedback-card-prompt-tutorial": "Ці было гэтае кіраўніцтва карысным?",
"feedback-widget-thank-you-title": "Дзякуй за ваш водгук!",
"feedback-widget-thank-you-subtitle": "Палепшыце старонку шляхам адказу на некалькі пытанняў.",
- "feedback-widget-thank-you-subtitle-ext": "У выпадку калі вам патрэбна дапамога, вы можаце звярнуцца да супольніцтва ў нашым Discord.",
+ "feedback-widget-thank-you-subtitle-ext": "Калі вам патрэбна дапамога, вы можаце звярнуцца да супольніцтва праз Discord.",
"feedback-widget-thank-you-timing": "2–3 хвіліны",
"feedback-widget-thank-you-cta": "Адкрыйце кароткую апытанку",
- "find-wallet": "Find wallet",
"future-proofing": "Забеспячэнне будучыні",
"get-eth": "Атрымайце ETH",
"get-involved": "Далучыцца",
@@ -94,11 +107,10 @@
"grants": "Гранты",
"grant-programs": "Праграмы грантаў экасістэмы",
"guides": "Кіраўніцтвы",
- "guides-hub": "Даведачны цэнтр",
+ "guides-hub": "Практычныя кіраўніцтвы",
"history-of-ethereum": "Гісторыя Ethereum",
"home": "Галоўная",
"how-ethereum-works": "Як працуе Ethereum",
- "how-to-register-an-ethereum-account": "Як зарэгістраваць уліковы запіс Ethereum",
"how-to-revoke-token-access": "Як адклікаць доступ смарт-кантракту да вашых рэсурсаў крыптавалюты",
"how-to-swap-tokens": "Як абмяняць токены",
"how-to-use-a-bridge": "Як перанесці токены на ўзровень 2",
@@ -115,11 +127,9 @@
"last-edit": "Апошняя змена",
"layer-2": "Узровень 2",
"learn": "Абучэнне",
- "learn-by-coding": "Learn by coding",
"learn-hub": "Навучальны цэнтр",
"learn-menu": "Меню дапамогі",
"learn-more": "Даведайцеся больш",
- "less": "Less",
"light-mode": "Светлы",
"listing-policy-disclaimer": "Усе прадукты, пералічаныя на гэтай старонцы, не з'яўляюцца афіцыйнымі рэкамендацыямі і прыведзены тут толькі ў інфармацыйных мэтах. Каб дадаць прадукт або адправіць водгук аб палітыцы, паведаміце аб праблеме на GitHub.",
"loading": "Загрузка...",
@@ -128,11 +138,102 @@
"loading-error-try-again-later": "Немагчыма загрузіць даныя. Паўтарыце пазней.",
"logo": "лагатып",
"mainnet-ethereum": "Асноўная сетка Ethereum",
- "more": "More",
- "nav-developers": "Разпрацоўшчыкі",
+ "merge": "Зліццё",
+ "nav-about-description": "Публічны праект з адкрытым зыходным кодам для супольніцтва Ethereum",
+ "nav-advanced-description": "Знаёмцеся з больш складанымі тэмамі",
+ "nav-advanced-label": "Дадаткова",
+ "nav-basics-description": "Зразумейце асновы Ethereum",
+ "nav-basics-label": "Асновы",
+ "nav-bridges-description": "Web3 ператварылася ў экасістэму блокчэйнаў першага ўзроўню L1 і рашэнняў для маштабавання L2",
+ "nav-builders-home-description": "Кіраўніцтва па распрацоўцы для Ethereum: ад распрацоўшчыкаў і для распрацоўшчыкаў",
+ "nav-builders-home-label": "Галоўная старонка для стваральнікаў",
+ "nav-contribute-description": "Калі вы жадаеце дапамагчы, то гэта вам спатрэбіцца",
+ "nav-contribute-label": "Уклад у развіццё ethereum.org",
+ "nav-dao-description": "Супольніцтвы без цэнтралізаванага кіраўніцтва, якія належаць іх удзельнікам",
+ "nav-dapps-description": "Пазнаёмцеся з багатай экасістэмай праграмных дадаткаў з дапамогай Ethereum",
+ "nav-defi-description": "Глабальная, даступная для ўсіх альтэрнатыва традыцыйнаму фінансаваму рынку",
+ "nav-desci-description": "Глабальная, даступная для ўсіх альтэрнатыва існуючай навуковай сістэме",
+ "nav-desoc-description": "Платформы на аснове блокчэйнаў для сацыяльнага ўзаемадзеяння і стварэння кантэнту",
"nav-developers-docs": "Дакументацыя для распрацоўшчыкаў",
+ "nav-developers": "Распрацоўшчыкі",
+ "nav-did-description": "Стварайце свае ўнікальныя дэцэнтралізаваныя ідэнтыфікатары і валодайце імі",
+ "nav-docs-description": "Дакументы, якія дапамогуць зразумець Ethereum і ствараць разам з ім",
+ "nav-docs-design-description": "Апісанне ўнікальных дызайнерскіх задач web3, лепшых практычных рэкамендацый і вынікаў даследаванняў карыстальнікаў",
+ "nav-docs-design-label": "Асновы UX/UI-дызайну",
+ "nav-docs-foundation-description": "Асноўныя прынцыпы распрацоўкі на Ethereum",
+ "nav-docs-overview-description": "Ваша галоўная старонка для дакументаў па распрацоўцы",
+ "nav-docs-stack-description": "Зразумець усё пра стэк Ethereum",
+ "nav-eip-description": "Стандарты, якія вызначаюць новыя функцыі або працэсы",
+ "nav-eip-label": "EIP - Прапановы па паляпшэнні Ethereum",
+ "nav-emerging-description": "Пазнаёмцеся з новымі магчымасцямі выкарыстання Ethereum",
+ "nav-enterprise-description": "Ethereum: праграмныя дадаткі для бізнесу",
+ "nav-ethereum-org-description": "Гэты вэб-сайт быў створаны па ініцыятыве супольнасці — далучайцеся да нас і рабіце свой унёсак разам з намі",
+ "nav-ethereum-wallets-description": "Праграмны дадатак для ўзаемадзеяння з вашым акаўнтам Ethereum",
+ "nav-events-description": "Дэцэнтралізацыя і свабода ўдзелу для кожнага",
+ "nav-events-irl-description": "Кожны месяц праводзяцца буйныя падзеі Ethereum, у якіх можна ўдзельнічаць вочна і анлайн",
+ "nav-events-label": "Супольнасці і падзеі",
+ "nav-events-online-description": "Гэтыя анлайн-супольнасці заснаваны сотнямі тысяч энтузіястаў Ethereum",
+ "nav-find-wallet-description": "Гаманцы дазваляюць вам выкарыстоўваць крыптавалюту",
+ "nav-find-wallet-label": "Выберыце свой гаманец",
+ "nav-gas-fees-description": "Як разлічваецца камісія за транзакцыі ETH",
+ "nav-get-eth-description": "Для выкарыстання праграмных дадаткаў Ethereum вам неабходна мець эфір (ETH)",
+ "nav-get-started-description": "Вашы першыя крокі па выкарыстанні Ethereum",
+ "nav-governance-description": "Працэс, звязаны з абнаўленнем пратакола Ethereum",
+ "nav-grants-description": "Складзены нашым супольніцтвам куратарскі спіс праектаў з праграмамі грантавага фінансавання",
+ "nav-guide-create-account-description": "Кожны можа стварыць акаўнт Ethereum з дапамогай праграмнага дадатку для гаманца бясплатна і ў любы час",
+ "nav-guide-revoke-access-description": "Заставайцеся ў бяспецы пры ўзаемадзеянні са смарт-кантрактамі і праграмнымі дадаткамі ў экасістэме Ethereum",
+ "nav-guide-revoke-access-label": "Як адклікаць доступ смарт-кантракта",
+ "nav-guide-use-wallet-description": "Даведайцеся, як кіраваць усімі асноўнымі функцыямі гаманца",
+ "nav-guide-use-wallet-label": "Як карыстацца кашальком",
+ "nav-guides-description": "Практычныя паслядоўныя даведнікі, якія дапамогуць вам пачаць працу",
+ "nav-guides-label": "Як карыстацца даведнікамі",
+ "nav-history-description": "Храналогія ўсіх асноўных альтэрнатыўных варыянтаў і абнаўленняў",
+ "nav-history-label": "Тэхнічныя звесткі аб Ethereum",
+ "nav-layer-2-description": "Танныя і хуткія транзакцыі для Ethereum",
+ "nav-learn-by-coding-description": "Інструменты, якія дапамагаюць эксперыментаваць з Ethereum",
+ "nav-local-env-description": "Выберыце і наладзьце свой стэк распрацоўкі Ethereum",
+ "nav-mainnet-description": "Праграмныя блокчэйн-дадаткі для прадпрыемстваў можна ствараць у агульнадаступнай асноўнай сетцы Ethereum Mainnet",
+ "nav-nft-description": "Спосаб прадставіць што-небудзь унікальнае ў якасці актыву на аснове Ethereum",
+ "nav-open-research-description": "Адной з галоўных пераваг Ethereum з'яўляецца актыўнае даследчае супольніцтва",
+ "nav-open-research-label": "Адкрытае даследаванне",
+ "nav-overview-description": "Усё, што звязана з адукацыяй Ethereum",
+ "nav-participate-overview-description": "Агляд на тэму удзелу",
"nav-primary": "Головна",
- "nft-page": "Неўзаемназаменныя токены (NFT)",
+ "nav-quizzes-description": "Даведайцеся аб тым, наколькі добра вы разумееце Ethereum і крыптавалюты",
+ "nav-quizzes-label": "Праверце свае веды",
+ "nav-refi-description": "Альтэрнатыўная эканамічная сістэма, заснаваная на прынцыпах рэгенерацыі",
+ "nav-research-description": "Працэсы, якія выкарыстоўваюцца для паляпшэння Ethereum",
+ "nav-research-label": "Даследаванні і распрацоўкі",
+ "nav-roadmap-description": "Шлях да большай бяспечнасці, маштабавання і стабільнасці для Ethereum",
+ "nav-roadmap-future-description": "Умацаванне Ethereum у якасці надзейнай і дэцэнтралізаванай сеткі",
+ "nav-roadmap-future-label": "Забеспячэнне будучыні",
+ "nav-roadmap-label": "План развіцця",
+ "nav-roadmap-scaling-description": "Абнаўленне сеткі для далейшага зніжэння кошту і паляпшэння хуткасці транзакцый",
+ "nav-roadmap-security-description": "Забеспячэнне ўстойлівасці Ethereum для ўсіх тыпаў пагроз у будучыні",
+ "nav-roadmap-security-label": "Палепшаная бяспека",
+ "nav-roadmap-ux-description": "Выкарыстанне Ethereum неабходна зрабіць боль простым",
+ "nav-run-a-node-description": "Стаць поўнасцю самастойным, дапамагаючы забяспечваць бяспеку сеткі",
+ "nav-security-description": "Знаёмцеся з лепшымі практычнымі рэкамендацыямі падчас выкарыстання крыптавалюты",
+ "nav-smart-contracts-description": "Фундаментальныя блокі экасістэмы Ethereum",
+ "nav-stablecoins-description": "Стэйблкойны — гэта токены Ethereum, кошт якіх павінен застаецца нязменным",
+ "nav-stake-description": "Атрымлівайце ўзнагароды за забеспячэнне бяспекі Ethereum",
+ "nav-stake-label": "Стэйкінг",
+ "nav-staking-home-description": "Агляд розных варыянтаў для стэйкінгу",
+ "nav-staking-pool-description": "Стэйкайце і атрымлівайце ўзнагароды з любой колькасцю ETH разам з іншымі людзьмі",
+ "nav-staking-pool-label": "Аб'яднаны стэйкінг",
+ "nav-staking-saas-label": "Стэйкінг пры дапамозе паслуг",
+ "nav-staking-solo-label": "Адзіночны стэйкінг",
+ "nav-start-building-description": "Карысная інфармацыя для тых, хто пачынае",
+ "nav-translation-program-description": "Сумесныя намаганні па перакладу ethereum.org на ўсе мовы",
+ "nav-tutorials-description": "Куратарскі спіс навучальных матэрыялаў супольніцтва",
+ "nav-use-cases-description": "Пазнаёмцеся з рознымі ідэямі выкарыстання Ethereum",
+ "nav-what-is-ether-description": "Валюта праграмных дадаткаў Ethereum",
+ "nav-what-is-ethereum-description": "Разуменне таго, што робіць Ethereum асаблівым",
+ "nav-what-is-web3-label": "Што такое Web3?",
+ "nav-what-is-web3-description": "Альтэрнатыва цэнтралізаваным манаполіям, якія дыктуюць свае правілы",
+ "nav-whitepaper-description": "Арыгінальная тэхнічная дакументацыя Ethereum, якая была напісана Віталікам Бутэрыным у 2014 годзе",
+ "nav-zkp-description": "Спосаб даказаць сапраўднасць сцвярджэння без яго раскрыцця",
+ "nft-page": "NFT - Неўзаемназаменныя токены",
"nfts": "NFT",
"no": "Не",
"on-this-page": "На гэтай старонцы",
@@ -140,6 +241,7 @@
"page-developers-aria-label": "Меню Распрацоўшчыка",
"page-index-meta-title": "Галоўная",
"page-last-updated": "Абноўлена",
+ "participate-menu": "Меню ўдзелу",
"pbs": "Адрозненне аўтара прапановы і распрацоўшчыка",
"pools": "Аб'яднаны стэйкінг",
"privacy-policy": "Палітыка прыватнасці",
@@ -150,13 +252,11 @@
"refresh": "Абнавіць старонку.",
"return-home": "вярнуцца на галоўную старонку",
"roadmap": "План развіцця Ethereum",
+ "research": "Даследаванне",
+ "research-menu": "Меню даследавання",
"resources": "Рэсурсы для перакладу",
- "regenerative-finance": "Regenerative finance (ReFi)",
- "run-a-node": "Run a node",
- "rollup-component-website": "Website",
"rollup-component-developer-docs": "Дакументацыя для распрацоўшчыкаў",
"rollup-component-technology-and-risk-summary": "Агляд тэхналогій і рызыкі",
- "scaling": "Scaling",
"saas": "Стэйкінг, як паслуга",
"search": "Пошук",
"search-ethereum-org": "Шукаць на ethereum.org",
@@ -167,19 +267,13 @@
"single-slot-finality": "Завяршэнне ў адзін слот",
"statelessness": "Адсутнасць статусу",
"see-contributors": "Прагляд удзельнікаў",
- "set-up-local-env": "Set up local environment",
- "sharding": "Sharding",
"show-all": "Паказаць усё",
"show-less": "Паказваць менш",
"site-description": "Ethereum гэта глабальная, дэцэнтралізаваная платформа для карыстання грашыма і новымі тыпамі дадаткаў. На гэтай платформе вы можаце пісаць код, які кантралюе грошы і стварае даступныя з усіх краёў свету дадаткі.",
- "site-title": "ethereum.org",
"skip-to-main-content": "Перайсці да асноўнага зместу",
- "smart-contracts": "Smart contracts",
- "stablecoins": "Stablecoins",
"stake-eth": "Стэйкайце ETH",
"staking": "Стэйкінг",
"start-here": "Пачніце тут",
- "style-guide": "Style guide",
"solo": "Адзіночны стэйкінг",
"terms-of-use": "Правілы выкарыстання",
"translation-banner-body-new": "Гэта старонка адлюстроўваецца на англійскай мове, таму што мы яшчэ не пераклалі яе. Дапамажыце нам у гэтым.",
@@ -191,17 +285,18 @@
"translation-banner-no-bugs-title": "Памылак тут няма!",
"translation-banner-no-bugs-content": "Гэтая старонка не перакладзена. Мы наўмысна пакуль пакінулі яе на англійскай мове.",
"translation-banner-no-bugs-dont-show-again": "Больш не паказваць",
+ "translation-program": "Праграму перакладу",
"try-using-search": "Паспрабуйце выкарыстоўваць пошук, каб знайсці тое, што вы шукаеце або",
"tutorials": "Падручнікі",
"up": "Уверх",
+ "use": "Выкарыстанне",
"use-ethereum": "Карыстанне Ethereum",
"use-ethereum-menu": "Выкарыстанне меню Ethereum",
- "user-experience": "User experience",
+ "use-menu": "Меню выкарыстання",
"verkle-trees": "Дрэвы Веркла",
"wallets": "Гаманцы",
"we-couldnt-find-that-page": "Гэтая старонка не знойдзена",
"web3": "Што такое Web3?",
- "web3-title": "Web3",
"website-last-updated": "Абноўлена",
"what-is-ether": "Што такое эфір (ETH)?",
"what-is-ethereum": "Што такое Ethereum?",
diff --git a/src/intl/be/page-languages.json b/src/intl/be/page-languages.json
index f2df7c7900d..4b1f7c31515 100644
--- a/src/intl/be/page-languages.json
+++ b/src/intl/be/page-languages.json
@@ -2,15 +2,15 @@
"page-languages-h1": "Моўная падтрымка",
"page-languages-interested": "Зацікаўлены ва ўкладзе?",
"page-languages-learn-more": "Даведайцеся больш пра нашу праграму перакладу",
- "page-languages-meta-desc": "Рэсурсы да ўсіх падтрымліваемых моў ethereum.org і спосабы ўдзелу ў якасці перакладчыка.",
- "page-languages-meta-title": "ethereum.org Моўныя пераклады",
- "page-languages-p1": "Ethereum - гэта глабальны праект, і вельмі важна, каб ethereum.org быў даступны кожнаму, незалежна ад яго нацыянальнасці і мовы. Наша супольнасць прыкладае ўсе намаганні, каб зрабіць гэта бачанне рэальнасцю.",
+ "page-languages-meta-desc": "Рэсурсы да ўсіх моў, якія падтрымлівае ethereum.org, і спосабы ўдзелу ў якасці перакладчыка.",
+ "page-languages-meta-title": "Пераклады ethereum.org на розныя мовы",
+ "page-languages-p1": "Ethereum — гэта глабальны праект, і вельмі важна, каб ethereum.org быў даступны кожнаму, незалежна ад яго нацыянальнасці і мовы. Наша супольнасць прыкладае ўсе намаганні, каб зрабіць гэта бачанне рэальнасцю.",
"page-languages-translations-available": "ethereum.org даступны на наступных мовах",
- "page-languages-resources-paragraph": "У дадатак да перакладу кантэнту ethereum.org, мы таксама падтрымліваем",
+ "page-languages-resources-paragraph": "У дадатак да перакладу кантэнту ethereum.org мы таксама падтрымліваем",
"page-languages-resources-link": "куратарскі спіс рэсурсаў Ethereum на многіх мовах",
"page-languages-want-more-header": "Хочаце бачыць ethereum.org на іншай мове?",
"page-languages-want-more-link": "Праграму перакладу",
- "page-languages-want-more-paragraph": "Перакладчыкі ethereum.org заўсёды перакладаюць старонкі на як мага больш моў. Каб убачыць, над чым яны зараз працуюць, або зарэгістравацца, каб далучыцца да іх, прачытайце пра наш",
+ "page-languages-want-more-paragraph": "Перакладчыкі ethereum.org заўсёды перакладаюць старонкі на як мага больш моў. Каб убачыць, над чым яны зараз працуюць, або зарэгістравацца, каб далучыцца да іх, прачытайце пра наш",
"page-languages-filter-label": "Спіс фільтраў",
"page-languages-filter-placeholder": "Увядзіце, каб адфільтраваць",
"page-languages-browser-default": "Браўзер па замоўчванню",
@@ -25,15 +25,11 @@
"language-bn": "Бенгальская",
"language-bs": "Баснійская",
"language-ca": "Каталонская",
- "language-cs": "Czech",
"language-da": "Дацкая",
- "language-de": "German",
"language-el": "Грэчаская",
"language-en": "Англійская",
- "language-es": "Spanish",
"language-fa": "Фарсі",
"language-fi": "Фінская",
- "language-fr": "French",
"language-gl": "Галісійская",
"language-gu": "Гуджараці",
"language-he": "Іўрыт",
@@ -43,8 +39,6 @@
"language-hy-am": "Армянская",
"language-id": "Інданезійская",
"language-ig": "Ігба",
- "language-it": "Italian",
- "language-ja": "Japanese",
"language-ka": "Грузінская",
"language-kk": "Казахская",
"language-km": "Кхмерская",
@@ -55,7 +49,7 @@
"language-mr": "Маратхі",
"language-ms": "Малайская",
"language-nb": "Нарвежская",
- "language-ne-np": "Nepali",
+ "language-ne-np": "Непальская",
"language-nl": "Нідэрландская",
"language-pcm": "Піджын, Нігерыя",
"language-fil": "Філіпінская",
@@ -63,7 +57,6 @@
"language-pt": "Партугальская",
"language-pt-br": "Партугальская (Бразілія)",
"language-ro": "Румынская",
- "language-ru": "Russian",
"language-se": "Шведская",
"language-sk": "Славацкая",
"language-sl": "Славенская",
@@ -72,11 +65,9 @@
"language-ta": "Тамільская",
"language-th": "Тайская",
"language-tk": "Туркменская",
- "language-tr": "Turkish",
"language-uk": "Украінская",
"language-ur": "Урду",
"language-uz": "Узбекская",
- "language-vi": "Vietnamese",
"language-zh": "Кітайская спрошчаная",
"language-zh-tw": "Кітайская традыцыйная"
}
diff --git a/src/intl/be/page-wallets-find-wallet.json b/src/intl/be/page-wallets-find-wallet.json
index ef4489b5420..d35b25aeb6f 100644
--- a/src/intl/be/page-wallets-find-wallet.json
+++ b/src/intl/be/page-wallets-find-wallet.json
@@ -7,7 +7,6 @@
"page-find-wallet-meta-title": "Знайдзіце гаманец Ethereum",
"page-find-wallet-title": "Знайсці гаманец",
"page-find-wallet-try-removing": "Паспрабуйце выдаліць адну або дзве функцыі",
- "page-find-wallet-choose-to-compare": "Выберыце для параўнання",
"page-stake-eth": "Стэйкайце ETH",
"page-find-wallet-open-source": "Open source",
"page-find-wallet-open-source-desc": "Праграмнае забеспячэнне з адкрытым зыходным кодам дазваляе любому праверыць цэласнасць і бяспеку праграмнага дадатку",
@@ -16,8 +15,6 @@
"page-find-wallet-non-custodial-desc": "Гаманцы, якія не кантралююць вашы прыватныя ключы",
"page-find-wallet-hardware-wallet-support": "Падтрымка апаратнага гаманца",
"page-find-wallet-hardware-wallet-support-desc": "Гаманцы, якія могуць падключацца да апаратнага гаманца для лепшай бяспекі",
- "page-find-wallet-walletconnect": "WalletConnect",
- "page-find-wallet-walletconnect-desc": "Гаманцы, якія падтрымліваюць WalletConnect для падключэння да дэцэнтралізаваных дадаткаў",
"page-find-wallet-rpc-importing": "Імпарт RPC",
"page-find-wallet-rpc-importing-desc": "Гаманцы, якія падтрымліваюць карыстальніцкія канчатковыя кропкі RPC для падключэння да розных вузлоў або сетак",
"page-find-wallet-nft-support": "Падтрымка NFT",
@@ -36,8 +33,6 @@
"page-find-wallet-ens-support-desc": "Гаманцы з падтрымкай Ethereum Name Service (ENS)",
"page-find-wallet-token-importing": "Імпарт токенаў",
"page-find-wallet-token-importing-desc": "Імпартуйце любы токен ERC-20 для выкарыстання ў гаманцу",
- "page-find-wallet-fee-optimization": "Аптымізацыя платы",
- "page-find-wallet-fee-optimization-desc": "Падтрымка транзакцый тыпу 2 для аптымізацыі платы за газ і вяртання платы за нявыкарыстаны газ",
"page-find-wallet-buy-crypto": "Купіць крыпту",
"page-find-wallet-buy-crypto-desc": "Купляйце крыпту за фіятныя грошы непасрэдна ў гаманцу \n * Заўвага: купля крыпты можа залежаць ад рэгіёна",
"page-find-wallet-sell-for-fiat": "Прадаць за фіят",
@@ -46,7 +41,6 @@
"page-find-wallet-multisig-desc": "Гаманцы, якія патрабуюць некалькіх подпісаў для аўтарызацыі транзакцыі",
"page-find-wallet-social-recovery": "Сацыяльнае аднаўленне",
"page-find-wallet-social-recovery-desc": "Гаманцы, якія дазваляюць апекунам змяняць ключ подпісу для смарт-кантрактных гаманцаў",
- "page-find-wallet-token-support": "Падтрымка токенаў",
"page-find-wallet-features": "Features",
"page-find-wallet-security": "Security",
"page-find-wallet-smart-contract": "Smart contract",
@@ -63,7 +57,6 @@
"page-find-wallet-chromium": "Chromium",
"page-find-wallet-firefox": "Firefox",
"page-find-wallet-hardware": "Hardware",
- "page-find-wallet-hardware-desc": "Апаратныя гаманцы",
"page-find-wallet-new-to-crypto-title": "Навічок у крыптавалюце",
"page-find-wallet-new-to-crypto-desc": "Вы — пачынаючы карыстальнік, які шукае свой першы гаманец",
"page-find-wallet-nfts-title": "NFT",
@@ -74,21 +67,13 @@
"page-find-wallet-finance-desc": "Вы карыстаецеся DeFi і жадаеце гаманец, які дазваляе падключацца да DeFi дадаткаў",
"page-find-wallet-developer-title": "Распрацоўшчык",
"page-find-wallet-developer-desc": "Вы распрацоўшчык і вам патрабуецца гаманец для дапамогі ў распрацоўцы і тэсціраванні дэцэнтралізаваных дадаткаў",
- "page-find-wallet-persona-desc": "Выберыце профіль, які адпавядае вашаму тыпу карыстальніка, і адфільтруйце спіс гаманцаў",
"page-find-wallet-filters": "Фільтры",
"page-find-wallet-active": "актыўныя",
- "page-find-wallet-profile-filters": "Фільтры профілю",
- "page-find-wallet-feature-filters": "Фільтры функцый",
"page-find-wallet-footnote-1": "Гаманцы, пералічаныя на гэтай старонцы, не з'яўляюцца афіцыйнымі рэкамендацыямі і прадстаўляюцца толькі ў інфармацыйных мэтах.",
"page-find-wallet-footnote-2": "Іх апісанне было прадстаўлена самімі праектамі гаманцаў.",
"page-find-wallet-footnote-3": "Мы дадаем прадукты на гэтую старонку на аснове крытэрыяў нашай палітыкі лістынга. Калі вы жадаеце, каб мы дадалі гаманец, Падніміце праблему ў GitHub.",
"page-find-wallet-mobile": "Мабільны",
- "page-find-wallet-mobile-desc": "Гаманцы з мабільнымі дадаткамі",
"page-find-wallet-desktop": "На камп'ютары",
- "page-find-wallet-desktop-desc": "Гаманцы з дадаткамі для настольных ПК",
"page-find-wallet-browser": "Браўзер",
- "page-find-wallet-browser-desc": "Гаманцы з пашырэннямі для браўзера",
- "page-find-wallet-device": "Прылада",
- "page-find-choose-to-compare": "Выберыце для параўнання",
- "page-find-wallet-choose-features": "Выберыце функцыі"
+ "page-find-wallet-device": "Прылада"
}
diff --git a/src/intl/bg/common.json b/src/intl/bg/common.json
index ffdea3aa7e7..e6dbd6b48cf 100644
--- a/src/intl/bg/common.json
+++ b/src/intl/bg/common.json
@@ -1,17 +1,29 @@
{
- "account-abstraction": "Абстракция на акаунта",
"about-ethereum-org": "За ethereum.org",
"about-us": "За нас",
+ "adding-desci-projects": "Добавяне на проекти за децентрализирана наука (DeSci)",
+ "adding-developer-tools": "Добавяне на инструменти за разработчици",
+ "adding-exchanges": "Добавяне на борси",
+ "adding-glossary-terms": "Добавяне на термини в речника",
+ "adding-staking-products": "Добавяне на продукти за залагане",
+ "adding-wallets": "Добавяне на портфейли",
+ "account-abstraction": "Абстракция на акаунта",
+ "acknowledgements": "Благодарности",
"aria-toggle-search-button": "Бутон за търсенеToggle",
"aria-toggle-menu-button": "Бутон за Toggle меню",
"beacon-chain": "Сигнална верига",
"bridges": "Мостове на блокова верига",
+ "bug-bounty": "Акция за намиране на бъгове",
+ "build": "Изграждане",
+ "build-menu": "Меню за изграждане",
"clear": "Изчистване",
"close": "Затваряне",
"community": "Общност",
"community-hub": "Център на общността",
"community-menu": "Меню на общността",
"contact": "За контакти",
+ "content-buckets": "Контейнери за съдържание",
+ "content-resources": "Ресурси за съдържание",
"content-standardization": "Стандартизация на съдържанието",
"contributing": "С принос",
"contributors": "Сътрудници",
@@ -20,14 +32,17 @@
"copied": "Копирано",
"copy": "Копиране",
"danksharding": "Danksharding",
- "dao-page": "Децентрализирани автономни организации (DAOs)",
+ "dao-page": "DAOs - Децентрализирани автономни организации",
"dark-mode": "Тъмно",
"data-provided-by": "Източник на данни:",
- "decentralized-applications-dapps": "Децентрализирани приложения (dapps)",
+ "decentralized-applications-dapps": "Dapps - Децентрализирани приложения",
"decentralized-identity": "Децентрализирана самоличност",
"decentralized-social-networks": "Децентрализирани социални мрежи",
- "decentralized-science": "Децентрализирана наука (DeSci)",
- "defi-page": "Децентрализирани финанси (DeFi)",
+ "decentralized-science": "DeSci - Децентрализирана наука",
+ "description": "Описание на елемент за навигация",
+ "defi-page": "DeFi - Децентрализирани финанси",
+ "design": "Дизайн",
+ "design-principles": "Принципи на дизайн",
"devcon": "Девкон/Devcon",
"developers": "Разработчици",
"developers-home": "Начална страница на разработчиците",
@@ -51,7 +66,7 @@
"documentation": "Документация",
"down": "Надолу",
"ecosystem": "Екосистема",
- "edit-page": "Редактиране на страницата",
+ "edit-page": "Редактирай страницата",
"ef-blog": "Блог на фондация Етереум",
"eips": "Предложения за подобрения в Етереум",
"energy-consumption": "Потребление на електричество от Етериум",
@@ -59,11 +74,10 @@
"enterprise-menu": "Меню на предприятието",
"esp": "Програма за поддръжка на екосистемата",
"eth-current-price": "Настояща цена на ETH (в USD)",
- "ethereum-basics": "Ethereum basics",
"ethereum-bug-bounty": "Кампания за търсене на бъгове на Етереум",
"consensus-when-shipping": "Кога излиза?",
"ethereum-upgrades": "Подобрения на Етереум",
- "ethereum-brand-assets": "Характеристики на марката Етереум",
+ "ethereum-brand-assets": "Активи на марката Ethereum",
"ethereum-online": "Общности в мрежата",
"ethereum-events": "Събития на Етериум",
"ethereum-foundation": "Фондация Етереум",
@@ -83,22 +97,22 @@
"feedback-card-prompt-tutorial": "Полезено ли беше това обучение?",
"feedback-widget-thank-you-title": "Благодарим за обратната връзка!",
"feedback-widget-thank-you-subtitle": "Помогнете да направим тази страница по-добра, като отговорите на няколко въпроса.",
- "feedback-widget-thank-you-subtitle-ext": "При нужда от помощ, свържете се с общността в нашия Дискорд.",
+ "feedback-widget-thank-you-subtitle-ext": "Ако се нуждаете от помощ, можете да се обърнете към общността на нашата страница Discord.",
"feedback-widget-thank-you-timing": "2 – 3 мин",
"feedback-widget-thank-you-cta": "Започнете кратка анкета",
"find-wallet": "Намери портфейл",
"future-proofing": "Подсигуряване за бъдещето",
"get-eth": "Вземете ETH",
"get-involved": "Включете се",
- "get-started": "Започнете",
+ "get-started": "Начало",
"grants": "Дарения",
"grant-programs": "Програми за дарения в екосистемата",
"guides": "Ръководства",
- "guides-hub": "Център с ръководства",
+ "guides-hub": "Наръчници",
"history-of-ethereum": "Историята на Етереум",
"home": "Начална страница",
"how-ethereum-works": "Как работи Етериум",
- "how-to-register-an-ethereum-account": "Как да „регистрирате“ акаунт в Етереум",
+ "how-to-create-an-ethereum-account": "Как да „регистрирате“ акаунт в Етереум",
"how-to-revoke-token-access": "Как да отмените достъпа на интелигентен договор до средствата ви в криптовалута",
"how-to-swap-tokens": "Как да заменяте токени",
"how-to-use-a-bridge": "Как да прехвърляте токени на слой 2",
@@ -115,7 +129,7 @@
"last-edit": "Последна редакция",
"layer-2": "Слой 2",
"learn": "Научете",
- "learn-by-coding": "Научете, като кодирате",
+ "learn-by-coding": "Учете се, като кодирате",
"learn-hub": "Обучителен център",
"learn-menu": "Как да научиш",
"learn-more": "Научи повече",
@@ -128,11 +142,108 @@
"loading-error-try-again-later": "Данните не могат да се заредят. Опитайте отново по-късно.",
"logo": "лого",
"mainnet-ethereum": "Основната мрежа на Етереум",
- "more": "Още",
- "nav-developers": "Разработчици",
+ "merge": "Сливане",
+ "more": "Повече",
+ "nav-about-description": "Публичен проект с отворен код за общността на Eтереум",
+ "nav-advanced-description": "Научете по-сложните теми",
+ "nav-advanced-label": "Разширени",
+ "nav-basics-description": "Разберете какво е основополагащо в Eтереум",
+ "nav-basics-label": "Основи",
+ "nav-bridges-description": "Web3 се превърна в екосистема от основни блокови вериги от слой 1 ( L1) и решения за мащабируемост от слой 2 ( L2)",
+ "nav-builders-home-description": "Ръководство за изграждане за Eтереум – от разработчици за разработчици",
+ "nav-builders-home-label": "Начална страница за разработчик",
+ "nav-contribute-description": "Ако имате нужда от помощ, това ще ви насочи",
+ "nav-contribute-label": "Допринасяне към ethereum.org",
+ "nav-dao-description": "Общности, притежавани от членовете, без централизирана власт",
+ "nav-dapps-description": "Разгледайте богата екосистема от приложения с помощта на Eтереум",
+ "nav-defi-description": "Глобална, отворена алтернатива на традиционния финансов пазар",
+ "nav-desci-description": "Глобална, отворена алтернатива на настоящата научна система",
+ "nav-desoc-description": "Базирани на блокови вериги платформи за социално взаимодействие и създаване на съдържание",
"nav-developers-docs": "Документация за разработчици",
+ "nav-developers": "Разработчици",
+ "nav-did-description": "Издавайте и притежавайте свой собствени, уникални децентрализирани идентификатори",
+ "nav-docs-description": "Документи, които да ви помогнат да разберете и градите с Eтереум",
+ "nav-docs-design-description": "Описание на уникални предизвикателства с Web3 дизайн, най-добри практики и информация от потребителски проучвания",
+ "nav-docs-design-label": "Основи на UX/UI дизайна",
+ "nav-docs-foundation-description": "Базови фундаменти за разработване в Eтереум",
+ "nav-docs-foundation-label": "Основни теми",
+ "nav-docs-overview-description": "Вашата начална страница за документи за разработчици",
+ "nav-docs-stack-description": "Разберете всички подробности за обема на Етереум",
+ "nav-docs-stack-label": "Обем на Етереум",
+ "nav-eip-description": "Стандарти, които определят нови функции или процеси",
+ "nav-eip-label": "EIP - Предложения за подобряване на Eтереум",
+ "nav-emerging-description": "Запознайте се с други, по-нови случаи на използване за Eтереум",
+ "nav-enterprise-description": "Бизнес приложения за Eтереум",
+ "nav-ethereum-org-description": "Този уебсайт се ръководи от общността – присъединете се към нас и дайте своя принос",
+ "nav-ethereum-wallets-description": "Приложение, което да взаимодейства с вашия акаунт в Eтереум",
+ "nav-events-description": "Децентрализация и свободата всеки да участва",
+ "nav-events-irl-description": "Всеки месец има големи събития на Eтереум – на живо и онлайн",
+ "nav-events-label": "Общности и събития",
+ "nav-events-online-description": "Стотици хиляди Eтереум ентусиасти покровителстват тези онлайн общности",
+ "nav-find-wallet-description": "Портфейлите ви позволяват да използвате криптовалута",
+ "nav-find-wallet-label": "Изберете своя портфейл",
+ "nav-gas-fees-description": "Как се изчисляват таксите за транзакции с ETH",
+ "nav-get-eth-description": "Нужен ви е етер (ETH), за да използвате приложенията на Eтереум",
+ "nav-get-started-description": "Първи стъпки в използването на Eтереум",
+ "nav-governance-description": "Процесът, използван за надграждането на протокола на Eтереум",
+ "nav-governance-label": "Управление",
+ "nav-grants-description": "Списък, подбран от нашата общност, с проекти, които предоставят програми с безвъзмездно финансиране",
+ "nav-guide-create-account-description": "Всеки може да си създаде акаунт в Eтереум по всяко време, безплатно с приложение за портфейл",
+ "nav-guide-revoke-access-description": "Бъдете защитени, когато взаимодействате с интелигентни договори и приложения в екосистемата на Eтереум",
+ "nav-guide-revoke-access-label": "Как да отмените достъпа на интелигентен договор",
+ "nav-guide-use-wallet-description": "Разберете как да управлявате всички основни функции на портфейл",
+ "nav-guide-use-wallet-label": "Как се използва портфейл",
+ "nav-guides-description": "Практични поетапни ръководства, които да ви помогнат да започнете",
+ "nav-guides-label": "Наръчници",
+ "nav-history-description": "Хронологичен списък на всички големи вилки и актуализации",
+ "nav-history-label": "Техническа история на Eтереум",
+ "nav-layer-2-description": "По-евтини и по-бързи трансакции за Eтереум",
+ "nav-learn-by-coding-description": "Инструменти, които ще ви помогнат да експериментирате с Eтереум",
+ "nav-local-env-description": "Изберете и настройте своя обем разработки в Eтереум",
+ "nav-mainnet-description": "Приложения на блоковата верига за предприятия мога да се изграждат на публичната основна мрежа на Eтереум",
+ "nav-nft-description": "Начин, по който да представите всяко уникално нещо като базиран на Етереум актив",
+ "nav-open-research-description": "Една от основните силни страни на Eтереум е активната изследователска общност",
+ "nav-open-research-label": "Отворено проучване",
+ "nav-overview-description": "Всичко за обучение за Eтереум",
+ "nav-overview-label": "Преглед",
+ "nav-participate-overview-description": "Общ преглед на начините да участвате",
"nav-primary": "Основен",
- "nft-page": "Незаменяеми токени (NFTs)",
+ "nav-private-description": "Ресурси на разработчиците за частното предприятие на Етереум",
+ "nav-quizzes-description": "Вижте колко добре разбирате Eтереум и криптовалутите",
+ "nav-quizzes-label": "Тествайте знанията си",
+ "nav-refi-description": "Алтернативна икономическа система, изградена на регенеративни принципи",
+ "nav-research-description": "Процес, използван за подобряване на Eтереум",
+ "nav-research-label": "Научно-изследователска и развойна дейност",
+ "nav-roadmap-description": "Пътят към по-голяма мащабност, сигурност и устойчивост за Eтереум",
+ "nav-roadmap-future-description": "Утвърждаване на Eтереум като стабилна и децентрализирана мрежа",
+ "nav-roadmap-future-label": "Подсигуряване за бъдещето",
+ "nav-roadmap-label": "Пътна карта",
+ "nav-roadmap-scaling-description": "Актуализации на мрежата за допълнително намаляване на цената на трансакциите и скоростта им",
+ "nav-roadmap-security-description": "Гарантиране, че Eтереум ще остане устойчива на всякакви атаки в бъдеще",
+ "nav-roadmap-security-label": "Повишена сигурност",
+ "nav-roadmap-ux-description": "Употребата на Eтереум трябва да е лесна",
+ "nav-run-a-node-description": "Станете напълно суверенни, като същевременно подпомагате обезопасяването на мрежата",
+ "nav-security-description": "Научете кои са най-добрите практики при използване на криптовалута",
+ "nav-smart-contracts-description": "Основните градивни блокове на екосистемата на Eтереум",
+ "nav-stablecoins-description": "Стейбълкойните са токени на Eтереум, създадени да поддържат фиксирана стойност",
+ "nav-stake-description": "Печелете награди за това да правите Eтереум по-безопасна",
+ "nav-stake-label": "Залагане",
+ "nav-staking-home-description": "Преглед на различните опции за залагане",
+ "nav-staking-pool-description": "Залагайте и печелете награди с каквато и да е сума ETH, като се обедините с други",
+ "nav-staking-pool-label": "Групово залагане",
+ "nav-staking-saas-label": "Залагане с услуга",
+ "nav-staking-solo-label": "Самостоятелно залагане",
+ "nav-start-building-description": "Полезна информация за начинаещи",
+ "nav-translation-program-description": "Доброволно сътрудничество за превеждане на ethereum.org на всички езици",
+ "nav-tutorials-description": "Списък на общността с подбрани обучения",
+ "nav-use-cases-description": "Открийте различни идеи за използване на Eтереум",
+ "nav-what-is-ether-description": "Валутата на приложенията на Eтереум",
+ "nav-what-is-ethereum-description": "Научете какво прави Eтереум специална",
+ "nav-what-is-web3-label": "Какво представлява Web3?",
+ "nav-what-is-web3-description": "Алтернатива на централизираните монополи, които диктуват правилата",
+ "nav-whitepaper-description": "Оригиналният Уайтпейпър на Eтереум, написан от Виталик Бутерин през 2014 г.",
+ "nav-zkp-description": "Начин да се докаже валидността на твърдение, без самото твърдение да се разкрива",
+ "nft-page": "NFTs - Незаменяеми токени",
"nfts": "NFT",
"no": "Не",
"on-this-page": "На тази страница",
@@ -140,6 +251,8 @@
"page-developers-aria-label": "Меню за разработчици",
"page-index-meta-title": "Начална страница",
"page-last-updated": "Последна актуализация на страницата",
+ "participate": "Участвайте",
+ "participate-menu": "Меню за участие",
"pbs": "Разделяне на предлагащ и строител",
"pools": "Групово залагане",
"privacy-policy": "Политика за поверителност",
@@ -150,13 +263,14 @@
"refresh": "Моля, обновете страницата.",
"return-home": "към началната страница",
"roadmap": "Пътна карта на Етереум",
+ "research": "Проучване",
+ "research-menu": "Меню за проучване",
"resources": "Източници за превод",
- "regenerative-finance": "Regenerative finance (ReFi)",
- "run-a-node": "Активиране на възел",
+ "run-a-node": "Активирайте нод",
"rollup-component-website": "Уебсайт",
"rollup-component-developer-docs": "Документация на разработчика",
"rollup-component-technology-and-risk-summary": "Технология и обобщение на рисковете",
- "scaling": "Увеличаване на мащаба",
+ "scaling": "Мащаб",
"saas": "Залагането като услуга",
"search": "Търсене",
"search-ethereum-org": "Търсене на ethereum.org",
@@ -164,6 +278,7 @@
"search-box-blank-state-text": "Търсете по-нататък!",
"search-eth-address": "Това прилича на адреса на Етереум. Ние не предлагаме данни, които са специфични за даден адрес. Опитайте да го намерите в block explorer като",
"search-no-results": "Няма резултати от търсенето ви",
+ "security": "Сигурност",
"single-slot-finality": "Финализиране в рамките на един слот",
"statelessness": "Без състояние",
"see-contributors": "Вижте сътрудниците",
@@ -172,15 +287,14 @@
"show-all": "Покажи всички",
"show-less": "Покажи по-малко",
"site-description": "Етереум е глобална, децентрализирана платформа за пари и нови видове приложения. В Етереум можете да създавате код, който контролира пари, и да правите приложения, достъпни по целия свят.",
- "site-title": "ethereum.org",
"skip-to-main-content": "Прeскачане към основното съдържание",
"smart-contracts": "Умни договори",
- "stablecoins": "Стейбълкойни/Stablecoins",
+ "stablecoins": "Стейбълкойни",
"stake-eth": "Залагайте ETH",
"staking": "Залагане",
"start-here": "Започнете тук",
- "style-guide": "Style guide",
"solo": "Самостоятелно залагане",
+ "support": "Поддръжка",
"terms-of-use": "Условия за ползване",
"translation-banner-body-new": "Виждате тази страница на английски език, защото все още не сме я превели. Помогнете ни да преведем съдържанието.",
"translation-banner-body-update": "Има нова версия на тази страница, но все още е само на английски език. Помогнете ни да преведем последната версия.",
@@ -191,20 +305,22 @@
"translation-banner-no-bugs-title": "Тук няма грешки!",
"translation-banner-no-bugs-content": "Тази страница не се превежда. Засега нарочно сме я оставили на английски език.",
"translation-banner-no-bugs-dont-show-again": "Да не се показва отново",
+ "translation-program": "Програма за преводи",
"try-using-search": "Опитайте да намерите това, което търсите, с търсачката или",
"tutorials": "Ръководства",
"up": "Нагоре",
+ "use": "Използване",
"use-ethereum": "Използвайте Етереум",
"use-ethereum-menu": "Използвайте менюто на Етереум",
- "user-experience": "User experience",
+ "use-menu": "Меню за използване",
"verkle-trees": "Дърво на Verkle",
"wallets": "Портфейли",
"we-couldnt-find-that-page": "Не можахме да намерим тази страница",
"web3": "Какво представлява Web3?",
"web3-title": "Web3",
"website-last-updated": "Последно обновяване на уебсайта",
- "what-is-ether": "Какво е етер/ether (ETH)?",
- "what-is-ethereum": "Какво е Етереум?",
+ "what-is-ether": "Какво е етер (ETH)?",
+ "what-is-ethereum": "Какво е Eтереум?",
"withdrawals": "Тегления на залози",
"yes": "Да",
"zero-knowledge-proofs": "Доказателства за нулево знание"
diff --git a/src/intl/bg/page-languages.json b/src/intl/bg/page-languages.json
index 73337563552..426c8dabf24 100644
--- a/src/intl/bg/page-languages.json
+++ b/src/intl/bg/page-languages.json
@@ -4,7 +4,7 @@
"page-languages-learn-more": "Научете повече за нашата Програма за преводи",
"page-languages-meta-desc": "Източници за всички поддържани езици в ethereum.org и начини да се включите като преводач.",
"page-languages-meta-title": "езикови преводи на ethereum.org",
- "page-languages-p1": "Етереум е глобален проект и достъпът на всички в ethereum.org е от изключително значение, независимо каква е тяхната националност или език. Нашата общност работи усилено да превърне тази визия в реалност.",
+ "page-languages-p1": "Ethereum е глобален проект и достъпът на всички в ethereum.org е от изключително значение, независимо каква е тяхната националност или език. Нашата общност работи усилено да превърне тази визия в реалност.",
"page-languages-translations-available": "ethereum.org е наличен на следните езици",
"page-languages-resources-paragraph": "Освен че превеждаме съдържанието на ethereum.org, също така поддържаме и",
"page-languages-resources-link": "списък с подбрани ресурси на Етереум на много различни езици",
@@ -17,13 +17,13 @@
"page-languages-translated": "преведено",
"page-languages-words": "думи",
"page-languages-recruit-community": "Помогнете ни да преведем ethereum.org.",
- "langauge-am": "Amharic",
+ "langauge-am": "Амхарски",
"language-ar": "Арабски",
"language-az": "Азербайджански",
- "langauge-be": "Belarusian",
+ "langauge-be": "Беларуски",
"language-bg": "Български",
"language-bn": "Бенгалски",
- "language-bs": "Bosnian",
+ "language-bs": "Босненски",
"language-ca": "Каталунски",
"language-cs": "Чешки",
"language-da": "Датски",
@@ -35,12 +35,12 @@
"language-fi": "Финландски",
"language-fr": "Френски",
"language-gl": "Галисийски",
- "language-gu": "Gujarati",
+ "language-gu": "Гуджарати",
"language-he": "Иврит",
"language-hi": "Хинди",
"language-hr": "Хърватски",
"language-hu": "Унгарски",
- "language-hy-am": "Armenian",
+ "language-hy-am": "Арменски",
"language-id": "Индонезийски",
"language-ig": "Игбо",
"language-it": "Италиански",
@@ -48,16 +48,16 @@
"language-ka": "Грузински",
"language-kk": "Казахски",
"language-km": "Кхмерски",
- "language-kn": "Kannada",
+ "language-kn": "Каннада",
"language-ko": "Корейски",
"language-lt": "Литовски",
- "language-ml": "Малайски",
+ "language-ml": "Малаялам",
"language-mr": "Маратхи",
"language-ms": "Малайски",
"language-nb": "Норвежки",
- "language-ne-np": "Nepali",
+ "language-ne-np": "Непалски",
"language-nl": "Нидерландски",
- "language-pcm": "Nigerian Pidgin",
+ "language-pcm": "Нигерийски пиджин",
"language-fil": "Филипински",
"language-pl": "Полски",
"language-pt": "Португалски",
@@ -70,11 +70,11 @@
"language-sr": "Сръбски",
"language-sw": "Суахили",
"language-ta": "Тамилски",
- "language-th": "Тайландски",
- "language-tk": "Turkmen",
+ "language-th": "Тайски",
+ "language-tk": "Туркменски",
"language-tr": "Турски",
"language-uk": "Украински",
- "language-ur": "Urdu",
+ "language-ur": "Урду",
"language-uz": "Узбекски",
"language-vi": "Виетнамски",
"language-zh": "Опростен китайски",
diff --git a/src/intl/bg/page-wallets-find-wallet.json b/src/intl/bg/page-wallets-find-wallet.json
index 1db3097eddc..cfdd768bf1b 100644
--- a/src/intl/bg/page-wallets-find-wallet.json
+++ b/src/intl/bg/page-wallets-find-wallet.json
@@ -7,7 +7,6 @@
"page-find-wallet-meta-title": "Намерете портфейл в Ethereum",
"page-find-wallet-title": "Намерете портфейл",
"page-find-wallet-try-removing": "Опитайте се да премахнете една-две характеристики",
- "page-find-wallet-choose-to-compare": "Изберете, за да сравните",
"page-stake-eth": "Залагайте ETH",
"page-find-wallet-open-source": "Open source",
"page-find-wallet-open-source-desc": "Софтуерът с отворен код позволява на всеки да ревизира неприкосновеността и сигурността на приложението",
@@ -16,8 +15,6 @@
"page-find-wallet-non-custodial-desc": "Портфейли, които не контролират личните ви ключове",
"page-find-wallet-hardware-wallet-support": "Поддръжка за хардуер портфейл",
"page-find-wallet-hardware-wallet-support-desc": "Портфейли, които могат да се свързват към хардуерен портфейл за по-голяма сигурност",
- "page-find-wallet-walletconnect": "WalletConnect",
- "page-find-wallet-walletconnect-desc": "Портфейли които поддържат WalletConnect за свързване към dapps",
"page-find-wallet-rpc-importing": "RPC импортиране",
"page-find-wallet-rpc-importing-desc": "Портфейли, поддържащи персонализирани RPC крайни точки за свързване към различни възли или мрежи",
"page-find-wallet-nft-support": "Поддръжка на NFT",
@@ -36,8 +33,6 @@
"page-find-wallet-ens-support-desc": "Портфейли, поддържащи Обслужване на Имена в Етереум (ENS)",
"page-find-wallet-token-importing": "Внос на токени",
"page-find-wallet-token-importing-desc": "Импортирайте който и да е ERC-20 токен, за да го използвате в портфейла",
- "page-find-wallet-fee-optimization": "Оптимизиране на такси",
- "page-find-wallet-fee-optimization-desc": "Поддръжка на трансакции от тип 2 за оптимизиране на таксите за газ и възстановяване на средствата за неизползван газ",
"page-find-wallet-buy-crypto": "Купете криптовалута",
"page-find-wallet-buy-crypto-desc": "Купете криптовалута с фиатни средства директно в портфейла \n *Бележка: купуването на криптовалута може да зависи от региона",
"page-find-wallet-sell-for-fiat": "Продайте за фиатни валути",
@@ -46,7 +41,6 @@
"page-find-wallet-multisig-desc": "Портфейли, които изискват множество подписи за разрешаване на трансакция",
"page-find-wallet-social-recovery": "Социално възстановяване",
"page-find-wallet-social-recovery-desc": "Портфейли, които позволяват на попечителите да сменят ключа за влизане на портфейли с интелигентни договори",
- "page-find-wallet-token-support": "Поддръжка на токени",
"page-find-wallet-features": "Характеристики",
"page-find-wallet-security": "Сигурност",
"page-find-wallet-smart-contract": "Smart contract",
@@ -63,7 +57,6 @@
"page-find-wallet-chromium": "Chromium",
"page-find-wallet-firefox": "Firefox",
"page-find-wallet-hardware": "Хардуер",
- "page-find-wallet-hardware-desc": "Хардуерни портфейли",
"page-find-wallet-new-to-crypto-title": "Нов в криптовалутите",
"page-find-wallet-new-to-crypto-desc": "Вие сте нов потребител и търсите своя пръв портфейл",
"page-find-wallet-nfts-title": "NFT",
@@ -74,21 +67,13 @@
"page-find-wallet-finance-desc": "Вие сте човек, който използва DeFi, и искате портфейл, който позволява свързване с приложения за DeFi",
"page-find-wallet-developer-title": "Разработчик",
"page-find-wallet-developer-desc": "Вие сте разработчик и се нуждаете от портфейл, с помощта на който да разработвате и тествате децентрализирани приложения",
- "page-find-wallet-persona-desc": "Изберете профил, който да отговаря на вашия тип потребител, и филтрирайте списъка с портфейли",
"page-find-wallet-filters": "Филтри",
"page-find-wallet-active": "активно",
- "page-find-wallet-profile-filters": "Филтри на профила",
- "page-find-wallet-feature-filters": "Филтри на функции",
"page-find-wallet-footnote-1": "Портфейлите, изброени на тази страница, не са официално одобрение и са предоставени само с информационни цели.",
"page-find-wallet-footnote-2": "Техните описания са предоставени от самите проекти на портфейлът.",
"page-find-wallet-footnote-3": "Ние добавяме продукти на тази страница на базата на критерия на нашата политика за списъците . Ако искате да добавим портфейл направете запитване в GitHub.",
"page-find-wallet-mobile": "Мобилен",
- "page-find-wallet-mobile-desc": "Портфейли с мобилни приложения",
"page-find-wallet-desktop": "Десктоп",
- "page-find-wallet-desktop-desc": "Портфейли с приложения за десктоп",
"page-find-wallet-browser": "Браузър",
- "page-find-wallet-browser-desc": "Портфейли с разширения за браузър",
- "page-find-wallet-device": "Устройство",
- "page-find-choose-to-compare": "Изберете, за да сравните",
- "page-find-wallet-choose-features": "Изберете характеристики"
+ "page-find-wallet-device": "Устройство"
}
diff --git a/src/intl/bn/common.json b/src/intl/bn/common.json
index 48e34144da8..738641a6dc6 100644
--- a/src/intl/bn/common.json
+++ b/src/intl/bn/common.json
@@ -1,17 +1,29 @@
{
- "account-abstraction": "অ্যাকাউন্ট এবস্ট্রাকশন",
"about-ethereum-org": "ethereum.org সম্পর্কে",
"about-us": "আমাদের সম্পর্কে",
+ "adding-desci-projects": "Desci প্রকল্প যোগ করা হচ্ছে",
+ "adding-developer-tools": "ডেভেলপার টুল যোগ করা হচ্ছে",
+ "adding-exchanges": "এক্সচেঞ্জ যোগ করা হচ্ছে",
+ "adding-glossary-terms": "শব্দকোষের শর্তাদি যোগ করা হচ্ছে",
+ "adding-staking-products": "স্টেকিং পণ্য যোগ করা হচ্ছে",
+ "adding-wallets": "ওয়ালেট যোগ করা হচ্ছে",
+ "account-abstraction": "অ্যাকাউন্ট এবস্ট্রাকশন",
+ "acknowledgements": "অনুমোদন সমূহ",
"aria-toggle-search-button": "সার্চ বাটন টগল করুন",
"aria-toggle-menu-button": "মেনু বাটন টগল করুন",
"beacon-chain": "বীকন চেন",
"bridges": "ব্লকচেইন ব্রীজ",
+ "bug-bounty": "বাগ বাউন্টি",
+ "build": "বিল্ড",
+ "build-menu": "বিল্ড মেনু",
"clear": "পরিষ্কার করুন",
"close": "বন্ধ",
"community": "কমিউনিটি",
"community-hub": "কমিউনিটি হাব",
"community-menu": "কমিউনিটি মেনু",
"contact": "যোগাযোগ",
+ "content-buckets": "বিষয়বস্তু বালতি",
+ "content-resources": "বিষয়বস্তু সম্পদ",
"content-standardization": "কন্টেন্টের মান নির্ধারণ",
"contributing": "অবদান রাখছে",
"contributors": "অবদানকারী",
@@ -20,14 +32,17 @@
"copied": "কপি করা হয়েছে",
"copy": "কপি করুন",
"danksharding": "ড্যাঙ্কশার্ডিং",
- "dao-page": "বিকেন্দ্রীভূত স্বায়ত্তশাসিত সংস্থা (DAOs)",
+ "dao-page": "DAOs - বিকেন্দ্রীভূত স্বায়ত্তশাসিত সংস্থা",
"dark-mode": "ডার্ক",
"data-provided-by": "ডেটার উৎস:",
- "decentralized-applications-dapps": "বিকেন্দ্রীভূত অ্যাপ্লিকেশন (dapps)",
+ "decentralized-applications-dapps": "Dapps - বিকেন্দ্রীভূত অ্যাপ্লিকেশন",
"decentralized-identity": "বিকেন্দ্রীভূত পরিচয়",
"decentralized-social-networks": "বিকেন্দ্রীভূত সামাজিক নেটওয়ার্ক",
- "decentralized-science": "ডিসেন্ট্রালাইজড সায়েন্স (DeSci)",
- "defi-page": "বিকেন্দ্রীভূত অর্থ (DeFi) ",
+ "decentralized-science": "DeSci - ডিসেন্ট্রালাইজড সায়েন্স",
+ "description": "ন্যাভ আইটেমের জন্য বর্ণনা",
+ "defi-page": "DeFi - বিকেন্দ্রীভূত অর্থ ",
+ "design": "ডিজাইন",
+ "design-principles": "ডিজাইনের মূলনীতি",
"devcon": "Devcon",
"developers": "ডেভেলপারগণ",
"developers-home": "ডেভেলপার-এর হোম পেজ",
@@ -63,7 +78,6 @@
"ethereum-bug-bounty": "ইথেরিয়াম বাগ বাউন্টি প্রোগ্রাম",
"consensus-when-shipping": "এটার শিপিং কখন?",
"ethereum-upgrades": "ইথেরিয়াম আপগ্রেড",
- "ethereum-brand-assets": "ইথেরিয়ামের ব্র্যান্ড অ্যাসেট",
"ethereum-online": "অনলাইন কমিউনিটি",
"ethereum-events": "ইথেরিয়াম ইভেন্ট",
"ethereum-foundation": "ইথেরিয়াম ফাইন্ডেশন",
@@ -75,7 +89,7 @@
"ethereum-protocol": "ইথেরিয়াম প্রোটোকল",
"ethereum-security": "ইথেরিয়াম সুরক্ষা এবং স্ক্যাম প্রতিরোধ",
"ethereum-support": "ইথেরিয়াম সাপোর্ট",
- "ethereum-wallets": "ইথেরিয়াম ওয়ালেট",
+ "ethereum-wallets": "ইথেরিয়াম ওয়ালেট",
"ethereum-whitepaper": "ইথেরিয়াম হোয়াইটপেপার",
"feedback-widget-prompt": "এই পৃষ্ঠাটি কি সহায়ক?",
"feedback-card-prompt-page": "এই পৃষ্ঠাটি কি সহায়ক ছিল?",
@@ -83,22 +97,22 @@
"feedback-card-prompt-tutorial": "এই টিউটোরিয়ালটি কি সহায়ক ছিল?",
"feedback-widget-thank-you-title": "আপনার প্রতিক্রিয়ার জন্য ধন্যবাদ!",
"feedback-widget-thank-you-subtitle": "কয়েকটি প্রশ্নের উত্তর দিয়ে এই পৃষ্ঠাটিকে আরও ভালো করুন।",
- "feedback-widget-thank-you-subtitle-ext": "আপনার যদি সাহায্যের প্রয়োজন হয়, আমাদের Discord কমিউনিটির সাথে যোগাযোগ করতে পারেন।",
+ "feedback-widget-thank-you-subtitle-ext": "আপনার সাহায্যের প্রয়োজন হলে, আপনি আমাদের Discord-এ সম্প্রদায়ের সাথে যোগাযোগ করতে পারেন।.",
"feedback-widget-thank-you-timing": "2–3 মিনিট",
"feedback-widget-thank-you-cta": "ওপেন-শর্ট জরিপ",
"find-wallet": "ওয়ালেট খুঁজে নিন",
"future-proofing": "ভবিষ্যত-সুরক্ষাকরণ",
- "get-eth": "ETH পান",
+ "get-eth": "ETH নিন",
"get-involved": "যুক্ত হোন",
- "get-started": "শু্রু করুন",
+ "get-started": "শুরু করা যাক",
"grants": "অনুদান",
"grant-programs": "ইকোসিস্টেম অনুদান কর্মসূচি",
"guides": "নির্দেশিকা",
- "guides-hub": "নির্দেশিকা কেন্দ্র",
+ "guides-hub": "কিভাবে নির্দেশিকা",
"history-of-ethereum": "ইথেরিয়ামের ইতিহাস",
"home": "হোম ",
"how-ethereum-works": "ইথেরিয়াম কীভাবে কাজ করে",
- "how-to-register-an-ethereum-account": "কিভাবে একটি ইথেরিয়াম একাউন্টে \"নিবন্ধন\" করবেন",
+ "how-to-create-an-ethereum-account": "কিভাবে একটি ইথেরিয়াম একাউন্টে \"নিবন্ধন\" করবেন",
"how-to-revoke-token-access": "কিভাবে আপনার ক্রিপ্টো ফান্ড থেকে স্মার্ট কন্ট্রাক্টের অ্যাক্সেস প্রত্যাহার করবেন",
"how-to-swap-tokens": "কিভাবে টোকেন অদলবদল করতে হয়",
"how-to-use-a-bridge": "কিভাবে লেয়ার 2 এর সাথে টোকেন সংযুক্ত করতে হয়",
@@ -128,11 +142,109 @@
"loading-error-try-again-later": "ডেটা লোড করতে অক্ষম। পরে আবার চেষ্টা করুন।",
"logo": "লোগো",
"mainnet-ethereum": "মেননেট ইথেরিয়াম",
+ "merge": "একত্র করুন",
"more": "আরও অনেক কিছু",
- "nav-developers": "ডেভেলপারগণ",
+ "nav-about-description": "ইথেরিয়াম কমিউনিটির জন্য এক পাবলিক, ওপেন-সোর্স প্রোজেক্ট",
+ "nav-advanced-description": "আরও জটিল বিষয়ে জানুন",
+ "nav-advanced-label": "উন্নত",
+ "nav-basics-description": "ইথেরিয়ামের মূলনীতিকে বুঝুন",
+ "nav-basics-label": "প্রাথমিক",
+ "nav-bridges-description": "Web3 নিজেকে উন্নত করে প্রাথমিক L1 ব্লকচেইন এবং L2 স্কেলিং সলিউশনে পরিণত করেছে",
+ "nav-builders-home-description": "ইথেরিয়ামের জন্য বিল্ডারদের একটি নির্দেশপুস্তিকা—বিল্ডারদের দ্বারা, বিল্ডারদের জন্য",
+ "nav-builders-home-label": "বিল্ডারের হোম",
+ "nav-contribute-description": "আপনি সাহায্য করতে চাইলে, এটি আপনাকে গাইড করবে",
+ "nav-contribute-label": "ethereum.org -এ অবদান রাখা",
+ "nav-dao-description": "সদস্যরাই হলেন কমিউনিটির মালিক এবং এখানে কেন্দ্রীয় কোনও নিয়ন্ত্রণ নেই",
+ "nav-dapps-description": "ইথেরিয়ামের সাহায্যে অ্যাপের এক সমৃদ্ধ ইকোসিস্টেম ঘুরে দেখুন",
+ "nav-defi-description": "চিরাচরিত আর্থিক বাজারের নিরিখে এক বিশ্বব্যাপী, উন্মুক্ত বিকল্প",
+ "nav-desci-description": "বর্তমান বৈজ্ঞানিক ব্যবস্থার নিরিখে এক বিশ্বব্যাপী, উন্মুক্ত বিকল্প",
+ "nav-desoc-description": "সোশ্যাল ইন্টার্যাকশন এবং কন্টেন্ট তৈরির জন্য ব্লকচেইন-ভিত্তিক প্ল্যাটফর্ম",
"nav-developers-docs": "ডেভেলপার ডকুমেন্ট",
+ "nav-developers": "ডেভেলপারগণ",
+ "nav-did-description": "আপনার নিজস্ব স্বতন্ত্র ডিসেন্ট্রালাইজ আইডেন্টিফায়ার ইস্যু করুন এবং তার মালিক হোন",
+ "nav-docs-description": "ইথেরিয়ামের সাহায্যে বুঝতে এবং বিল্ড করতে সাহায্য করার জন্য ডক্স",
+ "nav-docs-design-description": "স্বতন্ত্র Web3 ডিজাইনের চ্যালেঞ্জ, সেরা পদ্ধতির বর্ণনা এবং ব্যবহারকারীর বিষয়ে গবেষণার গভীরে আলোকপাত",
+ "nav-docs-design-label": "UX/UI ডিজাইনের মূল বিষয়",
+ "nav-docs-foundation-description": "ইথেরিয়ামে ডেভেলপ করার বিষয়ে প্রধান বিষয়গুলি",
+ "nav-docs-overview-description": "আপনার ডেভেলপার হোমের ডক্স",
+ "nav-docs-stack-description": "ইথেরিয়াম স্ট্যাকের সমস্ত বিস্তারিত বোঝা",
+ "nav-eip-description": "স্ট্যান্ডার্ড যা নতুন ফিচার বা প্রক্রিয়াকে সুনির্দিষ্ট করে",
+ "nav-eip-label": "EIP - ইথেরিয়াম উন্নয়নের প্রস্তাব",
+ "nav-emerging-description": "ইথেরিয়াম আরও নতুন কোন কোন ভাবে ব্যবহার করা সম্ভব তা জানুন",
+ "nav-enterprise-description": "ইথেরিয়ামের জন্য বিজনেস অ্যাপ্লিকেশন",
+ "nav-ethereum-org-description": "এই ওয়েবসাইটটি কমিউনিটির দ্বারা চালিত হয়—আমাদের সাথে যোগ দিন এবং আপনার অবদান রাখুন",
+ "nav-ethereum-wallets-description": "আপনার ইথেরিয়াম অ্যাকাউন্টের সাথে ইন্টার্যাক্ট করার একটি অ্যাপ",
+ "nav-events-description": "ডিসেন্ট্রালাইজ পদ্ধতি এবং সবার অংশগ্রহণ করার স্বাধীনতা",
+ "nav-events-irl-description": "প্রতি মাসেই অফলাইন এবং অনলাইন উভয় মোডেই প্রধান ইথেরিয়াম ইভেন্ট সংগঠিত হয়",
+ "nav-events-label": "কমিউনিটি এবং ইভেন্ট",
+ "nav-events-online-description": "হাজার হাজার ইথেরিয়াম অনুরাগী এইসব অনলাইন কমিউনিটিতে নেতৃত্ব দেন",
+ "nav-find-wallet-description": "আপনি ওয়ালেটের মাধ্যমে ক্রিপ্টো ব্যবহার করতে পারবেন",
+ "nav-find-wallet-label": "আপনার ওয়ালেট বেছে নিন",
+ "nav-gas-fees-description": "কীভাবে ETH ট্রানজ্যাকশন ফি হিসাব করা হয়",
+ "nav-gas-fees-label": "Ethereum-এ গ্যাস সম্পর্কে জানুন: তারা কীভাবে কাজ করে এবং কীভাবে গ্যাস ফি কম দিতে হয়",
+ "nav-get-eth-description": "ইথেরিয়াম অ্যাপ্লিকেশন ব্যবহার করতে হলে আপনার ইথার (ETH) প্রয়োজন",
+ "nav-get-started-description": "ইথেরিয়াম ব্যবহার করতে আপনার প্রথম ধাপ",
+ "nav-governance-description": "ইথেরিয়াম প্রোটোকল আপগ্রেড করার প্রক্রিয়া",
+ "nav-governance-label": "পরিচালনা",
+ "nav-grants-description": "গ্র্যান্ট ফান্ডিং প্রোগ্রাম দেওয়া প্রোজেক্টের বিষয়ে আমাদের কমিউনিটির একত্রিত করা একটি তালিকা",
+ "nav-guide-create-account-description": "একটি ওয়ালেট অ্যাপ দিয়ে বিনামূল্যে যেকেউ যখন খুশি একটি ইথেরিয়াম অ্যাকাউন্ট তৈরি করতে পারবেন",
+ "nav-guide-create-account-label": "কিভাবে একটি ইথেরিয়াম একাউন্টে \"নিবন্ধন\" করবেন",
+ "nav-guide-revoke-access-description": "ইথেরিয়াম ইকোসিস্টেমে স্মার্ট কন্ট্র্যাক্ট এবং অ্যাপ্লিকেশনের সাথে নিরাপদভাবে ইন্টার্যাক্ট করুন",
+ "nav-guide-revoke-access-label": "কীভাবে স্মার্ট কন্ট্র্যাক্টের অ্যাক্সেস প্রত্যাহার করবেন",
+ "nav-guide-use-wallet-description": "কীভাবে কোনও ওয়ালেটের সমস্ত প্রাথমিক বৈশিষ্ট্য ব্যবহার করবেন তা জানুন",
+ "nav-guide-use-wallet-label": "কিভাবে একটি ওয়ালেট ব্যবহার করতে হয়",
+ "nav-guides-description": "আপনাকে শুরু করতে সাহায্য করার জন্য বাস্তবিক ধাপে-ধাপে গাইড",
+ "nav-guides-label": "কীভাবে করবেন তার গাইড",
+ "nav-history-description": "সমস্ত প্রধান ফোর্ক এবং আপডেটের টাইমলাইন",
+ "nav-history-label": "ইথেরিয়ামের টেকনিক্যাল হিস্ট্রি",
+ "nav-layer-2-description": "ইথেরিয়ামের জন্য অপেক্ষাকৃত সস্তায় এবং তাড়াতাড়ি ট্রানজ্যাকশন",
+ "nav-learn-by-coding-description": "ইথেরিয়ামের সাথে পরীক্ষানীরিক্ষা করার টুলস",
+ "nav-local-env-description": "আপনার ইথেরিয়াম ডেভেলপমেন্ট স্ট্যাক বেছে নিন এবং সেট-আপ করুন",
+ "nav-mainnet-description": "এন্টারপ্রাইজ ব্লকচেইন অ্যাপ্লিকেশন পাবলিক ইথেরিয়াম মেইননেটে বানানো সম্ভব",
+ "nav-nft-description": "একটি ইথেরিয়াম-ভিত্তিক সম্পদ হিসেবে অনন্য কিছু উপস্থাপন করার একটি উপায়",
+ "nav-open-research-description": "অ্যাক্টিভ রিসার্চ কমিউনিটি হল ইথেরিয়ামের অন্যতম প্রধান শক্তি",
+ "nav-open-research-label": "উন্মুক্ত গবেষণা",
+ "nav-overview-description": "ইথেরিয়াম শিক্ষার সবকিছু",
+ "nav-participate-overview-description": "কীভাবে অংশগ্রহণ করবেন তা একঝলকে",
"nav-primary": "প্রাইমারি",
- "nft-page": "নন-ফাঞ্জিবল টোকেন (NFT)",
+ "nav-quizzes-description": "আপনি ইথেরিয়াম এবং ক্রিপ্টোকারেন্সি কতটা ভালো বোঝেন তা দেখে নিন",
+ "nav-quizzes-label": "আপনার জ্ঞানের পরীক্ষা করুন",
+ "nav-refi-description": "পুনঃউৎপাদনমূলক নীতির উপর নির্মিত একটি বিকল্প অর্থনৈতিক ব্যবস্থা",
+ "nav-research-description": "ইথেরিয়ামকে উন্নত করতে ব্যবহৃত প্রক্রিয়াগুলি",
+ "nav-research-label": "গবেষণা এবং উন্নয়ন",
+ "nav-roadmap-description": "ইথেরিয়ামের জন্য আরও স্কেল করার, নিরাপত্তার এবং স্থায়িত্বের পথ",
+ "nav-roadmap-future-description": "ইথেরিয়ামকে এক শক্তিশালী এবং ডিসেন্ট্রালাইজড নেটওয়ার্ক হিসাবে আরও মজবুত করে তোলা",
+ "nav-roadmap-future-label": "ভবিষ্যত-সুরক্ষাকরণ",
+ "nav-roadmap-label": "রোডম্যাপ",
+ "nav-roadmap-scaling-description": "ট্রানজ্যাকশন খরচ এবং গতি আরও কমাতে নেটওয়ার্ক আপডেট",
+ "nav-roadmap-security-description": "ভবিষ্যতে সবধরনের আক্রমণ যাতে ইথেরিয়াম প্রতিহত করতে পারে তা নিশ্চিত করে তোলা হচ্ছে",
+ "nav-roadmap-security-label": "উন্নত নিরাপত্তা",
+ "nav-roadmap-ux-description": "ইথেরিয়ামের ব্যবহার আরও সহজ হতে হবে",
+ "nav-run-a-node-description": "নেটওয়ার্ক সুরক্ষিত করতে সাহায্য করার সময় সম্পূর্ণ সার্বভৌম হয়ে উঠুন",
+ "nav-security-description": "সেরা পদ্ধতি মেনে ক্রিপ্টোকারেন্সি ব্যবহার করার বিষয়ে জানুন",
+ "nav-smart-contracts-description": "ইথেরিয়াম ইকোসিস্টেমের প্রাথমিক ভিত্তিপ্রস্তর",
+ "nav-stablecoins-description": "স্টেবলকয়েন হল ইথেরিয়াম টোকেন যা এক নির্দিষ্ট মানে থাকবে বলেই ডিজাইন করা হয়েছে",
+ "nav-stake-description": "ইথেরিয়াম সুরক্ষিত করার জন্য পুরষ্কার অর্জন করুন",
+ "nav-stake-label": "স্টেক",
+ "nav-staking-home-description": "স্টেক করার জন্য বিভিন্ন অপশনের একঝলক",
+ "nav-staking-home-label": "স্টেকিং হোম",
+ "nav-staking-pool-description": "অন্যদের সাথে যোগদান করে যেকোনও পরিমাণের ETH দিয়ে স্টেক করুন এবং পুরস্কার জিতে নিন",
+ "nav-staking-pool-label": "সম্মিলিত স্টেকিং",
+ "nav-staking-saas-description": "থার্ড-পার্টি নোড অপারেটররা আপনার ভ্যালিডেটর ক্লায়েন্টের অপারেশন পরিচালনা করে",
+ "nav-staking-saas-label": "একটি পরিষেবা দিয়ে স্টেকিং",
+ "nav-staking-solo-description": "হোম হার্ডওয়্যার চালান এবং ব্যক্তিগতভাবে ইথেরিয়াম নেটওয়ার্কের নিরাপত্তা এবং বিকেন্দ্রীকরণ যোগ করুন",
+ "nav-staking-solo-label": "স্বতন্ত্র স্টেকিং",
+ "nav-start-building-description": "নতুনদের সাহায্যের জন্য তথ্য",
+ "nav-translation-program-description": "ethereum.org ওয়েবসাইটকে সমস্ত ভাষায় অনুবাদ করার জন্য সকলে মিলে করা এক প্রয়াস",
+ "nav-tutorials-description": "কমিউনিটির টিউটোরিয়ালের একত্রিত করা তালিকা",
+ "nav-use-cases-description": "ইথেরিয়াম ব্যবহারের বিভিন্ন আইডিয়া খুঁজে নিন",
+ "nav-what-is-ether-description": "ইথেরিয়াম অ্যাপের মুদ্রা",
+ "nav-what-is-ethereum-description": "কীভাবে ইথেরিয়াম বিশেষ হয়ে উঠেছে তা বুঝে নেওয়া",
+ "nav-what-is-web3-label": "Web3 কি?",
+ "nav-what-is-web3-description": "নিয়মকে চালিত করা কেন্দ্রীয়ভাবে একচেটিয়া নিয়ন্ত্রণের একটি বিকল্প",
+ "nav-whitepaper-description": "2014 সালে ভিটালিক বুটেরিনের লেখা আসল ইথেরিয়াম হোয়াইটপেপার",
+ "nav-zkp-description": "স্টেটমেন্টটিকে প্রকাশ না করেই স্টেটমেন্টের বৈধতা প্রমাণ করার একটি রাস্তা",
+ "nft-page": "NFT - নন-ফাঞ্জিবল টোকেন",
"nfts": "NFT",
"no": "না",
"on-this-page": "এই পৃষ্ঠাতে যা যা আছে",
@@ -140,6 +252,7 @@
"page-developers-aria-label": "ডেভেলপারদের মেনু",
"page-index-meta-title": "হোম ",
"page-last-updated": "যখন পৃষ্ঠাটি শেষবারের মতো আপডেট করা হয়েছে",
+ "participate-menu": "অংশগ্রহণের মেনু",
"pbs": "প্রস্তাবক-নির্মাতা পৃথকীকরণ",
"pools": "সম্মিলিত স্টেকিং",
"privacy-policy": "গোপনীয়তা সংক্রান্ত নীতি",
@@ -150,10 +263,10 @@
"refresh": "অনুগ্রহ করে পেজটি রিফ্রেস করুন।",
"return-home": "হোম এ ফেরত যান",
"roadmap": "ইথেরিয়াম রোডম্যাপ",
+ "research": "গবেষণা",
+ "research-menu": "গবেষণার মেনু",
"resources": "অনুবাদ সংক্রান্ত রিসোর্সগুলো",
- "regenerative-finance": "রিজেনারেটিভ ফাইনান্স (ReFi)",
- "run-a-node": "Run a node",
- "rollup-component-website": "Website",
+ "regenerative-finance": "ReFi - রিজেনারেটিভ ফাইনান্স",
"rollup-component-developer-docs": "ডেভেলপারের ডকুমেন্ট",
"rollup-component-technology-and-risk-summary": "প্রযুক্তি এবং ঝুঁকি সংক্রান্ত সারাংশ",
"scaling": "স্কেলিং",
@@ -164,11 +277,11 @@
"search-box-blank-state-text": "খুঁজে নিন!",
"search-eth-address": "এটি একটি ইথেরিয়াম ঠিকানার মতো দেখায়। আমরা ঠিকানার জন্য নির্দিষ্ট ডেটা প্রদান করি না। একটি ব্লক এক্সপ্লোরারে এটির জন্য খোঁজার চেষ্টা করুন যেমন",
"search-no-results": "আপনার সার্চের জন্য কোনও ফলাফল পাওয়া যায়নি",
+ "security": "নিরাপত্তা",
"single-slot-finality": "সিঙ্গেল-স্লট ফাইনালিটি",
"statelessness": "রাষ্ট্রহীনতা",
"see-contributors": "অবদানকারীদের দেখুন",
- "set-up-local-env": "স্থানীয় পরিবেশ সেট-আপ করুন",
- "sharding": "Sharding",
+ "set-up-local-env": "স্থানীয় পরিবেশ সেট আপ করুন",
"show-all": "সবকটি দেখুন",
"show-less": "কম দেখুন",
"site-description": "ইথেরিয়াম হল অর্থ এবং নতুন ধরনের অ্যাপ্লিকেশনগুলির জন্য একটি বিশ্বজনীন, বিকেন্দ্রীভূত প্ল্যাটফর্ম। ইথেরিয়াম-এ আপনি কোড লিখতে পারেন যা অর্থ নিয়ন্ত্রণ করে, এবং বিশ্বের যে কোনো জায়গা থেকে প্রবেশগম্য অ্যাপ্লিকেশন নির্মাণ করে।",
@@ -179,7 +292,6 @@
"stake-eth": "স্টেইক ETH",
"staking": "স্টেকিং",
"start-here": "এখানে শুরু করুন",
- "style-guide": "Style guide",
"solo": "স্বতন্ত্র স্টেকিং",
"terms-of-use": "ব্যবহারের শর্তাবলী",
"translation-banner-body-new": "আপনি এই পৃষ্ঠাটি ইংরেজিতে দেখছেন, কারণ আমরা এখনও এটি অনুবাদ করি নি। এই কন্টেন্ট অনুবাদ করতে আমাদের সাহায্য করুন।",
@@ -187,23 +299,24 @@
"translation-banner-button-see-english": "ইংরেজিতে দেখুন",
"translation-banner-button-translate-page": "পেজ অনুবাদ করুন",
"translation-banner-title-new": "এই পৃষ্ঠাটি অনুবাদ করতে সাহায্য করুন",
- "translation-banner-title-update": "এই পৃষ্ঠাটি আপডেট করতে সাহায্য করুন",
+ "translation-banner-title-update": "এই পাতাটি আপডেট করতে সাহায্য করুন",
"translation-banner-no-bugs-title": "এখানে কোন বাগ নেই!",
"translation-banner-no-bugs-content": "এই পেজটি অনুবাদ করা হয়নি। আমরা ইচ্ছাকৃত এই পেজটি আপাতত ইংরেজিতে রেখেছি।",
"translation-banner-no-bugs-dont-show-again": "পুনরায় দেখাবেন না",
+ "translation-program": "অনুবাদ কর্মসূচি",
"try-using-search": "সার্চ ব্যবহার করে আপনি যা খুঁজছেন তা পাওয়ার চেষ্টা করুন অথবা",
"tutorials": "টিউটোরিয়াল",
"up": "উপরে",
+ "use": "ব্যবহার",
"use-ethereum": "ইথেরিয়াম ব্যবহার করুন",
"use-ethereum-menu": "ইথেরিয়াম মেনু ব্যবহার করুন",
- "user-experience": "User experience",
+ "use-menu": "ব্যবহারের মেনু",
"verkle-trees": "ভার্কল ট্রি",
"wallets": "ওয়ালেটসমূহ",
"we-couldnt-find-that-page": "আমরা সেই পৃষ্ঠাটি খুঁজে পাইনি",
"web3": "Web3 কি?",
- "web3-title": "Web3",
"website-last-updated": "যখন ওয়েবসাইট শেষবারের মতো আপডেট করা হয়েছে",
- "what-is-ether": "ইথার (ETH)বলতে কী বোঝায়?",
+ "what-is-ether": "ইথার (ETH) কী?",
"what-is-ethereum": "ইথেরিয়াম কী?",
"withdrawals": "স্টেকিং উইথড্রয়াল",
"yes": "হ্যাঁ",
diff --git a/src/intl/bn/page-languages.json b/src/intl/bn/page-languages.json
index 661bf3e5457..54c4509e61b 100644
--- a/src/intl/bn/page-languages.json
+++ b/src/intl/bn/page-languages.json
@@ -17,13 +17,13 @@
"page-languages-translated": "অনুবাদ করা হয়েছে",
"page-languages-words": "শব্দ",
"page-languages-recruit-community": "আমাদের ethereum.org অনুবাদ করতে সাহায্য করুন।",
- "langauge-am": "Amharic",
+ "langauge-am": "আমহারীয়",
"language-ar": "আরবি",
"language-az": "আজারবাইজানীয়",
- "langauge-be": "Belarusian",
+ "langauge-be": "বেলারুশীয়",
"language-bg": "বুলগেরীয়",
"language-bn": "বাংলা",
- "language-bs": "Bosnian",
+ "language-bs": "বসনীয়",
"language-ca": "ক্যাটালান",
"language-cs": "চেক",
"language-da": "ড্যানিশ",
@@ -40,7 +40,7 @@
"language-hi": "হিন্দি",
"language-hr": "ক্রোয়েশিয়ান",
"language-hu": "হাঙ্গেরিয়ান",
- "language-hy-am": "Armenian",
+ "language-hy-am": "আর্মেনীয়",
"language-id": "ইন্দোনেশিয়ান",
"language-ig": "ইগবো",
"language-it": "ইতালিয়ান",
@@ -48,14 +48,14 @@
"language-ka": "জর্জিয়ান",
"language-kk": "কাজাখ",
"language-km": "খেমের",
- "language-kn": "Kannada",
+ "language-kn": "কন্নড়",
"language-ko": "কোরিয়ান",
"language-lt": "লিথুয়ানিয়ান",
"language-ml": "মালয়ালম",
"language-mr": "মারাঠী",
"language-ms": "মালায়া",
"language-nb": "নরওয়েজীয়",
- "language-ne-np": "Nepali",
+ "language-ne-np": "নেপালি",
"language-nl": "ডাচ",
"language-pcm": "নাইজেরিয়ান পিজিন",
"language-fil": "ফিলিপিনো",
@@ -71,7 +71,7 @@
"language-sw": "সোয়াহিলি",
"language-ta": "তামিল",
"language-th": "থাই",
- "language-tk": "Turkmen",
+ "language-tk": "তুর্কমেনীয়",
"language-tr": "তুর্কি",
"language-uk": "ইউক্রেনিয়ান",
"language-ur": "উর্দু",
diff --git a/src/intl/bn/page-wallets-find-wallet.json b/src/intl/bn/page-wallets-find-wallet.json
index 81dd7fdd069..2752557a39d 100644
--- a/src/intl/bn/page-wallets-find-wallet.json
+++ b/src/intl/bn/page-wallets-find-wallet.json
@@ -7,7 +7,6 @@
"page-find-wallet-meta-title": "একটি ইথেরিয়াম ওয়ালেট খুঁজুন",
"page-find-wallet-title": "ওয়ালেট খুঁজে নিন। ",
"page-find-wallet-try-removing": "একটি বা দুটি বৈশিষ্ট্য সরানোর চেষ্টা করুন",
- "page-find-wallet-choose-to-compare": "তুলনা করতে বেছে নিন",
"page-stake-eth": "স্টেইক ETH",
"page-find-wallet-open-source": "Open source",
"page-find-wallet-open-source-desc": "ওপেন-সোর্স সফটওয়্যার যে কাউকে অ্যাপ্লিকেশনের অখণ্ডতা এবং নিরাপত্তা নিরীক্ষা করতে দেয়",
@@ -16,8 +15,6 @@
"page-find-wallet-non-custodial-desc": "যে ওয়ালেট আপনার ব্যক্তিগত চাবির নিয়ন্ত্রণ করে না",
"page-find-wallet-hardware-wallet-support": "হার্ডওয়্যার ওয়ালেট সাপোর্ট",
"page-find-wallet-hardware-wallet-support-desc": "যে ওয়ালেট অধিকতর নিরাপত্তার জন্য হার্ডওয়্যার ওয়ালেটের সাথে সংযোগ করতে পারে",
- "page-find-wallet-walletconnect": "WalletConnect",
- "page-find-wallet-walletconnect-desc": "যে ওয়ালেটগুলো dapps এর সাথে সংযোগের জন্য WalletConnect সাপোর্ট করে",
"page-find-wallet-rpc-importing": "RPC ইমপোর্টিং",
"page-find-wallet-rpc-importing-desc": "বিভিন্ন নোড বা নেটওয়ার্কের সাথে সংযোগ করতে কাস্টম RPC এন্ডপয়েন্ট সাপোর্ট করা ওয়ালেট",
"page-find-wallet-nft-support": "NFT সাপোর্ট",
@@ -36,8 +33,6 @@
"page-find-wallet-ens-support-desc": "যে ওয়ালেটগুলো ইথেরিয়াম নেম সার্ভিস (ENS) সাপোর্ট করে",
"page-find-wallet-token-importing": "টোকেন ইমপোর্টিং",
"page-find-wallet-token-importing-desc": "ওয়ালেট এ ব্যবহারের জন্য যেকোনো ERC-20 টোকেন ইমপোর্ট করুন",
- "page-find-wallet-fee-optimization": "ফি অপ্টিমাইজেশান",
- "page-find-wallet-fee-optimization-desc": "অপ্টিমাইজড গ্যাস ফি এবং অব্যবহৃত গ্যাসের ফি ফেরতের জন্য টাইপ 2 ট্রানজ্যাকশন সাপোর্ট করে",
"page-find-wallet-buy-crypto": "ক্রিপ্টোকারেন্সি কিনুন",
"page-find-wallet-buy-crypto-desc": "ওয়ালেটে সরাসরি ফিয়াট মুদ্রার মাধ্যমে ক্রিপ্টোকারেন্সি কিনুন \n *দ্রষ্টব্য: ক্রিপ্টোকারেন্সি ক্রয় নির্দিষ্ট অঞ্চল ভিত্তিক হতে পারে",
"page-find-wallet-sell-for-fiat": "ফিয়াটের জন্য বিক্রি করুন",
@@ -46,7 +41,6 @@
"page-find-wallet-multisig-desc": "যে ওয়ালেট গুলোতে একটি লেনদেনের অনুমোদনের জন্য একাধিক স্বাক্ষরের প্রয়োজন হয়",
"page-find-wallet-social-recovery": "সামাজিক পুনরুদ্ধার",
"page-find-wallet-social-recovery-desc": "যে ওয়ালেট গুলো অভিভাবকদের স্মার্ট কন্ট্র্যাক্ট ওয়ালেটের জন্য স্বাক্ষর কী পরিবর্তন করতে দেয়",
- "page-find-wallet-token-support": "টোকেন সাপোর্ট",
"page-find-wallet-features": "Features",
"page-find-wallet-security": "নিরাপত্তা",
"page-find-wallet-smart-contract": "Smart contract",
@@ -63,7 +57,6 @@
"page-find-wallet-chromium": "Chromium",
"page-find-wallet-firefox": "Firefox",
"page-find-wallet-hardware": "Hardware",
- "page-find-wallet-hardware-desc": "হার্ডওয়্যার ওয়ালেটসমূহ",
"page-find-wallet-new-to-crypto-title": "ক্রিপ্টোকারেন্সিতে নতুন",
"page-find-wallet-new-to-crypto-desc": "আপনি একজন প্রথমবার ব্যবহারকারী আপনার প্রথম ওয়ালেট খুঁজছেন",
"page-find-wallet-nfts-title": "NFT",
@@ -74,21 +67,13 @@
"page-find-wallet-finance-desc": "আপনি এমন একজন যিনি DeFi ব্যবহার করেন এবং একটি ওয়ালেট চান যা আপনাকে DeFi অ্যাপ্লিকেশনগুলোর সাথে সংযোগ করতে দেয়",
"page-find-wallet-developer-title": "ডেভেলপার",
"page-find-wallet-developer-desc": "আপনি একজন ডেভেলপার এবং dapps ডেভেলপ ও পরীক্ষায় সাহায্যের জন্য একটি ওয়ালেট প্রয়োজন",
- "page-find-wallet-persona-desc": "আপনার ব্যবহারকারীর প্রকারের সাথে মেলে এমন প্রোফাইল পছন্দ করুন এবং ওয়ালেট তালিকা টি ফিল্টার করুন",
"page-find-wallet-filters": "ফিল্টার",
"page-find-wallet-active": "সক্রিয়",
- "page-find-wallet-profile-filters": "প্রোফাইল ফিল্টার",
- "page-find-wallet-feature-filters": "ফিচার ফিল্টার",
"page-find-wallet-footnote-1": "এই পৃষ্ঠায় তালিকাভুক্ত ওয়ালেটগুলো অফিসিয়াল অনুমোদিত নয় এবং শুধুমাত্র তথ্যের উদ্দেশ্যে প্রদান হয়েছে।",
"page-find-wallet-footnote-2": "তাদের বর্ণনা ওয়ালেট প্রকল্পগুলোর নিজেদের দ্বারা প্রদান করা হয়েছে।",
"page-find-wallet-footnote-3": "আমরা আমাদের তালিকা নীতি এর মানদন্ডের উপর ভিত্তি করে এই পৃষ্ঠায় পণ্য যোগ করি। আপনি যদি আমাদেরকে একটি ওয়ালেট যোগ করতে অনুরোধ করতে চান, তাহলে GitHub এ একটি ইস্যু উত্থাপন করুন।",
"page-find-wallet-mobile": "মোবাইল",
- "page-find-wallet-mobile-desc": "মোবাইল অ্যাপস সহ ওয়ালেট",
"page-find-wallet-desktop": "ডেস্কটপ",
- "page-find-wallet-desktop-desc": "ডেস্কটপ অ্যাপস সহ ওয়ালেট",
"page-find-wallet-browser": "ব্রাউজার",
- "page-find-wallet-browser-desc": "ব্রাউজার এক্সটেনশন সহ ওয়ালেট",
- "page-find-wallet-device": "ডিভাইস",
- "page-find-choose-to-compare": "তুলনা করতে বেছে নিন",
- "page-find-wallet-choose-features": "বৈশিষ্ট্য নির্বাচন করুন"
+ "page-find-wallet-device": "ডিভাইস"
}
diff --git a/src/intl/bs/common.json b/src/intl/bs/common.json
index a787d68d0d8..49355ad2f9e 100644
--- a/src/intl/bs/common.json
+++ b/src/intl/bs/common.json
@@ -1,17 +1,27 @@
{
- "account-abstraction": "Pregled računa",
"about-ethereum-org": "O ethereum.org",
"about-us": "O nama",
+ "adding-desci-projects": "Dodavanje Desci projekata",
+ "adding-developer-tools": "Dodavanje alata za programere",
+ "adding-exchanges": "Dodavanje konverzija",
+ "adding-glossary-terms": "Dodavanje pojmova iz rječnika",
+ "adding-staking-products": "Dodavanje proizvoda uloga",
+ "adding-wallets": "Dodavanje novčanika",
+ "account-abstraction": "Pregled računa",
"aria-toggle-search-button": "Dugme za pretragu",
"aria-toggle-menu-button": "Dugme za isključivanje/uključivanje menija",
"beacon-chain": "Beacon Chain",
"bridges": "Mostovi za bloklance",
+ "build": "Verzija",
+ "build-menu": "Meni verzije",
"clear": "Obriši",
"close": "Zatvori",
"community": "Zajednica",
"community-hub": "Društveni dom",
"community-menu": "Sadržaj društva",
"contact": "Stupite u kontakt",
+ "content-buckets": "Grupe sadržaja",
+ "content-resources": "Resursi sadržaja",
"content-standardization": "Standardizacija sadržaja",
"contributing": "Doprinosi",
"contributors": "Saradnici",
@@ -20,14 +30,17 @@
"copied": "Kopirano",
"copy": "Kopiraj",
"danksharding": "Danksharding",
- "dao-page": "Decentralizovane autonomne organizacije (DAO)",
+ "dao-page": "DAO - Decentralizovane autonomne organizacije",
"dark-mode": "Tamno",
"data-provided-by": "Izvor podataka:",
- "decentralized-applications-dapps": "Decentralizovane aplikacije (dapps)",
+ "decentralized-applications-dapps": "Dapps - Decentralizovane aplikacije",
"decentralized-identity": "Decentralizovan identitet",
"decentralized-social-networks": "Decentralizovane društvene mreže",
- "decentralized-science": "Decentralizovana nauka (DeSci)",
- "defi-page": "Decentralizovane finansije (DeFi)",
+ "decentralized-science": "DeSci - Decentralizovana nauka",
+ "description": "Opis stavke za navigaciju",
+ "defi-page": "DeFi - Decentralizovane finansije",
+ "design": "Dizajn",
+ "design-principles": "Principi dizajna",
"devcon": "Devcon",
"developers": "Programeri",
"developers-home": "Početna stranica za programere",
@@ -51,7 +64,6 @@
"documentation": "Dokumentacija",
"down": "Dolе",
"ecosystem": "Ekosistem",
- "edit-page": "Edit page",
"ef-blog": "Ethereum Foundation Blog",
"eips": "Prejdlozi za Poboljšanje Ethereum-a",
"energy-consumption": "Ethereum potrošnja energije",
@@ -63,7 +75,6 @@
"ethereum-bug-bounty": "Nagradni program za lovce grešaka na Ethereumu",
"consensus-when-shipping": "Kada je isporuka?",
"ethereum-upgrades": "Nadogradnje Ethereuma",
- "ethereum-brand-assets": "Ethereum brand assets",
"ethereum-online": "Zajednice na mreži",
"ethereum-events": "Ethereum događaji",
"ethereum-foundation": "Ethereum Foundation",
@@ -83,22 +94,20 @@
"feedback-card-prompt-tutorial": "Da li vam je ovaj lekcija pomogla?",
"feedback-widget-thank-you-title": "Hvala na povratnim informacijama!",
"feedback-widget-thank-you-subtitle": "Poboljšajte ovu stranicu putem odgovora na nekoliko pitanja.",
- "feedback-widget-thank-you-subtitle-ext": "Ako vam treba pomoć, možete se obratiti zajednici na našem Diskord-u.",
+ "feedback-widget-thank-you-subtitle-ext": "Ako vam je potrebna pomoć, kontaktirajte zajednicu na našoj stranici Discord.",
"feedback-widget-thank-you-timing": "2–3 minute",
"feedback-widget-thank-you-cta": "Otvori kratku anketu",
- "find-wallet": "Find wallet",
"future-proofing": "Osiguranje za budućnost",
"get-eth": "Nabavite ETH",
"get-involved": "Uključite se",
- "get-started": "Get started",
"grants": "Stipendije",
"grant-programs": "Program za Stipendiranje Ekosistema",
"guides": "Vodiči",
- "guides-hub": "Centar za vodiče",
+ "guides-hub": "Vodiči za početak korištenja",
"history-of-ethereum": "Istorija Ethereum-a",
"home": "Početna",
"how-ethereum-works": "Kako Ethereum funkcioniše",
- "how-to-register-an-ethereum-account": "Kako \"registrovati\" Ethereum račun",
+ "how-to-create-an-ethereum-account": "Kako \"registrovati\" Ethereum račun",
"how-to-revoke-token-access": "Kako ukinuti pristup pametnom ugovoru vašim kripto sredstvima",
"how-to-swap-tokens": "Kako razmeniti tokene",
"how-to-use-a-bridge": "Kako premostiti tokene na nivo 2",
@@ -115,11 +124,9 @@
"last-edit": "Posljednje uređivanje",
"layer-2": "Sloj 2",
"learn": "Nauči",
- "learn-by-coding": "Learn by coding",
"learn-hub": "Centar za učenje",
"learn-menu": "Sadržaj centra za učenje",
"learn-more": "Nauči više",
- "less": "Less",
"light-mode": "Svjetlo",
"listing-policy-disclaimer": "Svi proizvodi navedeni na ovoj stranici nisu naše zvanične preporuke, i dati su samo u informativne svrhe. Ukoliko želite da dodate proizvod, ili date vaše mišljenje o pravilima, molimo obratite se GitHub-u.",
"loading": "Učitavanje...",
@@ -128,11 +135,103 @@
"loading-error-try-again-later": "Nije moguće učitati podatke. Pokušajte ponovo kasnije.",
"logo": "logo",
"mainnet-ethereum": "Glavna mreža Ethereum",
- "more": "More",
- "nav-developers": "Programeri",
+ "merge": "Spajanje",
+ "nav-about-description": "Javni projekt otvorenog koda za zajednicu Ethereum",
+ "nav-advanced-description": "Naučite složenije teme",
+ "nav-basics-description": "Naučite osnove Ethereuma",
+ "nav-basics-label": "Osnove",
+ "nav-bridges-description": "Web3 je prerastao u ekosistem primarnih L1 blok-lanaca i L2 skalirajućih rješenja",
+ "nav-builders-home-description": "Priručnik za Ethereum – napravili graditelji za graditelje",
+ "nav-builders-home-label": "Dom graditelja",
+ "nav-contribute-description": "Ako želite pomoći, ovo su smjernice",
+ "nav-contribute-label": "Doprinos platformi ethereum.org",
+ "nav-dao-description": "Zajednice u vlasništvu člana bez centraliziranog tijela",
+ "nav-dapps-description": "Istražite bogati ekosistem aplikacija koje koriste Ethereum",
+ "nav-defi-description": "Globalna, otvorena alternativa tradicionalnom finansijskom tržištu",
+ "nav-desci-description": "Globalna, otvorena alternativa trenutnom naučnom sistemu",
+ "nav-desoc-description": "Platforme na bazi blok-lanaca za socijalnu interakciju i kreiranje sadržaja",
"nav-developers-docs": "Dokumenti za programere",
+ "nav-developers": "Programeri",
+ "nav-did-description": "Izdajte i posjedujte vlastite decentralizirane identifikatore",
+ "nav-docs-description": "Dokumenti koji će vam pomoći da razumijete i gradite uz Ethereum",
+ "nav-docs-design-description": "Opis jedinstvenih izazova u dizajniranju web3, najbolje prakse i uvidi korisničkog istraživanja",
+ "nav-docs-design-label": "Osnove dizajniranja UX/UI",
+ "nav-docs-foundation-description": "Ključne osnove za razvoj na Ethereumu",
+ "nav-docs-overview-description": "Vaš dom za dokumente razvojnih programera",
+ "nav-docs-stack-description": "Naučite sve detalje Ethereum stacka",
+ "nav-eip-description": "Standardi koji određuju nove funkcije ili procese",
+ "nav-eip-label": "EIP-ovi - Prijedlozi za poboljšanje Ethereuma",
+ "nav-emerging-description": "Upoznajte druge novije slučajeve upotrebe za Ethereum",
+ "nav-emerging-label": "Primjeri korštenja u nastajanju",
+ "nav-enterprise-description": "Poslovne aplikacije za Ethereum",
+ "nav-ethereum-org-description": "Ovu web aplikaciju pokreće zajednica – pridružite nam se i doprinesite i vi",
+ "nav-ethereum-wallets-description": "Aplikacija za interakciju s vašim Ethereum računom",
+ "nav-events-description": "Decentralizacija i sloboda za učešće svima",
+ "nav-events-irl-description": "Svakog mjeseca odvijaju se lični i online vodeći događaji na Ethereumu",
+ "nav-events-label": "Zajednice i događaji",
+ "nav-events-online-description": "Stodine hiljada entuzijasta za Ethereum stvaraju ove online zajednice",
+ "nav-find-wallet-description": "Novčanici vam omogućavaju da koristite kriptovalute",
+ "nav-find-wallet-label": "Odaberite svoj novčanik",
+ "nav-gas-fees-description": "Kako se izračunavaju naknade za ETH transakcije",
+ "nav-get-eth-description": "Treba vam ether (ETH) za upotrebu Ethereum aplikacija",
+ "nav-get-started-description": "Vaši prvi koraci prilikom upotrebe Ethereuma",
+ "nav-governance-description": "Proces uključen u nadogradnju Ethereum protokola",
+ "nav-grants-description": "Prilagođena lista naše zajednice na projektima koji pružaju programe finansiranja",
+ "nav-guide-create-account-description": "Svako u bilo kojem trenutku može besplatno kreirati Ethereum račun uz aplikaciju novčanika",
+ "nav-guide-create-account-label": "Kako napraviti Ethereum račun",
+ "nav-guide-revoke-access-description": "Zaštitite se prilikom interakcije s pametnim ugovorima i aplikacijama u Ethereum ekosistemu",
+ "nav-guide-revoke-access-label": "Kako ponišitit pristup pametnom ugovoru",
+ "nav-guide-use-wallet-description": "Naučite kako da se rukovodite svim osnovnim funkcijama novčanika",
+ "nav-guide-use-wallet-label": "Kako koristiti novčanik",
+ "nav-guides-description": "Praktični detaljni vodiči da vam pomognu da započnete",
+ "nav-guides-label": "Vodiči za početak korištenja",
+ "nav-history-description": "Vremenska linija svih glavnih forkova i ažuriranja",
+ "nav-history-label": "Tehnička historija Ethereuma",
+ "nav-layer-2-description": "Jeftinije i brže transakcije za Ethereum",
+ "nav-learn-by-coding-description": "Alati koji vam pomažu da eksperimentirate s Ethereumom",
+ "nav-local-env-description": "Odaberite i postavite svoj Ethereum razvojni stog",
+ "nav-mainnet-description": "Poslovne aplikacije blok-lanca se mogu izgraditi na javnom Ethereum Mainnetu",
+ "nav-nft-description": "Način da se bilo šta jedinstveno prikaže kao imovina zasnovana na Etheriumu",
+ "nav-open-research-description": "Jedna od primarnih snaga Ethereuma je njegovna aktivna istraživačka zajednica",
+ "nav-open-research-label": "Otvori istraživanje",
+ "nav-overview-description": "Sve o edukaciji o Ethereumu",
+ "nav-participate-overview-description": "Pregled učešća",
"nav-primary": "Primarni",
- "nft-page": "Nezamenljivi tokeni (NFT)",
+ "nav-quizzes-description": "Otkrijte koliko dobro razumijete Ethereum i kriptovalute",
+ "nav-quizzes-label": "Testirajte svoje znanje",
+ "nav-refi-description": "Alternativna verzija ekonomskog sistema o regenerativnim principima",
+ "nav-research-description": "Procesi koji se koriste za poboljšanje Ethereuma",
+ "nav-research-label": "Istraživanje i razvoj",
+ "nav-roadmap-description": "Put ka skalabilnijem, sigurnijem i održivijem Ethereumu",
+ "nav-roadmap-future-description": "Učvršćivanje Ethereuma kao čvrste i decentralizirane mreže",
+ "nav-roadmap-future-label": "Osiguranje za budućnost",
+ "nav-roadmap-label": "Mapa puta",
+ "nav-roadmap-scaling-description": "Ažuriranje mreže ka dodatnom smanjenju troškova i brzine transakcije",
+ "nav-roadmap-security-description": "Osiguranje otpornosti Ethereuma od svih napada u budućnosti",
+ "nav-roadmap-security-label": "Poboljšana sigurnost",
+ "nav-roadmap-ux-description": "Korištenje Ethereuma treba biti pojednostavljeno",
+ "nav-run-a-node-description": "Postanite potpuno uspješni dok pomažete zaštititi mrežu",
+ "nav-security-description": "Naučite najbolje prakse prilikom korištenja kriptovalute",
+ "nav-smart-contracts-description": "Osnovni gradivni blokovi Ethereum ekosistema",
+ "nav-stablecoins-description": "Stabilne kritpovalute (stablecoins) su Ethereum tokeni koji trebaju ostati pri fiksnoj vrijednosti",
+ "nav-stake-description": "Zaradite nagrade dok osiguravate Ethereum",
+ "nav-stake-label": "Ulog",
+ "nav-staking-home-description": "Pregled različitih opcija stavljanja uloga",
+ "nav-staking-pool-description": "Stavite ulog i zaradite nagrade s bilo kojim iznosom ETH-a udruživanjem s drugima",
+ "nav-staking-pool-label": "Udruženo ulaganje",
+ "nav-staking-saas-label": "Stavljanje uloga uz servis",
+ "nav-staking-solo-label": "Samostalno ulaganje",
+ "nav-start-building-description": "Korisne informacije za novake",
+ "nav-translation-program-description": "Zajednički trud da se ethereum.org prevede na sve jezike",
+ "nav-tutorials-description": "Prilagođena lista tutorijala za zajednicu",
+ "nav-use-cases-description": "Otkrijte različite ideje upotrebe Ethereuma",
+ "nav-what-is-ether-description": "Valuta Ethereum aplikacija",
+ "nav-what-is-ethereum-description": "Saznajte zašto je Ethereum poseban",
+ "nav-what-is-web3-label": "Šta je Web3?",
+ "nav-what-is-web3-description": "Alternativa centraliziranim monopolima koji diktiraju pravila",
+ "nav-whitepaper-description": "Originalni dokument o Ethereumu koji je napisao Vitalik Buterin 2014. godine",
+ "nav-zkp-description": "Način dokazivanja valjanost tvrdnje bez otkrivanja same tvrdnje",
+ "nft-page": "NFT - Nezamenljivi tokeni",
"nfts": "NFT",
"no": "Ne",
"on-this-page": "Na ovoj stranici",
@@ -140,6 +239,7 @@
"page-developers-aria-label": "Sadržaj za programere",
"page-index-meta-title": "Početna",
"page-last-updated": "Stranica poslednji put ažurirana",
+ "participate-menu": "Meni učešća",
"pbs": "Razdvoj između predlagača i graditelja",
"pools": "Udruženo ulaganje",
"privacy-policy": "Pravila o privatnosti",
@@ -150,13 +250,11 @@
"refresh": "Molimo osvežite stranicu.",
"return-home": "vrati se na početnu stranicu",
"roadmap": "Plan razvoja Ethereum-a",
+ "research": "Istraživanje",
+ "research-menu": "Meni istraživanja",
"resources": "Pomoćna sredstva za prevođenje",
- "regenerative-finance": "Regenerative finance (ReFi)",
- "run-a-node": "Run a node",
- "rollup-component-website": "Website",
"rollup-component-developer-docs": "Dokumenti za programere",
"rollup-component-technology-and-risk-summary": "Sažetak o tehnologiji i riziku",
- "scaling": "Scaling",
"saas": "Ulaganje kao servis",
"search": "Pretraži",
"search-ethereum-org": "Pretraži ethereum.org",
@@ -167,19 +265,13 @@
"single-slot-finality": "Single-slot zaključenje",
"statelessness": "Bezstanje",
"see-contributors": "Smotri saradnike",
- "set-up-local-env": "Set up local environment",
- "sharding": "Sharding",
"show-all": "Izloži sve",
"show-less": "Izloži manje",
"site-description": "Ethereum je globalna, decentralizovana platforma za novac i nove vrste aplikacija. Na Ethereum-u možete programirati kod koji kontroliše novac i graditi aplikacije dostupne bilo gdje u svijetu.",
- "site-title": "ethereum.org",
"skip-to-main-content": "Skoči na glavni sadržaj",
- "smart-contracts": "Smart contracts",
- "stablecoins": "Stablecoins",
"stake-eth": "Uložite ETH",
"staking": "Ulaganje",
"start-here": "Počni ovdje",
- "style-guide": "Style guide",
"solo": "Samostalno ulaganje",
"terms-of-use": "Uslovi korištenja",
"translation-banner-body-new": "Ovu stranici je na engleskom jer je još nismo preveli. Pomozite nam da prevedemo ovaj sadržaj.",
@@ -191,17 +283,18 @@
"translation-banner-no-bugs-title": "Ovo nije greška!",
"translation-banner-no-bugs-content": "Ova stranica nije prevedena. Namjerno smo je ostavili na engleskom za sada.",
"translation-banner-no-bugs-dont-show-again": "Ne prikazuj ponovo",
+ "translation-program": "Program prevođenja",
"try-using-search": "Pokušajte koristiti funkciju pretrage da nađete to što vam treba",
"tutorials": "Praktični vodiči",
"up": "Gore",
+ "use": "Korištenje",
"use-ethereum": "Koristi Ethereum",
"use-ethereum-menu": "Koristi Ethereum sadržaj",
- "user-experience": "User experience",
+ "use-menu": "Meni korištenja",
"verkle-trees": "Verkle stabla",
"wallets": "Novčanici",
"we-couldnt-find-that-page": "Nismo našli tu stranicu",
"web3": "Šta je Web3?",
- "web3-title": "Web3",
"website-last-updated": "Posljednje ažuriranje stranice",
"what-is-ether": "Šta je ether (ETH)?",
"what-is-ethereum": "Šta je Ethereum?",
diff --git a/src/intl/bs/page-languages.json b/src/intl/bs/page-languages.json
index cc36a54c600..2e4a3702d77 100644
--- a/src/intl/bs/page-languages.json
+++ b/src/intl/bs/page-languages.json
@@ -1,8 +1,73 @@
{
+ "page-languages-h1": "Jezička podrška",
+ "page-languages-interested": "Želite da doprinesete?",
+ "page-languages-learn-more": "Saznajte više o programu prevođenja",
+ "page-languages-meta-desc": "Resursi za sve podržane jezike na stranici ethereum.org i načini rada kao prevodilac.",
+ "page-languages-meta-title": "Prijevodi jezika na ethereum.org",
+ "page-languages-p1": "Ethereum je globalni projekt i ključno je da je ethereum.org pristupačan svima, bez obzira na nacionalnost ili jezik. Naša zajednica je naporno radila da ovu viziju pretvori u stvarnost.",
+ "page-languages-translations-available": "ethereum.org je dostupan na sljedećim jezicima",
+ "page-languages-resources-paragraph": "Pored prijevoda sadržaja stranice ethereum.org također održavamo",
+ "page-languages-resources-link": "prilagođenu listu resursa Ethereuma na mnogim jezicima",
+ "page-languages-want-more-header": "Želite vidjeti ethereum.org na drugom jeziku?",
+ "page-languages-want-more-link": "Program prevođenja",
+ "page-languages-want-more-paragraph": "Prevodioci stranice ethereum.org uvijek prevode stranice na što više jezika. Da vidite na čemu trenutno rade ili da se prijavite da im se pridružite pročitajte o sljedećem",
"page-languages-filter-label": "Lista filtera",
"page-languages-filter-placeholder": "Upisati u filter",
"page-languages-browser-default": "Zadani preglednik",
"page-languages-translated": "prevedeno",
"page-languages-words": "riječi",
- "page-languages-recruit-community": "Pomozite nam da prevedemo ethereum.org."
+ "page-languages-recruit-community": "Pomozite nam da prevedemo ethereum.org.",
+ "langauge-am": "Amharski",
+ "language-ar": "Arapski",
+ "language-az": "Azerbajdžanski",
+ "langauge-be": "Bjeloruski",
+ "language-bg": "Bugarski",
+ "language-bn": "Bengalski",
+ "language-bs": "Bosanski",
+ "language-ca": "Katalonski",
+ "language-da": "Danski",
+ "language-el": "Grčki",
+ "language-en": "Engleski",
+ "language-fa": "Perzijski",
+ "language-fi": "Finski",
+ "language-gl": "Galicijski",
+ "language-gu": "Gudžarati",
+ "language-he": "Hebrejski",
+ "language-hi": "Hindi",
+ "language-hr": "Hrvatski",
+ "language-hu": "Mađarski",
+ "language-hy-am": "Armenski",
+ "language-id": "Indonezijski",
+ "language-ig": "Igbo",
+ "language-ka": "Gruzijski",
+ "language-kk": "Kazahstanski",
+ "language-km": "Kmerski",
+ "language-kn": "Kannada",
+ "language-ko": "Korejski",
+ "language-lt": "Litvanski",
+ "language-ml": "Malajalam",
+ "language-mr": "Marathi",
+ "language-ms": "Malajski",
+ "language-nb": "Norveški",
+ "language-ne-np": "Nepalski",
+ "language-nl": "Danski",
+ "language-pcm": "Nigerijski pidžin",
+ "language-fil": "Filipinski",
+ "language-pl": "Poljski",
+ "language-pt": "Portugalski",
+ "language-pt-br": "Portugalski (Brazil)",
+ "language-ro": "Rumunski",
+ "language-se": "Švedski",
+ "language-sk": "Slovački",
+ "language-sl": "Slovenski",
+ "language-sr": "Srpski",
+ "language-sw": "Svahili",
+ "language-ta": "Tamilski",
+ "language-th": "Tajlandski",
+ "language-tk": "Turkmenski",
+ "language-uk": "Ukrajinski",
+ "language-ur": "Urdu",
+ "language-uz": "Uzbečki",
+ "language-zh": "Kineski (pojednostavljeni)",
+ "language-zh-tw": "Kineski (tradicionalni)"
}
diff --git a/src/intl/bs/page-wallets-find-wallet.json b/src/intl/bs/page-wallets-find-wallet.json
index 03b6751b9bf..f347b575831 100644
--- a/src/intl/bs/page-wallets-find-wallet.json
+++ b/src/intl/bs/page-wallets-find-wallet.json
@@ -7,7 +7,6 @@
"page-find-wallet-meta-title": "Pronađite Ethereum novčanik",
"page-find-wallet-title": "Pronađite novčanik",
"page-find-wallet-try-removing": "Pokušajte ukloniti jednu ili dvije karakteristike",
- "page-find-wallet-choose-to-compare": "Odaberite za komparaciju",
"page-stake-eth": "Uložite ETH",
"page-find-wallet-open-source": "Open source",
"page-find-wallet-open-source-desc": "Softver otvorenog koda dozvoljava svakome da pregleda integritet i bezbednost aplikacije",
@@ -16,8 +15,6 @@
"page-find-wallet-non-custodial-desc": "Novčanici koji ne kontrolišu vaše privatne ključeve",
"page-find-wallet-hardware-wallet-support": "Podrška za hardverski novčanik",
"page-find-wallet-hardware-wallet-support-desc": "Novčanici koji se mogu povezati s hardverskim novčanikom radi bolje sigurnosti",
- "page-find-wallet-walletconnect": "WalletConnect",
- "page-find-wallet-walletconnect-desc": "Novčanici koji mogu koristiti WalletConnect za povezivanje s dapps",
"page-find-wallet-rpc-importing": "Uvoz RPC",
"page-find-wallet-rpc-importing-desc": "Novčanici koji podržavaju prilagođene RPC krajnje tačke prilikom povezivanje sa različitim čvorovima ili mrežama",
"page-find-wallet-nft-support": "NFT podrška",
@@ -36,8 +33,6 @@
"page-find-wallet-ens-support-desc": "Novčanici koji podržavaju Ethereum Name Service (ENS)",
"page-find-wallet-token-importing": "Uvoz tokena",
"page-find-wallet-token-importing-desc": "Uvezite bilo koji ERC-20 token za korištenje u novčaniku",
- "page-find-wallet-fee-optimization": "Optimizacija naknade",
- "page-find-wallet-fee-optimization-desc": "Podrži transakcije vrste 2 radi optimalne naknade plina i povratu naknada za neiskorišteni plin",
"page-find-wallet-buy-crypto": "Kupite kriptovalutu",
"page-find-wallet-buy-crypto-desc": "Kupite kriptovalutu direktno s valutom fiat u novčaniku \n *Napomena: može biti razlike od regije do regije",
"page-find-wallet-sell-for-fiat": "Prodaj za pare",
@@ -46,7 +41,6 @@
"page-find-wallet-multisig-desc": "Novčanici koji zahtjevaju više potpisa za odobrenje transakcije",
"page-find-wallet-social-recovery": "Društveni oporavak",
"page-find-wallet-social-recovery-desc": "Novčanici koji dozvoljavaju čuvarima da promijene potpisni ključ za novčanike pametnih ugovora",
- "page-find-wallet-token-support": "Podrška za tokoen",
"page-find-wallet-features": "Features",
"page-find-wallet-security": "Security",
"page-find-wallet-smart-contract": "Smart contract",
@@ -63,7 +57,6 @@
"page-find-wallet-chromium": "Chromium",
"page-find-wallet-firefox": "Firefox",
"page-find-wallet-hardware": "Hardware",
- "page-find-wallet-hardware-desc": "Hardverski novčanik",
"page-find-wallet-new-to-crypto-title": "Početnik u kriptu",
"page-find-wallet-new-to-crypto-desc": "Novi ste korisnik i tražite vaš prvi novčanik",
"page-find-wallet-nfts-title": "NFT",
@@ -74,21 +67,13 @@
"page-find-wallet-finance-desc": "Vi ste osoba koja koristi DeFi i želite novčanik koji vam omogućava povezivanje s DeFi aplikacijama",
"page-find-wallet-developer-title": "Programer",
"page-find-wallet-developer-desc": "Vi ste programer i treba vam novčanik za pomoć pri razvijanju i testiranju dapp-a",
- "page-find-wallet-persona-desc": "Izaberite profil koji odgovara vašem tipu korisnika i filtrirajte listu novčanika",
"page-find-wallet-filters": "Filteri",
"page-find-wallet-active": "aktivni",
- "page-find-wallet-profile-filters": "Filteri profila",
- "page-find-wallet-feature-filters": "Filteri karakteristika",
"page-find-wallet-footnote-1": "Novčanici navedeni na ovoj stranici nisu zvanične preporuke i služe samo u informativne svrhe.",
"page-find-wallet-footnote-2": "Sami projekti novčanika navode opise.",
"page-find-wallet-footnote-3": "Dodajemo proizvode na ovu stranicu na osnovu kriterija naših pravila za navođenje. Ako želite da dodamo novčanik, obratite se GitHubu.",
"page-find-wallet-mobile": "Mobilni",
- "page-find-wallet-mobile-desc": "Novčanici s mobilnim aplikacijama",
"page-find-wallet-desktop": "Desktop",
- "page-find-wallet-desktop-desc": "Novčanici sa desktop aplikacijama",
"page-find-wallet-browser": "Preglednik",
- "page-find-wallet-browser-desc": "Novčanici s ekstenzijama za preglednike",
- "page-find-wallet-device": "Uređaj",
- "page-find-choose-to-compare": "Odaberite za komparaciju",
- "page-find-wallet-choose-features": "Izaberi karakteristike"
+ "page-find-wallet-device": "Uređaj"
}
diff --git a/src/intl/ca/common.json b/src/intl/ca/common.json
index 75496a9eeb8..80b095fd654 100644
--- a/src/intl/ca/common.json
+++ b/src/intl/ca/common.json
@@ -1,17 +1,30 @@
{
- "account-abstraction": "Abstracció del compte",
"about-ethereum-org": "Quant a ethereum.org",
"about-us": "Sobre nosaltres",
+ "adding-desci-projects": "Afegint Projectes Desci",
+ "adding-developer-tools": "Afegint Eines per a Desenvolupadors",
+ "adding-exchanges": "Afegint Cases de Canvi",
+ "adding-glossary-terms": "Afegint termes al glossari",
+ "adding-layer-2s": "Afegint Capa 2",
+ "adding-staking-products": "Afegint Productes d'Apilament",
+ "adding-wallets": "Afegint Carteres",
+ "account-abstraction": "Abstracció del compte",
+ "acknowledgements": "Agraïments",
"aria-toggle-search-button": "Mostrar el botó de cerca",
"aria-toggle-menu-button": "Mostrar el botó del menú",
"beacon-chain": "La Cadena de Balisa",
"bridges": "Ponts que interconnecten les Blockchains",
+ "bug-bounty": "Recompensa d'error",
+ "build": "Construïu",
+ "build-menu": "Menú de construcció",
"clear": "Netejar",
"close": "Tancar",
"community": "Comunitat",
"community-hub": "Centre comunitari",
"community-menu": "Menú Comunitat",
"contact": "Contacte",
+ "content-buckets": "Cubells de contingut",
+ "content-resources": "Recursos de contingut",
"content-standardization": "Estandardització de contingut",
"contributing": "Contribucions",
"contributors": "Col·laboradors",
@@ -20,14 +33,17 @@
"copied": "Copiat",
"copy": "Copiar",
"danksharding": "Danksharding",
- "dao-page": "Organitzacions autonomes decentralitzades (DAO)",
+ "dao-page": "DAO - Organitzacions autonomes decentralitzades",
"dark-mode": "Fosc",
"data-provided-by": "Font de la informació:",
- "decentralized-applications-dapps": "Aplicacions descentralitzades (dapps)",
+ "decentralized-applications-dapps": "Dapps - Aplicacions descentralitzades",
"decentralized-identity": "Identitat descentralitzada",
"decentralized-social-networks": "Xarxes socials descentralitzades",
- "decentralized-science": "Ciència descentralitzada (DeSci)",
- "defi-page": "Finança decentralitzada (FiDe)",
+ "decentralized-science": "DeSci - Ciència descentralitzada",
+ "description": "Descripció per a l'element de navegació",
+ "defi-page": "FiDe - Finança decentralitzada",
+ "design": "Disseny",
+ "design-principles": "Normes de disseny",
"devcon": "Devcon",
"developers": "Desenvolupadors",
"developers-home": "Pàgina d'inici per a desenvolupadors",
@@ -63,7 +79,7 @@
"ethereum-bug-bounty": "Veure el programa de recompenses per errors",
"consensus-when-shipping": "Quan es llençarà?",
"ethereum-upgrades": "Millores d'Ethereum",
- "ethereum-brand-assets": "Actius de la marca Ethereum",
+ "ethereum-brand-assets": "Actius de marca d'Ethereum",
"ethereum-online": "Comunitats en línia",
"ethereum-events": "Esdeveniments d'Ethereum",
"ethereum-foundation": "Fundació Ethereum",
@@ -75,7 +91,7 @@
"ethereum-protocol": "Protocol d'Ethereum",
"ethereum-security": "Seguretat i prevenció d'estafes a Ethereum",
"ethereum-support": "Assitència d'Ethereum",
- "ethereum-wallets": "Carteres Ethereum",
+ "ethereum-wallets": "Carteres d'Ethereum",
"ethereum-whitepaper": "Informe d'Ethereum",
"feedback-widget-prompt": "Heu trobat útil aquesta pàgina?",
"feedback-card-prompt-page": "Ha estat útil aquesta pàgina?",
@@ -86,7 +102,7 @@
"feedback-widget-thank-you-subtitle-ext": "Si necessiteu ajuda, podeu connectar-vos a la nostra comunitat en el nostre Discord.",
"feedback-widget-thank-you-timing": "2 - 3 minuts",
"feedback-widget-thank-you-cta": "Obrir l'enquesta breu",
- "find-wallet": "Trobar una cartera",
+ "find-wallet": "Trobeu una cartera",
"future-proofing": "Pensant en el futur",
"get-eth": "Aconseguiu ETH",
"get-involved": "Participeu",
@@ -94,11 +110,10 @@
"grants": "Subvencions",
"grant-programs": "Programes de subvencions per a l'ecosistema",
"guides": "Guies",
- "guides-hub": "Hub de les guies",
+ "guides-hub": "Guies pràctiques",
"history-of-ethereum": "Història d'Ethereum",
"home": "Inici",
"how-ethereum-works": "Com funciona Ethereum",
- "how-to-register-an-ethereum-account": "Com \"registrar\" un compte d'Ethereum",
"how-to-revoke-token-access": "Com revocar l'accés a contractes intel·ligents als vostres fons criptogràfics",
"how-to-swap-tokens": "Com intercanviar tokens",
"how-to-use-a-bridge": "Com pontar tokens a la Layer 2",
@@ -128,18 +143,119 @@
"loading-error-try-again-later": "No es poden carregar les dades. Torna-ho a provar més tard.",
"logo": "logotip",
"mainnet-ethereum": "Xarxa principal d'Ethereum",
+ "merge": "Fusionar",
"more": "Més",
- "nav-developers": "Desenvolupadors",
+ "nav-about-description": "Un projecte públic i de codi obert per a la comunitat Ethereum",
+ "nav-advanced-description": "Coneixeu els temes més complexos",
+ "nav-advanced-label": "Avançat",
+ "nav-basics-description": "Compreneu les bases de Ethereum",
+ "nav-basics-label": "Bàsics",
+ "nav-bridges-description": "Web3 ha evolucionat cap a un ecosistema de cadenes de blocs primàries L1 i solucions d'escalat L2",
+ "nav-builders-home-description": "Manual del desenvolupador per a Ethereum; de desenvolupadors, per a desenvolupadors",
+ "nav-builders-home-label": "Inici del constructor",
+ "nav-contribute-description": "Si voleu ajudar, això us guiarà",
+ "nav-contribute-label": "Col·laborar amb ethereum.org",
+ "nav-dao-description": "Comunitats de propietat dels membres sense autoritat centralitzada",
+ "nav-dapps-description": "Exploreu un ric ecosistema d'aplicacions usant Ethereum",
+ "nav-defi-description": "Una alternativa global i oberta al mercat financer tradicional",
+ "nav-desci-description": "Una alternativa global i oberta al sistema científic actual",
+ "nav-desoc-description": "Plataformes basades en cadenes de blocs per a la interacció social i la creació de contingut",
"nav-developers-docs": "Documents per a desenvolupadors",
+ "nav-developers": "Desenvolupadors",
+ "nav-did-description": "Emeteu i posseïu els vostres identificadors descentralitzats únics",
+ "nav-docs-description": "Documents per a ajudar-vos a entendre i construir amb Ethereum",
+ "nav-docs-design-description": "Descripció dels desafiaments de disseny, les millors pràctiques i els coneixements de recerca d'usuaris únics de web3",
+ "nav-docs-design-label": "Fonaments del disseny UX/UI",
+ "nav-docs-foundation-description": "Fonaments bàsics per a desenvolupar en Ethereum",
+ "nav-docs-foundation-label": "Temes bàsics",
+ "nav-docs-overview-description": "Lloc on trobareu la documentació de desenvolupadors",
+ "nav-docs-stack-description": "Compreneu tots els detalls de la pila Ethereum",
+ "nav-docs-stack-label": "Pila Ethereum",
+ "nav-eip-description": "Estàndards que especifiquen noves característiques o processos",
+ "nav-eip-label": "EIP - Propostes de millora d'Ethereum",
+ "nav-emerging-description": "Coneixeu altres casos d'ús més nous per a Ethereum",
+ "nav-enterprise-description": "Aplicacions empresarials per a Ethereum",
+ "nav-ethereum-org-description": "Aquest lloc web l'impulsa la comunitat, uniu-vos a nosaltres i contribuïu també",
+ "nav-ethereum-wallets-description": "Una aplicació per a interactuar amb el vostre compte de Ethereum",
+ "nav-events-description": "Descentralització i llibertat de participació per a tothom",
+ "nav-events-irl-description": "Cada mes hi ha grans esdeveniments Ethereum en persona i en línia",
+ "nav-events-label": "Comunitats i esdeveniments",
+ "nav-events-online-description": "Centenars de milers d'entusiastes de Ethereum organitzen aquestes comunitats en línia",
+ "nav-find-wallet-description": "Les carteres us permeten utilitzar criptomonedes",
+ "nav-find-wallet-label": "Trieu la vostra cartera",
+ "nav-gas-fees-description": "Com es calculen les taxes per transacció ETH?",
+ "nav-get-eth-description": "Necessiteu ether (ETH) per a usar aplicacions Ethereum",
+ "nav-get-started-description": "Primers passos per a usar Ethereum",
+ "nav-governance-description": "El procés d'actualització del protocol Ethereum",
+ "nav-governance-label": "Governança",
+ "nav-grants-description": "Una llista verificada per la nostra comunitat sobre projectes que ofereixen programes de finançament de subvencions",
+ "nav-guide-create-account-description": "Qualsevol pot crear un compte de Ethereum en qualsevol moment, de manera gratuïta amb una aplicació de cartera",
+ "nav-guide-revoke-access-description": "Mantingueu-vos segur quan interactueu amb contractes i aplicacions intel·ligents en l'ecosistema de Ethereum",
+ "nav-guide-revoke-access-label": "Com revocar l'accés al contracte intel·ligent",
+ "nav-guide-use-wallet-description": "Apreneu a utilitzar totes les funcions bàsiques d'una cartera",
+ "nav-guide-use-wallet-label": "Com utilitzar la cartera",
+ "nav-guides-description": "Guies pràctiques pas a pas per a ajudar-vos a començar",
+ "nav-guides-label": "Guies pràctiques",
+ "nav-history-description": "Una cronologia de totes les bifurcacions i actualitzacions principals",
+ "nav-history-label": "Història tècnica de Ethereum",
+ "nav-layer-2-description": "Transaccions més barates i ràpides per a Ethereum",
+ "nav-learn-by-coding-description": "Eines que us ajuden a experimentar amb Ethereum",
+ "nav-local-env-description": "Trieu i configureu la vostra pila de desenvolupament Ethereum",
+ "nav-mainnet-description": "Les aplicacions de cadena de blocs empresarials es poden construir en la xarxa Principal pública de Ethereum",
+ "nav-nft-description": "Una forma de representar quelcom únic com ara un actiu basat en Ethereum",
+ "nav-open-research-description": "Una de les principals fortaleses de Ethereum és la seva comunitat de recerca activa",
+ "nav-open-research-label": "Obrir recerca",
+ "nav-overview-description": "Tot Ethereum educació",
+ "nav-overview-label": "Resum",
+ "nav-participate-overview-description": "Informació general sobre com participar",
"nav-primary": "Primari",
- "nft-page": "Tokens no fungibles (NFT)",
+ "nav-private-description": "Recursos de desenvolupador per a empreses privades Ethereum",
+ "nav-quizzes-description": "Descobriu el bé que enteneu Ethereum i les criptomonedes",
+ "nav-quizzes-label": "Poseu a prova els vostres coneixements",
+ "nav-refi-description": "Un sistema econòmic alternatiu basat en principis regeneratius",
+ "nav-research-description": "Processos utilitzats per a millorar Ethereum",
+ "nav-research-label": "Recerca i desenvolupament",
+ "nav-roadmap-description": "El camí cap a una major escalabilitat, seguretat i sostenibilitat per a Ethereum",
+ "nav-roadmap-future-description": "Solidificació de Ethereum com una xarxa robusta i descentralitzada",
+ "nav-roadmap-future-label": "Pensant en el futur",
+ "nav-roadmap-label": "Full de ruta",
+ "nav-roadmap-scaling-description": "Actualitzacions de xarxa per a reduir encara més els costos de transacció i la velocitat",
+ "nav-roadmap-scaling-label": "Transaccions més barates",
+ "nav-roadmap-security-description": "Assegurar-se que Ethereum es manté resistent a tota mena d'atacs en el futur",
+ "nav-roadmap-security-label": "Seguretat millorada",
+ "nav-roadmap-ux-description": "L'ús de Ethereum ha de simplificar-se",
+ "nav-run-a-node-description": "Esdeveniu plenament sobirans mentre ajudeu a protegir la xarxa",
+ "nav-security-description": "Apreneu les millors pràctiques en usar criptomonedes",
+ "nav-smart-contracts-description": "Els pilars fonamentals de l'ecosistema Ethereum",
+ "nav-stablecoins-description": "Les monedes estables són tokens d'Ethereum dissenyades per mantenir un valor fix",
+ "nav-stake-description": "Guanyeu recompenses per fer Ethereum més segur",
+ "nav-stake-label": "Posar diners",
+ "nav-staking-home-description": "Una visió general de les diferents opcions d'apilament",
+ "nav-staking-home-label": "Inici de l'apilament",
+ "nav-staking-pool-description": "Poseu diners i guanyeu recompenses amb qualsevol quantitat d'ETH unint-vos amb altres usuaris",
+ "nav-staking-pool-label": "Apilament en grup",
+ "nav-staking-saas-label": "Apilament amb un servei",
+ "nav-staking-solo-label": "Apilament en solitari",
+ "nav-start-building-description": "Informació útil per als nouvinguts",
+ "nav-translation-program-description": "Un esforç de col·laboració per a traduir ethereum.org a tots els idiomes",
+ "nav-tutorials-description": "Llista verificada de tutorials de la comunitat",
+ "nav-use-cases-description": "Descobriu diferents idees per a l'ús de Ethereum",
+ "nav-what-is-ether-description": "La moneda de les aplicacions d'Ethereum",
+ "nav-what-is-ethereum-description": "Comprendre el que fa que Ethereum sigui especial",
+ "nav-what-is-web3-label": "Què és la Web3?",
+ "nav-what-is-web3-description": "Una alternativa als monopolis centralitzats que dicten les regles",
+ "nav-whitepaper-description": "L'informe tècnic original de Ethereum escrit per Vitalik Buterin en 2014",
+ "nav-zkp-description": "Una manera de provar la validesa d'una declaració sense revelar la pròpia declaració",
+ "nft-page": "NFT - Tokens no fungibles",
"nfts": "Els NFT",
"no": "No",
"on-this-page": "En aquesta pàgina",
"open-research": "Obrir recerca",
- "page-developers-aria-label": "Menú de Desenvolupadors",
+ "page-developers-aria-label": "Menú per a desenvolupadors",
"page-index-meta-title": "Inici",
"page-last-updated": "Última actualització de la pàgina",
+ "participate": "Participeu",
+ "participate-menu": "Menú de participació",
"pbs": "Separació proposant-constructor",
"pools": "Apilament en grup",
"privacy-policy": "Política de privadesa",
@@ -150,13 +266,15 @@
"refresh": "Actualitzeu la pàgina.",
"return-home": "Retorna a l’inici",
"roadmap": "Full de ruta d'Ethereum",
+ "research": "Recercra",
+ "research-menu": "Menú de recerca",
"resources": "Recursos de traducció",
- "regenerative-finance": "Finances regeneratives (ReFi)",
+ "regenerative-finance": "ReFi - Finances regeneratives",
"run-a-node": "Executeu un node",
"rollup-component-website": "Pàgina web",
"rollup-component-developer-docs": "Documents per a desenvolupadors",
"rollup-component-technology-and-risk-summary": "Resum de la tecnologia i el seu risc",
- "scaling": "Escalant",
+ "scaling": "Escalat",
"saas": "Servei d'apilament",
"search": "Cercar",
"search-ethereum-org": "Cerca a ethereum.org",
@@ -164,10 +282,11 @@
"search-box-blank-state-text": "Cerqueu en altres llocs!",
"search-eth-address": "Això sembla una adreça d’Ethereum. No proporcionem dades específiques a adreces. Proveu de cercar-ho en un explorador de blocs com",
"search-no-results": "No s'han trobat resultats per a la vostra cerca",
+ "security": "Seguretat",
"single-slot-finality": "Finalitat d'una sola ranura",
"statelessness": "Apatrídia",
"see-contributors": "Mostra col·laboradors",
- "set-up-local-env": "Configurar l'entorn local",
+ "set-up-local-env": "Configureu l'entorn local",
"sharding": "Fragmentació",
"show-all": "Mostrar-ho tot",
"show-less": "Mostra'n menys",
@@ -179,8 +298,8 @@
"stake-eth": "Aposteu ETH",
"staking": "Apilament",
"start-here": "Comença aquí",
- "style-guide": "Style guide",
"solo": "Apilament en solitari",
+ "support": "Suport",
"terms-of-use": "Condicions d'ús",
"translation-banner-body-new": "Esteu veient aquest pàgina en anglès perquè encara no l'hem traduïda. Ajudeu-nos a traduir aquest contingut.",
"translation-banner-body-update": "Hi ha una nova versió d'aquesta pàgina, però actualment només està en anglès. Ajudeu-nos a traduir l'última versió.",
@@ -191,11 +310,14 @@
"translation-banner-no-bugs-title": "No conté errors!",
"translation-banner-no-bugs-content": "Aquesta pàgina no està essent traduïda. De moment hem deixat aquesta pàgina intencionadament en anglès.",
"translation-banner-no-bugs-dont-show-again": "No ho mostris de nou",
+ "translation-program": "Programa de traducció",
"try-using-search": "Proveu d'utilitzar la lupa per trobar el que esteu buscant o",
"tutorials": "Tutorials",
"up": "Amunt",
+ "use": "Utilitzar",
"use-ethereum": "Utilitzar Ethereum",
"use-ethereum-menu": "Utilitzar menú d'Ethereum",
+ "use-menu": "Menú d'ús",
"user-experience": "Experiència d'usuari",
"verkle-trees": "Arbres de Verkle",
"wallets": "Carteres",
diff --git a/src/intl/ca/page-languages.json b/src/intl/ca/page-languages.json
index 6d5db98b421..d48250288a8 100644
--- a/src/intl/ca/page-languages.json
+++ b/src/intl/ca/page-languages.json
@@ -17,7 +17,7 @@
"page-languages-translated": "traduït",
"page-languages-words": "paraules",
"page-languages-recruit-community": "Ajudeu-nos a traduir ethereum.org.",
- "langauge-am": "Amharic",
+ "langauge-am": "Amhàric",
"language-ar": "Àrab",
"language-az": "Àzeri",
"langauge-be": "Bielorús",
@@ -32,13 +32,13 @@
"language-en": "Anglès",
"language-es": "Espanyol",
"language-fa": "Persa",
- "language-fi": "Finlandès",
+ "language-fi": "Finès",
"language-fr": "Francès",
"language-gl": "Gallec",
"language-gu": "Gujarati",
"language-he": "Hebreu",
"language-hi": "Hindi",
- "language-hr": "Croata",
+ "language-hr": "Croat",
"language-hu": "Hongarès",
"language-hy-am": "Armeni",
"language-id": "Indonesi",
@@ -52,7 +52,7 @@
"language-ko": "Coreà",
"language-lt": "Lituà",
"language-ml": "Malaiàlam",
- "language-mr": "Maratí",
+ "language-mr": "Marathi",
"language-ms": "Malai",
"language-nb": "Noruec",
"language-ne-np": "Nepalès",
@@ -71,9 +71,9 @@
"language-sw": "Suahili",
"language-ta": "Tàmil",
"language-th": "Tailandès",
- "language-tk": "Turcmeni",
+ "language-tk": "Turcman",
"language-tr": "Turc",
- "language-uk": "Ucrainès",
+ "language-uk": "Ucraïnès",
"language-ur": "Urdú",
"language-uz": "Uzbek",
"language-vi": "Vietnamita",
diff --git a/src/intl/cs/common.json b/src/intl/cs/common.json
index 05c7449a8d0..7f1b875b9d4 100644
--- a/src/intl/cs/common.json
+++ b/src/intl/cs/common.json
@@ -5,8 +5,6 @@
"adding-developer-tools": "Přidávání vývojářských nástrojů",
"adding-exchanges": "Přidávání směnáren",
"adding-glossary-terms": "Přidávání termínů do slovníku pojmů",
- "adding-layer-2s": "Adding Layer 2s",
- "adding-products": "Adding Products",
"adding-staking-products": "Přidávání produktů pro staking",
"adding-wallets": "Přidávání peněženek",
"account-abstraction": "Abstrakce účtu",
@@ -15,6 +13,9 @@
"aria-toggle-menu-button": "Zobrazit menu",
"beacon-chain": "Řetězová vazba",
"bridges": "Blockchainové mosty",
+ "bug-bounty": "Odměna za vyřešení chyby",
+ "build": "Vytváření",
+ "build-menu": "Nabídka Vytváření",
"clear": "Vymazat",
"close": "Zavřít",
"community": "Komunita",
@@ -31,14 +32,15 @@
"copied": "Zkopírováno",
"copy": "Kopírovat",
"danksharding": "Danksharding",
- "dao-page": "Decentralizované autonomní organizace (DAO)",
+ "dao-page": "DAO - Decentralizované autonomní organizace",
"dark-mode": "Tmavý",
"data-provided-by": "Zdroj dat:",
- "decentralized-applications-dapps": "Decentralizované aplikace (dapps)",
+ "decentralized-applications-dapps": "Dapps - Decentralizované aplikace",
"decentralized-identity": "Decentralizovaná identita",
"decentralized-social-networks": "Decentralizované sociální sítě",
"decentralized-science": "„Decentralizovaná věda“",
- "defi-page": "Decentralizované finance (DeFi)",
+ "description": "Popis položky navigace",
+ "defi-page": "DeFi - Decentralizované finance",
"design": "Design",
"design-principles": "Principy designu",
"devcon": "Devcon",
@@ -96,14 +98,14 @@
"feedback-card-prompt-tutorial": "Byl tento tutoriál užitečný?",
"feedback-widget-thank-you-title": "Děkujeme za Váš názor!",
"feedback-widget-thank-you-subtitle": "Tuto stránku můžete zlepšit zodpovězením několika otázek.",
- "feedback-widget-thank-you-subtitle-ext": "Pokud potřebuješ pomoct, můžeš se obrátit na komunitu na našem Discordu.",
+ "feedback-widget-thank-you-subtitle-ext": "Pokud potřebujete poradit, obraťte se na naší komunitu na našem Discordu.",
"feedback-widget-thank-you-timing": "2–3 minuty",
"feedback-widget-thank-you-cta": "Vyplnit krátkou anketu",
"find-wallet": "Najít peněženku",
"future-proofing": "Příprava na budoucnost",
"get-eth": "Získat ETH",
"get-involved": "Zapojit se",
- "get-started": "Začít",
+ "get-started": "Začínáme",
"grants": "Granty",
"grant-programs": "Grantové programy pro ekosystém",
"guides": "Příručky",
@@ -143,17 +145,120 @@
"mainnet-ethereum": "Mainnet Ethereum",
"merge": "Sloučení",
"more": "Více",
- "nav-developers": "Vývojáři",
+ "nav-about-description": "Veřejný opensourcový projekt pro komunitu Etherea",
+ "nav-advanced-description": "Seznamte se se složitějšími tématy",
+ "nav-advanced-label": "Další",
+ "nav-basics-description": "Pochopení základů Etherea",
+ "nav-basics-label": "Základy",
+ "nav-bridges-description": "Web3 se vyvinul v ekosystém primárních blockchainů L1 a řešení pro škálování L2",
+ "nav-builders-home-description": "Návod pro tvůrce na platformě Ethereum – od tvůrců, pro tvůrce",
+ "nav-builders-home-label": "Domovská stránka pro tvůrce",
+ "nav-contribute-description": "Pokud potřebujete pomoc, pomůže vám tento návod",
+ "nav-contribute-label": "Přispívání na ethereum.org",
+ "nav-dao-description": "Členské komunity bez centralizovaného vedení",
+ "nav-dapps-description": "Prozkoumejte bohatý ekosystém aplikací využívajících Ethereum",
+ "nav-defi-description": "Globální otevřená alternativa k tradičnímu finančnímu trhu",
+ "nav-desci-description": "Globální otevřená alternativa ke stávajícímu vědeckému systému",
+ "nav-desoc-description": "Platformy založené na blockchainu pro sociální interakci a tvorbu obsahu",
"nav-developers-docs": "Dokumentace pro vývojáře",
+ "nav-developers": "Vývojáři",
+ "nav-did-description": "Vydávání a vlastnictví jedinečných decentralizovaných identifikátorů",
+ "nav-docs-description": "Dokumenty, které vám pomohou porozumět Ethereu a vytvářet s ním",
+ "nav-docs-design-description": "Popis jedinečných výzev v oblasti designu webu3, osvědčených postupů a poznatků z výzkumu uživatelů",
+ "nav-docs-design-label": "Základy designu UX/UI",
+ "nav-docs-foundation-description": "Základy pro vývoj na platformě Ethereum",
+ "nav-docs-foundation-label": "Základní témata",
+ "nav-docs-overview-description": "Místo, kde najdete dokumenty pro vývojáře",
+ "nav-docs-stack-description": "Seznamte se se všemi podrobnostmi Ethereum zásobníku",
+ "nav-docs-stack-label": "Ethereum zásobník",
+ "nav-eip-description": "Normy, které specifikují nové funkce nebo postupy",
+ "nav-eip-label": "EIP - Návrhy na zlepšení platformy Ethereum",
+ "nav-emerging-description": "Seznamte se s dalšími novějšími případy použití Etherea",
+ "nav-emerging-label": "Rozvíjející se případy použití",
+ "nav-enterprise-description": "Obchodní aplikace pro Ethereum",
+ "nav-ethereum-org-description": "Tento web je spravován komunitou – přidejte se k nám a přispějte také.",
+ "nav-ethereum-wallets-description": "Aplikace pro interakci s vaším účtem Ethereum",
+ "nav-events-description": "Decentralizace a svoboda účasti pro každého",
+ "nav-events-irl-description": "Každý měsíc se konají významné prezenční i online události týkající se Etherea",
+ "nav-events-label": "Komunity a události",
+ "nav-events-online-description": "V těchto online komunitách se sdružují statisíce nadšenců do Etherea",
+ "nav-find-wallet-description": "Peněženky umožňují používat kryptoměny",
+ "nav-find-wallet-label": "Zvolte peněženku",
+ "nav-gas-fees-description": "Jak jsou počítány transakční poplatky ETH",
+ "nav-gas-fees-label": "Palivové poplatky",
+ "nav-get-eth-description": "K používání aplikací pro Ethereum potřebujete ether (ETH)",
+ "nav-get-started-description": "Vaše první kroky k používání Etherea",
+ "nav-governance-description": "Proces upgradu protokolu Ethereum",
+ "nav-governance-label": "Řízení",
+ "nav-grants-description": "Seznam projektů vybraných naší komunitou, které poskytují grantové programy",
+ "nav-guide-create-account-description": "Účet Ethereum si může kdykoli zdarma vytvořit kdokoli pomocí aplikace peněženky",
+ "nav-guide-create-account-label": "Jak si vytvořit Ethereum účet",
+ "nav-guide-revoke-access-description": "Chraňte se při interakci s chytrými kontrakty a aplikacemi v ekosystému Ethereum",
+ "nav-guide-revoke-access-label": "Jak odvolat přístup k chytrým kontraktům",
+ "nav-guide-use-wallet-description": "Naučte se ovládat všechny základní funkce peněženky",
+ "nav-guide-use-wallet-label": "Jak používat peněženku",
+ "nav-guides-description": "Praktické podrobné návody které vám pomohou začít",
+ "nav-guides-label": "Návody",
+ "nav-history-description": "Časová osa všech hlavních forků a aktualizací",
+ "nav-history-label": "Technická historie Etherea",
+ "nav-layer-2-description": "Levnější a rychlejší transakce s Ethereem",
+ "nav-learn-by-coding-description": "Nástroje, které vám pomohou experimentovat s Ethereem",
+ "nav-local-env-description": "Výběr a nastavení sady nástrojů pro vývoj s Ethereem",
+ "nav-mainnet-description": "Podnikové blockchainové aplikace lze vytvářet na veřejné hlavní síti Etherea",
+ "nav-nft-description": "Způsob, jak reprezentovat cokoliv unikátního jako majetek založený na Ethereu",
+ "nav-open-research-description": "Jednou z hlavních předností Etherea je jeho aktivní výzkumná komunita",
+ "nav-open-research-label": "Otevřený průzkum",
+ "nav-overview-description": "Materiály o všem, co se týká Etherea",
+ "nav-overview-label": "Přehled",
+ "nav-participate-overview-description": "Přehled o tom, jak se zapojit",
"nav-primary": "Hlavní",
- "nft-page": "Nezaměnitelné tokeny (NFT)",
+ "nav-quizzes-description": "Zjistěte, jak dobře rozumíte Ethereu a kryptoměnám",
+ "nav-quizzes-label": "Otestujte své znalosti",
+ "nav-refi-description": "Alternativní ekonomický systém postavený na regenerativních principech",
+ "nav-research-description": "Procesy používané k vylepšování Etherea",
+ "nav-research-label": "Výzkum a vývoj",
+ "nav-roadmap-description": "Cesta Etherea k větší škálovatelnosti, bezpečnosti a udržitelnosti",
+ "nav-roadmap-future-description": "Ustálení Etherea jako robustní a decentralizované sítě",
+ "nav-roadmap-future-label": "Příprava na budoucnost",
+ "nav-roadmap-label": "Plán postupu",
+ "nav-roadmap-scaling-description": "Aktualizace sítě ve snaze o další snížení transakčních nákladů a zvýšení rychlosti",
+ "nav-roadmap-security-description": "Zajištění odolnosti Etherea vůči všem druhům útoků i do budoucna",
+ "nav-roadmap-security-label": "Vylepšené zabezpečení",
+ "nav-roadmap-ux-description": "Používání Etherea je třeba zjednodušit",
+ "nav-run-a-node-description": "Získejte nezávislost a zároveň pomáhejte zabezpečit síť",
+ "nav-security-description": "Naučte se osvědčené postupy při používání kryptoměn",
+ "nav-smart-contracts-description": "Základní stavební kameny ekosystému Ethereum",
+ "nav-stablecoins-description": "Stablecoiny jsou tokeny Etherea navržené tak, aby si zachovaly pevnou hodnotu",
+ "nav-stake-description": "Dostávejte odměny za zajištění Etherea",
+ "nav-stake-label": "Podíl",
+ "nav-staking-home-description": "Přehled různých možností uzamčení",
+ "nav-staking-home-label": "Domov stakingu",
+ "nav-staking-pool-description": "Spojte síly s ostatními, vkládejte libovolné částky ETH a dostávejte odměny",
+ "nav-staking-pool-label": "Sdružené uzamčení",
+ "nav-staking-saas-description": "Operátoři uzlů třetích stran zajišťují provoz vašeho klienta validátoru",
+ "nav-staking-saas-label": "Uzamčení pomocí služby",
+ "nav-staking-solo-description": "Spusťte domácí hardware a osobně přidejte k zabezpečení a decentralizaci sítě Ethereum",
+ "nav-staking-solo-label": "Samostatné uzamčení",
+ "nav-start-building-description": "Užitečné informace pro nováčky",
+ "nav-translation-program-description": "Společné úsilí o překlad ethereum.org do všech jazyků",
+ "nav-tutorials-description": "Seznam vybraných komunitních výukových programů",
+ "nav-use-cases-description": "Objevte různé nápady na využití Etherea",
+ "nav-what-is-ether-description": "Měna aplikací Ethereum",
+ "nav-what-is-ethereum-description": "Zjistěte, čím je Ethereum výjimečné",
+ "nav-what-is-web3-label": "Co je Web3?",
+ "nav-what-is-web3-description": "Alternativa k centralizovaným monopolům diktujícím pravidla",
+ "nav-whitepaper-description": "Původní bílá kniha Etherea vypracovaná Vitalikem Buterinem v roce 2014",
+ "nav-zkp-description": "Způsob, jak dokázat platnost tvrzení, aniž by bylo nutné odhalit samotné tvrzení",
+ "nft-page": "NFT - Nezaměnitelné tokeny",
"nfts": "NFT",
"no": "Ne",
"on-this-page": "Na této stránce",
"open-research": "Otevřený průzkum",
- "page-developers-aria-label": "Menu vývojáře",
+ "page-developers-aria-label": "Nabídka pro vývojáře",
"page-index-meta-title": "Domů",
"page-last-updated": "Stránka naposledy aktualizována",
+ "participate": "Jak se zapojit",
+ "participate-menu": "Nabídka Zapojte se",
"pbs": "Oddělení navrhovatelů od sestavovatelů",
"pools": "Sdružené uzamčení",
"privacy-policy": "Zásady ochrany osobních údajů",
@@ -164,8 +269,10 @@
"refresh": "Prosím obnovte stránku.",
"return-home": "zpět na hlavní stránku",
"roadmap": "Plán Etherea",
+ "research": "Výzkum",
+ "research-menu": "Nabídka Výzkum",
"resources": "Zdroje překladu",
- "regenerative-finance": "Regenerativní finance (ReFi)",
+ "regenerative-finance": "ReFi - Regenerativní finance",
"run-a-node": "Spustit uzel",
"rollup-component-website": "Web",
"rollup-component-developer-docs": "Dokumentace pro vývojáře",
@@ -187,14 +294,12 @@
"show-all": "Zobrazit vše",
"show-less": "Zobrazit méně",
"site-description": "Ethereum je celosvětová, decentralizovaná platforma pro peníze a nové druhy aplikací. Na platformě Ethereum můžeš napsat kód pro správu peněz a vytvářet aplikace přístupné odkudkoli na světě.",
- "site-title": "ethereum.org",
"skip-to-main-content": "Přeskočit na hlavní obsah",
"smart-contracts": "Chytré kontrakty",
- "stablecoins": "Stablecoins",
+ "stablecoins": "Stabilní kryptoměny (stablecoins)",
"stake-eth": "Stakujte ETH",
"staking": "Stakování",
"start-here": "Začněte zde",
- "style-guide": "Style guide",
"solo": "Samostatné uzamčení",
"support": "Podpora",
"terms-of-use": "Podmínky použití",
@@ -211,11 +316,13 @@
"try-using-search": "Zkuste použít vyhledávání k nalezení toho, co hledáte, nebo",
"tutorials": "Návody",
"up": "Nahoru",
+ "use": "Používání",
"use-ethereum": "Používání platformy Ethereum",
"use-ethereum-menu": "Požít Ethereum menu",
+ "use-menu": "Nabídka Používání",
"user-experience": "Uživatelská zkušenost",
"verkle-trees": "Verkle stromy",
- "wallets": "Peněženky",
+ "wallets": "Kryptoměnové peněženky",
"we-couldnt-find-that-page": "Požadovanou stránku se nám nepodařilo najít",
"web3": "Co je Web3?",
"web3-title": "Web3",
diff --git a/src/intl/cs/page-wallets-find-wallet.json b/src/intl/cs/page-wallets-find-wallet.json
index 1e96007df04..803e1e7285c 100644
--- a/src/intl/cs/page-wallets-find-wallet.json
+++ b/src/intl/cs/page-wallets-find-wallet.json
@@ -7,7 +7,6 @@
"page-find-wallet-meta-title": "Najděte peněženku pro Ethereum",
"page-find-wallet-title": "Najít peněženku",
"page-find-wallet-try-removing": "Zkuste odebrat funkci nebo dvě",
- "page-find-wallet-choose-to-compare": "Zvolte pro porovnání",
"page-stake-eth": "Stakujte ETH",
"page-find-wallet-open-source": "Open Source",
"page-find-wallet-open-source-desc": "Open-source software umožňuje komukoliv kontrolovat integritu a bezpečnost aplikace",
@@ -16,8 +15,6 @@
"page-find-wallet-non-custodial-desc": "Peněženky, které neovládají vaše soukromé klíče",
"page-find-wallet-hardware-wallet-support": "Podpora hardwarové peněženky",
"page-find-wallet-hardware-wallet-support-desc": "Peněženky, které se mohou připojit k hardwarové peněžence pro lepší zabezpečení",
- "page-find-wallet-walletconnect": "WalletConnect",
- "page-find-wallet-walletconnect-desc": "Peněženky, které podporují WalletConnect pro připojení k dapps",
"page-find-wallet-rpc-importing": "Importování RPC",
"page-find-wallet-rpc-importing-desc": "Peněženky podporující vlastní koncové RPC pro připojení k různým uzlům nebo sítím",
"page-find-wallet-nft-support": "Podpora NFT",
@@ -36,8 +33,6 @@
"page-find-wallet-ens-support-desc": "Peněženky, které podporují službu Ethereum Name Service (ENS)",
"page-find-wallet-token-importing": "Importování tokenu",
"page-find-wallet-token-importing-desc": "Importovat libovolný token ERC-20 k použití v peněžence",
- "page-find-wallet-fee-optimization": "Optimalizace poplatků",
- "page-find-wallet-fee-optimization-desc": "Podpora transakcí typu 2 pro optimalizované poplatky a náhrady poplatků",
"page-find-wallet-buy-crypto": "Koupit kryptoměny",
"page-find-wallet-buy-crypto-desc": "Koupit kryptoměny pomocí fiat peněz přímo v peněžence \n *Poznámka: nákup kryptoměn může být specifický pro region, ve kterém žijete",
"page-find-wallet-sell-for-fiat": "Prodat za fiat peníze",
@@ -46,7 +41,6 @@
"page-find-wallet-multisig-desc": "Peněženky, které vyžadují více podpisů pro autorizaci transakce",
"page-find-wallet-social-recovery": "Obnova přístupu",
"page-find-wallet-social-recovery-desc": "Peněženky, které strážcům umožňují změnit podpisový klíč pro smart contract peněženky",
- "page-find-wallet-token-support": "Podpora tokenů",
"page-find-wallet-features": "Funkce",
"page-find-wallet-security": "Bezpečnost",
"page-find-wallet-smart-contract": "Chytrý kontrakt",
@@ -63,7 +57,6 @@
"page-find-wallet-chromium": "Chromium",
"page-find-wallet-firefox": "Firefox",
"page-find-wallet-hardware": "Hardware",
- "page-find-wallet-hardware-desc": "Hardwarová peněženka",
"page-find-wallet-new-to-crypto-title": "Jste v kryptoměnách noví?",
"page-find-wallet-new-to-crypto-desc": "Jste nový uživatel hledající svou první peněženku",
"page-find-wallet-nfts-title": "NFTéčka",
@@ -74,22 +67,14 @@
"page-find-wallet-finance-desc": "Jste někdo, kdo používá DeFi, a chcete peněženku, která vám umožní připojit se k DeFi aplikacím",
"page-find-wallet-developer-title": "Vývojář",
"page-find-wallet-developer-desc": "Jste vývojář a potřebujete peněženku pro vývoj a testování dapps",
- "page-find-wallet-persona-desc": "Vyberte profil, který odpovídá typu uživatele, a filtrujte seznam peněženek",
"page-find-wallet-filters": "Filtry",
"page-find-wallet-active": "aktivní",
- "page-find-wallet-profile-filters": "Filtry profilu",
- "page-find-wallet-feature-filters": "Filtry funkcí",
"page-find-wallet-footnote-1": "Peněženky uvedené na této stránce nejsou oficiálním doporučením a jsou poskytovány pouze pro informační účely.",
"page-find-wallet-footnote-2": "Jejich popisy byly poskytnuty samotnými tvůrci peněženek.",
"page-find-wallet-footnote-3": "Na tuto stránku přidáváme produkty na základě kritérií v našich zásadách pro přidávání. Pokud byste chtěli přidat peněženku, navrhněte podnět na GitHubu.",
"page-find-wallet-mobile": "Mobilní",
- "page-find-wallet-mobile-desc": "Peněženky s mobilními aplikacemi",
"page-find-wallet-desktop": "Desktopová",
- "page-find-wallet-desktop-desc": "Peněženky s desktopovými aplikacemi",
"page-find-wallet-browser": "Prohlížeč",
- "page-find-wallet-browser-desc": "Peněženky s rozšířeními prohlížeče",
"page-find-wallet-device": "Zařízení",
- "page-find-choose-to-compare": "Zvolte pro porovnání",
- "page-find-wallet-choose-features": "Vyberte funkce",
"page-find-wallet-reset-filters": "Resetovat filtry"
}
diff --git a/src/intl/da/common.json b/src/intl/da/common.json
index 0c571dbde49..f416ffa7fde 100644
--- a/src/intl/da/common.json
+++ b/src/intl/da/common.json
@@ -1,17 +1,29 @@
{
- "account-abstraction": "Konto-abstraktion",
"about-ethereum-org": "Om ethereum.org",
"about-us": "Om os",
+ "adding-desci-projects": "Tilføjelse af Desci-projekter",
+ "adding-developer-tools": "Tilføjelse af udviklerværktøjer",
+ "adding-exchanges": "Tilføjelse af handler",
+ "adding-glossary-terms": "Tilføjelse af termer ftil glossar",
+ "adding-staking-products": "Tilføjelse af indsatsprodukter",
+ "adding-wallets": "Tilføjelse af punge",
+ "account-abstraction": "Konto-abstraktion",
+ "acknowledgements": "Anerkendelser",
"aria-toggle-search-button": "Skift søgeknap",
"aria-toggle-menu-button": "Tænd/sluk menuknappen",
"beacon-chain": "Beacon Chain",
"bridges": "Blockchain-broer",
+ "bug-bounty": "Fejldusør",
+ "build": "Build",
+ "build-menu": "Build-menu",
"clear": "Ryd",
"close": "Luk",
"community": "Fællesskab",
"community-hub": "Fællesskabs-hub",
"community-menu": "Fællesskabs-menu",
"contact": "Kontakt",
+ "content-buckets": "Indholdsmapper",
+ "content-resources": "Indholdsressourcer",
"content-standardization": "Standardisering af indhold",
"contributing": "Bidrager",
"contributors": "Bidragere",
@@ -20,14 +32,17 @@
"copied": "Kopieret",
"copy": "Kopiér",
"danksharding": "Danksharding",
- "dao-page": "Decentraliserede autonome organisationer (DAO'er)",
+ "dao-page": "DAO'er - Decentraliserede autonome organisationer",
"dark-mode": "Mørk",
"data-provided-by": "Datakilde:",
- "decentralized-applications-dapps": "Decentraliserede applikationer (dapps)",
+ "decentralized-applications-dapps": "Dapps - Decentraliserede applikationer",
"decentralized-identity": "Decentraliseret identitet",
"decentralized-social-networks": "Decentraliserede sociale netværk",
- "decentralized-science": "Decentraliseret videnskab (DeSci)",
- "defi-page": "Decentraliserede finanser (DeFi)",
+ "decentralized-science": "DeSci - Decentraliseret videnskab",
+ "description": "Beskrivelse f. nav-punkt",
+ "defi-page": "DeFi - Decentraliserede finanser",
+ "design": "Design",
+ "design-principles": "Designprincipper",
"devcon": "Devcon",
"developers": "Udviklere",
"developers-home": "Udviklerens startside",
@@ -51,7 +66,7 @@
"documentation": "Dokumentation",
"down": "Ned",
"ecosystem": "Økosystem",
- "edit-page": "Redigér side",
+ "edit-page": "Rediger side",
"ef-blog": "Ethereum Foundation Blog",
"eips": "Forslag til forbedring af Ethereum",
"energy-consumption": "Ethereums energiforbrug",
@@ -59,7 +74,6 @@
"enterprise-menu": "Virksomhedsmenu",
"esp": "Supportprogram for økosystem",
"eth-current-price": "Aktuel ETH-pris (USD)",
- "ethereum-basics": "Ethereum basics",
"ethereum-bug-bounty": "Ethereum-fejlbelønningsprogram",
"consensus-when-shipping": "Hvornår sendes det?",
"ethereum-upgrades": "Ethereum-opgraderinger",
@@ -75,7 +89,7 @@
"ethereum-protocol": "Ethereum-protokol",
"ethereum-security": "Ethereums sikkerhed og forebyggelse af svindel",
"ethereum-support": "Ethereum Support",
- "ethereum-wallets": "Ethereum-tegnebog",
+ "ethereum-wallets": "Ethereum-tegnebøger",
"ethereum-whitepaper": "Ethereum-hvidbog",
"feedback-widget-prompt": "Er denne side nyttig?",
"feedback-card-prompt-page": "Var denne side nyttig?",
@@ -83,7 +97,7 @@
"feedback-card-prompt-tutorial": "Var denne vejledning nyttig?",
"feedback-widget-thank-you-title": "Tak for din feedback!",
"feedback-widget-thank-you-subtitle": "Gør denne side endnu bedre ved at besvare et par spørgsmål.",
- "feedback-widget-thank-you-subtitle-ext": "Hvis du har brug for hjælp, kan du spørge fællesskabet på vores Discord.",
+ "feedback-widget-thank-you-subtitle-ext": "Har du brug for hjælp, kan du spørge fællesskabet på vores Discord.",
"feedback-widget-thank-you-timing": "2–3 min",
"feedback-widget-thank-you-cta": "Åbn kort undersøgelse",
"find-wallet": "Find tegnebog",
@@ -94,11 +108,10 @@
"grants": "Tilskud",
"grant-programs": "Økosystem-tilskudsprogrammer",
"guides": "Guider",
- "guides-hub": "Guidehub",
+ "guides-hub": "Sådan gør du-guider",
"history-of-ethereum": "Ethereums historik",
"home": "Startside",
"how-ethereum-works": "Sådan fungerer Ethereum",
- "how-to-register-an-ethereum-account": "Sådan \"registreres\" en Ethereum konto",
"how-to-revoke-token-access": "Sådan tilbagekalder man smart kontrakt-adgang til sine krypto midler",
"how-to-swap-tokens": "Sådan byttes tokens",
"how-to-use-a-bridge": "Sådan forbindes tokens til lag 2",
@@ -128,11 +141,106 @@
"loading-error-try-again-later": "Kan ikke indlæse data. Prøv igen senere.",
"logo": "logo",
"mainnet-ethereum": "Hovednetværk Ethereum",
+ "merge": "Flet",
"more": "Mere",
- "nav-developers": "Udviklere",
+ "nav-about-description": "Et offentligt, open source-projekt for Ethereum-fællesskabet",
+ "nav-advanced-description": "Lær de mere komplekse emner",
+ "nav-advanced-label": "Avanceret",
+ "nav-basics-description": "Forstå det grundlæggende i Ethereum",
+ "nav-basics-label": "Det grundlæggende",
+ "nav-bridges-description": "Web3 har udviklet sig til et økosystem af primære L1-blockchains og L2-skaleringsløsninger",
+ "nav-builders-home-description": "En byggehåndbog til Ethereum - af byggere, for byggere",
+ "nav-builders-home-label": "Byggerens hjem",
+ "nav-contribute-description": "Har du brug for hjælp, vil denne vejlede dig",
+ "nav-contribute-label": "Bidrag til ethereum.org",
+ "nav-dao-description": "Medlemsejede fællesskaber uden centraliseret myndighed",
+ "nav-dapps-description": "Udforsk et rigt økosystem af apps, der bruge Ethereum",
+ "nav-defi-description": "Et globalt, åbent alternativ til et traditionelt finansmarked",
+ "nav-desci-description": "Et globalt, åbent alternativ til det nuværende videnskabelige system",
+ "nav-desoc-description": "Blockchainbaserede platforme til social interaktion og indholdsskabelse",
"nav-developers-docs": "Udviklerdokumenter",
+ "nav-developers": "Udviklere",
+ "nav-did-description": "Udgiv og ej dine unikke decntraliserede identifikatorer",
+ "nav-docs-description": "Doks, der hjælper dig med at forstå og bygge med Ethereum",
+ "nav-docs-design-description": "Beskrivelse af unikke web3-designudfordringer, bedste praksis og brugerforskningsindsigt",
+ "nav-docs-design-label": "Grundlæggende UX-/UI-design",
+ "nav-docs-foundation-description": "Det helt grundlæggende for udvikling på Ethereum",
+ "nav-docs-overview-description": "Dit hjem for udvikler-doks",
+ "nav-docs-stack-description": "Forstå alle detaljerne i Ethereum stack",
+ "nav-docs-stack-label": "Ethereum stack",
+ "nav-eip-description": "Standarder, der specificerer nye funktioner eller processer",
+ "nav-eip-label": "EIP'er - Forslag til Ethereums forbedring",
+ "nav-emerging-description": "Lær andre nyere brugseksempler for Ethereum",
+ "nav-enterprise-description": "Forretningsapplikationer til Ethereum",
+ "nav-ethereum-org-description": "Denne hjemmeside er fællesskabsdrevet - slut dig til os, og bidrag",
+ "nav-ethereum-wallets-description": "En app til at interagere med din Ethereum-konto",
+ "nav-events-description": "Decentralisering og frihed for alle til at deltage",
+ "nav-events-irl-description": "Der er store Ethereum-begivenheder hver måned - fysiske og online",
+ "nav-events-label": "Fællesskaber og begivenheder",
+ "nav-events-online-description": "Hundredtusindvis af Ethereum-entusiaster bidrager i disse online-fællesskaber",
+ "nav-find-wallet-description": "Med punge kan du bruge krypto",
+ "nav-find-wallet-label": "Vælg din tegnebog",
+ "nav-gas-fees-description": "Sådan beregnes ETH-transaktionsgebyrer",
+ "nav-get-eth-description": "Det kræver ether (ETH) for at bruge Ethereum-applikationer",
+ "nav-get-started-description": "Dine første trin mod brug af Ethereum",
+ "nav-governance-description": "Processen krævet for at opgradere Ethereum-protokollen",
+ "nav-governance-label": "Forvaltning",
+ "nav-grants-description": "En organiseret liste fra vores fællesskab over projekter, der er med i tilskudsfinansieringsordninger",
+ "nav-guide-create-account-description": "Alle kan når som helst og gratis oprette en Ethereum-konto med en tegnebogsapp",
+ "nav-guide-revoke-access-description": "Forbliv sikker, når du interagerer med smarte kontrakter og applikationer i Ethereum-økosystemet",
+ "nav-guide-revoke-access-label": "Sådan tilbagekaldes adgang til smart kontrakt",
+ "nav-guide-use-wallet-description": "Lær, hvordan du kører alle grundlæggende funktioner i en tegnebog",
+ "nav-guide-use-wallet-label": "Sådan bruges en tegnebog",
+ "nav-guides-description": "Praktiske trin for trin-guider, der hjælper dig i gang",
+ "nav-guides-label": "Sådan gør du-guider",
+ "nav-history-description": "En tidslinje over alle de store forgreninger og opdateringer",
+ "nav-history-label": "Ethereums tekniske historik",
+ "nav-layer-2-description": "Billigere og hurtigere transaktioner for Ethereum",
+ "nav-learn-by-coding-description": "Værktøjer, der hjælper dig med at eksperimentere med Ethereum",
+ "nav-local-env-description": "Vælg og opsæt din Ethereum-udviklingsstak",
+ "nav-mainnet-description": "Virksomheders blockchain-applikationer kan bygges på det offentlige Ethereum Mainnet",
+ "nav-nft-description": "En måde at repræsentere noget unikt på som et Ethereum-baseret aktiv",
+ "nav-open-research-description": "En af de primære styrker ved Ethereum er dets aktive forskerfællesskab",
+ "nav-open-research-label": "Åbn søgning",
+ "nav-overview-description": "Alt om Ethereum-uddannelse",
+ "nav-participate-overview-description": "Oversigt over hvordan man deltager",
"nav-primary": "Primær",
- "nft-page": "Ikke-ombyttelige tokens (NFT'er)",
+ "nav-quizzes-description": "Find ud af, hvor godt du forstår Ethereum og kryptovalutaer",
+ "nav-quizzes-label": "Test din viden",
+ "nav-refi-description": "Et alternativt økonomisk system bygger på regenerative principper",
+ "nav-research-description": "Processer, der bruges til forbedring af Ethereum",
+ "nav-research-label": "Forskning og udvikling",
+ "nav-roadmap-description": "Vejen til mere skalerbarhed, sikkerhed og bæredygtighed for Ethereum",
+ "nav-roadmap-future-description": "Befæstelse af Ethereum som et robust og decentraliseret netværk",
+ "nav-roadmap-future-label": "Fremtidssikring",
+ "nav-roadmap-label": "Roadmap",
+ "nav-roadmap-scaling-description": "Netværksopdateringer for yderligere reduktion af transaktionsomkostninger og for hastighed",
+ "nav-roadmap-security-description": "Sikring af, at Ethereum forbliver modstandsdygtig over for alle slags angreb i fremtiden",
+ "nav-roadmap-security-label": "Forbedret sikkerhed",
+ "nav-roadmap-ux-description": "Brugen af Ethereum skal forenkles",
+ "nav-run-a-node-description": "Bliv fuldstændig suveræn, mens du hjælper med at sikre netværket",
+ "nav-security-description": "Lær bedste praksis til at bruge kryptovaluta",
+ "nav-smart-contracts-description": "De grundlæggende byggesten i Ethereum-økosystemet",
+ "nav-stablecoins-description": "Stablecoins er Ethereum-tokens beregnet til at holde en fast værdi",
+ "nav-stake-description": "Optjen bonusser for at sikre Ethereum",
+ "nav-stake-label": "Indsats",
+ "nav-staking-home-description": "Oversigt over forskellige muligheder for at satse",
+ "nav-staking-home-label": "Staking hjem",
+ "nav-staking-pool-description": "Sats, og optjen bonusser med et hvilket som helst beløb u ETH ved at gå sammen med andre",
+ "nav-staking-pool-label": "Samlet staking",
+ "nav-staking-saas-label": "Sats med en service",
+ "nav-staking-solo-label": "Solo-staking",
+ "nav-start-building-description": "Nyttig information for nytilkomne",
+ "nav-translation-program-description": "Et samarbejde om at oversætte ethereum.org til alle sprog",
+ "nav-tutorials-description": "Organiseret liste over fællesskabsvejledning",
+ "nav-use-cases-description": "Se forskellige ideer til brug af Ethereum",
+ "nav-what-is-ether-description": "Valutaen i Ethereum-apps",
+ "nav-what-is-ethereum-description": "Forstå, hvad der gør Ethereum til noget særligt",
+ "nav-what-is-web3-label": "Hvad er Web3?",
+ "nav-what-is-web3-description": "Et alternativ til centraliserede monopoler, der bestemmer reglerne",
+ "nav-whitepaper-description": "Den oprindelige Ethereum-hvidbog skrevet af Vitalik Buterin i 2014",
+ "nav-zkp-description": "En måde at bevise gyldigheden af et udsagn uden at afsløre selve udsagnet",
+ "nft-page": "NFT'er - Ikke-ombyttelige tokens",
"nfts": "NFT'er",
"no": "Nej",
"on-this-page": "På denne side",
@@ -140,6 +248,7 @@
"page-developers-aria-label": "Udviklermenu",
"page-index-meta-title": "Startside",
"page-last-updated": "Side senest opdateret",
+ "participate-menu": "Menu for deltagelse",
"pbs": "Separation af proposer-builder",
"pools": "Samlet staking",
"privacy-policy": "Databeskyttelse",
@@ -150,9 +259,11 @@
"refresh": "Genindlæs venligst siden.",
"return-home": "retur til startside",
"roadmap": "Ethereum køreplan",
+ "research": "Forskning",
+ "research-menu": "Menu for forskning",
"resources": "Oversættelsesressourcer",
- "regenerative-finance": "Regenerativ finansiering (ReFi)",
- "run-a-node": "Kør en node",
+ "regenerative-finance": "ReFi - Regenerativ finansiering",
+ "run-a-node": "Kør en indholdselement",
"rollup-component-website": "Websted",
"rollup-component-developer-docs": "Udviklerdokumenter",
"rollup-component-technology-and-risk-summary": "Teknologi- og risikoopsummering",
@@ -164,6 +275,7 @@
"search-box-blank-state-text": "Søg alt det du vil!",
"search-eth-address": "Dette ligner en Ethereum-adresse. Vi leverer ikke data specifikt til adresser. Prøv at søge efter det på en block-stifinder som",
"search-no-results": "Ingen resultater af din søgning",
+ "security": "Sikkerhed",
"single-slot-finality": "Enkeltpladsfinalitet",
"statelessness": "Tilstandsløshed",
"see-contributors": "Se bidragydere",
@@ -172,15 +284,14 @@
"show-all": "Vis alle",
"show-less": "Vis mindre",
"site-description": "Ethereum er en global, decentraliseret platform for penge og nye former for applikationer. På Ethereum kan du skrive kode, der styrer penge, og bygge applikationer tilgængelige overalt i verden.",
- "site-title": "ethereum.org",
"skip-to-main-content": "Spring til hovedindholdet",
- "smart-contracts": "Smart kontrakter",
+ "smart-contracts": "Intelligente kontrakter",
"stablecoins": "Stablecoins",
"stake-eth": "Stake ETH",
"staking": "Indskyder",
"start-here": "Start her",
- "style-guide": "Style guide",
"solo": "Solo-staking",
+ "support": "Support",
"terms-of-use": "Brugsvilkår",
"translation-banner-body-new": "Du ser denne side på engelsk, fordi vi ikke har oversat den endnu. Hjælp os med at oversætte dette indhold.",
"translation-banner-body-update": "Der er en ny version af siden, men den er kun på engelsk lige nu. Hjælp os med at oversætte den nyeste version.",
@@ -191,17 +302,18 @@
"translation-banner-no-bugs-title": "Ingen fejl her!",
"translation-banner-no-bugs-content": "Denne side oversættes ikke. Siden er bevidst bibeholdt på engelsk for nu.",
"translation-banner-no-bugs-dont-show-again": "Vis ikke igen",
+ "translation-program": "Oversættelsesprogram",
"try-using-search": "Prøv at bruge søgning for at finde det, du leder efter",
"tutorials": "Vejledninger",
"up": "Op",
+ "use": "Brug",
"use-ethereum": "Brug Ethereum",
"use-ethereum-menu": "Brug Ethereum-menu",
- "user-experience": "User experience",
+ "use-menu": "Brugsmenu",
"verkle-trees": "Verkle-træer",
"wallets": "Tegnebøger",
"we-couldnt-find-that-page": "Vi kunne ikke finde den side",
"web3": "Hvad er Web3?",
- "web3-title": "Web3",
"website-last-updated": "Websted senest opdateret",
"what-is-ether": "Hvad er ether (ETH)?",
"what-is-ethereum": "Hvad er Ethereum?",
diff --git a/src/intl/da/page-languages.json b/src/intl/da/page-languages.json
index 5a047ba5c32..ab6e1747299 100644
--- a/src/intl/da/page-languages.json
+++ b/src/intl/da/page-languages.json
@@ -1,12 +1,12 @@
{
- "page-languages-h1": "Sprog Understøttelse",
+ "page-languages-h1": "Sprogunderstøttelse",
"page-languages-interested": "Er du interesseret i at bidrage?",
- "page-languages-learn-more": "Lær mere om vores Oversættelse Program",
+ "page-languages-learn-more": "Lær mere om vores oversættelsesprogram",
"page-languages-meta-desc": "Ressourcer til alle understøttede sprog på ethereum.org og måder at blive involveret som oversætter.",
- "page-languages-meta-title": "ethereum.org Sprog Oversættelser",
- "page-languages-p1": "Ethereum er et globalt projekt, og det er afgørende, at ethereum.org er tilgængeligt for alle, uanset deres nationalitet eller sprog. Vores fællesskab har arbejdet hårdt på at gøre dette syn til virkelighed.",
- "page-languages-translations-available": "ethereum.org er tilgængelig på de følgende sprog",
- "page-languages-resources-paragraph": "Ud over at oversætte ethereum.org indhold, vedligeholder vi også en",
+ "page-languages-meta-title": "ethereum.org oversættelser af sprog",
+ "page-languages-p1": "Ethereum er et globalt projekt, og det er afgørende, at ethereum.org er tilgængelig for alle, uanset deres nationalitet eller sprog. Vores fællesskab har arbejdet hårdt på at gøre denne vision til virkelighed.",
+ "page-languages-translations-available": "ethereum.org er tilgængelig på følgende sprog",
+ "page-languages-resources-paragraph": "Ud over at oversætte indhold på ethereum.org, vedligeholder vi også en",
"page-languages-resources-link": "kurateret liste over Ethereum ressourcer på mange sprog",
"page-languages-want-more-header": "Vil du se ethereum.org på et andet sprog?",
"page-languages-want-more-link": "Oversættelsesprogram",
@@ -17,14 +17,14 @@
"page-languages-translated": "oversat",
"page-languages-words": "ord",
"page-languages-recruit-community": "Hjælp os med at oversætte ethereum.org.",
- "langauge-am": "Amharic",
+ "langauge-am": "Amharisk",
"language-ar": "Arabisk",
"language-az": "Aserbajdsjansk",
- "langauge-be": "Belarusian",
+ "langauge-be": "Hviderussisk",
"language-bg": "Bulgarsk",
"language-bn": "Bengalsk",
- "language-bs": "Bosnian",
- "language-ca": "Catalansk",
+ "language-bs": "Bosnisk",
+ "language-ca": "Katalansk",
"language-cs": "Tjekkisk",
"language-da": "Dansk",
"language-de": "Tysk",
@@ -36,29 +36,29 @@
"language-fr": "Fransk",
"language-gl": "Galicisk",
"language-gu": "Gujarati",
- "language-he": "Hebrew",
+ "language-he": "Hebræisk",
"language-hi": "Hindi",
"language-hr": "Kroatisk",
"language-hu": "Ungarsk",
- "language-hy-am": "Armenian",
+ "language-hy-am": "Armensk",
"language-id": "Indonesisk",
"language-ig": "Igbo",
"language-it": "Italiensk",
"language-ja": "Japansk",
"language-ka": "Georgisk",
- "language-kk": "Kazakh",
+ "language-kk": "Kasakhisk",
"language-km": "Khmer",
- "language-kn": "Kannada",
+ "language-kn": "Kannaresisk",
"language-ko": "Koreansk",
"language-lt": "Litauisk",
"language-ml": "Malayalam",
"language-mr": "Marathi",
"language-ms": "Malaysisk",
"language-nb": "Norsk",
- "language-ne-np": "Nepali",
+ "language-ne-np": "Nepalesisk",
"language-nl": "Hollandsk",
"language-pcm": "Nigeriansk Pidgin",
- "language-fil": "Filipino",
+ "language-fil": "Filippinsk",
"language-pl": "Polsk",
"language-pt": "Portugisisk",
"language-pt-br": "Portugisisk (Brasilien)",
@@ -66,12 +66,12 @@
"language-ru": "Russisk",
"language-se": "Svensk",
"language-sk": "Slovakisk",
- "language-sl": "Slovenensk",
+ "language-sl": "Slovensk",
"language-sr": "Serbisk",
"language-sw": "Swahili",
- "language-ta": "Tamil",
+ "language-ta": "Tamilsk",
"language-th": "Thailandsk",
- "language-tk": "Turkmen",
+ "language-tk": "Turkmensk",
"language-tr": "Tyrkisk",
"language-uk": "Ukrainsk",
"language-ur": "Urdu",
diff --git a/src/intl/de/common.json b/src/intl/de/common.json
index 7795febe962..fabfacf8351 100644
--- a/src/intl/de/common.json
+++ b/src/intl/de/common.json
@@ -15,6 +15,9 @@
"aria-toggle-menu-button": "Menübutton umschalten",
"beacon-chain": "Beacon Chain",
"bridges": "Blockchain-Brücken",
+ "bug-bounty": "Fehler-Kopfgeld (Bug-Bounty)",
+ "build": "Bauen",
+ "build-menu": "Build-Menü",
"clear": "Löschen",
"close": "Schließen",
"community": "Community",
@@ -31,14 +34,15 @@
"copied": "Kopiert",
"copy": "Kopieren",
"danksharding": "Danksharding",
- "dao-page": "Dezentrale autonome Organisationen (DAOs)",
+ "dao-page": "DAOs - Dezentrale autonome Organisationen",
"dark-mode": "Dunkel",
"data-provided-by": "Datenquelle:",
- "decentralized-applications-dapps": "Dezentralisierte Anwendungen (dApps)",
+ "decentralized-applications-dapps": "DApps - Dezentralisierte Anwendungen",
"decentralized-identity": "Dezentralisierte Identität",
"decentralized-social-networks": "Dezentrale soziale Netzwerke",
- "decentralized-science": "Dezentrale Wissenschaft (DeSci)",
- "defi-page": "Dezentrales Finanzwesen (DeFi)",
+ "decentralized-science": "DeSci - Dezentrale Wissenschaft",
+ "description": "Beschreibung für das Navigationselement",
+ "defi-page": "DeFi - Dezentrales Finanzwesen",
"design": "Design",
"design-principles": "Designprinzipien",
"devcon": "Devcon",
@@ -76,7 +80,7 @@
"ethereum-bug-bounty": "Ethereum Bug-Bounty-Programm",
"consensus-when-shipping": "Wann wird es veröffentlicht?",
"ethereum-upgrades": "Ethereum-Upgrades",
- "ethereum-brand-assets": "Ethereum – Marken-Assets",
+ "ethereum-brand-assets": "Ethereum Marken-Assets",
"ethereum-online": "Online-Communitys",
"ethereum-events": "Ethereum-Events",
"ethereum-foundation": "Ethereum Foundation",
@@ -84,11 +88,11 @@
"ethereum-glossary": "Ethereum-Glossar",
"ethereum-governance": "Ethereum – Steuerung",
"ethereum-logo": "Ethereum-Logo",
- "ethereum-roadmap": "Ethereum Roadmap",
+ "ethereum-roadmap": "Ethereum-Roadmap",
"ethereum-protocol": "Ethereum-Protokoll",
"ethereum-security": "Ethereum – Sicherheits- und Betrugsvorbeugung",
"ethereum-support": "Ethereum-Support",
- "ethereum-wallets": "Ethereum Wallets",
+ "ethereum-wallets": "Ethereum-Wallets",
"ethereum-whitepaper": "Ethereum-Whitepaper",
"feedback-widget-prompt": "Ist diese Seite hilfreich?",
"feedback-card-prompt-page": "War diese Seite hilfreich?",
@@ -96,10 +100,10 @@
"feedback-card-prompt-tutorial": "War dieses Tutorial hilfreich?",
"feedback-widget-thank-you-title": "Danke für das Feedback!",
"feedback-widget-thank-you-subtitle": "Helfen Sie uns, diese Seite noch interessanter zu gestalten, indem Sie ein paar Fragen beantworten.",
- "feedback-widget-thank-you-subtitle-ext": "Wenn Sie Hilfe brauchen, können Sie sich auf unserem Discord-Kanal an die Community wenden.",
+ "feedback-widget-thank-you-subtitle-ext": "Wenn Sie Hilfe benötigen, können Sie sich auf unserem Discord an die Community wenden.",
"feedback-widget-thank-you-timing": "2 bis 3 Minuten",
"feedback-widget-thank-you-cta": "Kurze Umfrage öffnen",
- "find-wallet": "Wallet finden",
+ "find-wallet": "Finden Sie eine Wallet",
"future-proofing": "Zukunftssicherung",
"get-eth": "ETH erwerben",
"get-involved": "Mitmachen",
@@ -143,10 +147,115 @@
"mainnet-ethereum": "Mainnet Ethereum",
"merge": "Zusammenführen",
"more": "Mehr",
- "nav-developers": "Entwickler:innen",
+ "nav-about-description": "Ein öffentliches Open-Source-Projekt für die Ethereum-Community",
+ "nav-advanced-description": "Weitere Informationen zu komplexeren Themen",
+ "nav-advanced-label": "Fortgeschritten",
+ "nav-basics-description": "Die Grundlagen von Ethereum verstehen",
+ "nav-basics-label": "Grundlagen",
+ "nav-bridges-description": "Web3 hat sich zu einem Ökosystem aus primären L1-Blockchains und L2-Skalierungslösungen entwickelt",
+ "nav-builders-home-description": "Ein Builder-Handbuch für Ethereum. Von Buildern, für Builder",
+ "nav-builders-home-label": "Startseite für Builder",
+ "nav-contribute-description": "Wenn Sie Hilfe benötigen, erhalten Sie sie hier",
+ "nav-contribute-label": "Mitwirken bei ethereum.org",
+ "nav-dao-description": "Communitys im Besitz ihrer Mitglieder ohne zentrale Führung",
+ "nav-dapps-description": "Entdecken Sie ein umfassendes Ökosystem von Apps mit Ethereum",
+ "nav-defi-description": "Eine globale, offene Alternative zum traditionellen Finanzmarkt",
+ "nav-desci-description": "Eine globale, offene Alternative zum derzeitigen wissenschaftlichen System",
+ "nav-desoc-description": "Blockchain-basierte Plattformen für soziale Interaktionen und Content-Erstellung",
"nav-developers-docs": "Entwicklerdokumentation",
+ "nav-developers": "Entwickler",
+ "nav-did-description": "Erstellen Sie Ihre eigenen einzigartigen dezentralisierten Identifikatoren",
+ "nav-docs-description": "Dokumente helfen Ihnen, Ethereum zu verstehen und Builder zu werden",
+ "nav-docs-design-description": "Beschreibung der einzigartigen Web3-Designherausforderungen, Best Practices und Forschungseinblicke von Benutzern",
+ "nav-docs-design-label": "UX/UI-Designgrundlagen",
+ "nav-docs-foundation-description": "Wichtige Grundlagen für die Entwicklung mit Ethereum",
+ "nav-docs-foundation-label": "Grundsätzliche Themen",
+ "nav-docs-overview-description": "Ihre Startseite für Entwicklerdokumente",
+ "nav-docs-stack-description": "Verstehen Sie den Ethereum-Stack in allen Einzelheiten",
+ "nav-docs-stack-label": "Ethereum-Stack",
+ "nav-eip-description": "Standards, die neue Funktionen oder Prozesse bezeichnen",
+ "nav-eip-label": "EIPs - Ethereum Verbesserungsvorschläge",
+ "nav-emerging-description": "Lernen Sie mehr aktuelle Anwendungsfälle für Ethereum kennen",
+ "nav-emerging-label": "Neue Anwendungsfälle",
+ "nav-enterprise-description": "Geschäftliche Anwendungen für Ethereum",
+ "nav-ethereum-org-description": "Diese Website ist Community-basiert – werden Sie Mitglied und leisten Sie einen Beitrag",
+ "nav-ethereum-wallets-description": "Eine App zur Interaktion mit Ihrem Ethereum-Konto",
+ "nav-events-description": "Dezentralisierung und Teilnahmeoptionen für alle",
+ "nav-events-irl-description": "Jeden Monat gibt es große persönliche und Online-Events von Ethereum",
+ "nav-events-label": "Communitys und Events",
+ "nav-events-online-description": "Hunderttausende von Ethereum-Fans sind in diesen Online-Communitys aktiv",
+ "nav-find-wallet-description": "Wallets ermöglichen die Nutzung von Kryptowährungen",
+ "nav-find-wallet-label": "Wählen Sie Ihr Wallet",
+ "nav-gas-fees-description": "Wie werden ETH-Transaktionsgebühren berechnet?",
+ "nav-gas-fees-label": "Spritgebühren",
+ "nav-get-eth-description": "Sie benötigen Ethers (ETH), um Ethereum-Anwendungen zu nutzen",
+ "nav-get-started-description": "Ihre ersten Schritte zur Verwendung von Ethereum",
+ "nav-governance-description": "Der Prozess zum Upgrade des Ethereum-Protokolls",
+ "nav-governance-label": "Verwaltung",
+ "nav-grants-description": "Eine von unserer Community verwaltete Liste mit Projekten, die Zuschussprograme bieten",
+ "nav-guide-create-account-description": "Jeder kann zu jeder Zeit ein kostenloses Ethereum-Konto mit Wallet-App einrichten",
+ "nav-guide-create-account-label": "So erstellen Sie ein Ethereum-Konto",
+ "nav-guide-revoke-access-description": "Durch die Interaktion mit Smart-Verträgen und -Anwendungen im Ethereum-Ökosystem sind Sie stets sicher",
+ "nav-guide-revoke-access-label": "So widerrufen Sie den Zugriff auf Smart-Verträge",
+ "nav-guide-use-wallet-description": "Lernen Sie die grundlegenden Funktionen einer Krypto-Wallet kennen",
+ "nav-guide-use-wallet-label": "So verwenden Sie eine Wallet",
+ "nav-guides-description": "Praktische schrittweise Anleitungen zu den ersten Schritten",
+ "nav-guides-label": "Anleitungen",
+ "nav-history-description": "Eine Zeitleiste mit allen wichtigen Abspaltungen und Aktualisierungen",
+ "nav-history-label": "Die technische Geschichte von Ethereum",
+ "nav-layer-2-description": "Günstigere und schnellere Transaktionen für Ethereum",
+ "nav-learn-by-coding-description": "Tools, die Ihnen dabei helfen, mit Ethereum zu experimentieren",
+ "nav-local-env-description": "Wählen Sie Ihren Ethereum-Entwichlungsstack und richten Sie ihn ein",
+ "nav-mainnet-description": "Enterprise-Blockchain-Anwendungen können im öffentlichen Ethereum Mainnet erstellt werden",
+ "nav-nft-description": "Ein Weg, alles Einzigartige als eine Ethereum-basierte Anlage darzustellen",
+ "nav-open-research-description": "Eine der Hauptstärken von Ethereum ist seine aktive Forschungs-Community",
+ "nav-open-research-label": "Offene Forschung",
+ "nav-overview-description": "Alles über die Bildung mit Ethereum",
+ "nav-overview-label": "Übersicht",
+ "nav-participate-overview-description": "Überblick über die Teilnahme",
"nav-primary": "Primäre",
- "nft-page": "Non-Fungible Token (NFTs)",
+ "nav-private-description": "Entwicklerressourcen für das private Ethereum für Unternehmen",
+ "nav-quizzes-description": "Finden Sie heraus, wie gut Sie Ethereum und Kryptowährungen verstehen",
+ "nav-quizzes-label": "Teste dein Wissen",
+ "nav-refi-description": "Ein alternatives, auf regenerativen Prinzipien beruhendes Wirtschaftssystem",
+ "nav-research-description": "Prozesse zur Verbesserung von Ethereum",
+ "nav-research-label": "Forschung und Entwicklung",
+ "nav-roadmap-description": "Der Weg zu mehr Skalierbarkeit, Sicherheit und Nachhaltigkeit für Ethereum",
+ "nav-roadmap-future-description": "Festigung von Ethereum als robustes und dezentralisiertes Netzwerk",
+ "nav-roadmap-future-label": "Zukunftssicherung",
+ "nav-roadmap-label": "Fahrplan",
+ "nav-roadmap-scaling-description": "Netzwerkaktualisierungen zur weiteren Reduktion von Transaktionskosten und Geschwindigkeit",
+ "nav-roadmap-scaling-label": "Günstigere Transaktionen",
+ "nav-roadmap-security-description": "Gewährleistung, dass Ethereum vor allen zukünftigen Angriffen geschützt ist",
+ "nav-roadmap-security-label": "Verbesserte Sicherheit",
+ "nav-roadmap-ux-description": "Die Nutzung von Ethereum muss vereinfacht werden",
+ "nav-roadmap-ux-label": "Bessere Nutzererfahrung",
+ "nav-run-a-node-description": "Werden Sie unabhängig und helfen Sie mit, das Netzwerk zu sichern",
+ "nav-security-description": "Lernen Sie Best Practices zur Verwendung von Kryptowährungen kennen",
+ "nav-smart-contracts-description": "Die grundlegenden Bausteine des Ethereum-Ökosystems",
+ "nav-stablecoins-description": "Stablecoins sind Ethereum-Tokens mit einem festen Wert",
+ "nav-stake-description": "Erhalten Sie Belohnungen, wenn Sie Ethereum sichern",
+ "nav-stake-label": "Stake",
+ "nav-staking-home-description": "Eine Übersicht über die verschiedenen Staking-Optionen",
+ "nav-staking-home-label": "Staking-Home",
+ "nav-staking-pool-description": "Staken Sie und verdienen Sie Belohnungen mit jedem beliebigen ETH-Betrag, indem Sie Ihre Kräfte mit anderen bündeln",
+ "nav-staking-pool-label": "Gepooltes Staking",
+ "nav-staking-saas-description": "Drittanbieter als Node-Betreiber kümmern sich um den Betrieb Ihres Validator-Client",
+ "nav-staking-saas-label": "Staking mit einer Dienstleistung",
+ "nav-staking-solo-description": "Benutzen Sie Hardware zu Hause und tragen Sie persönlich zur Sicherheit und Dezentralisierung des Ethereum-Netzwerks bei",
+ "nav-staking-solo-label": "Solo-Staking",
+ "nav-start-building-description": "Hilfreiche Informationen für neue Mitglieder",
+ "nav-translation-program-description": "Eine gemeinsame Bemühung, ethereum.org in alle Sprachen zu übersetzen",
+ "nav-tutorials-description": "Verwaltete Liste mit Community-Tutorials",
+ "nav-use-cases-description": "Entdecken Sie verschiedene Ideen zur Nutzung von Ethereum",
+ "nav-use-cases-label": "Anwendungsfälle",
+ "nav-what-is-ether-description": "Die Währung der Ethereum-Apps",
+ "nav-what-is-ethereum-description": "Verstehen, was Ethereum so besonders macht",
+ "nav-what-is-web3-label": "Was ist Web3?",
+ "nav-what-is-web3-description": "Eine Alternative zu zentralisierten Monopolen, die die Regeln vorgeben",
+ "nav-whitepaper-description": "Das Original-Ethereum-Whitepaper, geschrieben von Vitalik Buterin im Jahr 2014",
+ "nav-zkp-description": "Eine Möglichkeit, die Gültigkeit einer Aussage zu beweisen, ohne die Aussage selbst offenzulegen",
+ "nft-page": "NFTs - Non-Fungible Token",
"nfts": "NFTs",
"no": "Nein",
"on-this-page": "Auf dieser Seite",
@@ -154,6 +263,8 @@
"page-developers-aria-label": "Entwicklermenü",
"page-index-meta-title": "Startseite",
"page-last-updated": "Seite zuletzt aktualisiert",
+ "participate": "Mitmachen",
+ "participate-menu": "Teilnahmemenü",
"pbs": "Proposer-Builder-Trennung",
"pools": "Gepooltes Staking",
"privacy-policy": "Datenschutzrichtlinien",
@@ -164,9 +275,11 @@
"refresh": "Bitte aktualisieren Sie die Seite.",
"return-home": "Zurück zur Startseite",
"roadmap": "Ethereum-Roadmap",
+ "research": "Forschung",
+ "research-menu": "Forschungsmenü",
"resources": "Übersetzungsressourcen",
- "regenerative-finance": "Regenerative Finanzen (ReFi)",
- "run-a-node": "Einen Knoten betreiben",
+ "regenerative-finance": "ReFi - Regenerative Finanzen",
+ "run-a-node": "Einen Node ausführen",
"rollup-component-website": "Website",
"rollup-component-developer-docs": "Entwicklerdokumentation",
"rollup-component-technology-and-risk-summary": "Technologie- und Risikozusammenfassung",
@@ -211,8 +324,10 @@
"try-using-search": "Benutzen Sie die Suchfunktion, um zu finden, wonach Sie suchen",
"tutorials": "Tutorials",
"up": "Nach oben",
+ "use": "Anwenden",
"use-ethereum": "Ethereum verwenden",
"use-ethereum-menu": "Ethereum-Menü verwenden",
+ "use-menu": "Benutzermenü",
"user-experience": "Benutzererfahrung",
"verkle-trees": "Verkle Trees",
"wallets": "Wallets",
diff --git a/src/intl/de/page-wallets-find-wallet.json b/src/intl/de/page-wallets-find-wallet.json
index fabd715cfe2..fe6a7329e89 100644
--- a/src/intl/de/page-wallets-find-wallet.json
+++ b/src/intl/de/page-wallets-find-wallet.json
@@ -7,7 +7,6 @@
"page-find-wallet-meta-title": "Finden Sie eine Ethereum-Wallet",
"page-find-wallet-title": "Finden Sie eine Wallet",
"page-find-wallet-try-removing": "Versuchen Sie ein oder zwei Funktionen zu entfernen",
- "page-find-wallet-choose-to-compare": "Zum Vergleich auswählen",
"page-stake-eth": "Stake ETH",
"page-find-wallet-open-source": "Open Source",
"page-find-wallet-open-source-desc": "Open-Source-Software ermöglicht es jedem, die Integrität und Sicherheit der Anwendung zu überprüfen",
@@ -16,8 +15,6 @@
"page-find-wallet-non-custodial-desc": "Wallets, die nicht Ihre privaten Schlüssel kontrollieren",
"page-find-wallet-hardware-wallet-support": "Unterstützung für Hardware-Wallets",
"page-find-wallet-hardware-wallet-support-desc": "Wallets, die mit einer Hardware-Wallet für bessere Sicherheit verbunden werden können",
- "page-find-wallet-walletconnect": "WalletConnect",
- "page-find-wallet-walletconnect-desc": "Wallets, die WalletConnect unterstützen, um mit Dapps zu interagieren",
"page-find-wallet-rpc-importing": "RPC Importieren",
"page-find-wallet-rpc-importing-desc": "Wallets, die benutzerdefinierte RPC-Endpunkte unterstützen, um sich mit verschiedenen Nodes oder Netzwerken zu verbinden",
"page-find-wallet-nft-support": "NFT-Unterstützung",
@@ -36,8 +33,6 @@
"page-find-wallet-ens-support-desc": "Wallets, die Ethereum Name Service (ENS) unterstützen",
"page-find-wallet-token-importing": "Token importieren",
"page-find-wallet-token-importing-desc": "Jedes ERC-20-Token importieren, das in der Wallet verwendet werden soll",
- "page-find-wallet-fee-optimization": "Gebührenoptimierung",
- "page-find-wallet-fee-optimization-desc": "Unterstützung für Typ-2-Transaktionen für optimierte Gasgebühren und Rückerstattung von nicht verwendetem Gas",
"page-find-wallet-buy-crypto": "Krypto kaufen",
"page-find-wallet-buy-crypto-desc": "Kryptowährungen direkt in der Wallet mit Fiat-Währungen kaufen.\n\nHinweis: Das Kaufen von Kryptowährungen kann je nach Region unterschiedlich sein",
"page-find-wallet-sell-for-fiat": "Für Fiat verkaufen",
@@ -46,7 +41,6 @@
"page-find-wallet-multisig-desc": "Wallets, die mehrere Signaturen zur Genehmigung einer Transaktion erfordern",
"page-find-wallet-social-recovery": "Soziale Wiederherstellung",
"page-find-wallet-social-recovery-desc": "Wallets, die es Bevollmächtigten ermöglichen, den Signierschlüssel für Smart Contract-Wallets zu ändern",
- "page-find-wallet-token-support": "Token Unterstützung",
"page-find-wallet-features": "Eigenschaften",
"page-find-wallet-security": "Sicherheit",
"page-find-wallet-smart-contract": "Smart Contract",
@@ -63,7 +57,6 @@
"page-find-wallet-chromium": "Chromium",
"page-find-wallet-firefox": "Firefox",
"page-find-wallet-hardware": "Hardware",
- "page-find-wallet-hardware-desc": "Hardware-Wallets",
"page-find-wallet-new-to-crypto-title": "Neu bei Krypto",
"page-find-wallet-new-to-crypto-desc": "Sie sind ein erstmaliger Benutzer und suchen nach Ihrer ersten Wallet",
"page-find-wallet-nfts-title": "NFTs",
@@ -74,22 +67,14 @@
"page-find-wallet-finance-desc": "Sie verwenden DeFi verwendet und möchten eine Wallet, die sich mit DeFi-Anwendungen verbinden kann",
"page-find-wallet-developer-title": "Entwickler",
"page-find-wallet-developer-desc": "Sie sind Entwickler und benötigen eine Wallet, um Dapps zu entwickeln und zu testen",
- "page-find-wallet-persona-desc": "Wählen Sie das Profil, das Ihrem Benutzertyp entspricht, und filtern Sie die Wallet-Liste",
"page-find-wallet-filters": "Filter",
"page-find-wallet-active": "aktiv",
- "page-find-wallet-profile-filters": "Profil-Filter",
- "page-find-wallet-feature-filters": "Funktionsfilter",
"page-find-wallet-footnote-1": "Die auf dieser Seite aufgeführten Wallets sind keine offiziellen Empfehlungen und dienen ausschließlich zu Informationszwecken.",
"page-find-wallet-footnote-2": "Die Beschreibungen wurden von den Wallet-Projekten selbst bereitgestellt.",
"page-find-wallet-footnote-3": "Wir fügen dieser Seite Produkte basierend auf den Kriterien unserer Auflistungsrichtlinie hinzu. Wenn Sie möchten, dass wir eine Wallet hinzufügen, erstellen Sie ein Ticket auf GitHub.",
"page-find-wallet-mobile": "Mobil",
- "page-find-wallet-mobile-desc": "Wallets mit mobilen Apps",
"page-find-wallet-desktop": "Desktop",
- "page-find-wallet-desktop-desc": "Wallets mit Desktop-Apps",
"page-find-wallet-browser": "Browser",
- "page-find-wallet-browser-desc": "Wallets mit Browser-Erweiterungen",
"page-find-wallet-device": "Gerät",
- "page-find-choose-to-compare": "Zum Vergleich auswählen",
- "page-find-wallet-choose-features": "Funktionen auswählen",
"page-find-wallet-reset-filters": "Filter zurücksetzen"
}
diff --git a/src/intl/el/common.json b/src/intl/el/common.json
index a4dbd5a9583..6db31724217 100644
--- a/src/intl/el/common.json
+++ b/src/intl/el/common.json
@@ -1,17 +1,31 @@
{
- "account-abstraction": "Αφαιρετικότητα λογαριασμού",
"about-ethereum-org": "Σχετικά με το ethereum.org",
"about-us": "Σχετικά με εμάς",
+ "adding-desci-projects": "Προσθήκη έργων Desci",
+ "adding-developer-tools": "Προσθήκη εργαλείων προγραμματισμού",
+ "adding-exchanges": "Προσθήκη ανταλλακτηρίων",
+ "adding-glossary-terms": "Προσθήκη όρων στο γλωσσάρι",
+ "adding-layer-2s": "Προσθήκη επιπέδου 2s",
+ "adding-products": "Προσθήκη Προϊόντων",
+ "adding-staking-products": "Προσθήκη προϊόντων αποθήκευσης κεφαλαίου",
+ "adding-wallets": "Προσθήκη πορτοφολιών",
+ "account-abstraction": "Αφαιρετικότητα λογαριασμού",
+ "acknowledgements": "Αναγνώριση",
"aria-toggle-search-button": "Εναλλαγή κουμπιού αναζήτησης",
"aria-toggle-menu-button": "Εναλλαγή κουμπιού μενού",
"beacon-chain": "Κύρια αλυσίδα",
- "bridges": "Γέφυρες blockchain",
+ "bridges": "Γέφυρες κρυπτοαλυσίδας",
+ "bug-bounty": "Εύρεση σφάλματος",
+ "build": "Προγραμματισμός",
+ "build-menu": "Μενού προγραμματισμού",
"clear": "Εκκαθάριση",
"close": "Κλείσιμο",
"community": "Κοινότητα",
"community-hub": "Κέντρο κοινότητας",
"community-menu": "Μενού κοινότητας",
"contact": "Επικοινωνία",
+ "content-buckets": "Κατηγορίες περιεχομένου",
+ "content-resources": "Πηγές περιεχομένου",
"content-standardization": "Τυποποίηση περιεχομένου",
"contributing": "Συνεισφορές",
"contributors": "Συνεισφέροντες",
@@ -20,14 +34,17 @@
"copied": "Αντιγράφηκε",
"copy": "Αντιγραφή",
"danksharding": "Danksharding",
- "dao-page": "Αποκεντρωμένοι αυτόνομοι οργανισμοί (DAO)",
+ "dao-page": "DAO - Αποκεντρωμένοι αυτόνομοι οργανισμοί",
"dark-mode": "Σκούρο",
"data-provided-by": "Προέλευση δεδομένων:",
- "decentralized-applications-dapps": "Αποκεντρωμένες εφαρμογές (dapps)",
+ "decentralized-applications-dapps": "Dapps - Αποκεντρωμένες εφαρμογές",
"decentralized-identity": "Αποκεντρωμένη ταυτότητα",
"decentralized-social-networks": "Αποκεντρωμένα κοινωνικά δίκτυα",
- "decentralized-science": "Αποκεντρωμένη επιστήμη (DeSci)",
- "defi-page": "Αποκεντρωμένη τραπεζική (DeFi)",
+ "decentralized-science": "DeSci - Αποκεντρωμένη επιστήμη",
+ "description": "Περιγραφή στοιχείου πλοήγησης",
+ "defi-page": "DeFi - Αποκεντρωμένη τραπεζική",
+ "design": "Σχεδιασμός",
+ "design-principles": "Αρχές σχεδιασμού",
"devcon": "Devcon",
"developers": "Προγραμματιστές",
"developers-home": "Αρχική προγραμματιστών",
@@ -53,8 +70,8 @@
"ecosystem": "Οικοσύστημα",
"edit-page": "Επεξεργασία σελίδας",
"ef-blog": "Ιστολόγιο ιδρύματος Ethereum",
- "eips": "Προτάσεις βελτίωσης Ethereum",
- "energy-consumption": "Κατανάλωση ενέργειας Ethereum",
+ "eips": "Προτάσεις βελτίωσης",
+ "energy-consumption": "Κατανάλωση ενέργειας",
"enterprise": "Επιχείρηση",
"enterprise-menu": "Μενού επιχειρήσεων",
"esp": "Πρόγραμμα υποστήριξης οικοσυστήματος",
@@ -63,42 +80,42 @@
"ethereum-bug-bounty": "Πρόγραμμα αναζήτησης σφαλμάτων",
"consensus-when-shipping": "Πότε καταφτάνει;",
"ethereum-upgrades": "Αναβαθμίσεις Ethereum",
- "ethereum-brand-assets": "Ψηφιακά στοιχεία επωνυμίας Ethereum",
+ "ethereum-brand-assets": "Επώνυμα ψηφιακά στοιχεία Ethereum",
"ethereum-online": "Διαδικτυακές κοινότητες",
"ethereum-events": "Συμβάντα του Ethereum",
"ethereum-foundation": "Ίδρυμα Ethereum",
"ethereum-foundation-logo": "Λογότυπο ιδρύματος Ethereum",
- "ethereum-glossary": "Γλωσσάρι Ethereum",
+ "ethereum-glossary": "Γλωσσάρι",
"ethereum-governance": "Διαχείριση Ethereum",
"ethereum-logo": "Λογότυπο Ethereum",
- "ethereum-roadmap": "Οδικός χάρτης Ethereum",
+ "ethereum-roadmap": "Οδικός χάρτης",
"ethereum-protocol": "Πρωτόκολλο ethereum",
- "ethereum-security": "Ασφάλεια του Ethereum και πρόληψη κατά της απάτης",
+ "ethereum-security": "Ασφάλεια και πρόληψη κατά της απάτης",
"ethereum-support": "Υποστήριξη Ethereum",
"ethereum-wallets": "Πορτοφόλια Ethereum",
- "ethereum-whitepaper": "Καταστατικό Ethereum",
+ "ethereum-whitepaper": "Καταστατικό",
"feedback-widget-prompt": "Είναι χρήσιμη αυτή η σελίδα;",
"feedback-card-prompt-page": "Ήταν χρήσιμη αυτή η σελίδα;",
"feedback-card-prompt-article": "Ήταν χρήσιμο αυτό το άρθρο;",
"feedback-card-prompt-tutorial": "Ήταν χρήσιμος αυτός ο οδηγός;",
"feedback-widget-thank-you-title": "Σας ευχαριστούμε για τα σχόλια σας!",
"feedback-widget-thank-you-subtitle": "Κάντε καλύτερη αυτή τη σελίδα απαντώντας σε μερικές ερωτήσεις.",
- "feedback-widget-thank-you-subtitle-ext": "Αν χρειάζεστε βοήθεια, μπορείτε να επικοινωνήσετε με την κοινότητα στο Discord μας.",
+ "feedback-widget-thank-you-subtitle-ext": "Εάν χρειάζεστε βοήθεια, μπορείτε να απευθυνθείτε στην κοινότητά μας στο Discord.",
"feedback-widget-thank-you-timing": "2–3 λεπτά",
"feedback-widget-thank-you-cta": "Άνοιγμα της σύντομης έρευνας",
- "find-wallet": "Εύρεση πορτοφολιού",
+ "find-wallet": "Επιλογή πορτοφολιού",
"future-proofing": "Αντοχή στο μέλλον",
- "get-eth": "Λάβετε ETH",
+ "get-eth": "Αγορά ETH",
"get-involved": "Συμμετοχή",
"get-started": "Ας αρχίσουμε",
"grants": "Επιχορηγήσεις",
"grant-programs": "Προγράμματα επιχορηγήσεων οικοσυστήματος",
"guides": "Οδηγοί",
- "guides-hub": "Κέντρο βοηθημάτων",
+ "guides-hub": "Αναλυτικές οδηγίες",
"history-of-ethereum": "Ιστορία του Ethereum",
"home": "Αρχική",
"how-ethereum-works": "Πώς λειτουργεί το Ethereum",
- "how-to-register-an-ethereum-account": "Πώς να «εγγράψετε» ένα λογαριασμό Ethereum",
+ "how-to-create-an-ethereum-account": "Πώς να «δημιουργήσετε» λογαριασμό Ethereum",
"how-to-revoke-token-access": "Πώς να ανακαλέσετε την πρόσβαση ενός έξυπνου συμβολαίου στο κεφάλαιο κρυπτονομισμάτων σας",
"how-to-swap-tokens": "Πώς να ανταλλάξετε ψηφιακά στοιχεία",
"how-to-use-a-bridge": "Πώς να μεταφέρετε ψηφιακά στοιχεία μέσω γέφυρας στο επίπεδο 2",
@@ -115,7 +132,7 @@
"last-edit": "Τελευταία επεξεργασία",
"layer-2": "Επίπεδο 2",
"learn": "Εκπαίδευση",
- "learn-by-coding": "Μάθετε με κωδικοποίηση",
+ "learn-by-coding": "Μάθετε προγραμματίζοντας",
"learn-hub": "Κέντρο μάθησης",
"learn-menu": "Μενού εκπαίδευσης",
"learn-more": "Μάθετε περισσότερα",
@@ -128,11 +145,114 @@
"loading-error-try-again-later": "Αδυναμία φόρτωσης δεδομένων. Προσπαθήστε ξανά αργότερα.",
"logo": "λογότυπο",
"mainnet-ethereum": "Κεντρικό δίκτυο του Ethereum",
+ "merge": "Συγχώνευση",
"more": "Περισσότερα",
- "nav-developers": "Προγραμματιστές",
+ "nav-about-description": "Ένα δημόσιο έργο ανοικτού κώδικα για την κοινότητα Ethereum",
+ "nav-advanced-description": "Μάθετε τα πιο σύνθετα θέματα",
+ "nav-advanced-label": "Για προχωρημένους",
+ "nav-basics-description": "Κατανοήστε τις βασικές αρχές του Ethereum",
+ "nav-basics-label": "Τα βασικά",
+ "nav-bridges-description": "Το Web3 έχει εξελιχθεί σε ένα οικοσύστημα πρωτογενών blockchain L1 και λύσεων κλιμάκωσης L2",
+ "nav-builders-home-description": "Εγχειρίδιο προγραμματιστή για το Ethereum – φτιαγμένο από προγραμματιστές για προγραμματιστές",
+ "nav-builders-home-label": "Αρχική σελίδα προγραμματιστή",
+ "nav-contribute-description": "Αν θέλετε να βοηθήσετε, αυτό θα σας καθοδηγήσει",
+ "nav-contribute-label": "Συνεισφέρετε στο ethereum.org",
+ "nav-dao-description": "Κοινότητες που ανήκουν στα μέλη χωρίς κεντρική εξουσία",
+ "nav-dapps-description": "Εξερευνήστε ένα πλούσιο οικοσύστημα εφαρμογών που χρησιμοποιούν το Ethereum",
+ "nav-defi-description": "Μια παγκόσμια, ανοικτή εναλλακτική λύση στην παραδοσιακή χρηματοπιστωτική αγορά",
+ "nav-desci-description": "Μια παγκόσμια, ανοικτή εναλλακτική λύση στο τρέχον επιστημονικό σύστημα",
+ "nav-desoc-description": "Πλατφόρμες βασισμένες στο Blockchain για κοινωνική αλληλεπίδραση και δημιουργία περιεχομένου",
"nav-developers-docs": "Τεκμηρίωση προγραμματιστών",
+ "nav-developers": "Προγραμματιστές",
+ "nav-did-description": "Έκδοση και κατοχή των δικών σας μοναδικών αποκεντρωμένων αναγνωριστικών",
+ "nav-docs-description": "Έγγραφα που θα σας βοηθήσουν να κατανοήσετε και να προγραμματίσετε στο Ethereum",
+ "nav-docs-design-description": "Περιγραφή των μοναδικών προκλήσεων στον σχεδιασμό Web3, βέλτιστες πρακτικές και ιδέες για έρευνα από τους χρήστες",
+ "nav-docs-design-label": "Βασικές αρχές σχεδιασμού UX/UI",
+ "nav-docs-foundation-description": "Οι βασικές αρχές για προγραμματισμό στο Ethereum",
+ "nav-docs-foundation-label": "Βασικά θέματα",
+ "nav-docs-overview-description": "Η αρχική σελίδα σας για τα έγγραφα σχετικά με τον προγραμματισμό",
+ "nav-docs-stack-description": "Κατανοήστε όλες τις λεπτομέρειες του Ethereum stack",
+ "nav-eip-description": "Πρότυπα που προσδιορίζουν νέες δυνατότητες ή διεργασίες",
+ "nav-eip-label": "EIP - Προτάσεις βελτίωσης Ethereum",
+ "nav-emerging-description": "Μάθετε για άλλες νεότερες περιπτώσεις χρήσης του Ethereum",
+ "nav-emerging-label": "Μελλοντικές περιπτώσεις χρήσης",
+ "nav-enterprise-description": "Επιχειρηματικές εφαρμογές για το Ethereum",
+ "nav-ethereum-org-description": "Στο τιμόνι αυτού του ιστοτόπου βρίσκεται η κοινότητα. Γίνετε κι εσείς μέλη της και αρχίστε να συνεισφέρετε",
+ "nav-ethereum-wallets-description": "Εφαρμογή για αλληλεπίδραση με τον λογαριασμό Ethereum σας",
+ "nav-events-description": "Αποκέντρωση και ελευθερία συμμετοχής για όλους",
+ "nav-events-irl-description": "Κάθε μήνα λαμβάνουν χώρα μεγάλες εκδηλώσεις Ethereum τόσο διά ζώσης όσο και διαδικτυακά",
+ "nav-events-label": "Κοινότητες και εκδηλώσεις",
+ "nav-events-online-description": "Σε αυτές τις διαδικτυακές κοινότητες μαζεύονται εκατοντάδες χιλιάδες λάτρεις του Ethereum",
+ "nav-find-wallet-description": "Τα πορτοφόλια σάς επιτρέπουν να χρησιμοποιείτε κρυπτονομίσματα",
+ "nav-find-wallet-label": "Επιλέξτε το πορτοφόλι σας",
+ "nav-gas-fees-description": "Πώς υπολογίζονται τα τέλη συναλλαγών ETH",
+ "nav-gas-fees-label": "Κρατήσεις «gas»",
+ "nav-get-eth-description": "Χρειάζεστε ether (ETH) για να χρησιμοποιήσετε τις εφαρμογές του Ethereum",
+ "nav-get-started-description": "Τα πρώτα σας βήματα στη χρήση του Ethereum",
+ "nav-governance-description": "Η διεργασία που σχετίζεται με την αναβάθμιση του πρωτοκόλλου Ethereum",
+ "nav-governance-label": "Διακυβέρνηση",
+ "nav-grants-description": "Κατάλογος που καταρτίστηκε από την κοινότητά μας και περιλαμβάνει έργα που παρέχουν προγράμματα χρηματοδότησης",
+ "nav-guide-create-account-description": "Οποιοσδήποτε μπορεί να δημιουργήσει έναν λογαριασμό Ethereum ανά πάσα στιγμή, δωρεάν με μια εφαρμογή πορτοφολιού",
+ "nav-guide-create-account-label": "Πώς να «δημιουργήσετε» λογαριασμό Ethereum",
+ "nav-guide-revoke-access-description": "Μείνετε ασφαλείς όταν αλληλεπιδράτε με έξυπνα συμβόλαια και εφαρμογές στο οικοσύστημα Ethereum",
+ "nav-guide-revoke-access-label": "Πώς ανακαλείται η πρόσβαση σε έξυπνο συμβόλαιο",
+ "nav-guide-use-wallet-description": "Μάθετε πώς να χρησιμοποιείτε όλες τις βασικές λειτουργίες ενός πορτοφολιού",
+ "nav-guide-use-wallet-label": "Πώς να χρησιμοποιήσετε ένα πορτοφόλι",
+ "nav-guides-description": "Πρακτικοί οδηγοί βήμα προς βήμα για να σας βοηθήσουν να ξεκινήσετε",
+ "nav-guides-label": "Οδηγοί",
+ "nav-history-description": "Χρονοδιάγραμμα όλων των διακλαδώσεων (fork) και ενημερώσεων μείζονος σημασίας",
+ "nav-history-label": "Τεχνική ιστορία του Ethereum",
+ "nav-layer-2-description": "Φθηνότερες και ταχύτερες συναλλαγές για το Ethereum",
+ "nav-learn-by-coding-description": "Εργαλεία που σας βοηθούν να πειραματίζεστε με το Ethereum",
+ "nav-local-env-description": "Επιλέξτε και διαμορφώστε τη δική σας δομή δεδομένων προγραμματισμού του Ethereum",
+ "nav-mainnet-description": "Οι επιχειρηματικές εφαρμογές blockchain μπορούν να βασιστούν στο δημόσιο Κεντρικό Δίκτυο του Ethereum",
+ "nav-nft-description": "Ένας τρόπος για να αντιπροσωπεύσετε οτιδήποτε μοναδικό ως περιουσιακό στοιχείο με βάση το Ethereum",
+ "nav-open-research-description": "Ένα από τα κύρια προτερήματα του Ethereum είναι η δραστήρια ερευνητική του κοινότητα",
+ "nav-open-research-label": "Ανοιχτή έρευνα",
+ "nav-overview-description": "Τα πάντα για το εκπαιδευτικό περιεχόμενο του Ethereum",
+ "nav-overview-label": "Επισκόπηση",
+ "nav-participate-overview-description": "Επισκόπηση του τρόπου συμμετοχής",
"nav-primary": "Κύριο",
- "nft-page": "Μη Εναλλάξιμα Κρυπτοπαραστατικά (NFT)",
+ "nav-quizzes-description": "Μάθετε πόσο καλά κατανοείτε το Ethereum και τα κρυπτονομίσματα",
+ "nav-quizzes-label": "Δοκιμάστε τις γνώσεις σας",
+ "nav-refi-description": "Ένα εναλλακτικό οικονομικό σύστημα που βασίζεται σε αναγεννητικές αρχές",
+ "nav-research-description": "Διεργασίες που χρησιμοποιούνται για τη βελτίωση του Ethereum",
+ "nav-research-label": "Έρευνα και ανάπτυξη",
+ "nav-roadmap-description": "Η πορεία για μεγαλύτερη επεκτασιμότητα, ασφάλεια και βιωσιμότητα για το Ethereum",
+ "nav-roadmap-future-description": "Το Ethereum εδραιώνεται ως εύρωστο και αποκεντρωμένο δίκτυο",
+ "nav-roadmap-future-label": "Αντοχή στο μέλλον",
+ "nav-roadmap-label": "Οδικός χάρτης",
+ "nav-roadmap-scaling-description": "Ενημερώσεις του δικτύου για περαιτέρω μείωση του κόστους και αύξηση της ταχύτητας των συναλλαγών",
+ "nav-roadmap-scaling-label": "Φθηνότερες συναλλαγές",
+ "nav-roadmap-security-description": "Διασφαλίζοντας ότι το Ethereum διατηρεί την ανθεκτικότητά του έναντι παντός είδους μελλοντικών επιθέσεων",
+ "nav-roadmap-security-label": "Αυξημένη ασφάλεια",
+ "nav-roadmap-ux-description": "Η χρήση του Ethereum πρέπει να απλοποιηθεί",
+ "nav-run-a-node-description": "Γίνετε πλήρως ανεξάρτητοι συμβάλλοντας παράλληλα στην ασφάλεια του δικτύου",
+ "nav-security-description": "Μάθετε τις βέλτιστες πρακτικές για τη χρήση κρυπτονομισμάτων",
+ "nav-smart-contracts-description": "Οι κύριοι θεμέλιοι λίθοι του οικοσυστήματος του Ethereum",
+ "nav-stablecoins-description": "Τα κρυπτονομίσματα σταθερής αξίας (stablecoin) είναι αναγνωριστικά του Ethereum που έχουν σχεδιαστεί να διατηρούν μια σταθερή αξία",
+ "nav-stake-description": "Λάβετε ανταμοιβές ενώ βοηθάτε στην ασφάλεια του Ethereum",
+ "nav-stake-label": "Συμμετοχή",
+ "nav-staking-home-description": "Επισκόπηση των διαφόρων επιλογών αποθήκευσης",
+ "nav-staking-home-label": "Αρχική σελίδα αποθήκευσης",
+ "nav-staking-pool-description": "Αποθηκεύστε και κερδίστε ανταμοιβές συμμετέχοντας με οποιοδήποτε ποσό ETH ενώνοντας τις δυνάμεις σας με άλλους",
+ "nav-staking-pool-label": "Αποθήκευση κεφαλαίου σε δεξαμενή",
+ "nav-staking-saas-description": "Οι διαχειριστές των κόμβων που συμμετέχετε ελέγχουν τη λειτουργία του λογισμικού σας επαλήθευσης",
+ "nav-staking-saas-label": "Αποθήκευση κεφαλαίου με υπηρεσία",
+ "nav-staking-solo-description": "Εκτελέστε την οικιακή σας συσκευή και επιληφθείτε προσωπικά για την ασφάλεια και την αποκέντρωση του δικτύου Ethereum",
+ "nav-staking-solo-label": "Ατομική αποθήκευση κεφαλαίου",
+ "nav-start-building-description": "Χρήσιμες πληροφορίες για νεοαφιχθέντες",
+ "nav-translation-program-description": "Συλλογική προσπάθεια μετάφρασης του ethereum.org σε όλες τις γλώσσες",
+ "nav-tutorials-description": "Επιμελημένος κατάλογος της κοινότητας με οδηγούς εκμάθησης",
+ "nav-use-cases-description": "Ανακαλύψτε διαφορετικές ιδέες για τη χρήση του Ethereum",
+ "nav-use-cases-label": "Περιπτώσεις χρήσης",
+ "nav-what-is-ether-description": "Το νόμισμα των εφαρμογών του Ethereum",
+ "nav-what-is-ethereum-description": "Κατανοήστε τι κάνει το Ethereum να ξεχωρίζει",
+ "nav-what-is-web3-label": "Τι είναι το Web3;",
+ "nav-what-is-web3-description": "Μια εναλλακτική λύση στα συγκεντρωτικά μονοπώλια που υπαγορεύουν τους κανόνες",
+ "nav-whitepaper-description": "Το αρχικό λευκό βιβλίο για το Ethereum που γράφτηκε από τον Vitalik Buterin το 2014",
+ "nav-zkp-description": "Ένας τρόπος να αποδειχθεί η εγκυρότητα της δήλωσης χωρίς να αποκαλυφθεί η ίδια η δήλωση",
+ "nft-page": "NFT - Μη Εναλλάξιμα Κρυπτοπαραστατικά",
"nfts": "NFT",
"no": "Όχι",
"on-this-page": "Σε αυτήν τη σελίδα",
@@ -140,6 +260,8 @@
"page-developers-aria-label": "Μενού προγραμματιστών",
"page-index-meta-title": "Αρχική",
"page-last-updated": "Τελευταία ενημέρωση της σελίδας",
+ "participate": "Συμμετοχή",
+ "participate-menu": "Μενού συμμετοχής",
"pbs": "Διαχωρισμός προτείνοντος - κατασκευαστή",
"pools": "Αποθήκευση κεφαλαίου σε δεξαμενή",
"privacy-policy": "Πολιτική απορρήτου",
@@ -149,9 +271,11 @@
"quizzes": "Διαγωνισμοί γνώσεων",
"refresh": "Παρακαλούμε ανανεώστε τη σελίδα.",
"return-home": "επιστροφή στην αρχική",
- "roadmap": "Οδικός χάρτης Ethereum",
+ "roadmap": "Οδικός χάρτης",
+ "research": "Έρευνα",
+ "research-menu": "Μενού έρευνας",
"resources": "Πηγές μετάφρασης",
- "regenerative-finance": "Regenerative finance (ReFi)",
+ "regenerative-finance": "ReFi - Regenerative finance",
"run-a-node": "Εκτελέστε ένα κόμβο",
"rollup-component-website": "Ιστότοπος",
"rollup-component-developer-docs": "Τεκμηρίωση προγραμματιστή",
@@ -164,6 +288,7 @@
"search-box-blank-state-text": "Αναζητήστε ελεύθερα!",
"search-eth-address": "Μοιάζει με διεύθυνση Ethereum. Δεν παρέχουμε δεδομένα ειδικά για διευθύνσεις. Δοκιμάστε να την αναζητήσετε σε έναν εξερευνητή μπλοκ όπως",
"search-no-results": "Δεν υπάρχουν αποτελέσματα για την αναζήτησή σας",
+ "security": "Ασφάλεια",
"single-slot-finality": "Οριστικοποίηση απλής θέσης",
"statelessness": "Statelessness",
"see-contributors": "Δείτε τους συνεισφέροντες",
@@ -181,6 +306,7 @@
"start-here": "Ξεκινήστε από εδώ",
"style-guide": "Οδηγός στυλ",
"solo": "Ατομική αποθήκευση κεφαλαίου",
+ "support": "Υποστήριξη",
"terms-of-use": "Όροι Χρήσης",
"translation-banner-body-new": "Βλέπετε αυτήν τη σελίδα στα αγγλικά επειδή δεν την έχουμε μεταφράσει ακόμα. Βοηθήστε μας να μεταφράσουμε αυτό το περιεχόμενο.",
"translation-banner-body-update": "Υπάρχει μια νέα έκδοση αυτής της σελίδας, αλλά αυτήν τη στιγμή είναι μόνο στα αγγλικά. Βοηθήστε μας να μεταφράσουμε την πιο πρόσφατη έκδοση.",
@@ -191,11 +317,14 @@
"translation-banner-no-bugs-title": "Δεν υπάρχουν σφάλματα εδώ!",
"translation-banner-no-bugs-content": "Αυτή η σελίδα δε μεταφράζεται. Την έχουμε αφήσει σκοπίμως στα Αγγλικά προς το παρόν.",
"translation-banner-no-bugs-dont-show-again": "Να μην εμφανιστεί ξανά",
+ "translation-program": "Πρόγραμμα μετάφρασης",
"try-using-search": "Χρησιμοποιήστε την αναζήτηση για να βρείτε αυτό που ψάχνετε ή",
"tutorials": "Σεμινάρια",
"up": "Πάνω",
+ "use": "Χρήση",
"use-ethereum": "Χρήση του Ethereum",
"use-ethereum-menu": "Χρήση του μενού Ethereum",
+ "use-menu": "Μενού χρήσης",
"user-experience": "Εμπειρία χρήστη",
"verkle-trees": "Verkle trees",
"wallets": "Πορτοφόλια",
diff --git a/src/intl/el/page-wallets-find-wallet.json b/src/intl/el/page-wallets-find-wallet.json
index 33e4f82ea6e..ad7ab3fb842 100644
--- a/src/intl/el/page-wallets-find-wallet.json
+++ b/src/intl/el/page-wallets-find-wallet.json
@@ -7,7 +7,6 @@
"page-find-wallet-meta-title": "Βρείτε ένα πορτοφόλι Ethereum",
"page-find-wallet-title": "Επιλογή πορτοφολιού",
"page-find-wallet-try-removing": "Δοκιμάστε να αφαιρέσετε ένα ή δύο χαρακτηριστικά",
- "page-find-wallet-choose-to-compare": "Επιλέξτε για σύγκριση",
"page-stake-eth": "Αποθήκευση ΕΤΗ",
"page-find-wallet-open-source": "Ανοιχτού κώδικα",
"page-find-wallet-open-source-desc": "Το λογισμικό ανοιχτού κώδικα επιτρέπει σε οποιονδήποτε να ελέγχει την ακεραιότητα και την ασφάλεια της εφαρμογής",
@@ -16,8 +15,6 @@
"page-find-wallet-non-custodial-desc": "Πορτοφόλια που δεν ελέγχουν τα ιδιωτικά σας κλειδιά",
"page-find-wallet-hardware-wallet-support": "Υποστήριξη υλικού πορτοφολιού",
"page-find-wallet-hardware-wallet-support-desc": "Πορτοφόλια που μπορούν να συνδεθούν με συσκευές πορτοφόλι για μεγαλύτερη ασφάλεια",
- "page-find-wallet-walletconnect": "WalletConnect",
- "page-find-wallet-walletconnect-desc": "Πορτοφόλια που υποστηρίζουν το WalletConnect για σύνδεση σε dapps",
"page-find-wallet-rpc-importing": "Εισαγωγή RPC",
"page-find-wallet-rpc-importing-desc": "Τα πορτοφόλια που υποστηρίζουν προσαρμοσμένα τελικά σημεία RPC για σύνδεση σε διαφορετικούς κόμβους ή δίκτυα",
"page-find-wallet-nft-support": "Υποστήριξη NFT",
@@ -36,8 +33,6 @@
"page-find-wallet-ens-support-desc": "Πορτοφόλια που υποστηρίζουν την Υπηρεσία Ονοματοδοσίας Ethereum (ENS)",
"page-find-wallet-token-importing": "Εισαγωγή ψηφιακού στοιχείου",
"page-find-wallet-token-importing-desc": "Εισαγωγή οποιουδήποτε ψηφιακού στοιχείου ERC-20 για χρήση στο πορτοφόλι",
- "page-find-wallet-fee-optimization": "Βελτιστοποίηση κρατήσεων",
- "page-find-wallet-fee-optimization-desc": "Υποστήριξη συναλλαγών τύπου 2 για βελτιστοποιημένα τέλη κρατήσεων και επιστροφή του τέλους για αχρησιμοποίητους πόρους",
"page-find-wallet-buy-crypto": "Αγορά κρυπτονομίσματος",
"page-find-wallet-buy-crypto-desc": "Αγοράστε κρυπτονομίσματα με fiat απευθείας στο πορτοφόλι \n *Σημείωση: η αγορά κρυπτονομισμάτων μπορεί να διαφέρει ανά περιοχή",
"page-find-wallet-sell-for-fiat": "Πουλήστε για fiat",
@@ -46,7 +41,6 @@
"page-find-wallet-multisig-desc": "Πορτοφόλια που απαιτούν πολλαπλές υπογραφές για να επιτρέψουν μια συναλλαγή",
"page-find-wallet-social-recovery": "Κοινωνική ανάκαμψη",
"page-find-wallet-social-recovery-desc": "Πορτοφόλια που επιτρέπουν στους κηδεμόνες να αλλάξουν το κλειδί υπογραφής για πορτοφόλια έξυπνων συμβολαίων",
- "page-find-wallet-token-support": "Υποστήριξη ψηφιακού στοιχείου",
"page-find-wallet-features": "Λειτουργίες",
"page-find-wallet-security": "Ασφάλεια",
"page-find-wallet-smart-contract": "Έξυπνο συμβόλαιο",
@@ -63,7 +57,6 @@
"page-find-wallet-chromium": "Chromium",
"page-find-wallet-firefox": "Firefox",
"page-find-wallet-hardware": "Εξοπλισμός",
- "page-find-wallet-hardware-desc": "Συσκευές πορτοφολιού",
"page-find-wallet-new-to-crypto-title": "Καινούργιος στα κρύπτο",
"page-find-wallet-new-to-crypto-desc": "Είστε ένας νέος χρήστης που αναζητά το πρώτο του πορτοφόλι",
"page-find-wallet-nfts-title": "NFTs",
@@ -74,21 +67,13 @@
"page-find-wallet-finance-desc": "Χρησιμοποιείτε DeFi και θέλετε ένα πορτοφόλι που να σας επιτρέπει να συνδεθείτε με εφαρμογές DeFi",
"page-find-wallet-developer-title": "Προγραμματιστής",
"page-find-wallet-developer-desc": "Είστε προγραμματιστής και χρειάζεστε ένα πορτοφόλι για να βοηθήσετε στην ανάπτυξη και δοκιμή dapp",
- "page-find-wallet-persona-desc": "Επιλέξτε το προφίλ που ταιριάζει με τον τύπο χρήστη σας και φιλτράρετε τη λίστα πορτοφολιών",
"page-find-wallet-filters": "Φίλτρα",
"page-find-wallet-active": "ενεργά",
- "page-find-wallet-profile-filters": "Φίλτρα προφίλ",
- "page-find-wallet-feature-filters": "Φίλτρα χαρακτηριστικών",
"page-find-wallet-footnote-1": "Τα πορτοφόλια που παρατίθενται σε αυτή τη σελίδα δεν έχουν επίσημη έγκριση και παρέχονται μόνο για ενημερωτικούς σκοπούς.",
"page-find-wallet-footnote-2": "Οι περιγραφές τους έχουν παρασχεθεί από τις πληροφορίες πορτοφολιού.",
"page-find-wallet-footnote-3": "Προσθέτουμε προϊόντα σε αυτή τη σελίδα με βάση κριτήρια στην πολιτική καταχώρησης. Αν θέλετε να προσθέσουμε ένα πορτοφόλι, δημιουργήστε ένα ζήτημα στο GitHub.",
"page-find-wallet-mobile": "Κινητής συσκευής",
- "page-find-wallet-mobile-desc": "Πορτοφόλια με εφαρμογή για κινητά",
"page-find-wallet-desktop": "Σταθερού υπολογιστή",
- "page-find-wallet-desktop-desc": "Πορτοφόλια με εφαρμογή για υπολογιστή",
"page-find-wallet-browser": "Φυλλομετρητής",
- "page-find-wallet-browser-desc": "Πορτοφόλια με επεκτάσεις για φυλλομετρητή",
- "page-find-wallet-device": "Συσκευή",
- "page-find-choose-to-compare": "Επιλέξτε για σύγκριση",
- "page-find-wallet-choose-features": "Επιλογή δυνατοτήτων"
+ "page-find-wallet-device": "Συσκευή"
}
diff --git a/src/intl/en/common.json b/src/intl/en/common.json
index b3cec51c9e4..8aea388d59c 100644
--- a/src/intl/en/common.json
+++ b/src/intl/en/common.json
@@ -16,6 +16,8 @@
"beacon-chain": "Beacon Chain",
"bridges": "Blockchain bridges",
"bug-bounty": "Bug bounty",
+ "build": "Build",
+ "build-menu": "Build menu",
"clear": "Clear",
"close": "Close",
"community": "Community",
@@ -32,14 +34,15 @@
"copied": "Copied",
"copy": "Copy",
"danksharding": "Danksharding",
- "dao-page": "Decentralized autonomous organisations (DAOs)",
+ "dao-page": "DAOs - Decentralized autonomous organizations",
"dark-mode": "Dark",
"data-provided-by": "Data source:",
- "decentralized-applications-dapps": "Decentralized applications (dapps)",
+ "decentralized-applications-dapps": "Dapps - Decentralized applications",
"decentralized-identity": "Decentralized identity",
"decentralized-social-networks": "Decentralized social networks",
- "decentralized-science": "Decentralized science (DeSci)",
- "defi-page": "Decentralized finance (DeFi)",
+ "decentralized-science": "DeSci - Decentralized science",
+ "description": "Description for nav item",
+ "defi-page": "DeFi - Decentralized finance",
"design": "Design",
"design-principles": "Design Principles",
"devcon": "Devcon",
@@ -71,6 +74,8 @@
"energy-consumption": "Ethereum energy consumption",
"enterprise": "Enterprise",
"enterprise-menu": "Enterprise Menu",
+ "enterprise-mainnet": "Enterprise - Mainnet Ethereum",
+ "enterprise-private": "Enterprise - Private Ethereum",
"esp": "Ecosystem Support Program",
"eth-current-price": "Current ETH price (USD)",
"ethereum-basics": "Ethereum basics",
@@ -145,10 +150,118 @@
"mainnet-ethereum": "Mainnet Ethereum",
"merge": "Merge",
"more": "More",
- "nav-developers": "Developers",
+ "nav-about-description": "A public, open-source project for the Ethereum community",
+ "nav-advanced-description": "Learn the more complex topics",
+ "nav-advanced-label": "Advanced",
+ "nav-basics-description": "Understand the fundamentals of Ethereum",
+ "nav-basics-label": "Basics",
+ "nav-bridges-description": "Web3 has evolved into an ecosystem of primary L1 blockchains and L2 scaling solutions",
+ "nav-builders-home-description": "A builder's manual for Ethereum—by builders, for builders",
+ "nav-builders-home-label": "Builder's home",
+ "nav-code-of-conduct": "Code of conduct",
+ "nav-contribute-description": "If you want to help, this will guide you",
+ "nav-contribute-label": "Contributing to ethereum.org",
+ "nav-dao-description": "Member-owned communities without centralized authority",
+ "nav-dapps-description": "Explore a rich ecosystem of apps using Ethereum",
+ "nav-defi-description": "A global, open alternative to the traditional financial market",
+ "nav-desci-description": "A global, open alternative to the current scientific system",
+ "nav-desoc-description": "Blockchain-based platforms for social interaction and content creation",
"nav-developers-docs": "Developers docs",
+ "nav-developers": "Developers",
+ "nav-did-description": "Issue and own your unique decentralized identifiers",
+ "nav-docs-description": "Docs to help you understand and build with Ethereum",
+ "nav-docs-design-description": "Description of unique web3 design challenges, best practices and user research insights",
+ "nav-docs-design-label": "UX/UI design fundamentals",
+ "nav-docs-foundation-description": "Core fundamentals to develop on Ethereum",
+ "nav-docs-foundation-label": "Foundational topics",
+ "nav-docs-overview-description": "Your home for developer docs",
+ "nav-docs-stack-description": "Understand all the details of the Ethereum stack",
+ "nav-docs-stack-label": "Ethereum stack",
+ "nav-eip-description": "Standards that specify new features or processes",
+ "nav-eip-label": "EIPs - Ethereum improvement proposals",
+ "nav-emerging-description": "Get to know other newer use cases for Ethereum",
+ "nav-emerging-label": "Emerging use cases",
+ "nav-enterprise-description": "Business applications for Ethereum",
+ "nav-ethereum-org-description": "This website is community driven—join us and contribute too",
+ "nav-ethereum-wallets-description": "An app to interact with your Ethereum account",
+ "nav-events-description": "Decentralization and freedom to participate for anyone",
+ "nav-events-irl-description": "Every month there are major Ethereum events in-person and online",
+ "nav-events-label": "Communities and events",
+ "nav-events-online-description": "Hundreds of thousands of Ethereum enthusiasts gather in these online communities",
+ "nav-find-wallet-description": "Wallets allow you to use crypto",
+ "nav-find-wallet-label": "Choose your wallet",
+ "nav-gas-fees-description": "How are ETH transaction fees calculated",
+ "nav-gas-fees-label": "Gas fees",
+ "nav-get-eth-description": "You need ether (ETH) to use Ethereum applications",
+ "nav-get-started-description": "Your first steps to use Ethereum",
+ "nav-governance-description": "The process involved in upgrading the Ethereum protocol",
+ "nav-governance-label": "Governance",
+ "nav-grants-description": "A curated list by our community on projects that provide grant funding programs",
+ "nav-guide-overview-description": "List of all guides in one place",
+ "nav-guide-create-account-description": "Anyone can create an Ethereum account at any time, for free with a wallet app",
+ "nav-guide-create-account-label": "How to create an Ethereum account",
+ "nav-guide-revoke-access-description": "Stay safe when interacting with smart contracts and applications in the Ethereum ecosystem",
+ "nav-guide-revoke-access-label": "How to revoke smart contract access",
+ "nav-guide-use-wallet-description": "Learn how to operate all the basic functions of a wallet",
+ "nav-guide-use-wallet-label": "How to use a wallet",
+ "nav-guides-description": "Practical step-by-step guides to help you get started",
+ "nav-guides-label": "How to guides",
+ "nav-history-description": "A timeline of all the major forks and updates",
+ "nav-history-label": "Technical history of Ethereum",
+ "nav-layer-2-description": "Cheaper and faster transactions for Ethereum",
+ "nav-learn-by-coding-description": "Tools that help you experiment with Ethereum",
+ "nav-local-env-description": "Choose and set up your Ethereum development stack",
+ "nav-mainnet-description": "Enterprise blockchain applications can be built on the public Ethereum Mainnet",
+ "nav-nft-description": "A way to represent anything unique as an Ethereum-based asset",
+ "nav-open-research-description": "One of the primary strengths of Ethereum is its active research community",
+ "nav-open-research-label": "Open research",
+ "nav-overview-description": "All things Ethereum education",
+ "nav-overview-label": "Overview",
+ "nav-participate-overview-description": "Overview on how to participate",
"nav-primary": "Primary",
- "nft-page": "Non-fungible tokens (NFTs)",
+ "nav-private-description": "Developer resources for private enterprise Ethereum",
+ "nav-quizzes-description": "Find out how well you understand Ethereum and cryptocurrencies",
+ "nav-quizzes-label": "Test your knowledge",
+ "nav-refi-description": "An alternative economic system built on regenerative principles",
+ "nav-research-description": "Processes used to improve Ethereum",
+ "nav-research-label": "Research and development",
+ "nav-roadmap-overview-description": "The future of Ethereum",
+ "nav-roadmap-description": "The path to more scalability, security and sustainability for Ethereum",
+ "nav-roadmap-future-description": "Solidifying Ethereum as a robust and decentralized network",
+ "nav-roadmap-future-label": "Future-proofing",
+ "nav-roadmap-label": "Roadmap",
+ "nav-roadmap-scaling-description": "Network updates to further reduce transaction costs and speed",
+ "nav-roadmap-scaling-label": "Cheaper transactions",
+ "nav-roadmap-security-description": "Making sure Ethereum stays resilient to all kinds of attacks into the future",
+ "nav-roadmap-security-label": "Improved security",
+ "nav-roadmap-ux-description": "Using Ethereum needs to be simplified",
+ "nav-roadmap-ux-label": "Better user experience",
+ "nav-run-a-node-description": "Become fully sovereign while helping secure the network",
+ "nav-security-description": "Learn best practices when using cryptocurrency",
+ "nav-smart-contracts-description": "The fundamental buliding blocks of the Ethereum ecosystem",
+ "nav-stablecoins-description": "Stablecoins are Ethereum tokens designed to stay at a fixed value",
+ "nav-stake-description": "Earn rewards for securing Ethereum",
+ "nav-stake-label": "Stake",
+ "nav-staking-home-description": "An overview of different options for staking",
+ "nav-staking-home-label": "Staking home",
+ "nav-staking-pool-description": "Stake and earn rewards with any amount of ETH by joining with others",
+ "nav-staking-pool-label": "Pooled staking",
+ "nav-staking-saas-description": "Third-party node operators handle the operation of your validator client",
+ "nav-staking-saas-label": "Staking with a service",
+ "nav-staking-solo-description": "Run home hardware and personally add to the security and decentralization of the Ethereum network",
+ "nav-staking-solo-label": "Solo staking",
+ "nav-start-building-description": "Useful information for newcomers",
+ "nav-translation-program-description": "A collaborative effort to translate ethereum.org to all languages",
+ "nav-tutorials-description": "Curated list of community tutorials",
+ "nav-use-cases-description": "Discover different ideas for Ethereum usage",
+ "nav-use-cases-label": "Use cases",
+ "nav-what-is-ether-description": "The currency of Ethereum apps",
+ "nav-what-is-ethereum-description": "Understand what makes Ethereum special",
+ "nav-what-is-web3-label": "What is Web3?",
+ "nav-what-is-web3-description": "An alternative to centralized monopolies dictating the rules",
+ "nav-whitepaper-description": "The original Ethereum whitepaper written by Vitalik Buterin in 2014",
+ "nav-zkp-description": "A way to prove the validity of a statement without reveling the statement itself",
+ "nft-page": "NFTs - Non-fungible tokens",
"nfts": "NFTs",
"no": "No",
"on-this-page": "On this page",
@@ -156,6 +269,8 @@
"page-developers-aria-label": "Developers' Menu",
"page-index-meta-title": "Home",
"page-last-updated": "Page last updated",
+ "participate": "Participate",
+ "participate-menu": "Participate menu",
"pbs": "Proposer-builder separation",
"pools": "Pooled staking",
"privacy-policy": "Privacy policy",
@@ -166,8 +281,10 @@
"refresh": "Please refresh the page.",
"return-home": "return home",
"roadmap": "Ethereum roadmap",
+ "research": "Research",
+ "research-menu": "Research menu",
"resources": "Translation resources",
- "regenerative-finance": "Regenerative finance (ReFi)",
+ "regenerative-finance": "ReFi - Regenerative finance",
"run-a-node": "Run a node",
"rollup-component-website": "Website",
"rollup-component-developer-docs": "Developer docs",
@@ -213,8 +330,10 @@
"try-using-search": "Try using search to find what you're looking for or",
"tutorials": "Tutorials",
"up": "Up",
+ "use": "Use",
"use-ethereum": "Use Ethereum",
"use-ethereum-menu": "Use Ethereum menu",
+ "use-menu": "Use menu",
"user-experience": "User experience",
"verkle-trees": "Verkle trees",
"wallets": "Wallets",
diff --git a/src/intl/en/glossary-tooltip.json b/src/intl/en/glossary-tooltip.json
new file mode 100644
index 00000000000..a1828478c82
--- /dev/null
+++ b/src/intl/en/glossary-tooltip.json
@@ -0,0 +1,162 @@
+{
+ "51%-attack-term": "51% attack",
+ "51%-attack-definition": "A type of attack where a group gains control of the majority of nodes. This would allow them to defraud the blockchain by reversing transactions and double spending ether and other tokens.",
+ "abi-term": "Application Binary Interface (ABI)",
+ "abi-definition": "The standard way to interact with contracts in the Ethereum ecosystem, both from outside the blockchain and for contract-to-contract interactions. More on ABI.",
+ "account-term": "Account",
+ "account-definition": "An Ethereum account is a digital identity on the Ethereum blockchain, allowing users to send, receive Ether or other digital assets, and interact with smart contracts.",
+ "address-term": "Address",
+ "address-definition": "An Ethereum address is a unique identifier used for receiving tokens, functions similar to a bank account number for cryptocurrencies. Its used to identify your Ethereum account.",
+ "anti-sybil-term": "Anti-Sybil",
+ "anti-sybil-definition": "Are ways to stop people from pretending to be many users at once on the internet, ensuring each user is a real, separate person. This helps keep online interactions fair and honest.",
+ "apr-term": "APR",
+ "apr-definition": "APR, or Annual Percentage Rate, reflects the yearly cost of borrowing money, including interest and fees, as a percentage.",
+ "attestation-term": "Attestation",
+ "attestation-definition": "A claim made by an entity that something is true. In context of Ethereum, consensus validators must make a claim as to what they believe the state of the chain to be. At designated times, each validator is responsible for publishing different attestations that formally declare this validator's view of the chain, including the last finalized checkpoint and the current head of the chain. More on attestations.",
+ "block-term": "Block",
+ "block-definition": "A block is where transactions or digital actions are stored. Once a block is full, it gets linked to the previous one, creating a chain of blocks or a \"blockchain\". More on blocks.",
+ "blockchain-term": "Blockchain",
+ "blockchain-definition": "A blockchain is a database of transactions, duplicated and shared on all computers in the network, ensuring data cannot be altered retroactively.",
+ "bridge-term": "Bridge",
+ "bridge-definition": "A blockchain bridge is used to transfer assets from one blockchain network to another.",
+ "consensus-term": "Consensus",
+ "consensus-definition": "When more than 2/3 of the computers in a network agree that they have the same set of records, making sure everyone is on the same page. This isn't about the rules they follow, but making sure they all have the same information.",
+ "consensus-client-term": "Consensus client",
+ "consensus-client-definition": "Consensus clients (such as Prysm, Teku, Nimbus, Lighthouse, Lodestar) run Ethereum's proof-of-stake consensus algorithm allowing the network to reach agreement about the head of the Beacon Chain. Consensus clients do not participate in validating/broadcasting transactions or executing state transitions. This is done by execution clients.",
+ "consensus-layer-term": "Consensus layer",
+ "consensus-layer-definition": "Ethereum's consensus layer is the network of consensus clients.",
+ "cryptoeconomics-term": "Cryptoeconomics",
+ "cryptoeconomics-definition": "The study of mathematical and economic principles to design secure and trustworthy digital platforms. The goal is to ensure that all participants follow the rules and are rewarded for contributing to the network's security and operation. ",
+ "cryptography-term": "Cryptography",
+ "cryptography-definition": "It is the practice of making communication private and secure so that only those for whom the information is intended can read it.",
+ "dao-term": "Decentralized autonomous organization (DAO)",
+ "dao-definition": "A DAO is a digital organization run by rules coded on a blockchain, where decisions are made by member votes, not a central authority. More on decentralized autonomous organizations (DAOs).",
+ "dapp-term": "Dapp",
+ "dapp-definition": "A dApp is a decentralized application that runs on a blockchain network, offering services without a central controlling authority. More on decentralized applications.",
+ "data-availability-term": "Data availability",
+ "data-availability-definition": "Any node can independently verify transactions on a blockchain in order to maintain transparency and trust in the system.",
+ "defi-term": "DeFi",
+ "defi-definition": "A broad category of Ethereum apps aiming to provide financial services backed by the blockchain, without any intermediaries. More on decentralized finance (DeFi)",
+ "dex-term": "Decentralized exchange (DEX)",
+ "dex-definition": "A type of Ethereum app that lets you swap tokens with peers on the network. DEXes are not subject to geographical restrictions like centralized exchanges – anyone can participate.",
+ "difficulty-bomb-term": "Difficulty bomb",
+ "difficulty-bomb-definition": "Planned exponential increase in proof-of-workdifficulty setting that was designed to motivate the transition to proof-of-stake, reducing the chances of a fork. The difficulty bomb was deprecated with the Merge.",
+ "ecdsa-term": "Elliptic Curve Digital Signature Algorithm (ECDSA)",
+ "ecdsa-definition": "A cryptographic algorithm used by Ethereum to ensure that funds can only be spent by their owners. It's the preferred method for creating public and private keys. Relevant for account address generation and transaction verification.",
+ "ens-term": "Ethereum Name Service (ENS)",
+ "ens-definition": "Ethereum Name Service is like an internet phonebook for Ethereum addresses. Instead of using long wallet addresses, ENS lets you use simple names like \"john.eth\" to send and receive digital money and assets.",
+ "epoch-term": "Epoch",
+ "epoch-definition": "A period of 32 slots, each slot being 12 seconds, totalling 6.4 minutes. Validator committees are shuffled every epoch for security reasons. Each epoch has an opportunity for the chain to be finalized. Each validator is assigned new responsibilities at the start of each epoch. More on proof-of-stake",
+ "eoa-term": "Externally owned account (EOA)",
+ "eoa-definition": "Externally Owned Accounts (EOAs) are the most common type of Ethereum account. They are controlled by a person through private keys/recovery phrase. More on Ethereum wallets.",
+ "erc-term": "Ethereum Request for Comments (ERC)",
+ "erc-definition": "ERC (Ethereum Request for Comments) is a type of technical documentation used in the Ethereum community to propose new standards of usage for the Ethereum network.",
+ "erc-1155-term": "ERC-1155",
+ "erc-1155-definition": "A type of Ethereum token standard similar to NFT (like unique collectible items) that also allows to create interchangeable items (like currency) within a single smart contract.",
+ "erc-20-term": "ERC-20",
+ "erc-20-definition": "Is the standard set of rules that most tokens on Ethereum network are created with.",
+ "erc-721-term": "ERC-721",
+ "erc-721-definition": "A standard set of rules used to create NFTs (non fungible tokens).",
+ "ether-term": "Ether",
+ "ether-definition": "The native cryptocurrency of Ethereum, commonly referred to as “ETH”. It is used to cover transaction fees when using Ethereum ecosystem and applications. More on ether.",
+ "events-term": "Events",
+ "events-definition": "Allows the use of EVM logging facilities. Dapps can listen for events and use them to trigger JavaScript callbacks in the user interface. More on events and logs",
+ "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",
+ "execution-layer-definition": "Ethereum's execution layer is the network of execution clients.",
+ "finality-term": "Finality",
+ "finality-definition": "Finality is the guarantee that a set of transactions before a given time will not change and can't be reverted. More on proof-of-stake finality.",
+ "fork-term": "Fork",
+ "fork-definition": "A change in protocol causing the creation of an alternative chain or a temporal divergence into two potential block paths.",
+ "fraud-proof-term": "Fraud proof",
+ "fraud-proof-definition": "A security model for certain layer 2 solutions where, to increase speed, transactions are rolled up into batches and submitted to Ethereum in a single transaction. They are assumed valid but can be challenged if fraud is suspected. A fraud proof will then run the transaction to see if fraud took place. This method increases the amount of transactions possible while maintaining security. Some rollups use validity proofs. More on optimistic rollups.",
+ "gas-term": "Gas",
+ "gas-definition": "Gas is the fee paid for transactions and smart contracts on a blockchain, like Ethereum. More on gas and fees.",
+ "genesis-block-term": "Genesis block",
+ "genesis-block-definition": "The first block in a blockchain, used to initialize a particular network and its cryptocurrency.",
+ "gwei-term": "Gwei",
+ "gwei-definition": "Short for gigawei, a denomination of ether, commonly utilized to price gas. 1 gwei = 109wei. 109 gwei = 1 ether.",
+ "hash-term": "Hash",
+ "hash-definition": "A fixed-length fingerprint of variable-size input, produced by a hash function. (See keccak-256).",
+ "holographic-consensus-term": "Holographic consensus",
+ "holographic-consensus-definition": "Refers to how a big group decision is made by letting a smaller group of representative people vote. Then everyone else agrees to go along with it, as long as they trust the small group did a good job.",
+ "index-term": "Index",
+ "index-definition": "A network structure meant to optimize the querying of information from across the blockchain by providing an efficient path to its storage source.",
+ "key-term": "Key",
+ "key-definition": "In the context of Ethereum, keys are digital codes: a public key for receiving transactions and a private key for accessing and sending funds.",
+ "layer-2-term": "Layer 2",
+ "layer-2-definition": "Layer 2s are another networks built on top of Ethereum main network to make transactions faster and cheaper. More on layer 2.",
+ "liquidity-tokens-term": "Liquidity tokens",
+ "liquidity-tokens-definition": "Liquidity tokens (LT) are digital tokens issued to participants who deposit assets into a liquidity pool, which is a collection of funds locked in a smart contract and used to facilitate trading on a decentralized exchange (DEX).",
+ "mainnet-term": "Mainnet",
+ "mainnet-definition": "Short for \"main network,\" this is the main public Ethereum blockchain.",
+ "mev-term": "MEV",
+ "mev-definition": "A mechanism prioritizing certain actions on a blockchain for a fee, influencing outcomes and the order of transactions.",
+ "multisig-term": "Multisig",
+ "multisig-definition": "Multisig (multi signature) refers to a digital wallet or account that requires multiple signatures or approvals to execute transactions, enhancing security.",
+ "nft-term": "Non-fungible token (NFT)",
+ "nft-definition": "Non-fungible-token (NFT ) is a unique digital item you can own, like art or collectibles, verified by blockchain technology. More on Non-Fungible Tokens (NFTs).",
+ "node-term": "Node",
+ "node-definition": "A software client that participates in the network. More on nodes and clients.",
+ "ommer-term": "Ommer (uncle) block",
+ "ommer-definition": "When a proof-of-work miner finds a valid block, another miner may have published a competing block which is added to the tip of the blockchain first. This valid, but stale, block can be included by newer blocks as ommers and receive a partial block reward. The term \"ommer\" is the preferred gender-neutral term for the sibling of a parent block, but this is also sometimes referred to as an \"uncle\". This was relevant for Ethereum when it was a proof-of-work network, but ommers are not a feature of proof-of-stake Ethereum because precisely one block proposer is selected in each slot.",
+ "on-chain-term": "On-chain",
+ "on-chain-definition": "Refers to actions or transactions that happen on the blockchain and are publicly available.",
+ "optimistic-rollup-term": "Optimistic rollup",
+ "optimistic-rollup-definition": "Optimistic Rollup is a Layer 2 solution that speeds up transactions on Ethereum, assuming they're valid by default unless challenged. More on Optimistic rollups.",
+ "peer-to-peer-network-term": "Peer-to-peer network",
+ "peer-to-peer-network-definition": "A network of computers (peers) that are collectively able to perform functionalities without the need for centralized, server-based services.",
+ "permissionless-term": "Permissionless",
+ "permissionless-definition": "No permission or approval is needed to use a system like Ethereum and nobody can stop you from using it. It's open 24/7 for everyone to participate.",
+ "private-key-term": "Private key",
+ "private-key-definition": "A private key is a secret code that proves you own your digital money and lets you spend it, like a PIN for your account. DO NOT SHARE IT.",
+ "poap-term": "POAP",
+ "poap-definition": "Proof of Attendance Protocol is used to create a digital collectible (NFT) that proves you attended a specific event or activity.",
+ "pos-term": "Proof-of-stake (PoS)",
+ "pos-definition": "A method by which a cryptocurrency blockchain protocol aims to achieve distributed consensus. PoS asks users to prove ownership of a certain amount of cryptocurrency (their \"stake\" in the network) in order to be able to participate in the validation of transactions. More on proof-of-stake.",
+ "pow-term": "Proof-of-work (PoW)",
+ "pow-definition": "A piece of data (the proof) that requires significant computation to find. More on proof-of-work.",
+ "public-goods-term": "Public goods",
+ "public-goods-definition": "Public goods are things everyone can use for free, like parks or clean air, and using them doesn’t stop others from using them too. Governments often provide these because businesses usually won’t, since they can’t easily charge people for using them.",
+ "public-key-term": "Public key",
+ "public-key-definition": "A public key is a set of characters that lets others send you digital currency securely, like an email address for money.",
+ "quadratic-voting-term": "Quadratic voting",
+ "quadratic-voting-definition": "Is a voting method where voters express how strongly they feel about issues. It allows voters to show not just preference, but also the intensity of their preference.",
+ "recovery-phrase-term": "Seed phrase/recovery phrase",
+ "recovery-phrase-definition": "A list of words given to you when you create a digital wallet. It acts like a password that can help you get back into your wallet if you lose access, making sure you don't lose your digital money or tokens.",
+ "rollups-term": "Rollups",
+ "rollups-definition": "A type of layer 2 scaling solution that batches multiple transactions and submits them to the Ethereum main chain in a single transaction. This allows for reductions in gas costs and increases in transaction throughput. There are Optimistic and Zero-knowledge rollups which use different security methods to offer these scalability gains. More on rollups.",
+ "rpc-term": "Remote procedure call (RPC)",
+ "rpc-definition": "RPC lets one computer request data or action from another over a network, like asking for info with a remote control.",
+ "sequencer-term": "Sequencer",
+ "sequencer-definition": "A sequencer is a program responsible for ordering transactions in a blockchain network.",
+ "smart-contract-term": "Smart contract",
+ "smart-contract-definition": "A smart contract is a program that automatically executes agreements on a blockchain, like a self-enforcing digital contract. Introduction to smart contracts.",
+ "stablecoin-term": "Stablecoin",
+ "stablecoin-definition": "A stablecoin is a type of cryptocurrency designed to have a stable value, often pegged to a currency or commodity (like US dollar), to minimize price volatility. More on stablecoins.",
+ "staking-term": "Staking",
+ "staking-definition": "Depositing a quantity of ether (your stake) to become a validator and secure the network. A validator checks transactions and proposes blocks under a proof-of-stake consensus model. Staking gives you an economic incentive to act in the best interests of the network. You'll get rewards for carrying out your validator duties, but lose varying amounts of ETH if you don't. More on Ethereum staking.",
+ "staking-pool-term": "Staking pool",
+ "staking-pool-definition": "The combined ETH of more than one Ethereum staker, used to reach the 32 ETH required to activate a set of validator keys. A node operator uses these keys to participate in consensus and the block rewards are split amongst contributing stakers. Staking pools or delegating staking are not native to the Ethereum protocol, but many solutions have been built by the community. More on pooled staking.",
+ "terminal-total-difficulty-term": "Terminal total difficulty (TTD)",
+ "terminal-total-difficulty-definition": "The total difficulty is the sum of the Ethash mining difficulty for all blocks up to some specific point in the blockchain. The terminal total difficulty is a specific value for the total difficulty that was used as the trigger for execution clients to switch off their mining and block gossip functions enabling the network to transition to proof-of-stake.",
+ "transaction-fee-term": "Transaction fee",
+ "transaction-fee-definition": "A fee you need to pay whenever you use the Ethereum network. Examples include sending funds from your wallet or a dapp interaction, like swapping tokens or buying a collectable. You can think of this like a service charge. This fee will change based on how busy the network is. This is because validators, the people responsible for processing your transaction, are likely to prioritize transactions with higher fees – so congestion forces the price up.
At a technical level, your transaction fee relates to how much gas your transaction requires.
Reducing transaction fees is a subject of intense interest right now. See Layer 2.",
+ "trust-assumptions-term": "Trust assumptions",
+ "trust-assumptions-definition": "Trust assumptions are basic beliefs about a system's safety and dependability, guiding what we trust for the system to function.",
+ "validator-term": "Validator",
+ "validator-definition": "A node in a proof-of-stake system responsible for storing data, processing transactions, and adding new blocks to the blockchain. To activate validator software, you need to be able to stake 32 ETH. More on staking in Ethereum.",
+ "validity-proof-term": "Validity proof",
+ "validity-proof-definition": "A security model for certain layer 2 solutions where, to increase speed, transactions are rolled up into batches and submitted to Ethereum in a single transaction. The transaction computation is done off-chain and then supplied to the main chain with a proof of their validity. This method increases the amount of transactions possible while maintaining security. Some rollups use fraud proof. More on zero-knowledge rollups.",
+ "wallet-term": "Wallet",
+ "wallet-definition": "A wallet is a digital tool to store, send, and receive digital currency, like a virtual purse for your online money. More on Ethereum wallets.",
+ "web2-term": "Web2",
+ "web2-definition": "Is the current internet, focused on user-generated content and social media that are controlled by few companies. Web3 is a crypto belief that users should control their data and transactions instead.",
+ "web3-term": "Web3",
+ "web3-definition": "Web3 is the new internet with blockchain, where users control their data and transactions, not companies. No need to share any personal information. More on web3.",
+ "wei-term": "Wei",
+ "wei-definition": "The smallest denomination of ether. 1018 wei = 1 ether.",
+ "zk-proof-term": "Zero-knowledge proof",
+ "zk-proof-definition": "A zero-knowledge proof is a cryptographic method that allows an individual to prove that a statement is true without conveying any additional information. More on zero-knowledge rollups."
+}
diff --git a/src/intl/en/glossary.json b/src/intl/en/glossary.json
index 5e2d2a9a58f..ef41682efd6 100644
--- a/src/intl/en/glossary.json
+++ b/src/intl/en/glossary.json
@@ -1,17 +1,21 @@
{
"51%-attack-term": "51% attack",
- "51%-attack-definition": "A type of attack on a decentralized network where a group gains control of the majority of nodes. This would allow them to defraud the blockchain by reversing transactions and double spending ether and other tokens.",
+ "51%-attack-definition": "A type of attack where a group gains control of the majority of nodes. This would allow them to defraud the blockchain by reversing transactions and double spending ether and other tokens.
In Ethereum proof-of-stake this would be achieved by accumulating more than half of the total staked ether. This would allow an attacker to decide which new blocks are added to the blockchain. However, to revert the chain or double-spend an attacker would require at least 66% of the total staked ether.",
"account-term": "Account",
- "account-definition": "An object containing an address, balance, nonce, and optional storage and code. An account can be a contract account or an externally owned account (EOA).
More on Ethereum accounts.",
+ "account-definition": "An Ethereum account is a digital identity on the Ethereum blockchain, allowing users to send, receive Ether, and interact with smart contracts.
Technical: Its an object containing an address, balance, nonce, and optional storage and code. An account can be a contract account or an externally owned account (EOA).",
"address-term": "Address",
- "address-definition": "Most generally, this represents an externally owned account (EOA) or contract account that can receive (destination address) or send (source address) transactions on the blockchain. More specifically, it is the rightmost 160 bits of a Keccak hash of an ECDSApublic key.",
+ "address-definition": "An Ethereum address is a unique identifier used for receiving tokens, functions similar to a bank account number for cryptocurrencies. Its used to identify your Ethereum account.
It is the rightmost 160 bits of a Keccak hash of an ECDSA public key.",
+ "anti-sybil-term": "Anti-Sybil",
+ "anti-sybil-definition": "Are ways to stop people from pretending to be many users at once on the internet, ensuring each user is a real, separate person. This helps keep online interactions fair and honest.",
"abi-term": "Application Binary Interface (ABI)",
"abi-definition": "The standard way to interact with contracts in the Ethereum ecosystem, both from outside the blockchain and for contract-to-contract interactions. More on ABI.",
"api-term": "Application Programming Interface (API)",
"api-definition": "An Application Programming Interface (API) is a set of definitions for how to use a piece of software. An API sits between an application and a web server, and facilitates the transfer of data between them.",
+ "apr-term": "APR",
+ "apr-definition": "APR, or Annual Percentage Rate, reflects the yearly cost of borrowing money, including interest and fees, as a percentage.",
"asic-term": "ASIC",
"asic-definition": "Application-specific integrated circuit. This usually refers to an integrated circuit, custom-built for cryptocurrency mining.",
- "assert-term": "asset",
+ "assert-term": "assert",
"assert-definition": "In Solidity, `assert(false)` compiles to `0xfe`, an invalid opcode, which uses up all remaining gas and reverts all changes. When an `assert()` statement fails, something very wrong and unexpected is happening, and you will need to fix your code. You should use `assert()` to avoid conditions that should never, ever occur. More on smart contract security.",
"attestation-term": "Attestation",
"attestation-definition": "A claim made by an entity that something is true. In context of Ethereum, consensus validators must make a claim as to what they believe the state of the chain to be. At designated times, each validator is responsible for publishing different attestations that formally declare this validator's view of the chain, including the last finalized checkpoint and the current head of the chain. More on attestations.",
@@ -22,7 +26,7 @@
"big-endian-term": "Big-endian",
"big-endian-definition": "A positional number representation where the most significant digit is first in memory. The opposite of little-endian, where the least significant digit is first.",
"block-term": "Block",
- "block-definition": "A block is a bundled unit of information that includes an ordered list of transactions and consensus-related information. Blocks are proposed by proof-of-stake validators, at which point they are shared across the entire peer-to-peer network, where they can easily be independently verified by all other nodes. Consensus rules govern what contents of a block are considered valid, and any invalid blocks are disregarded by the network. The ordering of these blocks and the transactions therein create a deterministic chain of events with the end representing the current state of the network. More on blocks.",
+ "block-definition": "A block is where transactions or digital actions are stored. Once a block is full, it gets linked to the previous one, creating a chain of blocks or a \"blockchain\". More on blocks.
A block is a bundled unit of information that includes an ordered list of transactions and consensus-related information. Blocks are proposed by proof-of-stake validators, at which point they are shared across the entire peer-to-peer network, where they can easily be independently verified by all other nodes. Consensus rules govern what contents of a block are considered valid, and any invalid blocks are disregarded by the network. The ordering of these blocks and the transactions therein create a deterministic chain of events with the end representing the current state of the network.",
"block-explorer-term": "Block explorer",
"block-explorer-definition": "An interface that allows a user to search for information from, and about, a blockchain. This includes retrieving individual transactions, activity associated with specific addresses and information about the network.",
"block-header-term": "Block header",
@@ -40,9 +44,11 @@
"block-validation-term": "Block validation",
"block-validation-definition": "The process of checking that a new block contains valid transactions and signatures, builds on the heaviest historical chain, and follows all other consensus rules. Valid blocks are added to the end of the chain and propagated to others on the network. Invalid blocks are disregarded.",
"blockchain-term": "Blockchain",
- "blockchain-definition": "A sequence of block , each linking to its predecessor all the way to the genesis block by referencing the hash of the previous block. The integrity of the blockchain is crypto-economically secured using a proof-of-stake-based consensus mechanism. What is a blockchain?",
+ "blockchain-definition": "A blockchain is a database of transactions, duplicated and shared on all computers in the network, ensuring data cannot be altered retroactively.
A sequence of block , each linking to its predecessor all the way to the genesis block by referencing the hash of the previous block. The integrity of the blockchain is crypto-economically secured using a proof-of-stake-based consensus mechanism. What is a blockchain?",
"bootnode-term": "Bootnode",
"bootnode-definition": "The nodes which can be used to initiate the discovery process when running a node. The endpoints of these nodes are recorded in the Ethereum source code.",
+ "bridge-term": "Bridge",
+ "bridge-definition": "A blockchain bridge is used to transfer assets from one blockchain network to another. For example you can use bridge to transfer ETH from the main Ethereum network to cheaper Layer 2 scaling solutions.",
"bytecode-term": "Bytecode",
"bytecode-definition": "An abstract instruction set designed for efficient execution by a software interpreter or a virtual machine. Unlike human-readable source code, bytecode is expressed in numeric format.",
"byzantium-fork-term": "Byzantium fork",
@@ -58,9 +64,9 @@
"computational-infeasibility-term": "Computational infeasibility",
"computational-infeasibility-definition": "A process is computationally infeasible if it would take an impracticably long time (e.g. billions of years) to do it for anyone who might conceivably have an interest in carrying it out.",
"consensus-term": "Consensus",
- "consensus-definition": "When a supermajority of nodes on the network all have the same blocks in their locally validated best blockchain. Not to be confused with consensus rules.",
+ "consensus-definition": "When more than 2/3 of the computers in a network agree that they have the same set of records, making sure everyone is on the same page. This isn't about the rules they follow, but making sure they all have the same information.",
"consensus-client-term": "Consensus client",
- "consensus-client-definition": "Consensus clients (such as Prysm, Teku, Nimbus, Lighthouse, Lodestar) run Ethereum's proof-of-stake consensus algorithm allowing the network to reach agreement about the head of the Beacon Chain. Consensus clients do not participate in validating/broadcasting transactions or executing state transitions. This is done by execution clients](#execution-client.",
+ "consensus-client-definition": "Consensus clients (such as Prysm, Teku, Nimbus, Lighthouse, Lodestar) run Ethereum's proof-of-stake consensus algorithm allowing the network to reach agreement about the head of the Beacon Chain. Consensus clients do not participate in validating/broadcasting transactions or executing state transitions. This is done by execution clients.",
"consensus-layer-term": "Consensus layer",
"consensus-layer-definition": "Ethereum's consensus layer is the network of consensus clients.",
"consensus-rules-term": "Consensus rules",
@@ -74,25 +80,27 @@
"contract-creation-transaction-term": "Contract creation transaction",
"contract-creation-transaction-definition": "A special transaction that includes a contract's initiation code. The recipient is set to `null` and the contract is deployed to an address generated from the user address and `nonce`. that is used to register a contract and record it on the Ethereum blockchain.",
"cryptoeconomics-term": "Cryptoeconomics",
- "cryptoeconomics-definition": "The economics of cryptocurrencies.",
+ "cryptoeconomics-definition": "The study of mathematical and economic principles to design secure and trustworthy digital platforms. The goal is to ensure that all participants follow the rules and are rewarded for contributing to the network's security and operation. ",
+ "cryptography-term": "Cryptography",
+ "cryptography-definition": "It is the practice of securing communication and data through the use of codes, so that only those for whom the information is intended can read and process it. It involves techniques for encryption (converting readable information into an unreadable format) and decryption (converting it back into a readable format), ensuring confidentiality.",
"doge-d-term": "Đ",
"doge-d-definition": "Đ (D with stroke) is used in Old English, Middle English, Icelandic, and Faroese to stand for an uppercase letter “Eth”. It is used in words like ĐEV or Đapp (decentralized application), where the Đ is the Norse letter “eth”. The uppercase eth (Ð) is also used to symbolize the cryptocurrency Dogecoin. This is commonly seen in older Ethereum literature but is used less often today.",
"dag-term": "DAG",
"dag-definition": "DAG stands for Directed Acyclic Graph. It is a data structure composed of nodes and links between them. Before The Merge, Ethereum used a DAG in its proof-of-work algorithm, Ethash, but is no longer used in proof-of-stake.",
"dapp-term": "Dapp",
- "dapp-definition": "Decentralized application. At a minimum, it is a smart contract and a web user interface. More broadly, a dapp is a web application that is built on top of open, decentralized, peer-to-peer infrastructure services. In addition, many dapps include decentralized storage and/or a message protocol and platform. Introduction to dapps",
+ "dapp-definition": "A dApp is a decentralized application that runs on a blockchain network, offering services without a central controlling authority. More on decentralized applications. At a minimum dapp has a smart contract connected to a web interface. In addition, many dapps include decentralized storage and/or a message protocol and platform.",
"data-availability-term": "Data availability",
- "data-availability-definition": "The property of a state that any node connected to the network could download any specific part of the state that they wish to.",
+ "data-availability-definition": "Any node can independently verify transactions on a blockchain in order to maintain transparency and trust in the system.",
"decentralization-term": "Decentralization",
"decentralization-definition": "The concept of moving the control and execution of processes away from a central entity.",
"dao-term": "Decentralized autonomous organization (DAO)",
- "dao-definition": "A company or other organization that operates without hierarchical management. DAO may also refer to a contract named \"The DAO\" launched on April 30, 2016, which was then hacked in June 2016; this ultimately motivated a hard fork (codenamed DAO) at block 1,192,000, which reversed the hacked DAO contract and caused Ethereum and Ethereum Classic to split into two competing systems. More on decentralized autonomous organizations (DAOs)",
+ "dao-definition": "A DAO is a digital organization run by rules coded on a blockchain, where decisions are made by member votes, not a central authority. More on decentralized autonomous organizations (DAOs). Each member's voting power often tied to the number of tokens they hold. DAOs aim to democratize decision-making and operations, focusing on transparency and community governance.",
"dex-term": "Decentralized exchange (DEX)",
- "dex-definition": "A type of dapp that lets you swap tokens with peers on the network. You need ether to use one (to pay transactions fees) but they are not subject to geographical restrictions like centralized exchanges – anyone can participate.",
+ "dex-definition": "A type of Ethereum app that lets you swap tokens with peers on the network. DEXes are not subject to geographical restrictions like centralized exchanges – anyone can participate.",
"deposit-contract-term": "Deposit contract",
"deposit-contract-definition": "The gateway to staking on Ethereum. The deposit contract is a smart contract on Ethereum that accepts deposits of ETH and manages validator balances. A validator cannot be activated without depositing ETH into this contract. The contract requires ETH and input data. This input data includes the validator public key and withdrawal public key, signed by the validator private key. This data is needed for a validator to be identified and approved by the proof-of-stake network.",
"defi-term": "DeFi",
- "defi-definition": "Short for \"decentralized finance,\" a broad category of dapps aiming to provide financial services backed by the blockchain, without any intermediaries, so anyone with an internet connection can participate. More on decentralized finance (DeFi)",
+ "defi-definition": "A broad category of Ethereum apps aiming to provide financial services backed by the blockchain, without any intermediaries. More on decentralized finance (DeFi)",
"difficulty-term": "Difficulty",
"difficulty-definition": "A network-wide setting in proof-of-work networks that controls how much average computation is required to find a valid nonce. The difficulty is represented by the number of leading zeroes that are required in the resulting block hash for it to be considered valid. This concept is deprecated in Ethereum since the transition to proof-of-stake.",
"difficulty-bomb-term": "Difficulty bomb",
@@ -122,19 +130,25 @@
"eip-term": "Ethereum Improvement Proposal (EIP)",
"eip-definition": "A design document providing information to the Ethereum community, describing a proposed new feature or its processes or environment (see ERC). Introduction to EIPs",
"ens-term": "Ethereum Name Service (ENS)",
- "ens-definition": "The ENS registry is a single central contract that provides a mapping from domain names to owners and resolvers, as described in EIP-137. Read more at ens.domains",
+ "ens-definition": "Ethereum Name Service is like an internet phonebook for Ethereum addresses. Instead of using long wallet addresses, ENS lets you use simple names like \"john.eth\" to send and receive digital money and assets.
Technical: The ENS registry is a single central contract that provides a mapping from domain names to owners and resolvers, as described in EIP-137. Read more at ens.domains.",
+ "erc-1155-term": "ERC-1155",
+ "erc-1155-definition": "ERC-1155 is a newer type of Ethereum token standard similar to NFT (like unique collectible items) that also allows to create interchangeable items (like currency) within a single smart contract. This makes it easier and more efficient to manage various types of digital assets, especially for applications like video games or digital collections.",
+ "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.",
"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",
"execution-layer-definition": "Ethereum's execution layer is the network of execution clients.",
"eoa-term": "Externally owned account (EOA)",
- "eoa-definition": "Externally owned accounts (EOAs) are accounts that are controlled by private keys, typically generated using a seed phrase. Unlike smart contracts, externally owned accounts are accounts without any code associated with them. Typically these accounts are managed with a wallet.",
+ "eoa-definition": "Externally Owned Accounts (EOAs) are the most common type of Ethereum account. They are controlled by a person through private keys/recovery phrase. More on Ethereum wallets.",
"erc-term": "Ethereum Request for Comments (ERC)",
- "erc-definition": "A label given to some EIPs that attempt to define a specific standard of Ethereum usage.",
+ "erc-definition": "ERC (Ethereum Request for Comments) is a type of technical documentation used in the Ethereum community to propose new standards of usage for the Ethereum network.
These proposals can cover a wide range of topics, including new token standards (like ERC-20 used for tokens and ERC-721 for NFTs).",
"ethash-term": "Ethash",
- "ethash-definition": "A proof-of-work algorithm that was used on Ethereum before it transitioned to proof-of-stake. Read more",
+ "ethash-definition": "A proof-of-work algorithm that was used on Ethereum before it transitioned to proof-of-stake. Read more",
"ether-term": "Ether",
- "ether-definition": "The native cryptocurrency used by the Ethereum ecosystem, which covers gas costs when executing transactions. Also written as ETH or its symbol Ξ, the Greek uppercase Xi character. More on ether.",
+ "ether-definition": "The native cryptocurrency of Ethereum, commonly referred to as “ETH”. It is used to cover transaction fees when using Ethereum ecosystem and applications. More on ether.",
"events-term": "Events",
"events-definition": "Allows the use of EVM logging facilities. Dapps can listen for events and use them to trigger JavaScript callbacks in the user interface. More on events and logs",
"evm-term": "Ethereum Virtual Machine (EVM)",
@@ -154,11 +168,11 @@
"fork-choice-algorithm-term": "Fork choice algorithm",
"fork-choice-algorithm-definition": "The algorithm used to identify the head of the blockchain. On the execution layer the head of the chain is identified as the one with the greatest total difficulty behind it. This means the true head of the chain is the one that required the most work to mine it. On the consensus layer the algorithm observes the accumulated attestations from validators (LMD_GHOST).",
"fraud-proof-term": "Fraud proof",
- "fraud-proof-definition": "A security model for certain layer 2 solutions where, to increase speed, transactions are rolled up into batches and submitted to Ethereum in a single transaction. They are assumed valid but can be challenged if fraud is suspected. A fraud proof will then run the transaction to see if fraud took place. This method increases the amount of transactions possible while maintaining security. Some rollups use validity proofs. More on optimistic rollups.",
+ "fraud-proof-definition": "A security model for certain layer 2 solutions where, to increase speed, transactions are rolled up into batches and submitted to Ethereum in a single transaction. They are assumed valid but can be challenged if fraud is suspected. A fraud proof will then run the transaction to see if fraud took place. This method increases the amount of transactions possible while maintaining security. Some rollups use validity proofs. More on optimistic rollups.",
"frontier-term": "Frontier",
"frontier-definition": "The initial test development stage of Ethereum, which lasted from July 2015 to March 2016.",
"gas-term": "Gas",
- "gas-definition": "A virtual fuel used in Ethereum to execute smart contracts. The EVM uses an accounting mechanism to measure the consumption of gas and limit the consumption of computing resources (see Turing complete). More on gas and fees.",
+ "gas-definition": "Gas is the fee paid for transactions and smart contracts on a blockchain, like Ethereum. More on gas and fees.",
"gas-limit-term": "Gas limit",
"gas-limit-definition": "The maximum amount of gas a transaction or block may consume.",
"gas-price-term": "Gas price",
@@ -176,6 +190,8 @@
"hash-rate-term": "Hash rate",
"hash-rate-definition": "The number of hash calculations made per second by computers running mining software.",
"homestead-term": "Homestead",
+ "holographic-consensus-term": "Holographic consensus",
+ "holographic-consensus-definition": "Refers to how a big group decision is made by letting a smaller group of representative people vote. Then everyone else agrees to go along with it, as long as they trust the small group did a good job. It's used in some online communities to make decisions quickly without needing everyone to vote on everything, while still making sure the decisions are fair and represent what most people want.",
"homestead-definition": "The second development stage of Ethereum, launched in March 2016 at block 1,150,000.",
"index-term": "Index",
"index-definition": "A network structure meant to optimize the querying of information from across the blockchain by providing an efficient path to its storage source.",
@@ -188,69 +204,101 @@
"issuance-term": "Issuance",
"issuance-definition": "The minting of new ether to reward block proposal, attestation and whistle-blowing.",
"kdf-term": "Key derivation function (KDF)",
- "kdf-definition": "Also known as a \"password stretching algorithm,\" it is used by keystore formats to protect against brute-force, dictionary, and rainbow table attacks on passphrase encryption, by repeatedly hashing the passphrase.",
+ "kdf-definition": "Also known as a \"password stretching algorithm,\" it is used by keystore formats to protect against brute-force, dictionary, and rainbow table attacks on passphrase encryption, by repeatedly hashing the passphrase.",
"keystore-term": "Keystore",
"keystore-definition": "Every account’s private key/address pair exists as a single keyfile in an Ethereum client. These are JSON text files which contains the encrypted private key of the account, which can only be decrypted with the password entered during account creation.",
"keccak-256-term": "Keccak-256",
"keccak-256-definition": "Cryptographic hash function used in Ethereum. Keccak-256 was standardized as SHA-3.",
+ "key-term": "Key",
+ "key-definition": "In the context of Ethereum, keys are digital codes: a public key for receiving transactions and a private key for accessing and sending funds. Public keys: These can be shared openly. Private keys: These are kept secret by the owner.",
+ "layer-1-term": "Layer 1",
+ "layer-1-definition": "Layer 1 refers to the main blockchain in a multi-level blockchain network. For example, Ethereum and Bitcoin are layer one blockchains. Many layer two blockchain offload resource-intense transactions to their separate blockchain, while continuing to use Ethereum's or Bitcoin's layer one blockchain for security purposes.",
"layer-2-term": "Layer 2",
- "layer-2-definition": "An area of development focused on layering improvements on top of the Ethereum protocol. These improvements are related to transaction speeds, cheaper transaction fees, and transaction privacy. More on layer 2.",
+ "layer-2-definition": "Layer 2s are another networks built on top of Ethereum main network to make transactions faster and cheaper. More on layer 2.",
"library-term": "Library",
"library-definition": "A special type of contract that has no payable functions, no fallback function, and no data storage. Therefore, it cannot receive or hold ether, or store data. A library serves as previously deployed code that other contracts can call for read-only computation. More on smart contract libraries.",
"light-client-term": "Light client",
"light-client-definition": "An Ethereum client that does not store a local copy of the blockchain, or validate blocks and transactions. It offers the functions of a wallet and can create and broadcast transactions.",
+ "liquidity-term": "Liquidity",
+ "liquidity-definition": "Liquidity is how quickly and easily an asset can be converted into cash or another asset. Decentralized exchanges like Uniswap have multiple liquidity pools where asset holders can deposit their assets where traders can buy and sell them in a decentralized way in exchange for rewards.",
+ "liquidity-tokens-term": "Liquidity tokens",
+ "liquidity-tokens-definition": "Liquidity tokens (LST) are digital tokens issued to participants who deposit assets into a liquidity pool, which is a collection of funds locked in a smart contract and used to facilitate trading on a decentralized exchange (DEX). These tokens represent the participant's share of the pool and can be redeemed later for the initial deposit plus a portion of the trading fees generated by the pool's activity. Essentially, liquidity tokens serve as a proof of ownership or stake in a liquidity pool, allowing holders to earn rewards while providing the necessary liquidity for others to trade different cryptocurrency pairs efficiently.",
"lmd-ghost-term": "LMD-GHOST",
"lmd-ghost-definition": "The fork-choice algorithm used by Ethereum's consensus clients to identify the head of the chain. LMD-GHOST is an acronym standing for \"Latest Message Driven Greediest Heaviest Observed SubTree\" which means that the head of the chain is the block with the greatest accumulation of attestations in its history.",
"mainnet-term": "Mainnet",
"mainnet-definition": "Short for \"main network,\" this is the main public Ethereum blockchain.",
+ "max-fee-per-gas-term": "Max Fee Per Gas",
+ "max-fee-per-gas-definition": "The Max Fee is the absolute maximum amount a user is willing to pay per unit of gas (gwei) to get a transaction included in a block.",
"merkle-patricia-tree-term": "Merkle Patricia Tree (MPT)",
"merkle-patricia-tree-definition": "A data structure used in Ethereum to efficiently store key-value pairs.",
+ "merkle-root-term": "Merkle Root",
+ "merkle-root-definition": "A Merkle root is the single top hash of a Merkle tree. It verifies all transactions within a block.",
"message-term": "Message",
"message-definition": "An internal transaction that is never serialized and only sent within the EVM.",
"message-call-term": "Message call",
"message-call-definition": "The act of passing a message from one account to another. If the destination account is associated with EVM code, then the VM will be started with the state of that object and the message acted upon.",
+ "mev-term": "MEV",
+ "mev-definition": "A mechanism prioritizing certain actions on a blockchain for a fee, influencing outcomes and the order of transactions.",
"mining-term": "Mining",
- "mining-definition": "The process of repeatedly hashing a block header while incrementing a nonce until the result contains an arbitrary number of leading binary zeros. This is the process by which new blocks are added to a proof-of-work blockchain. This was how Ethereum was secured before it moved to proof-of-stake.",
+ "mining-definition": "The process of repeatedly hashing a block header while incrementing a nonce until the result contains an arbitrary number of leading binary zeros. This is the process by which new blocks are added to a proof-of-work blockchain. This was how Ethereum was secured before it moved to proof-of-stake.",
"miner-term": "Miner",
"miner-definition": "A network node that finds valid proof-of-work for new blocks, by repeated pass hashing (see Ethash). Miners are no longer part of Ethereum - they were replaced by validators when Ethereum moved to proof-of-stake.",
"mint-term": "Mint",
"mint-definition": "Minting is the process of creating new tokens and bringing them into circulation so that they can be used. It's a decentralized mechanism to create a new token without the involvement of the central authority.",
+ "multisig-term": "Multisig",
+ "multisig-definition": "Multisig (multi signature) refers to a digital wallet or account that requires multiple signatures or approvals to execute transactions, enhancing security. This adds extra security compared to traditional single-signature accounts where only one person's approval is needed.",
"network-term": "Network",
"network-definition": "Referring to the Ethereum network, a peer-to-peer network that propagates transactions and blocks to every Ethereum node (network participant). More on networks.",
"network-hashrate-term": "Network hashrate",
"network-hashrate-definition": "The collective hashrate produced by an entire mining network. Mining on Ethereum was switched off when Ethereum moved to proof-of-stake.",
"nft-term": "Non-fungible token (NFT)",
- "nft-definition": "This is a token standard introduced by the ERC-721 proposal. NFTs can be tracked and traded, but each token is unique and distinct; they are not interchangeable like ETH and ERC-20 tokens. NFTs can represent ownership of digital or physical assets. More on Non-Fungible Tokens (NFTs).",
+ "nft-definition": "Non-fungible-token (NFT ) is a unique digital item you can own, like art or collectibles, verified by blockchain technology. More on Non-Fungible Tokens (NFTs).",
"node-term": "Node",
"node-definition": "A software client that participates in the network. More on nodes and clients.",
"nonce-term": "Nonce",
"nonce-definition": "In cryptography, a value that can only be used once. An account nonce is a transaction counter in each account, which is used to prevent replay attacks.",
+ "off-chain-term": "Off-Chain",
+ "off-chain-definition": "Off-chain means any transaction or data that exists outside the blockchain. Because committing every transaction on-chain can be expensive and inefficient, third-party tools like oracles that handle pricing data, or layer 2 solutions that execute a higher throughput of transactions, handle a bulk of the processing work off-chain, and will submit information on-chain at less frequent intervals.",
"ommer-term": "Ommer (uncle) block",
"ommer-definition": "When a proof-of-work miner finds a valid block, another miner may have published a competing block which is added to the tip of the blockchain first. This valid, but stale, block can be included by newer blocks as ommers and receive a partial block reward. The term \"ommer\" is the preferred gender-neutral term for the sibling of a parent block, but this is also sometimes referred to as an \"uncle\". This was relevant for Ethereum when it was a proof-of-work network, but ommers are not a feature of proof-of-stake Ethereum because precisely one block proposer is selected in each slot.",
+ "on-chain-term": "On-Chain",
+ "on-chain-definition": "Refers to actions or transactions that happen on the blockchain and are publicly available.
Think of it as writing something in a big, shared notebook that everyone can see and check, making sure that whatever is written (like sending digital money or making a contract) is permanent and can't be changed or erased.",
"optimistic-rollup-term": "Optimistic rollup",
- "optimistic-rollup-definition": "A rollup of transactions that use fraud proofs to offer increased layer 2 transaction throughput while using the security provided by Mainnet (layer 1). Unlike Plasma, a similar layer 2 solution, Optimistic rollups can handle more complex transaction types – anything possible in the EVM. They do have latency issues compared to Zero-knowledge rollups because a transaction can be challenged via the fraud proof. More on Optimistic rollups.",
+ "optimistic-rollup-definition": "Optimistic Rollup is a Layer 2 solution that speeds up transactions on Ethereum, assuming they're valid by default unless challenged. More on Optimistic rollups.",
"oracle-term": "Oracle",
"oracle-definition": "An oracle is a bridge between the blockchain and the real world. They act as on-chain APIs that can be queried for information and used in smart contracts. More on oraclesblockchain.",
"peer-to-peer-network-term": "Peer-to-peer network",
- "peer-to-peer-network-definition": "A network of computers (peers) that are collectively able to perform functionalities without the need for centralized, server-based services.",
+ "peer-to-peer-network-definition": "A network of computers (peers) that are collectively able to perform functionalities without the need for centralized, server-based services. This setup is often used for sharing files (I.e. Bit torrent), information, or digital currencies, allowing for more direct and potentially more efficient exchanges between users.",
+ "permissionless-term": "Permissionless",
+ "permissionless-definition": "Permissionless means anyone can join and use a system like Ethereum. It's open for everyone to participate and doesn't require any approval.",
"plasma-term": "Plasma",
"plasma-definition": "An off-chain scaling solution that uses fraud proofs, like optimistic rollups. Plasma is limited to simple transactions like basic token transfers and swaps. More on plasma.",
"private-key-term": "Private key",
- "private-key-definition": "A secret number that allows Ethereum users to prove ownership of an account or contracts, by producing a digital signature (see public key, address, ECDSA).",
+ "private-key-definition": "A private key is a secret code that proves you own your digital money and lets you spend it, like a PIN for your account. DO NOT SHARE IT.",
+ "public-goods-term": "Public goods",
+ "public-goods-definition": "Public goods are things everyone can use for free, like parks or clean air, and using them doesn’t stop others from using them too. Governments often provide these because businesses usually won’t, since they can’t easily charge people for using them.",
"private-chain-term": "Private chain",
"private-chain-definition": "A fully private blockchain is one with permissioned access, not publicly available for use.",
+ "poap-term": "POAP",
+ "poap-definition": "Proof of Attendance Protocol is used to create a digital collectible (NFT) that proves you attended a specific event or activity.",
"pos-term": "Proof-of-stake (PoS)",
"pos-definition": "A method by which a cryptocurrency blockchain protocol aims to achieve distributed consensus. PoS asks users to prove ownership of a certain amount of cryptocurrency (their \"stake\" in the network) in order to be able to participate in the validation of transactions. More on proof-of-stake.",
"pow-term": "Proof-of-work (PoW)",
"pow-definition": "A piece of data (the proof) that requires significant computation to find. More on proof-of-work.",
+ "proto-danksharding-term": "Proto-Danksharding",
+ "proto-danksharding-definition": "A new transaction type which accepts \"blobs\" of data for Ethereum. This \"blob\" data is temporarily stored on the beacon chain for 4096 epochs (~18.2 days), and can optionally be pruned after to help reduce hardware requirements for node operators.",
"public-key-term": "Public key",
- "public-key-definition": "A number, derived via a one-way function from a private key, which can be shared publicly and used by anyone to verify a digital signature made with the corresponding private key.",
+ "public-key-definition": "A public key is a set of characters that lets others send you digital currency securely, like an email address for money.",
+ "quadratic-voting-term": "Quadratic voting",
+ "quadratic-voting-definition": "Is a voting method where voters express how strongly they feel about issues. It allows voters to show not just preference, but also the intensity of their preference.",
"receipt-term": "Receipt",
"receipt-definition": "Data returned by an Ethereum client to represent the result of a particular transaction, including a hash of the transaction, its block number, the amount of gas used, and, in case of deployment of a smart contract, the address of the contract.",
+ "recovery-phrase-term": "Seed phrase/recovery phrase",
+ "recovery-phrase-definition": "A list of words given to you when you create a digital wallet. It acts like a password that can help you get back into your wallet if you lose access, making sure you don't lose your digital money or tokens.",
"re-entrancy-attack-term": "Re-entrancy attack",
- "re-entrancy-attack-definition": "An attack that consists of an attacker contract calling a victim contract function in such a way that during execution the victim calls the attacker contract again, recursively. This can result, for example, in the theft of funds by skipping parts of the victim contract that update balances or count withdrawal amounts. More on re-entrancy.",
+ "re-entrancy-attack-definition": "An attack that consists of an attacker contract calling a victim contract function in such a way that during execution the victim calls the attacker contract again, recursively. This can result, for example, in the theft of funds by skipping parts of the victim contract that update balances or count withdrawal amounts.< href=\"/developers/docs/smart-contracts/security/#re-entrancy\">More on re-entrancy.",
"reward-term": "Reward",
"reward-definition": "An amount of ether included in each new block as a reward by the network to the miner who found the proof-of-work solution.",
"rlp-term": "Recursive Length Prefix (RLP)",
@@ -258,13 +306,15 @@
"rollups-term": "Rollups",
"rollups-definition": "A type of layer 2 scaling solution that batches multiple transactions and submits them to the Ethereum main chain in a single transaction. This allows for reductions in gas costs and increases in transaction throughput. There are Optimistic and Zero-knowledge rollups which use different security methods to offer these scalability gains. More on rollups.",
"rpc-term": "Remote procedure call (RPC)",
- "rpc-definition": "Remote procedure call (RPC) is a protocol that a program uses to request a service from a program located on another computer in a network without having to understand the network details.",
+ "rpc-definition": "RPC lets one computer request data or action from another over a network, like asking for info with a remote control.",
"sha-term": "Secure Hash Algorithm (SHA)",
"sha-definition": "A family of cryptographic hash functions published by the National Institute of Standards and Technology (NIST).",
"serialization-term": "Serialization",
"serialization-definition": "The process of converting a data structure into a sequence of bytes.",
+ "sequencer-term": "Sequencer",
+ "sequencer-definition": "A sequencer is a program responsible for ordering transactions in a blockchain network, particularly within Layer 2 scaling solutions.",
"shard-term": "Shard / shard chain",
- "shard-definition": "Shard chains are discrete sections of the total blockchain that subsets of validators can be responsible for. This will offer increased transaction throughput for Ethereum and improve data availability for layer 2 solutions like optimistic rollups and ZK-rollups. More on danksharding.",
+ "shard-definition": "Shard chains are discrete sections of the total blockchain that subsets of validators can be responsible for. This will offer increased transaction throughput for Ethereum and improve data availability for layer 2 solutions like optimistic rollups and ZK-rollups. More on danksharding.",
"sidechain-term": "Sidechain",
"sidechain-definition": "A scaling solution that uses a separate chain with different, often faster, consensus rules. A bridge is needed to connect these sidechains to Mainnet. Rollups also use sidechains, but they operate in collaboration with Mainnet instead. More on sidechains.",
"signing-term": "Signing",
@@ -276,7 +326,7 @@
"slot-term": "Slot",
"slot-definition": "A period of time (12 seconds) in which new blocks can be proposed by a validator in the proof-of-stake system. A slot may be empty. 32 slots make up an epoch. More on proof-of-stake.",
"smart-contract-term": "Smart contract",
- "smart-contract-definition": "A program that executes on the Ethereum computing infrastructure. Introduction to smart contracts.",
+ "smart-contract-definition": "A smart contract is a program that automatically executes agreements on a blockchain, like a self-enforcing digital contract. Introduction to smart contracts.",
"snark-term": "SNARK",
"snark-definition": "Short for \"succinct non-interactive argument of knowledge\", a SNARK is a type of zero-knowledge proof. More on zero-knowledge rollups.",
"soft-fork-term": "Soft fork",
@@ -286,7 +336,7 @@
"solidity-inline-assembly-term": "Solidity inline assembly",
"solidity-inline-assembly-definition": "EVM assembly language in a Solidity program. Solidity's support for inline assembly makes it easier to write certain operations.",
"stablecoin-term": "Stablecoin",
- "stablecoin-definition": "An ERC-20 token with a value pegged to another asset's value. There are stablecoins backed by fiat currency like dollars, precious metals like gold, and other cryptocurrencies like Bitcoin.",
+ "stablecoin-definition": "A stablecoin is a type of cryptocurrency designed to have a stable value, often pegged to a currency or commodity (like US dollar), to minimize price volatility. More on stablecoins.",
"staking-term": "Staking",
"staking-definition": "Depositing a quantity of ether (your stake) to become a validator and secure the network. A validator checks transactions and proposes blocks under a proof-of-stake consensus model. Staking gives you an economic incentive to act in the best interests of the network. You'll get rewards for carrying out your validator duties, but lose varying amounts of ETH if you don't. More on Ethereum staking.",
"staking-pool-term": "Staking pool",
@@ -315,6 +365,8 @@
"transaction-definition": "Data committed to the Ethereum Blockchain signed by an originating account, targeting a specific address. The transaction contains metadata such as the gas limit for that transaction. More on transactions.",
"transaction-fee-term": "Transaction fee",
"transaction-fee-definition": "A fee you need to pay whenever you use the Ethereum network. Examples include sending funds from your wallet or a dapp interaction, like swapping tokens or buying a collectable. You can think of this like a service charge. This fee will change based on how busy the network is. This is because validators, the people responsible for processing your transaction, are likely to prioritize transactions with higher fees – so congestion forces the price up.
At a technical level, your transaction fee relates to how much gas your transaction requires.
Reducing transaction fees is a subject of intense interest right now. See Layer 2.",
+ "trust-assumptions-term": "Trust assumptions",
+ "trust-assumptions-definition": "Trust assumptions are basic beliefs about a system's safety and dependability, guiding what we trust for the system to function.",
"trustlessness-term": "Trustlessness",
"trustlessness-definition": "The ability of a network to mediate transactions without any of the involved parties needing to trust a third party.",
"turing-complete-term": "Turing complete",
@@ -330,9 +382,11 @@
"vyper-term": "Vyper",
"vyper-definition": "A high-level programming language with Python-like syntax. Intended to get closer to a pure functional language. Created by Vitalik Buterin. More on Vyper.",
"wallet-term": "Wallet",
- "wallet-definition": "Software that holds private keys. Used to access and control Ethereum accounts and interact with smart contracts. Keys need not be stored in a wallet, and can instead be retrieved from offline storage (i.e. a memory card or paper) for improved security. Despite the name, wallets never store the actual coins or tokens. More on Ethereum wallets.",
+ "wallet-definition": "A wallet is a digital tool to store, send, and receive digital currency, like a virtual purse for your online money. More on Ethereum wallets.",
+ "web2-term": "Web2",
+ "web2-definition": "Is the current internet, focused on user-generated content and social media that are controlled by few companies. Web3 is a crypto belief that users should control their data and transactions instead.",
"web3-term": "Web3",
- "web3-definition": "The third version of the web. First proposed by Dr. Gavin Wood, Web3 represents a new vision and focus for web applications - from centrally owned and managed applications, to applications built on decentralized protocols. More on web3.",
+ "web3-definition": "Web3 is the new internet with blockchain, where users control their data and transactions, not companies. No need to share any personal information. More on web3.",
"wei-term": "Wei",
"wei-definition": "The smallest denomination of ether. 1018 wei = 1 ether.",
"zero-address-term": "Zero address",
@@ -340,5 +394,5 @@
"zk-proof-term": "Zero-knowledge proof",
"zk-proof-definition": "A zero-knowledge proof is a cryptographic method that allows an individual to prove that a statement is true without conveying any additional information. More on zero-knowledge rollups.",
"zk-rollup-term": "Zero-knowledge rollup",
- "zk-rollup-definition": "A rollup of transactions that use validity proofs to offer increased layer 2 transaction throughput while using the security provided by Mainnet (layer 1). Although they can't handle complex transaction types, like optimistic rollups, they don't have latency issues because transactions are provably valid when submitted. More on zero-knowledge rollups."
+ "zk-rollup-definition": "A rollup of transactions that use validity proofs to offer increased layer 2 transaction throughput while using the security provided by Mainnet (layer 1). Although they can't handle complex transaction types, like optimistic rollups, they don't have latency issues because transactions are provably valid when submitted. More on zero-knowledge rollups."
}
diff --git a/src/intl/en/page-dapps.json b/src/intl/en/page-dapps.json
index 33124ce32ed..68ca2de3b69 100644
--- a/src/intl/en/page-dapps.json
+++ b/src/intl/en/page-dapps.json
@@ -98,7 +98,7 @@
"page-dapps-dapp-description-mirror": "Built on web3 for web3, Mirror’s robust publishing platform pushes the boundaries of writing online",
"page-dapps-dapp-description-multichain": "The ultimate Router for web3. It is an infrastructure developed for arbitrary cross-chain interactions.",
"page-dapps-dapp-description-nifty-gateway": "Buy works on-chain from top artists, athletes, brands, and creators.",
- "page-dapps-dapp-description-oasis": "Trade, borrow, and save with Dai, an Ethereum stablecoin.",
+ "page-dapps-dapp-description-summerfi": "Trade, borrow, and save with Dai, an Ethereum stablecoin.",
"page-dapps-dapp-description-opensea": "Buy, sell, discover, and trade limited-edition goods.",
"page-dapps-dapp-description-opera": "Send crypto from your browser to merchants, other users and apps.",
"page-dapps-dapp-description-osuvox": "3D avatars living on the blockchain",
@@ -164,7 +164,7 @@
"page-dapps-finance-benefits-1-title": "Open access",
"page-dapps-finance-benefits-2-description": "There’s a whole world of tokens that you can interact with across these financial products. People are building new tokens on top of Ethereum all the time.",
"page-dapps-finance-benefits-2-title": "A new token economy",
- "page-dapps-finance-benefits-3-description": "Teams have built stablecoins – a less volatile cryptocurrency. These allow you to experiment and use crypto without the risk and uncertainty.",
+ "page-dapps-finance-benefits-3-description": "Teams have built stablecoins – a less volatile cryptocurrency. These allow you to experiment and use crypto without the risk and uncertainty.",
"page-dapps-finance-benefits-3-title": "Stablecoins",
"page-dapps-finance-benefits-4-description": "Financial products in the Ethereum space are all modular and compatible with one another. New configurations of these modules are hitting the market all the time, increasing what you can do with your crypto.",
"page-dapps-finance-benefits-4-title": "Interconnected financial services",
@@ -186,7 +186,7 @@
"page-dapps-gaming-description": "These are applications that focus on the creation of virtual worlds and battling other players using collectibles that hold real-world value.",
"page-dapps-gaming-title": "Decentralized gaming",
"page-dapps-get-some-eth-description": "Dapp actions cost a transaction fee",
- "page-dapps-get-started-subtitle": "To try a dapp, you'll need a wallet and some ETH. A wallet will allow you to connect, or log in. And you'll need ETH to pay any transaction fees.",
+ "page-dapps-get-started-subtitle": "To try a dapp, you'll need a wallet and some ETH. A wallet will allow you to connect, or log in. And you'll need ETH to pay any transaction fees.",
"page-dapps-get-started-title": "Get started",
"page-dapps-gitcoin-grants-logo-alt": "Gitcoin Grants logo",
"page-dapps-gitcoin-logo-alt": "Gitcoin logo",
@@ -197,7 +197,7 @@
"page-dapps-radicle-logo-alt": "Radicle logo",
"page-dapps-hero-header": "Ethereum-powered tools and services",
"page-dapps-hero-subtitle": "Dapps are a growing movement of applications that use Ethereum to disrupt business models or invent new ones.",
- "page-dapps-how-dapps-work-p1": "Dapps have their backend code (smart contracts) running on a decentralized network and not a centralized server. They use the Ethereum blockchain for data storage and smart contracts for their app logic.",
+ "page-dapps-how-dapps-work-p1": "Dapps have their backend code (smart contracts) running on a decentralized network and not a centralized server. They use the Ethereum blockchain for data storage and smart contracts for their app logic.",
"page-dapps-how-dapps-work-p2": "A smart contract is like a set of rules that live on-chain for all to see and run exactly according to those rules. Imagine a vending machine: if you supply it with enough funds and the right selection, you'll get the item you want. And like vending machines, smart contracts can hold funds much like your Ethereum account. This allows code to mediate agreements and transactions.",
"page-dapps-how-dapps-work-p3": "Once dapps are deployed on the Ethereum network you can't change them. Dapps can be decentralized because they are controlled by the logic written into the contract, not an individual or a company.",
"page-dapps-how-dapps-work-title": "How dapps work",
@@ -231,7 +231,7 @@
"page-dapps-mobile-options-header": "Browse another category",
"page-dapps-multichain-logo-alt": "Multichain logo",
"page-dapps-nifty-gateway-logo-alt": "Nifty Gateway logo",
- "page-dapps-oasis-logo-alt": "Oasis logo",
+ "page-dapps-summerfi-logo-alt": "Summer.fi logo",
"page-dapps-opensea-logo-alt": "OpenSea logo",
"page-dapps-opera-logo-alt": "Opera logo",
"page-dapps-osuvox-logo-alt": "OSUVOX logo",
@@ -279,7 +279,6 @@
"page-dapps-dapp-description-convex": "Convex allows Curve liquidity providers to earn trading fees and claim boosted CRV without locking their CRV.",
"page-dapps-convex-image-alt": "Convex logo",
"foundation": "Foundation",
- "transaction-fees": "What are transaction fees?",
"page-wallets-get-some": "Get some ETH",
"page-dapps-dapp-description-curve": "Curve is a dex focused on stablecoins",
"page-dapps-curve-image-alt": "Curve logo",
diff --git a/src/intl/en/page-eth.json b/src/intl/en/page-eth.json
index 3992039b0a2..abcf7132bc3 100644
--- a/src/intl/en/page-eth.json
+++ b/src/intl/en/page-eth.json
@@ -1,11 +1,11 @@
{
"page-eth-buy-some": "Want to buy some Ethereum?",
- "page-eth-buy-some-desc": "It's common to mix up Ethereum and ETH. Ethereum is the blockchain and ETH is the primary asset of Ethereum. ETH is what you're probably looking to buy.",
+ "page-eth-buy-some-desc": "It's common to mix up Ethereum and ETH. Ethereum is the blockchain and ETH is the primary asset of Ethereum. ETH is what you're probably looking to buy.",
"page-eth-cat-img-alt": "Graphic of ETH glyph with a kaleidoscope of cats",
"page-eth-collectible-tokens": "Collectible tokens",
"page-eth-collectible-tokens-desc": "Tokens that represent a collectible game item, piece of digital art, or other unique assets. Commonly known as non-fungible tokens (NFTs).",
"page-eth-cryptography": "Secured by cryptography",
- "page-eth-cryptography-desc": "Internet money may be new but it's secured by proven cryptography. This protects your wallet, your ETH, and your transactions. ",
+ "page-eth-cryptography-desc": "Internet money may be new but it's secured by proven cryptography. This protects your wallet, your ETH, and your transactions. ",
"page-eth-currency-for-apps": "It's the currency of Ethereum apps.",
"page-eth-currency-for-future": "Currency for our digital future",
"page-eth-description": "ETH is a cryptocurrency. It is scarce digital money that you can use on the internet – similar to Bitcoin. If you’re new to crypto, here's how ETH is different from traditional money.",
@@ -15,7 +15,7 @@
"page-eth-fuels": "ETH fuels and secures Ethereum",
"page-eth-fuels-desc": "ETH is the lifeblood of Ethereum. When you send ETH or use an Ethereum application, you'll pay a fee in ETH to use the Ethereum network. This fee is an incentive for a block producer to process and verify what you're trying to do.",
"page-eth-fuels-desc-2": "Validators are like the record-keepers of Ethereum—they check and prove that no one is cheating. They are randomly selected to propose a block of transactions. Validators who do this work are also rewarded with small amounts of newly-issued ETH.",
- "page-eth-fuels-desc-3": "The work validators do, and the capital they stake, keeps Ethereum secure and free of centralized control.",
+ "page-eth-fuels-desc-3": "The work validators do, and the capital they stake, keeps Ethereum secure and free of centralized control.",
"page-eth-fuels-staking": "When you stake your ETH, you help secure Ethereum and earn rewards. In this system, the threat of losing ETH deters attackers.",
"page-eth-fuels-more-staking": "More on staking",
"page-eth-get-eth-btn": "Get ETH",
@@ -27,9 +27,7 @@
"page-eth-has-value-desc-3": "Others see it as a digital store of value because the creation of new ETH slows down over time.",
"page-eth-has-value-desc-4": "More recently, ETH has become valuable to users of financial apps on Ethereum. That's because you can use ETH as collateral for crypto loans, or as a payment system.",
"page-eth-has-value-desc-5": "Of course many also see it as an investment, similar to Bitcoin or other cryptocurrencies.",
- "page-eth-how-to-buy": "How to buy Ether",
- "page-eth-how-to-buy-caption": "Updated often",
- "page-eth-is-money": "ETH is digital, global money.",
+ "page-eth-is-money": "Ether coin (ETH) is digital, global money.",
"page-eth-last-updated": "January 2019",
"page-eth-monetary-policy": "Ethereum's monetary policy",
"page-eth-more-on-ethereum-link": "More on Ethereum",
@@ -55,7 +53,7 @@
"page-eth-tokens-link": "Ethereum tokens",
"page-eth-trade-link-2": "Swap tokens",
"page-eth-underpins": "ETH underpins the Ethereum financial system",
- "page-eth-underpins-desc": "Not satisfied with payments, the Ethereum community is building a whole financial system that's peer-to-peer and accessible to everyone.",
+ "page-eth-underpins-desc": "Not satisfied with payments, the Ethereum community is building a whole financial system that's peer-to-peer and accessible to everyone.",
"page-eth-underpins-desc-2": "You can use ETH as collateral to generate entirely different cryptocurrency tokens on Ethereum. Plus you can borrow, lend and earn interest on ETH and other ETH-backed tokens.",
"page-eth-uses": "Uses for ETH grow every day",
"page-eth-uses-desc": "Because Ethereum is programmable, developers can shape ETH in countless ways.",
@@ -77,7 +75,7 @@
"page-eth-where-to-buy": "Where to get ETH",
"page-eth-where-to-buy-desc": "You can get ETH from an exchange or a wallet but different countries have different policies. Check to see the services that will let you buy ETH.",
"page-eth-yours": "It's really yours",
- "page-eth-yours-desc": "ETH lets you be your own bank. You can control your own funds with your wallet as proof of ownership – no third parties necessary.",
+ "page-eth-yours-desc": "ETH lets you be your own bank. You can control your own funds with your wallet as proof of ownership – no third parties necessary.",
"page-eth-more-on-tokens": "More on tokens and their uses",
"page-eth-button-buy-eth": "Get ETH",
"page-eth-tokens-stablecoins": "Stablecoins",
diff --git a/src/intl/en/page-gas.json b/src/intl/en/page-gas.json
index 73bba191cda..6074f92e531 100644
--- a/src/intl/en/page-gas.json
+++ b/src/intl/en/page-gas.json
@@ -9,10 +9,10 @@
"page-gas-summary-title": "Summary",
"page-gas-summary-item-1": "Every transaction on Ethereum requires a small form of payment to process",
"page-gas-summary-item-2": "These fees are known as ‘gas’ fee",
- "page-gas-summary-item-3": "Gas fees change based on network congestion",
+ "page-gas-summary-item-3": "Gas fees are not set, they change based on network congestion",
"page-gas-what-are-gas-fees-header": "What are gas fees?",
"page-gas-what-are-gas-fees-text-1": "Think of Ethereum as a large computer network where people can do tasks like sending messages or running programs. Just like in the real world, these tasks require energy to get done.",
- "page-gas-what-are-gas-fees-text-2": "In Ethereum, each computational action has a set \"gas\" price. Your gas fees are the total cost of the actions in your transaction. When you send a transaction or run a smart contract, you pay in gas fees to process it.",
+ "page-gas-what-are-gas-fees-text-2": "In Ethereum, each computational action has a set \"gas\" price. Your gas fees are the total cost of the actions in your transaction. When you send a transaction or run a smart contract, you pay in gas fees to process it.",
"page-gas-how-do-i-pay-less-gas-header": "How do I pay less gas?",
"page-gas-how-do-i-pay-less-gas-text": "While higher fees on Ethereum are sometimes inevitable, there are strategies you can use to reduce the cost:",
"page-gas-how-do-i-pay-less-gas-card-1-title": "Time your transactions",
@@ -24,7 +24,7 @@
"page-gas-try-layer-2": "Try layer 2",
"page-gas-what-causes-high-gas-fees-header": "What causes high gas fees?",
"page-gas-what-causes-high-gas-fees-text-1": "Whenever the amount of computation (gas) on Ethereum exceeds a certain threshold, gas fees begin to rise. The more the gas exceeds this threshold, the quicker gas fees increase.",
- "page-gas-what-causes-high-gas-fees-text-2": "Higher fees could be caused by things like popular dapps or NFTs, periodically increased trading on DEXs, or an overwhelming number of user activity at peak times.",
+ "page-gas-what-causes-high-gas-fees-text-2": "Higher fees could be caused by things like popular decentralized apps (dapps) or NFTs, periodically increased trading on DEXs, or an overwhelming number of user activity at peak times.",
"page-gas-what-causes-high-gas-fees-text-3": "Developers on Ethereum should take care to optimise their smart contracts usage before deploying. If lots of people are using a poorly written smart contract, it will consume more gas and could inadvertently cause network congestion.",
"page-gas-want-to-dive-deeper": "Want to dive deeper?",
"page-gas-check-out-the-developer-docs": "Check out the developer docs.",
@@ -32,8 +32,8 @@
"page-gas-attack-of-the-cryptokitties-text": "In November 2017, the popular CryptoKitties project was launched. Its rapid spike in popularity caused significant network congestion and extremely high gas fees. The challenges posed by CryptoKitties accelerated the urgency of finding solutions for scaling Ethereum.",
"page-gas-why-do-we-need-gas-header": "Why do we need gas?",
"page-gas-why-do-we-need-gas-text": "Gas is a critical element in keeping Ethereum secure and processing transactions. Gas helps in many ways:",
- "page-gas-benefits-1-description": "Gas keeps Ethereum sybil-resistant by preventing malicious actors from overwhelming the network with fraudulent activities.",
- "page-gas-benefits-2-description": "Because computation costs gas, spamming Ethereum with expensive transactions, either accidentally and maliciously, is financially disencentivised.",
+ "page-gas-benefits-1-description": "Gas keeps Ethereum sybil-resistant by preventing malicious actors from overwhelming the network with fraudulent activities.",
+ "page-gas-benefits-2-description": "Because computation costs gas, spamming Ethereum with expensive transactions, either accidentally and maliciously, is financially disincentivized.",
"page-gas-benefits-3-description": "A hard-limit on the amount of computation that can be done at any one time prevents Ethereum from being overwhelmed, helping to ensure the network is always accessible.",
"page-gas-how-is-gas-calculated-header": "How is gas calculated?",
"page-gas-advanced": "Advanced",
@@ -50,9 +50,9 @@
"page-gas-table-item-2-transaction-type": "Sending ERC-20 tokens",
"page-gas-table-item-3-transaction-type": "Transferring an NFT",
"page-gas-table-item-4-transaction-type": "Swapping on Uniswap",
- "page-gas-faq-header": "Frequency asked questions",
+ "page-gas-faq-header": "Frequently asked questions",
"page-gas-faq-question-1-q": "Who gets paid the gas fee in my transaction?",
- "page-gas-faq-question-1-a-1": "The majority is gas fee—the base fee— is destroyed by the protocol (burned). The priority fee, if included in your transaction, will be given to the validator who proposed your transaction.",
+ "page-gas-faq-question-1-a-1": "The majority of the gas fee—the base fee— is destroyed by the protocol (burned). The priority fee, if included in your transaction, will be given to the validator who proposed your transaction.",
"page-gas-faq-question-1-a-2": "You can read a detailed description of the process in the gas developer docs.",
"page-gas-faq-question-2-q": "Do I need to pay gas in ETH?",
"page-gas-faq-question-2-a-1": "Yes. All gas fees on Ethereum must be paid in the native ETH currency.",
diff --git a/src/intl/en/page-get-eth.json b/src/intl/en/page-get-eth.json
index 7e07bc8053c..d5b5a23fd34 100644
--- a/src/intl/en/page-get-eth.json
+++ b/src/intl/en/page-get-eth.json
@@ -11,7 +11,7 @@
"page-get-eth-community-safety": "Community posts on security",
"page-get-eth-description": "Ethereum isn't controlled by any single organization - it is decentralized.",
"page-get-eth-dex": "Decentralized exchanges (DEXs)",
- "page-get-eth-dex-desc": "If you want more control, buy ETH using smart contracts. With a DEX you can trade digital assets without ever giving control of your funds to a centralized company.",
+ "page-get-eth-dex-desc": "If you want more control, buy ETH using smart contracts. With a DEX you can trade digital assets without ever giving control of your funds to a centralized company.",
"page-get-eth-peers": "Receive ETH from your peers",
"page-get-eth-peers-desc": "Once you have an Ethereum account, all you need to do is share your address to start sending and receiving ETH (and other tokens) peer-to-peer.",
"page-get-eth-staking": "Staking rewards",
diff --git a/src/intl/en/page-layer-2.json b/src/intl/en/page-layer-2.json
index 1bc7b299858..450738efa3a 100644
--- a/src/intl/en/page-layer-2.json
+++ b/src/intl/en/page-layer-2.json
@@ -15,24 +15,24 @@
"layer-2-statsbox-2": "Average layer 2 ETH transfer fee (USD)",
"layer-2-statsbox-3": "Layer 2 TVL change (30 days)",
"layer-2-what-is-layer-2-title": "What is layer 2?",
- "layer-2-what-is-layer-2-1": "Layer 2 (L2) is a collective term to describe a specific set of Ethereum scaling solutions. A layer 2 is a separate blockchain that extends Ethereum and inherits the security guarantees of Ethereum.",
+ "layer-2-what-is-layer-2-1": "Layer 2 (L2) is a collective term to describe a specific set of Ethereum scaling solutions. A layer 2 is a separate blockchain that extends Ethereum and inherits the security guarantees of Ethereum.",
"layer-2-what-is-layer-2-2": "Now let’s dig into it a bit more. To do this we first need to explain layer 1 (L1).",
"layer-2-what-is-layer-1-title": "What is layer 1?",
"layer-2-what-is-layer-1-1": "Layer 1 is the base blockchain. Ethereum and Bitcoin are both layer 1 blockchains because they are the underlying foundation that various layer 2 networks build on top of. Examples of layer 2 projects include \"rollups\" on Ethereum and the Lightning Network on Bitcoin. All user transaction activity on these layer 2 projects can ultimately settle back to the layer 1 blockchain.",
- "layer-2-what-is-layer-1-2": "Ethereum also functions as a data availability layer for layer 2s. Layer 2 projects will post their transaction data onto Ethereum, relying on Ethereum for data availability. This data can be used to get the state of the layer 2, or to dispute transactions on layer 2.",
+ "layer-2-what-is-layer-1-2": "Ethereum also functions as a data availability layer for layer 2s. Layer 2 projects will post their transaction data onto Ethereum, relying on Ethereum for data availability. This data can be used to get the state of the layer 2, or to dispute transactions on layer 2.",
"layer-2-what-is-layer-1-list-title": "Ethereum as the layer 1 includes:",
- "layer-2-what-is-layer-1-list-1": "A network of node operators to secure and validate the network",
+ "layer-2-what-is-layer-1-list-1": "A network of node operators to secure and validate the network",
"layer-2-what-is-layer-1-list-2": "A network of block producers",
"layer-2-what-is-layer-1-list-3": "The blockchain itself and the history of transaction data",
- "layer-2-what-is-layer-1-list-4": "The consensus mechanism for the network",
+ "layer-2-what-is-layer-1-list-4": "The consensus mechanism for the network",
"layer-2-what-is-layer-1-list-link-1": "Still confused on Ethereum?",
"layer-2-what-is-layer-1-list-link-2": "Learn what Ethereum is.",
"layer-2-why-do-we-need-layer-2-title": "Why do we need layer 2?",
"layer-2-why-do-we-need-layer-2-1": "Three desirable properties of a blockchain are that it is decentralized, secure, and scalable. The blockchain trilemma states that a simple blockchain architecture can only achieve two out of three. Want a secure and decentralized blockchain? You need to sacrifice scalability.",
- "layer-2-why-do-we-need-layer-2-2": "Ethereum currently processes 1+ million transactions per day. The demand to use Ethereum can cause transaction fee prices to be high. This is where layer 2 networks come in.",
+ "layer-2-why-do-we-need-layer-2-2": "Ethereum currently processes 1+ million transactions per day. The demand to use Ethereum can cause transaction fee prices to be high. This is where layer 2 networks come in.",
"layer-2-why-do-we-need-layer-2-scalability": "Scalability",
"layer-2-why-do-we-need-layer-2-scalability-1": "The main goal of layer 2 is to increase transaction throughput (higher transactions per second) without sacrificing decentralization or security.",
- "layer-2-why-do-we-need-layer-2-scalability-2": "Ethereum Mainnet (layer 1) is only able to process roughly 15 transactions per second. When demand to use Ethereum is high, the network becomes congested, which increases transaction fees and prices out users who cannot afford those fees. Layer 2s are solutions that reduce those fees by processing transactions off the layer-1 blockchain.",
+ "layer-2-why-do-we-need-layer-2-scalability-2": "Ethereum Mainnet (layer 1) is only able to process roughly 15 transactions per second. When demand to use Ethereum is high, the network becomes congested, which increases transaction fees and prices out users who cannot afford those fees. Layer 2s are solutions that reduce those fees by processing transactions off the layer-1 blockchain.",
"layer-2-why-do-we-need-layer-2-scalability-3": "More on Ethereum's vision",
"layer-2-benefits-of-layer-2-title": "Benefits of layer 2",
"layer-2-lower-fees-title": "Lower fees",
@@ -55,17 +55,17 @@
"layer-2-zk-rollups-childSentance": "More on ZK-rollups",
"layer-2-dyor-title": "Do your own research: risks of layer 2",
"layer-2-dyor-1": "Many layer 2 projects are relatively young and still require users to trust some operators to be honest as they work to decentralize their networks. Always do your own research to decide if you're comfortable with any risks involved.",
- "layer-2-dyor-2": "For more information on the technology, risks, and trust assumptions of layer 2s, we recommend checking out L2BEAT, which provides a comprehensive risk assessment framework of each project.",
+ "layer-2-dyor-2": "For more information on the technology, risks, and trust assumptions of layer 2s, we recommend checking out L2BEAT, which provides a comprehensive risk assessment framework of each project.",
"layer-2-dyor-3": "Go to L2BEAT",
"layer-2-use-layer-2-title": "Use layer 2",
"layer-2-use-layer-2-1": "Now that you understand why layer 2 exists and how it works, let's get you up and running!",
- "layer-2-contract-accounts": "If you are using smart contract wallet such as Safe or Argent, you will not have control over this address on a layer 2 until you redeploy your contract account to that address on the layer 2. Classic accounts with recovery phrase will automatically own the same account on all layer 2 networks.",
+ "layer-2-contract-accounts": "If you are using smart contract wallet such as Safe or Argent, you will not have control over this address on a layer 2 until you redeploy your contract account to that address on the layer 2. Classic accounts with recovery phrase will automatically own the same account on all layer 2 networks.",
"layer-2-use-layer-2-generalized-title": "Generalized layer 2s",
- "layer-2-use-layer-2-generalized-1": "Generalized layer 2s behave just like Ethereum — but cheaper. Anything that you can do on Ethereum layer 1, you can also do on layer 2. Many dapps have already begun to migrate to these networks or have skipped Mainnet altogether to deploy straight on a layer 2.",
+ "layer-2-use-layer-2-generalized-1": "Generalized layer 2s behave just like Ethereum — but cheaper. Anything that you can do on Ethereum layer 1, you can also do on layer 2. Many dapps have already begun to migrate to these networks or have skipped Mainnet altogether to build projects straight on a layer 2.",
"layer-2-use-layer-2-application-specific-title": "Application specific layer 2s",
"layer-2-use-layer-2-application-specific-1": "Application specific layer 2s are projects that specialize in optimizing for a specific application space, bringing improved performance.",
"layer-2-sidechains-title": "A note on sidechains, validiums, and alternative blockchains",
- "layer-2-sidechains-1": "Sidechains and validiums are blockchains that allow assets from Ethereum to be bridged over and used on another blockchain. Sidechains and validiums run in parallel with Ethereum, and interact with Ethereum through bridges, but they do not derive their security or data availability from Ethereum.",
+ "layer-2-sidechains-1": "Sidechains and validiums are blockchains that allow assets from Ethereum to be bridged over and used on another blockchain. Sidechains and validiums run in parallel with Ethereum, and interact with Ethereum through bridges, but they do not derive their security or data availability from Ethereum.",
"layer-2-sidechains-2": "Both scale similarly to layer 2s - they offer lower transaction fees and higher transaction throughput - but have different trust assumptions.",
"layer-2-more-on-sidechains": "More info on sidechains",
"layer-2-more-on-validiums": "More info on validiums",
@@ -89,7 +89,7 @@
"layer-2-go-to": "Go to",
"layer-2-tools-title": "Tools to be effective on layer 2",
"layer-2-tools-l2beat-description": "L2BEAT is a great resource for looking at technical risk assessments of layer 2 projects. We recommend checking out their resources when researching specific layer 2 projects.",
- "layer-2-tools-growthepie-description": "Curated analytics about Ethereun layer 2s",
+ "layer-2-tools-growthepie-description": "Curated analytics about Ethereum layer 2s",
"layer-2-tools-l2fees-description": "L2 Fees lets you see the current cost (denominated in USD) for doing transactions on different layer 2s.",
"layer-2-tools-chainlist-description": "Chainlist is a great resource for importing network RPC's into supporting wallets. You will find RPC's for layer 2 projects here to help get you connected.",
"layer-2-tools-zapper-description": "Manage your entire web3 portfolio from DeFi to NFTs and whatever comes next. Invest in the latest opportunities from one convenient place.",
@@ -105,7 +105,7 @@
"layer-2-more-info-on-optimistic-rollups": "More info on optimistic rollups",
"layer-2-more-info-on-zk-rollups": "More info on zero-knowledge rollups",
"layer-2-faq-question-4-title": "What are the risks with layer 2?",
- "layer-2-faq-question-4-description-1": "Layer 2 projects contain additional risks compared to holding funds and transacting directly on Ethereum Mainnet. For instance, sequencers may go down, leading you to have to wait to access funds.",
+ "layer-2-faq-question-4-description-1": "Layer 2 projects contain additional risks compared to holding funds and transacting directly on Ethereum Mainnet. For instance, sequencers may go down, leading you to have to wait to access funds.",
"layer-2-faq-question-4-description-2": "We encourage you to do your own research before transferring significant funds to a layer 2. For more information on the technology, risks, and trust assumptions of layer 2s, we recommend checking out L2BEAT, which provides a comprehensive risk assessment framework of each project.",
"layer-2-faq-question-4-description-3": "Blockchain bridges, which facilitate asset transfers to layer 2, are in their early stages of development and it is likely that the optimal bridge design has not been discovered yet. There have been recent hacks of bridges.",
"layer-2-faq-question-5-title": "Why aren't some layer 2 projects listed here?",
diff --git a/src/intl/en/page-run-a-node.json b/src/intl/en/page-run-a-node.json
index ae242d75785..29b9ca73a80 100644
--- a/src/intl/en/page-run-a-node.json
+++ b/src/intl/en/page-run-a-node.json
@@ -60,7 +60,7 @@
"page-run-a-node-getting-started-software-section-1-link": "Spin up an Ethereum node",
"page-run-a-node-getting-started-software-section-2": "Now we have DAppNode, which is free and open-source software that gives users an app-like experience while managing their node.",
"page-run-a-node-getting-started-software-section-3a": "In just a few taps you can have your node up and running.",
- "page-run-a-node-getting-started-software-section-3b": "DAppNode makes it easy for users to run full nodes, as well as dapps and other P2P networks, with no need to touch the command-line. This makes it easier for everyone to participate and create a more decentralized network.",
+ "page-run-a-node-getting-started-software-section-3b": "DAppNode makes it easy for users to run full nodes, as well as dapps and other P2P networks, with no need to touch the command-line. This makes it easier for everyone to participate and create a more decentralized network.",
"page-run-a-node-getting-started-software-title": "Part 2: Software",
"page-run-a-node-glyph-alt-terminal": "Terminal glyph",
"page-run-a-node-glyph-alt-phone": "Phone tap glyph",
@@ -78,7 +78,6 @@
"page-run-a-node-hero-header": "Take full control. Run your own node.",
"page-run-a-node-hero-subtitle": "Become fully sovereign while helping secure the network. Become Ethereum.",
"page-run-a-node-hero-cta-1": "Learn more",
- "page-run-a-node-hero-cta-2": "Let's dive in!",
"page-run-a-node-install-manually-title": "Install manually",
"page-run-a-node-install-manually-1": "If you're a more technical user and have decided to build your own device, DAppNode can be downloaded from any computer and installed onto a fresh SSD via a USB drive.",
"page-run-a-node-meta-description": "An introduction on what, why, and how to run an Ethereum node.",
@@ -93,8 +92,6 @@
"page-run-a-node-privacy-3": "Also, if a malicious node distributes an invalid transaction, your node will simply disregard it. Every transaction is verified locally on your own machine, so you don't need to trust anyone.",
"page-run-a-node-rasp-pi-title": "A note on Raspberry Pi (ARM processor)",
"page-run-a-node-rasp-pi-description": "Raspberry Pis are lightweight and affordable computers, but they have limitations that may impact the performance of your node. Though not currently recommended for staking, these can be an excellent and inexpensive option for running a node for personal use, with as little as 4 - 8 GB of RAM.",
- "page-run-a-node-rasp-pi-note-1-link": "DAppNode on ARM",
- "page-run-a-node-rasp-pi-note-1-description": "See these instructions if you plan on running DAppNode on a Raspberry Pi",
"page-run-a-node-rasp-pi-note-2-link": "Ethereum on ARM documentation",
"page-run-a-node-rasp-pi-note-2-description": "Learn how to set up a node via the command line on a Raspberry Pi",
"page-run-a-node-rasp-pi-note-3-link": "Run a node with Raspberry Pi",
@@ -126,8 +123,8 @@
"page-run-a-node-what-3-subtitle": "While online.",
"page-run-a-node-what-3-text": "Running an Ethereum node may sound complicated at first, but it's merely the act of continuously running client software on a computer while connected to the internet. While offline, your node will simply be inactive until it gets back online and catches up with the latest changes.",
"page-run-a-node-who-title": "Who should run a node?",
- "page-run-a-node-who-preview": "Everyone! Nodes are not just for proof-of-stake validators. Anyone can run a node—you don't even need ETH.",
- "page-run-a-node-who-copy-1": "You don't need to stake ETH to run a node. In fact, it's every other node on Ethereum that holds validators accountable.",
+ "page-run-a-node-who-preview": "Everyone! Nodes are not just for proof-of-stake validators. Anyone can run a node—you don't even need ETH.",
+ "page-run-a-node-who-copy-1": "You don't need to stake ETH to run a node. In fact, it's every other node on Ethereum that holds validators accountable.",
"page-run-a-node-who-copy-2": "You may not get the financial rewards that validators earn, but there are many other benefits of running a node for any Ethereum user to consider, including privacy, security, reduced reliance on third-party servers, censorship resistance and improved health and decentralization of the network.",
"page-run-a-node-who-copy-3": "Having your own node means you don't need to trust information about the state of the network provided by a third party.",
"page-run-a-node-who-copy-bold": "Don't trust. Verify.",
diff --git a/src/intl/en/page-stablecoins.json b/src/intl/en/page-stablecoins.json
index 25e0e0d36a6..dc1324980f8 100644
--- a/src/intl/en/page-stablecoins.json
+++ b/src/intl/en/page-stablecoins.json
@@ -39,7 +39,7 @@
"page-stablecoins-accordion-less": "Less",
"page-stablecoins-accordion-more": "More",
"page-stablecoins-accordion-requirements": "What you'll need",
- "page-stablecoins-accordion-swap-dapp-intro": "If you’ve already got ETH and a wallet, you can use these dapps to swap for stablecoins.",
+ "page-stablecoins-accordion-swap-dapp-intro": "If you’ve already got ETH and a wallet, you can use these dapps to swap for stablecoins.",
"page-stablecoins-accordion-swap-dapp-link": "More on decentralized exchanges",
"page-stablecoins-accordion-swap-dapp-title": "Dapps for swapping tokens",
"page-stablecoins-accordion-swap-editors-tip": "Editors' tip",
@@ -56,6 +56,7 @@
"page-stablecoins-algorithmic-con-1": "You need to trust (or be able to read) the algorithm.",
"page-stablecoins-algorithmic-con-2": "Your balance of coins will change based on total supply.",
"page-stablecoins-algorithmic-description": "These stablecoins aren't backed by any other asset. Instead an algorithm will sell tokens if the price falls below the desired value and supply tokens if the value goes beyond the desired amount. Because the number of these tokens in circulation changes regularly, the number of tokens you own will change, but will always reflect your share.",
+ "page-stablecoins-algorithmic-disclaimer": "Algorithmic stablecoins are experimental technology. You should be aware of the risks before using them.",
"page-stablecoins-algorithmic-pro-1": "No collateral needed.",
"page-stablecoins-algorithmic-pro-2": "Controlled by a public algorithm.",
"page-stablecoins-bank-apy": "0.05%",
@@ -117,10 +118,10 @@
"page-stablecoins-stablecoins-dapp-description-2": "Lend stablecoins and earn interest and $COMP, Compound's own token.",
"page-stablecoins-stablecoins-dapp-description-3": "A trading platform where you can earn interest on your Dai and USDC.",
"page-stablecoins-stablecoins-dapp-description-4": "An app designed for saving Dai.",
- "page-stablecoins-stablecoins-feature-1": "Stablecoins are global, and can be sent over the internet. They're easy to receive or send once you have an Ethereum account.",
+ "page-stablecoins-stablecoins-feature-1": "Stablecoins are global, and can be sent over the internet. They're easy to receive or send once you have an Ethereum account.",
"page-stablecoins-stablecoins-feature-2": "Demand for stablecoins is high, so you can earn interest for lending yours. Make sure you're aware of the risks before lending.",
- "page-stablecoins-stablecoins-feature-3": "Stablecoins are exchangeable for ETH and other Ethereum tokens. Lots of dapps rely on stablecoins.",
- "page-stablecoins-stablecoins-feature-4": "Stablecoins are secured by cryptography. No one can forge transactions on your behalf.",
+ "page-stablecoins-stablecoins-feature-3": "Stablecoins are exchangeable for ETH and other Ethereum tokens. Lots of dapps rely on stablecoins.",
+ "page-stablecoins-stablecoins-feature-4": "Stablecoins are secured by cryptography. No one can forge transactions on your behalf.",
"page-stablecoins-stablecoins-meta-description": "An introduction to Ethereum stablecoins: what they are, how to get them, and why they're important.",
"page-stablecoins-stablecoins-table-header-column-1": "Currency",
"page-stablecoins-stablecoins-table-header-column-2": "Market capitalization",
@@ -161,6 +162,6 @@
"loopring-logo": "Loopring logo",
"makerdao-logo": "MakerDao logo",
"matcha-logo": "Matcha logo",
- "oasis-logo": "Oasis logo",
+ "summerfi-logo": "Summer.fi logo",
"uniswap-logo": "Uniswap logo"
}
diff --git a/src/intl/en/page-staking.json b/src/intl/en/page-staking.json
index 950e31d96bd..07105d3befb 100644
--- a/src/intl/en/page-staking.json
+++ b/src/intl/en/page-staking.json
@@ -20,16 +20,16 @@
"page-staking-withdrawals-when": "Shipped!",
"page-staking-image-alt": "Image of the Rhino mascot for the staking launchpad.",
"page-staking-benefits-1-title": "Earn rewards",
- "page-staking-benefits-1-description": "Rewards are given for actions that help the network reach consensus. You'll get rewards for running software that properly batches transactions into new blocks and checks the work of other validators because that's what keeps the chain running securely.",
+ "page-staking-benefits-1-description": "Rewards are given for actions that help the network reach consensus. You'll get rewards for running software that properly batches transactions into new blocks and checks the work of other validators because that's what keeps the chain running securely.",
"page-staking-benefits-2-title": "Better security",
"page-staking-benefits-2-description": "The network gets stronger against attacks as more ETH is staked, as it then requires more ETH to control a majority of the network. To become a threat, you would need to hold the majority of validators, which means you'd need to control the majority of ETH in the system–that's a lot!",
"page-staking-benefits-3-title": "More sustainable",
"page-staking-benefits-3-description": "Stakers don't need to do energy-intensive proof-of-work computations to participate in securing the network meaning staking nodes can run on relatively modest hardware using very little energy.",
"page-staking-benefits-3-link": "More on Ethereum's energy consumption",
- "page-staking-description": "Staking is the act of depositing 32 ETH to activate validator software. As a validator you’ll be responsible for storing data, processing transactions, and adding new blocks to the blockchain. This will keep Ethereum secure for everyone and earn you new ETH in the process.",
+ "page-staking-description": "Staking is the act of depositing 32 ETH to activate validator software. As a validator you’ll be responsible for storing data, processing transactions, and adding new blocks to the blockchain. This will keep Ethereum secure for everyone and earn you new ETH in the process.",
"page-staking-hero-title": "How to stake your ETH",
"page-staking-hero-header": "Earn rewards while securing Ethereum",
- "page-staking-hero-subtitle": "Staking is a public good for the Ethereum ecosystem. Any user with any amount of ETH can help secure the network and earn rewards in the process.",
+ "page-staking-hero-subtitle": "Any user with any amount of ETH can help secure the network and earn rewards in the process.",
"page-staking-dropdown-home": "Staking home",
"page-staking-dropdown-solo": "Solo staking",
"page-staking-more-on-solo": "More on solo staking",
@@ -44,7 +44,6 @@
"page-staking-more-on-pools": "More on pooled staking",
"page-staking-learn-more-pools": "Learn more about pooled staking",
"page-staking-section-what-title": "What is staking?",
- "page-staking-section-what-link": "Learn how to get ETH",
"page-staking-section-why-title": "Why stake your ETH?",
"page-staking-section-why-p1": "It all depends on how much you are willing to stake. You'll need 32 ETH to activate your own validator, but it is possible to stake less.",
"page-staking-section-why-p2": "Check out the options below and go for the one that is best for you, and for the network.",
@@ -71,15 +70,15 @@
"page-staking-hierarchy-pools-pill-3": "Keep it simple",
"page-staking-hierarchy-pools-pill-4": "Popular",
"page-staking-hierarchy-pools-p1": "Several pooling solutions now exist to assist users who do not have or feel comfortable staking 32 ETH.",
- "page-staking-hierarchy-pools-p2": "Many of these options include what is known as 'liquid staking' which involves an ERC-20 liquidity token that represents your staked ETH.",
- "page-staking-hierarchy-pools-p3": "Liquid staking enables easy and anytime exiting and makes staking as simple as a token swap. This option also allows users to hold custody of their assets in their own Ethereum wallet.",
+ "page-staking-hierarchy-pools-p2": "Many of these options include what is known as 'liquid staking' which involves an ERC-20 liquidity token that represents your staked ETH.",
+ "page-staking-hierarchy-pools-p3": "Liquid staking enables easy and anytime exiting and makes staking as simple as a token swap. This option also allows users to hold custody of their assets in their own Ethereum wallet.",
"page-staking-hierarchy-pools-p4": "Pooled staking is not native to the Ethereum network. Third parties are building these solutions, and they carry their own risks.",
"page-staking-hierarchy-cex-h2": "Centralized exchanges",
"page-staking-hierarchy-cex-pill-1": "Least impactful",
"page-staking-hierarchy-cex-pill-2": "Highest trust assumptions",
"page-staking-hierarchy-cex-p1": "Many centralized exchanges provide staking services if you are not yet comfortable holding ETH in your own wallet. They can be a fallback to allow you to earn some yield on your ETH holdings with minimal oversight or effort.",
"page-staking-hierarchy-cex-p2": "The trade-off here is that centralized providers consolidate large pools of ETH to run large numbers of validators. This can be dangerous for the network and its users as it creates a large centralized target and point of failure, making the network more vulnerable to attack or bugs.",
- "page-staking-hierarchy-cex-p3": "If you don't feel comfortable holding your own keys, that's okay. These options are here for you. In the meantime, consider checking out our wallets page, where you can get started learning how to take true ownership over your funds. When you're ready, come back and level up your staking game by trying one of the self-custody pooled staking services offered.",
+ "page-staking-hierarchy-cex-p3": "If you don't feel comfortable holding your own keys, that's okay. These options are here for you. In the meantime, consider checking out our wallets page, where you can get started learning how to take true ownership over your funds. When you're ready, come back and level up your staking game by trying one of the self-custody pooled staking services offered.",
"page-staking-hierarchy-subtext": "As you may have noticed, there are many ways to participate in Ethereum staking. These paths target a wide range of users and ultimately are each unique and vary in terms of risks, rewards, and trust assumptions. Some are more decentralized, battle-tested and/or risky than others. We provide some information on popular projects in the space, but always do your own research before sending ETH anywhere.",
"page-staking-comparison-solo-saas": "With SaaS providers you're still required to deposit 32 ETH, but don't have to run hardware. You typically maintain access to your validator keys, but also need to share your signing keys so the operator can act on behalf of your validator. This introduces a layer of trust not present when running your own hardware, and unlike solo staking at home, SaaS does not help as much with geographic distribution of nodes. If you're uncomfortable operating hardware but still looking to stake 32 ETH, using a SaaS provider may be a good option for you.",
"page-staking-comparison-solo-pools": "Solo staking is significantly more involved than staking with a pooling service, but offers full access to ETH rewards, and full control over the setup and security of your validator. Pooled staking has a significantly lower barrier to entry. Users can stake small amounts of ETH, are not required to generate validator keys, and have no hardware requirements beyond a standard internet connection. Liquidity tokens enable the ability to exit from staking before this is enabled at the protocol level. If you're interested in these features, pooled staking may be a good fit.",
@@ -174,8 +173,8 @@
"page-staking-section-comparison-saas-rewards-li1": "Usually involves full protocol rewards minus monthly fee for node operations",
"page-staking-section-comparison-saas-rewards-li2": "Dashboards often available to easily track your validator client",
"page-staking-section-comparison-pools-rewards-li1": "Pooled stakers accrue rewards differently, depending on which method of pooled staking is chosen",
- "page-staking-section-comparison-pools-rewards-li2": "Many pooled staking services offer one or more liquidity tokens that represents your staked ETH plus your share of the validator rewards",
- "page-staking-section-comparison-pools-rewards-li3": "Liquidity tokens can be held in your own wallet, used in DeFi and sold if you decide to exit",
+ "page-staking-section-comparison-pools-rewards-li2": "Many pooled staking services offer one or more liquidity tokens that represents your staked ETH plus your share of the validator rewards",
+ "page-staking-section-comparison-pools-rewards-li3": "Liquidity tokens can be held in your own wallet, used in DeFi and sold if you decide to exit",
"page-staking-section-comparison-risks-title": "Risks",
"page-staking-section-comparison-solo-risks-li1": "Your ETH is at stake",
"page-staking-section-comparison-solo-risks-li2": "There are penalties, which cost ETH, for going offline",
@@ -183,11 +182,11 @@
"page-staking-section-comparison-saas-risks-li1": "Same risks as solo staking plus counter-party risk of service provider",
"page-staking-section-comparison-saas-risks-li2": "Use of your signing keys is entrusted to someone else who could behave maliciously",
"page-staking-section-comparison-pools-risks-li1": "Risks vary depending on the method used",
- "page-staking-section-comparison-pools-risks-li2": "In general, risks consist of a combination of counter-party, smart contract and execution risk",
+ "page-staking-section-comparison-pools-risks-li2": "In general, risks consist of a combination of counter-party, smart contract and execution risk",
"page-staking-section-comparison-requirements-title": "Requirements",
"page-staking-section-comparison-solo-requirements-li1": "You must deposit 32 ETH",
- "page-staking-section-comparison-solo-requirements-li2": "Maintain hardware that runs both an Ethereum execution client and consensus client while connected to the internet",
- "page-staking-section-comparison-solo-requirements-li3": "The Staking Launchpad will walk you through the process and hardware requirements",
+ "page-staking-section-comparison-solo-requirements-li2": "Maintain hardware that runs both an Ethereum execution client and consensus client while connected to the internet",
+ "page-staking-section-comparison-solo-requirements-li3": "The Staking Launchpad will walk you through the process and hardware requirements",
"page-staking-section-comparison-saas-requirements-li1": "Deposit 32 ETH and generate your keys with assistance",
"page-staking-section-comparison-saas-requirements-li2": "Store your keys securely",
"page-staking-section-comparison-saas-requirements-li3": "The rest is taken care of, though specific services will vary",
@@ -209,16 +208,13 @@
"page-staking-faq-5-answer-p1": "Right now! Stakers are free to withdraw their rewards and/or principle deposit from their validator balance if they choose.",
"page-staking-faq-5-answer-p2": "Stakers will also earn rewards in the form of fees and MEV when proposing blocks, which are made available immediately via the set fee recipient address.",
"page-staking-faq-5-answer-link": "More on staking withdrawals",
- "page-staking-further-reading-1-link": "Why Proof of Stake (Nov 2020)",
"page-staking-further-reading-author-vitalik-buterin": "Vitalik Buterin",
"page-staking-further-reading-2-link": "Serenity Design Rationale",
- "page-staking-further-reading-3-link": "Proof of Stake FAQ (Dec 2017)",
"page-staking-further-reading-4-link": "Eth2 News",
"page-staking-further-reading-4-author": "Ben Edgington",
"page-staking-further-reading-5-link": "Finalized no. 33, the Ethereum consensus-layer (Jan 2022)",
"page-staking-further-reading-5-author": "Danny Ryan",
"page-staking-further-reading-6-link": "Attestant Posts",
- "page-staking-further-reading-7-link": "Beaconcha.in Knowledge Base",
"page-staking-further-reading-8-link": "Beaconcha.in Community-Contributed Educational Materials",
"page-staking-further-reading-9-link": "Ethereum Staking Launchpad FAQ",
"page-staking-further-reading-10-link": "EthStaker knowledge base",
diff --git a/src/intl/en/page-wallets-find-wallet.json b/src/intl/en/page-wallets-find-wallet.json
index 99a6572d6ce..8acbc755074 100644
--- a/src/intl/en/page-wallets-find-wallet.json
+++ b/src/intl/en/page-wallets-find-wallet.json
@@ -1,29 +1,27 @@
{
"page-find-wallet-clear": "Clear filters",
- "page-find-wallet-desc-2": "So choose your wallet based on the features you want.",
- "page-find-wallet-description": "Wallets have lots of optional features which you might like.",
+ "page-find-wallet-desc-2": "Don’t know what a wallet is?",
+ "page-find-wallet-desc-2-wallets-link": "Learn about wallets.",
+ "page-find-wallet-description": "Wallets store and transact your ETH. You can choose from a variety of products that tailor to your needs.",
"page-find-wallet-last-updated": "Last updated",
"page-find-wallet-meta-description": "Find and compare Ethereum wallets based on the features you want.",
"page-find-wallet-meta-title": "Find an Ethereum Wallet",
- "page-find-wallet-title": "Find a wallet",
+ "page-find-wallet-title": "Choose your wallet",
"page-find-wallet-try-removing": "Try removing a feature or two",
- "page-find-wallet-choose-to-compare": "Choose to compare",
"page-stake-eth": "Stake ETH",
"page-find-wallet-open-source": "Open source",
"page-find-wallet-open-source-desc": "Open-source software lets anyone audit the integrity and security of the application",
"page-find-wallet-self-custody": "Self custody",
- "page-find-wallet-non-custodial": "Non-custodial",
+ "page-find-wallet-non-custodial": "Personal ownership",
"page-find-wallet-non-custodial-desc": "Wallets that do not control your private keys",
"page-find-wallet-hardware-wallet-support": "Hardware wallet support",
"page-find-wallet-hardware-wallet-support-desc": "Wallets that can connect to hardware wallet for better security",
- "page-find-wallet-walletconnect": "WalletConnect",
- "page-find-wallet-walletconnect-desc": "Wallets that support WalletConnect for connecting to dapps",
"page-find-wallet-rpc-importing": "RPC importing",
"page-find-wallet-rpc-importing-desc": "Wallets supporting custom RPC endpoints to connect to different nodes or networks",
"page-find-wallet-nft-support": "NFT support",
"page-find-wallet-nft-support-desc": "Wallets that support viewing and interacting with your NFTs",
"page-find-wallet-connect-to-dapps": "Connect to dapps",
- "page-find-wallet-connect-to-dapps-desc": "Wallets that connect to applications built on the Ethereum network",
+ "page-find-wallet-connect-to-dapps-desc": "You can connect to applications that support WalletConnect or an alternative",
"page-find-wallet-staking": "Staking",
"page-find-wallet-staking-desc": "Stake ETH directly from the wallet",
"page-find-wallet-swaps": "Swaps",
@@ -36,8 +34,6 @@
"page-find-wallet-ens-support-desc": "Wallets that support Ethereum Name Service (ENS)",
"page-find-wallet-token-importing": "Token importing",
"page-find-wallet-token-importing-desc": "Import any ERC-20 token to use in the wallet",
- "page-find-wallet-fee-optimization": "Fee optimization",
- "page-find-wallet-fee-optimization-desc": "Support type 2 transactions for optimized gas fees, and fee refunds for unused gas",
"page-find-wallet-buy-crypto": "Buy crypto",
"page-find-wallet-buy-crypto-desc": "Buy crypto with fiat directly in the wallet \n *Note: buying crypto may be region specific",
"page-find-wallet-sell-for-fiat": "Sell for fiat",
@@ -46,10 +42,13 @@
"page-find-wallet-multisig-desc": "Wallets that require multiple signatures to authorize a transaction",
"page-find-wallet-social-recovery": "Social recovery",
"page-find-wallet-social-recovery-desc": "Wallets that allow guardians to change the signing key for smart contract wallets",
- "page-find-wallet-token-support": "Token support",
+ "page-find-wallet-languages-supported": "Language support",
+ "page-find-wallet-languages-search-language": "Search language",
+ "page-find-wallet-popular-languages": "Most popular",
"page-find-wallet-features": "Features",
"page-find-wallet-security": "Security",
"page-find-wallet-smart-contract": "Smart contract",
+ "page-find-wallet-advanced": "Advanced",
"page-find-wallet-check-out": "Check out",
"page-find-wallet-info-updated-on": "info updated on",
"page-find-wallet-showing-all-wallets": "Showing all wallets",
@@ -63,33 +62,30 @@
"page-find-wallet-chromium": "Chromium",
"page-find-wallet-firefox": "Firefox",
"page-find-wallet-hardware": "Hardware",
- "page-find-wallet-hardware-desc": "Hardware wallets",
+ "page-find-wallet-personas-title": "What are you looking for?",
"page-find-wallet-new-to-crypto-title": "New to crypto",
- "page-find-wallet-new-to-crypto-desc": "You are a first time user looking for your first wallet",
+ "page-find-wallet-new-to-crypto-desc": "First time user looking for beginner wallet.",
"page-find-wallet-nfts-title": "NFTs",
- "page-find-wallet-nfts-desc": "You are someone that is all about NFTs and want a wallet with NFT support",
- "page-find-wallet-hodler-title": "Hodler",
- "page-find-wallet-hodler-desc": "You are someone that has tokens and don’t want to touch them",
+ "page-find-wallet-nfts-desc": "Wallets with focus on NFT support.",
+ "page-find-wallet-hodler-title": "Long term",
+ "page-find-wallet-hodler-desc": "Passive token holding with hardware wallets.",
"page-find-wallet-finance-title": "Finance",
- "page-find-wallet-finance-desc": "You are someone that uses DeFi and want a wallet that allows you to connect to DeFi applications",
+ "page-find-wallet-finance-desc": "Wallets focusing on frequent usage of DeFi apps.",
"page-find-wallet-developer-title": "Developer",
- "page-find-wallet-developer-desc": "You are developer and need a wallet to help develop and test dapps",
- "page-find-wallet-persona-desc": "Choose the profile that matches your type of user and filter the wallet list",
+ "page-find-wallet-developer-desc": "Wallets that help develop and test dapps.",
"page-find-wallet-filters": "Filters",
"page-find-wallet-active": "active",
- "page-find-wallet-profile-filters": "Profile filters",
- "page-find-wallet-feature-filters": "Feature filters",
"page-find-wallet-footnote-1": "Wallets listed on this page are not official endorsements, and are provided for informational purposes only.",
"page-find-wallet-footnote-2": "Their descriptions have been provided by the wallet projects themselves.",
"page-find-wallet-footnote-3": "We add products to this page based on criteria in our listing policy. If you'd like us to add a wallet, raise an issue in GitHub.",
"page-find-wallet-mobile": "Mobile",
- "page-find-wallet-mobile-desc": "Wallets with mobile apps",
"page-find-wallet-desktop": "Desktop",
- "page-find-wallet-desktop-desc": "Wallets with desktop apps",
"page-find-wallet-browser": "Browser",
- "page-find-wallet-browser-desc": "Wallets with browser extensions",
"page-find-wallet-device": "Device",
- "page-find-choose-to-compare": "Choose to compare",
- "page-find-wallet-choose-features": "Choose features",
- "page-find-wallet-reset-filters": "Reset filters"
+ "page-find-wallet-reset-filters": "Reset",
+ "page-find-wallet-visit-website": "Visit website",
+ "page-find-wallet-social-links": "Links",
+ "page-find-wallet-empty-results-title": "No results",
+ "page-find-wallet-empty-results-desc": "There are no wallets matching your criteria, try removing some filters.",
+ "page-find-wallet-see-wallets": "See wallets"
}
diff --git a/src/intl/en/page-wallets.json b/src/intl/en/page-wallets.json
index 81b7d627aee..ee5f6c7513f 100644
--- a/src/intl/en/page-wallets.json
+++ b/src/intl/en/page-wallets.json
@@ -1,20 +1,20 @@
{
"page-wallets-accounts-addresses": "Wallets, accounts, keys and addresses",
"page-wallets-accounts-addresses-desc": "It's worth understanding the differences between some key terms.",
- "page-wallets-accounts-ethereum-addresses": "An Ethereum account has an address, like an inbox has an email address. This is used to identify your digital assets.",
+ "page-wallets-accounts-ethereum-addresses": "An Ethereum account has an address, like an inbox has an email address. This is used to identify your digital assets.",
"page-wallets-alt": "Illustration of a robot with a vault for a body, representing an Ethereum wallet",
- "page-wallets-ethereum-account": "An Ethereum account is a pair of keys. One key is used to create the address you can share freely, and the other key you need to keep secret because it's used to sign things. Together, these keys let you hold assets and make transactions.",
+ "page-wallets-ethereum-account": "An Ethereum account is a pair of keys. One key is used to create the address you can share freely, and the other key you need to keep secret because it's used to sign things. Together, these keys let you hold assets and make transactions.",
"page-wallets-blog": "Coinbase blog",
"page-wallets-bookmarking": "Bookmark your wallet",
"page-wallets-bookmarking-desc": "If you use a web wallet, bookmark the site to protect yourself against phishing scams.",
- "page-wallets-cd": "Physical hardware wallets are devices that let you keep your crypto offline – very secure",
+ "page-wallets-cd": "Physical hardware wallets are devices that let you keep your crypto offline – very secure",
"page-wallets-desc-2": "Wallets are what most people use to handle their digital assets and identity.",
"page-wallets-desc-2-link": "More on ETH",
"page-wallets-desc-3": "Your wallet is a tool for interacting with your Ethereum account. That means you can swap wallet providers at any time. Many wallets also let you manage several Ethereum accounts from one application.",
"page-wallets-desc-4": "Wallet providers don't have custody of your funds. They just provide you a window to see your assets on Ethereum and tools to easily manage them.",
"page-wallets-description": "Ethereum wallets are applications that give you control over your account. Just like your physical wallet, it contains everything you need to prove your identity and handle your assets. Your wallet allows you to sign in to applications, read your balance, send transactions and verify your identity.",
- "page-wallets-desktop": "Desktop applications if you prefer to manage your funds via macOS, Windows or Linux",
- "page-wallets-ethereum-wallet": "A wallet is a tool that lets you interact with your account, using your keys. It allows you to view your account balance, send transactions, and more.",
+ "page-wallets-desktop": "Desktop applications if you prefer to manage your funds via macOS, Windows or Linux",
+ "page-wallets-ethereum-wallet": "A wallet is a tool that lets you interact with your account, using your keys. It allows you to view your account balance, send transactions, and more.",
"page-wallets-explore": "Explore Ethereum",
"page-wallets-features-desc": "We can help you choose your wallet based on the features you care about.",
"page-wallets-features-title": "Compare wallets based on features",
@@ -24,24 +24,23 @@
"page-wallets-get-some-alt": "An illustration of a hand creating an ETH logo made of lego bricks",
"page-wallets-get-some-btn": "Get some ETH",
"page-wallets-get-some-desc": "ETH is the native crypto of Ethereum. You’ll need some ETH in your wallet to use Ethereum applications.",
- "page-wallets-how-to-store": "How to store digital assets on Ethereum",
"page-wallets-keys-to-safety": "The keys to keeping your crypto safe",
"page-wallets-manage-funds": "An app for managing your funds",
"page-wallets-manage-funds-desc": "Your wallet shows your balances, transaction history and gives you a way to send/receive funds. Some wallets may offer more.",
"page-wallets-meta-description": "What you need to know to use Ethereum wallets.",
"page-wallets-meta-title": "Ethereum wallets",
- "page-wallets-mobile": "Mobile applications that make your funds accessible from anywhere",
+ "page-wallets-mobile": "Mobile applications that make your funds accessible from anywhere",
"page-wallets-more-on-dapps-btn": "More on dapps",
"page-wallets-most-wallets": "Most wallet products will let you generate an Ethereum account. So you don't need one before you download a wallet.",
"page-wallets-protecting-yourself": "Protecting yourself and your funds",
- "page-wallets-seed-phrase": "Write down your seed phrase",
+ "page-wallets-seed-phrase": "Write down your recovery phrase",
"page-wallets-seed-phrase-desc": "Wallets will often give you a seed phrase that you must write down somewhere safe. This is the only way you’ll be able to recover your wallet.",
"page-wallets-seed-phrase-example": "Here's an example:",
"page-wallets-seed-phrase-snippet": "there aeroplane curve vent formation doge possible product distinct under spirit lamp",
"page-wallets-seed-phrase-write-down": "Don’t store it on a computer. Write it down and keep it safe.",
"page-wallets-slogan": "Holding the keys to your digital future",
"page-wallets-stay-safe": "How to stay safe",
- "page-wallets-stay-safe-desc": "Financial freedom and the ability to access and use funds anywhere comes with responsibility – there’s no customer support in crypto. You are responsible for keeping your keys safe and secure.",
+ "page-wallets-stay-safe-desc": "Financial freedom and the ability to access and use funds anywhere comes with responsibility – there’s no customer support in crypto. You are responsible for keeping your keys safe and secure.",
"page-wallets-subtitle": "Wallets help you access your digital assets and sign in to applications.",
"page-wallets-take-responsibility": "Take responsibility for your own funds",
"page-wallets-take-responsibility-desc": "Centralized exchanges will link your wallet to a username and password that you can recover in a traditional way. Just remember you’re trusting that exchange with custody over your funds. If the exchange has financial trouble, your funds would be at risk.",
@@ -55,8 +54,8 @@
"page-wallets-try-dapps-desc": "Dapps are applications built on Ethereum. They’re cheaper, fairer and kinder on your data than most traditional applications.",
"page-wallets-types": "Types of wallets",
"page-wallets-types-desc": "There are a few ways to interface and interact with your account:",
- "page-wallets-web-browser": "Browser wallets are web applications that let you interact with your account directly in the browser",
- "page-wallets-web-browser-extension": "Browser extension wallets are extensions you download that let you interact with your account and applications through the browser",
+ "page-wallets-web-browser": "Browser wallets are web applications that let you interact with your account directly in the browser",
+ "page-wallets-web-browser-extension": "Browser extension wallets are extensions you download that let you interact with your account and applications through the browser",
"page-wallets-whats-a-wallet": "What's an Ethereum wallet?",
"page-wallets-your-ethereum-account": "Your Ethereum account",
"page-wallets-your-ethereum-account-desc": "Your wallet is your window into your Ethereum account – your balance, transaction history and more. But you can swap wallet providers at any time.",
diff --git a/src/intl/en/page-what-is-ethereum.json b/src/intl/en/page-what-is-ethereum.json
index 0ca597a61be..af03bf84aa7 100644
--- a/src/intl/en/page-what-is-ethereum.json
+++ b/src/intl/en/page-what-is-ethereum.json
@@ -31,7 +31,7 @@
"page-what-is-ethereum-blockchain-tab-content": "A blockchain is a database of transactions that is updated and shared across many computers in a network. Every time a new set of transactions is added, its called a “block” - hence the name blockchain. Public blockchains like Ethereum allow anyone to add, but not remove, data. If someone wanted to alter any of the information or cheat the system, they’d need to do so on the majority of computers on the network. That is a lot! This makes decentralized blockchains like Ethereum highly secure.",
"page-what-is-ethereum-cryptocurrency-tab-title": "What is a cryptocurrency?",
"page-what-is-ethereum-cryptocurrency-tab-content-1": "Cryptocurrency is a term used to describe many types of fungible digital tokens secured using a blockchain. It all started with Bitcoin. Bitcoin can be used to transfer value between two parties without having to trust a middleman. You only have to trust the Bitcoin code, which is all open and freely available.",
- "page-what-is-ethereum-cryptocurrency-tab-content-2": "The reason assets such as bitcoin and ether are called “cryptocurrencies” is that the security of your data and assets is guaranteed by cryptography, not by trusting an institution or corporation to act honestly.",
+ "page-what-is-ethereum-cryptocurrency-tab-content-2": "The reason assets such as bitcoin and ether are called “cryptocurrencies” is that the security of your data and assets is guaranteed by cryptography, not by trusting an institution or corporation to act honestly.",
"page-what-is-ethereum-cryptocurrency-tab-content-3": "Ethereum has its own native cryptocurrency, ether (ETH), which is used to pay for certain activities on the network. It can be transferred to other users or swapped for other tokens on Ethereum. Ether is special because it is used to pay for the computation required to build and run apps and organizations on Ethereum.",
"page-what-is-ethereum-summary-title": "Summary",
"page-what-is-ethereum-summary-desc-1": "Ethereum is a network of computers all over the world that follow a set of rules called the Ethereum protocol. The Ethereum network acts as the foundation for communities, applications, organizations and digital assets that anyone can build and use.",
@@ -51,7 +51,7 @@
"page-what-is-ethereum-slide-1-desc-2": "Ethereum and stablecoins simplify the process of sending money overseas. It often takes only few minutes to move funds across the globe, as opposed to the several business days or even weeks that it may take your average bank, and for a fraction of the price. Additionally, there is no extra fee for making a high value transaction, and there are zero restrictions on where or why you are sending your money.",
"page-what-is-ethereum-slide-2-title": "The Quickest Help in Times of Crisis",
"page-what-is-ethereum-slide-2-desc-1": "If you are lucky enough to have multiple banking options through trusted institutions where you live, you may take for granted the financial freedom, security and stability that they offer. But for many people around the world facing political repression or economic hardship, financial institutions may not provide the protection or services they need.",
- "page-what-is-ethereum-slide-2-desc-2": "When war, economic catastrophes or crackdowns on civil liberties struck the residents of Venezuela, Cuba, Afghanistan, Nigeria, Belarus, and Ukraine, cryptocurrencies constituted the quickest and often the only option to retain financial agency.1 As seen in these examples, cryptocurrencies like Ethereum can provide unfettered access to the global economy when people are cut off from the outside world. Additionally, stablecoins offer a store of value when local currencies are collapsing due to superinflation.",
+ "page-what-is-ethereum-slide-2-desc-2": "When war, economic catastrophes or crackdowns on civil liberties struck the residents of Venezuela, Cuba, Afghanistan, Nigeria, Belarus, and Ukraine, cryptocurrencies constituted the quickest and often the only option to retain financial agency.1 As seen in these examples, cryptocurrencies like Ethereum can provide unfettered access to the global economy when people are cut off from the outside world. Additionally, stablecoins offer a store of value when local currencies are collapsing due to hyperinflation.",
"page-what-is-ethereum-slide-3-title": "Empowering Creators",
"page-what-is-ethereum-slide-3-desc-1": "In 2021 alone, artists, musicians, writers, and other creators used Ethereum to earn around $3.5 billion collectively. This makes Ethereum one of the largest global platforms for creators, alongside Spotify, YouTube, and Etsy. Learn more.",
"page-what-is-ethereum-slide-4-title": "Empowering Gamers",
@@ -65,13 +65,13 @@
"page-what-is-ethereum-explore-applications": "Explore applications",
"page-what-is-ethereum-learn-defi": "Learn about DeFi",
"page-what-is-ethereum-who-runs-ethereum-title": "Who runs Ethereum?",
- "page-what-is-ethereum-who-runs-ethereum-desc-1": "Ethereum is not controlled by any particular entity. It exists whenever there are connected computers running software following the Ethereum protocol and adding to the Ethereum blockchain. Each of these computers is known as a node. Nodes can be run by anyone, although to participate in securing the network you have to stake ETH (Ethereum’s native token). Anyone with 32 ETH can do this without needing permission.",
+ "page-what-is-ethereum-who-runs-ethereum-desc-1": "Ethereum is not controlled by any particular entity. It exists whenever there are connected computers running software following the Ethereum protocol and adding to the Ethereum blockchain. Each of these computers is known as a node. Nodes can be run by anyone, although to participate in securing the network you have to stake ETH (Ethereum’s native token). Anyone with 32 ETH can do this without needing permission.",
"page-what-is-ethereum-who-runs-ethereum-desc-2": "Even the Ethereum source code is not produced by a single entity. Anyone can suggest changes to the protocol and discuss upgrades. There are several implementations of the Ethereum protocol that are produced by independent organizations in several programming languages, and they are usually built in the open and encourage community contributions.",
"page-what-is-ethereum-run-a-node": "Run a node",
"page-what-is-ethereum-smart-contract-title": "What are smart contracts?",
"page-what-is-ethereum-smart-contract-desc-1": "Smart contracts are computer programs living on the Ethereum blockchain. They execute when triggered by a transaction from a user. They make Ethereum very flexible in what it can do. These programs act as building blocks for decentralized apps and organizations.",
"page-what-is-ethereum-smart-contract-desc-2": "Have you ever used a product that changed its terms of service? Or removed a feature you found useful? Once a smart contract is published to Ethereum, it will be online and operational for as long as Ethereum exists. Not even the author can take it down. Since smart contracts are automated, they do not discriminate against any user and are always ready to use.",
- "page-what-is-ethereum-smart-contract-desc-3": "Popular examples of smart contracts are lending apps, decentralized trading exchanges, insurance, quadratic funding, social networks, NFTs - basically anything you can think of.",
+ "page-what-is-ethereum-smart-contract-desc-3": "Popular examples of smart contracts are lending apps, decentralized trading exchanges, insurance, quadratic funding, social networks, NFTs - basically anything you can think of.",
"page-what-is-ethereum-more-on-smart-contracts": "More on smart contracts",
"page-what-is-ethereum-explore-dapps": "Explore dapps",
"page-what-is-ethereum-criminal-activity-title": "I heard crypto is being used as a tool for criminal activity. Is this true?",
@@ -79,7 +79,7 @@
"page-what-is-ethereum-criminal-activity-desc-2": "Crypto is used much less than fiat currencies for criminal purposes according to the key findings of a recent report by Europol, the European Union Agency for Law Enforcement Cooperation:",
"page-what-is-ethereum-criminal-activity-desc-3": "“The use of cryptocurrencies for illicit activities seems to comprise only a small part of the overall cryptocurrency economy, and it appears to be comparatively smaller than the amount of illicit funds involved in traditional finance.”",
"page-what-is-ethereum-energy-title": "What about Ethereum's energy consumption?",
- "page-what-is-ethereum-energy-desc-1": "On September 15, 2022, Ethereum went through The Merge upgrade which transitioned Ethereum from proof-of-work to proof-of-stake.",
+ "page-what-is-ethereum-energy-desc-1": "On September 15, 2022, Ethereum went through The Merge upgrade which transitioned Ethereum from proof-of-work to proof-of-stake.",
"page-what-is-ethereum-energy-desc-2": "The Merge was Ethereum's biggest upgrade and reduced the energy consumption required to secure Ethereum by 99.95%, creating a more secure network for a much smaller carbon cost. Ethereum is now a low-carbon blockchain while boosting its security and scalability.",
"page-what-is-ethereum-more-on-energy-consumption": "More on energy consumption",
"page-what-is-ethereum-energy-consumption-chart-legend": "Annual Energy Consumption in TWh/yr",
@@ -109,5 +109,11 @@
"adoption-chart-musicians-label": "Musicians",
"adoption-chart-writers-label": "Writers",
"adoption-chart-gamers-label": "Gamers",
- "adoption-chart-refugees-label": "Refugees"
+ "adoption-chart-refugees-label": "Refugees",
+ "page-what-is-ethereum-get-eth-alt": "Get some ETH",
+ "page-what-is-ethereum-get-eth-description": "ETH is the native currency of Ethereum. You'll need some ETH in your wallet to use Ethereum applications.",
+ "page-what-is-ethereum-get-eth-title": "Get some ETH",
+ "page-what-is-ethereum-explore-dapps-alt": "Explore dapps",
+ "page-what-is-ethereum-explore-dapps-description": "Dapps are applications built on Ethereum. Dapps are disrupting current business models and inventing new ones.",
+ "page-what-is-ethereum-explore-dapps-title": "Try some dapps"
}
diff --git a/src/intl/es/common.json b/src/intl/es/common.json
index acc9b6c07bf..837927ffa17 100644
--- a/src/intl/es/common.json
+++ b/src/intl/es/common.json
@@ -15,6 +15,9 @@
"aria-toggle-menu-button": "Cambiar botón de menú",
"beacon-chain": "Cadena de baliza",
"bridges": "Puentes de cadena de bloques",
+ "bug-bounty": "Recompensa de error",
+ "build": "Construir",
+ "build-menu": "Menú Construir",
"clear": "Borrar",
"close": "Cerrar",
"community": "Comunidad",
@@ -31,14 +34,15 @@
"copied": "Copiado",
"copy": "Copiar",
"danksharding": "Danksharding",
- "dao-page": "Organizaciones Autónomas Descentralizadas (DAO)",
+ "dao-page": "DAO - Organizaciones Autónomas Descentralizadas",
"dark-mode": "Oscuro",
"data-provided-by": "Fuente de datos:",
- "decentralized-applications-dapps": "Aplicaciones descentralizadas (DApps)",
+ "decentralized-applications-dapps": "DApps - Aplicaciones descentralizadas",
"decentralized-identity": "Identidad descentralizada",
"decentralized-social-networks": "Redes sociales descentralizadas",
- "decentralized-science": "Ciencias descentralizadas (DeSci)",
- "defi-page": "Finanzas descentralizadas (DeFi)",
+ "decentralized-science": "DeSci - Ciencias descentralizadas",
+ "description": "Descripción de un elemento de navegación",
+ "defi-page": "DeFi - Finanzas descentralizadas",
"design": "Diseño",
"design-principles": "Principios de diseño",
"devcon": "Devcon",
@@ -96,7 +100,7 @@
"feedback-card-prompt-tutorial": "¿Le ha resultado útil este tutorial?",
"feedback-widget-thank-you-title": "¡Gracias por sus comentarios!",
"feedback-widget-thank-you-subtitle": "Mejore esta página respondiendo a algunas preguntas.",
- "feedback-widget-thank-you-subtitle-ext": "Si necesita ayuda, puede comunicarse con la comunidad en nuestro canal Discord.",
+ "feedback-widget-thank-you-subtitle-ext": "Si necesita ayuda, puede comunicarse con la comunidad en nuestro canal Discord.",
"feedback-widget-thank-you-timing": "2–3 minutos",
"feedback-widget-thank-you-cta": "Abrir encuesta breve",
"find-wallet": "Encontrar cartera",
@@ -143,17 +147,124 @@
"mainnet-ethereum": "Red principal de Ethereum",
"merge": "Fusión",
"more": "Más",
- "nav-developers": "Desarrolladores",
+ "nav-about-description": "Un proyecto público de código abierto para la comunidad Ethereum",
+ "nav-advanced-description": "Conozca los temas más complejos",
+ "nav-advanced-label": "Recursos avanzados",
+ "nav-basics-description": "Entienda lo esencial de Ethereum",
+ "nav-basics-label": "Lo básico",
+ "nav-bridges-description": "Web3 ha evolucionado en un ecosistema de cadenas de bloques primarios de capa 1 y soluciones de escalabilidad de capa 2",
+ "nav-builders-home-description": "Un manual de constructores para Ethereum. De constructores para constructores.",
+ "nav-builders-home-label": "Inicio para los constructores",
+ "nav-contribute-description": "Si quiere ayudar, esta guía le dirá cómo.",
+ "nav-contribute-label": "Colaborar con ethereum.org",
+ "nav-dao-description": "Comunidades con propiedad compartida por los miembros sin liderazgo centralizado.",
+ "nav-dapps-description": "Explore el rico ecosistema de aplicaciones que usan Ethereum",
+ "nav-defi-description": "Una alternativa abierta y global al tradicional mercado financiero",
+ "nav-desci-description": "Una alternativa global y abierta al sistema científico actual",
+ "nav-desoc-description": "Plataformas basadas en cadenas de bloques para interacción social y creación de contenido",
"nav-developers-docs": "Documentos para desarrolladores",
+ "nav-developers": "Desarrolladores",
+ "nav-did-description": "Cree y sea propietario de sus identificadores descentralizados propios",
+ "nav-docs-description": "Documentación de ayuda para entender y construir en Ethereum",
+ "nav-docs-design-description": "Descripción de los retos de diseño únicos de Web3, mejores prácticas y hallazgos de investigaciones de los usuarios",
+ "nav-docs-design-label": "Lo esencial del diseño de la UX/IU",
+ "nav-docs-foundation-description": "Los fundamentos para desarrollar en Ethereum",
+ "nav-docs-foundation-label": "Temas fundamentales",
+ "nav-docs-overview-description": "El sitio donde buscar documentación para desarrolladores",
+ "nav-docs-stack-description": "Entender todos los detalles de la pila Ethereum",
+ "nav-docs-stack-label": "Pila de Ethereum",
+ "nav-eip-description": "Estándares que especifican nuevas características o procesos",
+ "nav-eip-label": "EIP - Propuestas de mejora de Ethereum",
+ "nav-emerging-description": "Conozca otros nuevos casos de uso para Ethereum",
+ "nav-emerging-label": "Casos de uso emergentes",
+ "nav-enterprise-description": "Aplicaciones empresariales para Ethereum",
+ "nav-ethereum-org-description": "Este sitio web está orientado a la comunidad: únase y contribuya con él",
+ "nav-ethereum-wallets-description": "Una aplicación para interactuar con su cuenta Ethereum",
+ "nav-events-description": "Descentralización y libertad para que todos participen",
+ "nav-events-irl-description": "Cada mes se celebran grandes eventos Etheerum en persona y en línea",
+ "nav-events-label": "Comunidades y eventos",
+ "nav-events-online-description": "Cientos de miles de entusiastas de Ethereum producen estas comunidades en línea",
+ "nav-find-wallet-description": "Las carteras le permiten usar criptomonedas",
+ "nav-find-wallet-label": "Elija su cartera",
+ "nav-gas-fees-description": "Cómo se calcula la comisión por transacción de sus ETH",
+ "nav-gas-fees-label": "Tarifas de gas",
+ "nav-get-eth-description": "Necesita ether (ETH) para utilizar las aplicaciones de Ethereum",
+ "nav-get-started-description": "Sus primeros pasos para utilizar Ethereum",
+ "nav-governance-description": "El proceso implicado en la actualización del protocolo de Ethereum",
+ "nav-governance-label": "Gobernanza",
+ "nav-grants-description": "Una lista seleccionada por nuestra comunidad de proyectos que proporcionan programas de financiación mediante becas",
+ "nav-guide-create-account-description": "Cualquiera puede crearse una cuenta en Ethereum siempre que lo desee, de forma gratuita y con una aplicación de cartera",
+ "nav-guide-create-account-label": "Cómo crear una cuenta de Ethereum",
+ "nav-guide-revoke-access-description": "Interactúe con contratos inteligentes y aplicaciones en el ecosistema de Ethereum de forma segura",
+ "nav-guide-revoke-access-label": "Cómo revocar el acceso a contratos inteligentes",
+ "nav-guide-use-wallet-description": "Domine el funcionamiento de todas las funciones básicas de su cartera",
+ "nav-guide-use-wallet-label": "Cómo utilizar una cartera",
+ "nav-guides-description": "Guías prácticas paso a paso para ayudarle a empezar",
+ "nav-guides-label": "Guías prácticas",
+ "nav-history-description": "Una cronología de las actualizaciones y bifurcaciones principales",
+ "nav-history-label": "Historia técnica de Ethereum",
+ "nav-layer-2-description": "Transacciones más rápidas y baratas para Ethereum",
+ "nav-learn-by-coding-description": "Herramientas que le ayudan a experimentar con Ethereum",
+ "nav-local-env-description": "Elija y defina su pila de desarrollo en Ethereum",
+ "nav-mainnet-description": "Las aplicaciones de cadena de bloques para empresa se pueden construir en la red principal y pública de Ethereum",
+ "nav-nft-description": "Una forma de representar cualquier cosa única como un activo basado en Ethereum",
+ "nav-open-research-description": "Una de las principales bazas de Ethereum es su activa comunidad de investigación",
+ "nav-open-research-label": "Abrir investigación",
+ "nav-overview-description": "Recursos educativos de Ethereum",
+ "nav-overview-label": "Resumen",
+ "nav-participate-overview-description": "Resumen de cómo participar",
"nav-primary": "Principal",
- "nft-page": "Tókenes no fungibles (NFT)",
- "nfts": "NTF",
+ "nav-private-description": "Recursos para desarrolladores para la empresa privada Ethereum",
+ "nav-quizzes-description": "Descubra cómo de bien puede entender Ethereum y las criptomonedas",
+ "nav-quizzes-label": "Evalúe su conocimiento",
+ "nav-refi-description": "Un sistema económico alternativo basado en principios regenerativos",
+ "nav-research-description": "Procesos utilizados para mejorar Ethereum",
+ "nav-research-label": "Investigación y desarrollo",
+ "nav-roadmap-description": "El camino hacia una mayor escalabilidad, seguridad y sostenibilidad para Ethereum",
+ "nav-roadmap-future-description": "Reforzar Ethereum como una red descentralizada y sólida",
+ "nav-roadmap-future-label": "De cara al futuro",
+ "nav-roadmap-label": "Hoja de ruta",
+ "nav-roadmap-scaling-description": "Actualizaciones de red para reducir aún más los costes de transacciones y la velocidad",
+ "nav-roadmap-scaling-label": "Transacciones más baratas",
+ "nav-roadmap-security-description": "Asegurarse de que Etherum sigue resistiendo a todo tipo de ataques en el futuro",
+ "nav-roadmap-security-label": "Seguridad mejorada",
+ "nav-roadmap-ux-description": "El uso de Ethereum debe simplificarse",
+ "nav-roadmap-ux-label": "Mejor experiencia de usuario",
+ "nav-run-a-node-description": "Sea completamente autónomo mientras ayuda a proteger la red",
+ "nav-security-description": "Aprenda las mejores prácticas en el uso de criptomonedas",
+ "nav-smart-contracts-description": "Los bloques de construcción fundamentales del ecosistema Ethereum",
+ "nav-stablecoins-description": "Las monedas estables son los tókenes de Ethereum diseñados para mantenerse a un valor fijo",
+ "nav-stake-description": "Gane recompensas por proteger Ethereum",
+ "nav-stake-label": "Participar",
+ "nav-staking-home-description": "Una presentación de las distintas opciones de participación",
+ "nav-staking-home-label": "Inicio de participaciones",
+ "nav-staking-pool-description": "Participe y gane recompensas con cualquier cantidad de ETH al unirse a otros",
+ "nav-staking-pool-label": "Participación agrupada",
+ "nav-staking-saas-description": "Nodos de terceros gestionan la operación de su cliente validador",
+ "nav-staking-saas-label": "Participar con un servicio",
+ "nav-staking-solo-description": "Ejecute hardware doméstico y contribuya personalmente a la seguridad y a la descentralización de la red Ethereum.",
+ "nav-staking-solo-label": "Participación en solitario",
+ "nav-start-building-description": "Información útil para principiantes",
+ "nav-translation-program-description": "Una iniciativa de colaboración para traducir ethereum.org a todos los idiomas",
+ "nav-tutorials-description": "Lista seleccionada de tutoriales de la comunidad",
+ "nav-use-cases-description": "Descubra diferentes ideas de usos de Ethereum",
+ "nav-use-cases-label": "Casos de uso",
+ "nav-what-is-ether-description": "La moneda de las aplicaciones de Ethereum",
+ "nav-what-is-ethereum-description": "Entienda qué es lo que hace a Ethereum especial",
+ "nav-what-is-web3-label": "¿Qué es Web 3.0?",
+ "nav-what-is-web3-description": "Una alternativa a los monopolios centralizados que dictan las normas",
+ "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": "NFT",
"no": "No",
"on-this-page": "En esta página",
"open-research": "Abrir investigación",
"page-developers-aria-label": "Menú para desarrolladores",
"page-index-meta-title": "Inicio",
"page-last-updated": "Última actualización de la página",
+ "participate": "Participar",
+ "participate-menu": "Menú Participar",
"pbs": "Separación del creador de propuestas",
"pools": "Participación agrupada",
"privacy-policy": "Política de privacidad",
@@ -164,8 +275,10 @@
"refresh": "Actualice la página.",
"return-home": "volver a la página principal",
"roadmap": "Hoja de ruta de Ethereum",
+ "research": "Investigación",
+ "research-menu": "Menú Investigación",
"resources": "Recursos de traducción",
- "regenerative-finance": "Finanzas regerenativas (ReFi)",
+ "regenerative-finance": "ReFi - Finanzas regerenativas",
"run-a-node": "Ejecutar un nodo",
"rollup-component-website": "Sitio web",
"rollup-component-developer-docs": "Documentos para desarrolladores",
@@ -182,7 +295,7 @@
"single-slot-finality": "Finalidad de la ranura única",
"statelessness": "Sin estado",
"see-contributors": "Ver colaboradores",
- "set-up-local-env": "Configurar entorno local",
+ "set-up-local-env": "Crear un entorno local",
"sharding": "Fragmentación",
"show-all": "Mostrar todo",
"show-less": "Mostrar menos",
@@ -211,8 +324,10 @@
"try-using-search": "Utilice el buscador para encontrar lo que está buscando o",
"tutorials": "Tutoriales",
"up": "Subir",
+ "use": "Usar",
"use-ethereum": "Usar Ethereum",
"use-ethereum-menu": "Usar menú de Ethereum",
+ "use-menu": "Menú Usar",
"user-experience": "Experiencia de usuario",
"verkle-trees": "Árboles Verkle",
"wallets": "Carteras",
diff --git a/src/intl/es/learn-quizzes.json b/src/intl/es/learn-quizzes.json
index b1d19b05a29..7957d76609b 100644
--- a/src/intl/es/learn-quizzes.json
+++ b/src/intl/es/learn-quizzes.json
@@ -109,7 +109,7 @@
"c001-prompt": "Web3 permite a los usuarios poseer recursos digitales directamente a través de:",
"c001-a-label": "DAO",
"c001-a-explanation": "Los DAO (organizaciones autónomas descentralizadas) son comunidades propias de miembros sin liderazgo centralizado.",
- "c001-b-label": "NTF",
+ "c001-b-label": "NFT",
"c001-b-explanation": "Los NFT (tókenes no fungibles) proporcionan una manera de representar cualquier cosa única como un activo basado en Ethereum.",
"c001-c-label": "ENS",
"c001-c-explanation": "ENS (servicio de designación de Ethereum) es un servicio descentralizado de designación para la cadena de bloques de Ethereum.",
diff --git a/src/intl/es/page-dapps.json b/src/intl/es/page-dapps.json
index 731d920b46f..c55fcae42af 100644
--- a/src/intl/es/page-dapps.json
+++ b/src/intl/es/page-dapps.json
@@ -219,7 +219,7 @@
"page-dapps-matcha-logo-alt": "Logo de Matcha",
"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 9e739d504e7..85b5f0ea38f 100644
--- a/src/intl/es/page-wallets-find-wallet.json
+++ b/src/intl/es/page-wallets-find-wallet.json
@@ -7,7 +7,6 @@
"page-find-wallet-meta-title": "Encontrar una cartera de Ethereum",
"page-find-wallet-title": "Encontrar una cartera",
"page-find-wallet-try-removing": "Intente eliminar una o dos características",
- "page-find-wallet-choose-to-compare": "Elija para comparar",
"page-stake-eth": "Apostar ETH",
"page-find-wallet-open-source": "Código abierto",
"page-find-wallet-open-source-desc": "Software de código abierto que permite a cualquiera escrutar la integridad y seguridad de la aplicación",
@@ -16,8 +15,6 @@
"page-find-wallet-non-custodial-desc": "Carteras que no controlan sus claves privadas",
"page-find-wallet-hardware-wallet-support": "Soporte para cartera electrónica",
"page-find-wallet-hardware-wallet-support-desc": "Carteras que pueden conectarse a la cartera de un equipo para una mejor seguridad",
- "page-find-wallet-walletconnect": "WalletConnect",
- "page-find-wallet-walletconnect-desc": "Carteras que soportan WalletConnect para conectarse a aplicaciones",
"page-find-wallet-rpc-importing": "Importación de RPC",
"page-find-wallet-rpc-importing-desc": "Carteras que admiten puntos finales personalizados de RPC para conectarse a diferentes nodos o redes",
"page-find-wallet-nft-support": "Soporte de NFT",
@@ -36,8 +33,6 @@
"page-find-wallet-ens-support-desc": "Carteras que soportan el Servicio de nombre de Ethereum (ENS)",
"page-find-wallet-token-importing": "Importación de tókenes",
"page-find-wallet-token-importing-desc": "Importar cualquier token de ERC para usar en la cartera",
- "page-find-wallet-fee-optimization": "Optimización de tarifas",
- "page-find-wallet-fee-optimization-desc": "Soporte de transacciones de tipo 2 para tarifas de gas optimizadas, y reembolsos por gas no utilizado",
"page-find-wallet-buy-crypto": "Comprar cripto",
"page-find-wallet-buy-crypto-desc": "Comprar criptomonedas con dinero fiduciario directamente en la cartera\n *Nota: comprar criptomonedas puede ser específico para cada región",
"page-find-wallet-sell-for-fiat": "Vender por fiat",
@@ -46,12 +41,11 @@
"page-find-wallet-multisig-desc": "Carteras que requieren múltiples firmas para autorizar una transacción",
"page-find-wallet-social-recovery": "Recuperación social",
"page-find-wallet-social-recovery-desc": "Carteras que permiten a los guardianes cambiar la clave de acceso para los monederos de contrato inteligente",
- "page-find-wallet-token-support": "Soporte de tókenes",
"page-find-wallet-features": "Funciones",
"page-find-wallet-security": "Seguridad",
"page-find-wallet-smart-contract": "Contrato inteligente",
"page-find-wallet-check-out": "Eche un vistazo",
- "page-find-wallet-info-updated-on": "información actualizada sobre",
+ "page-find-wallet-info-updated-on": "información actualizada en",
"page-find-wallet-showing-all-wallets": "Mostrar todas las carteras",
"page-find-wallet-showing": "Exhibición ",
"page-find-wallet-wallets": "carteras",
@@ -63,10 +57,9 @@
"page-find-wallet-chromium": "Chromium",
"page-find-wallet-firefox": "Firefox",
"page-find-wallet-hardware": "Hardware",
- "page-find-wallet-hardware-desc": "Carteras de hardware",
"page-find-wallet-new-to-crypto-title": "Nuevo en cripto",
"page-find-wallet-new-to-crypto-desc": "Usted es un usuario por primera vez en busca de su primera cartera",
- "page-find-wallet-nfts-title": "NTF",
+ "page-find-wallet-nfts-title": "NFT",
"page-find-wallet-nfts-desc": "Usted es una persona que está al tanto de todo sobre los NFT y desea una cartera con soporte para NFT",
"page-find-wallet-hodler-title": "Titular",
"page-find-wallet-hodler-desc": "Es alguien que tiene tókenes y no quiere tocarlos.",
@@ -74,22 +67,14 @@
"page-find-wallet-finance-desc": "Usted es alguien que utiliza DeFi y quiere una cartera que le permita conectarse a aplicaciones DeFi.",
"page-find-wallet-developer-title": "Desarrollador",
"page-find-wallet-developer-desc": "Es desarrollador y necesita una cartera para ayudar a desarrollar y probar DApps.",
- "page-find-wallet-persona-desc": "Elija el perfil que coincida con su tipo de usuario y filtre la lista de carteras.",
"page-find-wallet-filters": "Filtros",
"page-find-wallet-active": "activos",
- "page-find-wallet-profile-filters": "Filtros de perfil",
- "page-find-wallet-feature-filters": "Filtros de características",
"page-find-wallet-footnote-1": "Las carteras enumeradas en esta página no constituyen una recomendación oficial y solo se facilitan con fines informativos.",
"page-find-wallet-footnote-2": "Los propios proyectos de carteras han facilitado su descripción.",
"page-find-wallet-footnote-3": "Añadimos productos a esta página en función de los criterios de nuestra política de listado. Si quiere que añadamos una cartera, cree una incidencia en GitHub.",
"page-find-wallet-mobile": "Versión para móvil",
- "page-find-wallet-mobile-desc": "Wallets con aplicaciones mobiles",
"page-find-wallet-desktop": "Versión para escritorio",
- "page-find-wallet-desktop-desc": "Carteras con aplicaciones para escritorio",
"page-find-wallet-browser": "Navegador",
- "page-find-wallet-browser-desc": "Carteras con extension para navegadores",
"page-find-wallet-device": "Dispositivo",
- "page-find-choose-to-compare": "Elija para comparar",
- "page-find-wallet-choose-features": "Seleccionar características",
"page-find-wallet-reset-filters": "Restablecer filtros"
}
diff --git a/src/intl/fa/common.json b/src/intl/fa/common.json
index b6a1f944d1f..005254cf5d5 100644
--- a/src/intl/fa/common.json
+++ b/src/intl/fa/common.json
@@ -1,17 +1,29 @@
{
- "account-abstraction": "انتزاع حساب",
"about-ethereum-org": "درباره ethereum.org",
"about-us": "درباره ما",
+ "adding-desci-projects": "افزودن پروژههای Desci",
+ "adding-developer-tools": "افزودن ابزارهای توسعهدهنده",
+ "adding-exchanges": "افزودن صرافیها",
+ "adding-glossary-terms": "افزودن عبارات واژهنامه",
+ "adding-staking-products": "افزودن پروژههای سهامگذاری",
+ "adding-wallets": "افزودن کیف پول",
+ "account-abstraction": "تفکیک حساب",
+ "acknowledgements": "تقدیرات",
"aria-toggle-search-button": "تغییر وضعیت دکمه جستجو",
"aria-toggle-menu-button": "تغییر وضعیت دکمه منو",
- "beacon-chain": "زنجیره بیکن",
- "bridges": "پلهای زنجیرهی بلوکی",
+ "beacon-chain": "زنجیرهی بیکن",
+ "bridges": "پلهای بلاکچین",
+ "bug-bounty": "پاداش برای باگ",
+ "build": "ساخت",
+ "build-menu": "منوی ساخت",
"clear": "پاککردن",
"close": "بستن",
- "community": "جامعه",
- "community-hub": "مرکز اجتماع",
+ "community": "اجتماع",
+ "community-hub": "دورهمی جامعه",
"community-menu": "منوی جامعه",
"contact": "تماس",
+ "content-buckets": "دستههای محتوا",
+ "content-resources": "منابع محتوا",
"content-standardization": "استانداردسازی محتوا",
"contributing": "مشارکت",
"contributors": "مشارکت کنندگان",
@@ -19,17 +31,20 @@
"cookie-policy": "سیاست کوکیها",
"copied": "کپی شد",
"copy": "کپی",
- "danksharding": "Danksharding",
- "dao-page": "سازمانهای مستقل غیر متمرکز (DAOs)",
+ "danksharding": "دانکشاردینگ",
+ "dao-page": "DAOها - سازمانهای خودمختار غیرمتمرکز",
"dark-mode": "تاریک",
"data-provided-by": "منبع دادهها:",
- "decentralized-applications-dapps": "برنامههای کاربردی غیر متمرکز (dapps)",
- "decentralized-identity": "هویت نامتمرکز",
- "decentralized-social-networks": "شبکههای مجازی نامتمرکز",
- "decentralized-science": "دانش نامتمرکز (دیسای)",
- "defi-page": "امور مالی غیر متمرکز (DeFi)",
+ "decentralized-applications-dapps": "Dapps - برنامههای کاربردی غیر متمرکز",
+ "decentralized-identity": "هویت غیرمتمرکز",
+ "decentralized-social-networks": "شبکه های اجتماعی غیر متمرکز",
+ "decentralized-science": "دیسای - دانش نامتمرکز",
+ "description": "توضیحات برای آیتم پیمایش",
+ "defi-page": "DeFi - امور مالی غیر متمرکز",
+ "design": "طراحی",
+ "design-principles": "اصول طراحی",
"devcon": "دِوکان",
- "developers": "توسعه دهندگان",
+ "developers": "توسعهدهندگان",
"developers-home": "خانه توسعه دهندگان",
"docs": "اسناد",
"docsearch-to-select": "برای انتخاب",
@@ -37,7 +52,7 @@
"docsearch-to-close": "مسدود کردن",
"docsearch-search-by": "جست و جو بر اساس",
"docsearch-start-recent-searches-title": "موارد اخیر",
- "docsearch-start-no-recent-searches": "به تازگی جست و جویی نکردهاید",
+ "docsearch-start-no-recent-searches": "به تازگی جست و جویی نکرده اید",
"docsearch-start-save-recent-search": "ذخیره این جستجو",
"docsearch-start-remove-recent-search": "حذف کردن این جست و جو از تاریخچه",
"docsearch-start-favorite-searches": "علاقه مندی ها",
@@ -63,7 +78,7 @@
"ethereum-bug-bounty": "برنامه پاداش باگ اتریوم",
"consensus-when-shipping": "چه زمانی راهاندازی میشود؟",
"ethereum-upgrades": "ارتقاهای اتریوم",
- "ethereum-brand-assets": "داراییهای نام تجاری اتریوم",
+ "ethereum-brand-assets": "داراییهای \"برند\" اتریوم",
"ethereum-online": "جوامع آنلاین",
"ethereum-events": "رویدادهای اتریوم",
"ethereum-foundation": "بنیاد اتریوم",
@@ -75,7 +90,7 @@
"ethereum-protocol": "پروتکل اتریوم",
"ethereum-security": "امنیت اتریوم و جلوگیری از کلاهبرداری",
"ethereum-support": "پشتیبانی اتریوم",
- "ethereum-wallets": "کیف پول های اتریوم",
+ "ethereum-wallets": "کیفهای پول اتریوم",
"ethereum-whitepaper": "برگه سفید اتریوم",
"feedback-widget-prompt": "آیا این صفحه مفید است؟",
"feedback-card-prompt-page": "آیا این برگه مفید بود؟",
@@ -86,19 +101,19 @@
"feedback-widget-thank-you-subtitle-ext": "اگر به کمک نیاز دارید، میتوانید از طریق دیسکورد ما با انجمن در تماس باشید.",
"feedback-widget-thank-you-timing": "2-3 دقیقه",
"feedback-widget-thank-you-cta": "باز کردن نظرسنجی کوتاه",
- "find-wallet": "یافتن کیف پول",
+ "find-wallet": "کیف پول را پیدا کنید",
"future-proofing": "تضمین آینده",
- "get-eth": "دریافت اتریوم",
+ "get-eth": "دریافت اتر",
"get-involved": "مشارکت کنید",
"get-started": "شروع کنید",
"grants": "کمکهای بلاعوض",
"grant-programs": "برنامههای اعطای اکوسیستم",
"guides": "راهنماییها",
- "guides-hub": "مرکز راهنماییها",
+ "guides-hub": "راهنماها",
"history-of-ethereum": "تاریخچه اتریوم",
"home": "خانه",
"how-ethereum-works": "اتریوم چگونه کار می کند",
- "how-to-register-an-ethereum-account": "چگونگی «ساخت» یک حساب اتریوم",
+ "how-to-create-an-ethereum-account": "چگونگی «ساخت» یک حساب اتریوم",
"how-to-revoke-token-access": "چطور میتوانید دسترسی قرارداد هوشمند را به رمزارزهای خود ممنوع کنید",
"how-to-swap-tokens": "چگونگی مبادله توکنها",
"how-to-use-a-bridge": "چگونه توکنها را به لایه 2 انتقال دهیم",
@@ -128,11 +143,115 @@
"loading-error-try-again-later": "امکان بارگذاری دادهها وجود ندارد. لطفا بعدا دوباره تلاش کنید.",
"logo": "لوگو",
"mainnet-ethereum": "شبکه اصلی اتریوم",
+ "merge": "ادغام",
"more": "بیشتر",
- "nav-developers": "توسعهدهندگان",
+ "nav-about-description": "یک پروژه عمومی و منبعباز برای جامعه اتریوم",
+ "nav-advanced-description": "موضوعات پیچیدهتر را بیاموزید",
+ "nav-advanced-label": "پیشرفته",
+ "nav-basics-description": "اصول اتریوم را بشناسید",
+ "nav-basics-label": "اصول اولیه",
+ "nav-bridges-description": "Web3 به اکوسیستمی از بلاکچینهای L1 اولیه و راهکارهای مقیاسپذیری L2 تکامل یافته است",
+ "nav-builders-home-description": "کتابچه راهنمای سازنده برای اتریوم—توسط سازندگان، برای سازندگان",
+ "nav-builders-home-label": "خانه سازنده",
+ "nav-contribute-description": "اگر میخواهید کمک کنید، این شما را راهنمایی میکند",
+ "nav-contribute-label": "مشارکت در ethereum.org",
+ "nav-dao-description": "جوامع تحت مالکیت اعضا بدون مرجع متمرکز",
+ "nav-dapps-description": "با استفاده از اتریوم، در اکوسیستمی غنی از برنامهها کاوش کنید",
+ "nav-defi-description": "یک جایگزین جهانی و باز برای بازار مالی سنتی",
+ "nav-desci-description": "یک جایگزین جهانی و باز برای سیستم علمی فعلی",
+ "nav-desoc-description": "پلتفرمهای مبتنی بر بلاکچین برای تعامل اجتماعی و تولید محتوا",
"nav-developers-docs": "اسناد توسعهدهندگان",
+ "nav-developers": "توسعهدهندگان",
+ "nav-did-description": "شناسههای غیرمتمرکز منحصربهفرد خود را صادر کرده و مالک آن شوید",
+ "nav-docs-description": "اسنادی برای کمک به شما بهمنظور درک و ساخت با اتریوم",
+ "nav-docs-design-description": "شرح چالشهای منحصربهفرد طراحی web3، بهترین رویهها، و آمار تحقیقاتی کاربر",
+ "nav-docs-design-label": "اصول طراحی UX/UI",
+ "nav-docs-foundation-description": "اصول اساسی برای توسعه در اتریوم",
+ "nav-docs-foundation-label": "موضوعات بنیادی",
+ "nav-docs-overview-description": "خانه شما برای اسناد توسعهدهنده",
+ "nav-docs-stack-description": "از تمام جزئیات سهام اتریوم آگاه شوید",
+ "nav-docs-stack-label": "سهام اتریوم",
+ "nav-eip-description": "استانداردهایی که ویژگیها یا فرآیندهای جدید را مشخص میکنند",
+ "nav-eip-label": "EIPs - پیشنهادهای بهبود اتریوم",
+ "nav-emerging-description": "سایر موارد کاربردهای جدیدتر برای اتریوم را بشناسید",
+ "nav-emerging-label": "موارد کاربرد در حال ظهور",
+ "nav-enterprise-description": "کاربردهای تجاری برای اتریوم",
+ "nav-ethereum-org-description": "این وبسایت از نوع جامعهمحور است—به ما بپیوندید و شما نیز مشارکت کنید",
+ "nav-ethereum-wallets-description": "برنامهای برای تعامل با حساب اتریوم شما",
+ "nav-events-description": "تمرکززدایی و آزادی مشارکت برای همگان",
+ "nav-events-irl-description": "هر ماه رویدادهای مهم اتریوم بهصورت حضوری و آنلاین برگزار میشود",
+ "nav-events-label": "جوامع و رویدادها",
+ "nav-events-online-description": "صدها هزار نفر از علاقهمندان به اتریوم در این جوامع آنلاین پیشگام میشوند",
+ "nav-find-wallet-description": "کیفهای پول به شما امکان استفاده از رمزارز را میدهند",
+ "nav-find-wallet-label": "کیف پول خود را انتخاب کنید",
+ "nav-gas-fees-description": "کارمزدهای تراکنش ETH چگونه محاسبه میشوند",
+ "nav-get-eth-description": "برای استفاده از برنامههای اتریوم به اتر (ETH) نیاز دارید",
+ "nav-get-started-description": "اولین قدمهای شما برای استفاده از اتریوم",
+ "nav-governance-description": "فرآیند دخیل در ارتقای پروتکل اتریوم",
+ "nav-governance-label": "حکومت",
+ "nav-grants-description": "فهرستی تنظیمشده توسط جامعه ما در مورد پروژههایی که برنامههای تأمین مالی را ارائه میکنند",
+ "nav-guide-create-account-description": "هر کسی میتواند در هر زمانی که بخواهد، بهصورت رایگان با یک برنامه کیف پول، یک حساب اتریوم ایجاد کند",
+ "nav-guide-create-account-label": "چگونگی «ساخت» یک حساب اتریوم",
+ "nav-guide-revoke-access-description": "هنگام تعامل با قراردادهای هوشمند و برنامههای کاربردی در اکوسیستم اتریوم همواره در امان باشید",
+ "nav-guide-revoke-access-label": "نحوه لغو دسترسی قرارداد هوشمند",
+ "nav-guide-use-wallet-description": "یاد بگیرید چگونه با تمام عملکردهای اساسی یک کیف پول کار کنید",
+ "nav-guide-use-wallet-label": "چگونگی استفاده از کیفپول",
+ "nav-guides-description": "راهنماهای عملی گامبهگام برای کمک به شما در شروع کار",
+ "nav-guides-label": "نحوه دسترسی به راهنماییها",
+ "nav-history-description": "خط زمانی تمام دستهبندیها و بهروزرسانیهای اصلی",
+ "nav-history-label": "تاریخچه فنی اتریوم",
+ "nav-layer-2-description": "تراکنشهای ارزانتر و سریعتر برای اتریوم",
+ "nav-learn-by-coding-description": "ابزارهایی که به شما کمک میکنند با اتریوم آزمایش کنید",
+ "nav-local-env-description": "سهام توسعه اتریوم خود را انتخاب و راهاندازی کنید",
+ "nav-mainnet-description": "برنامههای بلاکچین سازمانی را میتوان بر روی شبکه اصلی عمومی اتریوم ایجاد کرد",
+ "nav-nft-description": "راهی برای نمایش دادن هر چیز بیهمتا بهعنوان یک دارایی مبتنی بر اتریوم",
+ "nav-open-research-description": "یکی از نقاط قوت اولیه اتریوم جامعه تحقیقاتی فعال آن است",
+ "nav-open-research-label": "پژوهش باز",
+ "nav-overview-description": "آموزش همهجانبه درباره اتریوم",
+ "nav-overview-label": "نگاه اجمالی",
+ "nav-participate-overview-description": "مروری بر نحوه مشارکت",
"nav-primary": "اولیه",
- "nft-page": "توکنهای معاوضهناپذیر (NFT)",
+ "nav-private-description": "منابع توسعه دهندگان برای تشکیلات سازمانی اتریوم",
+ "nav-quizzes-description": "دریابید که چقدر از اتریوم و رمزارزها آگاه هستید",
+ "nav-quizzes-label": "دانش خود را بسنجید",
+ "nav-refi-description": "یک سیستم اقتصادی جایگزین مبتنی بر اصول بازتولیدکننده",
+ "nav-research-description": "فرآیندهای مورد استفاده برای بهبود اتریوم",
+ "nav-research-label": "تحقیق و توسعه",
+ "nav-roadmap-description": "مسیری به سمت افزایش مقیاسپذیری، امنیت و پایداری اتریوم",
+ "nav-roadmap-future-description": "تثبیت اتریوم بهعنوان یک شبکه قوی و غیرمتمرکز",
+ "nav-roadmap-future-label": "تضمین آینده",
+ "nav-roadmap-label": "نقشهی راه",
+ "nav-roadmap-scaling-description": "بهروزرسانیهای شبکه برای کاهش بیشتر هزینهها و سرعت تراکنش",
+ "nav-roadmap-scaling-label": "تراکنشهای ارزانتر",
+ "nav-roadmap-security-description": "اطمینان از اینکه اتریوم در برابر انواع حملات در آینده مقاوم میماند",
+ "nav-roadmap-security-label": "بهبود امنیت",
+ "nav-roadmap-ux-description": "استفاده از اتریوم باید ساده شود",
+ "nav-run-a-node-description": "درعینحال که به امنیت شبکه کمک میکنید، حاکمیت کامل را به دست آورید",
+ "nav-security-description": "بهترین رویهها را در هنگام استفاده از رمزارز بیاموزید",
+ "nav-smart-contracts-description": "عناصر سازنده اساسی اکوسیستم اتریوم",
+ "nav-stablecoins-description": "استیبل کوینها توکنهای اتریوم هستند که به گونهای طراحی شدهاند که مقدارشان ثابت میماند",
+ "nav-stake-description": "در ازای ایمنسازی اتریوم، پاداش کسب کنید",
+ "nav-stake-label": "سهامگذاری",
+ "nav-staking-home-description": "مروری بر گزینههای مختلف برای سهامگذاری",
+ "nav-staking-home-label": "صفحه اصلی سهامگذاری",
+ "nav-staking-pool-description": "از طریق پیوستن به دیگران، هر چقدر ETH که میخواهید سهامگذاری کنید و پاداش کسب کنید",
+ "nav-staking-pool-label": "سهامگذاری گروهی",
+ "nav-staking-saas-description": "عملگرهای گره شخص ثالث، عملیات کلاینت اعتبارسنج شما را مدیریت میکنند",
+ "nav-staking-saas-label": "سهامگذاری با یک خدمت",
+ "nav-staking-solo-description": "سختافزار خانگی را اجرا کنید و شخصاً امنیت و تمرکززدایی شبکه اتریوم را بیشتر کنید",
+ "nav-staking-solo-label": "سهام گذاری انفرادی",
+ "nav-start-building-description": "اطلاعات مفید برای تازهواردان",
+ "nav-translation-program-description": "تلاش جمعی برای ترجمه ethereum.org به همه زبانها",
+ "nav-tutorials-description": "لیست تهیهشده از آموزشهای انجمن",
+ "nav-use-cases-description": "ایدههای مختلف برای استفاده از اتریوم را کشف کنید",
+ "nav-use-cases-label": "موارد استفاده",
+ "nav-what-is-ether-description": "واحد پول برنامههای کاربردی اتریوم",
+ "nav-what-is-ethereum-description": "با ویژگی متمایز اتریوم آشنا شوید",
+ "nav-what-is-web3-label": "Web3 چیست؟",
+ "nav-what-is-web3-description": "جایگزینی برای انحصارهای متمرکز که قوانین را تحمیل میکنند",
+ "nav-whitepaper-description": "وایتپیپر اصلی اتریوم که توسط ویتالیک بوترین در سال 2014 نوشته شده است",
+ "nav-zkp-description": "روشی برای اثبات اعتبار یک گزاره بدون افشای خودِ گزاره",
+ "nft-page": "NFT - توکنهای معاوضهناپذیر",
"nfts": "توکنهای معاوضهناپذیر",
"no": "خیر",
"on-this-page": "در این صفحه",
@@ -140,6 +259,8 @@
"page-developers-aria-label": "منوی توسعهدهندهها",
"page-index-meta-title": "خانه",
"page-last-updated": "آخرین بروزرسانی صفحه",
+ "participate": "مشارکت کنید",
+ "participate-menu": "منوی مشارکت",
"pbs": "جداسازی سازنده-پیشنهاددهنده",
"pools": "سهامگذاری گروهی",
"privacy-policy": "سیاست حریم خصوصی",
@@ -150,10 +271,12 @@
"refresh": "لطفا صفحه را دوباره باز کنید.",
"return-home": "بازگشت به صفحه اصلی",
"roadmap": "نقشه راه اتریوم",
+ "research": "پژوهش",
+ "research-menu": "منوی پژوهش",
"resources": "منابع ترجمه",
- "regenerative-finance": "امور مالی بازتولیدکننده (ReFi)",
+ "regenerative-finance": "ReFi - امور مالی بازتولیدکننده",
"run-a-node": "راهاندازی یک گره",
- "rollup-component-website": "وبسایت",
+ "rollup-component-website": "وب سایت",
"rollup-component-developer-docs": "اسناد توسعهدهندگان",
"rollup-component-technology-and-risk-summary": "خلاصه فناوری و ریسک",
"scaling": "مقیاسپذیری",
@@ -164,23 +287,25 @@
"search-box-blank-state-text": "جستجو کنید!",
"search-eth-address": "این شبیه به یک آدرس اتریوم است. ما اطلاعات دقیقی درباره آدرسها ارائه نمیکنیم. به دنبال یک جستجوگر بلاک برای این کار بگردید مثل",
"search-no-results": "موردی برای جستجویتان یافت نشد",
+ "security": "ایمنی",
"single-slot-finality": "قطعیت تک جایگاهی",
"statelessness": "بیوضعیتی",
"see-contributors": "مشاهده مشارکت کنندگان",
"set-up-local-env": "تنظیم محیط محلی",
- "sharding": "خرد کردن",
+ "sharding": "زنجیره ای سازی",
"show-all": "نمایش همه",
"show-less": "نمایش کمتر",
"site-description": "اتریوم یک پلتفرم جهانی و غیرمتمرکز برای پول و انواع جدیدی از کاربردها است. در اتریوم میتوانید کدی بنویسید که بتواند پول را کنترل کند، و برنامههایی بسازید که در هر جای دنیا قابل دسترسی باشند.",
- "site-title": "ethereum.org",
+ "site-title": "قهرمان ethereum.org",
"skip-to-main-content": "پرش به محتوای اصلی",
"smart-contracts": "قراردادهای هوشمند",
- "stablecoins": "ارز دیجیتال باثبات",
+ "stablecoins": "استیبل کوینها",
"stake-eth": "اتر را سهام گذاری کنید",
"staking": "سهام گذاری",
"start-here": "از اینجا شروع کنید",
"style-guide": "راهنمای سبک",
"solo": "سهام گذاری انفرادی",
+ "support": "پشتیبانی",
"terms-of-use": "شرایط استفاده",
"translation-banner-body-new": "شما این صفحه را به زبان انگلیسی میبینید زیرا ما هنوز آن را ترجمه نکردهایم. برای ترجمه این محتوا به ما کمک کنید.",
"translation-banner-body-update": "نسخه جدیدی از این صفحه موجود است اما در حال حاضر فقط به زبان انگلیسی است. در ترجمه آخرین نسخه به ما کمک کنید.",
@@ -191,19 +316,22 @@
"translation-banner-no-bugs-title": "اینجا هیچ اشکالی وجود ندارد!",
"translation-banner-no-bugs-content": "این صفحه هنوز ترجمه نشده است. ما فعلا این صفحه را عمدا به زبان انگلیسی رها کردهایم.",
"translation-banner-no-bugs-dont-show-again": "دیگر نمایش نده",
+ "translation-program": "برنامه ترجمه",
"try-using-search": "سعی کنید از جستجو برای پیدا کردن آنچه به دنبال آن هستید استفاده کنید یا",
"tutorials": "آموزشها",
"up": "بالا",
+ "use": "استفاده",
"use-ethereum": "از اتریوم استفاده کنید",
"use-ethereum-menu": "از منوی اتریوم استفاده کنید",
+ "use-menu": "منوی استفاده",
"user-experience": "تجربهی کاربری",
"verkle-trees": "درختان ورکل",
- "wallets": "کیف پولها",
+ "wallets": "کیفپولها",
"we-couldnt-find-that-page": "ما نتوانستیم آن صفحه را پیدا کنیم",
"web3": "Web3 چیست؟",
"web3-title": "Web3",
"website-last-updated": "آخرین بروزرسانی وبسایت",
- "what-is-ether": "اتریوم (ETH) چیست؟",
+ "what-is-ether": "اتر (ETH) چیست؟",
"what-is-ethereum": "اتریوم چیست؟",
"withdrawals": "برداشتها از سهامگذاری",
"yes": "بله",
diff --git a/src/intl/fa/page-languages.json b/src/intl/fa/page-languages.json
index e4190ba0c04..a033e09b82d 100644
--- a/src/intl/fa/page-languages.json
+++ b/src/intl/fa/page-languages.json
@@ -1,9 +1,9 @@
{
"page-languages-h1": "پشتیبانی زبان",
- "page-languages-interested": "مایل به همکاری ؟",
- "page-languages-learn-more": "درباره ی ترجمه این برنامه بیشتر بدانید",
+ "page-languages-interested": "مایل به مشارکت هستید؟",
+ "page-languages-learn-more": "برای اطلاعات بیشتر در رابطه با «برنامه ترجمه» کلیک کنید",
"page-languages-meta-desc": "منبعی در تمام زبان های پشتیبانی شده ethereum.org و راه های مشارکت به عنوان مترجم.",
- "page-languages-meta-title": "ترجمه ی زبان ethereum.org",
+ "page-languages-meta-title": "ترجمهی زبان ethereum.org",
"page-languages-p1": "اتریوم یک پروژه جهانی است و مهم است که ethereum.org، صرف نظر از ملیت یا زبان برای همه قابل دسترس باشد. جامعه ما سخت در تلاش است تا این چشم انداز را به واقعیت تبدیل کند.",
"page-languages-translations-available": "ethereum.org به زبانهای زیر موجود است",
"page-languages-resources-paragraph": "افزون بر ترجمه محتوای ethereum.org، ما همچنین",
@@ -17,6 +17,7 @@
"page-languages-translated": "ترجمهشده",
"page-languages-words": "کلمات",
"page-languages-recruit-community": "به ما در ترجمه ethereum.org کمک کنید.",
+ "langauge-am": "آمهری",
"language-ar": "عربی",
"language-az": "آذربایجانی",
"langauge-be": "بلاروسی",
diff --git a/src/intl/fa/page-wallets-find-wallet.json b/src/intl/fa/page-wallets-find-wallet.json
index 865142d224f..6d4da6ae897 100644
--- a/src/intl/fa/page-wallets-find-wallet.json
+++ b/src/intl/fa/page-wallets-find-wallet.json
@@ -7,7 +7,6 @@
"page-find-wallet-meta-title": "یک کیف پول اتریوم پیدا کنید",
"page-find-wallet-title": "یافتن یک کیف پول",
"page-find-wallet-try-removing": "حذف یک یا دو ویژگی را امتحان کنید",
- "page-find-wallet-choose-to-compare": "برای مقایسه انتخاب کنید",
"page-stake-eth": "اتر را سهام گذاری کنید",
"page-find-wallet-open-source": "منبعباز",
"page-find-wallet-open-source-desc": "نرمافزار متنباز به هر کس اجازه میدهد یکپارچگی و امنیت برنامه را بررسی کند",
@@ -16,8 +15,6 @@
"page-find-wallet-non-custodial-desc": "کیفهای پول که کلیدهای خصوصی شما را کنترل نمی کنند",
"page-find-wallet-hardware-wallet-support": "پشتیبانی کیف پول سخت افزاری",
"page-find-wallet-hardware-wallet-support-desc": "کیفهای پول که می توانند برای امنیت بهتر، به کیف پول سخت افزاری متصل شوند",
- "page-find-wallet-walletconnect": "WalletConnect",
- "page-find-wallet-walletconnect-desc": "کیف پول هایی که WalletConnect را پشتیبانی می کنند تا به دپ ها متصل شوند",
"page-find-wallet-rpc-importing": "وارد کردن RPC",
"page-find-wallet-rpc-importing-desc": "کیف پولهایی که از اندپوینتهای RPC شخصیسازی شده برای اتصال به نودها یا شبکههای مختلف پشتیبانی میکنند",
"page-find-wallet-nft-support": "پشتیبانی از NFT",
@@ -36,8 +33,6 @@
"page-find-wallet-ens-support-desc": "کیف پولهایی که از خدمات نام اتریوم (ENS) پشتیبانی میکنند",
"page-find-wallet-token-importing": "وارد کردن توکن",
"page-find-wallet-token-importing-desc": "هر توکن ERC-20 را وارد کنید تا در کیف پول استفاده کنید",
- "page-find-wallet-fee-optimization": "بهینهسازی هزینه",
- "page-find-wallet-fee-optimization-desc": "پشتیبانی از تراکنشهای نوع 2 برای کارمزدهای بهینه شده و عودت کارمزد استفاده نشده",
"page-find-wallet-buy-crypto": "رمز ارز بخرید",
"page-find-wallet-buy-crypto-desc": "خرید ارز دیجیتال با ارز فیات و به طور مستقیم در داخل کیف پول\n*نکته: احتمال دارد خرید ارز دیجیتال بسته به مناطق خاصی باشد",
"page-find-wallet-sell-for-fiat": "فروش به فیات",
@@ -46,7 +41,6 @@
"page-find-wallet-multisig-desc": "کیف پولهایی که برای تایید یک تراکنش نیازمند چند امضا هستند",
"page-find-wallet-social-recovery": "بهبود اجتماعی",
"page-find-wallet-social-recovery-desc": "کیف پولهایی که احازه میدهند محافظین، کلید امضا برای کیف پولهای قرارداد هوشمند را تغییر دهند",
- "page-find-wallet-token-support": "پشتیبانی توکن",
"page-find-wallet-features": "ویژگیها",
"page-find-wallet-security": "ایمنی",
"page-find-wallet-smart-contract": "قرارداد هوشمند",
@@ -63,7 +57,6 @@
"page-find-wallet-chromium": "کرومیوم",
"page-find-wallet-firefox": "فایرفاکس",
"page-find-wallet-hardware": "سختافزار",
- "page-find-wallet-hardware-desc": "کیف پولهای سختافزاری",
"page-find-wallet-new-to-crypto-title": "جدید در رمز ارزها",
"page-find-wallet-new-to-crypto-desc": "اگر کاربر تازهواردی هستید که دنبال اولین کیف پول خود میگردید",
"page-find-wallet-nfts-title": "توکنهای غیرقابل تعویض",
@@ -74,21 +67,13 @@
"page-find-wallet-finance-desc": "شما کسی هستید که از دیفای استفاده میکنید و کیف پولی نیاز دارد که اجازه میدهد به اپلیکیشنهای دیفای متصل شوید",
"page-find-wallet-developer-title": "توسعهدهنده",
"page-find-wallet-developer-desc": "شما توسعهدهنده هستید و نیاز به یک کیف پول برای کمک به توسعه و تست دپها دارید",
- "page-find-wallet-persona-desc": "پروفایلی را انتخاب کنید که مطابق نوع کاربری شماست و لیست کیف پولها را با فیلتر موردنظرتان مشاهده کنید",
"page-find-wallet-filters": "فیلترها",
"page-find-wallet-active": "فعال",
- "page-find-wallet-profile-filters": "فیلترهای پروفایل",
- "page-find-wallet-feature-filters": "فیلتر های ویژگیها",
"page-find-wallet-footnote-1": "کیف پولهایی که در این صفحه لیست شدهاند مورد تایید رسمی نیستند و صرفا به منظور اطلاعاتدهی هستند.",
"page-find-wallet-footnote-2": "توضیحات آنها توسط خود پروژههای این کیف پولها ارائه شدهاند.",
"page-find-wallet-footnote-3": "ما بر اساس شاخصهایی که در سیاستگذاری لیستینگ آورده شده است، محصولات را در این صفحه اضافه میکنیم. اگر مایل هستید تا کیف پولی را اضافه کنیم، یک موضوع در گیتهاب باز کنید.",
"page-find-wallet-mobile": "تلفن همراه",
- "page-find-wallet-mobile-desc": "کیف پولهایی با برنامه تلفن همراه",
"page-find-wallet-desktop": "کامپیوتر",
- "page-find-wallet-desktop-desc": "کیف پولهایی با برنامههای کامپیوتر",
"page-find-wallet-browser": "مرورگر",
- "page-find-wallet-browser-desc": "کیف پولهایی با افزونههای مروگر",
- "page-find-wallet-device": "دستگاه",
- "page-find-choose-to-compare": "برای مقایسه انتخاب کنید",
- "page-find-wallet-choose-features": "ویژگیها را انتخاب کنید"
+ "page-find-wallet-device": "دستگاه"
}
diff --git a/src/intl/fi/common.json b/src/intl/fi/common.json
index 1541f45340a..ce4e25c185d 100644
--- a/src/intl/fi/common.json
+++ b/src/intl/fi/common.json
@@ -1,28 +1,70 @@
{
"about-ethereum-org": "Lue ethereum.org:sta",
"about-us": "Lue meistä",
+ "adding-desci-projects": "DeSci-projektien lisääminen",
+ "adding-developer-tools": "Kehittäjätyökalujen lisääminen",
+ "adding-exchanges": "Vaihtopörssien lisääminen",
+ "adding-glossary-terms": "Sanastotermien lisääminen",
+ "adding-staking-products": "Panostamistuotteiden lisääminen",
+ "adding-wallets": "Lompakoiden lisääminen",
+ "account-abstraction": "Tilien erotteleminen",
+ "acknowledgements": "Kiitokset",
"aria-toggle-search-button": "Paina hakupainiketta",
"aria-toggle-menu-button": "Paina valikkopainiketta",
"beacon-chain": "Beaconketju",
"bridges": "Lohkoketjusillat",
+ "bug-bounty": "Löytöpalkkio bugeista",
+ "build": "Rakenna",
+ "build-menu": "Rakennusvalikko",
+ "clear": "Tyhjennä",
+ "close": "Sulje",
"community": "Yhteisö",
"community-hub": "Yhteisökeskus",
"community-menu": "Yhteisövalikko",
"contact": "Ota yhteyttä",
+ "content-buckets": "Sisältösangot",
+ "content-resources": "Sisältöresurssit",
+ "content-standardization": "Sisällön standardisointi",
"contributing": "Osallistu projektiin",
"contributors": "Avustajat",
"contributors-thanks": "Kaikki, jotka ovat myötävaikuttaneet tähän sivuun – kiitos!",
"cookie-policy": "Evästekäytäntö",
"copied": "Kopioitu",
"copy": "Kopio",
+ "danksharding": "Danksharding",
+ "dao-page": "DAO:t - Hajautetut autonomiset organisaatiot",
"dark-mode": "Tumma",
"data-provided-by": "Tietolähde:",
- "decentralized-applications-dapps": "Hajautetut sovellukset (dapps)",
+ "decentralized-applications-dapps": "Dapps - Hajautetut sovellukset",
+ "decentralized-identity": "Hajautettu identiteetti",
+ "decentralized-social-networks": "Hajautettu sosiaalinen verkosto",
+ "decentralized-science": "DeSci - Hajautettu tiede",
+ "description": "Navigointinimikkeen kuvaus",
+ "defi-page": "DeFi - Hajautettu rahoitus",
+ "design": "Suunnittelu",
+ "design-principles": "Suunnitteluperiaatteet",
"devcon": "Devcon",
"developers": "Kehittäjät",
"developers-home": "Kehittäjien etusivu",
"docs": "Dokumentit",
+ "docsearch-to-select": "Valitaksesi",
+ "docsearch-to-navigate": "Navigoidaksesi",
+ "docsearch-to-close": "Sulkeaksesi",
+ "docsearch-search-by": "Hakuperuste",
+ "docsearch-start-recent-searches-title": "Uusimmat",
+ "docsearch-start-no-recent-searches": "Ei viimeaikaisia hakuja",
+ "docsearch-start-save-recent-search": "Tallenna tämä haku",
+ "docsearch-start-remove-recent-search": "Poista tämä haku historiasta",
+ "docsearch-start-favorite-searches": "Suosikki",
+ "docsearch-start-remove-favorite-search": "Poista tämä haku suosikeista",
+ "docsearch-no-results-text": "Ei tuloksia kohteelle",
+ "docsearch-no-results-suggested-query": "Yritä etsiä",
+ "docsearch-no-results-missing": "Pitäisikö tämän kyselyn antaa tuloksia?",
+ "docsearch-no-results-missing-link": "Kerro meille.",
+ "docsearch-error-title": "Ei voitu hakea tuloksia",
+ "docsearch-error-help": "Tarkista verkkoyhteytesi.",
"documentation": "Dokumentaatio",
+ "down": "Alas",
"ecosystem": "Ekosysteemi",
"edit-page": "Muokkaa sivua",
"ef-blog": "Ethereum Foundation -säätiön blogi",
@@ -32,9 +74,10 @@
"enterprise-menu": "Yritysvalikko",
"esp": "Ekosysteemin tukiohjelma",
"eth-current-price": "Nykyinen ETH-kauppahinta (USD)",
+ "ethereum-basics": "Ethereumin perusteet",
+ "ethereum-bug-bounty": "Ethereumin virhepalkkiojärjestelmä",
"consensus-when-shipping": "Milloin se julkaistaan?",
"ethereum-upgrades": "Ethereumin päivitykset",
- "ethereum-brand-assets": "Ethereum-mediapankki",
"ethereum-online": "Verkkoyhteisöt",
"ethereum-events": "Ethereum-tapahtumat",
"ethereum-foundation": "Ethereum Foundation -säätiö",
@@ -42,20 +85,37 @@
"ethereum-glossary": "Ethereum-sanasto",
"ethereum-governance": "Ethereumin hallinnointi",
"ethereum-logo": "Ethereum-logo",
+ "ethereum-roadmap": "Ethereum-tiekartta",
+ "ethereum-protocol": "Ethereum-protokolla",
"ethereum-security": "Ethereumin turvallisuus ja huijausten ehkäisy",
"ethereum-support": "Ethereum-tuki",
"ethereum-wallets": "Ethereum-lompakot",
"ethereum-whitepaper": "Ethereum-tietopaketti",
- "find-wallet": "Etsi lompakko",
- "get-eth": "Hanki ETH:ta",
+ "feedback-widget-prompt": "Onko tämä sivu hyödyllinen?",
+ "feedback-card-prompt-page": "Oliko tämä sivu hyödyllinen?",
+ "feedback-card-prompt-article": "Oliko tämä artikkeli hyödyllinen?",
+ "feedback-card-prompt-tutorial": "Oliko tästä ohjeesta hyötyä?",
+ "feedback-widget-thank-you-title": "Kiitos palautteestasi!",
+ "feedback-widget-thank-you-subtitle": "Tee tästä sivusta vieläkin parempi vastaamalla muutamaan kysymykseen.",
+ "feedback-widget-thank-you-subtitle-ext": "Ota yhteyttä Discord-yhteisöömme, jos tarvitset apua.",
+ "feedback-widget-thank-you-timing": "2–3 minuuttia",
+ "feedback-widget-thank-you-cta": "Avaa lyhyt kysely",
+ "find-wallet": "Valitse lompakko",
+ "future-proofing": "Tulevaisuusvarmentaminen",
+ "get-eth": "Hanki Ethereitä",
"get-involved": "Tule mukaan",
- "get-started": "Aloittaminen",
+ "get-started": "Näin pääset alkuun",
"grants": "Avustukset",
"grant-programs": "Ekosysteemin avustusohjelmat",
- "guides-and-resources": "Yhteisön ohjeet ja resurssit",
+ "guides": "Oppaat",
+ "guides-hub": "How-to-oppaat",
"history-of-ethereum": "Ethereumin historia",
"home": "Etusivu",
"how-ethereum-works": "Kuinka Ethereum toimii",
+ "how-to-revoke-token-access": "Miten voit perua älysopimuksen pääsyn kryptovaroihisi",
+ "how-to-swap-tokens": "Miten tokeneita vaihdetaan",
+ "how-to-use-a-bridge": "Miten voit silloittaa rahakkeita tasolle 2",
+ "how-to-use-a-wallet": "Miten lompakkoa käytetään",
"image": "kuva",
"in-this-section": "Tässä osiossa",
"individuals": "Yksityishenkilöille",
@@ -66,8 +126,10 @@
"languages": "Kielet",
"last-24-hrs": "Viimeiset 24 tuntia",
"last-edit": "Viimeksi muokattu",
+ "layer-2": "Taso 2",
"learn": "Opi",
"learn-by-coding": "Opi koodaamalla",
+ "learn-hub": "Oppimiskeskus",
"learn-menu": "Opi-valikko",
"learn-more": "Opi lisää",
"less": "Vähemmän",
@@ -76,31 +138,163 @@
"loading": "Ladataan...",
"loading-error": "Latausvirhe.",
"loading-error-refresh": "Virhe, päivitä sivu.",
+ "loading-error-try-again-later": "Tietojen lataaminen epäonnistui. Yritä uudelleen myöhemmin.",
"logo": "logo",
"mainnet-ethereum": "Mainnet Ethereum",
+ "merge": "Yhdistä",
"more": "Lisää",
+ "nav-about-description": "Julkinen, avoimen lähdekoodin projekti Ethereum-yhteisölle",
+ "nav-advanced-description": "Opiskele monimutkaisia aiheita",
+ "nav-advanced-label": "Edistyneille",
+ "nav-basics-description": "Ymmärrä Ethereumin perusteet",
+ "nav-basics-label": "Perusteet",
+ "nav-bridges-description": "Web3 on kehittynyt ekosysteemiksi, jossa on tason 1 peruslohkoketjuja ja tason 2 skaalausratkaisuita",
+ "nav-builders-home-description": "Ethereum-kehittäjän opas – kehittäjiltä kehittäjille",
+ "nav-builders-home-label": "Kehittäjän etusivu",
+ "nav-contribute-description": "Jos haluat auttaa, tämä opastaa sinua",
+ "nav-contribute-label": "Ethereum.org-sivuston avustaminen",
+ "nav-dao-description": "Jäsenten omistamat yhteisöt ilman keskitettyä määräysvaltaa",
+ "nav-dapps-description": "Tutki sovellusten rikasta ekosysteemiä käyttämällä Ethereumia",
+ "nav-defi-description": "Globaali ja avoin vaihtoehto perinteisille rahoitusmarkkinoille",
+ "nav-desci-description": "Globaali ja avoin vaihtoehto nykyiselle tiedejärjestelmälle",
+ "nav-desoc-description": "Lohkoketjupohjaiset alustat sosiaalista vuorovaikutusta ja sisällön luomista varten",
+ "nav-developers-docs": "Kehittäjien dokumentit",
+ "nav-developers": "Kehittäjät",
+ "nav-did-description": "Myönnä ja omista omia hajautettuja tunnisteitasi",
+ "nav-docs-description": "Ymmärrä Ethereumia ja Ethereumissa rakentamista näiden dokumenttien avulla",
+ "nav-docs-design-description": "Kuvaus uniikeista web3:n suunnitteluhaasteista, parhaista käytännöistä ja käyttäjätutkimusten oivalluksista",
+ "nav-docs-design-label": "UI/UX-suunnittelun perusteet",
+ "nav-docs-foundation-description": "Ethereum-kehittämisen ydinperusteet",
+ "nav-docs-overview-description": "Etusivusi kehittäjän dokumenteille",
+ "nav-docs-stack-description": "Tutustu Ethereum-pinon yksityiskohtiin",
+ "nav-eip-description": "Uusia ominaisuuksia tai prosesseja määrittelevät standardit",
+ "nav-eip-label": "EIP:t - Ethereum-parannusehdotukset",
+ "nav-emerging-description": "Tutustu muihin uudempiin Ethereumin käyttötapauksiin",
+ "nav-enterprise-description": "Liiketoimintasovellukset Ethereumille",
+ "nav-ethereum-org-description": "Tämä verkkosivusto on yhteisölähtöinen – liity mukaan ja osallistu",
+ "nav-ethereum-wallets-description": "Pysy yhteydessä Ethereum-tiliisi sovelluksen kautta",
+ "nav-events-description": "Hajauttaminen ja osallistumisvapaus kaikille",
+ "nav-events-irl-description": "Joka kuukausi järjestetään merkittäviä Ethereum-tapahtumia sekä livenä että verkossa",
+ "nav-events-label": "Yhteisöt ja tapahtumat",
+ "nav-events-online-description": "Sadattuhannet Ethereum-harrastajat kerääntyvät näihin verkkoyhteisöihin",
+ "nav-find-wallet-description": "Lompakoiden avulla voit käyttää kryptoa",
+ "nav-find-wallet-label": "Valitse lompakkosi",
+ "nav-gas-fees-description": "Kuinka etherin (EHT) transaktiomaksut lasketaan",
+ "nav-get-eth-description": "Tarvitset etheriä (EHT) käyttääksesi Ethereum-sovelluksia",
+ "nav-get-started-description": "Ensiaskeleet Ethereumin käyttöön",
+ "nav-governance-description": "Ethereum-protokollan päivittämiseen liittyvä prosessi",
+ "nav-governance-label": "Hallinto",
+ "nav-grants-description": "Yhteisömme luoma lista apurahaohjelmia tarjoavista projekteista",
+ "nav-guide-create-account-description": "Kuka tahansa voi luoda Ethereum-tilin milloin tahansa ilmaiseksi lompakkosovelluksella",
+ "nav-guide-revoke-access-description": "Älysopimusten ja sovellusten turvallinen käyttö Ethereumin ekosysteemissä",
+ "nav-guide-revoke-access-label": "Kuinka perua pääsy älysopimukseen",
+ "nav-guide-use-wallet-description": "Opi käyttämään kaikkia lompakon perustoimintoja",
+ "nav-guide-use-wallet-label": "Miten lompakkoa käytetään",
+ "nav-guides-description": "Käytännölliset ja vaiheittaiset oppaat, joilla pääset alkuun",
+ "nav-guides-label": "How to -oppaat",
+ "nav-history-description": "Aikajana kaikista merkittävistä haarautumista ja päivityksistä",
+ "nav-history-label": "Ethereumin tekninen historia",
+ "nav-layer-2-description": "Halvemmat ja nopeammat transaktiot Ethereumille",
+ "nav-learn-by-coding-description": "Kokeile Ethereumin käyttöä työkaluilla",
+ "nav-local-env-description": "Valitse ja luo omat Ethereum-kehitystyökalusi",
+ "nav-mainnet-description": "Julkisessa Ethereumin pääverkossa voidaan rakentaa lohkoketjusovelluksia yrityksille",
+ "nav-nft-description": "Tapa esittää ainutlaatuisia asioita digitaalisena Ethereum-omaisuuseränä",
+ "nav-open-research-description": "Yksi Ethereumin suurimmista vahvuuksista on sen aktiivinen tutkimusyhteisö",
+ "nav-open-research-label": "Avion tutkimus",
+ "nav-overview-description": "Kaikki Ethereum-kouluttautumisesta",
+ "nav-participate-overview-description": "Katsaus osallistumiseen",
+ "nav-primary": "Ensisijainen",
+ "nav-quizzes-description": "Selvitä, kuinka hyvin tunnet Ethereumin ja kryptovaluutat",
+ "nav-quizzes-label": "Testaa tietosi",
+ "nav-refi-description": "Uudistaville periaatteille rakennettu vaihtoehtoinen talousjärjestelmä",
+ "nav-research-description": "Ethereumin kehitysprosessit",
+ "nav-research-label": "Tutkimus ja kehittämistoiminta",
+ "nav-roadmap-description": "Kohti skaalautuvampaa, turvallisempaa ja vastuullisempaa Ethereumia",
+ "nav-roadmap-future-description": "Ethereumin vakiinnuttaminen voimakkaana ja hajautettuna verkostona",
+ "nav-roadmap-future-label": "Tulevaisuusvarmentaminen",
+ "nav-roadmap-label": "Etenemissuunnitelma",
+ "nav-roadmap-scaling-description": "Transaktiokuluja ja -nopeutta vähentävät verkkopäivitykset",
+ "nav-roadmap-security-description": "Varmistetaan, että Ethereum kestää tulevaisuudessa kaikenlaiset hyökkäykset",
+ "nav-roadmap-security-label": "Paranneltu turvallisuus",
+ "nav-roadmap-ux-description": "Ethereumin käytön pitää olla yksinkertaista",
+ "nav-run-a-node-description": "Auta edelläkävijänä verkon suojaamisessa",
+ "nav-security-description": "Tutustu kryptovaluutan käytön parhaisiin käytäntöihin",
+ "nav-smart-contracts-description": "Ethereum-ekosysteemin olennaiset rakennuspalikat",
+ "nav-stablecoins-description": "Vakausvaluutat ovat Ethereum-rahakkeita, joiden arvo on suunniteltu pysymään vakaana",
+ "nav-stake-description": "Ansaitse palkkioita Ethereum-verkoston suojaamisesta",
+ "nav-stake-label": "Steikkaus",
+ "nav-staking-home-description": "Eri vaihtoehtoja steikkaukseen",
+ "nav-staking-home-label": "Steikkaus etusivu",
+ "nav-staking-pool-description": "Steikkaa ja ansaitse palkkioita pienelläkin ether-summalla yhdessä muiden kanssa",
+ "nav-staking-pool-label": "Yhdistetty panostus",
+ "nav-staking-saas-description": "Kolmannen osapuolen solmupiste-operaattorit käsittelevät toimintaa omalla varmentajallaan.",
+ "nav-staking-saas-label": "Steikkaus palvelun kautta",
+ "nav-staking-solo-description": "Ylläpidä kotilaitteistoa ja lisää turvallisuutta sekä Ethereum-verkon hajauttamista.",
+ "nav-staking-solo-label": "Panostus soolona",
+ "nav-start-building-description": "Tarpeellista tietoa aloittelijoille",
+ "nav-translation-program-description": "Yhteistyöprojekti ethereum.org-sivuston kääntämiseksi kaikille kielille",
+ "nav-tutorials-description": "Huolellisesti valikoituja yhteisöoppaita",
+ "nav-use-cases-description": "Löydä erilaisia ideoita Ethereumin käyttöön",
+ "nav-what-is-ether-description": "Ethereum-sovelluksissa käytetty valuutta",
+ "nav-what-is-ethereum-description": "Oivalla, mikä tekee Ethereumista erityisen",
+ "nav-what-is-web3-label": "Mikä on Web3?",
+ "nav-what-is-web3-description": "Vaihtoehto sääntöjä saneleville keskitetyille monopoleille",
+ "nav-whitepaper-description": "Alkuperäisen Ethereum-tietopaketin kirjoitti Vitalik Buterin vuonna 2014",
+ "nav-zkp-description": "Tapa todistaa väittämän oikeellisuus paljastamatta itse väittämää",
+ "nft-page": "NFT:t - Ei-vaihdettavat poletit",
+ "nfts": "NFT:t",
"no": "Ei",
"on-this-page": "Tällä sivulla",
+ "open-research": "Avion tutkimus",
+ "page-developers-aria-label": "Kehittäjien valikko",
+ "page-index-meta-title": "Etusivu",
"page-last-updated": "Sivu viimeksi päivitetty",
+ "participate": "Osallistu ja osallista",
+ "participate-menu": "Osallistumisvalikko",
+ "pbs": "Ehdottajan ja kehittäjän erottaminen",
+ "pools": "Yhdistetty panostus",
"privacy-policy": "Tietosuojakäytäntö",
"private-ethereum": "Yksityinen Ethereum",
+ "product-disclaimer": "Tuotteet ja palvelut on lueteltu viitteeksi Ethereum-yhteisölle. Tuotteen tai palvelun sisällyttäminen ei edusta suositusta ethereum.org-verkkosivuston tiimiltä tai Ethereum Foundation -säätiöltä.",
+ "quizzes-title": "Kyselykeskus",
+ "quizzes": "Kyselyt",
"refresh": "Lataa sivu uudelleen.",
+ "return-home": "palaa etusivulle",
+ "roadmap": "Ethereum-tiekartta",
+ "research": "Tutkimus",
+ "research-menu": "Tutkimusvalikko",
+ "resources": "Käännöstyökalut",
"run-a-node": "Aja solmu",
+ "rollup-component-website": "Verkkosivusto",
+ "rollup-component-developer-docs": "Kehittäjien dokumentit",
+ "rollup-component-technology-and-risk-summary": "Teknologia ja riskien tiivistelmä",
+ "scaling": "Skaalaus",
+ "saas": "Staking as a service -palvelu",
"search": "Hae",
+ "search-ethereum-org": "Hae osoitteesta ethereum.org",
+ "secret-leader-election": "Salainen johtajan vaali",
"search-box-blank-state-text": "Etsi pois!",
"search-eth-address": "Tämä näyttää Ethereum-osoitteelta. Emme anna osoitekohtaisia tietoja. Kokeile etsiä sitä lohkoselaimella, kuten",
"search-no-results": "Haullasi ei löytynyt tuloksia",
+ "security": "Turvallisuus",
+ "single-slot-finality": "Single-slot-ratkaisevuus",
+ "statelessness": "Maattomuus",
"see-contributors": "Katso osallistujat",
"set-up-local-env": "Asenna paikallinen ympäristö",
- "sharding": "Sirpaleketjut",
+ "sharding": "Sirpalointi",
"show-all": "Näytä kaikki",
"show-less": "Näytä vähemmän",
"site-description": "Ethereum on maailmanlaajuinen, hajautettu alusta rahaa ja uudenlaisia sovelluksia varten. Ethereumin avulla voit kirjoittaa rahaa säätelevää koodia ja rakentaa sovelluksia kaikkialle maailmaan.",
"site-title": "ethereum.org",
"skip-to-main-content": "Siirry pääsisältöön",
"smart-contracts": "Älysopimukset",
- "stablecoins": "Vakausvaluutat",
+ "stablecoins": "Vakaat kryptovaluutat",
+ "stake-eth": "Steikkaa ETH",
"staking": "Panostaminen",
+ "start-here": "Aloita tästä",
+ "style-guide": "Tyyliopas",
+ "solo": "Panostus soolona",
+ "support": "Tuki",
"terms-of-use": "Käyttöehdot",
"translation-banner-body-new": "Katselet tätä sivua englanniksi, koska emme ole vielä kääntäneet sitä. Auta meitä kääntämään tämä sisältö.",
"translation-banner-body-update": "Tästä sivusta on uusi versio, mutta se on tällä hetkellä vain englanniksi. Auta meitä kääntämään uusin versio.",
@@ -108,17 +302,26 @@
"translation-banner-button-translate-page": "Käännä sivu",
"translation-banner-title-new": "Auta kääntämään tämä sivu",
"translation-banner-title-update": "Auta päivittämään tämä sivu",
+ "translation-banner-no-bugs-title": "Täällä ei ole virheitä!",
+ "translation-banner-no-bugs-content": "Tätä sivua ei ole käännetty. Olemme tarkoituksellisesti jättäneet tämän sivun toistaiseksi englanniksi.",
+ "translation-banner-no-bugs-dont-show-again": "Älä näytä uudestaan",
+ "translation-program": "Käännösohjelma",
+ "try-using-search": "Kokeile hakua, jotta löydät etsimäsi, tai",
"tutorials": "Tutoriaalit",
+ "up": "Ylös",
+ "use": "Käytä",
"use-ethereum": "Käytä Ethereumia",
"use-ethereum-menu": "Käytä Ethereumia -valikko",
+ "use-menu": "Käyttövalikko",
+ "user-experience": "Käyttäjäkokemus",
+ "verkle-trees": "Verkle-puut",
"wallets": "Lompakot",
+ "we-couldnt-find-that-page": "Sivua ei valitettavasti löytynyt",
+ "web3": "Mikä on Web3?",
"website-last-updated": "Sivusto viimeksi päivitetty",
- "what-is-ether": "Mikä on ether (ETH)?",
+ "what-is-ether": "Mikä on Ether (ETH)?",
"what-is-ethereum": "Mikä on Ethereum?",
- "defi-page": "Hajautettu rahoitus (DeFi)",
- "dao-page": "Hajautetut autonomiset organisaatiot (DAO:t)",
- "nft-page": "Ei-vaihdettavat poletit (NFT:t)",
+ "withdrawals": "Panostamisen nostot",
"yes": "Kyllä",
- "page-index-meta-title": "Etusivu",
- "page-developers-aria-label": "Kehittäjien valikko"
+ "zero-knowledge-proofs": "Nollatietotodistukset"
}
diff --git a/src/intl/fi/page-languages.json b/src/intl/fi/page-languages.json
index da24b7cef69..c71f1e8ca12 100644
--- a/src/intl/fi/page-languages.json
+++ b/src/intl/fi/page-languages.json
@@ -7,7 +7,7 @@
"page-languages-p1": "Ethereumin kaltainen globaali projekti menestyy, kun ethereum.org on kaikille ymmärrettävä, sujuvasti sisäistettävissä ja helposti saavutettava. Tämän vision toteuttamiseksi yhteisömme työskentelee sinnikkäästi.",
"page-languages-translations-available": "Voit perehtyä ethereum.orgiin seuraavilla kielillä",
"page-languages-resources-paragraph": "Ethereum.org sisältöjen kieliversioiden lisäksi pidämme yllä",
- "page-languages-resources-link": "tarkastettua listaa",
+ "page-languages-resources-link": "tarkastettua listaa Ethereum-resursseista monilla eri kielillä",
"page-languages-want-more-header": "Haluatko nähdä ethereum.org kieliversioita?",
"page-languages-want-more-link": "Käännösohjelma",
"page-languages-want-more-paragraph": "Ethereum.orgin kääntäjät työskentelevät kaiken aikaa käännösohjelman parissa eri kielillä. Klikkaa linkkiä, jos haluat nähdä tilannekatsauksen, liittyä käännöstiimiin tai lukea lisää",
@@ -17,13 +17,13 @@
"page-languages-translated": "käännetyt",
"page-languages-words": "sanat",
"page-languages-recruit-community": "Auta meitä kääntämään ethereum.org-sivusto.",
- "langauge-am": "Amharic",
+ "langauge-am": "amhara",
"language-ar": "arabia",
"language-az": "azeri",
- "langauge-be": "Belarusian",
+ "langauge-be": "valkovenäjä",
"language-bg": "bulgaria",
"language-bn": "bengali",
- "language-bs": "Bosnian",
+ "language-bs": "bosnia",
"language-ca": "katalaani",
"language-cs": "Tšekki",
"language-da": "tanska",
@@ -35,27 +35,27 @@
"language-fi": "suomi",
"language-fr": "Ranska",
"language-gl": "galicia",
- "language-gu": "Gujarati",
- "language-he": "Heprea",
+ "language-gu": "gujarati",
+ "language-he": "heprea",
"language-hi": "hindi",
"language-hr": "kroatia",
"language-hu": "unkari",
- "language-hy-am": "Armenian",
+ "language-hy-am": "armenia",
"language-id": "indonesia",
"language-ig": "igbo",
"language-it": "Italia",
"language-ja": "japani",
"language-ka": "georgia",
"language-kk": "kazakki",
- "language-km": "Khmer",
- "language-kn": "Kannada",
+ "language-km": "khmer",
+ "language-kn": "kannada",
"language-ko": "korea",
"language-lt": "liettua",
"language-ml": "malajalam",
"language-mr": "marathi",
"language-ms": "malaiji",
"language-nb": "norja",
- "language-ne-np": "Nepali",
+ "language-ne-np": "nepali",
"language-nl": "hollanti",
"language-pcm": "Nigerian pidgin",
"language-fil": "filipino",
@@ -69,9 +69,9 @@
"language-sl": "sloveeni",
"language-sr": "serbia",
"language-sw": "swahili",
- "language-ta": "Tamili",
+ "language-ta": "tamili",
"language-th": "thai",
- "language-tk": "Turkmen",
+ "language-tk": "turkmeeni",
"language-tr": "turkki",
"language-uk": "ukraina",
"language-ur": "urdu",
diff --git a/src/intl/fi/page-wallets-find-wallet.json b/src/intl/fi/page-wallets-find-wallet.json
index 71273e95c3d..199db5d5592 100644
--- a/src/intl/fi/page-wallets-find-wallet.json
+++ b/src/intl/fi/page-wallets-find-wallet.json
@@ -7,7 +7,6 @@
"page-find-wallet-meta-title": "Löydä Ethereum lompakko",
"page-find-wallet-title": "Lompakon metsästykseen",
"page-find-wallet-try-removing": "Kokeile poistaa ominaisuus tai pari",
- "page-find-wallet-choose-to-compare": "Valitse vertailuun",
"page-stake-eth": "Steikkaa ETH",
"page-find-wallet-open-source": "Avoin lähdekoodi",
"page-find-wallet-open-source-desc": "Avoimen lähdekoodin ohjelmiston avulla kuka tahansa voi tarkastaa sovelluksen eheyden ja turvallisuuden",
@@ -16,8 +15,6 @@
"page-find-wallet-non-custodial-desc": "Lompakot, jotka eivät hallitse yksityisiä avaimiasi",
"page-find-wallet-hardware-wallet-support": "Laitteistolompakon tuki",
"page-find-wallet-hardware-wallet-support-desc": "Lompakot, jotka voivat muodostaa yhteyden laitteistolompakkoon paremman turvallisuuden varmistamiseksi",
- "page-find-wallet-walletconnect": "WalletConnect",
- "page-find-wallet-walletconnect-desc": "Lompakot, jotka tukevat WalletConnectia dAppeihin yhdistämistä varten",
"page-find-wallet-rpc-importing": "RPC-tuonti",
"page-find-wallet-rpc-importing-desc": "Lompakot, jotka tukevat mukautettuja RPC-päätepisteitä yhdistääkseen eri solmuihin tai verkkoihin",
"page-find-wallet-nft-support": "NFT-tuki",
@@ -36,8 +33,6 @@
"page-find-wallet-ens-support-desc": "Ethereumin nimipalvelun (ENS) kanssa yhteensopivat lompakot",
"page-find-wallet-token-importing": "Rahakkeiden tuonti",
"page-find-wallet-token-importing-desc": "Tuo mikä tahansa ERC-20-rahake käytettäväksi lompakossa",
- "page-find-wallet-fee-optimization": "Maksujen optimointi",
- "page-find-wallet-fee-optimization-desc": "Tukee kakkostyypin transaktioiden gas-kustannuksen optimointia sekä palkkioiden palautusta käyttämättömän gasin osalta.",
"page-find-wallet-buy-crypto": "Osta kryptovaluuttaa",
"page-find-wallet-buy-crypto-desc": "Osta kryptoja perinteisillä (fiat) valuutoilla suoraan lompakollasi.",
"page-find-wallet-sell-for-fiat": "Myy saadaksesi perinteisiä valuuttoja",
@@ -46,7 +41,6 @@
"page-find-wallet-multisig-desc": "Lompakot, jotka vaativat useita allekirjoituksia transaktion vahvistamiseen",
"page-find-wallet-social-recovery": "Sosiaalisen verkoston käyttäminen palauttamiseen ns. sosiaalinen palauttaminen",
"page-find-wallet-social-recovery-desc": "Lompakot, jotka sallivat suojelioiden vaihtaa allekirjoitusavainta älysopimuslompakoiden yhteydessä",
- "page-find-wallet-token-support": "Rahakkeiden tuki",
"page-find-wallet-features": "Ominaisuudet",
"page-find-wallet-security": "Turvallisuus",
"page-find-wallet-smart-contract": "Älysopimukset",
@@ -63,7 +57,6 @@
"page-find-wallet-chromium": "Chromium",
"page-find-wallet-firefox": "Firefox",
"page-find-wallet-hardware": "Laitteisto",
- "page-find-wallet-hardware-desc": "Laitteistolompakot",
"page-find-wallet-new-to-crypto-title": "Aloittelijana kryptomaailmassa",
"page-find-wallet-new-to-crypto-desc": "Olet ensikertalainen etsiskelemässä ensimmäistä lompakkoa",
"page-find-wallet-nfts-title": "NFTt",
@@ -74,21 +67,13 @@
"page-find-wallet-finance-desc": "Olet DeFi-sovellusten käyttäjä ja haluat lompakon, joka on yhteensopiva niiden kanssa. ",
"page-find-wallet-developer-title": "Kehittäjä",
"page-find-wallet-developer-desc": "Olet kehittäjä ja tarvitset lompakon kehitystyöhön ja dAppien testaamiseen",
- "page-find-wallet-persona-desc": "Valitse suodattamalla profiili, joka vastaa omaa käyttötarvettasi",
"page-find-wallet-filters": "Suodattimet",
"page-find-wallet-active": "aktiivinen",
- "page-find-wallet-profile-filters": "Profiilin suodattimet",
- "page-find-wallet-feature-filters": "Ominaisuuden suodattimet",
"page-find-wallet-footnote-1": "Tällä sivulla listatut lompakot eivät ole virallisia suosituksia vaan niistä jaetaan tietoa.",
"page-find-wallet-footnote-2": " Lompakko-projektien oma hallinto on tuottanut kuvaukset itsenäisesti.",
"page-find-wallet-footnote-3": "Lisäämme tuotteita tälle sivulle oman listaus politiikkamme perusteella. Jos haluat meidän lisäävän lompakon, kirjaa pyyntö GitHubiin.",
"page-find-wallet-mobile": "Mobiili",
- "page-find-wallet-mobile-desc": "Lompakot, joilla myös mobiilisovellus",
"page-find-wallet-desktop": "Työpöytäkone",
- "page-find-wallet-desktop-desc": "Lompakot työpöytäsovelluksella",
"page-find-wallet-browser": "Selain",
- "page-find-wallet-browser-desc": "Lompakot, joilla on selainlaajennuksia",
- "page-find-wallet-device": "Laite",
- "page-find-choose-to-compare": "Valitse vertailuun",
- "page-find-wallet-choose-features": "Valitse ominaisuudet"
+ "page-find-wallet-device": "Laite"
}
diff --git a/src/intl/fil/common.json b/src/intl/fil/common.json
index 10cde6fdca8..86600debbdc 100644
--- a/src/intl/fil/common.json
+++ b/src/intl/fil/common.json
@@ -1,17 +1,26 @@
{
- "account-abstraction": "Account abstraction",
"about-ethereum-org": "Tungkol sa ethereum.org",
"about-us": "Tungkol sa amin",
+ "adding-desci-projects": "Pagdaragdag ng Mga Desci Project",
+ "adding-developer-tools": "Pagdaragdag ng Mga Tool ng Developer",
+ "adding-exchanges": "Pagdaragdag ng Mga Exchange",
+ "adding-glossary-terms": "Pagdaragdag ng Mga Termino sa Glossary",
+ "adding-staking-products": "Pagdaragdag ng Mga Produkto sa Staking",
+ "adding-wallets": "Pagdaragdag ng Mga Wallet",
+ "acknowledgements": "Mga pagkilala",
"aria-toggle-search-button": "I-toggle ang button sa paghahanap",
"aria-toggle-menu-button": "I-toggle ang button ng menu",
"beacon-chain": "Beacon Chain",
"bridges": "Mga blockchain bridge",
+ "build-menu": "Menu ng build",
"clear": "I-clear",
"close": "Isara",
"community": "Komunidad",
"community-hub": "Hub ng komunidad",
"community-menu": "Menu ng Komunidad",
"contact": "I-contact",
+ "content-buckets": "Mga Content Bucket",
+ "content-resources": "Mga Resource ng Content",
"content-standardization": "Pag-standardize ng content",
"contributing": "Pag-contribute",
"contributors": "Mga Contributor",
@@ -20,14 +29,17 @@
"copied": "Kinopya",
"copy": "Kopyahin",
"danksharding": "Danksharding",
- "dao-page": "Mga decentralized autonomous organization (DAOs)",
+ "dao-page": "DAOs - Mga decentralized autonomous organization",
"dark-mode": "Madilim",
"data-provided-by": "Pinagmulan ng data:",
- "decentralized-applications-dapps": "Mga decentralized application (dapps)",
+ "decentralized-applications-dapps": "Dapps - Mga decentralized application",
"decentralized-identity": "Decentralized na identity",
"decentralized-social-networks": "Mga decentralized na social network",
- "decentralized-science": "Decentralized science (DeSci)",
- "defi-page": "Decentralized finance (DeFi)",
+ "decentralized-science": "DeSci - Decentralized science",
+ "description": "Paglalarawan para sa nav item",
+ "defi-page": "DeFi - Decentralized finance",
+ "design": "Disenyo",
+ "design-principles": "Mga Alituntunin ng Disenyo",
"devcon": "Devcon",
"developers": "Mga Developer",
"developers-home": "Home ng mga developer",
@@ -51,7 +63,7 @@
"documentation": "Dokumentasyon",
"down": "Pababa",
"ecosystem": "Ecosystem",
- "edit-page": "I-edit ang pahina",
+ "edit-page": "Ayusin ang pahina",
"ef-blog": "Blog ng Ethereum Foundation",
"eips": "Mga Mungkahi sa Pagpapaganda ng Ethereum",
"energy-consumption": "Pagkonsumo ng enerhiya ng Ethereum",
@@ -59,11 +71,11 @@
"enterprise-menu": "Enterprise Menu",
"esp": "Ecosystem Support Program",
"eth-current-price": "Kasalukuyang presyo ng ETH (USD)",
- "ethereum-basics": "Basics ng Ethereum",
+ "ethereum-basics": "Mga pangunahing kaalaman sa Ethereum",
"ethereum-bug-bounty": "Ethereum bug bounty program",
"consensus-when-shipping": "Kailan ito masi-ship?",
"ethereum-upgrades": "Mga pag-upgrade ng Ethereum",
- "ethereum-brand-assets": "Mga assset ng Ethereum brand",
+ "ethereum-brand-assets": "Mga brand assset ng Ethereum",
"ethereum-online": "Mga online na komunidad",
"ethereum-events": "Mga kaganapan sa Ethereum",
"ethereum-foundation": "Ethereum Foundation",
@@ -71,11 +83,11 @@
"ethereum-glossary": "Glossary ng Ethereum",
"ethereum-governance": "Pamamahala sa Ethereum",
"ethereum-logo": "Logo ng Ethereum",
- "ethereum-roadmap": "Lalakbaying daan ng Ethereum",
+ "ethereum-roadmap": "Roadmap ng Ethereum",
"ethereum-protocol": "Protocol ng Ethereum",
"ethereum-security": "Seguridad ng Ethereum at pag-iwas sa scam",
"ethereum-support": "Suporta sa Ethereum",
- "ethereum-wallets": "Mga Ethereum wallet",
+ "ethereum-wallets": "Mga wallet ng Ethereum",
"ethereum-whitepaper": "Ethereum Whitepaper",
"feedback-widget-prompt": "Nakakatulong ba ang page na ito?",
"feedback-card-prompt-page": "Nakatulong ba ang page na ito?",
@@ -83,7 +95,7 @@
"feedback-card-prompt-tutorial": "Nakatulong ba ang tutorial na ito?",
"feedback-widget-thank-you-title": "Salamat sa iyong feedback!",
"feedback-widget-thank-you-subtitle": "Pagandahin ang page na ito sa pamamagitan ng pagsagot ng ilang tanong.",
- "feedback-widget-thank-you-subtitle-ext": "Kung kailangan mo ng tulong, puwede kang makipag-ugnayan sa community sa aming Discord.",
+ "feedback-widget-thank-you-subtitle-ext": "Kung kailangan mo ng tulong, puwede kang makipag-ugnayan sa komunidad sa aming Discord.",
"feedback-widget-thank-you-timing": "2–3 min",
"feedback-widget-thank-you-cta": "Buksan ang maikling survey",
"find-wallet": "Maghanap ng wallet",
@@ -98,7 +110,7 @@
"history-of-ethereum": "Kasaysayan ng Ethereum",
"home": "Home",
"how-ethereum-works": "Paano gumagana ang Ethereum",
- "how-to-register-an-ethereum-account": "Paano \"magrehistro\" ng Ethereum account",
+ "how-to-create-an-ethereum-account": "Paano \"gumawa\" ng Ethereum account",
"how-to-revoke-token-access": "Paano bawiin ang access sa smart contract sa iyong mga pondo sa crypto",
"how-to-swap-tokens": "Paano mag-swap ng mga token",
"how-to-use-a-bridge": "Paano madadala ang mga token sa layer 2",
@@ -115,11 +127,11 @@
"last-edit": "Huling pag-edit",
"layer-2": "Layer 2",
"learn": "Matuto",
- "learn-by-coding": "Matuto sa pamamagitan ng pag-code",
+ "learn-by-coding": "Matuto sa pamamagitan ng coding",
"learn-hub": "Learn Hub",
"learn-menu": "Menu ng pag-aaral",
"learn-more": "Matuto pa",
- "less": "Mas kaunti",
+ "less": "Bawasan ang nakikita",
"light-mode": "Light",
"listing-policy-disclaimer": "Ang lahat ng produktong nakalista sa page na ito ay hindi opisyal na ineendorso, at ibinibigay lang ang mga ito para sa mga layuning pang-impormasyon. Kung nais mong mag dagdag ng produkto o magbigay ng feedback sa mga polisiya, mangyaring magsumite ng issue sa GitHub.",
"loading": "Naglo-load...",
@@ -128,11 +140,109 @@
"loading-error-try-again-later": "Hindi mai-load. Subukang muli mamaya.",
"logo": "logo",
"mainnet-ethereum": "Mainnet Ethereum",
- "more": "Higit pa",
- "nav-developers": "Mga Developer",
+ "merge": "I-merge",
+ "more": "Tumingin pa",
+ "nav-about-description": "Isang pampubliko, open-source na proyekto para sa komunidad ng Ethereum",
+ "nav-advanced-description": "Matutuhan ang mas kumplikadong mga paksa",
+ "nav-advanced-label": "Advanced",
+ "nav-basics-description": "Nauunawaan ang mga pangunahing kaalaman ng Ethereum",
+ "nav-basics-label": "Pangunahing Kaalaman",
+ "nav-bridges-description": "Umunlad ang web3 at naging ecosystem ng primary L1 blockchains at L2 scaling solutions",
+ "nav-builders-home-description": "Isang manual ng builder para sa Ethereum—gawa ng mga builder, para sa mga builder",
+ "nav-builders-home-label": "Bahay ng builder",
+ "nav-contribute-description": "Kung gusto mong tumulong, gagabayan ka nito",
+ "nav-contribute-label": "Nakikibahagi sa ethereum.org",
+ "nav-dao-description": "Mga komunidad ng miyembro na walang sentralisadong awtoridad",
+ "nav-dapps-description": "Tuklasin ang isang mayamang ecosystem ng mga app gamit ang Ethereum",
+ "nav-defi-description": "Isang pandaigdigan at bukas na alternatibo sa tradisyonal na pinansyal na merkado",
+ "nav-desci-description": "Isang pandaigdigan at bukas na alternaribo sa kasalukuyang sistema ng siyentipiko",
+ "nav-desoc-description": "Mga blockchain-based na platform para sa social interaction at paggawa ng content",
"nav-developers-docs": "Developers docs",
+ "nav-developers": "Mga Developer",
+ "nav-did-description": "Ibigay at maging may-ari ng iyong natatanging decentralized na mga identifier",
+ "nav-docs-description": "Mga dokumento upang tulungan kang maunawaan at gumawa sa Ethereum",
+ "nav-docs-design-description": "Paglalarawan ng mga natatanging web3 design challenge, pinakamagandang gawain at mga pananaw sa pananaliksik ng user",
+ "nav-docs-design-label": "Mga pangunahing kaalaman sa UX/UI design",
+ "nav-docs-foundation-description": "Mga pangunahing batayan upang umunlad sa Ethereum",
+ "nav-docs-overview-description": "Ang tahanan mo para sa mga dokumento ng developer",
+ "nav-docs-stack-description": "Maunawaan ang lahat ng detalye ng Ethereum stack",
+ "nav-eip-description": "Mga pamantayan na tumutukoy ng mga bagong feature o proseso",
+ "nav-eip-label": "EIPs - Mga pagsusulong para sa pagpapabuti ng Ethereum",
+ "nav-emerging-description": "Malaman ang ibang mas bagong mga kaso ng paggamit para sa Ethereum",
+ "nav-emerging-label": "Mga bagong use case",
+ "nav-enterprise-description": "Mga gamit sa negosyo ng Ethereum",
+ "nav-ethereum-org-description": "Kinokontrol ng komunidad ang website na ito—sumali sa amin at magbahagi rin",
+ "nav-ethereum-wallets-description": "Isang app upang makipag-ugnayan sa iyong Ethereum account",
+ "nav-events-description": "Desentralisasyon at kalayaan na makilahok para sa lahat",
+ "nav-events-irl-description": "Bawat buwan ay mayroong personal at online na malalaking Ethereum event",
+ "nav-events-label": "Mga komunidad at event",
+ "nav-events-online-description": "Libo-libong mahilig sa Ethereum ang nangunguna sa mga online na komunidad na ito",
+ "nav-find-wallet-description": "Pinahihintulutan ka ng mga wallet na gumamit ng crypto",
+ "nav-find-wallet-label": "Pumili ng wallet",
+ "nav-gas-fees-description": "Paano kinakalkula ang mga bayad sa transaksyon ng ETH",
+ "nav-get-eth-description": "Kailangan mo ng ether (ETH) para magamit ang mga Ethereum application",
+ "nav-get-started-description": "Ang mga una mong hakbang sa paggamit ng Ethereum",
+ "nav-governance-description": "Ang proseso na ginagamit sa pagpapaunlad ng protokol ng Ethereum",
+ "nav-governance-label": "Pamamahala",
+ "nav-grants-description": "Isang piniling listahan ng aming komunidad sa mga proyekto na nagbibigay ng mga programa sa paghahandog ng salapi",
+ "nav-guide-create-account-description": "Maaaring gumawa ng Ethereum account nang libre ang kahit sino, kahit kailan gamit ang isang wallet app",
+ "nav-guide-create-account-label": "Paano \"gumawa\" ng Ethereum account",
+ "nav-guide-revoke-access-description": "Manatiling ligtas sa tuwing nakikipag-ugnayan sa mga smart na kontrata at application sa Ethereum ecosystem",
+ "nav-guide-revoke-access-label": "Paano bawiin ang access sa smart na kontrata",
+ "nav-guide-use-wallet-description": "Alamin kung paano gamitin ang lahat ng pangunahing function ng isang wallet",
+ "nav-guide-use-wallet-label": "Paano gumamit ng wallet",
+ "nav-guides-description": "Praktikal na mga gabay upang tulungan kang makapagsimula",
+ "nav-guides-label": "Sundin kung paano at ang mga gabay",
+ "nav-history-description": "Isang timeline ng lahat ng malalaking fork at update",
+ "nav-history-label": "Teknikal na kasaysayan ng Ethereum",
+ "nav-layer-2-description": "Mas mura at mabilis na mga transaksyon para sa Ethereum",
+ "nav-learn-by-coding-description": "Mga tool na tutulong sa iyong mag-eksperimento sa Ethereum",
+ "nav-local-env-description": "Piliin at itakda ang iyong Ethereum development stack",
+ "nav-mainnet-description": "Puwedeng buuin ang mga enterprise blockchain application sa pampublikong Ethereum Mainnet",
+ "nav-nft-description": "Isang paraan para katawanin ang kahit anong natatangi bilang Ethereum-based asset",
+ "nav-open-research-description": "Ang isa sa mga pangunahing kalakasan ng Ethereum ay ang aktibo nitong komunidad sa pananaliksik",
+ "nav-open-research-label": "Open research",
+ "nav-overview-description": "Edukasyon sa lahat ng mga bagay sa Ethereum",
+ "nav-participate-overview-description": "Pangkalahatang-ideya sa kung paano makilahok",
"nav-primary": "Primary",
- "nft-page": "Mga non-fungible token (NFT)",
+ "nav-quizzes-description": "Malaman kung paano mo lubos na nauunawaan ang Ethereum at mga cryptocurrency",
+ "nav-quizzes-label": "Subukan ang iyong kaalaman",
+ "nav-refi-description": "Isang alternatibong sistema ng ekonomiya na ginawa batay sa mga prinsipyong regenative",
+ "nav-research-description": "Mga ginamit na proseso upang mapahusay ang Ethereum",
+ "nav-research-label": "Pananaliksik at pag-unlad",
+ "nav-roadmap-description": "Ang landas tungo sa higit na scalability, seguridad at sustainability para sa Ethereum",
+ "nav-roadmap-future-description": "Pagpapatibay ng Ethereum bilang isang malakas at desentralisadong network",
+ "nav-roadmap-future-label": "Pag-future proof",
+ "nav-roadmap-label": "Roadmap",
+ "nav-roadmap-scaling-description": "Mga update sa network upang mas mapababa ang gastos sa transaksyon at bilis",
+ "nav-roadmap-security-description": "Tinitiyak na manatiling makababangon ang Ethereum sa lahat ng uri ng pag-atake sa hinaharap",
+ "nav-roadmap-security-label": "Mas pinahusay na seguridad",
+ "nav-roadmap-ux-description": "Kailangang pasimplehin ang paggamit ng Ethereum",
+ "nav-run-a-node-description": "Maging ganap na sovereign habang tumutulong na i-secure ang network",
+ "nav-security-description": "Matutuhan ang pinakamagandang mga gawain kapag ginagamit ang cryptocurrency",
+ "nav-smart-contracts-description": "Ang pangunahing bumubuo ng Ethereum ecosystem",
+ "nav-stablecoins-description": "Ang stablecoins ay mga Ethereum token na dinisenyong magkaroon ng hindi nababagong halaga",
+ "nav-stake-description": "Magkaroon ng mga reward para sa pag-secure ng Ethereum",
+ "nav-stake-label": "Stake",
+ "nav-staking-home-description": "Isang pangkalahatang-ideya ng iba't ibang opsyon sa pag-stake",
+ "nav-staking-home-label": "Staking home",
+ "nav-staking-pool-description": "Mag-stake at makakuha ng mga reward sa anumang halaga ng ETH sa pamamagitan ng pagsama sa iba",
+ "nav-staking-pool-label": "Pooled staking",
+ "nav-staking-saas-description": "Ang mga third-party node operator ang nangangasiwa sa operasyon ng iyong validator client",
+ "nav-staking-saas-label": "Pag-stake nang may serbisyo",
+ "nav-staking-solo-description": "Patakbuhin ang home hardware at personal na magdagdag sa seguridad at decentralization ng Ethereum network",
+ "nav-staking-solo-label": "Solo staking",
+ "nav-start-building-description": "Kapaki-pakinabang na impormasyon para sa mga baguhan",
+ "nav-translation-program-description": "Isang sama-samang pagsisikap upang isalin ang ethereum.org sa lahat ng wika",
+ "nav-tutorials-description": "Isang piniling listahan ng mga tutorial ng komunidad",
+ "nav-use-cases-description": "Matuklasan ang iba't ibang ideya ng paggamit ng Ethereum",
+ "nav-what-is-ether-description": "Ang currency ng mga Ethereum app",
+ "nav-what-is-ethereum-description": "Maunawaan kung bakit naging espesyal ang Ethereum",
+ "nav-what-is-web3-label": "Ano ang Web3?",
+ "nav-what-is-web3-description": "Isang alternatibo sa sentralisadong monopolyo na nagdidikta ng mga panuntunan",
+ "nav-whitepaper-description": "Ang orihinal na whitepaper ng Ethereum na isinulat ni Vitalik Buterin noong 2014",
+ "nav-zkp-description": "Isang paraan para patunayan ang validity ng isang pahayag nang hindi ipinapakita ang mismong pahayag",
+ "nft-page": "NFT - Mga non-fungible token",
"nfts": "NFTs",
"no": "Hindi",
"on-this-page": "Sa page na ito",
@@ -140,6 +250,8 @@
"page-developers-aria-label": "Menu ng mga Developer",
"page-index-meta-title": "Home",
"page-last-updated": "Huling na-update ang page",
+ "participate": "Sumali",
+ "participate-menu": "Menu ng pakikilahok",
"pbs": "Paghihiwalay ng tagamungkahi at tagabuo",
"pools": "Pooled staking",
"privacy-policy": "Patakaran sa privacy",
@@ -150,9 +262,11 @@
"refresh": "Paki-refresh ang pahina.",
"return-home": "bumalik sa home",
"roadmap": "Roadmap ng Ethereum",
+ "research": "Pananaliksik",
+ "research-menu": "Menu ng pananaliksik",
"resources": "Mga resource sa translation",
- "regenerative-finance": "Regenerative finance (ReFi)",
- "run-a-node": "Mag-run ng node",
+ "regenerative-finance": "ReFi - Regenerative finance",
+ "run-a-node": "Magpatakbo ng Node",
"rollup-component-website": "Website",
"rollup-component-developer-docs": "Developer docs",
"rollup-component-technology-and-risk-summary": "Buod ng teknolohiya at risk",
@@ -164,6 +278,7 @@
"search-box-blank-state-text": "Hanapin!",
"search-eth-address": "Mukhang isang Ethereum address ito. Hindi kami nagbibigay ng data na partikular sa mga address. Subukang hanapin ito sa isang block explorer tulad ng",
"search-no-results": "Walang resulta sa iyong hinahanap",
+ "security": "Seguridad",
"single-slot-finality": "Pagiging pinal ng single-slot",
"statelessness": "Kawalan ng estado",
"see-contributors": "Tingnan ang mga contributor",
@@ -172,15 +287,14 @@
"show-all": "Ipakita lahat",
"show-less": "Magpakita ng mas kaunti",
"site-description": "Ang Ethereum ay isang pandaigdigan at decentralized na platform para sa pera at mga bagong uri ng mga application. Sa Ethereum, maaari kang magsulat ng code na kumokontrol sa pera, at bumuo ng mga application na naa-access saanman sa mundo.",
- "site-title": "ethereum.org",
"skip-to-main-content": "Lumaktaw sa main content",
"smart-contracts": "Mga smart contract",
- "stablecoins": "Stablecoins",
+ "stablecoins": "Mga Stablecoin",
"stake-eth": "Mag-stake ng ETH",
"staking": "Staking",
"start-here": "Magsimula dito",
- "style-guide": "Style guide",
"solo": "Solo staking",
+ "support": "Support",
"terms-of-use": "Mga tuntunin ng paggamit",
"translation-banner-body-new": "Tinitingnan mo ang pahinang ito sa English dahil hindi pa namin ito naisalin. Tulungan kaming isalin ang nilalamang ito.",
"translation-banner-body-update": "May bagong bersyon ng page na ito ngunit nasa English lang ito ngayon. Tulungan kaming isalin ang pinakabagong bersyon.",
@@ -191,14 +305,17 @@
"translation-banner-no-bugs-title": "Walang mga bug dito!",
"translation-banner-no-bugs-content": "Ang pahinang ito ay hindi isinasalin. Sinadya naming iwan ang pahinang ito sa Ingles sa ngayon.",
"translation-banner-no-bugs-dont-show-again": "Huwag nang ipakita ulit",
+ "translation-program": "Translation Program",
"try-using-search": "Subukang gamitin ang paghahanap upang mahanap kung ano ang iyong hinahanap o",
"tutorials": "Mga tutorial",
"up": "Pataas",
+ "use": "Gamitin",
"use-ethereum": "Gumamit ng Ethereum",
"use-ethereum-menu": "Gamitin ang Ethereum menu",
- "user-experience": "User experience",
+ "use-menu": "Menu ng paggamit",
+ "user-experience": "Karanasan ng user",
"verkle-trees": "Verkle trees",
- "wallets": "Mga Wallet",
+ "wallets": "Mga wallets",
"we-couldnt-find-that-page": "Hindi namin mahanap ang page na iyon",
"web3": "Ano ang Web3?",
"web3-title": "Web3",
diff --git a/src/intl/fil/page-languages.json b/src/intl/fil/page-languages.json
index 9f05aef7cfc..8eecd897f0e 100644
--- a/src/intl/fil/page-languages.json
+++ b/src/intl/fil/page-languages.json
@@ -17,6 +17,7 @@
"page-languages-translated": "naisalin",
"page-languages-words": "mga salita",
"page-languages-recruit-community": "Tulungan kaming isalin ang ethereum.org.",
+ "langauge-am": "Amharic",
"language-ar": "Arabic",
"language-az": "Azerbaijani",
"langauge-be": "Belarusian",
diff --git a/src/intl/fil/page-wallets-find-wallet.json b/src/intl/fil/page-wallets-find-wallet.json
index 919b7264163..0608c896149 100644
--- a/src/intl/fil/page-wallets-find-wallet.json
+++ b/src/intl/fil/page-wallets-find-wallet.json
@@ -7,7 +7,6 @@
"page-find-wallet-meta-title": "Maghanap ng Ethereum Wallet",
"page-find-wallet-title": "Maghanap ng wallet",
"page-find-wallet-try-removing": "Subukang mag-alis ng isa o dalawang feature",
- "page-find-wallet-choose-to-compare": "Pumili para ihambing",
"page-stake-eth": "Mag-stake ng ETH",
"page-find-wallet-open-source": "Buksan ang pinagmulan",
"page-find-wallet-open-source-desc": "Binibigyang-daan ng open-source software ang kahit sinong i-audit ang integridad at seguridad ng application",
@@ -16,8 +15,6 @@
"page-find-wallet-non-custodial-desc": "Mga wallet na hindi kinokontrol ang iyong mga pribadong key",
"page-find-wallet-hardware-wallet-support": "Suporta sa hardware wallet",
"page-find-wallet-hardware-wallet-support-desc": "Mga wallet na maaaring kumonekta sa hardware wallet para sa mas mahusay na seguridad",
- "page-find-wallet-walletconnect": "WalletConnect",
- "page-find-wallet-walletconnect-desc": "Mga wallet na sumusuporta sa WalletConnect para sa pagkonekta sa mga dapp",
"page-find-wallet-rpc-importing": "Pag-import ng RPC",
"page-find-wallet-rpc-importing-desc": "Mga wallet na sumusuporta sa mga custom na RPC endpoint para kumonekta sa iba't ibang node o network",
"page-find-wallet-nft-support": "Suporta sa NFT",
@@ -36,8 +33,6 @@
"page-find-wallet-ens-support-desc": "Mga wallet na sumusuporta sa Ethereum Name Service (ENS)",
"page-find-wallet-token-importing": "Pag-import ng token",
"page-find-wallet-token-importing-desc": "Mag-import ng anumang ERC-20 token na gagamitin sa wallet",
- "page-find-wallet-fee-optimization": "Pag-optimize ng bayarin",
- "page-find-wallet-fee-optimization-desc": "Suportahan ang 2 uri ng transaksyon para sa mga na-optimize na bayarin sa gas, at refund ng bayarin para sa hindi nagamit na gas",
"page-find-wallet-buy-crypto": "Bumili ng crypto",
"page-find-wallet-buy-crypto-desc": "Bumili ng crypto gamit ang fiat nang direkta sa wallet\n*Tandaan: Ang pagbili ng crypto ay maaaring partikular sa rehiyon",
"page-find-wallet-sell-for-fiat": "Ibenta para sa fiat",
@@ -46,7 +41,6 @@
"page-find-wallet-multisig-desc": "Mga wallet na nangangailangan ng maraming lagda upang pahintulutan ang isang transaksyon",
"page-find-wallet-social-recovery": "Social recovery",
"page-find-wallet-social-recovery-desc": "Mga wallet na nagbibigay-daan sa mga tagapag-alaga na baguhin ang signing key para sa mga smart contract wallet",
- "page-find-wallet-token-support": "Suporta sa token",
"page-find-wallet-features": "Mga tampok",
"page-find-wallet-security": "Seguridad",
"page-find-wallet-smart-contract": "Matalinong kontrata",
@@ -63,7 +57,6 @@
"page-find-wallet-chromium": "Chromium",
"page-find-wallet-firefox": "Firefox",
"page-find-wallet-hardware": "Hardware",
- "page-find-wallet-hardware-desc": "Mga hardware wallet",
"page-find-wallet-new-to-crypto-title": "Bago sa crypto",
"page-find-wallet-new-to-crypto-desc": "Bagong user ka hinahanap ang una mong wallet",
"page-find-wallet-nfts-title": "NFTs",
@@ -74,21 +67,13 @@
"page-find-wallet-finance-desc": "Gumagamit ka ng DeFi at gusto mo ng wallet na nagbibigay-daan sa iyong kumonekta sa mga DeFi application",
"page-find-wallet-developer-title": "Developer",
"page-find-wallet-developer-desc": "Isa kang developer at kailangan mo ng wallet para tumulong na mag-develop at sumubok ng mga dapp",
- "page-find-wallet-persona-desc": "Piliin ang profile na tugma sa gusto mong user at i-filter ang listahan ng wallet",
"page-find-wallet-filters": "Mga Filter",
"page-find-wallet-active": "aktibo",
- "page-find-wallet-profile-filters": "Mga filter ng profile",
- "page-find-wallet-feature-filters": "Mga filter ng feature",
"page-find-wallet-footnote-1": "Hindi mga opisyal na endorsement ang mga wallet na nakalista sa page na ito, at ibinibigay ang mga ito para sa pagbibigay lang ng kaalaman.",
"page-find-wallet-footnote-2": "Ibinigay ang mga paglalarawan ng mga ito ng mga proyekto ng wallet mismo.",
"page-find-wallet-footnote-3": "Nagdaragdag kami ng mga produkto sa page na ito base sa pamantayan sa aming patakaran sa paglilista. Kung gusto mong magdagdag kami ng wallet, maghain ng isyu sa GitHub.",
"page-find-wallet-mobile": "Mobile",
- "page-find-wallet-mobile-desc": "Mga wallet na may mga mobile app",
"page-find-wallet-desktop": "Desktop",
- "page-find-wallet-desktop-desc": "Mga wallet na may mga desktop app",
"page-find-wallet-browser": "Browser",
- "page-find-wallet-browser-desc": "Mga wallet na may mga browser extension",
- "page-find-wallet-device": "Device",
- "page-find-choose-to-compare": "Pumili para ihambing",
- "page-find-wallet-choose-features": "Pumili ng mga feature"
+ "page-find-wallet-device": "Device"
}
diff --git a/src/intl/fr/common.json b/src/intl/fr/common.json
index 7a27c77a768..5cc7cec9341 100644
--- a/src/intl/fr/common.json
+++ b/src/intl/fr/common.json
@@ -15,6 +15,9 @@
"aria-toggle-menu-button": "Basculer le bouton du menu",
"beacon-chain": "Chaîne phare",
"bridges": "Ponts de connexion blockchain",
+ "bug-bounty": "Prime de bogue",
+ "build": "Construire",
+ "build-menu": "Construire le menu",
"clear": "Traitée",
"close": "Fermer",
"community": "Communauté",
@@ -31,14 +34,15 @@
"copied": "Copié",
"copy": "Copier",
"danksharding": "Danksharding",
- "dao-page": "Organisations autonomes décentralisées (DAO)",
+ "dao-page": "DAO - Organisations autonomes décentralisées",
"dark-mode": "Sombre",
"data-provided-by": "Source de données :",
- "decentralized-applications-dapps": "Applications décentralisées (dApps)",
+ "decentralized-applications-dapps": "DApps - Applications décentralisées",
"decentralized-identity": "Identité décentralisée",
"decentralized-social-networks": "Réseaux sociaux décentralisés",
- "decentralized-science": "Science décentralisée (DeSci)",
- "defi-page": "Finance décentralisée (DeFi)",
+ "decentralized-science": "DeSci - Science décentralisée",
+ "description": "Description de l'élément de navigation",
+ "defi-page": "DeFi - Finance décentralisée",
"design": "Conception",
"design-principles": "Principes de conception",
"devcon": "Devcon",
@@ -76,7 +80,7 @@
"ethereum-bug-bounty": "Programme de chasse aux bogues d'Ethereum",
"consensus-when-shipping": "C'est pour quand ?",
"ethereum-upgrades": "Mises à niveau d'Ethereum",
- "ethereum-brand-assets": "Éléments de la marque Ethereum",
+ "ethereum-brand-assets": "Actifs de la marque Ethereum",
"ethereum-online": "Communautés en ligne",
"ethereum-events": "Évènements Ethereum",
"ethereum-foundation": "Ethereum Foundation",
@@ -143,10 +147,115 @@
"mainnet-ethereum": "Réseau principal Ethereum",
"merge": "Fusion",
"more": "Plus",
- "nav-developers": "Développeurs",
+ "nav-about-description": "Un projet public et open-source pour la communauté Ethereum",
+ "nav-advanced-description": "Maîtriser les sujets les plus complexes",
+ "nav-advanced-label": "Avancé",
+ "nav-basics-description": "Comprendre les fondamentaux d'Ethereum",
+ "nav-basics-label": "Les bases",
+ "nav-bridges-description": "Le Web3 a évolué vers un écosystème de blockchains primaires de couche 1 et de solutions de mise à l'échelle de couche 2",
+ "nav-builders-home-description": "Un manuel de construction pour Ethereum - par ceux qui le construisent, pour ceux qui le construisent",
+ "nav-builders-home-label": "Homepage constructeur",
+ "nav-contribute-description": "Pour contribuer, suivez ces recommandations",
+ "nav-contribute-label": "Contribuer à ethereum.org",
+ "nav-dao-description": "Des communautés détenues par leurs membres sans autorité centralisée",
+ "nav-dapps-description": "Découvrez un riche écosystème d'applications utilisant Ethereum",
+ "nav-defi-description": "Une alternative ouverte et globale au marché financier traditionnel",
+ "nav-desci-description": "Une alternative ouverte et globale au système scientifique actuel",
+ "nav-desoc-description": "Des plateformes basées sur la blockchain favorisant les interactions sociales et la création de contenu",
"nav-developers-docs": "Documentation pour les développeurs",
+ "nav-developers": "Développeurs",
+ "nav-did-description": "Émettez et possédez vos identifiants décentralisés uniques",
+ "nav-docs-description": "Des documents pour vous aider à comprendre et à construire avec Ethereum",
+ "nav-docs-design-description": "Description des défis uniques en matière de conception web3, des bonnes pratiques et des résultats de recherche des utilisateurs",
+ "nav-docs-design-label": "Les fondamentaux du UX/UI design",
+ "nav-docs-foundation-description": "Principes de base pour développer sur Ethereum",
+ "nav-docs-foundation-label": "Sujets fondamentaux",
+ "nav-docs-overview-description": "Votre centre de documentation pour les développeurs",
+ "nav-docs-stack-description": "Comprendre tous les détails de la pile Ethereum",
+ "nav-docs-stack-label": "Pile d'Ethereum",
+ "nav-eip-description": "Normes définissant de nouvelles caractéristiques ou de nouveaux processus",
+ "nav-eip-label": "EIP - Propositions d'amélioration d'Ethereum",
+ "nav-emerging-description": "Découvrez d'autres cas d'utilisation plus récents d'Ethereum",
+ "nav-emerging-label": "Cas d'utilisation émergents",
+ "nav-enterprise-description": "Applications commerciales d'Ethereum",
+ "nav-ethereum-org-description": "Ce site web est animé par la communauté - rejoignez-nous et contribuez vous aussi",
+ "nav-ethereum-wallets-description": "Une application pour interagir avec votre compte Ethereum",
+ "nav-events-description": "Décentralisation et liberté de participation pour tous",
+ "nav-events-irl-description": "Chaque mois, des événements majeurs liés à Ethereum sont organisés en personne ou en ligne",
+ "nav-events-label": "Communautés et événements",
+ "nav-events-online-description": "Des centaines de milliers de passionnés d'Ethereum participent à ces communautés en ligne",
+ "nav-find-wallet-description": "Les portefeuilles vous permettent d'utiliser des cryptomonnaies",
+ "nav-find-wallet-label": "Choisissez votre portefeuille",
+ "nav-gas-fees-description": "Comment sont calculés les frais de transaction ETH ?",
+ "nav-gas-fees-label": "Frais de Gaz",
+ "nav-get-eth-description": "Vous avez besoin d'éther (ETH) pour utiliser les applications Ethereum",
+ "nav-get-started-description": "Vos premiers pas pour utiliser Ethereum",
+ "nav-governance-description": "Le processus de mise à jour du protocole Ethereum",
+ "nav-governance-label": "Gouvernance",
+ "nav-grants-description": "Une liste établie par notre communauté sur les projets proposant des programmes de financement sous forme de bourses",
+ "nav-guide-create-account-description": "Tout le monde peut créer un compte Ethereum à tout moment, gratuitement, avec une application de portefeuille",
+ "nav-guide-create-account-label": "Comment créer un compte Ethereum",
+ "nav-guide-revoke-access-description": "Restez en sécurité en interagissant avec les contrats intelligents et les applications dans l'écosystème Ethereum",
+ "nav-guide-revoke-access-label": "Comment révoquer l'accès à un contrat intelligent ?",
+ "nav-guide-use-wallet-description": "Apprenez à utiliser toutes les fonctions de base d'un portefeuille",
+ "nav-guide-use-wallet-label": "Comment utiliser un portefeuille",
+ "nav-guides-description": "Des guides pratiques étape par étape pour vous aider à démarrer",
+ "nav-guides-label": "Guides de procédures",
+ "nav-history-description": "Une chronologie de toutes les principales fourches et mises à jour",
+ "nav-history-label": "Histoire technique d'Ethereum",
+ "nav-layer-2-description": "Des transactions moins chères et plus rapides pour Ethereum",
+ "nav-learn-by-coding-description": "Des outils qui vous aident à expérimenter avec Ethereum",
+ "nav-local-env-description": "Choisissez et mettez en place votre pile de développement Ethereum",
+ "nav-mainnet-description": "Les applications blockchain d'entreprise peuvent être créées sur le réseau public principal Ethereum",
+ "nav-nft-description": "Un moyen de représenter tout ce qui est unique en tant qu'actif Ethereum",
+ "nav-open-research-description": "L'un des principaux atouts d'Ethereum est sa communauté de recherche active",
+ "nav-open-research-label": "Recherche ouverte",
+ "nav-overview-description": "Tout savoir sur l'éducation à l'Ethereum",
+ "nav-overview-label": "Aperçu",
+ "nav-participate-overview-description": "Aperçu des modalités de participation",
"nav-primary": "Principale",
- "nft-page": "Jetons non fongibles (NFTs)",
+ "nav-private-description": "Ressources Ethereum pour les développeurs en entreprise",
+ "nav-quizzes-description": "Découvrez dans quelle mesure vous comprenez Ethereum et les cryptomonnaies",
+ "nav-quizzes-label": "Testez vos connaissances",
+ "nav-refi-description": "Un système économique alternatif fondé sur les principes de la régénération",
+ "nav-research-description": "Processus utilisés pour améliorer Ethereum",
+ "nav-research-label": "Recherche et développement",
+ "nav-roadmap-description": "La voie vers davantage d'évolutivité, de sécurité et de durabilité pour Ethereum",
+ "nav-roadmap-future-description": "Consolider Ethereum en tant que réseau robuste et décentralisé",
+ "nav-roadmap-future-label": "Pérenniser",
+ "nav-roadmap-label": "Feuille de route",
+ "nav-roadmap-scaling-description": "Mise à jour du réseau pour réduire davantage les coûts et la vitesse des transactions",
+ "nav-roadmap-scaling-label": "Transactions plus abordables",
+ "nav-roadmap-security-description": "Veiller à ce qu'Ethereum reste résilient face à tous les types d'attaques à venir",
+ "nav-roadmap-security-label": "Sécurité renforcée",
+ "nav-roadmap-ux-description": "L'utilisation d'Ethereum doit être simplifiée",
+ "nav-roadmap-ux-label": "Meilleure expérience utilisateur",
+ "nav-run-a-node-description": "Devenez pleinement autonome tout en contribuant à la sécurisation du réseau",
+ "nav-security-description": "Apprenez les bonnes pratiques en matière d'utilisation des cryptomonnaies",
+ "nav-smart-contracts-description": "Les éléments fondamentaux de l'écosystème Ethereum",
+ "nav-stablecoins-description": "Les Stablecoins sont des jetons Ethereum conçus pour conserver une valeur fixe",
+ "nav-stake-description": "Gagnez des récompenses en sécurisant Ethereum",
+ "nav-stake-label": "Mise",
+ "nav-staking-home-description": "Un aperçu des différentes options de mise en jeu",
+ "nav-staking-home-label": "Accueil mise en jeu",
+ "nav-staking-pool-description": "Misez et gagnez des récompenses avec n'importe quel montant en ETH en vous joignant à d'autres personnes",
+ "nav-staking-pool-label": "Mise en jeu en pool",
+ "nav-staking-saas-description": "Les opérateurs de nœuds tiers gèrent le fonctionnement de votre client de validateur",
+ "nav-staking-saas-label": "Mise en jeu en tant que service",
+ "nav-staking-solo-description": "Faites fonctionner votre propre matériel et contribuez ainsi à la sécurité et la décentralisation du réseau Ethereum",
+ "nav-staking-solo-label": "Mise en jeu en solo",
+ "nav-start-building-description": "Informations utiles pour les nouveaux venus",
+ "nav-translation-program-description": "Un effort collaboratif pour traduire ethereum.org dans toutes les langues",
+ "nav-tutorials-description": "Liste de tutoriels de la communauté",
+ "nav-use-cases-description": "Découvrez des idées originales d'utilisation d'Ethereum",
+ "nav-use-cases-label": "Cas d'usage",
+ "nav-what-is-ether-description": "La monnaie des applications Ethereum",
+ "nav-what-is-ethereum-description": "Comprendre la spécificité d'Ethereum",
+ "nav-what-is-web3-label": "Qu'est-ce que le Web3 ?",
+ "nav-what-is-web3-description": "Une alternative aux monopoles centralisés qui dictent les règles",
+ "nav-whitepaper-description": "Le livre blanc original d'Ethereum écrit par Vitalik Buterin en 2014",
+ "nav-zkp-description": "Une façon de prouver la validité d'une information sans révéler l'information elle-même",
+ "nft-page": "NFTs - Jetons non fongibles",
"nfts": "NFTs",
"no": "Non",
"on-this-page": "Sur cette page",
@@ -154,6 +263,8 @@
"page-developers-aria-label": "Menu des développeurs",
"page-index-meta-title": "Accueil",
"page-last-updated": "Dernière mise à jour de la page",
+ "participate": "Participer",
+ "participate-menu": "Menu de participation",
"pbs": "Séparation entre le validateur et le constructeur de blocs",
"pools": "Mise en jeu en pool",
"privacy-policy": "Politique de confidentialité",
@@ -164,9 +275,11 @@
"refresh": "Veuillez actualiser la page.",
"return-home": "retour à l'accueil",
"roadmap": "Feuille de route d'Ethereum",
+ "research": "Recherche",
+ "research-menu": "Menu de recherche",
"resources": "Traduction des ressources",
- "regenerative-finance": "Finance régénérative (ReFi)",
- "run-a-node": "Exécuter un nœud",
+ "regenerative-finance": "ReFi - Finance régénérative",
+ "run-a-node": "Ajouter un nœud",
"rollup-component-website": "Site Web",
"rollup-component-developer-docs": "Documentation pour les développeurs",
"rollup-component-technology-and-risk-summary": "Résumé des technologies et des risques",
@@ -211,8 +324,10 @@
"try-using-search": "Essayez d'utiliser la recherche pour trouver ce que vous cherchez ou",
"tutorials": "Tutoriels",
"up": "Vers le haut",
+ "use": "Utiliser",
"use-ethereum": "Utiliser Ethereum",
"use-ethereum-menu": "Utiliser le menu Ethereum",
+ "use-menu": "Utiliser le menu",
"user-experience": "Expérience utilisateur",
"verkle-trees": "Les arbres de Verkle",
"wallets": "Portefeuilles",
diff --git a/src/intl/fr/glossary.json b/src/intl/fr/glossary.json
index c819f40b517..1fc96176972 100644
--- a/src/intl/fr/glossary.json
+++ b/src/intl/fr/glossary.json
@@ -11,7 +11,7 @@
"api-definition": "Une interface de programmation d'application (API) est un ensemble de définitions sur la manière d'utiliser un logiciel. Une API se situe entre une application et un serveur web, et facilite le transfert de données entre eux.",
"asic-term": "ASIC",
"asic-definition": "Circuit intégré spécifique à une application. Il s'agit généralement d'un circuit intégré conçu sur mesure pour le minage de crypto-monnaies.",
- "assert-term": "asset",
+ "assert-term": "assert",
"assert-definition": "Dans Solidity, `assert(false)` compile vers `0xfe`, un opcode invalide, qui utilise tout le gaz restant et annule tous les changements. Quand une déclaration `assert()` échoue, quelque chose de très mauvais et d'inattendu est en train de se produire, et vous devrez corriger votre code. Vous devriez utiliser `assert()` pour éviter des conditions qui ne devraient jamais se produire. En savoir plus sur la sécurité des contrats intelligents.",
"attestation-term": "Attestation",
"attestation-definition": "Une affirmation faite par une entité que quelque chose est vrai. Dans le contexte d'Ethereum, les validateurs de consensus doivent affirmer ce qu'ils pensent être l'état de la chaîne. À certains moments, chaque validateur est responsable de la publication de différentes attestations qui déclarent formellement son point de vue sur la chaîne, y compris le dernier point de contrôle finalisé et la tête actuelle de la chaîne. En savoir plus sur les attestations.",
@@ -128,11 +128,11 @@
"execution-layer-term": "Couche d'exécution",
"execution-layer-definition": "La couche d'exécution d'Ethereum est le réseau des clients d'exécution.",
"eoa-term": "Compte externe (EOA)",
- "eoa-definition": "Les comptes détenus en externe (EOA) sont des comptes contrôlés par des clés privées, généralement générées à l'aide d'une phrase de récupération. Contrairement aux contrats intelligents, les comptes détenus en externe sont des comptes auxquels aucun code n'est associé. En général, ces comptes sont gérés par un portefeuille.",
+ "eoa-definition": "Les comptes détenus en externe (EOA) sont des comptes contrôlés par des clés privées, généralement générées à l'aide d'une phrase de récupération. Contrairement aux contrats intelligents, les comptes détenus en externe sont des comptes auxquels aucun code n'est associé. En général, ces comptes sont gérés par un portefeuille.",
"erc-term": "Demande de commentaires Ethereum (ERC)",
"erc-definition": "Libellé donné à certaines EIP qui visent à définir une norme spécifique d'utilisation d'Ethereum.",
"ethash-term": "Ethash",
- "ethash-definition": "Algorithme de preuve de travail qui a été utilisé sur Ethereum avant de passer à la preuve d'enjeu.En savoir plus.",
+ "ethash-definition": "Algorithme de preuve de travail qui a été utilisé sur Ethereum avant de passer à la preuve d'enjeu.En savoir plus.",
"ether-term": "Ether",
"ether-definition": "La crypto-monnaie native utilisée par l'écosystème Ethereum, qui couvre les coûts du gaz lors de l'exécution des transactions. Également écrit ETH ou son symbole Ξ, le caractère Xi majuscule grec. En savoir plus sur l'éther.",
"events-term": "Événements",
@@ -154,7 +154,7 @@
"fork-choice-algorithm-term": "Algorithme de sélection de fourche",
"fork-choice-algorithm-definition": "L'algorithme utilisé pour identifier la tête de la blockchain. Sur la couche d'exécution, la tête de la chaîne est identifiée comme étant celle qui présente la plus grande difficulté totale. Cela signifie que la véritable tête de la chaîne est celle qui a nécessité le plus de travail pour la miner. Dans la couche de consensus, l'algorithme observe les attestations cumulées des validateurs (LMD_GHOST).",
"fraud-proof-term": "Preuve de fraude",
- "fraud-proof-definition": "Un modèle de sécurité pour certaines solutions de seconde couche où, pour augmenter la vitesse, les transactions sont regroupées en lots et soumises à Ethereum en une seule transaction. Elles sont présumées valides mais peuvent être contestées si une fraude est suspectée. Une preuve de fraude exécutera alors la transaction pour voir si une fraude a eu lieu. Cette méthode augmente le nombre de transactions possibles tout en maintenant la sécurité. Certains rollups utilisent des preuves de validité. En savoir plus sur les rollups optimistes.",
+ "fraud-proof-definition": "Un modèle de sécurité pour certaines solutions de seconde couche où, pour augmenter la vitesse, les transactions sont regroupées en lots et soumises à Ethereum en une seule transaction. Elles sont présumées valides mais peuvent être contestées si une fraude est suspectée. Une preuve de fraude exécutera alors la transaction pour voir si une fraude a eu lieu. Cette méthode augmente le nombre de transactions possibles tout en maintenant la sécurité. Certains rollups utilisent des preuves de validité. En savoir plus sur les rollups optimistes.",
"frontier-term": "Frontier",
"frontier-definition": "Phase initiale de développement à des fins de test d'Ethereum, qui a duré de juillet 2015 à mars 2016.",
"gas-term": "Gaz",
@@ -188,7 +188,7 @@
"issuance-term": "Émission",
"issuance-definition": "Frappe de nouveaux ethers pour récompenser la proposition de bloc, l'attestation et la dénonciation.",
"kdf-term": "Fonction de dérivation de clé (KDF)",
- "kdf-definition": "Aussi appelée « algorithme d'étirement de mot de passe », elle est utilisée par les formats keystore pour protéger des attaques par force brute, par dictionnaire et table arc-en-ciel sur le chiffrement des phrases de sécurité, en hachant celles-ci de façon répétée.",
+ "kdf-definition": "Aussi appelée « algorithme d'étirement de mot de passe », elle est utilisée par les formats keystore pour protéger des attaques par force brute, par dictionnaire et table arc-en-ciel sur le chiffrement des phrases de sécurité, en hachant celles-ci de façon répétée.",
"keystore-term": "Keystore",
"keystore-definition": "La paire clé privée/adresse de chaque compte existe sous la forme d'un fichier clé unique dans un client Ethereum. Il s'agit de fichiers texte JSON qui contiennent la clé privée cryptée du compte, qui ne peut être décryptée qu'avec le mot de passe saisi lors de la création du compte.",
"keccak-256-term": "Keccak-256",
@@ -210,7 +210,7 @@
"message-call-term": "Appel de message",
"message-call-definition": "La transmission d'un message d'un compte à un autre. Si le compte de destination est associé au code EVM, la VM sera démarrée avec l'état de cet objet et le message sera traité.",
"mining-term": "Minage",
- "mining-definition": "Le processus de hachage répété d'un en-tête de bloc tout en incrémentant un nonce jusqu'à ce que le résultat contienne un nombre arbitraire de zéros binaires de tête. C'est le processus par lequel de nouveaux blocs sont ajoutés à une blockchain à preuve de travail. C'est ainsi qu'Ethereum était sécurisé avant de passer à la preuve d'enjeu.",
+ "mining-definition": "Le processus de hachage répété d'un en-tête de bloc tout en incrémentant un nonce jusqu'à ce que le résultat contienne un nombre arbitraire de zéros binaires de tête. C'est le processus par lequel de nouveaux blocs sont ajoutés à une blockchain à preuve de travail. C'est ainsi qu'Ethereum était sécurisé avant de passer à la preuve d'enjeu.",
"miner-term": "Mineur",
"miner-definition": "Un nœud du réseau qui trouve une preuve de travail valide pour les nouveaux blocs, par un hachage répété (voir Ethash). Les mineurs ne font plus partie d'Ethereum - ils ont été remplacés par des validateurs lorsque Ethereum est passé à la preuve d'enjeu.",
"mint-term": "Frapper",
@@ -228,7 +228,7 @@
"ommer-term": "Bloc oncle (ommer)",
"ommer-definition": "Lorsqu'un mineur en preuve de travail trouve un bloc valide, un autre mineur peut avoir publié un bloc concurrent qui est ajouté au bout de la blockchain en premier. Ce bloc valide, mais périmé, peut être inclus par des blocs plus récents en tant qu'ommers et recevoir une récompense de bloc partielle. Le terme « ommer » est le terme de genre neutre préféré pour désigner le frère ou la sœur d'un bloc parent, mais cela est parfois également appelé « oncle ». Cela était pertinent pour Ethereum lorsqu'il s'agissait d'un réseau de preuve de travail, mais les ommers ne sont pas une caractéristique de l'Ethereum de preuve d'enjeu car un seul proposeur de bloc est sélectionné dans chaque créneau.",
"optimistic-rollup-term": "Rollup optimisé",
- "optimistic-rollup-definition": "Un rollup de transactions qui utilise des preuves de fraude pour offrir un débit de transactions en seconde couche accru tout en utilisant la sécurité fournie par le reseau principal (couche 1). Contrairement au Plasma, une solution de seconde couche similaire, les rollups optimistes peuvent gérer des types de transactions plus complexes – tout ce qui est possible dans l'EVM. Cependant, ils présentent des problèmes de latence par rapport aux Zero-knowledge rollups car une transaction peut être contestée via la preuve de fraude. En savoir plus sur les rollups optimistes.",
+ "optimistic-rollup-definition": "Un rollup de transactions qui utilise des preuves de fraude pour offrir un débit de transactions en seconde couche accru tout en utilisant la sécurité fournie par le reseau principal (couche 1). Contrairement au Plasma, une solution de seconde couche similaire, les rollups optimistes peuvent gérer des types de transactions plus complexes – tout ce qui est possible dans l'EVM. Cependant, ils présentent des problèmes de latence par rapport aux Zero-knowledge rollups car une transaction peut être contestée via la preuve de fraude. En savoir plus sur les rollups optimistes.",
"oracle-term": "Oracle",
"oracle-definition": "Un oracle est un pont entre la blockchain et le monde réel. Ils agissent comme des API sur la chaîne qui peuvent être interrogées pour obtenir des informations et utilisées dans les contrats intelligents. En savoir plus sur les oracles.",
"peer-term": "Pair",
@@ -264,7 +264,7 @@
"serialization-term": "La sérialisation",
"serialization-definition": "Procédé de conversion d'une structure de données en une séquence d'octets.",
"shard-term": "Fragment / chaîne de fragments",
- "shard-definition": "Les chaînes de fragments sont des sections discrètes de la blockchain totale dont des sous-ensembles de validateurs peuvent être responsables. Cela permettra d'augmenter le débit des transactions pour Ethereum et d'améliorer la disponibilité des données pour les solutions de couche 2 telles que les rollups optimistes et les rollups ZK. Plus d'informations sur danksharding.",
+ "shard-definition": "Les chaînes de fragments sont des sections discrètes de la blockchain totale dont des sous-ensembles de validateurs peuvent être responsables. Cela permettra d'augmenter le débit des transactions pour Ethereum et d'améliorer la disponibilité des données pour les solutions de couche 2 telles que les rollups optimistes et les rollups ZK. Plus d'informations sur danksharding.",
"sidechain-term": "Chaîne latérale",
"sidechain-definition": "Une solution de mise à l'échelle qui utilise une chaîne séparée avec des règles de consensus différentes, souvent plus rapides. Un pont est nécessaire pour connecter ces chaînes latérales au Réseau principal. Les rollups utilisent également des sidechains, mais ils fonctionnent en collaboration avec le Réseau principal. En savoir plus sur les sidechains.",
"signing-term": "Signature",
@@ -340,5 +340,5 @@
"zk-proof-term": "Preuve de connaissance zéro",
"zk-proof-definition": "Une preuve à connaissance nulle est une méthode cryptographique qui permet à une personne de prouver qu'une déclaration est vraie sans transmettre d'informations supplémentaires. En savoir plus sur les rollups à connaissance nulle.",
"zk-rollup-term": "Rollup ZK",
- "zk-rollup-definition": "Un rollup de transactions qui utilise des preuves de validité pour offrir un débit de transactions en seconde couche accru tout en utilisant la sécurité fournie par le réseau principal (couche 1). Bien qu'ils ne puissent pas gérer des types de transactions complexes, comme les rollups optimistes, ils n'ont pas de problèmes de latence car les transactions sont prouvées valides lorsqu'elles sont soumises. En savoir plus sur les rollups Zk."
+ "zk-rollup-definition": "Un rollup de transactions qui utilise des preuves de validité pour offrir un débit de transactions en seconde couche accru tout en utilisant la sécurité fournie par le réseau principal (couche 1). Bien qu'ils ne puissent pas gérer des types de transactions complexes, comme les rollups optimistes, ils n'ont pas de problèmes de latence car les transactions sont prouvées valides lorsqu'elles sont soumises. En savoir plus sur les rollups Zk."
}
diff --git a/src/intl/fr/page-learn.json b/src/intl/fr/page-learn.json
index b029424ff18..c02afe1a8cb 100644
--- a/src/intl/fr/page-learn.json
+++ b/src/intl/fr/page-learn.json
@@ -12,7 +12,7 @@
"hero-button-lets-get-started": "C'est parti !",
"what-is-crypto-1": "Vous avez peut-être entendu parler de cryptomonnaies, de blockchains et de Bitcoin. Les liens ci-dessous vous aideront à apprendre ce qu'ils sont et comment ils s'articulent avec Ethereum.",
"what-is-crypto-2": "Les cryptomonnaies, comme le Bitcoin, permettent à n'importe qui de transférer de l'argent à l'échelle mondiale. Ethereum le permet également, mais il peut également exécuter du code qui permet aux gens de créer des applications et des organisations. Il est à la fois résilient et flexible : n'importe quel programme informatique peut être exécuté sur Ethereum. Apprenez-en davantage et découvrez comment commencer :",
- "what-is-ethereum-card-title": "Qu'est-ce qu'Ethereum ?",
+ "what-is-ethereum-card-title": "Qu'est-ce qu'Ethereum ?",
"what-is-ethereum-card-description": "Si vous êtes nouveau, commencez ici pour savoir pourquoi Ethereum est important.",
"what-is-ethereum-card-image-alt": "Illustration d'une personne jetant un coup d'œil à un bazar, destiné à représenter Ethereum.",
"what-is-eth-card-title": "Qu'est-ce que l'ETH ?",
diff --git a/src/intl/fr/page-wallets-find-wallet.json b/src/intl/fr/page-wallets-find-wallet.json
index e93db24661e..8de3f68fbab 100644
--- a/src/intl/fr/page-wallets-find-wallet.json
+++ b/src/intl/fr/page-wallets-find-wallet.json
@@ -7,7 +7,6 @@
"page-find-wallet-meta-title": "Trouver un portefeuille Ethereum",
"page-find-wallet-title": "Trouver un portefeuille",
"page-find-wallet-try-removing": "Essayez de supprimer une ou deux fonctionnalités",
- "page-find-wallet-choose-to-compare": "Choisir pour comparer",
"page-stake-eth": "Mettre en jeu de l'ETH",
"page-find-wallet-open-source": "Open Source",
"page-find-wallet-open-source-desc": "Un logiciel open source permet à chacun de vérifier l'intégrité et la sécurité de l'application",
@@ -16,8 +15,6 @@
"page-find-wallet-non-custodial-desc": "Portefeuilles ne contrôlant pas vos clés privées",
"page-find-wallet-hardware-wallet-support": "Prise en charge du portefeuille matériel",
"page-find-wallet-hardware-wallet-support-desc": "Des portefeuilles qui peuvent se connecter à un portefeuille matériel pour une meilleure sécurité",
- "page-find-wallet-walletconnect": "WalletConnect",
- "page-find-wallet-walletconnect-desc": "Portefeuilles compatibles avec WalletConnect pour se connecter aux applications décentralisées",
"page-find-wallet-rpc-importing": "Importation de RPC",
"page-find-wallet-rpc-importing-desc": "Portefeuilles prenant en charge des terminaisons RPC personnalisées pour se connecter à différents nœuds ou réseaux",
"page-find-wallet-nft-support": "Support NFT",
@@ -36,8 +33,6 @@
"page-find-wallet-ens-support-desc": "Portefeuilles qui prennent en charge l'Ethereum Name Service (ENS)",
"page-find-wallet-token-importing": "Importation de jetons",
"page-find-wallet-token-importing-desc": "Importer n'importe quel jeton ERC-20 à utiliser dans le portefeuille",
- "page-find-wallet-fee-optimization": "Optimisation des frais",
- "page-find-wallet-fee-optimization-desc": "Prise en charge des transactions de type 2 pour des frais de gaz optimisés et des remboursements de frais de gaz non utilisés",
"page-find-wallet-buy-crypto": "Achetez des cryptomonnaies",
"page-find-wallet-buy-crypto-desc": "Acheter des cryptomonnaies avec fiat directement dans le portefeuille \n *Note : l'achat de cryptomonnaies peut être spécifique a la région",
"page-find-wallet-sell-for-fiat": "Vendre pour des fiat",
@@ -46,7 +41,6 @@
"page-find-wallet-multisig-desc": "Portefeuilles nécessitant plusieurs signatures pour autoriser une transaction",
"page-find-wallet-social-recovery": "Récupération Sociale",
"page-find-wallet-social-recovery-desc": "Portefeuilles permettant aux responsables de modifier la clé de signature pour les portefeuilles de contrats intelligents",
- "page-find-wallet-token-support": "Support des jetons",
"page-find-wallet-features": "Fonctionnalités",
"page-find-wallet-security": "Sécurité",
"page-find-wallet-smart-contract": "Contrat intelligent",
@@ -63,7 +57,6 @@
"page-find-wallet-chromium": "Chromium",
"page-find-wallet-firefox": "Firefox",
"page-find-wallet-hardware": "Matériel",
- "page-find-wallet-hardware-desc": "Portefeuilles matériels",
"page-find-wallet-new-to-crypto-title": "Débutant dans les cryptos",
"page-find-wallet-new-to-crypto-desc": "Vous êtes un nouvel utilisateur à la recherche de votre premier portefeuille",
"page-find-wallet-nfts-title": "NFTs",
@@ -74,22 +67,14 @@
"page-find-wallet-finance-desc": "Vous utilisez la DeFi et êtes en quête d'un portefeuille qui vous permette de vous connecter aux applications DeFi",
"page-find-wallet-developer-title": "Développeur",
"page-find-wallet-developer-desc": "Vous êtes développeur et avez besoin d'un portefeuille pour contribuer à développer et tester des applications décentralisées",
- "page-find-wallet-persona-desc": "Choisissez le profil correspondant à votre utilisation et filtrez la liste de portefeuilles",
"page-find-wallet-filters": "Filtres",
"page-find-wallet-active": "actif",
- "page-find-wallet-profile-filters": "Filtres de profil",
- "page-find-wallet-feature-filters": "Filtres de fonctionnalités",
"page-find-wallet-footnote-1": "Les portefeuilles répertoriés sur cette page ne sont pas officiellement approuvés et sont fournis à titre d'information uniquement.",
"page-find-wallet-footnote-2": "Leurs descriptions ont été fournies par les projets de portefeuilles eux-mêmes.",
"page-find-wallet-footnote-3": "Nous ajoutons des produits à cette page sur la base des critères de notre politique en matière de liste. Si vous souhaitez nous voir ajouter un portefeuille, soumettez une demande sur GitHub.",
"page-find-wallet-mobile": "Téléphone",
- "page-find-wallet-mobile-desc": "Portefeuilles avec applications mobiles",
"page-find-wallet-desktop": "Ordinateur",
- "page-find-wallet-desktop-desc": "Portefeuille avec applications de bureau",
"page-find-wallet-browser": "Navigateur",
- "page-find-wallet-browser-desc": "Portefeuilles avec extensions pour navigateur",
"page-find-wallet-device": "Appareil",
- "page-find-choose-to-compare": "Choisir pour comparer",
- "page-find-wallet-choose-features": "Choisir des fonctionnalités",
"page-find-wallet-reset-filters": "Réinitialiser les filtres"
}
diff --git a/src/intl/gl/common.json b/src/intl/gl/common.json
index c9db4d8edfb..a88581ca929 100644
--- a/src/intl/gl/common.json
+++ b/src/intl/gl/common.json
@@ -1,28 +1,70 @@
{
"about-ethereum-org": "Acerca de ethereum.org",
"about-us": "Sobre nós",
+ "adding-desci-projects": "Engadindo proxectos DeSci",
+ "adding-developer-tools": "Engadindo ferramentas para desenvolvedores",
+ "adding-exchanges": "Engadindo intercambios",
+ "adding-glossary-terms": "Engadindo termos ó glosario",
+ "adding-staking-products": "Engadindo produtos de participación",
+ "adding-wallets": "Engadindo carteiras",
+ "account-abstraction": "Abstracción de conta",
+ "acknowledgements": "Agradecementos",
"aria-toggle-search-button": "Cambiar botón de busca",
"aria-toggle-menu-button": "Cambiar botón de menú",
"beacon-chain": "Cadea de Baliza",
"bridges": "Pontes de Blockchain",
+ "bug-bounty": "Recompensa de erro",
+ "build": "Construír",
+ "build-menu": "Menú Construír",
+ "clear": "Borrar",
+ "close": "Pechar",
"community": "Comunidade",
"community-hub": "Centro de Comunidade",
"community-menu": "Menú de Comunidade",
"contact": "Contacto",
+ "content-buckets": "Series de contido",
+ "content-resources": "Recursos de contido",
+ "content-standardization": "Normalización do contido",
"contributing": "Contribuír",
"contributors": "Contribuidores",
"contributors-thanks": "A todos os que contribuíron a esta páxina, grazas!",
"cookie-policy": "Política de cookies",
"copied": "Copiado",
"copy": "Copiar",
+ "danksharding": "Danksharding",
+ "dao-page": "DAO en inglés - Organizacións Autónomas Descentralizadas",
"dark-mode": "Escuro",
"data-provided-by": "Orixe de datos:",
- "decentralized-applications-dapps": "Aplicacións descentralizadas (dapps)",
+ "decentralized-applications-dapps": "Dapps - Aplicacións descentralizadas",
+ "decentralized-identity": "Identidade descentralizada",
+ "decentralized-social-networks": "Redes sociais descentralizadas",
+ "decentralized-science": "DeSci - Ciencias descentralizadas",
+ "description": "Descrición dun elemento de navegación",
+ "defi-page": "DeFi - Finanzas descentralizadas",
+ "design": "Deseño",
+ "design-principles": "Principios de deseño",
"devcon": "Devcon",
"developers": "Programadores",
"developers-home": "Menú para programadores",
"docs": "Documentos",
+ "docsearch-to-select": "Para seleccionar",
+ "docsearch-to-navigate": "Para navegar",
+ "docsearch-to-close": "Para pechar",
+ "docsearch-search-by": "Buscar por",
+ "docsearch-start-recent-searches-title": "Recente",
+ "docsearch-start-no-recent-searches": "Non hai buscas recentes",
+ "docsearch-start-save-recent-search": "Gardar esta busca",
+ "docsearch-start-remove-recent-search": "Eliminar esta busca do historial",
+ "docsearch-start-favorite-searches": "Favorito",
+ "docsearch-start-remove-favorite-search": "Eliminar esta busca de favoritos",
+ "docsearch-no-results-text": "Sen resultados para",
+ "docsearch-no-results-suggested-query": "Intentar buscar por",
+ "docsearch-no-results-missing": "Considera que esta consulta debería amosar resultados?",
+ "docsearch-no-results-missing-link": "Fáganolo saber.",
+ "docsearch-error-title": "Non se atoparon resultados",
+ "docsearch-error-help": "Pode que desexe revisar a súa conexión de rede.",
"documentation": "Documentación",
+ "down": "Baixar",
"ecosystem": "Ecosistema",
"edit-page": "Editar páxina",
"ef-blog": "Blog da Fundación Ethereum",
@@ -32,6 +74,7 @@
"enterprise-menu": "Menú Empresa",
"esp": "Programa de soporte do ecosistema",
"eth-current-price": "Prezo actual de ETH (USD)",
+ "ethereum-bug-bounty": "Programa de caza de erros de Ethereum",
"consensus-when-shipping": "Cando se envía?",
"ethereum-upgrades": "Melloras de Ethereum",
"ethereum-brand-assets": "Activos de marca de Ethereum",
@@ -42,20 +85,37 @@
"ethereum-glossary": "Glosario de Ethereum",
"ethereum-governance": "Gobernanza de Ethereum",
"ethereum-logo": "Logotipo de Ethereum",
+ "ethereum-roadmap": "Folla de ruta de Ethereum",
+ "ethereum-protocol": "Protocolo de Ethereum",
"ethereum-security": "Seguridade en Ethereum e prevención de fraudes",
"ethereum-support": "Soporte de Ethereum",
"ethereum-wallets": "Carteiras de Ethereum",
"ethereum-whitepaper": "Informe de Ethereum",
+ "feedback-widget-prompt": "É útil esta páxina?",
+ "feedback-card-prompt-page": "Foi útil esta páxina?",
+ "feedback-card-prompt-article": "Foi útil este artigo?",
+ "feedback-card-prompt-tutorial": "Foi útil este tutorial?",
+ "feedback-widget-thank-you-title": "Grazas polos vosos comentarios!",
+ "feedback-widget-thank-you-subtitle": "Faga que esta páxina sexa aínda mellor contestando unhas preguntas.",
+ "feedback-widget-thank-you-subtitle-ext": "Se precisa axuda, pode poñerse en contacto coa comunidade en Discord.",
+ "feedback-widget-thank-you-timing": "2-3 min",
+ "feedback-widget-thank-you-cta": "Abrir unha breve enquisa",
"find-wallet": "Buscar carteira",
+ "future-proofing": "Preparado para o futuro",
"get-eth": "Obter ETH",
"get-involved": "Participar",
"get-started": "Comezar",
"grants": "Permisos",
"grant-programs": "Programas para permisos do ecosistema",
- "guides-and-resources": "Guías e recursos para a comunidade",
+ "guides": "Guías",
+ "guides-hub": "Guías prácticas",
"history-of-ethereum": "Historia de Ethereum",
"home": "Inicio",
"how-ethereum-works": "Como funciona Ethereum",
+ "how-to-revoke-token-access": "Como anular o acceso a contratos intelixentes ós seus fondos en criptomoedas",
+ "how-to-swap-tokens": "Como intercambiar tokens",
+ "how-to-use-a-bridge": "Como pasar os tokens á capa 2",
+ "how-to-use-a-wallet": "Como usar unha carteira",
"image": "imaxe",
"in-this-section": "Nesta sección",
"individuals": "Usuarios",
@@ -66,8 +126,10 @@
"languages": "Idiomas",
"last-24-hrs": "Últimas 24 horas",
"last-edit": "Última edición",
+ "layer-2": "Capa 2",
"learn": "Información",
- "learn-by-coding": "Aprender mediante codificación",
+ "learn-by-coding": "Aprende programando",
+ "learn-hub": "Centro de aprendizaxe",
"learn-menu": "Menú de información",
"learn-more": "Máis información",
"less": "Menos",
@@ -76,31 +138,159 @@
"loading": "Cargando...",
"loading-error": "Erro de carga.",
"loading-error-refresh": "Erro. Actualice a páxina.",
+ "loading-error-try-again-later": "Non se puideron cargar os datos. Inténteo de novo máis tarde.",
"logo": "logotipo",
"mainnet-ethereum": "Rede principal de Ethereum",
+ "merge": "Fusionar",
"more": "Máis",
+ "nav-about-description": "Un proxecto público de código aberto para a comunidade Ethereum",
+ "nav-advanced-description": "Coñeza os temas máis complexos",
+ "nav-advanced-label": "Avanzado",
+ "nav-basics-description": "Entenda o esencial de Ethereum",
+ "nav-basics-label": "Conceptos básicos",
+ "nav-bridges-description": "Web3 evolucionou nun ecosistema de cadeas de bloques primarios de capa 1 e solucións de escalabilidade de capa 2",
+ "nav-builders-home-description": "Un manual de construtores para Ethereum. De construtores para construtores.",
+ "nav-builders-home-label": "Inicio dos construtores",
+ "nav-contribute-description": "Se quere axudar, isto diralle como",
+ "nav-contribute-label": "Colaborar con ethereum.org",
+ "nav-dao-description": "Comunidades propiedade dos membros sen autoridade centralizada",
+ "nav-dapps-description": "Explore un rico ecosistema de aplicacións con Ethereum",
+ "nav-defi-description": "Unha alternativa aberta e global ó mercado financeiro tradicional",
+ "nav-desci-description": "Unha alternativa aberta e global ó sistema científico actual",
+ "nav-desoc-description": "Plataformas baseadas en cadeas de bloques para a interacción social e a creación de contido",
+ "nav-developers-docs": "Documentación para o desenvolvedor",
+ "nav-developers": "Programadores",
+ "nav-did-description": "Cree e sexa propietario dos seus identificadores descentralizados propios",
+ "nav-docs-description": "Documentación de axuda para entender e construír en Ethereum",
+ "nav-docs-design-description": "Descrición dos retos de deseño únicos de Web3, mellores prácticas e investigacións dos usuarios",
+ "nav-docs-design-label": "Elementos de deseño esenciais da experiencia de usuario e da IU",
+ "nav-docs-foundation-description": "Elementos esenciais para desenvolver en Ethereum",
+ "nav-docs-foundation-label": "Temas fundamentais",
+ "nav-docs-overview-description": "O lugar onde atopar documentación de programadores",
+ "nav-docs-stack-description": "Entender todos os detalles da pila de Ethereum",
+ "nav-docs-stack-label": "Stack de Ethereum",
+ "nav-eip-description": "Normas que especifican novas características ou procesos",
+ "nav-eip-label": "Propostas de mellora de Ethereum",
+ "nav-emerging-description": "Coñecer outros casos de uso máis recentes de Ethereum",
+ "nav-enterprise-description": "Aplicacións empresariais para Ethereum",
+ "nav-ethereum-org-description": "Este sitio web está impulsado pola comunidade: únase a nós e contribúa tamén",
+ "nav-ethereum-wallets-description": "Unha aplicación para interactuar coa sua conta de Ethereum",
+ "nav-events-description": "Descentralización e liberdade para que todo o mundo participe",
+ "nav-events-irl-description": "Cada mes teñen lugar grandes eventos de Ethereum en persoa e en liña",
+ "nav-events-label": "Comunidades e eventos",
+ "nav-events-online-description": "Centos de miles de entusiastas de Ethereum conciben estas comunidades en liña",
+ "nav-find-wallet-description": "As carteiras permítenlle usar criptomoedas",
+ "nav-find-wallet-label": "Elixa a súa carteira",
+ "nav-gas-fees-description": "Como se calculan as comisións por transacción das ETH",
+ "nav-get-eth-description": "Precisa ether (ETH) para empregar as aplicacións de Ethereum",
+ "nav-get-started-description": "Os seus primeiros pasos para usar Ethereum",
+ "nav-governance-description": "O proceso implicado na actualización do protocolo de Ethereum",
+ "nav-governance-label": "Gobernanza",
+ "nav-grants-description": "Unha lista seleccionada pola nosa comunidade de proxectos que ofrecen programas de financiamento mediante bolsas",
+ "nav-guide-create-account-description": "Calquera pode crear unha conta de Ethereum en calquera momento, gratuitamente, a través dunha aplicación de carteira",
+ "nav-guide-revoke-access-description": "Interactúe con contratos intelixentes e aplicacións no ecosistema de Ethereum de forma segura",
+ "nav-guide-revoke-access-label": "Como revocar o acceso a contratos intelixentes",
+ "nav-guide-use-wallet-description": "Domine o funcionamento de todas as funcións básicas da súa carteira",
+ "nav-guide-use-wallet-label": "Como usar unha carteira",
+ "nav-guides-description": "Guías prácticas paso a paso para axudalo a comezar",
+ "nav-guides-label": "Guías prácticas",
+ "nav-history-description": "Unha cronoloxía das actualizacións e bifurcacións principais",
+ "nav-history-label": "Historia técnica de Ethereum",
+ "nav-layer-2-description": "Transaccións máis rápidas e baratas para Ethereum",
+ "nav-learn-by-coding-description": "Ferramentas que lle permiten experimentar con Ethereum",
+ "nav-local-env-description": "Elixa e configure a súa pila de desenvolvemento de Ethereum",
+ "nav-mainnet-description": "As aplicacións de cadea de bloques para empresa pódense construír na rede principal e pública de Ethereum",
+ "nav-nft-description": "Unha forma de representar calquera cousa única como un activo baseado en Ethereum",
+ "nav-open-research-description": "Unha das principais fortalezas de Ethereum é a súa comunidade de investigación activa",
+ "nav-open-research-label": "Abrir investigación",
+ "nav-overview-description": "Recursos educativos de Ethereum",
+ "nav-participate-overview-description": "Resumen de como participar",
+ "nav-primary": "Primario",
+ "nav-quizzes-description": "Descubra en que medida entende Ethereum e as criptomoedas",
+ "nav-quizzes-label": "Poña a proba os seus coñecementos",
+ "nav-refi-description": "Un sistema económico alternativo baseado en principios rexenerativos",
+ "nav-research-description": "Procesos empregados para mellorar Ethereum",
+ "nav-research-label": "Investigación e desenvolvemento",
+ "nav-roadmap-description": "O principio para unha maior adaptabilidade, seguridade e sostibilidade para Ethereum",
+ "nav-roadmap-future-description": "Reforzar Ethereum como unha rede descentralizada e sólida",
+ "nav-roadmap-future-label": "Preparado para o futuro",
+ "nav-roadmap-label": "Folla de ruta",
+ "nav-roadmap-scaling-description": "Actualizacións de rede para reducir aínda máis os custos de transaccións e a velocidade",
+ "nav-roadmap-security-description": "Asegurarse de que Ethereum segue resistindo a todo tipo de ataques no futuro",
+ "nav-roadmap-security-label": "Seguridade mellorada",
+ "nav-roadmap-ux-description": "O uso de Ethereum debe simplificarse",
+ "nav-run-a-node-description": "Sexa completamente autónomo mentres axuda a protexer a rede",
+ "nav-security-description": "Aprenda as mellores prácticas con respecto ó uso de criptomoedas",
+ "nav-smart-contracts-description": "Os bloques de construción fundamentais do ecosistema de Ethereum",
+ "nav-stablecoins-description": "As moedas estables son os tokens de Ethereum deseñados para manterse a un valor fixo",
+ "nav-stake-description": "Gañe recompensas por protexer a Ethereum",
+ "nav-stake-label": "Participar",
+ "nav-staking-home-description": "Unha presentación das distintas opcións de participación",
+ "nav-staking-pool-description": "Participe e gañe recompensas con calquera cantidade de ETH ó unirse a outros",
+ "nav-staking-pool-label": "Participación agrupada",
+ "nav-staking-saas-label": "Participar cun servizo",
+ "nav-staking-solo-label": "Participación individual",
+ "nav-start-building-description": "Información útil para os que acaban de chegar",
+ "nav-translation-program-description": "Un esforzo conxunto para traducir ethereum.org a todos os idiomas",
+ "nav-tutorials-description": "Unha lista coidadosamente elaborada de tutoriais da comunidade",
+ "nav-use-cases-description": "Descubra diferentes ideas de uso de Ethereum",
+ "nav-what-is-ether-description": "A divisa das aplicacións de Ethereum",
+ "nav-what-is-ethereum-description": "Comprender que é o que fai que Ethereum sexa especial",
+ "nav-what-is-web3-label": "Que é Web3?",
+ "nav-what-is-web3-description": "Unha alternativa ós monopolios centralizados que establecen as normas",
+ "nav-whitepaper-description": "O documento técnico orixinal de Ethereum escrito por Vitalik Buterin en 2014",
+ "nav-zkp-description": "Unha forma de demostrar a validez dunha declaración sen ter que revelala",
+ "nft-page": "NFTs - Tokens non funxibles",
+ "nfts": "NFT",
"no": "Non",
"on-this-page": "Nesta páxina",
+ "open-research": "Abrir investigación",
+ "page-developers-aria-label": "Menú para programadores",
+ "page-index-meta-title": "Inicio",
"page-last-updated": "Última actualización da páxina",
+ "participate": "Participa",
+ "participate-menu": "Menú Participar",
+ "pbs": "Separación do creador de propostas",
+ "pools": "Participación agrupada",
"privacy-policy": "Política de privacidade",
"private-ethereum": "Ethereum privado",
+ "product-disclaimer": "Os produtos e servizos enuméranse para a comodidade da comunidade Ethereum. A inclusión dun produto ou servizo non implica a súa recomendación por parte do equipo do sitio web ethereum.org nin da Fundación Ethereum.",
+ "quizzes-title": "Centro de cuestionarios",
+ "quizzes": "Cuestionarios",
"refresh": "Por favor, actualice a páxina.",
+ "return-home": "volver ó inicio",
+ "roadmap": "Folla de ruta de Ethereum",
+ "research": "Investigación",
+ "research-menu": "Menú Investigación",
+ "resources": "Recursos de tradución",
"run-a-node": "Executar un nó",
+ "rollup-component-website": "Website",
+ "rollup-component-developer-docs": "Documentación para desenvolvedores",
+ "rollup-component-technology-and-risk-summary": "Resumo da tecnoloxía e riscos",
+ "scaling": "Dimensionamento",
+ "saas": "Participación como servizo",
"search": "Buscar",
+ "search-ethereum-org": "Buscar ethereum.org",
+ "secret-leader-election": "Elección de líder secreto",
"search-box-blank-state-text": "Buscar noutro sitio!",
"search-eth-address": "Isto parece un enderezo de Ethereum. Nós non fornecemos datos específicos para enderezos. Intente buscalo nun explorador de bloques como",
"search-no-results": "Sen resultados para a súa busca",
+ "security": "Seguridade",
+ "single-slot-finality": "Finalidade dunha soa rañura",
+ "statelessness": "Apátrida",
"see-contributors": "Ver colaboradores",
"set-up-local-env": "Configurar ambiente local",
- "sharding": "Cadeas de fragmentos",
"show-all": "Mostrar todo",
"show-less": "Mostrar menos",
"site-description": "Ethereum é unha plataforma global e descentralizada para diñeiro e novos tipos de aplicacións. En Ethereum, pode escribir código que controle o diñeiro e construír aplicacións accesibles desde calquera parte do mundo.",
- "site-title": "ethereum.org",
"skip-to-main-content": "Ir ao contido principal",
"smart-contracts": "Contratos intelixentes",
"stablecoins": "Stablecoins",
+ "stake-eth": "Facer stake de ETH",
"staking": "Staking",
+ "start-here": "Comezar aquí",
+ "solo": "Participación individual",
+ "support": "Soporte",
"terms-of-use": "Termos de uso",
"translation-banner-body-new": "Está a ver esta páxina en inglés porque aínda non a traducimos. Axúdenos a traducir este contido.",
"translation-banner-body-update": "Existe unha nova versión desta páxina, pero polo momento só existe en inglés. Axúdenos a traducir a versión máis recente.",
@@ -108,16 +298,25 @@
"translation-banner-button-translate-page": "Traducir páxina",
"translation-banner-title-new": "Axude a traducir esta páxina",
"translation-banner-title-update": "Axude a actualizar esta páxina",
+ "translation-banner-no-bugs-title": "Aquí non hai erros!",
+ "translation-banner-no-bugs-content": "Esta páxina non está a ser traducida. Deixamos esta páxina intencionalmente en inglés de momento.",
+ "translation-banner-no-bugs-dont-show-again": "Non amosar de novo",
+ "translation-program": "Programa de tradución",
+ "try-using-search": "Intente usar o buscador para atopar o que está a procurar ou",
"tutorials": "Titoriais",
+ "up": "Subir",
+ "use": "Uso",
"use-ethereum": "Usar Ethereum",
"use-ethereum-menu": "Usar o menú de Ethereum",
+ "use-menu": "Menú Uso",
+ "verkle-trees": "Árbores Verkle",
"wallets": "Carteiras",
+ "we-couldnt-find-that-page": "Non conseguimos atopar esta páxina",
+ "web3": "Que é Web3?",
"website-last-updated": "Última actualización da web",
"what-is-ether": "Que é o ether (ETH)?",
"what-is-ethereum": "Que é Ethereum?",
- "defi-page": "Finanzas descentralizadas (DeFi)",
- "dao-page": "Organizacións Autónomas Descentralizadas (DAO en inglés)",
- "nft-page": "Tokens non funxibles (NFTs)",
+ "withdrawals": "Retiradas de participación",
"yes": "Si",
- "page-index-meta-title": "Inicio"
+ "zero-knowledge-proofs": "Probas de coñecemento cero"
}
diff --git a/src/intl/gl/page-languages.json b/src/intl/gl/page-languages.json
index 1146b6c3a99..68e583c771a 100644
--- a/src/intl/gl/page-languages.json
+++ b/src/intl/gl/page-languages.json
@@ -1,29 +1,29 @@
{
"page-languages-h1": "Soporte de idiomas",
- "page-languages-interested": "Interesado en contribuír?",
- "page-languages-learn-more": "Saiba máis sobre noso Programa de tradución",
+ "page-languages-interested": "Interésalle contribuír?",
+ "page-languages-learn-more": "Obteña máis información sobre o noso Programa de tradución",
"page-languages-meta-desc": "Recursos para todos os idiomas aceptados en ethereum.org e maneiras de participar como tradutor.",
"page-languages-meta-title": "Traducións de idiomas de ethereum.org",
"page-languages-p1": "Ethereum é un proxecto global e é fundamental que o sitio ethereum.org sexa accesible para todos, independentemente da nacionalidade ou do idioma. A nosa comunidade está a traballar moito para facer isto realidade.",
"page-languages-translations-available": "ethereum.org está dispoñible nos seguintes idiomas",
- "page-languages-resources-paragraph": "Ademais de traducir contido de ethereum.org, tamén mantemos unha",
+ "page-languages-resources-paragraph": "Ademais de traducir o contido de ethereum.org, tamén temos unha",
"page-languages-resources-link": "lista coidadosamente elaborada de recursos de Ethereum en diversos idiomas",
"page-languages-want-more-header": "Quere ver ethereum.org noutro idioma?",
"page-languages-want-more-link": "Programa de tradución",
- "page-languages-want-more-paragraph": "Os tradutores do ethereum.org están sempre traducindo as páxinas para a maior cantidade de idiomas posibles. Para ver en que están a traballar agora ou inscribise para participar, lea sobre o noso",
+ "page-languages-want-more-paragraph": "Os tradutores do ethereum.org están sempre traducindo as páxinas para a maior cantidade de idiomas posibles. Para ver en que están a traballar agora ou inscribirse para participar, consulte",
"page-languages-filter-label": "Listaxe de filtrado",
"page-languages-filter-placeholder": "Escriba para filtrar",
"page-languages-browser-default": "Opcións predeterminadas do navegador",
"page-languages-translated": "traducido",
"page-languages-words": "palabras",
"page-languages-recruit-community": "Axúdenos a traducir ethereum.org.",
- "langauge-am": "Amharic",
+ "langauge-am": "Amhárico",
"language-ar": "Árabe",
"language-az": "Acerbaixano",
- "langauge-be": "Belarusian",
+ "langauge-be": "Belaruso",
"language-bg": "Búlgaro",
"language-bn": "Bengalí",
- "language-bs": "Bosnian",
+ "language-bs": "Bosníaco",
"language-ca": "Catalán",
"language-cs": "Checo",
"language-da": "Danés",
@@ -36,28 +36,28 @@
"language-fr": "Francés",
"language-gl": "Galego",
"language-gu": "Gujarati",
- "language-he": "Hebrew",
+ "language-he": "Hebreo",
"language-hi": "Hindi",
"language-hr": "Croata",
"language-hu": "Húngaro",
- "language-hy-am": "Armenian",
+ "language-hy-am": "Armenio",
"language-id": "Indonesio",
"language-ig": "Igbo",
"language-it": "Italiano",
"language-ja": "Xaponés",
"language-ka": "Xeorxiano",
- "language-kk": "Casaco",
+ "language-kk": "Kazakh",
"language-km": "Khmer",
"language-kn": "Kannada",
"language-ko": "Coreano",
"language-lt": "Lituano",
- "language-ml": "Malayalam",
+ "language-ml": "Malabar",
"language-mr": "Marathi",
"language-ms": "Malaio",
"language-nb": "Noruegués",
- "language-ne-np": "Nepali",
+ "language-ne-np": "Nepalés",
"language-nl": "Neerlandés",
- "language-pcm": "Nigerian Pidgin",
+ "language-pcm": "Pidgin nixeriano",
"language-fil": "Filipino",
"language-pl": "Polaco",
"language-pt": "Portugués",
@@ -69,13 +69,13 @@
"language-sl": "Esloveno",
"language-sr": "Serbio",
"language-sw": "Suahili",
- "language-ta": "Tamil",
+ "language-ta": "Támil",
"language-th": "Tailandés",
- "language-tk": "Turkmen",
+ "language-tk": "Turcomán",
"language-tr": "Turco",
"language-uk": "Ucraíno",
- "language-ur": "Urdu",
- "language-uz": "Uzbek",
+ "language-ur": "Urdú",
+ "language-uz": "Uzbeko",
"language-vi": "Vietnamita",
"language-zh": "Chinés simplificado",
"language-zh-tw": "Chinés tradicional"
diff --git a/src/intl/gu/common.json b/src/intl/gu/common.json
index 0d62461499d..f36e83f4519 100644
--- a/src/intl/gu/common.json
+++ b/src/intl/gu/common.json
@@ -1,32 +1,72 @@
{
"about-ethereum-org": "ethereum.org વિશે",
"about-us": "અમારા વિશે",
+ "adding-desci-projects": "Desci પ્રોજેક્ટ્સ ઉમેરી રહ્યા છીએ",
+ "adding-developer-tools": "વિકાસકર્તા સાધનો ઉમેરી રહ્યા છીએ",
+ "adding-exchanges": "એક્સચેન્જ ઉમેરી રહ્યા છીએ",
+ "adding-glossary-terms": "ગ્લોસરી શબ્દો ઉમેરી રહ્યા છીએ",
+ "adding-staking-products": "સ્ટેકિંગ પ્રોડક્ટ્સ ઉમેરી રહ્યા છીએ",
+ "adding-wallets": "વૉલેટ્સ ઉમેરી રહ્યા છીએ",
+ "account-abstraction": "ખાતાનો સાર",
+ "acknowledgements": "સ્વીકૃતિઓ",
"aria-toggle-search-button": "શોધ બટનને ટૉગલ કરો",
"aria-toggle-menu-button": "ટૉગલ મેનુ બટન",
"beacon-chain": "બીકન ચેન",
"bridges": "બ્લોકચેન પુલ",
+ "bug-bounty": "બગ બક્ષિસ",
+ "build": "બીલ્ડ",
+ "build-menu": "બિલ્ડ મેનુ",
+ "clear": "સાફ કરો",
"close": "બંધ",
"community": "સમુદાય",
"community-hub": "સમુદાય-હબ",
"community-menu": "સમુદાય-મેનુ",
"contact": "સંપર્ક",
+ "content-buckets": "સામગ્રી બકેટ્સ",
+ "content-resources": "સામગ્રી સંસાધનો",
+ "content-standardization": "સામગ્રી પ્રમાણીકરણ",
"contributing": "યોગદાન આપી રહ્યા છે",
"contributors": "યોગદાન આપનાર",
"contributors-thanks": "દરેક વ્યક્તિ જેણે આ પૃષ્ઠમાં યોગદાન આપ્યું છે - આભાર!",
"cookie-policy": "કૂકી નીતિ",
"copied": "નકલ કરી",
"copy": "નકલ કરો",
+ "danksharding": "ડેંકશાર્ડીંગ",
+ "dao-page": "DAOs - વિકેન્દ્રિત સ્વાયત્ત સંસ્થાઓ",
"dark-mode": "અંધારુ",
"data-provided-by": "માહિતીનું પ્રાપ્તિસ્થાન:",
- "decentralized-applications-dapps": "વિકેન્દ્રિત એપ્લિકેશન (dapps)",
- "decentralized-science": "વિકેન્દ્રિત વિજ્ઞાન (DeSci)",
+ "decentralized-applications-dapps": "Dapps - વિકેન્દ્રિત એપ્લિકેશન",
+ "decentralized-identity": "વિકેન્દ્રિત ઓળખ",
+ "decentralized-social-networks": "વિકેન્દ્રિત સામાજિક નેટવર્ક્સ",
+ "decentralized-science": "DeSci - વિકેન્દ્રિત વિજ્ઞાન",
+ "description": "nav આઇટમ માટે વર્ણન",
+ "defi-page": "DeFi - વિકેન્દ્રિત ફાઇનાન્સ",
+ "design": "ડિઝાઇન",
+ "design-principles": "ડિઝાઇન સિદ્ધાંતો",
"devcon": "ડેવકોન",
"developers": "વિકાસકર્તાઓ",
"developers-home": "વિકાસકર્તાઓનું ઘર",
"docs": "દસ્તાવેજ",
+ "docsearch-to-select": "પસંદ કરવા માટે",
+ "docsearch-to-navigate": "પહોંચવા માટે",
+ "docsearch-to-close": "બંધ કરવા માટે",
+ "docsearch-search-by": "દ્વારા શોધો",
+ "docsearch-start-recent-searches-title": "તાજેતરના",
+ "docsearch-start-no-recent-searches": "કોઈ તાજેતરની શોધ નથી",
+ "docsearch-start-save-recent-search": "આ શોધ સાચવો",
+ "docsearch-start-remove-recent-search": "ઇતિહાસમાંથી આ શોધ દૂર કરો",
+ "docsearch-start-favorite-searches": "મનપસંદ",
+ "docsearch-start-remove-favorite-search": "આ શોધને મનપસંદમાંથી દૂર કરો",
+ "docsearch-no-results-text": "માટે કોઈ પરિણામ નથી",
+ "docsearch-no-results-suggested-query": "શોધવાનો પ્રયાસ કરો",
+ "docsearch-no-results-missing": "માને છે કે આ ક્વેરી પરિણામ આપશે?",
+ "docsearch-no-results-missing-link": "અમને જણાવો.",
+ "docsearch-error-title": "પરિણામો મેળવવામાં અસમર્થ",
+ "docsearch-error-help": "તમે તમારું નેટવર્ક કનેક્શન તપાસવા ઇચ્છી શકો છો.",
"documentation": "દસ્તાવેજીકરણ",
+ "down": "નીચે",
"ecosystem": "ઇકોસિસ્ટમ",
- "edit-page": "પેજ સંપાદિત કરો",
+ "edit-page": "પાનું સંપાદિત કરો",
"ef-blog": "ઈથિરિયમ ફાઉન્ડેશન બ્લોગ",
"eips": "ઈથિરિયમ સુધારણા દરખાસ્તો",
"energy-consumption": "ઈથિરિયમ ઊર્જા વપરાશ",
@@ -37,7 +77,7 @@
"ethereum-bug-bounty": "ઈથિરિયમ બગ બાઉન્ટી પ્રોગ્રામ",
"consensus-when-shipping": "તે ક્યારે શિપિંગ કરે છે?",
"ethereum-upgrades": "ઈથિરિયમ સુધારાઓ",
- "ethereum-brand-assets": "ઈથિરિયમ બ્રાન્ડ અસ્કયામતો",
+ "ethereum-brand-assets": "Ethereum બ્રાન્ડ અસ્કયામતો",
"ethereum-online": "ઑનલાઇન સમુદાયો",
"ethereum-events": "ઈથિરિયમ ઘટનાઓ",
"ethereum-foundation": "ઈથિરિયમ ફાઉન્ડેશન",
@@ -45,9 +85,11 @@
"ethereum-glossary": "ઈથિરિયમ ગ્લોસરી",
"ethereum-governance": "ઈથિરિયમ શાસન",
"ethereum-logo": "ઈથિરિયમ લોગો",
+ "ethereum-roadmap": "ઈથિરિયમ રોડમેપ",
+ "ethereum-protocol": "ઇથેરિયમ પ્રોટોકોલ",
"ethereum-security": "ઈથિરિયમ સુરક્ષા અને કૌભાંડ નિવારણ",
"ethereum-support": "ઈથિરિયમ સપોર્ટ",
- "ethereum-wallets": "ઈથિરિયમ વૉલેટ",
+ "ethereum-wallets": "ઇથેરિયમ પાકીટ",
"ethereum-whitepaper": "ઈથિરિયમ વ્હાઇટપેપર",
"feedback-widget-prompt": "શું આ પેજ મદદરૂપ છે?",
"feedback-card-prompt-page": "શું આ પેજ મદદરૂપ થયું?",
@@ -55,19 +97,25 @@
"feedback-card-prompt-tutorial": "શું આ ટ્યુટોરીયલ મદદરૂપ હતું?",
"feedback-widget-thank-you-title": "તમારા પ્રતિભાવ બદલ આભાર!",
"feedback-widget-thank-you-subtitle": "થોડા પ્રશ્નોના જવાબ આપીને આ પેજને વધુ સારું બનાવો.",
- "feedback-widget-thank-you-subtitle-ext": "જો તમને મદદની જરૂર હોય, તો તમે અમારા Discord પર સમુદાયનો સંપર્ક કરી શકો છો.",
+ "feedback-widget-thank-you-subtitle-ext": "જો તમને મદદની જરૂર હોય, તો તમે અમારા વિરામ પર સમુદાયનો સંપર્ક કરી શકો છો.",
"feedback-widget-thank-you-timing": "2-3 મિનિટ",
"feedback-widget-thank-you-cta": "ટૂંકા સર્વેક્ષણ ખોલો",
"find-wallet": "વૉલેટ શોધો",
- "get-eth": "ETH મેળવો",
+ "future-proofing": "ફ્યુચર-પ્રૂફિંગ",
+ "get-eth": "મેળવો ETH",
"get-involved": "સામેલ કરો",
"get-started": "શરૂઆત કરો",
"grants": "અનુદાન",
"grant-programs": "ઇકોસિસ્ટમ ગ્રાન્ટ પ્રોગ્રામ્સ",
- "guides-and-resources": "સમુદાય માર્ગદર્શિકાઓ અને સંસાધનો",
+ "guides": "માર્ગદર્શિકાઓ",
+ "guides-hub": "કેવી રીતે માર્ગદર્શન આપવું",
"history-of-ethereum": "ઈથિરિયમનો ઇતિહાસ",
"home": "હોમ",
"how-ethereum-works": "ઈથિરિયમ કેવી રીતે કામ કરે છે",
+ "how-to-revoke-token-access": "તમારા ક્રિપ્ટો ફંડ્સમાં સ્માર્ટ કોન્ટ્રાક્ટ ઍક્સેસ કેવી રીતે રદ કરવો",
+ "how-to-swap-tokens": "ટોકન્સ કેવી રીતે સ્વેપ કરવા",
+ "how-to-use-a-bridge": "ટોકન્સને લેયર 2 પર કેવી રીતે બ્રિજ કરવા",
+ "how-to-use-a-wallet": "વૉલેટનો ઉપયોગ કેવી રીતે કરવો",
"image": "છબી",
"in-this-section": "આ વિભાગમાં",
"individuals": "વ્યક્તિઓ",
@@ -81,6 +129,7 @@
"layer-2": "સ્તર 2",
"learn": "શીખો",
"learn-by-coding": "કોડિંગ દ્વારા શીખો",
+ "learn-hub": "હબ શીખો",
"learn-menu": "મેનૂ શીખો",
"learn-more": "વધુ શીખો",
"less": "ઓછા",
@@ -89,42 +138,154 @@
"loading": "લોડ કરી રહ્યું છે...",
"loading-error": "લોડ કરવામાં ભૂલ.",
"loading-error-refresh": "ભૂલ, કૃપા કરીને રિફ્રેશ કરો.",
+ "loading-error-try-again-later": "ડેટા લોડ કરવામાં અસમર્થ. પછીથી ફરી પ્રયાસ કરો.",
"logo": "લોગો",
"mainnet-ethereum": "મેઇનનેટ ઈથિરિયમ",
+ "merge": "મર્જ કરો",
"more": "વધુ",
- "nav-developers": "વિકાસકર્તાઓ",
+ "nav-about-description": "ઈથિરિયમ સમુદાય માટે જાહેર, ઓપન સોર્સ પ્રોજેક્ટ",
+ "nav-advanced-description": "વધુ જટિલ વિષયો જાણો",
+ "nav-basics-description": "ઈથિરિયમની મૂળભૂત બાબતોને સમજો",
+ "nav-basics-label": "મૂળભૂત",
+ "nav-bridges-description": "Web3 પ્રાથમિક L1 બ્લોકચેન અને L2 સ્કેલિંગ સોલ્યુશન્સની ઇકોસિસ્ટમમાં વિકસિત થયું છે",
+ "nav-builders-home-description": "ઈથિરિયમ માટે બિલ્ડરનું મેન્યુઅલ—બિલ્ડર દ્વારા, બિલ્ડર માટે",
+ "nav-builders-home-label": "બિલ્ડરનું હોમ",
+ "nav-contribute-description": "જો તમે મદદ કરવા માંગતા હોવ, તો આ તમને માર્ગદર્શન આપશે",
+ "nav-contribute-label": "Ethereum.org માં યોગદાન આપવું",
+ "nav-dao-description": "કેન્દ્રિય સત્તા વગરના સભ્ય-માલિકીના સમુદાયો",
+ "nav-dapps-description": "ઈથિરિયમનો ઉપયોગ કરીને એપ્લિકેશન્સની સમૃદ્ધ ઇકોસિસ્ટમનું અન્વેષણ કરો",
+ "nav-defi-description": "પરંપરાગત નાણાંકીય બજારનો વૈશ્વિક, ખુલ્લો વિકલ્પ",
+ "nav-desci-description": "વર્તમાન વૈજ્ઞાનિક પ્રણાલીનો વૈશ્વિક, ખુલ્લો વિકલ્પ",
+ "nav-desoc-description": "સામાજિક ક્રિયાપ્રતિક્રિયા અને સામગ્રી નિર્માણ માટે બ્લોકચેન-આધારિત પ્લેટફોર્મ",
"nav-developers-docs": "વિકાસકર્તાઓ દસ્તાવેજો",
+ "nav-developers": "વિકાસકર્તાઓ",
+ "nav-did-description": "તમારા અનન્ય વિકેન્દ્રિત ઓળખકર્તાઓ રજૂ કરો અને માલિકી મેળવો",
+ "nav-docs-description": "ઈથિરિયમ સાથે સમજવા અને બિલ્ડ કરવામાં તમારી મદદ કરવા માટે દસ્તાવેજ",
+ "nav-docs-design-description": "અનન્ય web3 ડિઝાઇન પડકારો, શ્રેષ્ઠ પ્રયાસો અને વપરાશકર્તા સંશોધન આંતરદૃષ્ટિનું વર્ણન",
+ "nav-docs-design-label": "UX/UI ડિઝાઇનની મૂળભૂત બાબતો",
+ "nav-docs-foundation-description": "ઈથિરિયમ પર વિકસાવવા માટેના મુખ્ય મૂળભૂત સિદ્ધાંતો",
+ "nav-docs-overview-description": "વિકાસકર્તા દસ્તાવેજો માટે તમારું હોમ",
+ "nav-docs-stack-description": "ઈથિરિયમ સ્ટેકની તમામ વિગતો સમજો",
+ "nav-eip-description": "ધોરણો કે જે નવી સુવિધાઓ અથવા પ્રક્રિયાઓનો ઉલ્લેખ કરે છે",
+ "nav-eip-label": "EIP - ઈથિરિયમ સુધારણા દરખાસ્તો",
+ "nav-emerging-description": "ઈથિરિયમ માટે અન્ય નવા ઉપયોગના કેસો જાણો",
+ "nav-enterprise-description": "ઈથિરિયમ માટે વ્યવસાયિક એપ્લિકેશન્સ",
+ "nav-ethereum-org-description": "આ વેબસાઇટ સમુદાય આધારિત છે - અમારી સાથે જોડાઓ અને યોગદાન આપો",
+ "nav-ethereum-wallets-description": "તમારા ઈથિરિયમ એકાઉન્ટ સાથે ક્રિયાપ્રતિક્રિયા કરવા માટેની એપ્લિકેશન",
+ "nav-events-description": "વિકેન્દ્રીકરણ અને કોઈપણ માટે ભાગ લેવાની સ્વતંત્રતા",
+ "nav-events-irl-description": "દર મહિને મુખ્ય ઈથિરિયમ ઇવેન્ટ્સ વ્યક્તિગત અને ઑનલાઇન હોય છે",
+ "nav-events-label": "સમુદાયો અને ઘટનાઓ",
+ "nav-events-online-description": "આ ઑનલાઇન સમુદાયોમાં હજારો ઈથિરિયમ ઉત્સાહીઓ પિતા છે",
+ "nav-find-wallet-description": "વોલેટ્સ તમને ક્રિપ્ટોનો ઉપયોગ કરવા દે છે",
+ "nav-find-wallet-label": "તમારું વોલેટ પસંદ કરો",
+ "nav-gas-fees-description": "ETH ટ્રાન્ઝેક્શન ફીની ગણતરી કેવી રીતે કરવામાં આવે છે",
+ "nav-get-eth-description": "ઈથિરિયમ એપ્લિકેશનનો ઉપયોગ કરવા માટે તમને ઈથર (ETH) ની જરૂર છે",
+ "nav-get-started-description": "ઈથિરિયમનો ઉપયોગ કરવા માટેના તમારા પ્રથમ પગલાં",
+ "nav-governance-description": "ઈથિરિયમ પ્રોટોકોલને અપગ્રેડ કરવામાં સામેલ પ્રક્રિયા",
+ "nav-governance-label": "શાસન",
+ "nav-grants-description": "ગ્રાન્ટ ફંડિંગ પ્રોગ્રામ્સ પ્રદાન કરતા પ્રોજેક્ટ્સ પર અમારા સમુદાય દ્વારા ક્યુરેટેડ સૂચિ",
+ "nav-guide-create-account-description": "વોલેટ એપ્લિકેશન વડે કોઈપણ વ્યક્તિ કોઈપણ સમયે મફતમાં ઈથિરિયમ એકાઉન્ટ બનાવી શકે છે",
+ "nav-guide-revoke-access-description": "ઈથિરિયમ ઇકોસિસ્ટમમાં સ્માર્ટ કોન્ટ્રેક્ટ્સ અને એપ્લિકેશન્સ સાથે ક્રિયાપ્રતિક્રિયા કરતી વખતે સુરક્ષિત રહો",
+ "nav-guide-revoke-access-label": "સ્માર્ટ કોન્ટ્રેક્ટ એક્સેસ કેવી રીતે રદ કરવો",
+ "nav-guide-use-wallet-description": "વોલેટના તમામ મૂળભૂત કાર્યોને કેવી રીતે સંચાલિત કરવા તે જાણો",
+ "nav-guide-use-wallet-label": "વૉલેટનો ઉપયોગ કેવી રીતે કરવો",
+ "nav-guides-description": "તમને પ્રારંભ કરવામાં મદદ કરવા માટે પ્રાયોગિક પગલા-દર-પગલા માર્ગદર્શિકાઓ",
+ "nav-guides-label": "કેવી રીતે માર્ગદર્શન આપવું",
+ "nav-history-description": "તમામ મુખ્ય ફોર્ક અને અપડેટ્સની સમયરેખા",
+ "nav-history-label": "ઈથિરિયમનો ટેકનિકલ ઇતિહાસ",
+ "nav-layer-2-description": "ઈથિરિયમ માટે સસ્તા અને ઝડપી વ્યવહારો",
+ "nav-learn-by-coding-description": "સાધનો કે જે તમને ઈથિરિયમ સાથે પ્રયોગ કરવામાં મદદ કરે છે",
+ "nav-local-env-description": "તમારા ઈથિરિયમ વિકાસ સ્ટેકને પસંદ કરો અને સેટ કરો",
+ "nav-mainnet-description": "એન્ટરપ્રાઇઝ બ્લોકચેન એપ્લિકેશન જાહેર ઈથિરિયમ મેઇનેટ પર બનાવી શકાય છે",
+ "nav-nft-description": "ઈથિરિયમ-આધારિત સંપત્તિ તરીકે અનન્ય કંઈપણ રજૂ કરવાની રીત",
+ "nav-open-research-description": "ઈથિરિયમની પ્રાથમિક શક્તિઓમાંનો એક તેનો સક્રિય સંશોધન સમુદાય છે",
+ "nav-open-research-label": "ખુલ્લું સંશોધન",
+ "nav-overview-description": "બધી વસ્તુઓનું ઈથિરિયમ શિક્ષણ",
+ "nav-participate-overview-description": "કેવી રીતે ભાગ લેવો તેની ઝાંખી",
"nav-primary": "પ્રાથમિક",
+ "nav-quizzes-description": "તમે ઈથિરિયમ અને ક્રિપ્ટોકરન્સીને કેટલી સારી રીતે સમજો છો તે જાણો",
+ "nav-quizzes-label": "તમારા જ્ઞાનનું પરીક્ષણ કરો",
+ "nav-refi-description": "વૈકલ્પિક આર્થિક પ્રણાલી પુનર્જીવિત સિદ્ધાંતો પર બનેલી છે",
+ "nav-research-description": "ઈથિરિયમ સુધારવા માટે વપરાતી પ્રક્રિયાઓ",
+ "nav-research-label": "સંશોધન અને વિકાસ",
+ "nav-roadmap-description": "ઈથિરિયમ માટે વધુ સ્કેલેબિલીટી, સુરક્ષા અને ટકાઉપણાંનો માર્ગ",
+ "nav-roadmap-future-description": "મજબૂત અને વિકેન્દ્રિત નેટવર્ક તરીકે ઈથિરિયમને ઘન બનાવવું",
+ "nav-roadmap-future-label": "ફ્યુચર-પ્રૂફિંગ",
+ "nav-roadmap-label": "રોડમેપ",
+ "nav-roadmap-scaling-description": "વ્યવહારના ખર્ચ અને ઝડપને વધુ ઘટાડવા માટે નેટવર્ક અપડેટ્સ",
+ "nav-roadmap-security-description": "ભવિષ્યમાં ઈથિરિયમ તમામ પ્રકારના હુમલાઓ માટે સ્થિતિસ્થાપક રહે તેની ખાતરી કરવી",
+ "nav-roadmap-security-label": "સુધારેલ સુરક્ષા",
+ "nav-roadmap-ux-description": "સુધારેલ સુરક્ષા",
+ "nav-run-a-node-description": "નેટવર્કને સુરક્ષિત કરવામાં મદદ કરતી વખતે સંપૂર્ણ શ્રેષ્ઠ બનો",
+ "nav-security-description": "ક્રિપ્ટોકરન્સીનો ઉપયોગ કરતી વખતે શ્રેષ્ઠ પ્રણાલી જાણો",
+ "nav-smart-contracts-description": "ઈથિરિયમ ઇકોસિસ્ટમના મૂળભૂત બિલ્ડીંગ બ્લોક્સ",
+ "nav-stablecoins-description": "સ્ટેબલકોઇન્સ એ ઈથિરિયમ ટોકન્સ છે જે નિશ્ચિત મૂલ્ય પર રહેવા માટે રચાયેલ છે",
+ "nav-stake-description": "ઈથિરિયમને સુરક્ષિત કરવા માટે પુરસ્કારો કમાઓ",
+ "nav-stake-label": "સ્ટેક",
+ "nav-staking-home-description": "સ્ટેકિંગ માટેના વિવિધ વિકલ્પોનું પૂર્વાવલોકન",
+ "nav-staking-pool-description": "અન્ય લોકો સાથે જોડાઈને ETH ની કોઈપણ રકમ સાથે સ્ટેક કરો અને પુરસ્કારો કમાઓ",
+ "nav-staking-pool-label": "પૂલ સ્ટેકિંગ",
+ "nav-staking-saas-label": "સેવા સાથે સ્ટેકિંગ",
+ "nav-staking-solo-label": "સોલો સ્ટેકિંગ",
+ "nav-start-building-description": "નવા આવનારાઓ માટે ઉપયોગી માહિતી",
+ "nav-translation-program-description": "ethereum.org ને બધી ભાષાઓમાં અનુવાદિત કરવાનો સહયોગી પ્રયાસ",
+ "nav-tutorials-description": "સમુદાય ટ્યુટોરિયલ્સની ક્યૂરેટ કરેલ સૂચિ",
+ "nav-use-cases-description": "ઈથિરિયમના ઉપયોગ માટેના વિવિધ ખ્યાલો શોધો",
+ "nav-what-is-ether-description": "ઈથિરિયમ એપ્લિકેશન્સનું ચલણ",
+ "nav-what-is-ethereum-description": "ઈથિરિયમને શું ખાસ બનાવે છે તે સમજો",
+ "nav-what-is-web3-label": "વેબ3 શું છે?",
+ "nav-what-is-web3-description": "નિયમોનું નિર્દેશન કરતાં કેન્દ્રિય એકાધિકારનો વિકલ્પ",
+ "nav-whitepaper-description": "2014 માં વિટાલિક બ્યુટેરિન દ્વારા લખાયેલ મૂળ ઈથિરિયમ વ્હાઇટપેપર",
+ "nav-zkp-description": "પોતે જ નિવેદન જાહેર કર્યા વિના નિવેદનની માન્યતા સાબિત કરવાની રીત",
+ "nft-page": "NFTs - નોન-ફંગીબલ ટોકન્સ",
+ "nfts": "NFT",
"no": "ના",
"on-this-page": "આ પેજ પર",
"open-research": "ખુલ્લું સંશોધન",
+ "page-developers-aria-label": "ડેવેલોપર્સ મેનુ",
+ "page-index-meta-title": "હોમ",
"page-last-updated": "પેજ નું છેલ્લું અપડેટ",
- "privacy-policy": "ગોપનીયતા માટે નીતિ",
+ "participate-menu": "સહભાગી મેનૂ",
+ "pbs": "પ્રપોઝર-બિલ્ડરનું વિભાજન",
+ "pools": "પૂલ સ્ટેકિંગ",
+ "privacy-policy": "ગોપનીયતા નીતિ",
"private-ethereum": "ખાનગી ઈથિરિયમ",
+ "product-disclaimer": "ઉત્પાદનો અને સેવાઓ ઈથિરિયમ સમુદાય માટે સુવિધા તરીકે સૂચિબદ્ધ છે. ઉત્પાદન અથવા સેવાનો સમાવેશ ethereum.org વેબસાઇટ ટીમ અથવા ઈથિરિયમ ફાઉન્ડેશન તરફથી સમર્થનનું પ્રતિનિધિત્વ કરતું નથી.",
+ "quizzes-title": "ક્વિઝ હબ",
+ "quizzes": "ક્વિઝ",
"refresh": "કૃપા કરીને પેજ રિફ્રેશ કરો.",
"return-home": "હોમ પર પરત",
+ "roadmap": "ઈથિરિયમ રોડમેપ",
+ "research": "સંશોધન",
+ "research-menu": "સંશોધન મેનૂ",
+ "resources": "અનુવાદ સંસાધનો",
"run-a-node": "નોડ ચલાવો",
"rollup-component-website": "વેબસાઈટ",
"rollup-component-developer-docs": "વિકાસકર્તા દસ્તાવેજો",
"rollup-component-technology-and-risk-summary": "ટેકનોલોજી અને જોખમ સારાંશ",
+ "saas": "સેવા તરીકે સ્ટેકિંગ",
"search": "શોધો",
+ "search-ethereum-org": "ethereum.org શોધો",
+ "secret-leader-election": "ગુપ્ત આગેવાનની ચૂંટણી",
"search-box-blank-state-text": "દૂર શોધો!",
"search-eth-address": "આ ઈથિરિયમ સરનામા જેવું લાગે છે. અમે સરનામાં માટે વિશિષ્ટ ડેટા પ્રદાન કરતા નથી. બ્લોક એક્સપ્લોરર જેવા પર તેને શોધવાનો પ્રયાસ કરો",
"search-no-results": "તમારી શોધ માટે કોઈ પરિણામ નથી",
+ "security": "સુરક્ષા",
+ "single-slot-finality": "સિંગલ-સ્લોટ ફાઇનાલિટી",
+ "statelessness": "રાજ્યવિહીનતા",
"see-contributors": "યોગદાનકર્તાઓ જુઓ",
"set-up-local-env": "સ્થાનિક પર્યાવરણ સેટ કરો",
- "sharding": "શાર્ડિંગ",
+ "sharding": "શેરિંગ",
"show-all": "બધું બતાવો",
"show-less": "ઓછું બતાવો",
"site-description": "ઈથિરિયમ એ નાણાં અને નવા પ્રકારની એપ્લિકેશન માટે વૈશ્વિક, વિકેન્દ્રિત પ્લેટફોર્મ છે. ઈથિરિયમ પર, તમે કોડ લખી શકો છો જે પૈસાને નિયંત્રિત કરે છે અને વિશ્વમાં ગમે ત્યાં સુલભ એપ્લિકેશનો બનાવી શકે છે.",
- "site-title": "ethereum.org",
"skip-to-main-content": "મુખ્ય સામગ્રી પર જાઓ",
"smart-contracts": "સ્માર્ટ કરાર",
"stablecoins": "સ્ટેબલકોઇન્સ",
"staking": "સ્ટેકિંગ",
+ "start-here": "અહીંથી પ્રારંભ કરો",
"solo": "સોલો સ્ટેકિંગ",
- "saas": "સેવા તરીકે સ્ટેકિંગ",
- "pools": "પૂલ સ્ટેકિંગ",
+ "support": "આધાર",
"terms-of-use": "ઉપયોગના નિયમો",
"translation-banner-body-new": "તમે આ પેજ અંગ્રેજીમાં જોઈ રહ્યાં છો કારણ કે અમે હજી સુધી તેનો અનુવાદ કર્યો નથી. આ સામગ્રીનો અનુવાદ કરવામાં અમારી મદદ કરો.",
"translation-banner-body-update": "આ પેજનું નવું સંસ્કરણ છે પરંતુ તે હમણાં અંગ્રેજીમાં જ છે. નવીનતમ સંસ્કરણનો અનુવાદ કરવામાં અમારી મદદ કરો.",
@@ -135,22 +296,22 @@
"translation-banner-no-bugs-title": "અહીં કોઈ ભૂલો નથી!",
"translation-banner-no-bugs-content": "આ પેજનું ભાષાંતર કરવામાં આવી રહ્યું નથી. અમે ઇરાદાપૂર્વક આ પેજ અંગ્રેજીમાં હમણાં માટે છોડી દીધું છે.",
"translation-banner-no-bugs-dont-show-again": "ફરીથી બતાવશો નહીં",
+ "translation-program": "અનુવાદ કાર્યક્રમ",
"try-using-search": "તમે જે શોધી રહ્યાં છો તે શોધવા માટે શોધનો ઉપયોગ કરવાનો પ્રયાસ કરો અથવા",
"tutorials": "ટ્યુટોરિયલ્સ",
+ "up": "ઉપર",
+ "use": "ઉપયોગ",
"use-ethereum": "ઈથિરિયમનો ઉપયોગ કરો",
"use-ethereum-menu": "ઈથિરિયમ મેનુનો ઉપયોગ કરો",
- "wallets": "વૉલેટ",
+ "use-menu": "ઉપયોગ મેનૂ",
+ "verkle-trees": "વર્કલ ટ્રીસ",
+ "wallets": "પાકીટ",
"we-couldnt-find-that-page": "અમે તે પેજ શોધી શક્યાં નથી",
"web3": "વેબ3 શું છે?",
- "website-last-updated": "Website નું છેલ્લું અપડેટ",
+ "website-last-updated": "વેબસાઇટનું છેલ્લું અપડેટ",
"what-is-ether": "ઈથર (ETH) શું છે?",
- "what-is-ethereum": "ઈથિરિયમ શું છે?",
- "defi-page": "વિકેન્દ્રિત ફાઇનાન્સ (DeFi)",
- "dao-page": "વિકેન્દ્રિત સ્વાયત્ત સંસ્થાઓ (DAOs)",
- "nft-page": "નોન-ફંગીબલ ટોકન્સ (NFTs)",
- "decentralized-social-networks": "વિકેન્દ્રિત સામાજિક નેટવર્ક્સ",
- "decentralized-identity": "વિકેન્દ્રિત ઓળખ",
+ "what-is-ethereum": "શું છે ઇથિરિયમ?",
+ "withdrawals": "સ્ટેકીંગ ઉપાડ",
"yes": "હા",
- "zero-knowledge-proofs": "શૂન્ય-જાણકારી પુરાવાઓ",
- "page-index-meta-title": "હોમ"
+ "zero-knowledge-proofs": "શૂન્ય-જાણકારી પુરાવાઓ"
}
diff --git a/src/intl/gu/page-languages.json b/src/intl/gu/page-languages.json
index d9ea63528ca..5e73d602b9e 100644
--- a/src/intl/gu/page-languages.json
+++ b/src/intl/gu/page-languages.json
@@ -1,16 +1,29 @@
{
"page-languages-h1": "ભાષા સમર્થન",
+ "page-languages-interested": "યોગદાનમાં રુચિ ધરાવો છો?",
+ "page-languages-learn-more": "અમારા અનુવાદ પ્રોગ્રામ વિશે વધુ જાણો",
+ "page-languages-meta-desc": "ethereum.org ની તમામ સમર્થિત ભાષાઓના સંસાધનો અને અનુવાદક તરીકે સામેલ થવાની રીતો.",
+ "page-languages-meta-title": "ethereum.org ભાષા અનુવાદો",
+ "page-languages-p1": "ઈથિરિયમ એ વૈશ્વિક પ્રોજેક્ટ છે, અને તે મહત્વપૂર્ણ છે કે ethereum.org દરેક વ્યક્તિ માટે તેમની રાષ્ટ્રીયતા અથવા ભાષાને ધ્યાનમાં લીધા વિના સુલભ છે. અમારો સમુદાય આ વિઝનને વાસ્તવિક બનાવવા માટે સખત મહેનત કરી રહ્યો છે.",
+ "page-languages-translations-available": "ethereum.org નીચેની ભાષાઓમાં ઉપલબ્ધ છે",
+ "page-languages-resources-paragraph": "ethereum.org સામગ્રીનો અનુવાદ કરવા ઉપરાંત, અમે ... પણ જાળવીએ છીએ",
+ "page-languages-resources-link": "ઘણી ભાષાઓમાં ઈથિરિયમ સંસાધનોની ક્યુરેટેડ સૂચિ",
+ "page-languages-want-more-header": "ethereum.org ને અલગ ભાષામાં જોવા માંગો છો?",
"page-languages-want-more-link": "અનુવાદ કાર્યક્રમ",
+ "page-languages-want-more-paragraph": "ethereum.org અનુવાદકો હંમેશા શક્ય તેટલી ભાષાઓમાં પૃષ્ઠોનો અનુવાદ કરતા હોય છે. તેઓ અત્યારે શું કામ કરી રહ્યા છે તે જોવા માટે અથવા તેમની સાથે જોડાવા માટે સાઇન અપ કરવા માટે, અમારા ... વિશે વાંચો",
"page-languages-filter-label": "ફિલ્ટર યાદી",
"page-languages-filter-placeholder": "ફિલ્ટર કરવા માટે ટાઈપ કરો",
"page-languages-browser-default": "બ્રાઉઝર ડિફૉલ્ટ",
"page-languages-translated": "અનુવાદિત",
"page-languages-words": "શબ્દો",
"page-languages-recruit-community": "ethereum.org નો અનુવાદ કરવામાં અમારી મદદ કરો.",
+ "langauge-am": "અમ્હરીક",
"language-ar": "અરબી",
"language-az": "અઝરબૈજાની",
+ "langauge-be": "બેલારુસિયન",
"language-bg": "બલ્ગેરિયન",
"language-bn": "બંગાળી",
+ "language-bs": "બોસ્નિયન",
"language-ca": "કતલાન",
"language-cs": "ચેક",
"language-da": "ડેનિશ",
@@ -27,6 +40,7 @@
"language-hi": "હિન્દી",
"language-hr": "ક્રોએશિયન",
"language-hu": "હંગેરિયન",
+ "language-hy-am": "આરમેનીયન",
"language-id": "ઇન્ડોનેશિયન",
"language-ig": "ઇગ્બો",
"language-it": "ઇટાલિયન",
@@ -34,13 +48,16 @@
"language-ka": "જ્યોર્જિયન",
"language-kk": "કઝાક",
"language-km": "ખ્મેર",
+ "language-kn": "કન્નડ",
"language-ko": "કોરિયન",
"language-lt": "લિથુનિયન",
"language-ml": "મલયાલમ",
"language-mr": "મરાઠી",
"language-ms": "મલય",
"language-nb": "નોર્વેજીયન",
+ "language-ne-np": "નેપાળી",
"language-nl": "ડચ",
+ "language-pcm": "નાઇજિરિયન પિડજિન",
"language-fil": "ફિલિપિનો",
"language-pl": "પોલિશ",
"language-pt": "પોર્ટુગીઝ",
@@ -52,9 +69,12 @@
"language-sl": "સ્લોવેનિયન",
"language-sr": "સર્બિયન",
"language-sw": "સ્વાહિલી",
+ "language-ta": "તમિલ",
"language-th": "થાઈ",
+ "language-tk": "તુર્કમેન",
"language-tr": "ટર્કિશ",
"language-uk": "યુક્રેનિયન",
+ "language-ur": "ઉર્દુ",
"language-uz": "ઉઝબેક",
"language-vi": "વિયેતનામીસ",
"language-zh": "સરળીકૃત ચાઇનીઝ",
diff --git a/src/intl/he/common.json b/src/intl/he/common.json
index 14fd7ef65cf..6db1b768429 100644
--- a/src/intl/he/common.json
+++ b/src/intl/he/common.json
@@ -1,17 +1,30 @@
{
- "account-abstraction": "הפשטת חשבון",
"about-ethereum-org": "אודות ethereum.org",
"about-us": "אודותינו",
+ "adding-desci-projects": "הוספת פרויקטים Desci",
+ "adding-developer-tools": "הוספת כלי פיתוח",
+ "adding-exchanges": "הוספת בורסות",
+ "adding-glossary-terms": "הוספת מונחים למילון מונחים",
+ "adding-staking-products": "הוספת מוצרי סטייקינג",
+ "adding-wallets": "הוספת ארנקים",
+ "account-abstraction": "הפשטת חשבון",
+ "acknowledgements": "תודות",
"aria-toggle-search-button": "החלף את לחצן החיפוש",
"aria-toggle-menu-button": "החלף את לחצן התפריט",
"beacon-chain": "Beacon Chain",
"bridges": "גשרי בלוקצ'יין",
+ "bug-bounty": "תוכנת תמריצים לזיהוי שגיאות",
+ "build": "בנה",
+ "build-menu": "בנה תפריט",
"clear": "נקה",
"close": "סגור",
"community": "קהילה",
"community-hub": "בית הקהילה",
"community-menu": "הקהילה",
"contact": "צור קשר",
+ "content-buckets": "קטגוריות החומרים",
+ "content-resources": "משאבי תוכן",
+ "content-standardization": "סטנדרטיזציה של תוכן",
"contributing": "תורמים",
"contributors": "משתתפי הפרויקט",
"contributors-thanks": "לכל מי שתרם לדף זה - תודה!",
@@ -19,21 +32,45 @@
"copied": "מועתק",
"copy": "העתק",
"danksharding": "דנקסהארדינג",
+ "dao-page": "DAOs - ארגונים אוטונומיים מבוזרים",
"dark-mode": "כהה",
"data-provided-by": "מקור הנתונים:",
- "decentralized-applications-dapps": "יישומים מבוזרים (dapps)",
- "decentralized-science": "מדע מבוזר (DeSci)",
+ "decentralized-applications-dapps": "Dapps - יישומים מבוזרים",
+ "decentralized-identity": "זהות מבוזרת",
+ "decentralized-social-networks": "רשת חברתית מבוזרת",
+ "decentralized-science": "DeSci - מדע מבוזר",
+ "description": "תיאור פריט ניווט",
+ "defi-page": "DeFi - פיננסים מבוזרים",
+ "design": "עיצוב",
+ "design-principles": "עקרונות העיצוב",
"devcon": "Devcon",
"developers": "מפתחים",
"developers-home": "דף הבית של מפתחים",
- "docs": "מסמכים",
- "documentation": "דוקומנטציה",
+ "docs": "תיעוד",
+ "docsearch-to-select": "לבחור",
+ "docsearch-to-navigate": "לעבור",
+ "docsearch-to-close": "לסגור",
+ "docsearch-search-by": "חיפוש לפי",
+ "docsearch-start-recent-searches-title": "לאחרונה",
+ "docsearch-start-no-recent-searches": "לא נמצאו חיפושים אחרונים",
+ "docsearch-start-save-recent-search": "שמור את החיפוש הזה",
+ "docsearch-start-remove-recent-search": "מחק את החיפוש הזה מהיסטורית חיפושים",
+ "docsearch-start-favorite-searches": "מועדף",
+ "docsearch-start-remove-favorite-search": "מחק חיפוש זה מהחיפושים המעודפים",
+ "docsearch-no-results-text": "אין תוצאות עבור",
+ "docsearch-no-results-suggested-query": "תנסה לחפש",
+ "docsearch-no-results-missing": "האם אתה מאמין שהמשפט צריך להחזיר תשובות?",
+ "docsearch-no-results-missing-link": "תודיע לנו.",
+ "docsearch-error-title": "לא ניתן להשיג תוצאות",
+ "docsearch-error-help": "ייתכן שתרצה לבדוק את חיבור האינטרנט שלך.",
+ "documentation": "תיעוד",
+ "down": "מטה",
"ecosystem": "סביבת האקולוגיה",
- "edit-page": "ערוך עמוד",
+ "edit-page": "דף עריכה",
"ef-blog": "בלוג קרן אתריום",
"eips": "הצעות לשיפור אטריום",
"energy-consumption": "צריכת האנרגיה של אתריום",
- "enterprise": "יוזמה",
+ "enterprise": "עסק",
"enterprise-menu": "תפריט מיזם",
"esp": "תוכנית תמיכה מערכת אקולוגית ",
"eth-current-price": "מחיר ETH עכשווי (USD)",
@@ -48,9 +85,11 @@
"ethereum-glossary": "מילון מונחי אטריום",
"ethereum-governance": "הפיקוח של אתריום",
"ethereum-logo": "לוגו אטריום",
+ "ethereum-roadmap": "מפת הדרכים של אתריום",
+ "ethereum-protocol": "פרוטוקול אתריום",
"ethereum-security": "אבטחה של אתריום ומניעת הונאה",
"ethereum-support": "תמיכת אתריום",
- "ethereum-wallets": "ארנקי אטריום",
+ "ethereum-wallets": "ארנקי אתריום",
"ethereum-whitepaper": "דפי הסבר אטריום",
"feedback-widget-prompt": "האם הדף הזה מועיל?",
"feedback-card-prompt-page": "האם הדף הזה עזר לך?",
@@ -58,7 +97,7 @@
"feedback-card-prompt-tutorial": "האם המדריך הזה היה מועיל?",
"feedback-widget-thank-you-title": "תודה על המשוב שלך!",
"feedback-widget-thank-you-subtitle": "תעשה את הדף הזה אפילו יותר טוב אם תענה על כמה שאלות.",
- "feedback-widget-thank-you-subtitle-ext": "אם אתה צריך עזרה, אתה יכול ליצור איתנו קשר בDiscord.",
+ "feedback-widget-thank-you-subtitle-ext": "אם נדרשת לך לעזרה, ניתן לפנות לקהילה בDiscord שלנו.",
"feedback-widget-thank-you-timing": "2-3 דקות",
"feedback-widget-thank-you-cta": "פתח שאלון קצר",
"find-wallet": "محفظة",
@@ -68,20 +107,18 @@
"get-started": "התחל",
"grants": "מענקים",
"grant-programs": "תוכנית מענקים של המערכת האקולוגית",
- "guides-and-resources": "מדריכים ומשאבים של הקהילה",
"guides": "מדריכים",
- "guides-hub": "מרכז מדריכים",
+ "guides-hub": "מדריכים פרקטיים",
"history-of-ethereum": "היסטוריה של אתריום",
"home": "דף הבית",
"how-ethereum-works": "איך אתריום עובד",
- "how-to-create-an-ethereum-account": "איך \"לרשום\" חשבון אתריום",
"how-to-revoke-token-access": "איך לבטל גישה של חוזה חכם לכספי הקריפטו שלך",
"how-to-swap-tokens": "איך להחליף אסימונים",
"how-to-use-a-bridge": "איך לגשר אסימונים לשכבה 2",
"how-to-use-a-wallet": "איך להשתמש בארנק",
"image": "איור",
"in-this-section": "במדור זה",
- "individuals": "יחיד",
+ "individuals": "יחידים",
"jobs": "משרות",
"kraken-logo": "לוגו של קראקן",
"language-resources": "משאבי שפה",
@@ -90,8 +127,9 @@
"last-24-hrs": "24 השעות האחרונות",
"last-edit": "עריכה אחרונה",
"layer-2": "שכבה 2",
- "learn": "למדו",
+ "learn": "למד",
"learn-by-coding": "למדו דרך תכנות",
+ "learn-hub": "מרכז למידה",
"learn-menu": "תפריט למידה",
"learn-more": "למדו עוד",
"less": "פחות",
@@ -100,33 +138,140 @@
"loading": "טוען...",
"loading-error": "שגיאת טעינה.",
"loading-error-refresh": "שגיאה, נא לרענן את העמוד.",
+ "loading-error-try-again-later": "לא ניתן לטעון מידע. נא לנסות שוב.",
"logo": "לוגו",
"mainnet-ethereum": "אתריום ב-Mainnet",
+ "merge": "מיזוג",
"more": "יותר",
- "nav-developers": "מפתחים",
+ "nav-about-description": "פרויקט פומבי עם קוד פתוח לקהילת אתריום",
+ "nav-advanced-description": "עיין בנושאים מורכבים יותר",
+ "nav-advanced-label": "מתקדם",
+ "nav-basics-description": "תבין את היסודות של אתריום",
+ "nav-basics-label": "יסודות",
+ "nav-bridges-description": "Web3 התפתחה למערכת אקולוגית של בלוקצ'יין בשכבה 1 ופתרונות, שניתן לעשות להם סקיילינג, בשכבה 2",
+ "nav-builders-home-description": "מדריך בונה באתריום - שנכתב ע\"י בונים ולבונים",
+ "nav-builders-home-label": "בית הבונים",
+ "nav-contribute-description": "אם ברצונך לעזור, הוא ידריך אותך",
+ "nav-contribute-label": "תרומה ל-ethereum.org",
+ "nav-dao-description": "קהילות בבעלות חברי הקהילות ללא סמכות מרכזית",
+ "nav-dapps-description": "גלה מערכת אקולוגית עשירה של אפליקציות ע\"י שימוש באתריום",
+ "nav-defi-description": "חלופה גלובלית ופתוחה לשוק הפיננסי המסורתי",
+ "nav-desci-description": "חלופה גלובלית ופתוחה למערכת המדעית הנוכחית",
+ "nav-desoc-description": "פלטפורמות המבוססות על בלוקצ'יין לאינטראקציה חברתית ויצירת תוכן",
"nav-developers-docs": "מסמכי מפתחים",
+ "nav-developers": "מפתחים",
+ "nav-did-description": "הנפק את המזהים המבוזרים הייחודיים שלך ותהיה בעלים שלהם",
+ "nav-docs-description": "המסמכים לעזרתך כדי שתבין את אתריום ותבנה איתו",
+ "nav-docs-design-description": "תיאור האתגרים לעיצוב ייחודי ב-web3, שיטות עבודה הטובות ביותר, ותובנות במחקר של המשתמשים",
+ "nav-docs-design-label": "יסודות עיצוב UX/UI",
+ "nav-docs-foundation-description": "יסודות הליבה של פיתוח באתריום",
+ "nav-docs-overview-description": "הבית שלך למסמכי המפתח",
+ "nav-docs-stack-description": "תבין את כל הפרטים של אתריום",
+ "nav-eip-description": "התקנים המגדירים את התכונות או תהליכים החדשים",
+ "nav-eip-label": "EIP - הצעות לשיפור אתריום",
+ "nav-emerging-description": "למד על מקרי שימוש חדשים אחרים באתריום",
+ "nav-enterprise-description": "אפליקציות עסקיות לאתריום",
+ "nav-ethereum-org-description": "האתר מונע ע\"י קהילה - הצטרף אלינו ותרום גם כן",
+ "nav-ethereum-wallets-description": "האפליקציה כדי לתקשר עם חשבון האתריום שלך",
+ "nav-events-description": "ביזור וחופש להשתתף לכל אחד",
+ "nav-events-irl-description": "כל חודש ישנם אירועים גדולים הקשורים לאתריום אופליין ואונליין",
+ "nav-events-label": "קהילות ואירועים",
+ "nav-events-online-description": "מאות אלפי חובבי אתריום משתתפים בקהילות האלה אונליין",
+ "nav-find-wallet-description": "הארנקים מאפשרים להשתמש במטבעות קריפטו",
+ "nav-find-wallet-label": "בחר את הארנק שלך",
+ "nav-gas-fees-description": "איך מחושבות עמלות עבור עסקאות עם שימוש ב-ETH",
+ "nav-get-eth-description": "כדי להשתמש באפליקציות אתריום נדרש אתריום (ETH)",
+ "nav-get-started-description": "הצעדים הראשונים שלך לשימוש באתריום",
+ "nav-governance-description": "התהליך המעורב בעדכון פרוטוקול אתריום",
+ "nav-governance-label": "פיקוח",
+ "nav-grants-description": "רשימת הפרויקטים המפוקחים ע\"י הקהילה שלנו, אשר מספקים תוכניות מימון באמצעות מענקים כספיים",
+ "nav-guide-create-account-description": "כל אחד יכול ליצור חשבון אתריום בכל עת בחינם עם אפליקציית ארנק",
+ "nav-guide-revoke-access-description": "תישארו מאובטחים כאשר אתם מתקשרים עם חוזים חכמים ואפליקציות במערכת אקולוגית של אתריום",
+ "nav-guide-revoke-access-label": "איך לשחזר גישה לחוזה חכם",
+ "nav-guide-use-wallet-description": "למד איך להפעיל את כל הפונקציות הבסיסיות של ארנק",
+ "nav-guide-use-wallet-label": "איך להשתמש בארנק",
+ "nav-guides-description": "מדריכים מעשיים צעד אחר צעד שיעזרו לך להתחיל",
+ "nav-guides-label": "מדריכים שמסבירים איך לעבוד",
+ "nav-history-description": "ציר הזמן של כל הפורקים ועדכונים העיקריים",
+ "nav-history-label": "היסטוריה טכנית של אתריום",
+ "nav-layer-2-description": "עסקאות זולות ומהירות יותר עם אתריום",
+ "nav-learn-by-coding-description": "הכלים שעוזרים לך לנסות את אתריום",
+ "nav-local-env-description": "בחר והגדר את ערכת פיתוח של אתרריום שלך",
+ "nav-mainnet-description": "אפליקציות עסקיות לעבודה עם בלוקצ'יינים ניתן לבנות ברשת Mainnet הציבורית של אתריום",
+ "nav-nft-description": "דרך להציג משהו ייחודי בתור נכס המבוסס על אתריום",
+ "nav-open-research-description": "אחד היתרונות העיקריים של אתריום הוא הקהילה המחקרית הפעילה",
+ "nav-open-research-label": "פתח מחקר",
+ "nav-overview-description": "כל הדברים בהדרכה בנושא אתריום",
+ "nav-participate-overview-description": "סקירה כללית על אופן השתתפות",
"nav-primary": "עיקרי",
+ "nav-quizzes-description": "גלה עד כמה אתה מבין אתריום ומטבעות קריפטו",
+ "nav-quizzes-label": "בדוק את הידע שלך",
+ "nav-refi-description": "מערכת כלכלית חילופית הנבנית על עקרונות התחדשות",
+ "nav-research-description": "התהליכים שהיו בשימוש כדי לשפר אתריום",
+ "nav-research-label": "מחקר ופיתוח",
+ "nav-roadmap-description": "הדרך לסילומיות, בטיחות וקיימות של אתריום",
+ "nav-roadmap-future-description": "חיזוק אתריום כרשת חזקה ומבוזרת",
+ "nav-roadmap-future-label": "הגהה בעתיד",
+ "nav-roadmap-label": "מפת דרך",
+ "nav-roadmap-scaling-description": "עדכוני רשת להנמיך עוד יותר את העלויות ולהגביר מהירות",
+ "nav-roadmap-security-description": "כדי לוודא שאתריום יישאר עמיד בפני כל מיני התקפות בעתיד",
+ "nav-roadmap-security-label": "בטיחות משופרת",
+ "nav-roadmap-ux-description": "יש לפשט את השימוש באתריום",
+ "nav-run-a-node-description": "תהפוך להיות ריבון מוחלט בזמן ביצוע עזרה לאבטחת הרשת",
+ "nav-security-description": "למד שיטות עבודה הכי טובות בעת שימוש במטבעות קריפטו",
+ "nav-smart-contracts-description": "אבני הבניין הבסיסיות של המערכת האקולוגית של אתריום",
+ "nav-stablecoins-description": "מטבעות יציבים הם אסימוני אתריום שנועדו להישאר בעלי ערך קבוע",
+ "nav-stake-description": "הרוויחו פרסים על הבטחת אתריום",
+ "nav-stake-label": "הסכום הנעול",
+ "nav-staking-home-description": "סקירה כללית של אפשרויות שונות עבור סטייקינג",
+ "nav-staking-pool-description": "בצע סטייקינג ותרוויח פרסים עם כל סכום של אתריום ע\"י הצטרפות לאחרים",
+ "nav-staking-pool-label": "הפקדה מאוחדת",
+ "nav-staking-saas-label": "ביצוע סטייקינג באמצעות שירות",
+ "nav-staking-solo-label": "הפקד לבד",
+ "nav-start-building-description": "מידע שימושי למתחילים",
+ "nav-translation-program-description": "מאמץ משותף לתרגם את ethereum.org לכל השפות",
+ "nav-tutorials-description": "הרשימה המפוקחת של מדריכי הקהילה",
+ "nav-use-cases-description": "גלה רעיונות שימוש באתריום שונים",
+ "nav-what-is-ether-description": "מטבע אפליקציות אתריום",
+ "nav-what-is-ethereum-description": "תבין מה עושה אתריום מיוחד",
+ "nav-what-is-web3-label": "מה זה Web3?",
+ "nav-what-is-web3-description": "חלופה למונופולים העיקריים המכתיבים את הכללים",
+ "nav-whitepaper-description": "הספר הלבן המקורי של אתריום שנכתב על ידי ויטליק בוטרין בשנת 2014",
+ "nav-zkp-description": "דרך להוכיח את התקפות של אמירה מבלי לחשוף את ההצהרה עצמה",
+ "nft-page": "NFTs - אסימונים לא ניתנים לשינוי",
"nfts": "NFTs",
"no": "לא",
"on-this-page": "בדף זה",
"open-research": "פתח מחקר",
+ "page-developers-aria-label": "תפריט המפתחים",
+ "page-index-meta-title": "דף הבית",
"page-last-updated": "הדף עודכן לאחרונה",
+ "participate-menu": "תפריט השתתפות",
"pbs": "הפרדה של המציע-בונה",
+ "pools": "הפקדה מאוחדת",
"privacy-policy": "מדיניות הפרטיות",
"private-ethereum": "אתריום פרטי",
+ "product-disclaimer": "המוצרים והשירותים מפורטים כאפשרויות עבור קהילת אתריום. הכללת מוצר או שירות אינה מייצגת אישור של צוות האתר ethereum.org, או של קרן אתריום.",
+ "quizzes-title": "צומת חידונים",
+ "quizzes": "חידונים",
"refresh": "נא לרענן את העמוד.",
"return-home": "חזרה לדף הבית",
"roadmap": "מפת הדרכים של אתריום",
+ "research": "מחקר",
+ "research-menu": "תפריט מחקר",
+ "resources": "משאבי תרגום",
"run-a-node": "הפעל נוד",
"rollup-component-website": "אתר אינטרנט",
"rollup-component-developer-docs": "מדריכי מפתחים",
"rollup-component-technology-and-risk-summary": "תקציר טכנולוגיה וסיכונים",
- "scaling": "Scaling",
+ "saas": "הפקדה בתור שירות",
"search": "חיפוש",
+ "search-ethereum-org": "חפש ב-ethereum.org",
"secret-leader-election": "בחירת מנהיג בחשאי",
"search-box-blank-state-text": "חפש!",
"search-eth-address": "זה נראה כמו כתובת אתריום. אנחנו לא מספקים מידע על כתובות מסיומות. נסה לחפש בחוקרי בלוק",
"search-no-results": "לא נמצאו תוצאות לחיפוש",
+ "security": "אבטחה",
"single-slot-finality": "סופיות של משבצת אחת",
"statelessness": "ללא מדינה",
"see-contributors": "צפה בכל התורמים",
@@ -135,15 +280,14 @@
"show-all": "הצג הכל",
"show-less": "הצג פחות",
"site-description": "אתריום הוא פלטפורמה גלובלית מבוזרת לכסף ולסוגים חדשים של יישומים. על גבי הפלטפורמה של אתריום ניתן לכתוב קוד ששולט על כסף ולבנות יישומים נגישים בכל מקום בעולם.",
- "site-title": "ethereum.org",
"skip-to-main-content": "דלג לתוכן העיקרי",
"smart-contracts": "חוזים חכמים",
"stablecoins": "מטבעות יציבים",
+ "stake-eth": "ETH להימור",
"staking": "מפקיד",
+ "start-here": "התחל כאן",
"solo": "הפקד לבד",
- "saas": "הפקדה בתור שירות",
- "pools": "הפקדה מאוחדת",
- "withdrawals": "משיכות הימור",
+ "support": "תמיכה",
"terms-of-use": "תנאי שימוש",
"translation-banner-body-new": "אתה רואה עמוד זה באנגית מכיוון שעוד לא תירגמנו אותו. עזור לנו לתרגם את התוכן הזה.",
"translation-banner-body-update": "יש גרסה חדשה יותר של הדף הזה אבל הוא כרגע זמין רק באנגלית. עזור לנו לתרגם את הגרסה העדכנית.",
@@ -154,26 +298,23 @@
"translation-banner-no-bugs-title": "אין כאן באגים!",
"translation-banner-no-bugs-content": "הדף הזה לא הולך להיות מתורגם כעת. השארנו דף זה באנגלית בכוונה לעת עתה.",
"translation-banner-no-bugs-dont-show-again": "אל תציג שוב",
+ "translation-program": "תוכנית תרגום",
"try-using-search": "נסה להשתמש בחיפוש כדאי למצוא מה שאתה מחפש",
"tutorials": "הדרכות",
+ "up": "למעלה",
+ "use": "השתמש",
"use-ethereum": "השתמשו באתריום",
"use-ethereum-menu": "השתמש באתריום",
- "user-experience": "User experience",
+ "use-menu": "תפריט שימוש",
"verkle-trees": "עצי ורקל",
"wallets": "ארנקים",
"we-couldnt-find-that-page": "לא הצלחנו למצוא עמוד זה",
"web3": "מה זה Web3?",
"web3-title": "Web3",
"website-last-updated": "אתר האינטרנט עודכן לאחרונה",
- "what-is-ether": "מה זה אתר (ETH)?",
+ "what-is-ether": "מה זה אית'ר (ETH)?",
"what-is-ethereum": "מה זה אתריום?",
- "defi-page": "פיננסים מבוזרים (DeFi)",
- "dao-page": "ארגונים אוטונומיים מבוזרים (DAOs)",
- "nft-page": "אסימונים לא ניתנים לשינוי (NFTs)",
- "decentralized-social-networks": "רשת חברתית מבוזרת",
- "decentralized-identity": "זהות מבוזרת",
+ "withdrawals": "משיכות הימור",
"yes": "כן",
- "zero-knowledge-proofs": "הוכחות אפס ידע",
- "ethereum-roadmap": "מפת הדרכים של אתריום",
- "page-index-meta-title": "דף הבית"
+ "zero-knowledge-proofs": "הוכחות אפס ידע"
}
diff --git a/src/intl/he/page-languages.json b/src/intl/he/page-languages.json
index eaceba5be92..06f6157421c 100644
--- a/src/intl/he/page-languages.json
+++ b/src/intl/he/page-languages.json
@@ -1,26 +1,29 @@
{
- "page-languages-h1": "תמיכת שפה",
- "page-languages-interested": "Interested in contributing?",
- "page-languages-learn-more": "Learn more about our Translation Program",
- "page-languages-meta-desc": "Resources to all supported languages of ethereum.org and ways to get involved as a translator.",
- "page-languages-meta-title": "ethereum.org Language Translations",
- "page-languages-p1": "Ethereum is a global project, and it is critical that ethereum.org is accessible to everyone, regardless of their nationality or language. Our community has been working hard to make this vision a reality.",
- "page-languages-translations-available": "ethereum.org is available in the following languages",
- "page-languages-resources-paragraph": "In addition to translating ethereum.org content, we also maintain a",
- "page-languages-resources-link": "curated list of Ethereum resources in many languages",
- "page-languages-want-more-header": "Want to see ethereum.org in a different language?",
- "page-languages-want-more-link": "קבוצת תירגום",
- "page-languages-want-more-paragraph": "ethereum.org translators are always translating pages in as many languages as possible. To see what they're working on right now or to sign up to join them, read about our",
+ "page-languages-h1": "תמיכה בשפות",
+ "page-languages-interested": "האם ברצונך לתרום?",
+ "page-languages-learn-more": "למדו יותר על תוכנית התרגומים שלנו",
+ "page-languages-meta-desc": "המשאבים לכל השפות הנתמכות ב-ethereum.org והדרכים להתקבל בתור מתרגם.",
+ "page-languages-meta-title": "תרגום ethereum.org לשפות שונות",
+ "page-languages-p1": "אתריום הוא פרויקט גלובלי, וזה קריטי ש-ethereum.org יהיה נגיש לכולם, ללא קשר ללאום או שפה שלו. הקהילה שלנו עבדה קשה כדי להפוך את החזון הזה למציאות.",
+ "page-languages-translations-available": "ethereum.org זמין בשפות הבאות",
+ "page-languages-resources-paragraph": "בנוסף לתרגום התוכן של ethereum.org אנחנו תומכים גם",
+ "page-languages-resources-link": "ברשימת משאבים נבחרים של אתריום בשפות רבות",
+ "page-languages-want-more-header": "האם ברצונך לראות את האתר ethereum.org בשפה אחרת?",
+ "page-languages-want-more-link": "תוכנית תרגום",
+ "page-languages-want-more-paragraph": "המתרגמים של ethereum.org מתרגמים עמודים לככל שיותר שפות. כדי לראות על מה הם עובדים כעת או כדי להירשם כדי להצטרף אליהם, קראו על",
"page-languages-filter-label": "רשימת סינון",
"page-languages-filter-placeholder": "הקלד כדי לסנן",
"page-languages-browser-default": "דפדפן ברירת מחדל",
"page-languages-translated": "תורגם",
"page-languages-words": "מילים",
"page-languages-recruit-community": "עזור לנו לתרגם ethereum.org.",
+ "langauge-am": "אמהרית",
"language-ar": "ערבית",
"language-az": "אזרביג'אנית",
+ "langauge-be": "בלארוסית",
"language-bg": "בולגרית",
"language-bn": "בנגאלית",
+ "language-bs": "בוסנית",
"language-ca": "קטלאנית",
"language-cs": "צ'כית",
"language-da": "דנית",
@@ -29,28 +32,33 @@
"language-en": "אנגלית",
"language-es": "ספרדית",
"language-fa": "פרסית",
- "language-fi": "פִינִית",
+ "language-fi": "פינית",
"language-fr": "צרפתית",
"language-gl": "גליסית",
- "language-gu": "גוג'ראטי",
+ "language-gu": "גוג'ראטית",
+ "language-he": "עברית",
"language-hi": "הינדית",
"language-hr": "קרואטית",
"language-hu": "הונגרית",
+ "language-hy-am": "ארמנית",
"language-id": "אינדונזית",
"language-ig": "איגבו",
"language-it": "איטלקית",
"language-ja": "יפנית",
"language-ka": "גאורגית",
"language-kk": "קזחית",
- "language-km": "ח׳מר",
+ "language-km": "חמרית",
+ "language-kn": "קנאדה",
"language-ko": "קוריאנית",
"language-lt": "ליטאית",
"language-ml": "מלאיאלאם",
"language-mr": "מראטהית",
"language-ms": "מלאית",
"language-nb": "נורווגית",
+ "language-ne-np": "נפאלית",
"language-nl": "הולנדית",
- "language-fil": "פיליפיני",
+ "language-pcm": "פידג'ין ניגרי",
+ "language-fil": "פיליפינית",
"language-pl": "פולנית",
"language-pt": "פורטוגזית",
"language-pt-br": "פורטוגזית (ברזילאית)",
@@ -60,11 +68,13 @@
"language-sk": "סלובקית",
"language-sl": "סלובנית",
"language-sr": "סרבית",
- "language-sw": "סווהילי",
+ "language-sw": "סוואהילי",
"language-ta": "טמילית",
"language-th": "תאית",
+ "language-tk": "טורקמנית",
"language-tr": "טורקית",
"language-uk": "אוקראינית",
+ "language-ur": "אורדו",
"language-uz": "אוזבקית",
"language-vi": "וייטנאמית",
"language-zh": "סינית מופשטת",
diff --git a/src/intl/hi/common.json b/src/intl/hi/common.json
index 380a1a58ae8..5c55c097c0c 100644
--- a/src/intl/hi/common.json
+++ b/src/intl/hi/common.json
@@ -1,17 +1,29 @@
{
- "account-abstraction": "खाता ऐब्स्ट्रैक्शन",
"about-ethereum-org": "ethereum.org के बारे में",
"about-us": "हमारे बारे में",
+ "adding-desci-projects": "Desci प्रोजेक्ट जोड़ना",
+ "adding-developer-tools": "डेवलपर टूल जोड़ना",
+ "adding-exchanges": "एक्सचेंज जोड़ना",
+ "adding-glossary-terms": "ग्लॉसरी के शब्द जोड़ना",
+ "adding-staking-products": "स्टेकिंग प्रोडक्ट जोड़ना",
+ "adding-wallets": "वॉलेट जोड़ना",
+ "account-abstraction": "खाता ऐब्स्ट्रैक्शन",
+ "acknowledgements": "पावतियाँ",
"aria-toggle-search-button": "खोज बटन टॉगल करें",
"aria-toggle-menu-button": "मेनू बटन टॉगल करें",
"beacon-chain": "बीकन चेन",
"bridges": "ब्लॉकचेन ब्रिज",
+ "bug-bounty": "बग बाउंटी",
+ "build": "बिल्ड",
+ "build-menu": "बिल्ड मेनू",
"clear": "स्पष्ट करें",
"close": "बंद करे",
"community": "कम्युनिटी",
"community-hub": "सामुदायिक फ़ोरम",
"community-menu": "कम्युनिटी मेनू",
"contact": "संपर्क करें",
+ "content-buckets": "कंटेंट बकेट",
+ "content-resources": "कंटेंट संसाधन",
"content-standardization": "अंतर्वस्तु मानकीकरण",
"contributing": "सहयोग करना",
"contributors": "योगदानकर्ता",
@@ -20,14 +32,17 @@
"copied": "कॉपी किया गया",
"copy": "कॉपी करें",
"danksharding": "डैंकशार्डिंग",
- "dao-page": "विकेन्द्रीकृत स्वायत्त संगठन (DAO)",
+ "dao-page": "DAO - विकेन्द्रीकृत स्वायत्त संगठन",
"dark-mode": "गहरा रंग",
"data-provided-by": "डाटा सोर्स:",
- "decentralized-applications-dapps": "विकेंद्रीकृत अनुप्रयोग (dapps)",
+ "decentralized-applications-dapps": "Dapps - विकेंद्रीकृत अनुप्रयोग",
"decentralized-identity": "विकेन्द्रीकृत पहचान",
"decentralized-social-networks": "विकेन्द्रीकृत सोशल नेटवर्क",
- "decentralized-science": "विकेंद्रित विज्ञान (DeSci)",
- "defi-page": "विकेन्द्रीकृत वित्त (DeFi)",
+ "decentralized-science": "DeSci - विकेंद्रित विज्ञान",
+ "description": "नेविगेशन आइटम का ब्यौरा",
+ "defi-page": "DeFi - विकेन्द्रीकृत वित्त",
+ "design": "डिज़ाइन",
+ "design-principles": "डिज़ाइन सिद्धांत",
"devcon": "डेवकॉन",
"developers": "डेवलपर",
"developers-home": "डेवलपर के लिए मुखपृष्ठ",
@@ -59,11 +74,11 @@
"enterprise-menu": "एंटरप्राइज़ मेनू",
"esp": "इकोसिस्टम सहायता कार्यक्रम",
"eth-current-price": "वर्तमान ETH मूल्य (USD)",
- "ethereum-basics": "Ethereum की मूल बातें",
+ "ethereum-basics": "इथेरियम की मूल बातें",
"ethereum-bug-bounty": "इथेरियम बग बाउंटी कार्यक्रम",
"consensus-when-shipping": "यह कब शिप हो रहा है?",
"ethereum-upgrades": "एथेरियम के अपग्रेड",
- "ethereum-brand-assets": "इथेरियम ब्रांड संपत्ति",
+ "ethereum-brand-assets": "इथेरियम ब्रांड की संपत्ति",
"ethereum-online": "ऑनलाइन समुदाय",
"ethereum-events": "एथेरियम इवेंट्स",
"ethereum-foundation": "Ethereum फाउंडेशन",
@@ -75,7 +90,7 @@
"ethereum-protocol": "इथेरियम प्रोटोकॉल",
"ethereum-security": "Ethereum सुरक्षा और धोखाधड़ी से रोकथाम",
"ethereum-support": "एथेरियम सपोर्ट",
- "ethereum-wallets": "Ethereum वॉलेट",
+ "ethereum-wallets": "इथेरियम वॉलेट",
"ethereum-whitepaper": "Ethereum व्हाइटपेपर",
"feedback-widget-prompt": "क्या यह पृष्ठ सहायक है?",
"feedback-card-prompt-page": "क्या यह पेज सहायक था?",
@@ -83,7 +98,7 @@
"feedback-card-prompt-tutorial": "क्या यह ट्यूटोरियल सहायक था?",
"feedback-widget-thank-you-title": "आपकी प्रतिक्रिया के लिए धन्यवाद!",
"feedback-widget-thank-you-subtitle": "कुछ सवालों के जवाब देकर इस पेज को और बेहतर बनाएं।",
- "feedback-widget-thank-you-subtitle-ext": "अगर आपको मदद चाहिए, तो आप हमारे Discord पर समुदाय से संपर्क कर सकते हैं।",
+ "feedback-widget-thank-you-subtitle-ext": "अगर आपको मदद चाहिए तो आप हमारे Discord पर कम्युनिटी से संपर्क कर सकते हैं।",
"feedback-widget-thank-you-timing": "2–3 मिनट",
"feedback-widget-thank-you-cta": "लघु सर्वेक्षण खोलें",
"find-wallet": "वॉलेट खोजें",
@@ -94,11 +109,11 @@
"grants": "अनुदान",
"grant-programs": "इकोसिस्टम ग्रांट प्रोग्राम",
"guides": "मार्गदर्शक",
- "guides-hub": "मार्गदर्शक केंद्र",
+ "guides-hub": "कैसे-करें मार्गदर्शिकाएं",
"history-of-ethereum": "Ethereum का इतिहास",
"home": "मुखपृष्ठ",
"how-ethereum-works": "Ethereum कैसे काम करता है",
- "how-to-register-an-ethereum-account": "एथेरियम खाते को \"पंजीकृत\" कैसे करें",
+ "how-to-create-an-ethereum-account": "इथेरियम खाते को कैसे \"बनाएं\"",
"how-to-revoke-token-access": "अपने क्रिप्टो कोष के लिए स्मार्ट अनुबंध के प्रवेश को कैसे रद्द करें",
"how-to-swap-tokens": "टोकन कैसे स्वैप करें",
"how-to-use-a-bridge": "टोकन को दूसरी परत से कैसे जोड़े",
@@ -116,7 +131,7 @@
"layer-2": "परत 2",
"learn": "सीखें",
"learn-by-coding": "कोडिंग द्वारा सीखें",
- "learn-hub": "लर्न केंद्र",
+ "learn-hub": "लर्न हब",
"learn-menu": "सीखने का मेनू",
"learn-more": "अधिक जानें",
"less": "कम",
@@ -128,11 +143,113 @@
"loading-error-try-again-later": "डेटा लोड नहीं किया जा सका। बाद में फिर से कोशिश करें।",
"logo": "लोगो",
"mainnet-ethereum": "Ethereum का मुख्य नेटवर्क",
+ "merge": "मर्ज करें",
"more": "अधिक",
- "nav-developers": "डिवेलपर्स",
+ "nav-about-description": "एथेरियम कम्युनिटी के लिए एक पब्लिक, ओपन-सोर्स प्रोजेक्ट",
+ "nav-advanced-description": "ज़्यादा जटिल विषयों को जानें",
+ "nav-advanced-label": "उन्नत",
+ "nav-basics-description": "एथेरियम की बुनियादी बातों को समझें",
+ "nav-basics-label": "बुनियादी बातें",
+ "nav-bridges-description": "Web3 विकसित होकर प्राइमरी L1 ब्लॉकचेन और L2 स्केलिंग सॉल्यूशन का एक इकोसिस्टम बन गया हैं",
+ "nav-builders-home-description": "एथेरियम का एक बिल्डर्स मेनू—बिल्डरों द्वारा, बिल्डरों के लिए",
+ "nav-builders-home-label": "बिल्डर्स होम",
+ "nav-contribute-description": "अगर आप मदद करना चाहते हैं, तो यह आपको गाइड करेगा",
+ "nav-contribute-label": "Ethereum.org में योगदान",
+ "nav-dao-description": "केंद्रीकृत प्राधिकरण के बिना सदस्य के स्वामित्व वाली कम्युनिटी",
+ "nav-dapps-description": "एथेरियम का इस्तेमाल करके ऐप्स के एक रिच इकोसिस्टम को एक्सप्लोर करें",
+ "nav-defi-description": "परंपरागत वित्तीय बाज़ार का एक वैश्विक, खुला विकल्प",
+ "nav-desci-description": "मौजूदा वैज्ञानिक प्रणाली का एक वैश्विक, खुला विकल्प",
+ "nav-desoc-description": "सामाजिक संपर्क और सामग्री निर्माण के लिए ब्लॉकचेन-आधारित प्लेटफ़ॉर्म",
"nav-developers-docs": "डिवेलपर्स डॉक्यूमेंट",
+ "nav-developers": "डेवलपर",
+ "nav-did-description": "अपने अद्वितीय विकेन्द्रीकृत पहचानकर्ता जारी करें और उनके मालिक बनें",
+ "nav-docs-description": "एथेरियम को समझने और बनाने में आपकी मदद करने वाले दस्तावेज़",
+ "nav-docs-design-description": "अनोखे web3 डिज़ाइन से जुड़ी चुनौतियों, सबसे अच्छे तरीकों और यूज़र रिसर्च इनसाइट का ब्यौरा",
+ "nav-docs-design-label": "UX/UI डिज़ाइन की बुनियादी बातें",
+ "nav-docs-foundation-description": "एथेरियम पर विकसित करने की मुख्य बुनियादी बातें",
+ "nav-docs-foundation-label": "मूलभूत विषय",
+ "nav-docs-overview-description": "डिवेलपर से जुड़े दस्तावेज़ों के लिए आपका घर",
+ "nav-docs-stack-description": "एथेरियम स्टैक का सारा विवरण समझें",
+ "nav-docs-stack-label": "इथेरियम स्टैक",
+ "nav-eip-description": "नए फ़ीचर और प्रोसेस के बारे में बताने वाले मानक",
+ "nav-eip-label": "EIP - एथेरियम सुधार प्रस्ताव",
+ "nav-emerging-description": "एथेरियम के दूसरे नए उपयोग से जुड़े मामलों के बारे में जानें",
+ "nav-emerging-label": "उभरते उपयोग के मामले",
+ "nav-enterprise-description": "एथेरियम के लिए बिज़नेस एप्लिकेशन",
+ "nav-ethereum-org-description": "यह वेबसाइट कम्युनिटी से चलती है—हमसे जुड़ें और योगदान भी दें",
+ "nav-ethereum-wallets-description": "आपके एथेरियम खाते के साथ इंटरैक्ट करने वाला ऐप",
+ "nav-events-description": "विकेंद्रीकरण और किसी के लिए भी भाग लेने की आज़ादी",
+ "nav-events-irl-description": "हर महीने व्यक्तिगत और ऑनलाइन बड़े एथेरियम इवेंट्स होते हैं",
+ "nav-events-label": "कम्युनिटी और इवेंट्स",
+ "nav-events-online-description": "एथरियम को लेकर उत्साह रखने वाले सैकड़ों-हजारों उत्साही पिता शामिल हैं",
+ "nav-find-wallet-description": "वॉलेट आपको क्रिप्टो का इस्तेमाल करने देते हैं",
+ "nav-find-wallet-label": "अपना वॉलेट चुनें",
+ "nav-gas-fees-description": "ETH लेनदेन शुल्क की गणना कैसे की जाती है",
+ "nav-get-eth-description": "एथेरियम एप्लिकेशन का इस्तेमाल करने के लिए आपको एथर (ETH) की ज़रूरत होती है",
+ "nav-get-started-description": "एथेरियम का इस्तेमाल करने के लिए आपके पहले कदम",
+ "nav-governance-description": "इस प्रोसेस में एथेरियम प्रोटोकॉल को अपग्रेड करना शामिल है",
+ "nav-governance-label": "गवर्नेंस",
+ "nav-grants-description": "ग्रांट फ़ंडिंग प्रोग्राम उपलब्ध कराने वाले प्रोजेक्ट पर हमारी कम्युनिटी द्वारा क्यूरेट की गई लिस्ट",
+ "nav-guide-create-account-description": "कोई भी व्यक्ति किसी भी समय, किसी वॉलेट ऐप की मदद से एथेरियम खाता मुफ़्त में बना सकता है",
+ "nav-guide-create-account-label": "इथेरियम खाते को कैसे बनाएं",
+ "nav-guide-revoke-access-description": "एथेरियम इकोसिस्टम में स्मार्ट अनुबंधों और एप्लिकेशन के साथ इंटरैक्ट करते समय सुरक्षित रहें",
+ "nav-guide-revoke-access-label": "स्मार्ट अनुबंध का एक्सेस निरस्त कैसे करें",
+ "nav-guide-use-wallet-description": "किसी वॉलेट के सभी बुनियादी फ़ंक्शन के काम करने का तरीका जानें",
+ "nav-guide-use-wallet-label": "वॉलेट का उपयोग कैसे करें",
+ "nav-guides-description": "शुरुआत करने में आपकी मदद के लिए व्यावहारिक चरण-दर-चरण गाइड",
+ "nav-guides-label": "कैसे-करें गाइड",
+ "nav-history-description": "सभी बड़े फ़ोर्क और अपडेट की टाइमलाइन",
+ "nav-history-label": "एथेरियम का तकनीकी इतिहास",
+ "nav-layer-2-description": "एथेरियम के लिए सस्ते और तेज़ लेनदेन",
+ "nav-learn-by-coding-description": "एथेरियम के साथ प्रयोग करने में आपकी मदद करने वाले उपकरण",
+ "nav-local-env-description": "अपना एथेरियम डेवलपमेंट स्टैक चुनें और सेट अप करें",
+ "nav-mainnet-description": "एंटरप्राइज़ ब्लॉकचेन एप्लिकेशन पब्लिक एथेरियम मेननेट पर बनाए जा सकते हैं",
+ "nav-nft-description": "किसी भी अनोखी चीज़ को एथेरियम-आधारित एसेट के तौर पर पेश करने का तरीका",
+ "nav-open-research-description": "एथेरियम की प्रमुख खूबियों में से एक है इसकी एक्टिव रिसर्च कम्युनिटी",
+ "nav-open-research-label": "शोध खोलें",
+ "nav-overview-description": "एथेरियम से जुड़ी शिक्षा के बारे में सबकुछ",
+ "nav-overview-label": "अवलोकन",
+ "nav-participate-overview-description": "भाग लेने के तरीके के बारे में खास जानकारी",
"nav-primary": "प्राथमिक",
- "nft-page": "नॉन-फंजिबल टोकन (NFT)",
+ "nav-private-description": "निजी उद्यम एथेरियम के लिए विकासकर्ता संसाधन",
+ "nav-quizzes-description": "पता करें कि आप एथेरियम और क्रिप्टोकरेंसी को कितनी अच्छी तरह समझते हैं",
+ "nav-quizzes-label": "अपनी जानकारी को परखें",
+ "nav-refi-description": "रिजेनेरेटिव प्रिंसिपल्स पर बना एक वैकल्पिक इकोनॉमिक सिस्टम",
+ "nav-research-description": "एथेरियम को बेहतर बनाने के लिए इस्तेमाल की जाने वाली प्रोसेस",
+ "nav-research-label": "रिसर्च और डेवलपमेंट",
+ "nav-roadmap-description": "एथेरियम के लिए ज़्यादा स्केलेबिलिटी, सुरक्षा और स्थिरता का रास्ता",
+ "nav-roadmap-future-description": "एथेरियम को एक तेज़ और विकेंद्रीकृत नेटवर्क की तरह मज़बूत बनाना",
+ "nav-roadmap-future-label": "फ़्यूचर-प्रूफ़िंग",
+ "nav-roadmap-label": "रोडमैप",
+ "nav-roadmap-scaling-description": "लेनदेन के खर्चों और गति को और भी कम करने के लिए नेटवर्क से जुड़े अपडेट",
+ "nav-roadmap-security-description": "यह पक्का करना कि एथेरियम भविष्य में सभी तरह के हमलों को लेकर लचीला बना रहे",
+ "nav-roadmap-security-label": "बेहतर सुरक्षा",
+ "nav-roadmap-ux-description": "एथेरियम के इस्तेमाल को आसान बनाने की ज़रूरत हैं",
+ "nav-run-a-node-description": "नेटवर्क को सुरक्षित करने में मदद करते समय पूरी तरह से आत्मनिर्भर बनना",
+ "nav-security-description": "क्रिप्टोकरेंसी का इस्तेमाल करते समय सबसे अच्छे तरीकों को जानना",
+ "nav-smart-contracts-description": "एथेरियम इकोसिस्टम के बुनियादी बिल्डिंग ब्लॉक",
+ "nav-stablecoins-description": "स्टेबलकॉइन एक तय कीमत पर बने रहने के लिए डिज़ाइन किए गए एथेरियम टोकन हैं",
+ "nav-stake-description": "एथेरियम को सुरक्षित करने के लिए रिवॉर्ड जीतें",
+ "nav-stake-label": "स्टेक",
+ "nav-staking-home-description": "स्टेकिंग के अलग-अलग विकल्पों के बारे में खास जानकारी",
+ "nav-staking-home-label": "स्टेकिंग होम",
+ "nav-staking-pool-description": "दूसरों के साथ जुड़कर स्टेक करें और ETH की कितनी भी राशि के रिवॉर्ड जीतें",
+ "nav-staking-pool-label": "संयोजित स्टेकिंग",
+ "nav-staking-saas-description": "तीसरे पक्ष के नोड ऑपरेटर आपके सत्यापनकर्ता क्लाइंट के संचालन को संभालते हैं",
+ "nav-staking-saas-label": "किसी सेवा के साथ स्टेक करना",
+ "nav-staking-solo-description": "होम हार्डवेयर चलाएं और व्यक्तिगत रूप से इथेरियम नेटवर्क की सुरक्षा और विकेंद्रीकरण में जोड़ें",
+ "nav-staking-solo-label": "एकल स्टेकिंग",
+ "nav-start-building-description": "नए लोगों के लिए उपयोगी जानकारी",
+ "nav-translation-program-description": "Ethereum.org का सभी भाषाओं में अनुवाद करने की एक सहयोगी कोशिश",
+ "nav-tutorials-description": "कम्युनिटी ट्यूटोरियल की क्यूरेट की गई लिस्ट",
+ "nav-use-cases-description": "एथेरियम के इस्तेमाल के अलग-अलग तरीके जानें",
+ "nav-what-is-ether-description": "एथेरियम ऐप्स की करेंसी",
+ "nav-what-is-ethereum-description": "समझें कि एथेरियम को क्या चीज़ खास बनाती हैं",
+ "nav-what-is-web3-label": "Web3 क्या है?",
+ "nav-what-is-web3-description": "नियमों को निर्धारित करने वाले केंद्रीकृत एकाधिकार का एक विकल्प",
+ "nav-whitepaper-description": "विटालिक बूटरिन द्वारा 2014 में लिखा गया ओरिजनल एथेरियम व्हाइट पेपर",
+ "nav-zkp-description": "किसी कथन का खुलासा किए बिना उस कथन की वैधता साबित करने का एक तरीका",
+ "nft-page": "NFT - नॉन-फंजिबल टोकन",
"nfts": "NFTs",
"no": "नहीं",
"on-this-page": "इस पेज पर",
@@ -140,6 +257,8 @@
"page-developers-aria-label": "डेवलपर के मेन्यू",
"page-index-meta-title": "मुखपृष्ठ",
"page-last-updated": "पृष्ठ अंतिम बार अपडेट किया गया",
+ "participate": "भाग लें",
+ "participate-menu": "भाग लेने का मेनू",
"pbs": "प्रस्तावक-निर्माणकर्ता पृथक्करण",
"pools": "संयोजित स्टेकिंग",
"privacy-policy": "गोपनीयता नीति",
@@ -150,9 +269,11 @@
"refresh": "कृपया पेज को रिफ्रेश करें।",
"return-home": "होम पेज पर लौटें",
"roadmap": "एथेरियम दिशानिर्देश",
+ "research": "रिसर्च",
+ "research-menu": "रिसर्च मेनू",
"resources": "अनुवाद के संसाधन",
- "regenerative-finance": "रीजेनेरेटिव फाइनेंस (ReFi)",
- "run-a-node": "नोड चलाएँ",
+ "regenerative-finance": "ReFi - रीजेनेरेटिव फाइनेंस",
+ "run-a-node": "नोड चलाएं",
"rollup-component-website": "वेबसाइट",
"rollup-component-developer-docs": "डिवेलपर डॉक्यूमेंट",
"rollup-component-technology-and-risk-summary": "टेक्नोलॉजी और जोखिम का सारांश",
@@ -164,6 +285,7 @@
"search-box-blank-state-text": "खोज करें!",
"search-eth-address": "यह Ethereum पते की तरह दिखता है। हम पते के लिए विशिष्ट डेटा प्रदान नहीं करते हैं। ब्लॉक एक्सप्लोरर पर खोज करने का प्रयास करें, जैसे",
"search-no-results": "आपकी खोज का कोई परिणाम नहीं है",
+ "security": "सुरक्षा",
"single-slot-finality": "सिंगल-स्लॉट अन्तिम स्थिति",
"statelessness": "स्तिथि हीनता",
"see-contributors": "योगदानकर्ताओं को देखें",
@@ -175,12 +297,12 @@
"site-title": "ethereum.org",
"skip-to-main-content": "मुख्य सामग्री पर जाएँ",
"smart-contracts": "स्मार्ट अनुबंध",
- "stablecoins": "स्टेबलकॉइन",
+ "stablecoins": "स्थिर कॉइन",
"stake-eth": "स्टेक ETH",
"staking": "स्टेकिंग",
"start-here": "यहाँ से शुरू करें",
- "style-guide": "Style guide",
"solo": "एकल स्टेकिंग",
+ "support": "सपोर्ट",
"terms-of-use": "उपयोग की शर्तें",
"translation-banner-body-new": "आप इस पृष्ठ को अंग्रेज़ी में देख रहे हैं क्योंकि हमने अभी तक इसका अनुवाद नहीं किया है। इस सामग्री का अनुवाद करने में हमारी सहायता करें।",
"translation-banner-body-update": "इस पृष्ठ का एक नया संस्करण है लेकिन अभी यह केवल अंग्रेजी में है। नवीनतम संस्करण का अनुवाद करने में हमारी सहायता करें।",
@@ -191,20 +313,22 @@
"translation-banner-no-bugs-title": "इसमें कोई बग नहीं है!",
"translation-banner-no-bugs-content": "इस पेज का अनुवाद नहीं किया जा रहा है। हमने इस पेज को जानबूझकर अंग्रेज़ी में छोड़ा है।",
"translation-banner-no-bugs-dont-show-again": "फिर से न दिखाएँ",
+ "translation-program": "अनुवाद कार्यक्रम",
"try-using-search": "आप जो चीज़ ढूँढ रहे हैं, उसके लिए खोज का उपयोग करके देखें या",
"tutorials": "ट्यूटोरियल",
"up": "ऊपर",
+ "use": "इस्तेमाल",
"use-ethereum": "Ethereum का प्रयोग करें",
"use-ethereum-menu": "Ethereum मेनू का प्रयोग करें",
- "user-experience": "User का अनुभव",
+ "use-menu": "मेनू का इस्तेमाल करें",
+ "user-experience": "यूज़र का अनुभव",
"verkle-trees": "वर्कल ट्री",
"wallets": "वॉलेट",
"we-couldnt-find-that-page": "हमें यह पेज नहीं मिल सका",
"web3": "Web3 क्या है?",
- "web3-title": "Web3",
"website-last-updated": "वेबसाइट अंतिम बार अपडेट की गई",
"what-is-ether": "ईथर (ETH) क्या है?",
- "what-is-ethereum": "Ethereum क्या है?",
+ "what-is-ethereum": "इथेरियम क्या है?",
"withdrawals": "स्टेकिंग निकालना",
"yes": "हाँ",
"zero-knowledge-proofs": "शून्य-ज्ञान प्रमाण"
diff --git a/src/intl/hi/page-languages.json b/src/intl/hi/page-languages.json
index bfda746884b..666c24a6dfe 100644
--- a/src/intl/hi/page-languages.json
+++ b/src/intl/hi/page-languages.json
@@ -17,11 +17,13 @@
"page-languages-translated": "अनुवाद किया गया",
"page-languages-words": "शब्द",
"page-languages-recruit-community": "Ethereum.org का अनुवाद करने में हमारी मदद करें.",
- "langauge-am": "Amharic",
+ "langauge-am": "अम्हारिक",
"language-ar": "अरबी",
"language-az": "अज़रबैजानी",
+ "langauge-be": "बेलारूसी",
"language-bg": "बुल्गेरियाई",
"language-bn": "बंगाली",
+ "language-bs": "बोस्नियाई",
"language-ca": "कातालान",
"language-cs": "चेक",
"language-da": "डैनिश",
@@ -38,6 +40,7 @@
"language-hi": "हिंदी",
"language-hr": "क्रोएशियाई",
"language-hu": "हंगेरियाई",
+ "language-hy-am": "आर्मेनियाई",
"language-id": "इन्डोनेशियाई",
"language-ig": "इग्बो",
"language-it": "इटैलियन",
@@ -45,12 +48,14 @@
"language-ka": "जॉर्जियन",
"language-kk": "कजाख",
"language-km": "खमेर",
+ "language-kn": "कन्नड़",
"language-ko": "कोरियाई",
"language-lt": "लिथुआनियाई",
"language-ml": "मलयालम",
"language-mr": "मराठी",
"language-ms": "मलय",
"language-nb": "नॉर्वेजियाई",
+ "language-ne-np": "नेपाली",
"language-nl": "डच",
"language-pcm": "नाइजीरियाई पिजिन",
"language-fil": "फिलिपिनो",
@@ -66,6 +71,7 @@
"language-sw": "स्वाहिली",
"language-ta": "तमिल",
"language-th": "थाई",
+ "language-tk": "तुर्कमेन",
"language-tr": "तुर्की",
"language-uk": "यूक्रेनियाई",
"language-ur": "उर्दू",
diff --git a/src/intl/hi/page-wallets-find-wallet.json b/src/intl/hi/page-wallets-find-wallet.json
index 504fe3e0d6c..03de878e452 100644
--- a/src/intl/hi/page-wallets-find-wallet.json
+++ b/src/intl/hi/page-wallets-find-wallet.json
@@ -7,7 +7,6 @@
"page-find-wallet-meta-title": "एक इथेरियम वॉलेट ढूंढें",
"page-find-wallet-title": "वॉलेट खोजें",
"page-find-wallet-try-removing": "एक या दो सुविधा हटाने की कोशिश करें",
- "page-find-wallet-choose-to-compare": "तुलना करने के लिए चुनें",
"page-stake-eth": "स्टेक ETH",
"page-find-wallet-open-source": "Open source",
"page-find-wallet-open-source-desc": "ओपन-सोर्स सॉफ़्टवेयर किसी भी व्यक्ति को एप्लिकेशन की अखंडता और सुरक्षा की जांच करने की अनुमति देता है",
@@ -16,8 +15,6 @@
"page-find-wallet-non-custodial-desc": "वे वॉलेट जो आपकी निजी कुंजियों को नियंत्रित नहीं करते हैं",
"page-find-wallet-hardware-wallet-support": "हार्डवेयर वॉलेट सपोर्ट",
"page-find-wallet-hardware-wallet-support-desc": "वे वॉलेट जो बेहतर सुरक्षा के लिए हार्डवेयर वॉलेट से कनेक्ट हो सकते हैं",
- "page-find-wallet-walletconnect": "WalletConnect",
- "page-find-wallet-walletconnect-desc": "वे वॉलेट जो dapps से कनेक्ट करने के लिए WalletConnect का सपोर्ट करते हैं",
"page-find-wallet-rpc-importing": "RPC आयात",
"page-find-wallet-rpc-importing-desc": "वे वॉलेट जिनमें विभिन्न नोड या नेटवर्क से कनेक्ट होने के लिए कस्टम RPC एंडप्वॉइंट का इस्तेमाल किया जा सकता है",
"page-find-wallet-nft-support": "NFT सपोर्ट",
@@ -36,8 +33,6 @@
"page-find-wallet-ens-support-desc": "जो वॉलेट ईथेरियम नेम सर्विस (ENS) को सपोर्ट करते हैं",
"page-find-wallet-token-importing": "टोकन इंपोर्ट करना",
"page-find-wallet-token-importing-desc": "वॉलेट में इस्तेमाल के लिए किसी भी ERC-20 टोकन को इंपोर्ट करें",
- "page-find-wallet-fee-optimization": "फ़ीस ऑप्टिमाइज़ेशन",
- "page-find-wallet-fee-optimization-desc": "बेहतर गैस शुल्क के लिए टाइप 2 की लेन-देनों को सपोर्ट करती हो और अब तक बची गैस के लिए शुल्क की वापसी करें",
"page-find-wallet-buy-crypto": "क्रिप्टो खरीदें",
"page-find-wallet-buy-crypto-desc": "वॉलेट में सीधे फ़िएट से क्रिप्टो खरीदें \n *नोट: क्रिप्टो खरीदना क्षेत्र-विशिष्ट हो सकता है",
"page-find-wallet-sell-for-fiat": "फ़िएट के बदले में बेचें",
@@ -46,7 +41,6 @@
"page-find-wallet-multisig-desc": "जिन वॉलेट से लेन-देन को ऑथोराइज़ करने के लिए एक से ज़्यादा हस्ताक्षरों की ज़रूरत होती है",
"page-find-wallet-social-recovery": "सामाजिक पुनर्प्राप्ति",
"page-find-wallet-social-recovery-desc": "जिन वॉलेट से संरक्षक स्मार्ट कॉन्ट्रैक्ट वॉलेट के लिए हस्ताक्षर कुंजी को बदल सकते हैं",
- "page-find-wallet-token-support": "टोकन सपोर्ट",
"page-find-wallet-features": "विशेषताएँ",
"page-find-wallet-security": "सुरक्षा",
"page-find-wallet-smart-contract": "Smart contract",
@@ -63,7 +57,6 @@
"page-find-wallet-chromium": "Chromium",
"page-find-wallet-firefox": "Firefox",
"page-find-wallet-hardware": "हार्डवेयर",
- "page-find-wallet-hardware-desc": "हार्डवेयर वॉलेट",
"page-find-wallet-new-to-crypto-title": "पहली बार क्रिप्टो इस्तेमाल करने वाला",
"page-find-wallet-new-to-crypto-desc": "आप पहली बार के उपयोगकर्ता हैं जो अपनी पहली वॉलेट खोज रहे हैं",
"page-find-wallet-nfts-title": "NFTs",
@@ -74,21 +67,13 @@
"page-find-wallet-finance-desc": "आप एक ऐसे व्यक्ति हैं जो DeFi का उपयोग करते हैं और आपको एक ऐसा वॉलेट चाहिए जिसमें आप DeFi एप्लिकेशनों से कनेक्ट कर पाए",
"page-find-wallet-developer-title": "डेवलपर",
"page-find-wallet-developer-desc": "आप डेवलपर हैं और dapps विकसित और परीक्षण करने में मदद करने के लिए एक वॉलेट की आवश्यकता है",
- "page-find-wallet-persona-desc": "अपने टाइप के यूज़र प्रोफ़ाइल का चयन करें और वॉलेट सूची को फ़िल्टर करें",
"page-find-wallet-filters": "फिल्टर्स",
"page-find-wallet-active": "सक्रिय",
- "page-find-wallet-profile-filters": "प्रोफ़ाइल फ़िल्टर",
- "page-find-wallet-feature-filters": "विशेषता फिल्टर",
"page-find-wallet-footnote-1": "इस पेज पर सूचीबद्ध वॉलेट्स आधिकारिक समर्थन नहीं हैं और केवल सूचनात्मक उद्देश्यों के लिए प्रदान किए जाते हैं।",
"page-find-wallet-footnote-2": "उनके विवरण वॉलेट प्रोजेक्ट द्वारा स्वयं प्रदान किए गए हैं।",
"page-find-wallet-footnote-3": "हम इस पेज पर प्रॉडक्टों को हमारे लिस्टिंग नीति के मानदंडों के आधार पर जोड़ते हैं। अगर आप हमसे कोई वॉलेट जोड़ना चाहते हैं, तो GitHub में एक मुद्दा उठाएं।",
"page-find-wallet-mobile": "मोबाइल",
- "page-find-wallet-mobile-desc": "मोबाइल ऐप्लिकेशन वाले वॉलेट",
"page-find-wallet-desktop": "डेस्कटॉप",
- "page-find-wallet-desktop-desc": "डेस्कटॉप ऐप्लिकेशन वाले वॉलेट",
"page-find-wallet-browser": "ब्राउज़र",
- "page-find-wallet-browser-desc": "ब्राउज़र एक्सटेंशन वाले वॉलेट",
- "page-find-wallet-device": "डिवाइस",
- "page-find-choose-to-compare": "तुलना करने के लिए चुनें",
- "page-find-wallet-choose-features": "विशेषताएं चुनें"
+ "page-find-wallet-device": "डिवाइस"
}
diff --git a/src/intl/hr/common.json b/src/intl/hr/common.json
index 4a6efc85178..f25c8c5119c 100644
--- a/src/intl/hr/common.json
+++ b/src/intl/hr/common.json
@@ -5,8 +5,6 @@
"adding-developer-tools": "Dodavanje alata za razvojne programere",
"adding-exchanges": "Dodavanje mjenjačnica",
"adding-glossary-terms": "Dodavanje pojmova",
- "adding-layer-2s": "Adding Layer 2s",
- "adding-products": "Adding Products",
"adding-staking-products": "Dodavanje ulagačkih proizvoda",
"adding-wallets": "Dodavanje novčanika",
"account-abstraction": "Apstrakcija računa",
@@ -15,6 +13,9 @@
"aria-toggle-menu-button": "Gumb za izbornik",
"beacon-chain": "Beacon Chain",
"bridges": "Blockchain mostovi",
+ "bug-bounty": "Nagrada za pogrešku",
+ "build": "Izgradnja",
+ "build-menu": "Gradivni izbornik",
"clear": "Obriši",
"close": "Zatvori",
"community": "Zajednica",
@@ -31,14 +32,15 @@
"copied": "Kopirano",
"copy": "Kopiraj",
"danksharding": "Dank-razdjeljivanje",
- "dao-page": "Decentralizirane autonomne organizacije (DAO-ovi)",
+ "dao-page": "DAO-ovi - Decentralizirane autonomne organizacije",
"dark-mode": "Tamno",
"data-provided-by": "Izvor podataka:",
- "decentralized-applications-dapps": "Decentralizirane aplikacije (dapp-ovi)",
+ "decentralized-applications-dapps": "Dapp-ovi - Decentralizirane aplikacije",
"decentralized-identity": "Decentraliziran identitet",
"decentralized-social-networks": "Decentralizirane društvene mreže",
- "decentralized-science": "Decentralizirana znanost (DeSci)",
- "defi-page": "Decentralizirane financije (DeFi)",
+ "decentralized-science": "DeSci - Decentralizirana znanost",
+ "description": "Opis navigacijske stavke",
+ "defi-page": "DeFi - Decentralizirane financije",
"design": "Dizajn",
"design-principles": "Principi dizajna",
"devcon": "Devcon",
@@ -72,11 +74,10 @@
"enterprise-menu": "Izbornik poduzeća",
"esp": "Program potpore ekosustavu",
"eth-current-price": "Trenutačna cijena ETH (USD)",
- "ethereum-basics": "Ethereum basics",
"ethereum-bug-bounty": "Ethereum program nagrađivanja lova na pogreške",
"consensus-when-shipping": "Kada kreće?",
"ethereum-upgrades": "Ethereum nadogradnje",
- "ethereum-brand-assets": "Sredstva marke Ethereum",
+ "ethereum-brand-assets": "Imovina marke Ethereum",
"ethereum-online": "Zajednice na internetu",
"ethereum-events": "Ethereum događaji",
"ethereum-foundation": "Zaklada Ethereum",
@@ -88,7 +89,7 @@
"ethereum-protocol": "Ethereum protokol",
"ethereum-security": "Sigurnost Ethereuma i sprječavanje prijevara",
"ethereum-support": "Ethereum podrška",
- "ethereum-wallets": "Novčanici Ethereum",
+ "ethereum-wallets": "Ethereumovi novčanici",
"ethereum-whitepaper": "Ethereumova tehnička dokumentacija",
"feedback-widget-prompt": "Je li ova stranica korisna?",
"feedback-card-prompt-page": "Je li ova stranica bila korisna?",
@@ -107,11 +108,10 @@
"grants": "Stipendije",
"grant-programs": "Programi stipendiranja ekosustava",
"guides": "Vodiči",
- "guides-hub": "How-to guides",
+ "guides-hub": "Vodiči sa smjernicama",
"history-of-ethereum": "Povijest Ethereuma",
"home": "Početna",
"how-ethereum-works": "Kako Ethereum radi",
- "how-to-create-an-ethereum-account": "How to \"create\" an Ethereum account",
"how-to-revoke-token-access": "Kako pametnom ugovoru oduzeti pravo pristupa vašim kripto sredstvima",
"how-to-swap-tokens": "Kako zamijeniti tokene",
"how-to-use-a-bridge": "Kako premostiti tokene na 2. sloj",
@@ -143,10 +143,105 @@
"mainnet-ethereum": "Glavna mreža Ethereum",
"merge": "Spoji",
"more": "Više",
- "nav-developers": "Programeri",
+ "nav-about-description": "Javni projekt otvorenog izvornika za zajednicu Ethereuma",
+ "nav-advanced-description": "Upoznajte složenije teme",
+ "nav-advanced-label": "Napredno",
+ "nav-basics-description": "Razumijevanje temelja Ethereuma",
+ "nav-basics-label": "Osnove",
+ "nav-bridges-description": "Web3 razvio se u ekosustav primarnih L1 lanaca blokova i L2 rješenja za skaliranje",
+ "nav-builders-home-description": "Graditeljski priručnik za Ethereum – od graditelja, za graditelje",
+ "nav-builders-home-label": "Dom za gradiitelje",
+ "nav-contribute-description": "Ako želite pomoći, ovo će vam pokazati put",
+ "nav-contribute-label": "Doprinesite web-mjestu ethereum.org",
+ "nav-dao-description": "Zajednice u vlasništvu svojih članova bez centraliziranog nadzornog tijela",
+ "nav-dapps-description": "Istražite bogati ekosustav aplikacija uz Ethereum",
+ "nav-defi-description": "Globalna, otvorena alternativa tradicionalnom financijskom tržištu",
+ "nav-desci-description": "Globalna, otvorena alternativa trenutačnom znanstvenom sustavu",
+ "nav-desoc-description": "Platforma temeljena na blokovima lanaca za društvene interakcije i izradu sadržaja",
"nav-developers-docs": "Dokumenti za programere",
+ "nav-developers": "Programeri",
+ "nav-did-description": "Izradite i posjedujte vlastite jedinstvene, decentralizirane identifikatore",
+ "nav-docs-description": "Dokumenti koji će vam pomoći da razumijete Ethereum i gradite njime",
+ "nav-docs-design-description": "Opis jedinstvenih izazova, najboljih praksi i uvida u korisnička istraživanja za web3 dizajn",
+ "nav-docs-design-label": "Temelji dizajna korisničkog iskustva/sučelja",
+ "nav-docs-foundation-description": "Osnovne razvoja na Ethereumu",
+ "nav-docs-foundation-label": "Temeljne teme",
+ "nav-docs-overview-description": "Vaš dom dokumentacije za razvojni tim",
+ "nav-docs-stack-description": "Razumijevanje svih pojedinosti Ethereumovih stogova",
+ "nav-docs-stack-label": "Ethereumovi stogovi",
+ "nav-eip-description": "Standardi koji definiraju nove značajke ili postupke",
+ "nav-eip-label": "EIP - Prijedlozi za poboljšanje Ethereuma",
+ "nav-emerging-description": "Upoznajte novije slučajeve upotrebe Ethereuma",
+ "nav-enterprise-description": "Poslovne primjene Ethereuma",
+ "nav-ethereum-org-description": "Ovo web-mjesto pokreće zajednica – pridružite nam se i doprinesite svojim sudjelovanjem",
+ "nav-ethereum-wallets-description": "Aplikacija za interakciju sa svojim Ethereum računom",
+ "nav-events-description": "Decentralizacija i sloboda sudjelovanja za sve",
+ "nav-events-irl-description": "Svakog mjeseca dostupni su značajni Ethereumovi događaji, na mreži ili na lokaciji",
+ "nav-events-label": "Zajednice i događaji",
+ "nav-events-online-description": "Stotine tisuća Ethereumovih entuzijasta sudjeluju u ovim mrežnim zajednicama",
+ "nav-find-wallet-description": "Novčanici vam omugućuju korištenje kriptovalutom",
+ "nav-find-wallet-label": "Odaberite svoj novčanik",
+ "nav-gas-fees-description": "Kako se izračunavaju naknade za transakcije ETH-om",
+ "nav-get-eth-description": "Za upotrebu Ethereum aplikacija potreban vam je ether (ETH)",
+ "nav-get-started-description": "Prvi koraci u radu s Ethereumom",
+ "nav-governance-description": "Postupak nadogradnje Ethereumovog protokola",
+ "nav-governance-label": "Upravljanje",
+ "nav-grants-description": "Odabrani popis zajednice o projektima koji omogućuju programe ulaganja",
+ "nav-guide-create-account-description": "Uz aplikaciju Novčanika svatko može besplatno izraditi Ethereum račun",
+ "nav-guide-revoke-access-description": "Ostanite zaštićeni dok surađujete s pametnim ugovorima i aplikacijama Ethereum ekosustava",
+ "nav-guide-revoke-access-label": "Kako uskratiti pristup pametnom ugovoru",
+ "nav-guide-use-wallet-description": "Upoznajte sve osnovne funkcije novčanika",
+ "nav-guide-use-wallet-label": "Kako koristiti novčanik",
+ "nav-guides-description": "Praktične, detaljne upute za prve korake",
+ "nav-guides-label": "Vodiči sa smjernicama",
+ "nav-history-description": "Vremenski plan svih značajnih ažuriranja",
+ "nav-history-label": "Tehnička povijest Ethereuma",
+ "nav-layer-2-description": "Jeftinije i brže transakcije Ethereuma",
+ "nav-learn-by-coding-description": "Alati pomoći u eksperimentiranju s Ethereumom",
+ "nav-local-env-description": "Odaberite i postavite svoj stog za razvoj Ethereuma",
+ "nav-mainnet-description": "Poslovne aplikacije za lance blokova mogu se graditi na javnoj glavnoj mreži Ethereuma",
+ "nav-nft-description": "Način prikaza bilo čega jedinstvenog u obliku imovine temeljene na Ethereumu",
+ "nav-open-research-description": "Jedna od primarnih prednosti Ethereuma aktivna je istraživačka zajednica",
+ "nav-open-research-label": "Otvori istraživanje",
+ "nav-overview-description": "Sve o obuci za Ethereum",
+ "nav-participate-overview-description": "Pregled kako sudjelovati",
"nav-primary": "Primarni",
- "nft-page": "Nezamjenjivi tokeni (NFT-ovi)",
+ "nav-private-description": "Resursi za programere za Ethereum kod privatnih poduzeća",
+ "nav-quizzes-description": "Saznajte koliko dobro razumijete Ethereum i kriptovalute",
+ "nav-quizzes-label": "Provjerite svoje znanje",
+ "nav-refi-description": "Alternativni ekonomski sustav građen na principima regeneracije",
+ "nav-research-description": "Postupci poboljšanja Ethereuma",
+ "nav-research-label": "Istraživanje i razvoj",
+ "nav-roadmap-description": "Put do skalabilnijeg, sigurnijeg i održivijeg Ethereuma",
+ "nav-roadmap-future-description": "Učvršćivanje Ethereuma kao čvrste i decentralizirane mreže",
+ "nav-roadmap-future-label": "Osiguranje za budućnost",
+ "nav-roadmap-label": "Plan razvoja",
+ "nav-roadmap-scaling-description": "Ažuriranja mreže kako bi se dodatno smanjili troškovi i ubrzale transakcije",
+ "nav-roadmap-security-description": "Otpornost Ethereuma na sve vrste napada u budućnosti",
+ "nav-roadmap-security-label": "Poboljšana sigurnost",
+ "nav-roadmap-ux-description": "Upotreba Ethereuma mora biti pojednostavljena",
+ "nav-run-a-node-description": "Kako postati potpuno neovisan i pri tome zaštititi mreže",
+ "nav-security-description": "Upoznajte najbolje prakse u radu s kriptovalutama",
+ "nav-smart-contracts-description": "Temeljni gradbeni blokovi Ethereumovog ekosustava",
+ "nav-stablecoins-description": "Stabilne kovanice Ethereumovi su tokeni osmišljeni za zadržavanje fiksne vrijednosti",
+ "nav-stake-description": "Zaradite nagrade za zaštitu Ethereuma",
+ "nav-stake-label": "Ulaganje",
+ "nav-staking-home-description": "Pregled različitih mogućnosti ulaganja",
+ "nav-staking-pool-description": "Udružujte se s drugima i ulažite i zarađujte nagrade sa svakom vrijednosti ETH",
+ "nav-staking-pool-label": "Skupljeni staking",
+ "nav-staking-saas-label": "Ulaganje s uslugom",
+ "nav-staking-solo-label": "Samostalan staking",
+ "nav-start-building-description": "Korisne informacije za početnike",
+ "nav-translation-program-description": "Suradnja u prevođenju web-mjesta ethereum.org na sve jezike",
+ "nav-tutorials-description": "Odabrani popis praktičnih vodiča zajednice",
+ "nav-use-cases-description": "Otkrijte različite ideje kako se koristiti Ethereumom",
+ "nav-what-is-ether-description": "Valuta Ethereum aplikacija",
+ "nav-what-is-ethereum-description": "Što Ethereum čini posebnim",
+ "nav-what-is-web3-label": "Što je Veb3?",
+ "nav-what-is-web3-description": "Alternativa centraliziranim monopolima koji diktiraju pravila",
+ "nav-whitepaper-description": "Originalna tehnička dokumentacija Ethereuma autora Vitalika Buterina iz 2014.",
+ "nav-zkp-description": "Način kako potvrditi valjanost potvrde bez njezina otkrivanja",
+ "nft-page": "NFT-ovi - Nezamjenjivi tokeni",
"nfts": "NFT - nezamjenjivi tokeni",
"no": "Ne",
"on-this-page": "Na ovoj stranici",
@@ -154,6 +249,8 @@
"page-developers-aria-label": "Programerski izbornik",
"page-index-meta-title": "Početna",
"page-last-updated": "Posljednje ažuriranje stranice",
+ "participate": "Sudjelovanje",
+ "participate-menu": "Izbornik sudjelovanja",
"pbs": "Razdvojenost predlagača i graditelja",
"pools": "Skupljeni staking",
"privacy-policy": "Pravila privatnosti",
@@ -164,8 +261,10 @@
"refresh": "Osvježite stranicu.",
"return-home": "vrati doma",
"roadmap": "Plan razvoja Ethereuma",
+ "research": "Istraživanje",
+ "research-menu": "Izbornik istraživanja",
"resources": "Resursi prevođenja",
- "regenerative-finance": "Regenerativne financije (ReFi)",
+ "regenerative-finance": "ReFi - Regenerativne financije",
"run-a-node": "Raditi node-a",
"rollup-component-website": "Web stranica",
"rollup-component-developer-docs": "Dokumenti za programere",
@@ -190,11 +289,10 @@
"site-title": "ethereum.org",
"skip-to-main-content": "Preskoči na glavni sadržaj",
"smart-contracts": "Pametni ugovori",
- "stablecoins": "Stablecoins",
+ "stablecoins": "Stabilne kovanice",
"stake-eth": "Ulog ETH",
"staking": "Ulaganje",
"start-here": "Počnite ovdje",
- "style-guide": "Style guide",
"solo": "Samostalan staking",
"support": "Podrška",
"terms-of-use": "Uvjeti korištenja",
@@ -211,16 +309,17 @@
"try-using-search": "Pokušajte pomoću pretraživanja pronaći ono što tražite ili",
"tutorials": "Praktični vodiči",
"up": "Gore",
+ "use": "Upotreba",
"use-ethereum": "Upotrijebi Ethereum",
"use-ethereum-menu": "Upotrijebi Ethereumov izbornik",
- "user-experience": "User experience",
+ "use-menu": "Izbornik upotrebe",
"verkle-trees": "Verkle stabla",
"wallets": "Novčanici",
"we-couldnt-find-that-page": "Nismo mogli pronaći tu stranicu",
"web3": "Što je Veb3?",
"web3-title": "Web3",
"website-last-updated": "Posljednje ažuriranje stranice",
- "what-is-ether": "Što je ether (ETH)?",
+ "what-is-ether": "Što je Ether (ETH)?",
"what-is-ethereum": "Što je Ethereum?",
"withdrawals": "Povlačenje uloga",
"yes": "Da",
diff --git a/src/intl/hr/page-languages.json b/src/intl/hr/page-languages.json
index 1553b89cec2..37a8abafe80 100644
--- a/src/intl/hr/page-languages.json
+++ b/src/intl/hr/page-languages.json
@@ -18,11 +18,11 @@
"page-languages-words": "riječi",
"page-languages-recruit-community": "Pomozite nam prevesti web-mjesto ethereum.org.",
"langauge-am": "Ahmarski",
- "language-ar": "arapski",
+ "language-ar": "Arapski",
"language-az": "Azerbajdžanski",
"langauge-be": "Bjeloruski",
"language-bg": "Bugarski",
- "language-bn": "bengalski",
+ "language-bn": "Bengalski",
"language-bs": "Bosanski",
"language-ca": "Katalonski",
"language-cs": "češki",
@@ -51,11 +51,11 @@
"language-kn": "Kannada",
"language-ko": "Korejski",
"language-lt": "Litavski",
- "language-ml": "Malajalamski",
+ "language-ml": "Malajalam",
"language-mr": "Marati",
"language-ms": "Malajski",
"language-nb": "Norveški",
- "language-ne-np": "Nepali",
+ "language-ne-np": "Nepalski",
"language-nl": "Nizozemski",
"language-pcm": "Nigerijski pidžin",
"language-fil": "Filipinski",
@@ -77,6 +77,6 @@
"language-ur": "Urdu",
"language-uz": "Uzbečki",
"language-vi": "Vijetnamski",
- "language-zh": "Kineski (pojednostavljen)",
+ "language-zh": "Kineski (pojednostavljeni)",
"language-zh-tw": "Kineski (tradicionalni)"
}
diff --git a/src/intl/hr/page-wallets-find-wallet.json b/src/intl/hr/page-wallets-find-wallet.json
index cc1e43f7ae5..a0400768777 100644
--- a/src/intl/hr/page-wallets-find-wallet.json
+++ b/src/intl/hr/page-wallets-find-wallet.json
@@ -7,7 +7,6 @@
"page-find-wallet-meta-title": "Pronađite Ethereumov novčanik",
"page-find-wallet-title": "Pronađite novčanik",
"page-find-wallet-try-removing": "Pokušajte ukloniti jednu ili dvije značajke",
- "page-find-wallet-choose-to-compare": "Odaberite za usporedbu",
"page-stake-eth": "Ulog ETH",
"page-find-wallet-open-source": "Open source",
"page-find-wallet-open-source-desc": "Softver otvorenog izvornog koda omogućuje svakome da provjeri integritet i sigurnost aplikacije",
@@ -16,8 +15,6 @@
"page-find-wallet-non-custodial-desc": "Novčanici koji ne upravljaju vašim privatnim ključevima",
"page-find-wallet-hardware-wallet-support": "Podrška za hardverske novčanike",
"page-find-wallet-hardware-wallet-support-desc": "Novčanici koji se mogu povezati s hardverskim novčanicima radi povećane sigurnosti",
- "page-find-wallet-walletconnect": "WalletConnect",
- "page-find-wallet-walletconnect-desc": "Novčanici koji podržavaju WalletConnect za povezivanje s dappovima",
"page-find-wallet-rpc-importing": "Uvoz RPC-a",
"page-find-wallet-rpc-importing-desc": "Novčanici koji podržavaju korisničke RPC poveznice za spajanje s različitim čvorovima ili mrežama",
"page-find-wallet-nft-support": "Podrška za NFT-ove",
@@ -36,8 +33,6 @@
"page-find-wallet-ens-support-desc": "Novčanici koji podržavaju Ethereum uslugu imenovanja (ENS)",
"page-find-wallet-token-importing": "Uvoz tokena",
"page-find-wallet-token-importing-desc": "Uvezite bilo koji ERC-20 token za uporabu u vašem novčaniku",
- "page-find-wallet-fee-optimization": "Optimizacija naknada",
- "page-find-wallet-fee-optimization-desc": "Podrška za transakcije tipa 2 za optimizaciju troškova goriva i povrata trokova za neiskorišteno gorivo",
"page-find-wallet-buy-crypto": "Kupite kripto",
"page-find-wallet-buy-crypto-desc": "Kupite kripto fiat novcem izravno iz novčanika \n *Napomena: može biti ovisno o regiji",
"page-find-wallet-sell-for-fiat": "Prodajte za fiat novac",
@@ -46,7 +41,6 @@
"page-find-wallet-multisig-desc": "Novčanici koji zahtijevaju višestruke potpise za autorizaciju transakcije",
"page-find-wallet-social-recovery": "Društveni oporavak",
"page-find-wallet-social-recovery-desc": "Novčanici koji čuvarima omogućuju promjenu potpisnog ključa za novčanike pametnih ugovora",
- "page-find-wallet-token-support": "Podrška za tokene",
"page-find-wallet-features": "Značajke",
"page-find-wallet-security": "Sigurnost",
"page-find-wallet-smart-contract": "Pametni ugovor",
@@ -63,7 +57,6 @@
"page-find-wallet-chromium": "Chromium",
"page-find-wallet-firefox": "Firefox",
"page-find-wallet-hardware": "Hardver",
- "page-find-wallet-hardware-desc": "Hardverski novčanici",
"page-find-wallet-new-to-crypto-title": "Novi ste u kripto svijetu",
"page-find-wallet-new-to-crypto-desc": "Novi ste korisnik u potrazi za prvim novčanikom",
"page-find-wallet-nfts-title": "NFT - nezamjenjivi tokeni",
@@ -74,22 +67,14 @@
"page-find-wallet-finance-desc": "Korisnik ste DeFi usluga i trebate novčanik koji vam omogućuje povezivanje s DeFi aplikacijama",
"page-find-wallet-developer-title": "Programer",
"page-find-wallet-developer-desc": "Vi ste programer i trebate novčanik za pomoć u razvoju i testiranju dappova",
- "page-find-wallet-persona-desc": "Odaberite profil koji odgovara vašem korisničkom tipu i filtrirajte listu novčanika",
"page-find-wallet-filters": "Filtri",
"page-find-wallet-active": "aktivni",
- "page-find-wallet-profile-filters": "Filtri po profilima",
- "page-find-wallet-feature-filters": "Filtri po značajkama",
"page-find-wallet-footnote-1": "Prikaz novčanika na ovoj stranici ne predstavlja službeno odobrenje i služi samo za informaciju.",
"page-find-wallet-footnote-2": "Njihovi opisi primljeni su izravno od projekata novčanika.",
"page-find-wallet-footnote-3": "Na ovu stranicu dodajemo proizvode temeljem kriterija iz naše politike uvrštenja. Ako želite da dodamo novčanik, rehistrirajte problem na GitHub-u.",
"page-find-wallet-mobile": "Mobitel",
- "page-find-wallet-mobile-desc": "Novčanici s mobilnim aplikacijama",
"page-find-wallet-desktop": "Desktop",
- "page-find-wallet-desktop-desc": "Novčanici s računalnim aplikacijama",
"page-find-wallet-browser": "Preglednik",
- "page-find-wallet-browser-desc": "Novčanici s ekstenzijama za preglednike",
"page-find-wallet-device": "Uređaj",
- "page-find-choose-to-compare": "Odaberite za usporedbu",
- "page-find-wallet-choose-features": "Odaberite značajke",
"page-find-wallet-reset-filters": "Resetirajte filtre"
}
diff --git a/src/intl/hu/common.json b/src/intl/hu/common.json
index 1b186ca91bf..0a72019d6bd 100644
--- a/src/intl/hu/common.json
+++ b/src/intl/hu/common.json
@@ -5,16 +5,18 @@
"adding-developer-tools": "Fejlesztői eszközök hozzáadása",
"adding-exchanges": "Tőzsdék hozzáadása",
"adding-glossary-terms": "Új fogalmak hozzáadása",
- "adding-layer-2s": "Adding Layer 2s",
- "adding-products": "Adding Products",
+ "adding-layer-2s": "2. réteg hozzáadása",
"adding-staking-products": "Letétbe helyezési lehetőségek hozzáadása",
"adding-wallets": "Tárcák hozzáadása",
"account-abstraction": "Számlaabsztrakció",
"acknowledgements": "Köszönetnyilvánítások",
- "aria-toggle-search-button": "Keresés bekapcsolása gomb",
+ "aria-toggle-search-button": "Keresőgomb bekapcsolása",
"aria-toggle-menu-button": "Menü bekapcsolása gomb",
- "beacon-chain": "Beacon Chain",
+ "beacon-chain": "Beacon lánc",
"bridges": "Blokkláncösszekötők",
+ "bug-bounty": "Hibavadászat",
+ "build": "Fejlesztés",
+ "build-menu": "Fejlesztés menü",
"clear": "Törlés",
"close": "Bezárás",
"community": "Közösség",
@@ -31,14 +33,15 @@
"copied": "Lemásolva",
"copy": "Másolás",
"danksharding": "Dank-féle párhuzamos futtatás (Danksharding)",
- "dao-page": "Decentralizált autonóm szervezetek (DAO-k)",
+ "dao-page": "DAO-k - Decentralizált autonóm szervezetek",
"dark-mode": "Sötét",
"data-provided-by": "Adatforrás:",
- "decentralized-applications-dapps": "Decentralizált alkalmazások (dapps)",
+ "decentralized-applications-dapps": "Dappok - Decentralizált alkalmazások",
"decentralized-identity": "Decentralizált identitás",
"decentralized-social-networks": "Decentralizált közösségi hálózatok",
- "decentralized-science": "Nem központosított kutatás (DeSci)",
- "defi-page": "Decentralizált pénzügy (DeFi)",
+ "decentralized-science": "DeSci - Decentralizált tudomány",
+ "description": "Navigációs elem leírása",
+ "defi-page": "DeFi - Decentralizált pénzügy",
"design": "Dizájn",
"design-principles": "Dizájnelvek",
"devcon": "Devcon",
@@ -76,7 +79,7 @@
"ethereum-bug-bounty": "Ethereum bugvadász program",
"consensus-when-shipping": "Mikor lesz kész?",
"ethereum-upgrades": "Az Ethereum fejlesztései",
- "ethereum-brand-assets": "Ethereum márkanév",
+ "ethereum-brand-assets": "Ethereum márkaeszközök",
"ethereum-online": "Online közösségek",
"ethereum-events": "Az Ethereum eseményei",
"ethereum-foundation": "Ethereum Alapítvány",
@@ -134,19 +137,123 @@
"learn-more": "Bővebben",
"less": "Kevesebb",
"light-mode": "Világos",
- "listing-policy-disclaimer": "Az oldalon szereplő egyik termék sincs hivatalosan jóváhagyva, csak információs célokat szolgálnak. Ha szeretnél egy terméket hozzáadni, vagy visszajelzést küldeni az irányelvről, akkor nyiss egy Github ticketet.",
+ "listing-policy-disclaimer": "Az oldalon szereplő egyik termék sincs hivatalosan jóváhagyva, csak információs célokat szolgálnak. Ha szeretne egy terméket hozzáadni, vagy visszajelzést küldeni az irányelvről, akkor nyisson egy issue-t Githubon.",
"loading": "Betöltés...",
"loading-error": "Betöltési hiba.",
"loading-error-refresh": "Hiba, kérjük frissítsen.",
"loading-error-try-again-later": "Nem sikerült az adatok betöltése. Kérjük, próbálja meg később.",
"logo": "logo",
- "mainnet-ethereum": "Mainnet Ethereum",
+ "mainnet-ethereum": "Ethereum Főhálózat",
"merge": "Egyesítés",
"more": "Több",
- "nav-developers": "Fejlesztők",
+ "nav-about-description": "Nyilvános, nyílt forráskódú projekt az Ethereum közössége számára",
+ "nav-advanced-description": "Ismerkedjen meg komplexebb témákkal is",
+ "nav-advanced-label": "Haladó",
+ "nav-basics-description": "Ismerje meg az Ethereum alapjait",
+ "nav-basics-label": "Alapok",
+ "nav-bridges-description": "A web3 az elsődleges L1 blokkláncok és L2 skálázási megoldások ökoszisztémájává fejlődött",
+ "nav-builders-home-description": "Az Ethereum-fejlesztők kézikönyve – fejlesztőktől fejlesztőknek",
+ "nav-builders-home-label": "A fejlesztők otthona",
+ "nav-contribute-description": "Ha segíteni szeretne, itt talál útmutatást",
+ "nav-contribute-label": "Hozzájárulás az ethereum.org oldalhoz",
+ "nav-dao-description": "Tagtulajdonú közösségek központi hatóság nélkül",
+ "nav-dapps-description": "Fedezze fel az appok gazdag ökoszisztémáját az Ethereum segítségével",
+ "nav-defi-description": "Egy globális és nyitott alternatívája a hagyományos pénzügyi piacnak",
+ "nav-desci-description": "Egy globális és nyitott alternatívája a jelenlegi tudományos rendszernek",
+ "nav-desoc-description": "Blokkláncalapú platformok közösségi kapcsolódás és tartalomkészítés céljából",
"nav-developers-docs": "Fejlesztői dokumentumok",
+ "nav-developers": "Fejlesztők",
+ "nav-did-description": "Egyedi decentralizált azonosítók kiadása és birtoklása",
+ "nav-docs-description": "Dokumentumok, amelyek segítenek megérteni és fejleszteni az Ethereumot",
+ "nav-docs-design-description": "Egyedülálló web3-tervezési kihívások leírása, bevált gyakorlatok és felhasználói kutatási információk",
+ "nav-docs-design-label": "UX/UI-tervezési alapok",
+ "nav-docs-foundation-description": "Alapvető tudnivalók az Ethereumon való fejlesztésről",
+ "nav-docs-foundation-label": "Alapvető témák",
+ "nav-docs-overview-description": "A fejlesztői dokumentumok otthona",
+ "nav-docs-stack-description": "Ismerje meg az Ethereum stack összes részletét",
+ "nav-eip-description": "Szabványok, amelyek új funkciókat vagy folyamatokat határoznak meg",
+ "nav-eip-label": "EIP-k - Ethereum fejlesztési javaslatok",
+ "nav-emerging-description": "Ismerje meg az Ethereum egyéb, újabb felhasználási eseteit",
+ "nav-emerging-label": "Új alkalmazási területek",
+ "nav-enterprise-description": "Üzleti alkalmazások az Ethereumhoz",
+ "nav-ethereum-org-description": "Ez egy közösség által vezérelt webhely – csatlakozzon hozzánk és járuljon hozzá Ön is",
+ "nav-ethereum-wallets-description": "Egy app, amellyel kapcsolatba léphet Ethereum-fiókjával",
+ "nav-events-description": "Decentralizáció és szabad részvétel bárki számára",
+ "nav-events-irl-description": "Minden hónapban jelentős eseményeket szervez az Ethereum mind a személyes, mind az online térben",
+ "nav-events-label": "Közösségek és események",
+ "nav-events-online-description": "Ethereum-rajongók százezrei segítenek egymásnak ezekben az online közösségekben",
+ "nav-find-wallet-description": "Tárcák segítségével használhatja a kriptovalutákat",
+ "nav-find-wallet-label": "Válassza ki a tárcáját",
+ "nav-gas-fees-description": "Hogyan számítják ki az ETH tranzakciós illetékeit",
+ "nav-gas-fees-label": "Gázdíjak",
+ "nav-get-eth-description": "Az Ethereum-alkalmazások használatához etherre (ETH) van szükség",
+ "nav-get-started-description": "Az első lépések az Ethereum használatában",
+ "nav-governance-description": "Az Ethereum-protokoll frissítésének folyamata",
+ "nav-governance-label": "Irányítás",
+ "nav-grants-description": "A közösségünk által összeállított lista a támogatási programokat nyújtó projektekről",
+ "nav-guide-create-account-description": "Bárki nyithat Ethereum-számlát, bármikor és ingyenesen, egy tárca appal",
+ "nav-guide-create-account-label": "Hogyan lehet Ethereum számlát létrehozni",
+ "nav-guide-revoke-access-description": "Maradjon biztonságban, amikor okosszerződésekkel és alkalmazásokkal kerül kapcsolatba az Ethereum-ökoszisztémában",
+ "nav-guide-revoke-access-label": "Az okosszerződéses hozzáférés visszavonása",
+ "nav-guide-use-wallet-description": "Ismerje meg, hogyan működnek a tárca alapvető funkciói",
+ "nav-guide-use-wallet-label": "Hogyan használja a tárcát",
+ "nav-guides-description": "Részletes gyakorlati útmutatók, amelyek segítenek az indulásban",
+ "nav-guides-label": "Útmutatók",
+ "nav-history-description": "Az összes fontos elágazás és frissítés idővonala",
+ "nav-history-label": "Az Ethereum technikai története",
+ "nav-layer-2-description": "Olcsóbb és gyorsabb tranzakciók az Ethereumon",
+ "nav-learn-by-coding-description": "Eszközök, amelyek segítenek kísérletezni az Ethereummal",
+ "nav-local-env-description": "Az Ethereum fejlesztői stack kiválasztása és beállítása",
+ "nav-mainnet-description": "Vállalatiblokklánc-alkalmazások fejleszthetők az Ethereum nyilvános fő hálózatán",
+ "nav-nft-description": "Egy módszer arra, hogy egyedi dolgokat Ethereum-alapú javakként jelenítsünk meg",
+ "nav-open-research-description": "Az Ethereum egyik legnagyobb erőssége az aktív kutatói közösség",
+ "nav-open-research-label": "Nyílt kutatás",
+ "nav-overview-description": "Minden tudnivaló az Ethereum-oktatásról",
+ "nav-overview-label": "Áttekintés",
+ "nav-participate-overview-description": "A részvétel áttekintése",
"nav-primary": "Elsődleges",
- "nft-page": "Nem felcserélhető tokenek (NFT-k)",
+ "nav-private-description": "Fejlesztői anyagok a privát vállalati Ethereumhoz",
+ "nav-quizzes-description": "Tudja meg, mennyire érti az Ethereumot és a kriptovalutákat",
+ "nav-quizzes-label": "Tesztelje tudását",
+ "nav-refi-description": "Egy alternatív gazdasági rendszer, amely regeneratív elvekre épít",
+ "nav-research-description": "Az Ethereum fejlesztésére használt eljárások",
+ "nav-research-label": "Kutatás és fejlesztés",
+ "nav-roadmap-description": "Az út, amely az Ethereum jobb skálázhatóságához, biztonságához és fenntarthatóságához vezet",
+ "nav-roadmap-future-description": "Az Ethereum megerősítése, hogy még robusztusabb és decentralizáltabb hálózattá váljon",
+ "nav-roadmap-future-label": "Időtállóság",
+ "nav-roadmap-label": "Útiterv",
+ "nav-roadmap-scaling-description": "Hálózati frissítések a tranzakciós költségek csökkentése és a sebesség növelése érdekében",
+ "nav-roadmap-scaling-label": "Olcsóbb tranzakciók",
+ "nav-roadmap-security-description": "Annak biztosítása, hogy az Ethereum a jövőben is ellenálljon mindenféle támadásnak",
+ "nav-roadmap-security-label": "Fokozott biztonság",
+ "nav-roadmap-ux-description": "Az Ethereum használatát egyszerűsíteni kell",
+ "nav-roadmap-ux-label": "Jobb felhasználói élmény",
+ "nav-run-a-node-description": "Váljon teljesen függetlenné, miközben segít biztonságosabbá tenni a hálózatot",
+ "nav-security-description": "Ismerje meg a kriptovaluták használatának bevált gyakorlatait",
+ "nav-smart-contracts-description": "Az Ethereum-ökoszisztéma alapvető építőkövei",
+ "nav-stablecoins-description": "A stabil érmék olyan Ethereum-tokenek, amelyeket úgy terveztek, hogy az értékül állandó maradjon",
+ "nav-stake-description": "Szerezzen jutalmat az Ethereum biztosításáért",
+ "nav-stake-label": "Letétbe helyezés",
+ "nav-staking-home-description": "A különböző letétbe helyezési lehetőségek áttekintése",
+ "nav-staking-home-label": "Otthoni letétbe helyezés",
+ "nav-staking-pool-description": "Helyezzen letétbe bármennyi ETH-t, és szerezzen jutalmakat másokkal együtt",
+ "nav-staking-pool-label": "Készletezett letétbe helyezés",
+ "nav-staking-saas-description": "Az Ön validátorkliensét harmadik fél működteti csomópontok kezelésével",
+ "nav-staking-saas-label": "Letétbe helyezés szolgáltatással",
+ "nav-staking-solo-description": "Működtessen az otthonából hardvert és támogassa személyesen az Ethereum hálózatának biztonságát és decentralizálását",
+ "nav-staking-solo-label": "Egyéni letétbe helyezés",
+ "nav-start-building-description": "Hasznos információk az újoncok számára",
+ "nav-translation-program-description": "Közös együttműködés, hogy az ethereum.org weboldalt minden nyelvre lefordítsuk",
+ "nav-tutorials-description": "A közösségi útmutatók válogatott listája",
+ "nav-use-cases-description": "Különböző ötletek az Ethereum használatához",
+ "nav-use-cases-label": "Felhasználási módok",
+ "nav-what-is-ether-description": "Az Ethereum-appok valutája",
+ "nav-what-is-ethereum-description": "Tudja meg, mi teszi az Ethereumot olyan különlegessé",
+ "nav-what-is-web3-label": "Mi az a Web3?",
+ "nav-what-is-web3-description": "A szabályokat meghatározó központosított monopóliumok alternatívája",
+ "nav-whitepaper-description": "Az eredeti Ethereum fehérkönyv, melyet Vitalik Buterin írt 2014-ben",
+ "nav-zkp-description": "Egy módszer egy állítás érvényességének igazolására úgy, hogy magát az állítást nem fedjük fel",
+ "nft-page": "NFT-k - Nem felcserélhető tokenek",
"nfts": "NFT-k",
"no": "Nem",
"on-this-page": "Ezen az oldalon",
@@ -154,6 +261,8 @@
"page-developers-aria-label": "Fejlesztői Menü",
"page-index-meta-title": "Kezdőlap",
"page-last-updated": "Oldal legutoljára frissítve",
+ "participate": "Részvétel",
+ "participate-menu": "Részvétel menü",
"pbs": "Javaslattevő-építő szétválasztása",
"pools": "Készletezett letétbe helyezés",
"privacy-policy": "Adatvédelmi szabályzat",
@@ -164,13 +273,15 @@
"refresh": "Kérjük, frissítsd az oldalt.",
"return-home": "vissza a kezdőlapra",
"roadmap": "Ethereum-ütemterv",
+ "research": "Kutatás",
+ "research-menu": "Kutatás menü",
"resources": "Fordítási erőforrások",
- "regenerative-finance": "Regeneratív pénzügyek (ReFi)",
+ "regenerative-finance": "ReFi - Regeneratív pénzügyek",
"run-a-node": "Csomópont futtatása",
"rollup-component-website": "Honlap",
"rollup-component-developer-docs": "Fejlesztői dokumentumok",
"rollup-component-technology-and-risk-summary": "Technológiai és kockázati összegzés",
- "scaling": "Méretezés",
+ "scaling": "Skálázás",
"saas": "Letétbe helyezés mint szolgáltatás",
"search": "Keresés",
"search-ethereum-org": "Keresés az ethereum.org oldalon",
@@ -211,8 +322,10 @@
"try-using-search": "Használja a keresőt, hogy megtalálja, amit keres vagy",
"tutorials": "Oktatóanyagok",
"up": "Fel",
+ "use": "Használat",
"use-ethereum": "Az Ethereum használata",
"use-ethereum-menu": "Az Ethereum menü használata",
+ "use-menu": "Használat menü",
"user-experience": "Felhasználói tapasztalat",
"verkle-trees": "Verkle-fák",
"wallets": "Tárcák",
diff --git a/src/intl/hu/glossary.json b/src/intl/hu/glossary.json
index 2f28d06c97b..c218bd7ab3a 100644
--- a/src/intl/hu/glossary.json
+++ b/src/intl/hu/glossary.json
@@ -11,7 +11,7 @@
"api-definition": "Az Alkalmazás programozási felület (API) definíciók kötege arról, hogyan lehet használni egy szoftverrészt. Az API az alkalmazás és a webszerver között helyezkedik el, s az ezek közötti adatátadást teszi lehetővé.",
"asic-term": "ASIC",
"asic-definition": "Alkalmazásspecifikus intergált körök. Ez általában egy integrált körre vonatkozik, mely személyre szabottan készült a kriptovaluta bányászatához.",
- "assert-term": "asset",
+ "assert-term": "assert",
"assert-definition": "A Solidity programozási nyelvben az assert(false) a „0xfe” érvénytelen operációs kódra lesz átfordítva, ami felhasználja az összes maradék gázt és visszafordítja a változtatásokat. Amikor egy assert() parancs hibára fut, akkor valami nagyon rossz és váratlan történik, és a fejlesztőknek meg kell javítaniuk a kódot. Az assert() parancsot arra kell használni a programban, hogy sohe ne történhessenek meg bizonyos események. Bővebben az okosszerződésbiztonságról.",
"attestation-term": "Tanúsítás",
"attestation-definition": "Egy entitás állítása arról, hogy valami igaz. Az Ethereum kontextusában a konszenzusvalidátorok egy állítást tesznek arról, hogy mi a lánc státusza. Előre meghatározott időben minden egyes validátor felel azért, hogy tanúsításokat adjon, ami hivatalosan igazolja, hogy ő mit lát a láncon, beleértve a legutóbbi befejezett ellenőrzési pontot és a lánc aktuális elejét. Bővebben a tanúsításokról.",
@@ -128,11 +128,11 @@
"execution-layer-term": "Végrehajtási réteg",
"execution-layer-definition": "Az Ethereum végrehajtási rétege a végrehajtási kliensek hálózata.",
"eoa-term": "Külső tulajdonú számlák (EOA)",
- "eoa-definition": "A külső tulajdonú számlák (EOA) olyan számlák, amelyeket privát kulcsokkal kontrollálnak, melyeket általában egy kulcsmondatból generálnak. Az okosszerződésekkel ellentében a külső tulajdonú számlákhoz nem tartozik semmilyen programkód. Ezeket általában a tárcák segítségével kezelik.",
+ "eoa-definition": "A külső tulajdonú számlák (EOA) olyan számlák, amelyeket privát kulcsokkal kontrollálnak, melyeket általában egy kulcsmondatból generálnak. Az okosszerződésekkel ellentében a külső tulajdonú számlákhoz nem tartozik semmilyen programkód. Ezeket általában a tárcák segítségével kezelik.",
"erc-term": "Ethereum Request for Comments (ERC)",
"erc-definition": "Néhány EIP-hez tartozó címke, melyek specifikus Ethereum használati szabványokat definiálnak.",
"ethash-term": "Ethash",
- "ethash-definition": "Egy proof-of-work algoritmus, amelyet az Ethereumon használtak a proof-of-stake mechanizmusra való áttérés előtt. Tudjon meg többet",
+ "ethash-definition": "Egy proof-of-work algoritmus, amelyet az Ethereumon használtak a proof-of-stake mechanizmusra való áttérés előtt. Tudjon meg többet",
"ether-term": "Ether",
"ether-definition": "Az Ethereum ökoszisztéma natív kriptovalutája, mely a tranzakciók végrehajtásához szükséges gázdíjak kifizetésére szolgál. Írható még a következő módokon: ETH, Ξ szimbólum, a görög Xi jele. Bővebben az etherről.",
"events-term": "Események",
@@ -154,7 +154,7 @@
"fork-choice-algorithm-term": "Elágazásválasztási algoritmus",
"fork-choice-algorithm-definition": "Az az algoritmus, ami beazonosítja a blokklánc elejét. A végrehajtási rétegen a lánc feje az, amelyikhez a legnagyobb nehézség tartozik. Ez azt jelenti, hogy a lánc valódi feje az, amelyiket a legnagyobb munkával bányászták ki. A konszenzusrétegen az algoritmus a validátorok tanúsításainak összességét vizsgálja (LMD_GHOST).",
"fraud-proof-term": "Fraud proof (csalási bizonyítás)",
- "fraud-proof-definition": "Egy biztonsági modell egy bizonyos második blokkláncréteg (L2) megoldáshoz, ahol a sebesség meggyorsítása érdekében a tranzakciókat összecsomagolják kötegekbe és beküldik az Ethereumra egyetlen tranzakcióban. Ezekről azt feltételezik, hogy érvényesek, de meg lehet azokat kérdőjelezni, ha csalás történt. Ez a módszer növeli a tranzakciók mennyiségét, miközben fenntartja a biztonságot. Néhány rollupérvényességi bizonyítékokat használ. Bővebben az optimista rollupokról.",
+ "fraud-proof-definition": "Egy biztonsági modell egy bizonyos második blokkláncréteg (L2) megoldáshoz, ahol a sebesség meggyorsítása érdekében a tranzakciókat összecsomagolják kötegekbe és beküldik az Ethereumra egyetlen tranzakcióban. Ezekről azt feltételezik, hogy érvényesek, de meg lehet azokat kérdőjelezni, ha csalás történt. Ez a módszer növeli a tranzakciók mennyiségét, miközben fenntartja a biztonságot. Néhány rollupérvényességi bizonyítékokat használ. Bővebben az optimista rollupokról.",
"frontier-term": "Frontier",
"frontier-definition": "Az Ethereum kezdeti teszt fejlesztési fázisa, mely 2015 júliusától 2016 márciusáig tartott.",
"gas-term": "Üzemanyag",
@@ -188,7 +188,7 @@
"issuance-term": "Kibocsátás",
"issuance-definition": "Az új ether kibocsátása (minting) a blokkjavaslatok jutalmához, tanúsításért és a visszaélés bejelentésért.",
"kdf-term": "Kulcsszármaztatási függvény (KDF)",
- "kdf-definition": "Más néven \"jelszó nyújtó algoritmus\", melyet a keystore formátumok használnak, hogy védekezzenek a brute-force, dictionary és a szivárvány tábla támadásokkal szemben a jelszó titkosításoknál a jelszó ismételt hashelésével.",
+ "kdf-definition": "Más néven \"jelszó nyújtó algoritmus\", melyet a keystore formátumok használnak, hogy védekezzenek a brute-force, dictionary és a szivárvány tábla támadásokkal szemben a jelszó titkosításoknál a jelszó ismételt hashelésével.",
"keystore-term": "Kulcstároló",
"keystore-definition": "Minden számláa privát kulcs/cím párja benne van egy Ethereum kliens kulcsfile-jában. Ezek JSON szöveges file-ok, melyek tartalmazzák a számla titkosított privát kulcsát, melyet csak a számlalétrehozásnál megadott jelszóval lehet visszafejteni.",
"keccak-256-term": "Keccak-256",
@@ -210,7 +210,7 @@
"message-call-term": "Üzenethívás",
"message-call-definition": "Egy üzenet átadása egyik számlától a másiknak. Ha a célszámla az Ethereum virtuális gép (EVM) kódjához kapcsolódik, akkor az elindul annak az objektumnak a státuszával és reagál az üzenetre.",
"mining-term": "Bányászat",
- "mining-definition": "A blokkfejléc ismételt hash-elési folyamata, mely növeli a nonce értékét addig, amíg az eredmény egy tetszőleges számot ad bináris nullákkal kezdve. Így kerülnek be az új blokkok a proof-of-work blokkláncba. Ez volt az Ethereum korábbi működése, mielőtt áttért a proof-of-stake mechanizmusra.",
+ "mining-definition": "A blokkfejléc ismételt hash-elési folyamata, mely növeli a nonce értékét addig, amíg az eredmény egy tetszőleges számot ad bináris nullákkal kezdve. Így kerülnek be az új blokkok a proof-of-work blokkláncba. Ez volt az Ethereum korábbi működése, mielőtt áttért a proof-of-stake mechanizmusra.",
"miner-term": "Bányász",
"miner-definition": "Egy hálózati csomópont, amely érvényes proof-of-work-öt (munkaigazolás) talál egy új blokkra azáltal, hogy ismételten hash-el (nézze meg az Ethash bejegyzést). A bányászok már nem részei az Ethereumnak, a helyüket validátorok vették át, amikor az Ethereum áttért a proof-of-stake mechanizmusra.",
"mint-term": "Kibocsátás (mint)",
@@ -228,7 +228,7 @@
"ommer-term": "Ommer (uncle) blokk",
"ommer-definition": "Amikor egy proof-of-work (munkaigazolás) mechanizmus bányásza talált egy érvényes blokkot, egy másik bányász talán beküldött egy ezzel versenyző blokkot, amelyet először tettek hozzá a blokklánc elejéhez. Ez az érvényes, de elévült blokk bekerülhet az újabb blokkokba ommer-ként (a szülőblokk testvére) és részleges blokkjutalmat lehet érte kapni. Ez a kifejezés a semleges megfogalmazása a szülőblokk testvérére vonatkozóan, de néha nagybácsinak (uncle) is nevezik. Ez addig volt érvényes az Ethereumon, amíg az egy proof-of-work hálózat volt, de a proof-of-stake rendszerben már nincsenek jelen, mert minden slotban egy adott blokkjavaslattevő van.",
"optimistic-rollup-term": "Optimistic típusú összevont tranzakciók",
- "optimistic-rollup-definition": "Tranzakciók összegzése (rollup), mely csalási bizonyítékokat használ, hogy megnövekedett második blokkláncréteg (L2) tranzakcióátvitelt nyújtson, s eközben a főhálózat (L1) által biztosított biztonságot élvezi. A Plasmához képes, mely egy hasonló L2 megoldás, az optimista rollup összetettebb tranzakciótípusokat is képes kezelni, bármit, ami az Ethereum virtuális gép (EVM) számára lehetséges. A zero-knowledge rollup-okhoz képest van egy késleltetési problémájuk, mivel a tranzakciókat meg lehet kérdőjelezni a családi bizonyítékkal. Bővebben az optimsta rollupokról.",
+ "optimistic-rollup-definition": "Tranzakciók összegzése (rollup), mely csalási bizonyítékokat használ, hogy megnövekedett második blokkláncréteg (L2) tranzakcióátvitelt nyújtson, s eközben a főhálózat (L1) által biztosított biztonságot élvezi. A Plasmához képes, mely egy hasonló L2 megoldás, az optimista rollup összetettebb tranzakciótípusokat is képes kezelni, bármit, ami az Ethereum virtuális gép (EVM) számára lehetséges. A zero-knowledge rollup-okhoz képest van egy késleltetési problémájuk, mivel a tranzakciókat meg lehet kérdőjelezni a családi bizonyítékkal. Bővebben az optimsta rollupokról.",
"oracle-term": "Oracle",
"oracle-definition": "Az oracle egy híd a blokklánc és a kinti világ között. Láncon belüli API-okként működnek, melyektől információt lehet lekérni és az okosszerződésekben használni azokat. Bővebben az oracle-ökrőlL2 megoldások adatelérhetőségét, mint amilyenek az optimista rollupok és a ZK-rollupok. Bővebben a dankshardingról.",
+ "shard-definition": "A shard láncok egy teljes blokklánc elkülönült szekciói, melyekért a validátorok egy alcsoportja felel. Ez megnövekedett átviteli kapacitást tudna adni az Ethereumnak és fejlesztené az L2 megoldások adatelérhetőségét, mint amilyenek az optimista rollupok és a ZK-rollupok. Bővebben a dankshardingról.",
"sidechain-term": "Sidechain (melléklánc)",
"sidechain-definition": "Egy skálázási megoldás, amely egy elkülönült láncot használ eltérő, gyakran gyorsabb Konszenzusszabályokkal. A mellékláncokat híddal lehet hozzákapcsolni a főhálózathoz. A rollupok is használnak mellékláncokat, de ezek együttesen működnek a főhálózattal. Bővebben a mellékláncokról.",
"signing-term": "Aláírás",
@@ -340,5 +340,5 @@
"zk-proof-term": "Zero-knowledge (nullaismeret-alapú) bizonyíték",
"zk-proof-definition": "A zero-knowledge bizonyíték egy kriptográfiai módszer, mellyel egy egyén képes bizonyítani, hogy egy állítás igaz anélkül, hogy bármilye információt szolgáltatna. Bővebben a zero-knowledge rollupokról.",
"zk-rollup-term": "Nulla tudás alapú összevont tranzakció",
- "zk-rollup-definition": "Tranzakciók összegzése (rollup), mely érvényességi bizonyítékokat használ, hogy megnövelje az L2 tranzakcióátvitelt, miközben a főhálózat (L1) által kínált biztonságot megtartja. Habár nem tudnak összetett tranzakciótípusokat kezelni, mint az optimista rollupok, de nincs bennük késleltetési probléma, mert a tranzakciók bizonyítottan érvényesek a beküldés pillanatában. Bővebben a zero-knowledge rollupokról."
+ "zk-rollup-definition": "Tranzakciók összegzése (rollup), mely érvényességi bizonyítékokat használ, hogy megnövelje az L2 tranzakcióátvitelt, miközben a főhálózat (L1) által kínált biztonságot megtartja. Habár nem tudnak összetett tranzakciótípusokat kezelni, mint az optimista rollupok, de nincs bennük késleltetési probléma, mert a tranzakciók bizonyítottan érvényesek a beküldés pillanatában. Bővebben a zero-knowledge rollupokról."
}
diff --git a/src/intl/hu/page-wallets-find-wallet.json b/src/intl/hu/page-wallets-find-wallet.json
index 9d749808ea5..cf1c78b7d44 100644
--- a/src/intl/hu/page-wallets-find-wallet.json
+++ b/src/intl/hu/page-wallets-find-wallet.json
@@ -7,7 +7,6 @@
"page-find-wallet-meta-title": "Ethereum tárca keresése",
"page-find-wallet-title": "Tárca keresése",
"page-find-wallet-try-removing": "Próbálj elvenni egy vagy két tulajdonságot",
- "page-find-wallet-choose-to-compare": "Válassza ki az összehasonlításhoz",
"page-stake-eth": "ETH letétbe helyezése",
"page-find-wallet-open-source": "Nyílt forráskódú",
"page-find-wallet-open-source-desc": "A nyílt forráskódú szoftver lehetővé teszi, hogy bárki ellenőrizhesse az alkalmazás integritását és biztonságát",
@@ -16,8 +15,6 @@
"page-find-wallet-non-custodial-desc": "Tárcák, melyek nem felügyelik a privát kulcsait",
"page-find-wallet-hardware-wallet-support": "Hardveres tárcák támogatása",
"page-find-wallet-hardware-wallet-support-desc": "Tárcák, amelyek hardveres tárcához csatlakoztathatók a fokozott biztonság érdekében",
- "page-find-wallet-walletconnect": "WalletConnect",
- "page-find-wallet-walletconnect-desc": "A WalletConnect funkció támogató tárcák dappokhoz való csatlakozáshoz",
"page-find-wallet-rpc-importing": "RPC-importálás",
"page-find-wallet-rpc-importing-desc": "Egyedi RPC-végpontokat támogató tárcák különböző csomópontokhoz vagy hálózatokhoz való csatlakozáshoz",
"page-find-wallet-nft-support": "NFT-támogatás",
@@ -36,8 +33,6 @@
"page-find-wallet-ens-support-desc": "Tárcák, melyek támogatják az Ethereum névszolgáltatást (ENS)",
"page-find-wallet-token-importing": "Tokenimportálás",
"page-find-wallet-token-importing-desc": "Bármilyen ERC-20 tokenek importálása a tárcába",
- "page-find-wallet-fee-optimization": "Díjoptimalizálás",
- "page-find-wallet-fee-optimization-desc": "Támogatja a 2. típusú tranzakciókat az optimális díjak és a nem használt gáz visszatérítése érdekében",
"page-find-wallet-buy-crypto": "Kripto vásárlása",
"page-find-wallet-buy-crypto-desc": "Kriptovásárlás hagyományos pénzért közvetlenül a tárcában \n *Megjegyzés: a kriptovásárlás a helyi szabályozástól függ",
"page-find-wallet-sell-for-fiat": "Eladás hagyományos pénzért",
@@ -46,7 +41,6 @@
"page-find-wallet-multisig-desc": "Tárcák, melyeknél több aláírás szükséges a tranzakciók engedélyezéséhez",
"page-find-wallet-social-recovery": "Hagyományos visszaállítás",
"page-find-wallet-social-recovery-desc": "Tárcák, melyeknél az őrzők megváltoztathatják az aláírókulcsot az okosszerződéses tárcákhoz",
- "page-find-wallet-token-support": "Tokentámogatás",
"page-find-wallet-features": "Jellemzők",
"page-find-wallet-security": "Biztonság",
"page-find-wallet-smart-contract": "Smart contract",
@@ -63,7 +57,6 @@
"page-find-wallet-chromium": "Chromium",
"page-find-wallet-firefox": "Firefox",
"page-find-wallet-hardware": "Hardver",
- "page-find-wallet-hardware-desc": "Hardveres tárcák",
"page-find-wallet-new-to-crypto-title": "Kezdő a kripto világában",
"page-find-wallet-new-to-crypto-desc": "Ön most ismerkedik a kripto világával és az első tárcáját keresi",
"page-find-wallet-nfts-title": "NFT-k",
@@ -74,22 +67,14 @@
"page-find-wallet-finance-desc": "Önt a decentralizált pénzügyek (DeFi) érdeklik, és olyan tárcát szeretne, mely ezekhez az alkalmazásokhoz kapcsolódik",
"page-find-wallet-developer-title": "Fejlesztő",
"page-find-wallet-developer-desc": "Ön fejlesztő és olyan tárcát szeretne, mely segít az alkalmazások fejlesztésében és tesztelésében",
- "page-find-wallet-persona-desc": "Válassza ki a felhasználói típusának megfelelő profilt, és szűrjön rá a pénztárcalistára",
"page-find-wallet-filters": "Szűrők",
"page-find-wallet-active": "aktív",
- "page-find-wallet-profile-filters": "Profilszűrő",
- "page-find-wallet-feature-filters": "Funkciószűrő",
"page-find-wallet-footnote-1": "Az oldalon szereplő tárcák nem minősülnek az Ethereum által minősített termékeknek, az itt megjelenő adataik tájékoztatási célt szolgálnak.",
"page-find-wallet-footnote-2": "A leírásokat a tárcákat biztosító projekt adta.",
"page-find-wallet-footnote-3": "Erre az oldalra a listázási szabályzatban meghatározott kritériumok alapján veszünk fel új termékeket. Ha új termék megjelenítését szeretné, akkor kérje a GitHubon.",
"page-find-wallet-mobile": "Mobil",
- "page-find-wallet-mobile-desc": "Tárcák mobilalkalmazásokkal",
"page-find-wallet-desktop": "Asztali számítógép",
- "page-find-wallet-desktop-desc": "Tárcák asztali alkalmazásokkal",
"page-find-wallet-browser": "Böngésző",
- "page-find-wallet-browser-desc": "Tárcák böngészőbővítményekkel",
"page-find-wallet-device": "Eszköz",
- "page-find-choose-to-compare": "Válassza ki az összehasonlításhoz",
- "page-find-wallet-choose-features": "Válasszon a funkciók közül",
"page-find-wallet-reset-filters": "Szűrők törlése"
}
diff --git a/src/intl/hy-am/common.json b/src/intl/hy-am/common.json
index da82564ef3b..1636546e29b 100644
--- a/src/intl/hy-am/common.json
+++ b/src/intl/hy-am/common.json
@@ -1,17 +1,28 @@
{
- "account-abstraction": "Հաշվի աբստրակցիա",
"about-ethereum-org": "ethereum.org-ի մասին",
"about-us": "Մեր մասին",
+ "adding-desci-projects": "Desci նախագծերի ավելացում",
+ "adding-developer-tools": "Developer-ի գործիքների ավելացում",
+ "adding-exchanges": "Փոխանակումների ավելացում",
+ "adding-glossary-terms": "Բառարանի տերմինների ավելացում",
+ "adding-staking-products": "Staking պրոդուկտների ավելացում",
+ "adding-wallets": "Դրամապանակների ավելացում",
+ "account-abstraction": "Հաշվի աբստրակցիա",
+ "acknowledgements": "Երախտագիտություն",
"aria-toggle-search-button": "Միացնել որոնման կոճակը",
"aria-toggle-menu-button": "Միացնել որոնման կոճակը",
"beacon-chain": "Beacon Chain\n",
"bridges": "Բլոկչեյն կամուրջներ",
+ "build": "Կառուցում",
+ "build-menu": "Կառուցման ընտրացանկ",
"clear": "Պարզ",
"close": "Փակ",
"community": "Համայնք",
"community-hub": "Համայնքային հաբ",
"community-menu": "Համայնքի ընտրացանկ",
"contact": "Կոնտակտ",
+ "content-buckets": "Բովանդակության խմբեր",
+ "content-resources": "Բովանդակության ռեսուրսներ",
"content-standardization": "Բովանդակության ստանդարտացում",
"contributing": "Աջակցել",
"contributors": "Աջակցողներ",
@@ -20,14 +31,17 @@
"copied": "Պատճենվել է",
"copy": "Պատճենել",
"danksharding": "Danksharding",
- "dao-page": "Ապակենտրոնացված ինքնավար կազմակերպություններ (DAO)",
+ "dao-page": "DAO - Ապակենտրոնացված ինքնավար կազմակերպություններ",
"dark-mode": "Մութ",
"data-provided-by": "Տվյալների աղբյուր:",
- "decentralized-applications-dapps": "Ապակենտրոնացված հավելվածներ (dapps)",
+ "decentralized-applications-dapps": "Dapps - Ապակենտրոնացված հավելվածներ",
"decentralized-identity": "Ապակենտրոնացված ինքնություն",
"decentralized-social-networks": "Ապակենտրոնացված սոցիալական ցանցեր",
- "decentralized-science": "Ապակենտրոնացված գիտություն (DeSci)",
- "defi-page": "Ապակենտրոնացված ֆինանսներ (DeFi)",
+ "decentralized-science": "DeSci - Ապակենտրոնացված գիտություն",
+ "description": "Նավիգացիոն տարրի Նկարագրություն",
+ "defi-page": "DeFi - Ապակենտրոնացված ֆինանսներ",
+ "design": "Դիզայն",
+ "design-principles": "Դիզայնի սկզբունքներ",
"devcon": "Devcon",
"developers": "Ծրագրավորողներ",
"developers-home": "Ծրագրավորողների գլխավոր էջ",
@@ -51,7 +65,6 @@
"documentation": "Փաստաթղթեր",
"down": "Ներքև",
"ecosystem": "Էկոհամակարգ",
- "edit-page": "Edit page",
"ef-blog": "Ethereum հիմնադրամի բլոգ",
"eips": "Ethereum բարելավման առաջարկներ",
"energy-consumption": "Ethereum էներգիայի սպառումը",
@@ -59,11 +72,9 @@
"enterprise-menu": "Ձեռնարկությունների մենյու",
"esp": "Էկոհամակարգերի աջակցության ծրագիր",
"eth-current-price": "Ընթացիկ ETH գինը (ԱՄՆ դոլար)",
- "ethereum-basics": "Ethereum basics",
"ethereum-bug-bounty": "Էթերիում bug bounty ծրագիր",
"consensus-when-shipping": "Ե՞րբ է առաքվում:",
"ethereum-upgrades": "Էթերիումի բարելավումներ",
- "ethereum-brand-assets": "Ethereum brand assets",
"ethereum-online": "Առցանց համայնքներ",
"ethereum-events": "Էթերիումի իրադարձություններ",
"ethereum-foundation": "Էթերիում հիմնադրամ",
@@ -83,7 +94,7 @@
"feedback-card-prompt-tutorial": "Օգտակա՞ր էր այս ձեռնարկը:",
"feedback-widget-thank-you-title": "Շնորհակալություն արձագանքի համար:",
"feedback-widget-thank-you-subtitle": "Դարձրեք այս էջն էլ ավելի լավը՝ պատասխանելով մի քանի հարցերի:",
- "feedback-widget-thank-you-subtitle-ext": "Եթե օգնության կարիք ունեք, կարող եք դիմել համայնքին մեր Discord-ով:",
+ "feedback-widget-thank-you-subtitle-ext": "Եթե օգնության կարիք ունեք, կարող եք կապ հաստատել համայնքի հետ մեր Discord-ով։",
"feedback-widget-thank-you-timing": "2–3 րոպե",
"feedback-widget-thank-you-cta": "Բացեք կարճ հարցում",
"find-wallet": "Գտնել դրամապանակ",
@@ -94,11 +105,10 @@
"grants": "Դրամաշնորհներ",
"grant-programs": "Էկոհամակարգի դրամաշնորհային ծրագրեր",
"guides": "Էքսկուրսավարներ",
- "guides-hub": "Էքսկուրսավարների հանգույց",
+ "guides-hub": "«Ինչպես» ուղեցույցներ",
"history-of-ethereum": "Էթերիումի պատմություն",
"home": "Գլխավոր",
"how-ethereum-works": "Ինչպես է աշխատում Էթերիումը",
- "how-to-register-an-ethereum-account": "Ինչպես «գրանցել» Էթերիում հաշիվ",
"how-to-revoke-token-access": "Ինչպես չեղարկել խելացի պայմանագրի հասանելիությունը ձեր կրիպտո ֆոնդերին",
"how-to-swap-tokens": "Ինչպես փոխանակել նշանները",
"how-to-use-a-bridge": "Ինչպես կամրջել նշանները 2-րդ շերտին",
@@ -115,7 +125,6 @@
"last-edit": "Վերջին խմբագրումը",
"layer-2": "Շերտ 2",
"learn": "Սովորեք",
- "learn-by-coding": "Learn by coding",
"learn-hub": "Սովորել Հաբ",
"learn-menu": "Սովորել մենյու",
"learn-more": "Իմացեք ավելին",
@@ -128,11 +137,103 @@
"loading-error-try-again-later": "Չհաջողվեց բեռնել տվյալները: Փորձեք ավելի ուշ:",
"logo": "լոգոն",
"mainnet-ethereum": "Mainnet Էթերիում",
+ "merge": "Միացնել",
"more": "Ավելի շատ",
- "nav-developers": "Ծրագրավորողներ",
+ "nav-about-description": "Հանրային, բաց կոդով նախագիծ՝ Ethereum համայնքի համար",
+ "nav-advanced-description": "Սովորեք ավելի բարդ թեմաները",
+ "nav-advanced-label": "Ընդլայնված",
+ "nav-basics-description": "Հասկացեք Ethereum-ի հիմունքները",
+ "nav-basics-label": "Հիմունքներ",
+ "nav-bridges-description": "Web3-ը վերածվել է առաջնային L1 բլոկչեյնների և L2 մասշտաբային լուծումների էկոհամակարգի",
+ "nav-builders-home-description": "Ethereum-ի կառուցման ուղեցույց՝ մշակողներից, մշակողների համար",
+ "nav-builders-home-label": "Գլխավոր կառուցում",
+ "nav-contribute-description": "Եթե ցանկանում եք օգնել, սա ձեզ կառաջնորդի",
+ "nav-contribute-label": "Աջակցում ethereum.org-ին",
+ "nav-dao-description": "Անդամներին պատկանող համայնքներ՝ առանց կենտրոնացված լիազորությունների",
+ "nav-dapps-description": "Բացահայտեք Ethereum-ի միջոցով հավելվածների հարուստ էկոհամակարգը",
+ "nav-defi-description": "Համաշխարհային, բաց այլընտրանք ավանդական ֆինանսական շուկայի համար",
+ "nav-desci-description": "Գոյություն ունեցող գիտական համակարգի գլոբալ, բաց այլընտրանք",
+ "nav-desoc-description": "Բլոկչեյնի վրա հիմնված սոցիալական ներգրավվածության և բովանդակության ստեղծման հարթակներ",
"nav-developers-docs": "Մշակողների փաստաթղթեր",
+ "nav-developers": "Ծրագրավորողներ",
+ "nav-did-description": "Թողարկեք և տիրապետեք ձեր եզակի ապակենտրոնացված նույնացուցիչներին",
+ "nav-docs-description": "Փաստաթղթեր, որոնք կօգնեն ձեզ հասկանալ և կառուցել Ethereum-ի հետ աշխատանքը",
+ "nav-docs-design-description": "Web3 դիզայնի եզակի մարտահրավերների, լավագույն փորձի և օգտատերերի հետազոտության պատկերացումների նկարագրությունը",
+ "nav-docs-design-label": "UX/UI դիզայնի հիմունքներ",
+ "nav-docs-foundation-description": "Ethereum-ի զարգացման հիմնական սկզբունքները",
+ "nav-docs-overview-description": "Ձեր «Գլխավոր»-ը մշակողի փաստաթղթերի համար",
+ "nav-docs-stack-description": "Հասկացեք Ethereum Stack-ի բոլոր մանրամասները",
+ "nav-eip-description": "Ստանդարտներ, որոնք սահմանում են նոր գործառույթներ կամ գործընթացներ",
+ "nav-eip-label": "EIPs - Ethereum-ի բարելավման առաջարկներ",
+ "nav-emerging-description": "Ծանոթացեք Ethereum-ի այլ նոր օգտագործման դեպքերին",
+ "nav-enterprise-description": "Բիզնես հավելվածներ Ethereum-ի համար",
+ "nav-ethereum-org-description": "Այս կայքը հիմնված է համայնքի վրա, միացե՛ք մեզ և նույնպես նպաստե՛ք",
+ "nav-ethereum-wallets-description": "Հավելված՝ ձեր Ethereum հաշվի հետ փոխազդելու համար",
+ "nav-events-description": "Ապակենտրոնացում և մասնակցության ազատություն ցանկացածի համար",
+ "nav-events-irl-description": "Ամեն ամիս տեղի են ունենում Ethereum-ի խոշոր միջոցառումներ անմիջական մասնակցությամբ և առցանց",
+ "nav-events-label": "Համայնքներ և միջոցառումներ",
+ "nav-events-online-description": "Այս առցանց համայնքներում ապրում են հարյուր հազարավոր Ethereum էնտուզիաստներ",
+ "nav-find-wallet-description": "Դրամապանակները թույլ են տալիս օգտագործել կրիպտոարժույթ",
+ "nav-find-wallet-label": "Ընտրեք ձեր դրամապանակը",
+ "nav-gas-fees-description": "Ինչպե՞ս են հաշվարկվում ETH գործարքների պահումները",
+ "nav-get-eth-description": "Ethereum հավելվածներն օգտագործելու համար անհրաժեշտ է ether (ETH)",
+ "nav-get-started-description": "Ethereum-ի օգտագործման ձեր առաջին քայլերը",
+ "nav-governance-description": "Ethereum արձանագրության թարմացման հետ կապված գործընթաց",
+ "nav-grants-description": "Մեր համայնքի կողմից պատրաստված դրամաշնորհային ֆինանսավորման ծրագրեր տրամադրող ծրագրերի ցանկ",
+ "nav-guide-create-account-description": "Յուրաքանչյուրը կարող է ցանկացած պահի ստեղծել Ethereum հաշիվ՝ անվճար դրամապանակի հավելվածի միջոցով",
+ "nav-guide-revoke-access-description": "Ապահով մնացեք Ethereum էկոհամակարգում խելացի պայմանագրերի և ծրագրերի հետ գործակցելիս",
+ "nav-guide-revoke-access-label": "Ինչպես չեղարկել խելացի պայմանագրի մուտքը",
+ "nav-guide-use-wallet-description": "Իմացեք, թե ինչպես կառավարել դրամապանակի բոլոր հիմնական գործառույթները",
+ "nav-guide-use-wallet-label": "Ինչպես օգտվել դրամապանակից",
+ "nav-guides-description": "Գործնական քայլ առ քայլ ուղեցույցներ, որոնք կօգնեն Ձեզ սկսել",
+ "nav-guides-label": "«Ինչպես» ուղեցույցներ",
+ "nav-history-description": "Բոլոր հիմնական ֆորկերի և թարմացումների ժամանակացույց",
+ "nav-history-label": "Ethereum-ի տեխնիկական պատմությունը",
+ "nav-layer-2-description": "Ավելի էժան և արագ գործարքներ Ethereum-ի համար",
+ "nav-learn-by-coding-description": "Գործիքներ, որոնք կօգնեն ձեզ փորձարկել Ethereum-ը",
+ "nav-local-env-description": "Ընտրեք և կազմաձևեք ձեր Ethereum Development Stack-ը",
+ "nav-mainnet-description": "Ձեռնարկությունների բլոկչեյն ծրագրերը կարող են ստեղծվել հանրային հիմնական Ethereum Mainnet-ում:",
+ "nav-nft-description": "Ethereum-ի վրա հիմնված ակտիվի տեսքով եզակի բան ներկայացնելու միջոց",
+ "nav-open-research-description": "Ethereum-ի առաջնային ուժեղ կողմերից մեկը նրա ակտիվ հետազոտական համայնքն է",
+ "nav-open-research-label": "Բաց հետազոտություն",
+ "nav-overview-description": "Ethereum-ում կրթության հետ կապված ամեն ինչ",
+ "nav-participate-overview-description": "Ակնարկ, թե ինչպես մասնակցել",
"nav-primary": "Առաջնային",
- "nft-page": "Չփոխարինելի նշաններ (NFT)",
+ "nav-quizzes-description": "Պարզեք, թե որքան լավ եք տիրապետում Ethereum-ին և կրիպտոարժույթներին",
+ "nav-quizzes-label": "Ստուգեք Ձեր գիտելիքները",
+ "nav-refi-description": "Այլընտրանքային տնտեսական համակարգ՝ հիմնված վերականգնողական սկզբունքների վրա",
+ "nav-research-description": "Ethereum-ի բարելավման համար օգտագործվող գործընթացները",
+ "nav-research-label": "Հետազոտություն և զարգացում",
+ "nav-roadmap-description": "Ethereum-ի ավելի մեծ մասշտաբայնության, անվտանգության և կայունության ուղին",
+ "nav-roadmap-future-description": "Ethereum-ի ամրապնդումը՝ որպես հուսալի և ապակենտրոնացված ցանց",
+ "nav-roadmap-future-label": "Ապագայի պաշտպանություն",
+ "nav-roadmap-label": "Ճանապարհային քարտեզ",
+ "nav-roadmap-scaling-description": "Ցանցի թարմացումներ՝ գործարքների ծախսերն ու արագությունը հետագայում նվազեցնելու համար",
+ "nav-roadmap-security-description": "Համոզվելով, որ Ethereum-ը մնում է կայուն բոլոր տեսակի հարձակումներին ապագայում",
+ "nav-roadmap-security-label": "Բարելավված անվտանգություն",
+ "nav-roadmap-ux-description": "Ethereum-ի օգտագործումը պետք է հեշտացվի",
+ "nav-run-a-node-description": "Դարձեք լիովին ինքնիշխան՝ օգնելով պաշտպանել ցանցը",
+ "nav-security-description": "Իմացեք կրիպտոարժույթի օգտագործման լավագույն փորձը",
+ "nav-smart-contracts-description": "Ethereum էկոհամակարգի հիմնարար հիմքերը",
+ "nav-stablecoins-description": "Stablecoin-ները Ethereum նշաններ են, որոնք նախատեսված են ֆիքսված արժեքի վրա մնալու համար",
+ "nav-stake-description": "Ստացեք պարգևներ՝ Ethereum-ի պաշտպանությունը ապահովելու համար",
+ "nav-stake-label": "Խաղադրույք",
+ "nav-staking-home-description": "Խաղադրույքի տարբեր տարբերակների ակնարկ",
+ "nav-staking-pool-description": "Խաղադրույք կատարեք և ստացեք պարգևներ ցանկացած քանակությամբ ETH-ի հետ՝ միանալով ուրիշներին",
+ "nav-staking-pool-label": "Միավորված խաղադրույք",
+ "nav-staking-saas-label": "Խաղադրույք՝ ծառայության միջոցով",
+ "nav-staking-solo-label": "Միայնակ խաղադրույք",
+ "nav-start-building-description": "Օգտակար տեղեկություններ սկսնակների համար",
+ "nav-translation-program-description": "Թարգմանչական համագործակցություն ethereum.org-ի հետ բոլոր լեզուներով",
+ "nav-tutorials-description": "Համայնքի ուղեցույցների համադրված ցուցակ",
+ "nav-use-cases-description": "Բացահայտեք Ethereum-ի օգտագործման տարբեր գաղափարները",
+ "nav-what-is-ether-description": "Ethereum հավելվածների արժույթը",
+ "nav-what-is-ethereum-description": "Հասկացեք, թե ինչն է առանձնահատուկ դարձնում Ethereum-ը",
+ "nav-what-is-web3-label": "Ինչ է Web3-ը:",
+ "nav-what-is-web3-description": "Կանոններ թելադրող կենտրոնացված մենաշնորհների այլընտրանք",
+ "nav-whitepaper-description": "Ethereum-ի բնօրինակ տեխնիկական փաստաթուղթը, որը գրվել է Վիտալիկ Բուտերինի կողմից 2014 թվականին",
+ "nav-zkp-description": "Հայտարարության վավերականությունն ապացուցելու միջոց՝ առանց բուն հայտարարությունը բացահայտելու",
+ "nft-page": "NFT - Չփոխարինելի նշաններ",
"nfts": "NFT-ներ",
"no": "Ոչ",
"on-this-page": "Այս էջում",
@@ -140,6 +241,7 @@
"page-developers-aria-label": "Մշակողների մենյու",
"page-index-meta-title": "Գլխավոր",
"page-last-updated": "Էջը վերջին անգամ թարմացվել է",
+ "participate-menu": "Մասնակցության ընտրացանկ",
"pbs": "Առաջարկող-շինարար տարանջատում",
"pools": "Միավորված խաղադրույք",
"privacy-policy": "Գաղտնիության քաղաքականություն",
@@ -150,13 +252,12 @@
"refresh": "Խնդրում ենք թարմացնել էջը։",
"return-home": "Վերադառնալ տուն",
"roadmap": "Ethereum ճանապարհային քարտեզ",
+ "research": "Հետազոտություն",
+ "research-menu": "Հետազոտության ցանկ",
"resources": "Թարգմանչական ռեսուրսներ",
- "regenerative-finance": "Ռեգեներատիվ ֆինանսներ (ՌեՖի)",
- "run-a-node": "Run a node",
- "rollup-component-website": "Website",
+ "regenerative-finance": "ՌեՖի - Ռեգեներատիվ ֆինանսներ",
"rollup-component-developer-docs": "Մշակողի փաստաթղթեր",
"rollup-component-technology-and-risk-summary": "Տեխնոլոգիաների և ռիսկերի ամփոփում",
- "scaling": "Scaling",
"saas": "Խաղադրույքը որպես ծառայություն",
"search": "Որոնում",
"search-ethereum-org": "Որոնեք ethereum.org",
@@ -167,19 +268,14 @@
"single-slot-finality": "Մեկ բնիկ վերջնականություն",
"statelessness": "Քաղաքացիություն չունեցողություն",
"see-contributors": "Տես մասնակիցները",
- "set-up-local-env": "Set up local environment",
- "sharding": "Sharding",
"show-all": "Ցույց տալ ամբողջը",
"show-less": "Ցույց տալ ավելի քիչ",
"site-description": "Ethereum՝ գլոբալ, ապակենտրոնացված հարթակ փողերի կիրառման և նոր տեսակի հավելվածներ ստեղծելու համար։ Ethereum-ի շնորհիվ դուք կարողեք գրել կոդ, որը կարող է կառավարել գումարներ, և ստեղծել հավելվածներ հասանելի ամբողջ աշխարհում։",
- "site-title": "ethereum.org",
"skip-to-main-content": "Անցեք հիմնական բովանդակությանը",
- "smart-contracts": "Smart contracts",
"stablecoins": "Ստեյբլքոիներ",
"stake-eth": "Էթեր (ETH) ավանդ դրեք",
"staking": "Ցուցադրում",
"start-here": "Սկսիր այստեղ",
- "style-guide": "Style guide",
"solo": "Միայնակ խաղադրույք",
"terms-of-use": "Օգտվելու կանոններ",
"translation-banner-body-new": "Դուք դիտում եք այս էջը անգլերեն, քանի որ մենք դեռ չենք թարգմանել այն: Օգնեք մեզ թարգմանել այս բովանդակությունը:",
@@ -191,20 +287,21 @@
"translation-banner-no-bugs-title": "Այստեղ սխալներ չկան:",
"translation-banner-no-bugs-content": "Այս էջը չի թարգմանվում: Մենք միտումնավոր թողել ենք այս էջը անգլերենով:",
"translation-banner-no-bugs-dont-show-again": "Այլևս ցույց մի տուր",
+ "translation-program": "Թարգմանչական ծրագիր",
"try-using-search": "Փորձեք օգտագործել որոնումը` գտնելու այն, ինչ փնտրում եք կամ",
"tutorials": "Ձեռնարկներ",
"up": "Վերև",
+ "use": "Օգտագործում",
"use-ethereum": "Օգտագործեք Էթերիում",
"use-ethereum-menu": "Օգտագործեք Ethereum ընտրացանկը",
- "user-experience": "User experience",
+ "use-menu": "Օգտագործման ցանկ",
"verkle-trees": "Վերկլի ծառեր",
"wallets": "Դրամապանակներ",
"we-couldnt-find-that-page": "Մենք չկարողացանք գտնել այդ էջը",
"web3": "Ինչ է Web3-ը:",
- "web3-title": "Web3",
"website-last-updated": "Կայքը վերջին անգամ թարմացվել է",
"what-is-ether": "Ի՞նչ է Էթերը (ETH):",
- "what-is-ethereum": "Ի՞նչ է Ethereum-ը",
+ "what-is-ethereum": "Ի՞նչ է Էթերիումը",
"withdrawals": "Գումարի դուրսբերումներ",
"yes": "Այո՛",
"zero-knowledge-proofs": "Զրոյական գիտելիքի ապացույցներ"
diff --git a/src/intl/hy-am/page-languages.json b/src/intl/hy-am/page-languages.json
index 8bbe075c318..f5a8b9f953c 100644
--- a/src/intl/hy-am/page-languages.json
+++ b/src/intl/hy-am/page-languages.json
@@ -1,8 +1,73 @@
{
+ "page-languages-h1": "Լեզվի աջակցություն",
+ "page-languages-interested": "Հետաքրքրվա՞ծ եք ներդրում կատարելով",
+ "page-languages-learn-more": "Իմացեք ավելին մեր Թարգմանչական ծրագրի մասին",
+ "page-languages-meta-desc": "Ethereum.org-ի բոլոր աջակցվող լեզուների աղբյուրները և որպես թարգմանիչ ներգրավվելու ուղիները:",
+ "page-languages-meta-title": "ethereum.org Լեզուների թարգմանություններ",
+ "page-languages-p1": "Ethereum-ը գլոբալ նախագիծ է, և շատ կարևոր է, որ ethereum.org-ը հասանելի լինի բոլորի համար՝ անկախ նրանց ազգությունից և լեզվից: Մեր համայնքը քրտնաջան աշխատել է այս տեսլականն իրականություն դարձնելու համար:",
+ "page-languages-translations-available": "ethereum.org-ը հասանելի է հետևյալ լեզուներով",
+ "page-languages-resources-paragraph": "Բացի ethereum.org-ի բովանդակությունը թարգմանելուց, մենք նաև պահպանում ենք",
+ "page-languages-resources-link": "Ethereum-ի ռեսուրսների համադրված ցանկը շատ լեզուներով",
+ "page-languages-want-more-header": "Ցանկանո՞ւմ եք տեսնել ethereum.org-ը այլ լեզվով:",
+ "page-languages-want-more-link": "Թարգմանչական ծրագիր",
+ "page-languages-want-more-paragraph": "ethereum.org-ի թարգմանիչները միշտ էջեր են թարգմանում հնարավորինս շատ լեզուներով: Տեսնելու համար, թե ինչի վրա են նրանք աշխատում այս պահին կամ նրանց միանալու նպատակով գրանցվելու համար, կարդացեք մեր մասին",
"page-languages-filter-label": "Զտիչների ցուցակ",
"page-languages-filter-placeholder": "Մուտքագրեք՝ զտման համար",
"page-languages-browser-default": "Հիմնական զննարկիչ",
"page-languages-translated": "թարգմանված",
"page-languages-words": "բառեր",
- "page-languages-recruit-community": "Օգնեք մեզ թարգմանել ethereum.org-ը:"
+ "page-languages-recruit-community": "Օգնեք մեզ թարգմանել ethereum.org-ը:",
+ "langauge-am": "Ամհարերեն",
+ "language-ar": "Արաբերեն",
+ "language-az": "Ադրբեջաներեն",
+ "langauge-be": "Բելառուսերեն",
+ "language-bg": "Բուլղարերեն",
+ "language-bn": "Բենգալերեն",
+ "language-bs": "Բոսնիերեն",
+ "language-ca": "Կատալոներեն",
+ "language-da": "Դանիերեն",
+ "language-el": "Հունարեն",
+ "language-en": "Անգլերեն",
+ "language-fa": "Պարսկերեն",
+ "language-fi": "Ֆիններեն",
+ "language-gl": "Գալիսերեն",
+ "language-gu": "Գուջարաթի",
+ "language-he": "Եբրայերեն",
+ "language-hi": "Հինդի",
+ "language-hr": "Խորվաթերեն",
+ "language-hu": "Հունգարերեն",
+ "language-hy-am": "Հայերեն",
+ "language-id": "Ինդոնեզերեն",
+ "language-ig": "Իգբո",
+ "language-ka": "Վրացերեն",
+ "language-kk": "Ղազախերեն",
+ "language-km": "Քմերերեն",
+ "language-kn": "Կաննադա",
+ "language-ko": "Կորեերեն",
+ "language-lt": "Լիտվերեն",
+ "language-ml": "Մալայալամ",
+ "language-mr": "Մարաթի",
+ "language-ms": "Մալայերեն",
+ "language-nb": "Նորվեգերեն",
+ "language-ne-np": "Նեպալերեն",
+ "language-nl": "Հոլանդերեն",
+ "language-pcm": "Նիգերիական Պիջին",
+ "language-fil": "Ֆիլիպիներեն",
+ "language-pl": "Լեհերեն",
+ "language-pt": "Պորտուգալերեն",
+ "language-pt-br": "Պորտուգալերեն (Բրազիլական)",
+ "language-ro": "Ռումիներեն",
+ "language-se": "Շվեդերեն",
+ "language-sk": "Սլովակերեն",
+ "language-sl": "Սլովեներեն",
+ "language-sr": "Սերբերեն",
+ "language-sw": "Սուահիլի",
+ "language-ta": "Թամիլերեն",
+ "language-th": "Թայերեն",
+ "language-tk": "Թուրքմեներեն",
+ "language-uk": "Ուկրաիներեն",
+ "language-ur": "Ուրդու",
+ "language-uz": "Ուզբեկերեն",
+ "language-zh": "Պարզեցված չինարեն",
+ "language-zh-tw": "Ավանդական չինարեն"
}
diff --git a/src/intl/hy-am/page-wallets-find-wallet.json b/src/intl/hy-am/page-wallets-find-wallet.json
index 9f908097ccf..f3796c8725d 100644
--- a/src/intl/hy-am/page-wallets-find-wallet.json
+++ b/src/intl/hy-am/page-wallets-find-wallet.json
@@ -7,7 +7,6 @@
"page-find-wallet-meta-title": "Գտնել Էթերիումի դրամապանակ",
"page-find-wallet-title": "Գտնել դրամապանակ",
"page-find-wallet-try-removing": "Փորձեք հեռացնել մեկ կամ երկու գործառույթ",
- "page-find-wallet-choose-to-compare": "Ընտրեք համեմատելու համար",
"page-stake-eth": "Էթեր (ETH) ավանդ դրեք",
"page-find-wallet-open-source": "Open source",
"page-find-wallet-open-source-desc": "Բաց հասանելիությամբ ծրագիրը հնարավորություն է տալիս ցանկացած անձի կատարել հավելվածի ամբողջականության և անվտանգության աուդիտ",
@@ -16,8 +15,6 @@
"page-find-wallet-non-custodial-desc": "Դրամապանակներ, որոնք չեն վերահսկում Ձեր գաղտնի բանալին (անգլ. private key)",
"page-find-wallet-hardware-wallet-support": "Ֆիզիկական դրամապանակին միանալու հնարավորություն",
"page-find-wallet-hardware-wallet-support-desc": "Դրամապանակներ, որոնք կարող են միանալ ֆիզիկական դրամապանակի հետ ավելի լավ անվտանգության համար",
- "page-find-wallet-walletconnect": "WalletConnect",
- "page-find-wallet-walletconnect-desc": "Դրամապանակներ, որոնք աշխատում են WalletConnect գործիքի հետ ապ-հավելվածներին (dapps) միանալու համար",
"page-find-wallet-rpc-importing": "RPC ներմուծում",
"page-find-wallet-rpc-importing-desc": "Դրամապանակներ, որոնք աշխատում են ցանկացած RPC վերջնակետերի հետ տարբեր հանգույցների կամ ցանցերի հետ միանալու համար",
"page-find-wallet-nft-support": "NFT աջակցություն",
@@ -36,8 +33,6 @@
"page-find-wallet-ens-support-desc": "Դրամապանակներ, որոնցում կա Էթերիումի անվանական ծառայություն (ԷԱԾ, անգլ. ENS)",
"page-find-wallet-token-importing": "Տոկենի ներմուծում",
"page-find-wallet-token-importing-desc": "Ներմուծեք ցանկացած ERC-20 տոկեն Ձեր դրամապանակում օգտվելու համար",
- "page-find-wallet-fee-optimization": "Վճարի օպտիմիզացիա",
- "page-find-wallet-fee-optimization-desc": "Օգտվեք երկրորդ տիպի փոխանցումներից, օպտիմիզացված գազի վճարումների և չօգտագործված գազի գումարի հետ վճարման համար",
"page-find-wallet-buy-crypto": "Գնեք կրիպտոարժույթ",
"page-find-wallet-buy-crypto-desc": "Գնեք կրիպտոարժույթ ֆիատային արժույթով ուղղակիորեն դրամապանակից \n *Հուշում. Կրիպտոարժույթը առքը կարող է լինել բնակության վայրից",
"page-find-wallet-sell-for-fiat": "Վաճառեք ֆիատային արժույթի դիմաց",
@@ -46,7 +41,6 @@
"page-find-wallet-multisig-desc": "Դրամապանակներ, որոնք պահանջում են մեկից ավել ստորագրություններ փոխանցումը լիազորելու համար",
"page-find-wallet-social-recovery": "Սոցիալական վերականգնում",
"page-find-wallet-social-recovery-desc": "Դրամապանակներ, որոնք թույլ են տալիս պահապաններին փոփոխել խելացի պայմանագրերի դրամապանակների ստորագրության բանալին",
- "page-find-wallet-token-support": "Տոկենների աջակցման",
"page-find-wallet-features": "Features",
"page-find-wallet-security": "Security",
"page-find-wallet-smart-contract": "Smart contract",
@@ -63,7 +57,6 @@
"page-find-wallet-chromium": "Chromium",
"page-find-wallet-firefox": "Firefox",
"page-find-wallet-hardware": "Hardware",
- "page-find-wallet-hardware-desc": "Էլեկտրոնային դրամապանակները",
"page-find-wallet-new-to-crypto-title": "Նորույթ կրիպտոարժույթում",
"page-find-wallet-new-to-crypto-desc": "Դուք սկսնակ օգտատեր եք, ով ընտրում է իր համար առաջին դրամապանակը",
"page-find-wallet-nfts-title": "NFT-ներ",
@@ -74,21 +67,13 @@
"page-find-wallet-finance-desc": "Դուք DeFi (ապակենտրոնացված ֆինանսներ) օգտատեր եք և ուզում եք դրամապանակ, որը կկարողան միանալ ապ-ֆինանսական հավելվածներին",
"page-find-wallet-developer-title": "Ծրագրավորող",
"page-find-wallet-developer-desc": "Դուք ծրագրավորող եք և հավելվածները ստեղծելու ու թեստավորելու նպատակով դրամապանակի կարիք ունեք",
- "page-find-wallet-persona-desc": "Ընտրեք Ձեր նախասիրություններին առավել հարմար տարբերակը",
"page-find-wallet-filters": "Ֆիլտրներ",
"page-find-wallet-active": "ակտիվ",
- "page-find-wallet-profile-filters": "Պրոֆիլային ֆիլտրներ",
- "page-find-wallet-feature-filters": "Հատկանիշային ֆիլտրներ",
"page-find-wallet-footnote-1": "Այս էջում նշված դրամապանակների անունները տրվել են միմիայն տեղեկատվական նպատակներով:",
"page-find-wallet-footnote-2": "Դրանց նկարագրությունը տրվել է դրանց հիմքում ընկած նախագծերի կողմից",
"page-find-wallet-footnote-3": "Մենք արտադրանքի անուն ավելացնում ենք հիմնվելով ցուցակագրման քաղաքականության չափանիշների վրա: Եթե ցանկանում եք, որ մենք այդ ցուցակում որևէ դրամապանակ ավելացնենք Գիթհաբում բարձրացրեք այդ հարցը:",
"page-find-wallet-mobile": "Բջջային",
- "page-find-wallet-mobile-desc": "Բջջային հավելվածներով Դրամապանակներ",
"page-find-wallet-desktop": "Դեսքթոփ",
- "page-find-wallet-desktop-desc": "Դեքսթոփ հավելվածով դրամապանակներ",
"page-find-wallet-browser": "Բրաուզեր",
- "page-find-wallet-browser-desc": "Բրաուզերային ընդարձակումով դրամապանակներ",
- "page-find-wallet-device": "Սարքը",
- "page-find-choose-to-compare": "Ընտրեք համեմատելու համար",
- "page-find-wallet-choose-features": "Նշել հատկանիշները"
+ "page-find-wallet-device": "Սարքը"
}
diff --git a/src/intl/id/common.json b/src/intl/id/common.json
index 44654ca12da..45af554f267 100644
--- a/src/intl/id/common.json
+++ b/src/intl/id/common.json
@@ -1,17 +1,30 @@
{
- "account-abstraction": "Abstraksi akun",
"about-ethereum-org": "Tentang ethereum.org",
"about-us": "Tentang kami",
+ "adding-desci-projects": "Menambahkan Proyek Desci",
+ "adding-developer-tools": "Menambahkan Perangkat Pengembang",
+ "adding-exchanges": "Menambahkan Bursa",
+ "adding-glossary-terms": "Menambahkan Istilah Glosarium",
+ "adding-products": "Menambahkan Produk",
+ "adding-staking-products": "Menambahkan Produk Penaruhan",
+ "adding-wallets": "Menambahkan Dompet",
+ "account-abstraction": "Abstraksi akun",
+ "acknowledgements": "Penghargaan",
"aria-toggle-search-button": "Tombol pencarian toggle",
"aria-toggle-menu-button": "Tombol menu toggle",
"beacon-chain": "Rantai Suar",
"bridges": "Jembatan blockchain",
+ "bug-bounty": "Hadiah bounty",
+ "build": "Bangun",
+ "build-menu": "Bangun menu",
"clear": "Menghapus",
"close": "Tutup",
"community": "Komunitas",
"community-hub": "Hub komunitas",
"community-menu": "Menu Komunitas",
"contact": "Kontak",
+ "content-buckets": "Kategori Konten",
+ "content-resources": "Sumber Daya Konten",
"content-standardization": "Standardisasi konten",
"contributing": "Berkontribusi",
"contributors": "Kontributor",
@@ -20,14 +33,17 @@
"copied": "Disalin",
"copy": "Salin",
"danksharding": "Danksharding",
- "dao-page": "Organisasi otonom terdesentralisasi (DAO)",
+ "dao-page": "DAO - Organisasi otonom terdesentralisasi",
"dark-mode": "Gelap",
"data-provided-by": "Sumber data:",
- "decentralized-applications-dapps": "Decentralized applications (dapp)",
+ "decentralized-applications-dapps": "Dapp - Decentralized applications",
"decentralized-identity": "Identitas terdesentralisasi",
"decentralized-social-networks": "Jaringan sosial terdesentralisasi",
- "decentralized-science": "Sains terdesentralisasi (DeSci)",
- "defi-page": "Keuangan terdesentralisasi (DeFi)",
+ "decentralized-science": "DeSci - Sains terdesentralisasi",
+ "description": "Deskripsi untuk item navigasi",
+ "defi-page": "DeFi - Keuangan terdesentralisasi",
+ "design": "Desain",
+ "design-principles": "Prinsip Desain",
"devcon": "Devcon",
"developers": "Pengembang",
"developers-home": "Beranda Pengembang",
@@ -63,15 +79,15 @@
"ethereum-bug-bounty": "Program bug hadiah bounty Ethereum",
"consensus-when-shipping": "Kapan pengirimannya?",
"ethereum-upgrades": "Peningkatan Ethereum",
- "ethereum-brand-assets": "Aset Merek Ethereum",
+ "ethereum-brand-assets": "Aset merek Ethereum",
"ethereum-online": "Komunitas daring",
"ethereum-events": "Aksi Ethereum",
"ethereum-foundation": "Yayasan Ethereum",
"ethereum-foundation-logo": "Logo Yayasan Ethereum",
"ethereum-glossary": "Glosarium Ethereum",
- "ethereum-governance": "Tata Kelola Ethereum",
+ "ethereum-governance": "Pemerintahan Ethereum",
"ethereum-logo": "Logo Ethereum",
- "ethereum-roadmap": "Rencana pengembangan Ethereum",
+ "ethereum-roadmap": "Peta Perjalanan Ethereum",
"ethereum-protocol": "Protokol Ethereum",
"ethereum-security": "Keamanan dan pencegahan penipuan Ethereum",
"ethereum-support": "Dukungan Ethereum",
@@ -83,7 +99,7 @@
"feedback-card-prompt-tutorial": "Apakah tutorial ini membantu?",
"feedback-widget-thank-you-title": "Terima kasih atas umpan baliknya!",
"feedback-widget-thank-you-subtitle": "Jadikan halaman ini lebih baik lagi dengan menjawab beberapa pertanyaan.",
- "feedback-widget-thank-you-subtitle-ext": "Jika butuh bantuan, Anda bisa menghubungi komunitas di Discord kami.",
+ "feedback-widget-thank-you-subtitle-ext": "Jika butuh bantuan, Anda dapat menghubungi komunitas di Discord kami.",
"feedback-widget-thank-you-timing": "2–3 menit",
"feedback-widget-thank-you-cta": "Buka survei singkat",
"find-wallet": "Temukan dompet",
@@ -94,11 +110,11 @@
"grants": "Hibah",
"grant-programs": "Program Hibah Ekosistem",
"guides": "Panduan",
- "guides-hub": "Hub panduan",
+ "guides-hub": "Panduan Langkah demi Langkah",
"history-of-ethereum": "Riwayat Ethereum",
"home": "Beranda",
"how-ethereum-works": "Cara kerja Ethereum",
- "how-to-register-an-ethereum-account": "Cara \"mendaftarkan\" akun Ethereum",
+ "how-to-create-an-ethereum-account": "Cara \"membuat\" akun Ethereum",
"how-to-revoke-token-access": "Cara mencabut akses kontrak pintar ke dana kripto Anda",
"how-to-swap-tokens": "Cara menukar token",
"how-to-use-a-bridge": "Cara bridge token ke lapisan ke-2",
@@ -128,11 +144,117 @@
"loading-error-try-again-later": "Tidak dapat memuat data. Coba lagi nanti.",
"logo": "logo",
"mainnet-ethereum": "Ethereum Jaringan Utama",
+ "merge": "Gabungkan",
"more": "Lebih Banyak",
- "nav-developers": "Pengembang",
+ "nav-about-description": "Proyek publik sumber terbuka untuk komunitas Ethereum",
+ "nav-advanced-description": "Pelajari topik yang lebih kompleks",
+ "nav-advanced-label": "Tingkat Lanjut",
+ "nav-basics-description": "Pahami dasar-dasar Ethereum",
+ "nav-basics-label": "Dasar-dasar",
+ "nav-bridges-description": "Web3 telah berevolusi menjadi ekosistem blockchain L1 utama dan solusi penskalaan L2",
+ "nav-builders-home-description": "Panduan pembangun untuk Ethereum—oleh pembangun, untuk pembangun",
+ "nav-builders-home-label": "Beranda pembangun",
+ "nav-contribute-description": "Jika Anda ingin membantu, ini akan memandu Anda",
+ "nav-contribute-label": "Berkontribusi pada ethereum.org",
+ "nav-dao-description": "Komunitas milik anggota tanpa otoritas terpusat",
+ "nav-dapps-description": "Jelajahi eskosistem aplikasi yang kaya menggunakan Ethereum",
+ "nav-defi-description": "Alternatif global dan terbuka untuk pasar keuangan tradisional",
+ "nav-desci-description": "Alternatif global dan terbuka untuk sistem ilmiah saat ini",
+ "nav-desoc-description": "Platform berbasis blockchain untuk interaksi sosial dan pembuatan konten",
"nav-developers-docs": "Dokumen pengembang",
+ "nav-developers": "Pengembang",
+ "nav-did-description": "Terbitkan dan miliki tanda pengenal terdesentralisasi yang unik",
+ "nav-docs-description": "Dokumen untuk membantu Anda memahami dan membangun dengan Ethereum",
+ "nav-docs-design-description": "Deskripsi tantangan desain web3 yang unik, praktik terbaik, dan wawasan penelitian pengguna",
+ "nav-docs-design-label": "Dasar-dasar desain UX/UI",
+ "nav-docs-foundation-description": "Dasar-dasar inti yang perlu dikembangkan di Ethereum",
+ "nav-docs-foundation-label": "Topik dasar",
+ "nav-docs-overview-description": "Beranda Anda untuk dokumen pengembang",
+ "nav-docs-stack-description": "Pahami semua detail tentang tumpukan Ethereum",
+ "nav-docs-stack-label": "Tumpukan Ethereum",
+ "nav-eip-description": "Standar yang menentukan fitur atau proses baru",
+ "nav-eip-label": "EIP - Proposal peningkatan Ethereum",
+ "nav-emerging-description": "Kenali kasus penggunaan baru lainnya untuk Ethereum",
+ "nav-emerging-label": "Kasus penggunaan yang muncul",
+ "nav-enterprise-description": "Aplikasi bisnis untuk Ethereum",
+ "nav-ethereum-org-description": "Situs web ini digerakkan oleh komunitas—bergabunglah dengan kami dan berkontribusi juga",
+ "nav-ethereum-wallets-description": "Aplikasi untk berinteraksi dengan akun Ethereum Anda",
+ "nav-events-description": "Desentralisasi dan kebebasan untuk berpartisipasi bagi siapa saja",
+ "nav-events-irl-description": "Setiap bulan ada aksi besar Ethereum yang berlangsung secara langsung dan online",
+ "nav-events-label": "Komunitas dan aksi",
+ "nav-events-online-description": "Ratusan ribu penggemar Ethereum berkumpul dalam komunitas online ini",
+ "nav-find-wallet-description": "Dompet memungkinkan Anda untuk menggunakan kripto",
+ "nav-find-wallet-label": "Pilih dompet Anda",
+ "nav-gas-fees-description": "Bagaimana cara menghitung biaya transaksi ETH",
+ "nav-gas-fees-label": "Biaya gas",
+ "nav-get-eth-description": "Anda membutuhkan ether (ETH) untuk menggunakan aplikasi Ethereum",
+ "nav-get-started-description": "Langkah pertama Anda untuk menggunakan Ethereum",
+ "nav-governance-description": "Proses yang dilibatkan dalam peningkatan protokol Ethereum",
+ "nav-governance-label": "Tata Kelola",
+ "nav-grants-description": "Daftar yang dipilih oleh komunitas kami mengenai proyek yang menyediakan program pendanaan hibah",
+ "nav-guide-create-account-description": "Siapa pun bisa membuat akun Ethereum kapan saja, secara gratis dengan aplikasi dompet",
+ "nav-guide-create-account-label": "Cara membuat akun Ethereum",
+ "nav-guide-revoke-access-description": "Tetap aman saat berinteraksi dengan kontrak pintar dan aplikasi di ekosistem Ethereum",
+ "nav-guide-revoke-access-label": "Cara mencabut akses kontrak pintar",
+ "nav-guide-use-wallet-description": "Pelajari cara mengoperasikan semua fungsi dasar dompet",
+ "nav-guide-use-wallet-label": "Cara menggunakan dompet",
+ "nav-guides-description": "Panduan langkah demi langkah praktis untuk membantu Anda memulai",
+ "nav-guides-label": "Cara memandu",
+ "nav-history-description": "Linimasa semua garpu dan pembaruan besar",
+ "nav-history-label": "Riwayat teknis Ethereum",
+ "nav-layer-2-description": "Transaksi yang lebih murah dan lebih cepat untuk Ethereum",
+ "nav-learn-by-coding-description": "Alat yang membantu Anda bereksperimen dengan Ethereum",
+ "nav-local-env-description": "Pilih dan siapkan tumpukan pengembangan Ethereum Anda",
+ "nav-mainnet-description": "Aplikasi blockchain perusahaan dapat dibuat di Jaringan Utama Ethereum publik",
+ "nav-nft-description": "Cara untuk mewakili apa pun yang unik sebagai aset berbasis Ethereum",
+ "nav-open-research-description": "Salah satu kekuatan utama Ethereum adalah komunitas penelitiannya yang aktif",
+ "nav-open-research-label": "Buka penelitian",
+ "nav-overview-description": "Semua hal tentang pendidikan Ethereum",
+ "nav-overview-label": "Gambaran umum",
+ "nav-participate-overview-description": "Gambaran umum tentang cara berpartisipasi",
"nav-primary": "Utama",
- "nft-page": "Token yang tidak dapat dipertukarkan (NFT)",
+ "nav-private-description": "Sumber daya pengembang untuk Ethereum perusahaan privat",
+ "nav-quizzes-description": "Cari tahu seberapa baik Anda memahami Ethereum dan mata uang kripto",
+ "nav-quizzes-label": "Uji pengetahuan Anda",
+ "nav-refi-description": "Sistem ekonomi alternatif dibuat berdasarkan prinsip-prinsip regeneratif",
+ "nav-research-description": "Proses yang digunakan untuk meningkatkan kualitas Ethereum",
+ "nav-research-label": "Penelitian dan pengembangan",
+ "nav-roadmap-description": "Jalan menuju peningkatan skalabilitas, keamanan, dan keberlanjutan Ethereum",
+ "nav-roadmap-future-description": "Memperkuat Ethereum sebagai jaringan yang kuat dan terdesentralisasi",
+ "nav-roadmap-future-label": "Proofing masa depan",
+ "nav-roadmap-label": "Rencana kerja",
+ "nav-roadmap-scaling-description": "Pembaruan jaringan untuk lebih mengurangi biaya dan kecepatan transaksi",
+ "nav-roadmap-scaling-label": "Transaksi yang lebih murah",
+ "nav-roadmap-security-description": "Memastikan Ethereum tetap tangguh terhadap segala jenis serangan di masa mendatang",
+ "nav-roadmap-security-label": "Peningkatan keamanan",
+ "nav-roadmap-ux-description": "Penggunaan Ethereum perlu disederhanakan",
+ "nav-roadmap-ux-label": "Pengalaman pengguna yang lebih baik",
+ "nav-run-a-node-description": "Menjadi berdaulat sepenuhnya sembari membantu mengamankan jaringan",
+ "nav-security-description": "Pelajari praktik terbaik saat menggunakan mata uang kripto",
+ "nav-smart-contracts-description": "Dasar-dasar blok pembangun ekosistem Ethereum",
+ "nav-stablecoins-description": "Stablecoin adalah token Ethereum yang dirancang agar tetap pada nilai tetap",
+ "nav-stake-description": "Dapatkan imbalan untuk mengamankan Ethereum",
+ "nav-stake-label": "Taruhan",
+ "nav-staking-home-description": "Gambaran umum berbagai opsi untuk penaruhan",
+ "nav-staking-home-label": "Penaruhan di beranda",
+ "nav-staking-pool-description": "Pasang taruhan dan dapatkan imbalan sejumlah ETH dengan bergabung dengan yang lain",
+ "nav-staking-pool-label": "Penaruhan pool",
+ "nav-staking-saas-description": "Operator simpul pihak ketiga menangani operasi dari klien validator Anda",
+ "nav-staking-saas-label": "Penaruhan dengan layanan",
+ "nav-staking-solo-description": "Jalankan perangkat keras di beranda dan secara pribadi berkontribusi pada keamanan dan desentralisasi jaringan Ethereum",
+ "nav-staking-solo-label": "Penaruhan solo",
+ "nav-start-building-description": "Informasi yang berguna bagi pendatang baru",
+ "nav-translation-program-description": "Upaya kolaboratif untuk menerjemahkan ethereum.org ke semua bahasa",
+ "nav-tutorials-description": "Daftar pilihan tutorial komunitas",
+ "nav-use-cases-description": "Temukan berbagai ide untuk penggunaan Ethereum",
+ "nav-use-cases-label": "Kasus penggunaan",
+ "nav-what-is-ether-description": "Mata uang aplikasi Ethereum",
+ "nav-what-is-ethereum-description": "Pahami apa yang membuat Ethereum spesial",
+ "nav-what-is-web3-label": "Apa itu Web3?",
+ "nav-what-is-web3-description": "Alternatif terhadap monopoli terpusat yang mendikte aturan",
+ "nav-whitepaper-description": "Laporan Ethereum asli yang ditulis oleh Vitalik Buterin pada tahun 2014",
+ "nav-zkp-description": "Cara untuk membuktikan keabsahan suatu pernyataan tanpa mengungkapkan pernyataan itu sendiri",
+ "nft-page": "NFT - Token yang tidak dapat dipertukarkan",
"nfts": "NFT",
"no": "Tidak",
"on-this-page": "Pada halaman ini",
@@ -140,6 +262,8 @@
"page-developers-aria-label": "Menu Developer",
"page-index-meta-title": "Beranda",
"page-last-updated": "Halaman terakhir kali diperbaharui",
+ "participate": "Partisipasi",
+ "participate-menu": "Menu partisipasi",
"pbs": "Pemisahan pengusul-pembuat",
"pools": "Penaruhan pool",
"privacy-policy": "Kebijakan privasi",
@@ -150,8 +274,10 @@
"refresh": "Silahkan muat ulang halaman.",
"return-home": "kembali ke beranda",
"roadmap": "Peta Perjalanan Ethereum",
+ "research": "Penelitian",
+ "research-menu": "Menu penelitian",
"resources": "Sumber terjemahan",
- "regenerative-finance": "Keuangan regeneratif (ReFi)",
+ "regenerative-finance": "ReFi - Keuangan regeneratif",
"run-a-node": "Menjalankan sebuah node",
"rollup-component-website": "Situs web",
"rollup-component-developer-docs": "Dokumen pengembang",
@@ -164,6 +290,7 @@
"search-box-blank-state-text": "Cari saja!",
"search-eth-address": "Ini terlihat seperti alamat Ethereum. Kami tidak memberikan data khusus untuk alamat. Coba cari di penjelajah blok seperti",
"search-no-results": "Tidak ada hasil untuk pencarian Anda",
+ "security": "Keamanan",
"single-slot-finality": "Finalitas slot tunggal",
"statelessness": "Tanpa kewarganegaraan",
"see-contributors": "Lihat kontributor",
@@ -181,6 +308,7 @@
"start-here": "Mulai di sini",
"style-guide": "Panduan gaya penulisan",
"solo": "Penaruhan solo",
+ "support": "Bantuan",
"terms-of-use": "Ketentuan Penggunaan",
"translation-banner-body-new": "Anda melihat halaman ini dalam bahasa Inggris karena kami belum menerjemahkannya. Bantu kami menerjemahkan konten ini.",
"translation-banner-body-update": "Terdapat versi baru halaman ini namun sementara ini hanya dalam bahasa Inggris. Bantu kami menerjemahkan versi terkini.",
@@ -191,11 +319,14 @@
"translation-banner-no-bugs-title": "Tidak ada bug di sini!",
"translation-banner-no-bugs-content": "Halaman ini tidak diterjemahkan. Untuk saat ini kami sengaja membiarkan halaman ini dalam bahasa Inggris.",
"translation-banner-no-bugs-dont-show-again": "Jangan tampilkan lagi",
+ "translation-program": "Program Penerjemahan",
"try-using-search": "Coba gunakan pencarian untuk menemukan apa yang Anda cari atau",
"tutorials": "Tutorial",
"up": "Naik",
+ "use": "Gunakan",
"use-ethereum": "Gunakan Ethereum",
"use-ethereum-menu": "Gunakan menu Ethereum",
+ "use-menu": "Gunakan menu",
"user-experience": "Pengalaman Pengguna",
"verkle-trees": "Pohon Verkle",
"wallets": "Dompet",
@@ -203,7 +334,7 @@
"web3": "Apa itu Web3?",
"web3-title": "Web3",
"website-last-updated": "Situs web terakhir kali diperbarui",
- "what-is-ether": "Apa itu ether (ETH)?",
+ "what-is-ether": "Apa itu Ether (ETH)?",
"what-is-ethereum": "Apa itu Ethereum?",
"withdrawals": "Penarikan penaruhan",
"yes": "Ya",
diff --git a/src/intl/id/page-languages.json b/src/intl/id/page-languages.json
index 677324df678..8e11199bfde 100644
--- a/src/intl/id/page-languages.json
+++ b/src/intl/id/page-languages.json
@@ -11,7 +11,12 @@
"page-languages-want-more-header": "Ingin melihat ethereum.org dalam bahasa lain?",
"page-languages-want-more-link": "Program Penerjemahan",
"page-languages-want-more-paragraph": "Penerjemah ethereum.org selalu menerjemahkan halaman ke dalam sebanyak mungkin bahasa. Untuk melihat apa yang mereka kerjakan sekarang atau untuk mendaftar bergabung dengan mereka, baca tentang",
- "page-languages-filter-placeholder": "Filter",
+ "page-languages-filter-label": "Daftar filter",
+ "page-languages-filter-placeholder": "Ketik untuk memfilter",
+ "page-languages-browser-default": "Browser default",
+ "page-languages-translated": "diterjemahkan",
+ "page-languages-words": "kata",
+ "page-languages-recruit-community": "Bantu kami menerjemahkan ethereum.org.",
"langauge-am": "Amharik",
"language-ar": "Bahasa Arab",
"language-az": "Bahasa Azerbaijan",
diff --git a/src/intl/id/page-wallets-find-wallet.json b/src/intl/id/page-wallets-find-wallet.json
index 69962dd1771..8a088e9349d 100644
--- a/src/intl/id/page-wallets-find-wallet.json
+++ b/src/intl/id/page-wallets-find-wallet.json
@@ -7,7 +7,6 @@
"page-find-wallet-meta-title": "Temukan Dompet Ethereum",
"page-find-wallet-title": "Temukan dompet",
"page-find-wallet-try-removing": "Cobalah menghapus satu atau dua fitur",
- "page-find-wallet-choose-to-compare": "Pilih untuk membandingkan",
"page-stake-eth": "Pertaruhkan ETH",
"page-find-wallet-open-source": "Sumber terbuka",
"page-find-wallet-open-source-desc": "Perangkat lunak sumber terbuka memungkinkan siapa pun mengaudit integritas dan keamanan aplikasi",
@@ -16,8 +15,6 @@
"page-find-wallet-non-custodial-desc": "Dompet yang tidak mengontrol kunci pribadi Anda",
"page-find-wallet-hardware-wallet-support": "Dukungan dompet perangkat keras",
"page-find-wallet-hardware-wallet-support-desc": "Dompet yang dapat terhubung ke dompet perangkat keras untuk keamanan yang lebih baik",
- "page-find-wallet-walletconnect": "WalletConnect",
- "page-find-wallet-walletconnect-desc": "Dompet yang mendukung WalletConnect untuk terhubung ke dapp",
"page-find-wallet-rpc-importing": "Impor RPC",
"page-find-wallet-rpc-importing-desc": "Dompet yang mendukung titik akhir RPC khusus untuk terhubung ke node atau jaringan berbeda",
"page-find-wallet-nft-support": "Dukungan NFT",
@@ -36,8 +33,6 @@
"page-find-wallet-ens-support-desc": "Dompet yang mendukung Layanan Nama Ethereum (ENS)",
"page-find-wallet-token-importing": "Pengimporan token",
"page-find-wallet-token-importing-desc": "Impor token ERC-20 apa pun untuk digunakan di dompet",
- "page-find-wallet-fee-optimization": "Optimalisasi biaya",
- "page-find-wallet-fee-optimization-desc": "Dukungan transaksi 2 tipe untuk biaya gas yang dioptimalkan, dan pengembalian biaya untuk gas yang tidak terpakai",
"page-find-wallet-buy-crypto": "Beli kripto",
"page-find-wallet-buy-crypto-desc": "Beli crypto dengan fiat langsung di dompet \n *Catatan: membeli kripto mungkin wilayah spesifik",
"page-find-wallet-sell-for-fiat": "Jual untuk fiat",
@@ -46,7 +41,6 @@
"page-find-wallet-multisig-desc": "Dompet yang membutuhkan banyak tanda tangan untuk mengotorisasi transaksi",
"page-find-wallet-social-recovery": "Pemulihan sosial",
"page-find-wallet-social-recovery-desc": "Dompet yang memungkinkan penjaga mengubah kunci penandatanganan untuk dompet kontrak pintar",
- "page-find-wallet-token-support": "Dukungan token",
"page-find-wallet-features": "Fitur",
"page-find-wallet-security": "Keamanan",
"page-find-wallet-smart-contract": "Kontrak pintar",
@@ -63,7 +57,6 @@
"page-find-wallet-chromium": "Chromium",
"page-find-wallet-firefox": "Firefox",
"page-find-wallet-hardware": "Perangkat keras",
- "page-find-wallet-hardware-desc": "Dompet perangkat keras",
"page-find-wallet-new-to-crypto-title": "Baru mengenal kripto",
"page-find-wallet-new-to-crypto-desc": "Anda adalah pengguna pertama kali yang mencari dompet pertama Anda",
"page-find-wallet-nfts-title": "NFT",
@@ -74,22 +67,14 @@
"page-find-wallet-finance-desc": "Anda adalah seseorang yang menggunakan DeFi dan menginginkan dompet yang memungkinkan Anda terhubung ke aplikasi DeFi",
"page-find-wallet-developer-title": "Pengembang",
"page-find-wallet-developer-desc": "Anda adalah pengembang dan membutuhkan dompet untuk membantu mengembangkan dan menguji dapps",
- "page-find-wallet-persona-desc": "Pilih profil yang cocok dengan jenis pengguna Anda dan filter daftar dompet",
"page-find-wallet-filters": "Filter",
"page-find-wallet-active": "aktif",
- "page-find-wallet-profile-filters": "Penyaring profil",
- "page-find-wallet-feature-filters": "Fitur filter",
"page-find-wallet-footnote-1": "Dompet yang tercantum di halaman ini bukan dukungan resmi, dan disediakan hanya untuk tujuan informasi.",
"page-find-wallet-footnote-2": "Deskripsi mereka telah disediakan oleh proyek dompet itu sendiri.",
"page-find-wallet-footnote-3": "Kami menambahkan produk ke halaman ini berdasarkan kriteria dalam kebijakan pendaftaran kami. Jika Anda menginginkan penambahan dompet dari kami, ajukan persoalan ini di GitHub.",
"page-find-wallet-mobile": "Seluler",
- "page-find-wallet-mobile-desc": "Dompet dengan aplikasi seluler",
"page-find-wallet-desktop": "Desktop",
- "page-find-wallet-desktop-desc": "Dompet dengan aplikasi desktop",
"page-find-wallet-browser": "Browser",
- "page-find-wallet-browser-desc": "Dompet dengan ekstensi browser",
"page-find-wallet-device": "Perangkat",
- "page-find-choose-to-compare": "Pilih untuk membandingkan",
- "page-find-wallet-choose-features": "Pilih fitur",
"page-find-wallet-reset-filters": "Atur ulang filter"
}
diff --git a/src/intl/ig/common.json b/src/intl/ig/common.json
index c19527c0a13..6035c22eeb4 100644
--- a/src/intl/ig/common.json
+++ b/src/intl/ig/common.json
@@ -1,33 +1,48 @@
{
- "account-abstraction": "Abstraction akaụntụ",
"about-ethereum-org": "Banyere ethereum.org",
"about-us": "Maka anyị",
+ "adding-desci-projects": "Ntinye-arumaru nke desci",
+ "adding-developer-tools": "Na-agbakwunye Ngwaọrụ Onye mmepụta",
+ "adding-exchanges": "Itinye Mgbanwe ego",
+ "adding-glossary-terms": "Ntinye atumatu okowa-okwu",
+ "adding-staking-products": "Itinye ngwa-ahia ntinye ego",
+ "adding-wallets": "Itinye Akpa ego intaneti",
+ "account-abstraction": "Abstraction akaụntụ",
+ "acknowledgements": "Nkwenye",
"aria-toggle-search-button": "Gbanwee bọtịnụ ọchụchọ",
"aria-toggle-menu-button": "Gbanwee bọtịnụ ndeputa",
"beacon-chain": "Beacon Chain",
"bridges": "Njikọ blockchain",
+ "bug-bounty": "Nchọpụta njehie",
+ "build": "Mepúta",
+ "build-menu": "Mepụta menu",
"clear": "Hichapụ",
"close": "Mechie",
- "community": "Ndi otu nwere otu mmasi",
+ "community": "Obodo",
"community-hub": "Obodo nzukọ",
"community-menu": "Ndetu obodo",
"contact": "Ihe mkpoturu",
+ "content-buckets": "Ihe ntughe: Bọket Ọdịnaya",
+ "content-resources": "Ego Ọdịnaya",
"content-standardization": "Nhazi ọdịnaya",
"contributing": "Itu utu",
"contributors": "Ndị ntinye aka",
"contributors-thanks": "Onye ọ bụla nyere aka na peeji a - daalụ!",
- "cookie-policy": "Nkwuputa nke Cookie na aru oru",
+ "cookie-policy": "Amụma kuki",
"copied": "Akọpịala",
"copy": "Kọpịa",
"danksharding": "Danksharding",
- "dao-page": "Otu zoro ezo n'enweghi nchikwa (DAOs)",
+ "dao-page": "DAOs - Otu zoro ezo n'enweghi nchikwa",
"dark-mode": "Ojii",
"data-provided-by": "Ebe data:",
- "decentralized-applications-dapps": "Ngwa komputa na aru oru na sistemu komputa (dapps)",
+ "decentralized-applications-dapps": "Dapps - Ngwa komputa na aru oru na sistemu komputa",
"decentralized-identity": "Njirimara ọtụtụ ndị na achị",
"decentralized-social-networks": "Netwọk mmekọrịta ọtụtụ ndị na achi",
- "decentralized-science": "Sayensị ọtụtụ ndị na achị (DeSci)",
- "defi-page": "Ego n'enweghi nchikwa (DeFi)",
+ "decentralized-science": "DeSci - Sayensị ọtụtụ ndị na achị",
+ "description": "Nkọwa nke ihe nav",
+ "defi-page": "DeFi - Ego n'enweghi nchikwa",
+ "design": "Mmepụta",
+ "design-principles": "Usoro mmepụta ihe",
"devcon": "Devcon",
"developers": "Ndị mmeputa",
"developers-home": "Isi ulo oru ndi Mmeputa",
@@ -63,7 +78,6 @@
"ethereum-bug-bounty": "Mmemme mmachi nsogbu nwere ike ịmalite na Ethereum",
"consensus-when-shipping": "Kedu mgbe ọ na-ebupu?",
"ethereum-upgrades": "Nkwalite Ethereum",
- "ethereum-brand-assets": "Ihe Njirimara Ethereum",
"ethereum-online": "Obodo dị n'ịntanetị",
"ethereum-events": "Ihe omume Ethereum",
"ethereum-foundation": "Ebe mbido nke Ethereum",
@@ -75,7 +89,7 @@
"ethereum-protocol": "Usoro nhazi Ethereum",
"ethereum-security": "Nchekwa Ethereum na mgbochi ọhị",
"ethereum-support": "Nkwado Ethereum",
- "ethereum-wallets": "Akpaego Ethereum",
+ "ethereum-wallets": "Akpa ego Ethereum",
"ethereum-whitepaper": "Akwukwo akuko",
"feedback-widget-prompt": "Ibe a ọ na enye aka?",
"feedback-card-prompt-page": "Ibe a ọ nyere aka?",
@@ -83,22 +97,22 @@
"feedback-card-prompt-tutorial": "Nkuzi a ọ nyere aka?",
"feedback-widget-thank-you-title": "Daalụ maka nzaghachi gị!",
"feedback-widget-thank-you-subtitle": "Make this page even better by answering a few questions.",
- "feedback-widget-thank-you-subtitle-ext": "Ọ bụrụ na ịchọrọ enyemaka, ị nwere ike ịgakwuru ndị obodo na Discord anyị.",
+ "feedback-widget-thank-you-subtitle-ext": "Ọ bụrụ na ịchọrọ enyemaka, ị nwere ike ịkpọtụrụ ndị obodo anyị na Discord.",
"feedback-widget-thank-you-timing": "Nkeji 2–3 ",
"feedback-widget-thank-you-cta": "Mepee nyocha dị mkpirikpi",
- "find-wallet": "Chọta obere akpa ego",
+ "find-wallet": "Chọta akpa ego ịntanetị",
"future-proofing": "Ihe akaebe ga eme n'ọdịnihu",
"get-eth": "Nweta ETH",
"get-involved": "Tinye aka",
- "get-started": "Bido oru",
+ "get-started": "Bido",
"grants": "Enyemaka",
"grant-programs": "Mmemme Nkwado Usoro gburugburu",
"guides": "Nduzi",
- "guides-hub": "Nduzi njikọ",
+ "guides-hub": "Otu esi eduzi",
"history-of-ethereum": "Akụkọ ihe mere eme nke Ethereum",
"home": "Ụnọ",
"how-ethereum-works": "Otu Ethereum si arụ ọrụ",
- "how-to-register-an-ethereum-account": "Otu esi 'debanye aha' akwụkwọ akaụntụ Ethereum",
+ "how-to-create-an-ethereum-account": "Etu e si 'emepe' akaụntụ Ethereum",
"how-to-revoke-token-access": "Otu esi akagbu ohere nweta smart contract na ego crypto gi",
"how-to-swap-tokens": "Uzo esi agbanwe tokens",
"how-to-use-a-bridge": "Uzo esi ejikọta tokens na layer 2",
@@ -115,7 +129,7 @@
"last-edit": "Ndezi ikpeazụ",
"layer-2": "Layer 2",
"learn": "Mụta",
- "learn-by-coding": "Muta ihe site na eji koodu",
+ "learn-by-coding": "Muta ihe site na iji ndokwa",
"learn-hub": "Ebe mmụta",
"learn-menu": "Mutakwuo",
"learn-more": "Mutakwuo",
@@ -127,12 +141,107 @@
"loading-error-refresh": "Njehie, biko megharia.",
"loading-error-try-again-later": "Enwenwughi ike ibudata data. Nwaa oge ọzọ.",
"logo": "akara",
- "mainnet-ethereum": "Ethereum Bloockchainu na enyefe ego",
+ "mainnet-ethereum": "Isi netwọk Ethereum",
+ "merge": "Jikota",
"more": "Ọzọ",
- "nav-developers": "Ndị mmeputa",
+ "nav-about-description": "Ihe ọha, nke mmadu niile nwere ike inwete maka otu igwe mmadụ nwere mmasị na Ethereum",
+ "nav-advanced-description": "Mụta isiokwu ndị siri ike karị",
+ "nav-advanced-label": "Emelitere",
+ "nav-basics-description": "Ghọta ihe ndị bụ isi na Ethereum",
+ "nav-basics-label": "Ihe ndị di mkpa",
+ "nav-bridges-description": "Web3 agbanwela banye na akụkụ nile mejụpụtara isi L1 blockchains na usoro mmúba nke L2",
+ "nav-builders-home-description": "Akwụkwọ ntuziaka onye nkwadoeziokwu nke Ethereum—site n'aka ndị nkwadoeziokwu, maka ndị nkwadoeziokwu",
+ "nav-builders-home-label": "Weebusaiti mmepe peeji nke onye nkwadoeziokwu",
+ "nav-contribute-description": "Ọ bụrụ na ị chọrọ inye aka, nke a ga-eduzi gị",
+ "nav-contribute-label": "Na-enye aka na ethereum.org",
+ "nav-dao-description": "Obodo onye otu nwere na-enweghị ikike etiti",
+ "nav-dapps-description": "Nyochaa usoro okike bara ụba nke ngwa site na iji Ethereum",
+ "nav-defi-description": "Nhọrọ uzọ izụ ahịa ego nkịtị ọzọ nke zuru ụwa ọnụ",
+ "nav-desci-description": "Nhọrọ uzọ ọzọ nke usoro sayensị dị ugbu a nke zuru ụwa ọnụ",
+ "nav-desoc-description": "Nyiwe dabeere na blockchain maka mmekọrịta mmadụ na ibe ya na imepụta ọdịnaya",
"nav-developers-docs": "Akwụkwọ ndị na-emepụta",
+ "nav-developers": "Ndị mmeputa",
+ "nav-did-description": "Nye ma nwekwa ihe njirimara gị nke di ebe obula",
+ "nav-docs-description": "Akwụkwọ iji nyere gị aka ịghọta ma wuo ya na Ethereum",
+ "nav-docs-design-description": "Nkọwa nke ịma aka imewe web3 pụrụ iche, omume kacha mma na nghọta nyocha onye ọrụ",
+ "nav-docs-design-label": "Ihe imewe UX/UI bu isi",
+ "nav-docs-foundation-description": "Isi ihe ndị dị mkpa iji tolite na Ethereum",
+ "nav-docs-overview-description": "Ụlọ weebusaiti mmepe peeji maka onye mmepụta",
+ "nav-docs-stack-description": "Ghọta nkọwa niile nke Ethereum stack",
+ "nav-eip-description": "Ụkpụrụ na-akọwapụta njiarú ma ọ bụ usoro ọhụrụ",
+ "nav-eip-label": "EIPs - Atumatu Imeziwanye Ethereum",
+ "nav-emerging-description": "Mata mmekọrịta ọhụrụ ndị ọzọ mere na Ethereum",
+ "nav-emerging-label": "Okwu ojiji na-apụta",
+ "nav-enterprise-description": "Ngwa azụmahịa maka Ethereum",
+ "nav-ethereum-org-description": "Ebe nrụọrụ weebụ a bụ nke ndị otu nwere mmasị kwadoro—sonyere anyị ma tinye aka",
+ "nav-ethereum-wallets-description": "Aapụ yana na akaụntụ Ethereum gị ga emekọrịta",
+ "nav-events-description": "Ebe njikọ na ikike isonye maka onye ọ bụla",
+ "nav-events-irl-description": "Kwa ọnwa ọbụla, a na-enwe nnukwu ihe omume nke Ethereum ana-eme n'ihu n'ihu nakwa n'ịntanetị",
+ "nav-events-label": "Otu igwe mmadụ nwere mmasị na 'ihe omume gasị",
+ "nav-events-online-description": "Ọtụtụ narị puku ndi nna ihe gbasara Ethereum na-anụ ọkụ n'obi na otu igwe ndị a nwere mmasị n'ịntanetị",
+ "nav-find-wallet-description": "Akpaego na-enye gị ohere ka e jiri crypto",
+ "nav-find-wallet-label": "Họrọ akpaego gị",
+ "nav-gas-fees-description": "Kedu ka e si agbakọ ụgwọ nzipụ ego ETH",
+ "nav-get-eth-description": "Ọ dị mkpa na ị ga-enwe ether (ETH) iji jiri ngwa Ethereum",
+ "nav-get-started-description": "Nzọụkwụ nke mbụ gị iji jiri Ethereum",
+ "nav-governance-description": "Usoro a na-etinye aka na nkwalite usoro Ethereum",
+ "nav-governance-label": "Ọchịchị",
+ "nav-grants-description": "Ndepụta nke ndị otu igwe anyị nakọtara na arụmọrụ na ihe omume na-enye nkwado ego",
+ "nav-guide-create-account-description": "Onye ọ bụla nwere ike ịmepụta akaụntụ Ethereum n'oge ọ bụla, n'efu na ngwa akpa ego intaneti",
+ "nav-guide-create-account-label": "Otu e si emepe akaụntụ Ethereum",
+ "nav-guide-revoke-access-description": "Nọgide na nchekwa mgbe ị na-emekọrịta na nkwekọrịta smart na gburugburu ebe obibi Ethereum",
+ "nav-guide-revoke-access-label": "Otu e si akagbu ohere nweta ihe nhazi na-eme n'akpaaka",
+ "nav-guide-use-wallet-description": "Mụta ka e si eji ihe njiarú niile dị mkpa na akpaego",
+ "nav-guide-use-wallet-label": "Otu esi eji obere akpa intanet",
+ "nav-guides-description": "Ntụziaka nzọụkwụ ga-enyere gị aka ibido",
+ "nav-guides-label": "Otu e si eduzi",
+ "nav-history-description": "Usoro ihe omume nke isidi iche iche na mmelite niile",
+ "nav-history-label": "Akụkọ ihe mere eme nke teknụzụ Ethereum",
+ "nav-layer-2-description": "Nzipụ ego dị ọnụ ala nakwa nke na-aga ngwa ngwa maka Ethereum",
+ "nav-learn-by-coding-description": "Ngwaọrụ ndị na-enyere gị aka ịnwale Ethereum",
+ "nav-local-env-description": "Họrọ ma hazie nzulite Ethereum stack gị",
+ "nav-mainnet-description": "Enwere ike iwulite ngwa azụmahịa blockchain na Ethereum Mainnet nke ọha",
+ "nav-nft-description": "Ụzọ e ji egosipụta ihe ọbụla pụrụ iche dị ka akụ nke Ethereum",
+ "nav-open-research-description": "Otu n'ime isi ike nke Ethereum di mkpa bụ obodo nyocha ya na-arụ ọrụ",
+ "nav-open-research-label": "Nchọpụta mepere emepe",
+ "nav-overview-description": "Ihe niile gbasara agụmakwụkwọ Ethereum",
+ "nav-participate-overview-description": "Nchịkọta zuru ezu banyere otu esi esonye",
"nav-primary": "Isi mbido",
- "nft-page": "Non-fungible tokin (NFTs)",
+ "nav-quizzes-description": "Chọpụta etu i siri mara Ethereum na cryptocurrencies",
+ "nav-quizzes-label": "Nwalee ihe ọmụma gị",
+ "nav-refi-description": "Usoro akụ̀ na ụba ọzọ e wuru n'elu ụkpụrụ ndị na-eweghachi ihe",
+ "nav-research-description": "Usoro eji emeziwanye Ethereum",
+ "nav-research-label": "Nnyocha na mmepe",
+ "nav-roadmap-description": "Ụzọ maka mgbanwe, nchekwa na nkwado maka Ethereum",
+ "nav-roadmap-future-description": "Na-eme ka Ethereum dị ka netwọk siri ike na nke adighi otu ebe",
+ "nav-roadmap-future-label": "Ihe akaebe ga eme n'ọdịnihu",
+ "nav-roadmap-label": "Atụmatụ",
+ "nav-roadmap-scaling-description": "Mmelite netwọk iji belata ọnụ ahịa azụmahịa yana ọsọ ọsọ",
+ "nav-roadmap-security-description": "Ijide n'aka na Ethereum ga-anọgide na-eguzogide ụdị mwakpo niile n'ọdịnihu",
+ "nav-roadmap-security-label": "Nchekwa emelitere",
+ "nav-roadmap-ux-description": "Iji Ethereum kwesịrị ka ọ dị mfe",
+ "nav-run-a-node-description": "Bụrụ onye ọchịchị zuru oke ka ị na-enyere aka chekwa netwọkụ ahụ",
+ "nav-security-description": "Mụta omume kacha mma mgbe ị na-eji cryptocurrency",
+ "nav-smart-contracts-description": "Ihe ndị bụ isi ụlọ nke gburugburu ebe obibi Ethereum",
+ "nav-stablecoins-description": "Stablecoins bụ akara ngosi Ethereum emebere ka ọ nọrọ na ọnụ ahịa a kapịrị ọnụ",
+ "nav-stake-description": "Nweta ụgwọ ọrụ maka ịchekwa Ethereum",
+ "nav-stake-label": "Ego Etinyere",
+ "nav-staking-home-description": "Nchịkọta nke nhọrọ dị iche iche maka ntinye ego",
+ "nav-staking-pool-description": "Tinye ego ma nweta ụgwọ ọrụ site na iji onu ego ọ bụla nke ETH site na isonyere ndị ọzọ",
+ "nav-staking-pool-label": "Ntinye jikotara",
+ "nav-staking-saas-label": "Iji ọrụ tinye ego",
+ "nav-staking-solo-label": "Solo staking",
+ "nav-start-building-description": "Ozi bara uru maka ndị bịara ọhụrụ\n",
+ "nav-translation-program-description": "Mgbalị imekọ ihe ọnụ iji tụgharịa asụsụ ethereum.org na asụsụ niile",
+ "nav-tutorials-description": "Ndepụta nke nkuzi obodo",
+ "nav-use-cases-description": "Chọpụta echiche dị iche iche maka iji Ethereum",
+ "nav-what-is-ether-description": "Ego nke ngwa Ethereum",
+ "nav-what-is-ethereum-description": "Ghọta ihe mere Ethereum ji bụrụ ihe pụrụ iche",
+ "nav-what-is-web3-label": "Gịnị bụ Web3?",
+ "nav-what-is-web3-description": "Nhọrọ ọzọ nye ndị azumahia etiti na-achịkwa iwu",
+ "nav-whitepaper-description": "Akwụkwọ ntuala Ethereum mbụ nke Vitalik Buterin dere na 2014",
+ "nav-zkp-description": "Ụzọ iji gosipụta izi ezi nke nkwupụta n'ekpugheghị nkwupụta ahụ n'onwe ya",
+ "nft-page": "NFTs - Non-fungible tokin",
"nfts": "NFTs",
"no": "Mba",
"on-this-page": "Na peeji a",
@@ -140,6 +249,7 @@
"page-developers-aria-label": "Ndepụta nhọrọ mmemme ndi Mmeputa",
"page-index-meta-title": "Ụnọ",
"page-last-updated": "Emelitere peeji ikpeazụ",
+ "participate-menu": "Menu nsonye",
"pbs": "Ịkpa oke onye na-ewu ụlọ",
"pools": "Ntinye jikotara",
"privacy-policy": "Iwu ihe nzuzo",
@@ -150,10 +260,10 @@
"refresh": "Biko megharịa peeji ahụ.",
"return-home": "laghachi azu n'ụlọ",
"roadmap": "Mapụ nke ụzọ Ethereum",
+ "research": "Nyochaa",
+ "research-menu": "Menu nnyocha",
"resources": "Akụrụngwa ntụgharị asụsụ",
- "regenerative-finance": "Ego n'enweghi nchikwa (ReFi)",
- "run-a-node": "Run a node",
- "rollup-component-website": "Website",
+ "regenerative-finance": "ReFi - Ego n'enweghi nchikwa",
"rollup-component-developer-docs": "Akwụkwọ onye nrụpụta",
"rollup-component-technology-and-risk-summary": "Teknụzụ na nchịkọta ihe egwu",
"scaling": "Nbawanye ikike",
@@ -164,24 +274,22 @@
"search-box-blank-state-text": "Chọrọ gawa!",
"search-eth-address": "Nke a dị ka adreesị Ethereum. Anyị anaghị enye data kpọmkwem maka adreesị. Gbalịa ịchọ ya na blọk ihe nchọgharị dị ka",
"search-no-results": "Enweghị nsonaazụ maka ọchụchọ gị",
+ "security": "Nche",
"single-slot-finality": "Otu ohere nkwụsị",
"statelessness": "Na enweghị obodo",
"see-contributors": "Lee ndị nkwado",
"set-up-local-env": "Hazie gburugburu ebeulo",
- "sharding": "Sharding",
"show-all": "Gosi Ihe Niine",
"show-less": "Gosi obere",
"site-description": "Ethereum bu ụzọ zuru ụwa nile, nke akwadopụtàrà maka ego na ụdịrị ngwa kòmpụtà ọhụrụ. Na Ethereum, ị nwere ike ide koodù na-achịkwa ego, ma ruo ngwa kòmpụtà ndị enwere ike inweta ebe ọ bụla n’ ụwa.",
- "site-title": "ethereum.org",
"skip-to-main-content": "Mafee na isi ọdịnaya",
"smart-contracts": "Nkwekọrịta azụmahịa na emere onwe ya",
- "stablecoins": "Crptocurrency na anochite anya ego ndi ozo",
+ "stablecoins": "Stebụlkọịn",
"stake-eth": "Kekọrịta ETH",
"staking": "Ntinye ego",
"start-here": "Bido ebe a",
- "style-guide": "Style guide",
"solo": "Solo staking",
- "terms-of-use": "Iwu nkwekorita maka Ojiji",
+ "terms-of-use": "Usoro nke ojiji",
"translation-banner-body-new": "I na elele peeji a na asusu Bekee maka na anyi atugharibeghi ya. Nyere anyi aka tugharia asusu odinaya a.",
"translation-banner-body-update": "Enwere udi ohuru nke peeji a mana o no naani na asusu Bekee ugbu a. Nyere anyi aka tugharia nke kachasi ohuru.",
"translation-banner-button-see-english": "Lee Bekee",
@@ -191,20 +299,21 @@
"translation-banner-no-bugs-title": "Enweghị mperi ebe a!",
"translation-banner-no-bugs-content": "A naghị atụgharị asụsụ ibe akwụkwọ a. Anyị kpachapụrụ anya hapụ ibe akwụkwọ a n'asụsụ Bekee ka ọ dị.",
"translation-banner-no-bugs-dont-show-again": "Egosila ọzọ",
+ "translation-program": "Mmemme Ntụgharị Asụsụ",
"try-using-search": "Gbaa mbọ iji nchọpụta chọpụta ihe ị na-achọ ma ọ bụ",
- "tutorials": "Ihe omumu na aka onye nkuzi",
- "up": "N'elu",
+ "tutorials": "Ihe omumu",
+ "up": "Elu",
+ "use": "Jiri",
"use-ethereum": "Jiri Ethereum",
"use-ethereum-menu": "Jiri ndeputa Ethereum",
- "user-experience": "User experience",
+ "use-menu": "Jiri menu",
"verkle-trees": "Verkle trees",
"wallets": "Akpa ego",
"we-couldnt-find-that-page": "Anyị enweghị ike ịhụ ibe ahụ",
"web3": "Gịnị bụ Web3?",
- "web3-title": "Web3",
"website-last-updated": "Emelitere webụsaịtị ikpeazụ",
- "what-is-ether": "Gịnị bu ether (ETH)?",
- "what-is-ethereum": "Gịnị bu Ethereum?",
+ "what-is-ether": "Gini bu ether (ETH)?",
+ "what-is-ethereum": "Gini bu Ethereum?",
"withdrawals": "Mwepụ ego etinyere",
"yes": "Ee",
"zero-knowledge-proofs": "Ihe akaebe ihe ọmụma efu"
diff --git a/src/intl/ig/page-index.json b/src/intl/ig/page-index.json
index 36dcdc23b69..39c4d691005 100644
--- a/src/intl/ig/page-index.json
+++ b/src/intl/ig/page-index.json
@@ -77,7 +77,7 @@
"page-index-nft-button": "Ihe ndị ọzọ na NFT",
"page-index-nft-alt": "A na-egosipụta akara Eth site na hologram.",
"community-events-content-heading": "Sonye na otu ethereum.org",
- "community-events-content-1": "Sonye ihe dị ka ndị puku iri anọ na ọrụ nkwekọrịta anyị.",
+ "community-events-content-1": "Sonye ihe dị ka ndị puku iri anọ na ọrụ nkwekọrịta anyị.",
"community-events-content-2": "Sonye nzuko obodo anyị kwa ọnwa maka mmelite na-akpali akpali na mmepe Ethereum.org yana ozi gbasara gburugburu ebe obibi kacha mkpa. Nweta ohere ịjụ ajụjụ, kesaa echiche, na inye azịza - ọ bụ oge zuru oke iji sonye na obodo Ethereum na-eto eto.",
"community-events-next-event": "Mgbakọ ọzọ",
"community-events-no-events-planned": "O nweghị mmemme akwadoro",
diff --git a/src/intl/ig/page-languages.json b/src/intl/ig/page-languages.json
index d7d3cae614b..bcb562d5e8e 100644
--- a/src/intl/ig/page-languages.json
+++ b/src/intl/ig/page-languages.json
@@ -11,19 +11,19 @@
"page-languages-want-more-header": "Chọrọ ịhụ ethereum.org n'asụsụ dị iche iche?",
"page-languages-want-more-link": "Mmemme Ntụgharị Asụsụ",
"page-languages-want-more-paragraph": "ndị ntụgharị ethereum.org na-asụgharị ibe mgbe niile n'asụsụ dị ka o kwere mee. Iji hụ ihe ha na-arụ ugbu a ma ọ bụ debanye aha iji sonyere ha, gụọ gbasara anyị",
- "page-languages-filter-label": "Nzacha ndepụta",
- "page-languages-filter-placeholder": "Pịnye iji zachaa",
- "page-languages-browser-default": "Ka ihe nchọgharị kwesiri idi",
- "page-languages-translated": "sụgharịrị",
+ "page-languages-filter-label": "Ndepụta ebe njụ ajụjụ",
+ "page-languages-filter-placeholder": "Pịnye iji jụọ ajụjụ",
+ "page-languages-browser-default": "Nhazi ihe nchọgharị etu esiri chọọ",
+ "page-languages-translated": "Atụgharịrị",
"page-languages-words": "okwu",
- "page-languages-recruit-community": "Nyere anyị aka ịsụgharị ethereum.org.",
- "langauge-am": "Amharic",
+ "page-languages-recruit-community": "Nyere anyị aka tụgharịa ethereum.org.",
+ "langauge-am": "Asụsụ Amharic",
"language-ar": "Arabic",
"language-az": "Azerbaijani",
- "langauge-be": "Belarusian",
+ "langauge-be": "Asụsụ Belarusian",
"language-bg": "Bulgarian",
"language-bn": "Bengali",
- "language-bs": "Bosnian",
+ "language-bs": "Asụsụ Bosnia",
"language-ca": "Catalan",
"language-cs": "Czech",
"language-da": "Asụsụ Danish",
@@ -40,7 +40,7 @@
"language-hi": "Hindi",
"language-hr": "Croatian",
"language-hu": "Hungarian",
- "language-hy-am": "Armenian",
+ "language-hy-am": "Asụsụ Armenia",
"language-id": "Indonesian",
"language-ig": "Igbo",
"language-it": "Italian",
@@ -48,14 +48,14 @@
"language-ka": "Georgian",
"language-kk": "Kazakh",
"language-km": "Khmer",
- "language-kn": "Kannada",
+ "language-kn": "Asụsụ Kannada",
"language-ko": "Korean",
"language-lt": "Lithuanian",
"language-ml": "Malayalam",
"language-mr": "Asụsụ Marathi",
"language-ms": "Malay",
"language-nb": "Norwegian",
- "language-ne-np": "Nepali",
+ "language-ne-np": "Asụsụ Nepali",
"language-nl": "Dutch",
"language-pcm": "Pidgin Naijiria",
"language-fil": "Filipino",
@@ -71,7 +71,7 @@
"language-sw": "Asụsụ Swahili",
"language-ta": "Asụsụ Tamil",
"language-th": "Asụsụ Thai",
- "language-tk": "Turkmen",
+ "language-tk": "Ndi Turkmen",
"language-tr": "Turkish",
"language-uk": "Ukrainian",
"language-ur": "Asụsụ Urdu",
diff --git a/src/intl/ig/page-wallets-find-wallet.json b/src/intl/ig/page-wallets-find-wallet.json
index a04880fc959..491653fc742 100644
--- a/src/intl/ig/page-wallets-find-wallet.json
+++ b/src/intl/ig/page-wallets-find-wallet.json
@@ -7,7 +7,6 @@
"page-find-wallet-meta-title": "Chọta Obere akpa Ethereum",
"page-find-wallet-title": "Chọta obere akpa",
"page-find-wallet-try-removing": "Gbalịa wepụ otu atụmatụ ma ọ bụ abụọ",
- "page-find-wallet-choose-to-compare": "Họrọ iji tụlee",
"page-stake-eth": "Kekọrịta ETH",
"page-find-wallet-open-source": "Ebe mepere emepe",
"page-find-wallet-open-source-desc": "Ngwanrọ mepere emepe na ekwe ka onye ọ bụla nyochaa iguzosi ike n'ezi ihe na nchekwa nke ngwa ahụ",
@@ -16,8 +15,6 @@
"page-find-wallet-non-custodial-desc": "Obere akpa na adịghị ejikwa igodo gị zoro ezo",
"page-find-wallet-hardware-wallet-support": "Nkwado obere akpa ngwaike",
"page-find-wallet-hardware-wallet-support-desc": "Obere akpa nke nwere ike ijikọ na obere akpa ngwaike maka nchekwa zuru oke",
- "page-find-wallet-walletconnect": "WalletConnect",
- "page-find-wallet-walletconnect-desc": "Akpa ego intaneti nke na-akwado WalletConnect maka njikọta na dapps",
"page-find-wallet-rpc-importing": "Iwebata RPC",
"page-find-wallet-rpc-importing-desc": "Obere akpa nke na-akwado custom RPC njedebe eji ejikọta noodu ma ọ bụ netwọk dị iche iche",
"page-find-wallet-nft-support": "Nkwado NFT",
@@ -36,8 +33,6 @@
"page-find-wallet-ens-support-desc": "Obere akpa nke na-akwado Ọrụ Aha Ethereum (ENS)",
"page-find-wallet-token-importing": "Ibubata token",
"page-find-wallet-token-importing-desc": "Webata akara ERC-20 ọ bụla iji ya na obere akpa",
- "page-find-wallet-fee-optimization": "Ikwalite ụgwọ",
- "page-find-wallet-fee-optimization-desc": "Nkwado ụdị azụmahịa 2 na ihi ụgwọ gas kacha mma, yana ikwụghachi ụgwọ maka gas ejighi mee ihe",
"page-find-wallet-buy-crypto": "Zụta crypto",
"page-find-wallet-buy-crypto-desc": "Jiri fiat zụta crypto kpọmkwem nime obere akpa\n *Mata: ịzụta crypto nwere ike site na mpaghara akọwara nke oma",
"page-find-wallet-sell-for-fiat": "Ree maka fiat",
@@ -46,7 +41,6 @@
"page-find-wallet-multisig-desc": "Obere akpa ego ga achọ ọtụtụ ibinye aka iji nye ikike na azụmahịa",
"page-find-wallet-social-recovery": "Mgbake mmekọrita",
"page-find-wallet-social-recovery-desc": "Akpa nke na-enye ohere ka ndị nchekwa tugharia igodo ibinye aka nke obere akpa smart contracts",
- "page-find-wallet-token-support": "Ikwado akara",
"page-find-wallet-features": "Features",
"page-find-wallet-security": "Nche",
"page-find-wallet-smart-contract": "Smart contract",
@@ -63,7 +57,6 @@
"page-find-wallet-chromium": "Chromium",
"page-find-wallet-firefox": "Firefox",
"page-find-wallet-hardware": "Hardware",
- "page-find-wallet-hardware-desc": "Obere akpa nke akụrụngwa",
"page-find-wallet-new-to-crypto-title": "Ìdí ọhụrụ na crypto",
"page-find-wallet-new-to-crypto-desc": "Ibu onye ọhụụ na achọọ obere akpa gị",
"page-find-wallet-nfts-title": "NFTs",
@@ -74,21 +67,13 @@
"page-find-wallet-finance-desc": "Ị bụ onye na-eji DeFi ma na-achọkwa obere akpa nke ga na enye gị ohere ijikọ na ngwa DeFi",
"page-find-wallet-developer-title": "Onye nrụpụta",
"page-find-wallet-developer-desc": "Ị bụ onye nke nrụpụta ma chọkwaa obere akpa iji kwado nwulite na nwalee dapps",
- "page-find-wallet-persona-desc": "Họpụta ihe nkọwa dabara na ụdị onye ọrụ gi wee nyocha ihe ndepụta nke obere akpa",
"page-find-wallet-filters": "Ihe nhọcha",
"page-find-wallet-active": "nọ n'ọrụ",
- "page-find-wallet-profile-filters": "Nhọcha nke ihe nkọwa",
- "page-find-wallet-feature-filters": "Nhọcha atụmatụ",
"page-find-wallet-footnote-1": "Akpa ego ndi edepụtara na ibe akwụkwọ a abụghị nke gọọmentị kwadoro, ma enyere ya naanị maka ebumnuche ozi.",
"page-find-wallet-footnote-2": "Akọwara ha site na ọrụ obere akpa nke onwe ha.",
"page-find-wallet-footnote-3": "Anyị na-etinye ngwaahịa na ibe akwụkwọ a site na usoro anyi dị na ndepụta amụma. Ọ bụrụ na ị ga-achọ ka anyị tinye kwa obere akpa, welite okwu Ń GitHub.",
"page-find-wallet-mobile": "Npanaka",
- "page-find-wallet-mobile-desc": "Akpa ego na ngwa mkpanaka",
"page-find-wallet-desktop": "Kọmpụta eji eme ihe na tebụl",
- "page-find-wallet-desktop-desc": "Obere akpa nwere ngwa kọmpụta nke eji eme ihe na tebụl",
"page-find-wallet-browser": "Ihe nchọgharị",
- "page-find-wallet-browser-desc": "Obere akpa nke nwere mgbati ihe nchọgharị",
- "page-find-wallet-device": "Ngwaọrụ",
- "page-find-choose-to-compare": "Họrọ iji tụlee",
- "page-find-wallet-choose-features": "Họrọ ihe atụmatụ"
+ "page-find-wallet-device": "Ngwaọrụ"
}
diff --git a/src/intl/it/common.json b/src/intl/it/common.json
index e59e0a59bea..8248fde5c45 100644
--- a/src/intl/it/common.json
+++ b/src/intl/it/common.json
@@ -15,6 +15,9 @@
"aria-toggle-menu-button": "Attiva/Disattiva pulsante menu",
"beacon-chain": "La Beacon Chain",
"bridges": "Ponti della blockchain",
+ "bug-bounty": "Bug bounty",
+ "build": "Build",
+ "build-menu": "Menu build",
"clear": "Cancella",
"close": "Chiudi",
"community": "Community",
@@ -31,14 +34,15 @@
"copied": "Copiato",
"copy": "Copia",
"danksharding": "Danksharding",
- "dao-page": "Organizzazioni autonome decentralizzate (DAO)",
+ "dao-page": "DAO - Organizzazioni autonome decentralizzate",
"dark-mode": "Scuro",
"data-provided-by": "Origine dei dati:",
- "decentralized-applications-dapps": "Applicazioni decentralizzate (dapps)",
+ "decentralized-applications-dapps": "Dapps - Applicazioni decentralizzate",
"decentralized-identity": "Identità decentralizzata",
"decentralized-social-networks": "Social network decentralizzati",
- "decentralized-science": "Scienza Decentralizzata (DeSci)",
- "defi-page": "Finanza decentralizzata (DeFi)",
+ "decentralized-science": "DeSci - Scienza Decentralizzata",
+ "description": "Descrizione dell’elemento di navigazione",
+ "defi-page": "DeFi - Finanza decentralizzata",
"design": "Progettazione",
"design-principles": "Principi di progettazione",
"devcon": "Devcon",
@@ -64,7 +68,7 @@
"documentation": "Documentazione",
"down": "Giù",
"ecosystem": "Ecosistema",
- "edit-page": "Modifica la pagina",
+ "edit-page": "Modifica pagina",
"ef-blog": "Blog della Ethereum Foundation",
"eips": "Proposte di Miglioramento di Ethereum",
"energy-consumption": "Consumo energetico di Ethereum",
@@ -99,7 +103,7 @@
"feedback-widget-thank-you-subtitle-ext": "Se ti serve aiuto, puoi contattare la community sul nostro Discord.",
"feedback-widget-thank-you-timing": "2-3 minuti",
"feedback-widget-thank-you-cta": "Apri un breve sondaggio",
- "find-wallet": "Trova portafoglio",
+ "find-wallet": "Trova un portafoglio",
"future-proofing": "A prova di futuro",
"get-eth": "Ottieni ETH",
"get-involved": "Partecipa",
@@ -143,10 +147,115 @@
"mainnet-ethereum": "Rete principale Ethereum",
"merge": "Fusione",
"more": "Altro",
- "nav-developers": "Sviluppatori",
+ "nav-about-description": "Un progetto open source aperto al pubblico per la comunità Ethereum",
+ "nav-advanced-description": "Approfondisci gli argomenti più complessi",
+ "nav-advanced-label": "Avanzate",
+ "nav-basics-description": "Comprendi i fondamenti di Ethereum",
+ "nav-basics-label": "Nozioni di base",
+ "nav-bridges-description": "Web3 si è evoluto in un ecosistema di blockchain L1 primarie e di soluzioni di ridimensionamento L2",
+ "nav-builders-home-description": "Un manuale su Ethereum, scritto da sviluppatori per sviluppatori",
+ "nav-builders-home-label": "Pagina principale del costruttore",
+ "nav-contribute-description": "Se vuoi dare un contributo, questa guida di spiegherà come fare",
+ "nav-contribute-label": "Contribuire a ethereum.org",
+ "nav-dao-description": "Community posseduta dai membri, senza un’autorità centralizzata",
+ "nav-dapps-description": "Esplora un ricco ecosistema di app che utilizzano Ethereum",
+ "nav-defi-description": "Un'alternativa globale e aperta al sistema finanziario tradizionale",
+ "nav-desci-description": "Un'alternativa globale e aperta al sistema scientifico corrente",
+ "nav-desoc-description": "Piattaforme basate sulla blockchain per l'interazione sociale e la creazione di contenuti",
"nav-developers-docs": "Documentazione per sviluppatori",
+ "nav-developers": "Sviluppatori",
+ "nav-did-description": "Emettere e possedere i propri identificativi unici decentralizzati",
+ "nav-docs-description": "Documenti per aiutarti a capire e compilare con Ethereum",
+ "nav-docs-design-description": "Descrizione delle sfide specifiche della progettazione web3, delle best practice e delle informazioni di ricerca sugli utenti",
+ "nav-docs-design-label": "Fondamenti di progettazione UX/UI",
+ "nav-docs-foundation-description": "Fondamenti principali per sviluppare su Ethereum",
+ "nav-docs-foundation-label": "Argomenti fondamentali",
+ "nav-docs-overview-description": "Il punto di riferimento per i documenti per gli sviluppatori",
+ "nav-docs-stack-description": "Capire tutti i dettagli dello stack di Ethereum",
+ "nav-docs-stack-label": "Stack di Ethereum",
+ "nav-eip-description": "Standard che specificano nuove funzionalità o processi",
+ "nav-eip-label": "EIP - Proposte di miglioramento di Ethereum",
+ "nav-emerging-description": "Conoscere altri casi d'uso più recenti di Ethereum",
+ "nav-emerging-label": "Casi d'uso emergenti",
+ "nav-enterprise-description": "Applicazioni commerciali di Ethereum",
+ "nav-ethereum-org-description": "Questo sito web è alimentato dalla community: unisciti e contribuisci anche tu",
+ "nav-ethereum-wallets-description": "Un'app per interagire con il proprio conto di Ethereum",
+ "nav-events-description": "Decentralizzazione e libertà di partecipazione per chiunque",
+ "nav-events-irl-description": "Ogni mese ci sono importanti eventi Ethereum di persona e online",
+ "nav-events-label": "Community ed eventi",
+ "nav-events-online-description": "Centinaia di migliaia di appassionati di Ethereum partecipano a queste community online",
+ "nav-find-wallet-description": "I portafogli consentono di utilizzare le criptovalute",
+ "nav-find-wallet-label": "Scegliere il proprio portafoglio",
+ "nav-gas-fees-description": "Come vengono calcolate le commissioni di transazione in ETH",
+ "nav-gas-fees-label": "Commissioni sul gas",
+ "nav-get-eth-description": "Servono ether (ETH) per utilizzare le applicazioni di Ethereum",
+ "nav-get-started-description": "Primi passi per utilizzare Ethereum",
+ "nav-governance-description": "Processo di aggiornamento del protocollo Ethereum",
+ "nav-governance-label": "Governance",
+ "nav-grants-description": "Un elenco curato dalla nostra community sui progetti che forniscono programmi di finanziamento con sovvenzioni",
+ "nav-guide-create-account-description": "Chiunque può creare un conto di Ethereum in qualsiasi momento, gratuitamente con un app portafoglio",
+ "nav-guide-create-account-label": "Come creare un conto di Ethereum",
+ "nav-guide-revoke-access-description": "Sicurezza nell'interazione con i contratti intelligenti e le applicazioni dell'ecosistema Ethereum",
+ "nav-guide-revoke-access-label": "Come revocare l'accesso ai contratti intelligenti",
+ "nav-guide-use-wallet-description": "Impara come gestire tutte le funzioni di base di un portafoglio",
+ "nav-guide-use-wallet-label": "Come utilizzare un portafoglio",
+ "nav-guides-description": "Guide pratiche per muovere i primi passi",
+ "nav-guides-label": "Guide esplicative",
+ "nav-history-description": "Un viaggio nel tempo per illustrare tutte le principali diramazioni e gli aggiornamenti",
+ "nav-history-label": "La storia tecnica di Ethereum",
+ "nav-layer-2-description": "Transazioni più economiche e veloci per Ethereum",
+ "nav-learn-by-coding-description": "Strumenti che ti aiutano a sperimentare con Ethereum",
+ "nav-local-env-description": "Scegliere e impostare il proprio stack di sviluppo Ethereum",
+ "nav-mainnet-description": "Le applicazioni aziendali della blockchain possono essere costruite sulla Rete pubblica di Ethereum",
+ "nav-nft-description": "Un modo per rappresentare qualsiasi cosa unica come un asset basato su Ethereum",
+ "nav-open-research-description": "Uno dei principali punti di forza di Ethereum è la sua attiva comunità di ricerca",
+ "nav-open-research-label": "Ricerca aperta",
+ "nav-overview-description": "Tutto ciò che riguarda la formazione su Ethereum",
+ "nav-overview-label": "Panoramica",
+ "nav-participate-overview-description": "Panoramica sulle modalità di partecipazione",
"nav-primary": "Principale",
- "nft-page": "Token non fungibili (NFT)",
+ "nav-private-description": "Risorse per sviluppatori per la rete Ethereum privata per le imprese",
+ "nav-quizzes-description": "Scopri quanto ne sai su Ethereum e le criptovalute",
+ "nav-quizzes-label": "Metti alla prova le tue conoscenze",
+ "nav-refi-description": "Un sistema economico alternativo costruito su principi rigenerativi",
+ "nav-research-description": "Processi usati per migliorare Ethereum",
+ "nav-research-label": "Ricerca e sviluppo",
+ "nav-roadmap-description": "Il percorso verso una maggiore scalabilità, sicurezza e sostenibilità per Ethereum",
+ "nav-roadmap-future-description": "Consolidare Ethereum come rete robusta e decentralizzata",
+ "nav-roadmap-future-label": "A prova di futuro",
+ "nav-roadmap-label": "Roadmap",
+ "nav-roadmap-scaling-description": "Aggiornamenti della rete per ridurre ulteriormente i costi e la velocità delle transazioni",
+ "nav-roadmap-scaling-label": "Transazioni più economiche",
+ "nav-roadmap-security-description": "Assicurarsi che Ethereum resti resiliente a tutti i tipi di attacchi in futuro",
+ "nav-roadmap-security-label": "Sicurezza migliorata",
+ "nav-roadmap-ux-description": "Occorre semplificare l'utilizzo di Ethereum",
+ "nav-roadmap-ux-label": "Migliore esperienza utente",
+ "nav-run-a-node-description": "Diventa completamente sovrano, aiutando a proteggere la rete",
+ "nav-security-description": "Imparare le best practice sull'uso delle criptovalute",
+ "nav-smart-contracts-description": "Gli elementi fondamentali dell'ecosistema Ethereum",
+ "nav-stablecoins-description": "Le stablecoin sono token Ethereum progettate per rimanere a un valore fisso",
+ "nav-stake-description": "Ottieni ricompense per proteggere Ethereum",
+ "nav-stake-label": "Stake",
+ "nav-staking-home-description": "Panoramica sulle diverse opzioni di staking",
+ "nav-staking-home-label": "Home dello staking",
+ "nav-staking-pool-description": "Fai staking e guadagna ricompense di qualsiasi importo di ETH unendoti ad altri",
+ "nav-staking-pool-label": "Staking in pool",
+ "nav-staking-saas-description": "Gli operatori di nodi di terze parti gestiscono l'operazione del tuo client del validatore",
+ "nav-staking-saas-label": "Staking con un servizio",
+ "nav-staking-solo-description": "Opera hardware domestico e aggiungi personalmente alla sicurezza e decentralizzazione della rete di Ethereum",
+ "nav-staking-solo-label": "Staking in solo",
+ "nav-start-building-description": "Informazioni utili per i novellini",
+ "nav-translation-program-description": "Uno sforzo collaborativo per tradurre ethereum.org in tutte le lingue",
+ "nav-tutorials-description": "Elenco curato di tutorial della community",
+ "nav-use-cases-description": "Scoprire diverse idee per l'utilizzo di Ethereum",
+ "nav-use-cases-label": "Casi d'uso",
+ "nav-what-is-ether-description": "La valuta delle app Ethereum",
+ "nav-what-is-ethereum-description": "Capire cosa rende speciale Ethereum",
+ "nav-what-is-web3-label": "Cos'è il Web3?",
+ "nav-what-is-web3-description": "Un'alternativa ai monopoli centralizzati che dettano le regole",
+ "nav-whitepaper-description": "Il whitepaper originale di Ethereum scritto da Vitalik Buterin nel 2014",
+ "nav-zkp-description": "Un modo per provare la validità di una dichiarazione senza rivelarla",
+ "nft-page": "NFT - Token non fungibili",
"nfts": "NFT",
"no": "No",
"on-this-page": "Su questa pagina",
@@ -154,6 +263,8 @@
"page-developers-aria-label": "Menu Sviluppatori",
"page-index-meta-title": "Home page",
"page-last-updated": "Ultimo aggiornamento pagina",
+ "participate": "Partecipa",
+ "participate-menu": "Menu partecipa",
"pbs": "Separazione proponente-sviluppatore",
"pools": "Staking in pool",
"privacy-policy": "Politica sulla privacy",
@@ -164,13 +275,15 @@
"refresh": "Ricarica la pagina.",
"return-home": "torna alla home",
"roadmap": "Roadmap di Ethereum",
+ "research": "Ricerca",
+ "research-menu": "Menu ricerca",
"resources": "Risorse di traduzione",
- "regenerative-finance": "Finanza Rigenerativa (ReFi)",
- "run-a-node": "Esegui un nodo",
+ "regenerative-finance": "ReFi - Finanza Rigenerativa",
+ "run-a-node": "Gestire un nodo",
"rollup-component-website": "Sito Web",
"rollup-component-developer-docs": "Documentazione per sviluppatori",
"rollup-component-technology-and-risk-summary": "Riepilogo su tecnologia e rischi",
- "scaling": "Scalabilità",
+ "scaling": "Ridimensionamento",
"saas": "Staking come servizio",
"search": "Ricerca",
"search-ethereum-org": "Cerca su ethereum.org",
@@ -182,7 +295,7 @@
"single-slot-finality": "Finalità del singolo slot",
"statelessness": "Assenza di stato",
"see-contributors": "Visualizza chi ha contribuito",
- "set-up-local-env": "Configura l'ambiente locale",
+ "set-up-local-env": "Configurare l'ambiente locale",
"sharding": "Sharding",
"show-all": "Mostra tutto",
"show-less": "Mostra meno",
@@ -211,8 +324,10 @@
"try-using-search": "Prova a utilizzare la ricerca per trovare ciò che stai cercando, o",
"tutorials": "Tutorial",
"up": "Su",
+ "use": "Usa",
"use-ethereum": "Usare Ethereum",
"use-ethereum-menu": "Usa menu Ethereum",
+ "use-menu": "Usa menu",
"user-experience": "Esperienza utente",
"verkle-trees": "Alberi di Verkle",
"wallets": "Portafogli",
@@ -220,7 +335,7 @@
"web3": "Cos'è il Web3?",
"web3-title": "Web3",
"website-last-updated": "Ultimo aggiornamento sito web",
- "what-is-ether": "Cos'è Ether (ETH)?",
+ "what-is-ether": "Cos'è ether (ETH)?",
"what-is-ethereum": "Cos'è Ethereum?",
"withdrawals": "Prelievi di staking",
"yes": "Sì",
diff --git a/src/intl/it/glossary.json b/src/intl/it/glossary.json
new file mode 100644
index 00000000000..69f358138d1
--- /dev/null
+++ b/src/intl/it/glossary.json
@@ -0,0 +1,344 @@
+{
+ "51%-attack-term": "Attacco 51%",
+ "51%-attack-definition": "Un tipo di attacco a una rete decentralizzata, in cui un gruppo ottiene il controllo della maggioranza dei nodi. Ciò consentirebbe loro di truffare la blockchain, annullando le transazioni e spendendo il doppio di ether e altri token.",
+ "account-term": "Conto",
+ "account-definition": "Un oggetto contenente un indirizzo, un saldo, un nonce, e facoltativamente uno spazio di archiviazione e codice. Un conto può essere un conto di contratto o un conto posseduto esternamente (EOA).
Maggiori informazioni sui conti Ethereum.",
+ "address-term": "Indirizzo",
+ "address-definition": "Più in generale, questo rappreseenta un conto posseduto esternamente (EOA) o conto del contratto, che può ricevere (indirizzo di destinazione) o inviare (indirizzo di origine) le transazioni sulla blockchain. Più nello specifico, si tratta dei 160 bit più a destra di un hash Keccak, di una chiave pubblicaECDSA.",
+ "abi-term": "Interfaccia binaria dell'applicazione (ABI)",
+ "abi-definition": "Il metodo standard per interagire con i contratti nell'ecosistema di Ethereum, sia dall'esterno della blockchain che per le interazioni tra contratti. Maggiori informazioni su ABI.",
+ "api-term": "Interfaccia di programmazione dell'applicazione (API)",
+ "api-definition": "Un'Interfaccia di programmazione dell'applicazione (API) è una serie di definizioni per l'utilizzo di un software. Un'API si trova tra un'applicazione e un server web e facilita il trasferimento di dati tra di essi.",
+ "asic-term": "ASIC",
+ "asic-definition": "Circuito integrato specifico per l'applicazione. Questo solitamente si riferisce a un circuito integrato, costruito appositamente per il mining di criptovalute.",
+ "assert-term": "assert",
+ "assert-definition": "In Solidity, `assert(false)` si compila a `0xfe`, un opcode non valido, che utilizza tutto il gas rimanente e annulla tutte le modifiche. Quando un'istruzione di `assert()` fallisce, si sta verificando qualcosa di molto sbagliato e imprevisto, e dovrai correggere il tuo codice. Dovresti utilizzare `assert()` per evitare condizioni che non dovrebbero mai e poi mai verificarsi. Maggiori informazioni sulla sicurezza dei contratti intelligenti.",
+ "attestation-term": "Attestazione",
+ "attestation-definition": "Una dichiarazione resa da un'entità che afferma che qualcosa è vero. Nel contesto di Ethereum, i validatori del consenso devono affermare quale credono sia lo stato della catena. In momenti specifici, ogni validatore è responsabile della pubblicazione di attestazioni differenti che dichiarano formalmente il parere di questo validatore sulla catena, incluso l'ultimo punto di controllo finalizzato e la testa attuale della catena. Maggiori informazioni sulle attestazioni.",
+ "base-fee-term": "Commissione base",
+ "base-fee-definition": "Ogni blocco ha un prezzo di riserva noto come 'commissione base'. Si tratta della commissione minima sul gas che un utente deve pagare per includere una transazione nel blocco successivo. Maggiori informazioni sul gas e sulle commissioni.",
+ "beacon-chain-term": "Beacon chain",
+ "beacon-chain-definition": "La Beacon Chain era la blockchain che ha introdotto il proof-of-stake e i validatori su Ethereum. Ha operato insieme alla Rete Principale di proof-of-work di Ethereum da dicembre 2020, finché le due catene non si sono fuse a settembre 2022, così da formare l'Ethereum odierna. Di più sulla beacon chain.",
+ "big-endian-term": "Big-endian",
+ "big-endian-definition": "Una rappresentazione numerica posizionale in cui la cifra più significativa è la prima in memoria. L'opposto di little-endian, dove la cifra meno significativa è la prima.",
+ "block-term": "Blocco",
+ "block-definition": "Un blocco è un insieme di informazioni raggruppate, che include un elenco ordinato di transazioni e informazioni correlate al consenso. I blocchi sono proposti dai validatori di proof-of-stake, e sono condivisi in tutta la rete peer-to-peer, dove possono essere facilmente verificati in modo indipendente da tutti gli altri nodi. Le regole del consenso disciplinano quali contenuti di un blocco sono considerati validi, e qualsiasi blocco non valido è ignorato dalla rete. L'ordine di questi blocchi e le transazioni al loro interno creano una catena deterministica di eventi la cui fine rappresenta lo stato attuale della rete. Maggiori informazioni sui blocchi.",
+ "block-explorer-term": "Esploratore del blocco",
+ "block-explorer-definition": "Un'interfaccia che consente gli utenti di cercare informazioni da, e su, una blockchain. Ciò include il recupero delle transazioni individuali, l'attività associata a indirizzi specifici e informazioni sulla rete.",
+ "block-header-term": "Intestazione del blocco",
+ "block-header-definition": "L'intestazione del blocco è una raccolta di metadati su un blocco e un riepilogo delle transazioni incluse nel payload di esecuzione.",
+ "block-propagation-term": "Propagazione dei blocchi",
+ "block-propagation-definition": "Il processo di trasmissione di un blocco confermato a tutti gli altri nodi nella rete.",
+ "block-proposer-term": "Propositore del blocco",
+ "block-proposer-definition": "Il validatore specifico scelto per creare un blocco in uno slot specifico.",
+ "block-reward-term": "Ricompensa del blocco",
+ "block-reward-definition": "L'importo di ether versato come ricompensa al propositore di un nuovo blocco valido.",
+ "block-status-term": "Stato del blocco",
+ "block-status-definition": "Gli stati in cui può esistere un blocco. Gli stati possibili includono:
proposto: il blocco è stato proposto da un validatore
pianificato: i validatori stanno attualmente inviando dati
mancato/saltato: il propositore non ha proposto un blocco entro il lasso di tempo idoneo
",
+ "block-time-term": "Tempo di blocco",
+ "block-time-definition": "L'intervallo temporale tra i blocchi aggiunti alla blockchain.",
+ "block-validation-term": "Convalida del blocco",
+ "block-validation-definition": "Il processo di verifica del fatto che un nuovo blocco contenga transazioni e firme valide, si basi sulla catena storica più pesante, e segua tutte le altre regole del consenso. I blocchi validi sono aggiunti al termine della catena e propagati ad altri sulla rete. I blocchi non validi sono ignorati.",
+ "blockchain-term": "Blockchain",
+ "blockchain-definition": "Una sequenza di blocchi, ognuno collegato al predecessore fino al blocco di genesi facendo riferimento al hash del blocco precedente. L'integrità della blockchain è protetta cripto-economicamente utilizzando un meccanismo di consenso basato sul proof-of-stake. Cos'è una blockchain?",
+ "bootnode-term": "Nodo d'avvio",
+ "bootnode-definition": "I nodi utilizzabili per avviare il processo di scoperta eseguendo un nodo. Gli endpoint di questi nodi sono registrati nel codice sorgente di Ethereum.",
+ "bytecode-term": "Bytecode",
+ "bytecode-definition": "Una serie di istruzioni astratte progettata per l'esecuzione efficiente da parte di un interprete software o di una macchina virtuale. A differenza del codice sorgente leggibile dall'uomo, il bytecode è espresso in formato numerico.",
+ "byzantium-fork-term": "Diramazione Byzantium",
+ "byzantium-fork-definition": "La prima delle due diramazioni permanenti per la fase di sviluppo di Metropolis. Includeva l'EIP-649 Metropoli Difficulty Bomb Delay e Block Reward Reduction, in cui l'Era Glaciale era stata ritardata di 1 anno e la ricompensa del blocco è stata ridotta da 5 a 3 ether.",
+ "casper-ffg-term": "Casper FFG",
+ "casper-ffg-definition": "Casper-FFG è un protocollo di consenso di proof-of-stake utilizzato insieme all'algoritmo di scelta della diramazione LMD-GHOST per consentire ai client di consenso di trovare un accordo sulla testa della Beacon Chain.",
+ "checkpoint-term": "Punto di controllo",
+ "checkpoint-definition": "La Beacon Chain ha un tempo diviso in slot (12 secondi) ed epoche (32 slot). Il primo slot in ogni epoca è un punto di controllo. Quando una supermaggioranza di validatori attesta il collegamento tra due punti di controllo, possono essere giustificati, per poi essere finalizzati quando un altro punto di controllo viene giustificato in posizione più elevata.",
+ "compiling-term": "Compilazione",
+ "compiling-definition": "Conversione del codice scritto in un linguaggio di programmazione di alto livello (es. Solidity) in un linguaggio di basso livello (es. bytecode dell'EVM). Maggiori informazioni sulla compilazione dei contratti intelligenti",
+ "committee-term": "Commissione",
+ "committee-definition": "Un gruppo di almeno 128 validatori assegnati per convalidare blocchi in ogni slot. Uno dei validatori nella commissione è l'aggregatore, responsabile dell'aggregazione delle firme di tutti gli altri validatori nella commissione che concordano su un'attestazione. Da non confondere con i comitati di sincronizzazione.",
+ "computational-infeasibility-term": "Infattibilità computazionale",
+ "computational-infeasibility-definition": "Un processo è infattibile a livello computazionale se ci vorrebbe un tempo eccessivamente lungo (es. miliardi di anni) per realizzarlo per chiunque possa ragionevolmente avere un interesse nel realizzarlo.",
+ "consensus-term": "Consenso",
+ "consensus-definition": "Si verifica quando una supermaggioranza di nodi sulla rete hanno tutti gli stessi blocchi nella migliore blockchain convalidata localmente. Da non confondere con le regole di consenso.",
+ "consensus-client-term": "Client di consenso",
+ "consensus-client-definition": "I client di consenso (come Prysm, Teku, Nimbus, Lighthouse, Lodestar) eseguono l'algoritmo di consenso di proof-of-stake di Ethereum consentendo alla rete di raggiungere un accordo sulla testa della Beacon Chain. I client di consenso non partecipano alle transazioni di convalida/trasmissione o all'esecuzione delle transizioni di stato. Queste vengono eseguite dai client di esecuzione](#execution-client.",
+ "consensus-layer-term": "Livello di consenso",
+ "consensus-layer-definition": "Il livello di consenso di Ethereum è la rete dei client di consenso.",
+ "consensus-rules-term": "Regole di consenso",
+ "consensus-rules-definition": "Le regole di convalida dei blocchi che i nodi completi seguono per mantenere il consenso con gli altri nodi. Da non confondere con il consenso.",
+ "cfi-term": "Considerato per l'Inclusione (CFI)",
+ "cfi-definition": "Un'EIP principale non ancora attiva sulla Rete Principale, verso la quale gli sviluppatori del client sono generalmente favorevoli. Supponendo che soddisfi tutti i requisiti per l'inclusione nella Rete principale, potrebbe essere incluso in un aggiornamento della rete (non necessariamente il successivo).",
+ "constantinople-fork-term": "Diramazione Constantinople",
+ "constantinople-fork-definition": "La seconda parte della fase Metropolis, originariamente pianificata per metà 2018. Dovrebbe includere il passaggio a un algoritmo di consenso ibrido tra proof-of-work e proof-of-stake, tra le altre modifiche.",
+ "contract-account-term": "Conto del contratto",
+ "contract-account-definition": "Un conto contenente codice che viene eseguito ogni volta che riceve una transazione da un altro conto (EOA] o contratto).",
+ "contract-creation-transaction-term": "Transazione di creazione del contratto",
+ "contract-creation-transaction-definition": "Una transazione speciale che include il codice d'iniziazione di un contratto. Il destinatario è impostato su `null` e il contratto è distribuito a un indirizzo generato dall'indirizzo dell'utente e dal `nonce` utilizzato per registrare un contratto sulla blockchain di Ethereum.",
+ "cryptoeconomics-term": "Criptoeconomia",
+ "cryptoeconomics-definition": "L'economia delle criptovalute.",
+ "doge-d-term": "Đ",
+ "doge-d-definition": "Đ (D con trattino) è utilizzata in inglese antico, inglese medio, islandese e faroese e indica una lettera \"Eth\" maiuscola. È utilizzata in parole come ĐEV o Đapp (applicazione decentralizzata), dove la Đ è la lettera norrena “eth”. La eth (Ð) maiuscola è utilizzata anche per simbolizzare la criptovaluta Dogecoin. Si può trovare comunemente nella letteratura di Ethereum più datata ma, ad oggi, è utilizzata di meno.",
+ "dag-term": "DAG",
+ "dag-definition": "DAG sta per Grafico Aciclico Diretto. È una struttura di dati composta da nodi e collegamenti tra di essi. Prima de La Fusione, Ethereum utilizzava un DAG nel suo algoritmo di proof-of-work, Ethash, ma non è più utilizzato nel proof-of-stake.",
+ "dapp-term": "Dapp",
+ "dapp-definition": "Applicazione decentralizzata. Come minimo, un contratto intelligente e un'interfaccia utente web. Più in generale, una dapp è un'applicazione web basata sui servizi dell'infrastruttura peer-to-peer, decentralizzati e aperti. Inoltre, molte dapp includono archiviazione decentralizzata e/o un protocollo di messaggi e una piattaforma. Introduzione alle dapp",
+ "data-availability-term": "Disponibilità dei dati",
+ "data-availability-definition": "La proprietà di uno stato in cui ogni nodo connesso alla rete potrebbe scaricare qualsiasi parte specifica dello stato che desidera.",
+ "decentralization-term": "Decentralizzazione",
+ "decentralization-definition": "L'idea di spostare il controllo e l'esecuzione dei processi da un'entità centrale.",
+ "dao-term": "Organizzazione autonoma decentralizzata (DAO)",
+ "dao-definition": "Un'azienda o altra organizzazione che opera senza gestione gerarchica. DAO potrebbe anche far riferimento a un contratto denominato \"The DAO\", lanciato il 30 aprile 2016, che fu poi hackerato a giugno 2016; questo motivò alla fine una diramazione permanente (denominata DAO) al blocco 1.192.000, annullando il contratto DAO violato e causando la divisione di Ethereum ed Ethereum Classic in due sistemi concorrenti. Maggiori informazioni sulle organizzazioni autonome decentralizzate (DAO)",
+ "dex-term": "Borsa decentralizzata (DEX)",
+ "dex-definition": "Un tipo di dapp che consente di scambiare token con i pari sulla rete. Servono ether per utilizzarne una (per pagare le commissioni di transazione) ma non sono soggette a limitazioni geografiche come le borse centralizzate – chiunque può partecipare.",
+ "deposit-contract-term": "Contratto di deposito",
+ "deposit-contract-definition": "L'accesso allo staking su Ethereum. Il contratto di deposito è un contratto intelligente su Ethereum che accetta depositi di ETH e gestisce i saldi del validatore. Un validatore non può essere attivato senza depositare ETH in questo contratto. Il contratto richiede ETH e dati di input. Questi dati di input includono la chiave pubblica del validatore e la chiave pubblica di prelievo, firmate dalla chiave privata del validatore. Questi dati sono necessari per l'identificazione e l'approvazione di un validatore dalla rete di proof-of-stake.",
+ "defi-term": "DeFi",
+ "defi-definition": "Abbreviazione di \"finanza decentralizzata\", un'ampia categoria di dapp mirate a fornire servizi finanziari supportati dalla blockchain, senza alcun intermediario, così che chiunque abbia una connessione a Internet possa partecipare. Maggiori informazioni sulla finanza decentralizzata (DeFi)",
+ "difficulty-term": "Difficoltà",
+ "difficulty-definition": "Un'impostazione a livello della rete nelle reti di proof-of-work che controlla quanti calcoli medi sono necessari per trovare un nonce valido. La difficoltà è rappresentata dal numero di zeri iniziali necessari nel hash del blocco risultante perché sia considerato valido. Questo concetto è deprecato in Ethereum dalla transizione al proof-of-stake.",
+ "difficulty-bomb-term": "Bomba di difficoltà",
+ "difficulty-bomb-definition": "Incremento esponenziale pianificato nell'impostazione di difficoltà del proof-of-work, progettata per motivare la transizione al proof-of-stake, riducendo le possibilità di una diramazione. La bomba di difficoltà è deprecata da La Fusione.",
+ "digital-signatures-term": "Firma digitale",
+ "digital-signatures-definition": "Una breve stringa di dati che un utente produce per un documento utilizzando una chiave privata, così che chiunque disponga della chiave pubblica corrispondente, della firma e del documento possa verificare che (1) il documento è stato \"firmato\" dal proprietario di quella chiave privata specifica, e (2) il documento non è stato modificato dopo essere stato firmato.",
+ "discovery-term": "Scoperta",
+ "discovery-definition": "Il processo per cui un nodo di Ethereum trova altri nodi cui connettersi.",
+ "distributed-hash-table-term": "Tabella di hash distribuiti (DHT)",
+ "distributed-hash-table-definition": "Una struttura di dati contenente coppie `(key, value)` utilizzata dai nodi di Ethereum per identificare i pari a cui connettersi e determinare quali protocolli utilizzare per comunicare.",
+ "double-spend-term": "Doppia spesa",
+ "double-spend-definition": "Una diramazione deliberata della blockchain in cui un utente con una quantità sufficientemente consistente di potere di mining/stake invia una transazione spostando valuta all'esterno della catena (es. uscendo con moneta legale o effettuando un acquisto off-chain), quindi riorganizzando la blockchain per rimuovere tale transazione. Una doppia spesa riuscita lascia l'utente malevolo con le risorse proprie, e quelle esterne alla catena.",
+ "ecdsa-term": "Algoritmo di firma digitale a curva ellittica (ECDSA)",
+ "ecdsa-definition": "Un algoritmo crittografico utilizzato da Ethereum per assicurarsi che i fondi possano esser spesi soltanto dai propri proprietari. È il metodo preferito per creare chiavi pubbliche e private. Rilevante per la generazione dell'indirizzo del conto e la verifica della transazione.",
+ "encryption-term": "Crittografia",
+ "encryption-definition": "La crittografia è la conversione di dati elettronici in una forma non leggibile da nessuno tranne che dal titolare della chiave di decodifica corretta.",
+ "entropy-term": "Entropia",
+ "entropy-definition": "Nel contesto della crittografia, mancanza di prevedibilità o livello di casualità. Durante la generazione di informazioni segrete, come le chiavi private, gli algoritmi si affidano solitamente a una fonte di alta entropia per assicurarsi che l'output sia imprevedibile.",
+ "epoch-term": "Epoche",
+ "epoch-definition": "Un periodo di 32 slot, ognuno di 12 secondi, per un totale di 6,4 minuti. Le commissioni di validatori vengono mescolate a ogni epoca per motivi di sicurezza. Ogni epoca ha un'opportunità di finalizzazione della catena. Ogni validatore riceve nuove responsabilità all'inizio di ogni epoca. Maggiori informazioni sul proof-of-stake",
+ "equivocation-term": "Equivoco",
+ "equivocation-definition": "Un validatore che invia due messaggi contraddittori. Un semplice esempio è l'invio di due transazioni con lo stesso nonce da parte di un mittente. Un altro è un propositore di blocchi che propone due blocchi alla stessa altezza del blocco (o per lo stesso slot).",
+ "eth1-term": "Eth1",
+ "eth1-definition": "'Eth1' è un termine riferito alla Rete Principale di Ethereum, la blockchain di proof-of-work esistente. Questo termine è stato abbandonato a favore del 'livello di esecuzione'. Maggiori informazioni su questo cambio di nome.",
+ "eth2-term": "Eth2",
+ "eth2-definition": "'Eth2' è un termine che si riferisce a una serie di aggiornamenti al protocollo di Ethereum, inclusa la transizione al proof-of-stake. Questo termine è stato abbandonato a favore del 'livello di consenso'. Maggiori informazioni su questo cambio di nome.",
+ "eip-term": "Proposta di miglioramento di Ethereum (EIP)",
+ "eip-definition": "Un documento di progettazione che fornisce informazioni alla community di Ethereum, descrivendo una nuova funzionalità proposta o i suoi processi o ambiente (vedi ERC). Introduzione alle EIP",
+ "ens-term": "Servizio del nome di Ethereum (ENS)",
+ "ens-definition": "Il registro ENS è un unico contratto centrale che fornisce una mappatura dai nomi di dominio ai proprietari e resolver, come descritto nell'EIP-137. Ulteriori informazioni su ens.domains",
+ "execution-client-term": "Client di esecuzione",
+ "execution-client-definition": "I client di esecuzione (precedentemente noti come \"client Eth1\"), come Besu, Erigon, Go-Ethereum (Geth), Nethermind, sono incaricati dell'elaborazione e trasmissione delle transazioni, e della gestione dello stato di Ethereum. Eseguono i calcoli per ogni transazione utilizzando la Macchina Virtuale di Ethereum per assicurarsi che le regole del protocollo siano seguite.",
+ "execution-layer-term": "Livello di esecuzione",
+ "execution-layer-definition": "Il livello di esecuzione di Ethereum è la rete dei client di esecuzione.",
+ "eoa-term": "Conto posseduto esternamente (EOA)",
+ "eoa-definition": "I conti posseduti esternamente (EOA) sono conti controllati da chiavi private, tipicamente generate utilizzando una frase di seed. A differenza dei contratti intelligenti, i conti posseduti esternamente sono conti privi di qualunque codice associato. Di solito questi conti sono gestiti con un portafoglio.",
+ "erc-term": "Richiesta di commenti di Ethereum (ERC)",
+ "erc-definition": "Etichetta assegnata ad alcune EIP per tentare di definire uno standard specifico per l'uso di Ethereum.",
+ "ethash-term": "Ethash",
+ "ethash-definition": "Un algoritmo di proof-of-work utilizzato su Ethereum prima del passaggio al proof-of-stake. Maggiori informazioni",
+ "ether-term": "Ether",
+ "ether-definition": "La criptovaluta nativa utilizzata dall'ecosistema di Ethereum, che copre i costi del gas quando si eseguono transazioni. Indicata anche con ETH o con il suo simbolo Ξ, la lettera Xi greca maiuscola. Maggiori informazioni su ether.",
+ "events-term": "Eventi",
+ "events-definition": "Consente l'utilizzo delle risorse di registrazione dell'EVM. Le dapp possono ascoltare gli eventi e utilizzarli per innescare callback in JavaScript nell'interfaccia utente. Maggiori informazioni su eventi e registri",
+ "evm-term": "Macchina virtuale Ethereum (EVM)",
+ "evm-definition": "Una macchina virtuale basata sullo stack che esegue il bytecode. In Ethereum, il modello di esecuzione specifica in che modo lo stato di sistema viene alterato in base a una serie di istruzioni bytecode e una piccola tupla di dati ambientali. Ciò è specificato tramite un modello formale di una macchina di stato virtuale. Maggiori informazioni sulla Macchina Virtuale di Ethereum.",
+ "evm-assembly-language-term": "Lingua assembly dell'EVM",
+ "evm-assembly-language-definition": "Modulo leggibile dall'uomo di bytecode dell'EVM.",
+ "fallback-function-term": "Funzione di fallback",
+ "fallback-function-definition": "Funzione predefinita chiamata in assenza di dati o di un nome di funzione dichiarato.",
+ "faucet-term": "Faucet",
+ "faucet-definition": "Un servizio fornito tramite contratto intelligente che dispensa fondi sotto forma di ether di test gratuiti, utilizzabili su una rete di prova.",
+ "finality-term": "Finalità",
+ "finality-definition": "La finalità è la garanzia che una serie di transazioni prima di un dato momento non cambieranno né saranno annullate. Maggiori informazioni sulla finalità di proof-of-stake.",
+ "finney-term": "Finney",
+ "finney-definition": "Una denominazione di ether. 1 finney = 1015wei. 103 finney = 1 ether.",
+ "fork-term": "Diramazione",
+ "fork-definition": "Un cambiamento nel protocollo che causa la creazione di una catena alternativa o divergenza temporale in due percorsi potenziali di un blocco.",
+ "fork-choice-algorithm-term": "Algoritmo di scelta della diramazione",
+ "fork-choice-algorithm-definition": "L'algoritmo utilizzato per identificare la testa della blockchain. Sul livello di esecuzione, la testa della catena è identificata come quella con la difficoltà totale maggiore alle spalle. Ciò significa che la vera testa della catena è quella che richiede maggior lavoro per essere minata. Sul livello di consenso, l'algoritmo osserva le attestazioni accumulate dai validatori (LMD_GHOST).",
+ "fraud-proof-term": "A prova di frode",
+ "fraud-proof-definition": "Un modello di sicurezza per certe soluzioni del livello 2 in cui, per incrementare la velocità, le transazioni sono raggruppate in pacchetti e inviate a Ethereum in una singola transazione. Si presume che siano valide, ma possono essere messe alla prova se si sospetta la frode. Una prova di frode, quindi, eseguirà la transazione per verificare se si è verificata una frode. Questo metodo incrementa la quantità di transazioni possibili, mantenendo la sicurezza. Alcuni rollup utilizzano le prove di validità. Maggiori informazioni sui rollup ottimistici.",
+ "frontier-term": "Frontier",
+ "frontier-definition": "Fase di sviluppo di test iniziale di Ethereum, che durò dal luglio 2015 al marzo 2016.",
+ "gas-term": "Gas",
+ "gas-definition": "Un carburante virtuale utilizzato in Ethereum per eseguire i contratti intelligenti. L'EVM utilizza un meccanismo di contabilità per misurare il consumo di gas e limitare il consumo di risorse di calcolo (vedi Turing completo). Maggiori informazioni su gas e commissioni.",
+ "gas-limit-term": "Limite di gas",
+ "gas-limit-definition": "L'importo massimo di gas che una transazione o un blocco potrebbe consumare.",
+ "gas-price-term": "Prezzo del gas",
+ "gas-price-definition": "Prezzo in ether di un'unità di gas specificato in una transazione.",
+ "genesis-block-term": "Blocco genesi",
+ "genesis-block-definition": "Il primo blocco in una blockchain, utilizzato per inizializzare una rete in specifica e la sua criptovaluta.",
+ "geth-term": "Geth",
+ "geth-definition": "Go Ethereum. Una delle implementazioni più importanti del protocollo di Ethereum, scritta in Go. Ulteriori informazioni su geth.ethereum.org",
+ "gwei-term": "Gwei",
+ "gwei-definition": "Abbreviazione di gigawei, una denominazione di ether, comunemente utilizzata per i prezzi del gas. 1 gwei = 109wei. 109 gwei = 1 ether.",
+ "hard-fork-term": "Diramazione permanente",
+ "hard-fork-definition": "Una divergenza permanente nella blockchain; anche nota come un cambiamento di diramazione permanente. Si verifica comunemente quando i nodi non aggiornati non possono convalidare i blocchi creati dai nodi aggiornati che seguono le regole di consenso più recenti. Da non confondere con diramazione (fork), soft fork, software fork o Git fork.",
+ "hash-term": "Hash",
+ "hash-definition": "Un'impronta digitale di lunghezza fissa di input di dimensioni variabili, prodotta da una funzione di hash. (Vedi keccak-256).",
+ "hash-rate-term": "Hashrate",
+ "hash-rate-definition": "Il numero di calcoli di hash effettuati al secondo dai computer che eseguono il software di mining.",
+ "homestead-term": "Homestead",
+ "homestead-definition": "La seconda fase di sviluppo di Ethereum, lanciata nel marzo 2016 sul blocco 1.150.000.",
+ "index-term": "Indice",
+ "index-definition": "Una struttura di rete pensata per ottimizzare l'interrogazione di informazioni da tutta la blockchain fornendo un percorso efficiente alla sua sorgente di archiviazione.",
+ "ide-term": "Ambiente di sviluppo integrato (IDE)",
+ "ide-definition": "Un'interfaccia utente che tipicamente combina un editor di codice, un compilatore, un ambiente runtime e un debugger. Maggiori informazioni sugli ambienti di sviluppo integrato.",
+ "immutable-deployed-code-problem-term": "Problema del codice distribuito immutabile",
+ "immutable-deployed-code-problem-definition": "Una volta che il codice di un contratto (o di una libreria) è distribuito, diviene immutabile. Le pratiche di sviluppo standard del software si basano sulla capacità di risolvere possibili bug e aggiungere nuove funzionalità, quindi questo punto rappresenta una sfida per lo sviluppo dei contratti intelligenti. Maggiori informazioni sulla distribuzione dei contratti intelligenti.",
+ "internal-transaction-term": "Transazione interna",
+ "internal-transaction-definition": "Una transazione inviata da un conto di contratto a un altro, o a un EOA (vedi messaggio).",
+ "issuance-term": "Emissione",
+ "issuance-definition": "La coniatura di nuovi ether per ricompensare la proposta, l'attestazione e la segnalazione del blocco.",
+ "kdf-term": "Funzione di derivazione della chiave (KDF)",
+ "kdf-definition": "Detta anche \"algoritmo di allungamento della password\", è usata dai formati keystore per proteggere contro attacchi di forza bruta, dictionary e rainbow table ai danni della crittografia di una passphrase, mediante continuo hashing della passphrase.",
+ "keystore-term": "Keystore",
+ "keystore-definition": "La coppia di chiave privata / indirizzo di ogni conto esiste come un singolo file della chiave in un client di Ethereum. Si tratta di file di testo JSON contenenti la chiave privata crittografata del conto, decifrabile esclusivamente con la password inserita durante la creazione del conto.",
+ "keccak-256-term": "Keccak-256",
+ "keccak-256-definition": "Funzione di hash crittografica utilizzata su Ethereum. Keccak-256 è stata standardizzata come SHA-3.",
+ "layer-2-term": "Livello 2",
+ "layer-2-definition": "Un'area di sviluppo incentrata sui miglioramenti nella stratificazione basati sul protocollo di Ethereum. Questi miglioramenti sono correlati alle velocità di transazione, a commissioni di transazione più economiche e alla privacy delle transazioni. Maggiori informazioni sul livello 2.",
+ "library-term": "Libreria",
+ "library-definition": "Un tipo speciale di contratto privo di funzioni pagabili, funzione di fallback e archiviazione dei dati. Quindi, che non può ricevere o detenere ether, né archiviare dati. Una libreria funge da codice distribuito precedentemente che altri contratti possono chiamare per calcoli in sola lettura. Maggiori informazioni sulle librerie dei contratti intelligenti.",
+ "light-client-term": "Client leggero",
+ "light-client-definition": "Un client di Ethereum che non archivia una copia locale della blockchain, né convalida blocchi e transazioni. Offre le funzioni di un portafoglio e può creare e trasmettere transazioni.",
+ "lmd-ghost-term": "LMD-GHOST",
+ "lmd-ghost-definition": "L'algoritmo di scelta della diramazione utilizzato dai client di consenso di Ethereum per identificare la testa della catena. LMD-GHOST è un acronimo che sta per \"Latest Message Driven Greediest Observed SubTree\", che significa che la testa della catena è il blocco con la maggior quantità di attestazioni nel suo storico.",
+ "mainnet-term": "Rete principale",
+ "mainnet-definition": "In inglese Mainnet, abbreviazione di \"main network\", è la blockchain Ethereum pubblica principale.",
+ "merkle-patricia-tree-term": "Albero di Patricia Merkle (MPT)",
+ "merkle-patricia-tree-definition": "Struttura dati usata in Ethereum per memorizzare in modo efficiente coppie chiave-valore.",
+ "message-term": "Messaggio",
+ "message-definition": "Una transazione interna che non è mai serializzata e inviata solo all'interno dell'EVM.",
+ "message-call-term": "Chiamata del messaggio",
+ "message-call-definition": "L'atto di passare un messaggio da un conto a un altro. Se il conto di destinazione è associato al codice dell'EVM, allora la VM sarà avviata con lo stato di tale oggetto e il messaggio suddetto.",
+ "mining-term": "Mining",
+ "mining-definition": "Il processo di eseguire ripetutamente l'hashing dell'intestazione di un blocco, incrementando di un nonce finché il risultato contiene un numero arbitrario di zeri binari iniziali. Questo è il processo tramite cui i nuovi blocchi sono aggiunti a una blockchain di proof-of-work. Così era protetta Ethereum prima di passare al proof-of-stake.",
+ "miner-term": "Miner",
+ "miner-definition": "Un nodo di rete che trova un proof-of-work valido per i nuovi blocchi, tramite l'hashing di password ripetuto (vedi Ethash). I miner non fanno più parte di Ethereum, sono stati sostituiti dai validatori quando Ethereum è passata al proof-of-stake.",
+ "mint-term": "Coniatura",
+ "mint-definition": "La coniatura è il processo di creazione dei nuovi token e la loro messa in circolazione per l'utilizzo. È un meccanismo decentralizzato per creare un nuovo token senza coinvolgere l'autorità centrale.",
+ "network-term": "Rete",
+ "network-definition": "In riferimento alla rete Ethereum, una rete peer-topeer che propaga transazioni e blocchi a ogni nodo di Ethereum (partecipante alla rete). Maggiori informazioni sulle reti.",
+ "network-hashrate-term": "Hashrate di rete",
+ "network-hashrate-definition": "L'hashrate collettivo prodotta dall'intera rete di mining. Il mining su Ethereum è stato disattivato in seguito al passaggio al proof-of-stake.",
+ "nft-term": "Token non fungibile (NFT)",
+ "nft-definition": "Questo è uno standard di token introdotto dalla proposta ERC-721. Gli NFT possono essere tracciati e scambiati, ma ogni token è unico e distinto; non sono intercambiabili come gli ETH e i token ERC-20. Gli NFT possono rappresentare la proprietà di risorse digitali o fisiche. Maggiori informazioni sui token non fungibili (NFT).",
+ "node-term": "Nodo",
+ "node-definition": "Un client software che partecipa alla rete. Maggiori informazioni sui nodi e i client.",
+ "nonce-term": "Nonce",
+ "nonce-definition": "In crittografia, un valore utilizzabile una sola volta. Il nonce di un conto è un contatore di transazioni in ogni conto, utilizzato per impedire gli attacchi di riproduzione.",
+ "ommer-term": "Blocco ommer (zio)",
+ "ommer-definition": "Quando un miner di proof-of-work trova un blocco valido, un altro miner potrebbe aver pubblicato un blocco concorrente aggiunto per prima in testa alla catena. Questo blocco valido, ma obsoleto, può essere incluso dai blocchi più recenti come ommer e ricevere una ricompensa parziale del blocco. \"Ommer\" è il termine preferito, neutro dal punto di vista del genere, per lo stesso livello di un blocco genitore, ma a volte viene anche indicato come \"zio\". Erano rilevanti per Ethereum quando era una rete di proof-of-work, ma gli ommer non sono una funzionalità dell'Ethereum di proof-of-stake, poiché in ogni slot viene selezionato precisamente un propositore di blocchi.",
+ "optimistic-rollup-term": "Optimistic rollup",
+ "optimistic-rollup-definition": "Un rollup di transazioni che utilizzano le prove di frode per offrire un maggiore volume di transazioni del livello 2 utilizzando la sicurezza fornita dalla Rete Principale (livello 1). A differenza di Plasma, una soluzione di livello 2 simile, i rollup ottimistici possono gestire tipi più complessi di transazioni, tutto ciò che è possibile nell'EVM. Hanno dei problemi di latenza rispetto ai rollup a conoscenza zero, poiché una transazione può essere messa in discussione tramite la prova di frode. Maggiori informazioni sui rollup ottimistici.",
+ "oracle-term": "Oracolo",
+ "oracle-definition": "Un oracolo è un ponte tra la blockchain e il mondo reale. Funge da API on-chain, che può essere interrogata per ricevere informazioni e utilizzata nei contratti intelligenti. Maggiori informazioni sugli oracoliblockchain.",
+ "peer-to-peer-network-term": "Rete peer-to-peer",
+ "peer-to-peer-network-definition": "Una rete di computer (pari) che collettivamente sono capaci di eseguire funzionalità senza il bisogno di servizi centralizzati e basati sul server.",
+ "plasma-term": "Plasma",
+ "plasma-definition": "Una soluzione di ridimensionamento off-chain che utilizza le prove di frode, come i rollup ottimistici. Plasma si limita alle transazioni semplici, come i trasferimenti di token e gli scambi. Maggiori informazioni su plasma.",
+ "private-key-term": "Chiave privata",
+ "private-key-definition": "Un numero segreto che consente agli utenti di Ethereum di dimostrare la proprietà di un conto o dei contratti, producendo una firma digitale (vedi chiave pubblica, indirizzo, ECDSA).",
+ "private-chain-term": "Catena privata",
+ "private-chain-definition": "Una blockchain interamente privata ha accesso con autorizzazioni, non è disponibile all'uso pubblico.",
+ "pos-term": "Proof-of-stake (PoS)",
+ "pos-definition": "Un metodo tramite cui il protocollo della blockchain di una criptovaluta mira a ottenere il consenso distribuito. Il PoS chiede agli utenti di dimostrare la proprietà di una determinata quantità di criptovalute (la loro \"stake\", o quota, nella rete) per poter partecipare alla convalida delle transazioni. Maggiori informazioni sul proof-of-stake.",
+ "pow-term": "Proof of Work (PoW)",
+ "pow-definition": "Un dato (la prova) che richiede calcoli significativi per essere trovato. Maggiori informazioni sul proof-of-work.",
+ "public-key-term": "Chiave pubblica",
+ "public-key-definition": "Numero derivato tramite una funzione unidirezionale da una chiave privata, che può essere condiviso pubblicamente e utilizzato da chiunque per verificare una firma digitale eseguita con la corrispondente chiave privata.",
+ "receipt-term": "Ricevuta",
+ "receipt-definition": "Dati restituiti da un client Ethereum per rappresentare il risultato di una specifica transazione, che includono un hash della transazione, il relativo numero di blocco, il quantitativo di gas utilizzato e, in caso di distribuzione di un contratto intelligente, l'indirizzo del contratto.",
+ "re-entrancy-attack-term": "Attacco con codice rientrante",
+ "re-entrancy-attack-definition": "Quando il contratto di un malintenzionato chiama la funzione del contratto di una vittima, in modo che durante l'esecuzione, la vittima richiami ricorsivamente il contratto del malintenzionato. Questo può risultare, ad esempio, nel furto dei fondi, saltando le parti del contratto della vittima che aggiornano i saldi o contano gli importi di prelievo. Di più sulla rientranza.",
+ "reward-term": "Ricompensa",
+ "reward-definition": "Quantità di ether inclusa in ogni nuovo blocco come ricompensa da parte della rete al miner che ha trovato la soluzione proof-of-work.",
+ "rlp-term": "Prefisso di lunghezza ricorsiva (RLP)",
+ "rlp-definition": "Standard di codifica progettato dagli sviluppatori di Ethereum per codificare e serializzare oggetti (strutture dati) di complessità e lunghezza arbitrarie.",
+ "rollups-term": "Rollup",
+ "rollups-definition": "Un tipo di soluzione di ridimensionamento del livello 2 che raggruppa più transazioni e le invia alla catena principale di Ethereum in un'unica transazione. Ciò consente di ridurre i costi del gas e aumentare il volume delle transazioni. I rollup possono essere di tipo ottimistico o a conoscenza zero. Utilizzano metodi di sicurezza diversi per offrire vantaggi in termini di scalabilità. Di più sui rollup.",
+ "rpc-term": "Chiamata di procedura remota (RPC)",
+ "rpc-definition": "La chiamata di procedura remota (RPC) è un protocollo utilizzato da un programma per richiedere un servizio da un programma situato su un altro computer in una rete, senza dover comprendere i dettagli della rete.",
+ "sha-term": "Secure Hash Algorithm (SHA)",
+ "sha-definition": "Famiglia di funzioni hash crittografiche pubblicata dal National Institute of Standards and Technology (NIST).",
+ "serialization-term": "Serializzazione",
+ "serialization-definition": "Il processo di conversione di una struttura di dati in una sequenza di byte.",
+ "shard-term": "Shard / shard chain",
+ "shard-definition": "Le shard chain sono sezioni discrete della blockchain totale di cui sono responsabili dei sottogruppi di validatori. Ciò offrirà spesso un maggiore volume di transazioni per Ethereum, migliorando la disponibilità dei dati per le soluzioni di livello 2, come i rollup ottimistici e i rollup ZK. Maggiori informazioni sul danksharding.",
+ "sidechain-term": "Sidechain",
+ "sidechain-definition": "Una soluzione di ridimensionamento che utilizza una catena separata con regole di consenso differenti e spesso più veloci. Per connettere queste catene secondarie alla Rete Principale serve un ponte. Anche i rollup utilizzano le sidechain ma, invece, collaborano con la Rete Principale. Maggiori informazioni sulle sidechain.",
+ "signing-term": "Firma",
+ "signing-definition": "Dimostrazione crittografica che una transazione è stata approvata dal titolare di una chiave privata specifica.",
+ "singleton-term": "Singleton",
+ "singleton-definition": "Termine appartenente al contesto di programmazione che descrive un oggetto di cui può esistere solo un'istanza.",
+ "slasher-term": "Slasher",
+ "slasher-definition": "Uno slasher è un'entità che scansiona le attestazioni alla ricerca di infrazioni suscettibili di slashing. I tagli sono trasmessi alla rete e il propositore del blocco successivo aggiunge la prova al blocco. Il propositore del blocco, quindi, riceve una ricompensa per aver tagliato il validatore malevolo.",
+ "slot-term": "Slot",
+ "slot-definition": "Un periodo di tempo (12 secondi), entro cui i nuovi blocchi possono essere proposti da un validatore nel sistema di proof-of-stake. Uno slot può essere vuoto. 32 slot compongono un'epoca. Maggiori informazioni sul proof-of-stake.",
+ "smart-contract-term": "Smart Contract",
+ "smart-contract-definition": "Un programma eseguito sull'infrastruttura di calcolo di Ethereum. Introduzione ai contratti intelligenti.",
+ "snark-term": "SNARK",
+ "snark-definition": "Abbreviazione di \"succinct non-interactive argument of knowledge\", uno SNARK è un tipo di prova a conoscenza zero. Maggiori informazioni sui rollup a conoscenza zero.",
+ "soft-fork-term": "Soft fork",
+ "soft-fork-definition": "Una divergenza in una blockchain che si verifica al cambiare delle regole di consenso. Diversamente da una diramazione permanente, una soft fork è retrocompatibile; i nodi aggiornati possono convalidare i blocchi creati dai nodi non aggiornati fintanto che seguono le nuove regole di consenso.",
+ "solidity-term": "Solidity",
+ "solidity-definition": "Un linguaggio di programmazione procedurale (imperativo) con una sintassi simile a JavaScript, C++ o Java. Il linguaggio più popolare e utilizzato più di frequente per i contratti intelligenti di Ethereum. Creato dal Dr. Gavin Wood. Maggiori informazioni su Solidity.",
+ "solidity-inline-assembly-term": "Assembly inline di Solidity",
+ "solidity-inline-assembly-definition": "Il linguaggio di assembly dell'EVM in un programma in Solidity. Il supporto di Solidity all'assembly inline facilita la scrittura di determinate operazioni.",
+ "stablecoin-term": "Stablecoin",
+ "stablecoin-definition": "Un token ERC-20 con un valore ancorato al valore di un'altra risorsa. Esistono stablecoin sostenuti da valute legali come i dollari, da metalli preziosi come l'oro, e da altre criptovalute, come Bitcoin.",
+ "staking-term": "Staking",
+ "staking-definition": "Depositare una quantità di ether (il proprio stake), per diventare un validatore e proteggere la rete. Un validatore controlla le transazioni e propone i blocchi, secondo un modello di consenso di proof-of-stake. Lo staking dà un incentivo economico per agire nel migliore interesse della rete. Si riceveranno ricompense per aver realizzato i propri compiti da validatore, ma si perderanno importi variabili di ETH in caso contrario. Maggiori informazioni sullo staking di Ethereum.",
+ "staking-pool-term": "Pool di staking",
+ "staking-pool-definition": "Gli ETH combinati di più di uno staker di Ethereum, utilizzati per raggiungere i 32 ETH necessari per attivare una serie di chiavi del validatore. L'operatore di un nodo utilizza tali chiavi per partecipare al consenso, e le ricompense del blocco sono divise tra gli staker che contribuiscono. I pool di staking o lo staking delegato non sono nativi del protocollo di Ethereum, ma molte soluzioni sono state create dalla community. Maggiori informazioni sullo staking in gruppo.",
+ "stark-term": "STARK",
+ "stark-definition": "Abbreviazione di \"scalable transparent argument of knowledge\", uno STARK è un tipo di prova a conoscenza zero. Maggiori informazioni sui rollup a conoscenza zero.",
+ "state-term": "Stato",
+ "state-definition": "Un'istantanea di tutti i saldi e i dati in un dato momento sulla blockchain, normalmente riferita alla condizione a un blocco in particolare.",
+ "state-channels-term": "State channels",
+ "state-channels-definition": "Una soluzione di livello 2 in cui è configurato un canale tra i partecipanti, dove possono svolgere transazioni liberamente ed economicamente. Alla Rete Principale viene inviata soltanto una transazione per configurare e chiudere il canale. Ciò consente un volume molto elevato di transazioni, ma si affida alla conoscenza del numero di partecipanti in anticipo e al blocco dei fondi. Maggiori informazioni sui canali di stato.",
+ "supermajority-term": "Supermaggioranza",
+ "supermajority-definition": "Supermaggioranza è il termine dato a un importo che superi i 2/3 (66%) dell'ether in staking totale che protegge Ethereum. Un voto di supermaggioranza è necessario perché i blocchi siano finalizzati sulla Beacon Chain.",
+ "syncing-term": "Sincronizzazione",
+ "syncing-definition": "Il processo di scaricare integralmente l'ultima versione della blockchain su un nodo.",
+ "sync-committee-term": "Comitato di sincronizzazione",
+ "sync-committee-definition": "Un comitato di sincronizzazione è un gruppo di validatori selezionati casualmente, che si aggiorna circa ogni 27 ore circa. Il loro scopo è aggiungere le proprie firme alle intestazioni dei blocchi validi. I comitati di sincronizzazione consentono ai client leggeri di tenere traccia della testa della blockchain senza dover accedere all'intero insieme di validatori.",
+ "szabo-term": "Szabo",
+ "szabo-definition": "Una denominazione di ether. 1 szaabo = 1012wei. 106 szabo = 1 ether.",
+ "terminal-total-difficulty-term": "Difficoltà totale terminale (TTD)",
+ "terminal-total-difficulty-definition": "La difficoltà totale è la somma della difficoltà di mining di Ethash per tutti i blocchi fino a un certo punto specifico nella blockchain. La difficoltà totale terminale è un valore specifico per la difficoltà totale che era utilizzato come innesco per i client di esecuzione, per disattivare il proprio mining e bloccare le funzioni di gossip consentendo la transizione della rete al proof-of-stake.",
+ "testnet-term": "Rete di prova",
+ "testnet-definition": "In inglese Testnet, abbreviazione di \"rete di prova\"; una rete utilizzata per simulare il comportamento della rete principale di Ethereum.",
+ "token-term": "Token",
+ "token-definition": "Un bene virtuale scambiabile, definito nei contratti intelligenti sulla blockchain di Ethereum.",
+ "transaction-term": "Transazione",
+ "transaction-definition": "Dati inviati alla Blockchain di Ethereum, firmati da un conto di origine e destinati a un indirizzo specifico. La transazione contiene metadati come il limite del gas per tale transazione. Maggiori informazioni sulle transazioni.",
+ "transaction-fee-term": "Commissione sulle transazioni",
+ "transaction-fee-definition": "Una commissione che occorre pagare ogni volta che si utilizza la rete di Ethereum. Alcuni esempi includono l'invio di fondi dal proprio portafoglio o dall'interazione con una dapp, come lo scambio di token o l'acquisto di un oggetto da collezione. Può essere considerata come tariffa di servizio. Questa commissione cambierà a seconda del traffico sulla rete. Questo perché i validatori, le persone responsabili dell'elaborazione della transazione, potrebbero dare priorità alle transazioni con commissioni maggiori, quindi, la congestione forza l'aumento del prezzo.
A livello tecnico, la commissione della transazione si correla a quanto gas è richiesto dalla transazione.
La riduzione delle commissioni di transazione è un argomento di forte interesse al momento. Vedi il Livello 2.",
+ "trustlessness-term": "Mancanza di fiducia",
+ "trustlessness-definition": "La capacità di una rete di mediare le transazioni senza che alcuna delle parti coinvolte debba affidarsi a una terza parte.",
+ "turing-complete-term": "Turing completo",
+ "turing-complete-definition": "Concetto che prende il nome dal matematico e informatico inglese Alan Turing. Un sistema di regole per la manipolazione dei dati (come un insieme di istruzioni per computer, un linguaggio di programmazione o un automa cellulare) è detto \"Turing completo\" o \"universale dal punto di vista computazionale\" se può essere utilizzato per simulare qualsiasi macchina di Turing.",
+ "validator-term": "Validatore",
+ "validator-definition": "Un nodo in un sistema di proof-of-stake, responsabile dell'archiviazione dei dati, dell'elaborazione delle transazioni e dell'aggiunta di nuovi blocchi alla blockchain. Per attivare il software del validatore, occorre poter mettere in staking 32 ETH. Maggiori informazioni sullo staking su Ethereum.",
+ "validator-lifecycle-term": "Ciclo di vita del validatore",
+ "validator-lifecycle-definition": "La sequenza di stati in cui un validatore può esistere. Questi includono:
depositato: almeno 32 ETH sono stati depositati nel contratto di deposito dal validatore
in sospeso: il validatore è nella coda d'attivazione, in attesa di esser votato nella rete di validatori esistenti
attivo: sta attestando e proponendo blocchi
taglio: il validatore si è comportato in modo errato e sta ricevendo un taglio
in uscita: il validatore è stato segnalato per uscire dalla rete, volontariamente o perché è stato espulso.
",
+ "validity-proof-term": "Prova di validità",
+ "validity-proof-definition": "Un modello di sicurezza per certe soluzioni del livello 2 in cui, per incrementare la velocità, le transazioni sono raggruppate in pacchetti e inviate a Ethereum in un'unica transazione. Il calcolo della transazione è svolto all'esterno della catena, quindi fornito alla catena principale con una prova della sua validità. Questo metodo incrementa la quantità di transazioni possibili, pur mantenendo la sicurezza. Alcuni rollup utilizzano la prova di frode. Maggiori informazioni sui rollup a conoscenza zero.",
+ "validium-term": "Validium",
+ "validium-definition": "Una soluzione esterna alla catena che utilizza le prove di validità per migliorare il volume delle transazioni. A differenza dei rollup a conoscenza zero, i dati dei validium non sono archiviati sulla Rete Principale di livello 1. Maggiori informazioni sui validium.",
+ "vyper-term": "Vyper",
+ "vyper-definition": "Un linguaggio di programmazione di alto livello con una sintassi simile a Python. Pensato per avvicinarsi a un linguaggio funzionale puro. Creato da Vitalik Buterin. Maggiori informazioni su Vyper.",
+ "wallet-term": "Portafoglio",
+ "wallet-definition": "Software che detiene le chiavi private. Utilizzato per accedere e controllare i conti di Ethereum e per interagire con i contratti intelligenti. Le chiavi non devono essere memorizzate in un portafoglio, ma possono essere recuperate offline (ad esempio da una scheda di memoria o su carta) per migliorare la sicurezza. Nonostante il nome, i portafogli non contengono mai monete o token effettivi. Maggiori informazioni sui portafogli di Ethereum.",
+ "web3-term": "Web3",
+ "web3-definition": "La terza versione del web. Proposta per la prima volta dal Dr. Gavin Wood, il Web3 rappresenta una nuova visione e un nuovo focus per le applicazioni web: dalle applicazioni possedute e gestite centralmente, ad applicazioni basate su protocolli decentralizzati. Maggiori informazioni sul Web3.",
+ "wei-term": "Wei",
+ "wei-definition": "La più piccola denominazione di ether. 1018 wei = 1 ether.",
+ "zero-address-term": "Indirizzo zero",
+ "zero-address-definition": "Un indirizzo di Ethereum, composto interamente di zeri, frequentemente utilizzato come un indirizzo per rimuovere token dalla circolazione di proprietà. Si opera una distinzione tra i token rimossi formalmente dall'indice di un contratto intelligente tramite il metodo burn() e quelli inviati a questo indirizzo.",
+ "zk-proof-term": "Prova a conoscenza zero",
+ "zk-proof-definition": "Una prova a conoscenza zero è un metodo crittografico che consente a un individuo di provare che un'affermazione è vera senza veicolare alcuna informazione aggiuntiva. Maggiori informazioni sui rollup a conoscenza zero.",
+ "zk-rollup-term": "Rollup zero-knowledge",
+ "zk-rollup-definition": "Un rollup di transazioni che utilizza le prove di validità per offrire un maggiore volume di transazioni sul livello 2, utilizzando la sicurezza fornita dalla Rete Principale (livello 1). Sebbene non possano gestire tipi complessi di transazioni, come i rollup ottimistici, non hanno problemi di latenza, poiché la validità delle transazioni è già dimostrata al momento dell'invio. Maggiori informazioni sui rollup a conoscenza zero."
+}
diff --git a/src/intl/it/page-bug-bounty.json b/src/intl/it/page-bug-bounty.json
index 24b37f3714b..2dacdb3f85d 100644
--- a/src/intl/it/page-bug-bounty.json
+++ b/src/intl/it/page-bug-bounty.json
@@ -3,7 +3,7 @@
"page-upgrades-bug-bounty-annotations": "Può essere utile consultare le seguenti annotazioni:",
"page-upgrades-bug-bounty-client-bugs": "Bug dei client",
"page-upgrades-bug-bounty-client-bugs-desc": "I client eseguono la Rete Ethereum e devono seguire la logica stabilita nella specifica ed essere al sicuro da potenziali attacchi. I bug che vogliamo trovare sono legati all'implementazione del protocollo.",
- "page-upgrades-bug-bounty-client-bugs-desc-2": "Attualmente, i client del livello di esecuzione (Besu, Erigon, Geth e Nethermind) e del livello di consenso (Lighthouse, Lodestar, Nimbus, Teku e Prysm) sono inclusi nel Programma di ricerca dei bug. Altri client potrebbero essere aggiunti al completamento dei controlli e diventare pronti per la produzione.",
+ "page-upgrades-bug-bounty-client-bugs-desc-2": "Al momento, i client del livello d'esecuzione (Besu, Erigon, Geth e Nethermind) e i client del livello di consenso (Lighthouse, Lodestar, Nimbus, Teku e Prysm) sono inclusi nel Programma di Caccia ai Bug. Potrebbero esserne aggiunti di altri al completamento dei rispettivi controlli, e loro entrata in produzione. Al momento, anche c-kzg-4844 e go-kzg-4844 sono inclusi nel programma di caccia ai bug.",
"page-upgrades-bug-bounty-clients": "Client presenti nei bounty",
"page-upgrades-bug-bounty-clients-type-1": "Problemi di non-conformità della specifica",
"page-upgrades-bug-bounty-clients-type-2": "Crash imprevisti, RCE o vulnerabilità di tipo denial of service (DOS)",
@@ -57,7 +57,7 @@
"page-upgrades-bug-bounty-specs-docs": "Documenti di specifica",
"page-upgrades-bug-bounty-submit": "Segnala un bug",
"page-upgrades-bug-bounty-submit-desc": "Per ogni bug valido che trovi, riceverai delle ricompense. La quantità di ricompense riconosciute varierà in base alla Gravità. La gravità è calcolata secondo il modello di valutazione dei rischi OWASP, basato sull'Impatto sulla Rete Ethereum e sulla Probabilità.",
- "page-upgrades-bug-bounty-subtitle": "Guadagna fino a 250.000 USD e un posto in classifica trovando bug nel protocollo, nei client e in Solidity che interessano la rete Ethereum.",
+ "page-upgrades-bug-bounty-subtitle": "Guadagna fino a 250.000 USD e un posto in classifica trovando bug nel protocollo, nel client e in Solidity, che interessano la rete di Ethereum.",
"page-upgrades-bug-bounty-title": "Aperto alle segnalazioni",
"page-upgrades-bug-bounty-title-1": "La Beacon Chain",
"page-upgrades-bug-bounty-title-2": "Scelta della biforcazione",
diff --git a/src/intl/it/page-dapps.json b/src/intl/it/page-dapps.json
index 4a7b3dea13e..d779714349f 100644
--- a/src/intl/it/page-dapps.json
+++ b/src/intl/it/page-dapps.json
@@ -1,32 +1,48 @@
{
"page-dapps-1inch-logo-alt": "Logo di 1inch",
- "page-dapps-dexguru-logo-alt": "Logo di DexGuru",
"page-dapps-aave-logo-alt": "Logo di Aave",
"page-dapps-add-button": "Suggerisci dapp",
"page-dapps-add-title": "Aggiungi dapp",
+ "page-dapps-ankr-logo-alt": "Logo di Ankr",
+ "page-dapps-api3-logo-alt": "Logo di API3",
+ "page-dapps-arweave-logo-alt": "Logo di ARweave",
"page-dapps-audius-logo-alt": "Logo di Audius",
"page-dapps-augur-logo-alt": "Logo di Augur",
"page-dapps-axie-infinity-logo-alt": "Logo di Axie Infinity",
"page-dapps-balancer-logo-alt": "Logo di Balancer",
"page-dapps-brave-logo-alt": "Logo di Brave",
+ "page-dapps-beginner-friendly-description": "Alcune dApp adatte ai principianti. Esplora altre dApp di seguito.",
+ "page-dapps-beginner-friendly-header": "Adatte ai principianti",
"page-dapps-category-arts": "Arte e moda",
"page-dapps-category-browsers": "Browser",
+ "page-dapps-category-code-marketplaces": "Marketplace di codice",
"page-dapps-category-collectibles": "Oggetti da collezione digitali",
- "page-dapps-category-competitive": "Competizione",
+ "page-dapps-category-competitive": "Giochi Web3",
"page-dapps-category-computing": "Strumenti di sviluppo",
- "page-dapps-category-dex": "Scambi di token",
- "page-dapps-category-investments": "Investimenti",
+ "page-dapps-category-dex": "Borse",
+ "page-dapps-category-investments": "Fondi d'investimento",
"page-dapps-category-lending": "Assunzione ed erogazione di prestiti",
"page-dapps-category-lottery": "Crowdfunding",
"page-dapps-category-marketplaces": "Marketplace",
"page-dapps-category-music": "Musica",
"page-dapps-category-payments": "Pagamenti",
"page-dapps-category-insurance": "Assicurazioni",
- "page-dapps-category-portfolios": "Portfolio",
- "page-dapps-category-trading": "Mercati di scambio e previsione",
+ "page-dapps-category-portfolios": "Gestione del portfolio",
+ "page-dapps-category-trading": "Mercati predittivi",
"page-dapps-category-utilities": "Utilità",
"page-dapps-category-worlds": "Mondi virtuali",
+ "page-dapps-category-demand-aggregator": "Aggregatori di domanda",
+ "page-dapps-category-derivatives": "Derivati",
+ "page-dapps-category-liquid-staking": "Liquid staking",
+ "page-dapps-category-bridges": "Bridge",
+ "page-dapps-category-experiences": "Esperienze condivise",
+ "page-dapps-category-guilds": "Gilde di rendimento",
+ "page-dapps-category-avatar": "Avatar",
"page-dapps-choose-category": "Scegli una categoria",
+ "page-dapps-category-social": "Social media",
+ "page-dapps-category-content": "Contenuto",
+ "page-dapps-category-messaging": "Messaggistica",
+ "page-dapps-category-identity": "Identità",
"page-dapps-collectibles-benefits-1-description": "Quando l'arte è tokenizzata su Ethereum, la proprietà è dimostrabile da chiunque. Puoi monitorare il percorso dell'opera d'arte dalla sua creazione, al suo proprietario attuale. Ciò previene le falsificazioni.",
"page-dapps-collectibles-benefits-1-title": "La proprietà è dimostrabile",
"page-dapps-collectibles-benefits-2-description": "Pagare per riprodurre musica o acquistare opere d'arte è più corretto nei confronti degli artisti. Con Ethereum, la necessità degli intermediari è ridotta. E, se questi sono necessari, i loro costi non sono così tanto elevati, poiché le piattaforme non necessitano di pagare per l'infrastruttura della rete.",
@@ -41,10 +57,15 @@
"page-dapps-collectibles-description": "Si tratta di applicazioni incentrate sulla proprietà digitale, che aumentano il potenziale di guadagno per gli autori e inventano nuovi modi per investire nei tuoi autori preferiti e nel loro lavoro.",
"page-dapps-collectibles-title": "Opere d'arte e oggetti da collezione decentralizzati",
"page-dapps-compound-logo-alt": "Logo di Compound",
+ "page-dapps-convex-logo-alt": "Logo di Convex",
"page-dapps-cryptopunks-logo-alt": "Logo di CryptoPunks",
"page-dapps-cryptovoxels-logo-alt": "Logo di Cryptovoxels",
+ "page-dapps-cyberconnect-logo-alt": "Logo di CyberConnect",
"page-dapps-dapp-description-1inch": "Ti aiuta a evitare lo scivolamento elevato dei prezzi, aggregando quelli migliori.",
"page-dapps-dapp-description-aave": "Presta i tuoi token per maturare interessi, e preleva in qualsiasi momento.",
+ "page-dapps-dapp-description-ankr": "Insieme di diversi prodotti dell'infrastruttura Web3 per costruire, guadagnare, giocare e altro – tutto su una blockchain.",
+ "page-dapps-dapp-description-api3": "Feed di dati di riferimento di prima parte sui prezzi che consentono alle dApp su 10 reti (in aumento) di connettersi ai dati in tempo reale sui prezzi delle risorse, inclusi i prezzi di criptovalute e valute.",
+ "page-dapps-dapp-description-arweave": "Archivia dati in modo permanente e sostenibile, con una sola commissione anticipata.",
"page-dapps-dapp-description-async-art": "Crea, colleziona e scambia i dipinti digitali #ProgrammableArt, suddivisi in \"Livelli\", utilizzabili per influenzare l'immagine generale. Ogni Master e Layer è un token ERC-721.",
"page-dapps-dapp-description-audius": "Piattaforma di streaming decentralizzata. Ascolti = denaro per i creatori, non per le etichette.",
"page-dapps-dapp-description-augur": "Scommetti sui risultati di sport, economia e altri eventi mondiali.",
@@ -53,24 +74,34 @@
"page-dapps-dapp-description-brave": "Guadagna token per navigare sul browser e supporta i tuoi autori preferiti.",
"page-dapps-dapp-description-cent": "Un social network in cui guadagni denaro, pubblicando NFT.",
"page-dapps-dapp-description-compound": "Presta i tuoi token per ottenere interessi e preleva in qualsiasi momento.",
+ "page-dapps-dapp-description-convex": "Convex permette ai fornitori di liquidità di Curve di guadagnare commissioni di trading e ricevere maggiori CRV senza bloccare i loro CRV.",
"page-dapps-dapp-description-cryptopunks": "Acquista, rilancia e offri punk in vendita: uno dei primi token da collezione, su Ethereum.",
"page-dapps-dapp-description-cryptovoxels": "Crea gallerie d'arte e negozi e acquista terreni: un mondo virtuale di Ethereum.",
+ "page-dapps-dapp-description-cyberconnect": "Protocollo di grafico sociale decentralizzato che aiuta le dApp ad avviare gli effetti della rete e a creare esperienze social personalizzate",
"page-dapps-dapp-description-dark-forest": "Conquista pianeti in un universo infinito, generato proceduralmente e con specifiche crittografiche.",
"page-dapps-dapp-description-decentraland": "Colleziona e scambia terreni virtuali in un mondo virtuale, tutto da esplorare.",
"page-dapps-dapp-description-ens": "Nomi intuitivi per gli utenti, per indirizzi di Ethereum e siti decentralizzati.",
"page-dapps-dapp-description-foundation": "Investi in edizioni uniche di opere d'arte digitali, e scambia articoli con altri acquirenti.",
"page-dapps-dapp-description-gitcoin": "Guadagna criptovalute lavorando con software open source.",
"page-dapps-dapp-description-gitcoin-grants": "Crowdfunding per progetti della community di Ethereum, con contributi amplificati",
+ "page-dapps-dapp-description-gm": "Piattaforma completa per chat, forum e voce, che condivide realmente le entrate con i propri creatori",
"page-dapps-dapp-description-gods-unchained": "Gioco strategico di carte scambiabili. Ottieni carte giocando, e rivendile nella vita reale.",
"page-dapps-dapp-description-golem": "Accedi a potenza di calcolo condivisa, o noleggia le tue risorse.",
+ "page-dapps-dapp-description-graph": "Un protocollo di indicizzazione per interrogare reti come Ethereum e IPFS.",
+ "page-dapps-dapp-description-ipfs": "Un protocollo ipermediale peer-to-peer progettato per preservare e accrescere le conoscenze dell'umanità, rendendo il web aggiornabile, resiliente e più aperto.",
"page-dapps-dapp-description-radicle": "Collaborazione tra pari al codice sicura e priva di intermediari.",
+ "page-dapps-dapp-description-kyberswap": "Scambia e guadagna ai tassi migliori.",
+ "page-dapps-dapp-description-lido": "Staking semplificato e sicuro per le risorse digitali.",
"page-dapps-dapp-description-loopring": "Piattaforma di trading tra pari, realizzata per essere veloce.",
"page-dapps-dapp-description-marble-cards": "Crea e scambia carte digitali uniche, basate sugli URL.",
"page-dapps-dapp-description-matcha": "Cerca più piattaforme di scambio per aiutarti a trovare i prezzi migliori.",
+ "page-dapps-dapp-description-mirror": "Creato sul web3, per il web3, la robusta piattaforma di pubblicazione di Mirror supera i limiti della scrittura online",
+ "page-dapps-dapp-description-multichain": "Il Router definitivo per il web3. Si tratta di un'infrastruttura sviluppata per le interazioni arbitrarie tra catene.",
"page-dapps-dapp-description-nifty-gateway": "Acquista opere su catena dagli artisti, atleti, marchi e creatori più popolari.",
"page-dapps-dapp-description-oasis": "Scambia, prendi in prestito e risparmia con DAI, una Stablecoin di Ethereum.",
"page-dapps-dapp-description-opensea": "Acquista, vendi, scopri e scambia beni in edizione limitata.",
"page-dapps-dapp-description-opera": "Invia criptovalute dal tuo browser ai commercianti, ad altri utenti e alle app.",
+ "page-dapps-dapp-description-osuvox": "Avatar 3D che vivono sulla blockchain",
"page-dapps-dapp-description-poap": "Colleziona NFT che dimostrano che hai partecipato a diversi eventi virtuali o fisici. Utilizzali per partecipare a lotterie, votare, collaborare, o semplicemente per vantarti.",
"page-dapps-dapp-description-polymarket": "Scommetti sui risultati. Scambia sui mercati di informazioni.",
"page-dapps-dapp-description-pooltogether": "Una lotteria dove non puoi perdere. Premi ogni settimana.",
@@ -82,12 +113,18 @@
"page-dapps-dapp-description-rotki": "Strumento di monitoraggio, analisi, contabilità e rendicontazione fiscale open source, che rispetta la tua privacy.",
"page-dapps-dapp-description-krystal": "Un'unica piattaforma, per accedere a tutti i tuoi servizi della DeFi preferiti.",
"page-dapps-dapp-description-rarible": "Crea, vendi e acquista oggetti da collezione tokenizzati.",
+ "page-dapps-dapp-description-rubic": "Aggregatore di tecnologie tra catene per gli utenti e per le dApp.",
"page-dapps-dapp-description-sablier": "Trasmetti denaro in tempo reale.",
+ "page-dapps-dapp-description-skiff": "Email crittografata end-to-end, calendario, documenti e file che ti danno il potere di comunicare liberamente.",
+ "page-dapps-dapp-description-spatial": "Crea il tuo avatar e i tuoi mondi 3D personalizzati",
+ "page-dapps-dapp-description-spruce": "Stack open source per lasciare il controllo dell'identità e dei dati laddove dovrebbero essere: con gli utenti.",
+ "page-dapps-dapp-description-status": "Progettato per consentire il libero flusso di informazioni, proteggere il diritto a conversazioni private e sicure e promuovere la sovranità delle persone.",
"page-dapps-dapp-description-superrare": "Acquista opere d'arte digitali direttamente dagli artisti, o nei mercati secondari.",
+ "page-dapps-dapp-description-synthetix": "Synthetix è un protocollo per l'emissione e il trading di risorse sintetiche",
"page-dapps-dapp-description-token-sets": "Strategie di investimento in criptovalute, che si riequilibrano automaticamente.",
"page-dapps-dapp-description-uniswap": "Scambia semplicemente token o fornisci token per ricompense in percentuale.",
- "page-dapps-dapp-description-dexguru": "Un terminale di trading privo di custodia, per i trader della DeFi",
- "page-dapps-dapp-description-synthetix": "Synthetix è un protocollo per l'emissione e il trading di risorse sintetiche",
+ "page-dapps-dapp-description-xmtp": "Invia messaggi tra conti della blockchain, inclusi DM, avvisi, annunci, e molto altro.",
+ "page-dapps-dapp-description-yearn": "Yearn Finance è un aggregatore di rendimenti. Offre a persone, DAO e altri protocolli un modo per depositare risorse digitali e ricevere rendimenti.",
"page-dapps-docklink-dapps": "Introduzione alle dApp",
"page-dapps-docklink-smart-contracts": "Contratti intelligenti",
"page-dapps-dark-forest-logo-alt": "Logo di Dark Forest",
@@ -103,9 +140,7 @@
"page-dapps-desc": "Trova un'applicazione di Ethereum da provare.",
"page-dapps-doge-img-alt": "Illustrazione di un cane di razza doge, che utilizza un computer",
"page-dapps-editors-choice-dark-forest": "Gioca contro gli altri per conquistare pianeti e testa l'avanzatissima tecnologia di ridimensionamento e privacy di Ethereum. Forse, per coloro che conoscono già Ethereum.",
- "page-dapps-editors-choice-description": "Alcune dapp del momento, adorate dal team di ethereum.org. Esplora altre dapp qui sotto.",
"page-dapps-editors-choice-foundation": "Investi in cultura. Acquista, scambia e vendi opere d'arte digitali uniche e moda da alcuni incredibili artisti, musicisti e marchi.",
- "page-dapps-editors-choice-header": "Scelte da noi",
"page-dapps-editors-choice-pooltogether": "Acquista un biglietto per la lotteria senza perdita. Ogni settimana, l'interesse generato dall'intero gruppo di biglietti, è inviato a un vincitore fortunato. Riprendi i tuoi soldi quando preferisci.",
"page-dapps-editors-choice-uniswap": "Scambia facilmente i tuoi token. Uno dei preferiti della community, che ti consente di scambiare token con gente, per tutta la rete.",
"page-dapps-ens-logo-alt": "Logo del Servizio del Nome di Ethereum",
@@ -155,8 +190,10 @@
"page-dapps-get-started-title": "Primi passi",
"page-dapps-gitcoin-grants-logo-alt": "Logo di Gitcoin Grants",
"page-dapps-gitcoin-logo-alt": "Logo di Gitcoin",
+ "page-dapps-gm-logo-alt": "Logo di gm.xyz",
"page-dapps-gods-unchained-logo-alt": "Logo di Gods Unchained",
"page-dapps-golem-logo-alt": "Logo di Golem",
+ "page-dapps-graph-logo-alt": "Logo di Graph",
"page-dapps-radicle-logo-alt": "Logo di Radicle",
"page-dapps-hero-header": "Strumenti e servizi basati su Ethereum",
"page-dapps-hero-subtitle": "Le dapp sono un movimento crescente di applicazioni, che utilizzano Ethereum per interrompere i modelli aziendali o inventarne di nuovi.",
@@ -164,10 +201,13 @@
"page-dapps-how-dapps-work-p2": "Un contratto intelligente è una serie di regole che risiedono sulla catena, visibili a tutti e operati esattamente secondo tali regole. Immagina un distributore automatico: se gli fornisci abbastanza fondi e la selezione corretta, otterrai l'articolo desiderato. E come i distributori automatici, i contratti intelligenti possono detenere fondi molto simili al tuo conto di Ethereum. Ciò consente al codice di mediare accordi e transazioni.",
"page-dapps-how-dapps-work-p3": "Una volta distribuite le dapp sulla rete di Ethereum, non puoi modificarle. Le dapp possono essere decentralizzate poiché controllate dalla logica scritta nel contratto, non da un individuo o da un'azienda.",
"page-dapps-how-dapps-work-title": "Come funzionano le dapp",
+ "page-dapps-ipfs-logo-alt": "Logo di IPFS",
+ "page-dapps-kyberswap-logo-alt": "Logo di KyberSwap",
"page-dapps-learn-callout-button": "Inizia a sviluppare",
"page-dapps-learn-callout-description": "Il nostro portale per sviluppatori della community include documentazioni, strumnti e quadri per aiutarti a creare la tua dapp.",
"page-dapps-learn-callout-image-alt": "Illustrazione di una mano, che crea un simbolo degli ETH, realizzato con mattoncini Lego.",
"page-dapps-learn-callout-title": "Impara a creare una dapp",
+ "page-dapps-lido-logo-alt": "Logo di Lido",
"page-dapps-loopring-logo-alt": "Logo di Loopring",
"page-dapps-magic-behind-dapps-description": "Le dapp potrebbero somigliare ad app regolari. In realtà, dietro le quinte, hanno alcune qualità speciali, poiché ereditano tutti i superpoteri di Ethereum. Ecco ciò che rende le dapp differenti dalle app.",
"page-dapps-magic-behind-dapps-link": "Cosa rende Ethereum straordinario?",
@@ -178,11 +218,23 @@
"page-dapps-marble-cards-logo-alt": "Logo di marble.cards",
"page-dapps-async-logo-alt": "Logo di Async",
"page-dapps-matcha-logo-alt": "Logo di Matcha",
+ "page-dapps-metaverse-benefits-title": "metaverso",
+ "page-dapps-metaverse-benefits-description": "Perché Ethereum permette al metaverso di prosperare?",
+ "page-dapps-metaverse-benefits-1-title": "NFT",
+ "page-dapps-metaverse-benefits-1-description": "Oggetti di gioco unici posseduti dagli utenti e interoperabili tra mondi virtuali e marketplace che supportano gli stessi standard.",
+ "page-dapps-metaverse-benefits-2-title": "Comunità possedute dagli utenti",
+ "page-dapps-metaverse-benefits-2-description": "Le identità sono possedute dagli utenti, con infinite opportunità di esplorare e creare social network tra svariati mondi virtuali.",
+ "page-dapps-metaverse-button": "Metaverso",
+ "page-dapps-metaverse-title": "Metaverso",
+ "page-dapps-metaverse-description": "Si tratta di applicazioni che consentono agli utenti di partecipare liberamente a mondi virtuali. Gli utenti possono formare reti personali e prendere possesso di risorse digitali",
+ "page-dapps-mirror-logo-alt": "Logo di Mirror",
"page-dapps-mobile-options-header": "Sfoglia un'altra categoria",
+ "page-dapps-multichain-logo-alt": "Logo di Multichain",
"page-dapps-nifty-gateway-logo-alt": "Logo di Nifty Gateway",
"page-dapps-oasis-logo-alt": "Logo di Oasis",
"page-dapps-opensea-logo-alt": "Logo di OpenSea",
"page-dapps-opera-logo-alt": "Logo di Opera",
+ "page-dapps-osuvox-logo-alt": "Logo di OSUVOX",
"page-dapps-polymarket-logo-alt": "Logo di Polymarket",
"page-dapps-poap-logo-alt": "Logo del Protocollo di Prova di Partecipazione",
"page-dapps-pooltogether-logo-alt": "Logo di PoolTogether",
@@ -190,10 +242,18 @@
"page-dapps-ready-button": "Via!",
"page-dapps-ready-description": "Scegli una dapp da provare",
"page-dapps-ready-title": "Pronto?",
+ "page-dapps-rubic-logo-alt": "Logo di Rubic",
"page-dapps-sablier-logo-alt": "Logo di Sablier",
"page-dapps-set-up-a-wallet-button": "Trova un portafoglio",
"page-dapps-set-up-a-wallet-description": "Un portafoglio è il tuo \"accesso\" per una dapp",
"page-dapps-set-up-a-wallet-title": "Configura un portafoglio",
+ "page-dapps-skiff-logo-alt": "Logo di Skiff",
+ "page-dapps-social-button": "Social",
+ "page-dapps-social-description": "Si tratta di applicazioni incentrate sulla creazione di social network decentralizzati, utilizzando tecnologie di identità decentralizzata, in cui le identità digitali e i grafici sociali sono posseduti dagli utenti.",
+ "page-dapps-social-title": "Social",
+ "page-dapps-spatial-logo-alt": "Logo di Spatial",
+ "page-dapps-spruce-logo-alt": "Logo di Spruce",
+ "page-dapps-status-logo-alt": "Logo di Status",
"page-dapps-superrare-logo-alt": "Logo di SuperRare",
"page-dapps-technology-button": "Tecnologia",
"page-dapps-technology-description": "Si tratta di applicazioni incentrate sulla decentralizzazione degli strumenti per sviluppatori, incorporando sistemi criptoeconomici nella tecnologia esistente e creando mercati per il lavoro di sviluppo open source.",
@@ -212,11 +272,17 @@
"page-dapps-more-on-nft-gaming-button": "Di più sugli oggetti di gioco tokenizzati",
"page-dapps-dapp-description-pwn": "Prestiti facili, garantiti da qualsiasi token o NFT, su Ethereum.",
"page-dapps-pwn-image-alt": "Logo di PWN",
- "page-dapps-dapp-description-yearn": "Yearn Finance è un aggregatore di rendimenti. Offre a persone, DAO e altri protocolli un modo per depositare risorse digitali e ricevere rendimenti.",
- "page-dapps-yearn-image-alt": "Logo Yearn",
- "page-dapps-dapp-description-convex": "Convex permette ai fornitori di liquidità di Curve di guadagnare commissioni di trading e ricevere maggiori CRV senza bloccare i loro CRV.",
- "page-dapps-convex-image-alt": "Logo Convex",
+ "page-dapps-xmtp-logo-alt": "Logo di XMTP",
+ "opage-dapps-yearn-logo-alt": "Logo di Yearn",
+ "page-dapps-yearn-image-alt": "Logo di Yearn",
+ "page-dapps-convex-image-alt": "Logo di Convex",
"foundation": "Foundation",
"transaction-fees": "Che cosa sono le commissioni sulle transazioni?",
- "page-wallets-get-some": "Ottieni ETH"
+ "page-wallets-get-some": "Ottieni ETH",
+ "page-dapps-dapp-description-curve": "Curve è una dEx dedicata alle stablecoin",
+ "page-dapps-curve-image-alt": "Logo di Curve",
+ "page-dapps-dapp-description-dodo": "DODO è un fornitore di liquidità on-chain, che sfrutta l'algoritmo Proactive Market Maker (PMM)",
+ "page-dapps-dodo-image-alt": "Logo di DODO",
+ "page-dapps-dapp-description-artblocks": "Art Blocks si dedica a dare vita ad avvincenti opere di arte generativa contemporanea",
+ "page-dapps-artblocks-image-alt": "Logo di Art block"
}
diff --git a/src/intl/it/page-layer-2.json b/src/intl/it/page-layer-2.json
index a0248d41d27..ca6294d797c 100644
--- a/src/intl/it/page-layer-2.json
+++ b/src/intl/it/page-layer-2.json
@@ -123,6 +123,7 @@
"zksync-description": "zkSync è una piattaforma di rollup zk incentrata sull'utente prodotta da Matter Labs. È una soluzione di ridimensionamento per Ethereum, già live sulla rete principale di Ethereum. Supporta pagamenti, scambi di token e conio di NFT.",
"zkspace-description": "La piattaforma ZKSpace è composta da tre parti principali: un DEX AMM di livello 2 che utilizza la tecnologia ZK-Rollups chiamata ZKSwap, un servizio di pagamento chiamato ZKSquare e un marketplace NFT chiamato ZKSea.",
"aztec-description": "Aztec Network è il primo rollup zk privato su Ethereum, che consente alle applicazioni decentralizzate di avere accesso alla privacy e di scalare.",
+ "starknet-description": "Starknet è un rollup di validità di livello 2. Fornisce un volume elevato, costi del gas ridotti e mantiene i livelli di sicurezza del livello 1 di Ethereum.",
"layer-2-note": "Nota:",
"layer-2-ecosystem-portal": "Portale dell'Ecosistema",
"layer-2-token-lists": "Elenchi di Token",
diff --git a/src/intl/it/page-learn.json b/src/intl/it/page-learn.json
index 68de4bdc7f1..48bc3ee9d30 100644
--- a/src/intl/it/page-learn.json
+++ b/src/intl/it/page-learn.json
@@ -11,7 +11,7 @@
"hero-subtitle": "La tua guida educativa al mondo di Ethereum. Scopri come funziona e come connetterti. Questa pagina include articoli, guide e risorse tecnici e non tecnici.",
"hero-button-lets-get-started": "Iniziamo",
"what-is-crypto-1": "Potresti aver sentito parlare di criptovalute, blockchain e Bitcoin. I link che seguono ti aiuteranno a capire cosa sono e come si relazionano con Ethereum.",
- "what-is-crypto-2": "Le criptovalute, come Bitcoin, consentono a chiunque di trasferire denaro a livello globale. Anche Ethereum lo fa, ma può anche eseguire del codice che consente alle persone di creare applicazioni e organizzazioni. È al tempo stesso resistente e flessibile: qualsiasi programma informatico può essere eseguito su Ethereum. Per saperne di più e scoprire come iniziare:",
+ "what-is-crypto-2": "Le criptovalute, come i bitcoin, consentono a chiunque di trasferire denaro a livello globale. Anche Ethereum lo fa, ma può anche eseguire del codice che consenta alle persone di creare app e organizzazioni. È sia resiliente che flessibile: qualsiasi programma informatico può essere eseguito su Ethereum. Scopri di più e scopri come iniziare:",
"what-is-ethereum-card-title": "Cos'è Ethereum?",
"what-is-ethereum-card-description": "Se sei nuovo, inizia qui ad apprendere perché Ethereum è importante.",
"what-is-ethereum-card-image-alt": "Illustrazione di una persona che sbircia in un bazar, che rappresenta Ethereum.",
diff --git a/src/intl/it/page-stablecoins.json b/src/intl/it/page-stablecoins.json
index aae500f8acf..e1aa0e20dfc 100644
--- a/src/intl/it/page-stablecoins.json
+++ b/src/intl/it/page-stablecoins.json
@@ -129,6 +129,7 @@
"page-stablecoins-stablecoins-table-type-fiat-backed": "Valuta legale",
"page-stablecoins-stablecoins-table-type-precious-metals-backed": "Metalli preziosi",
"page-stablecoins-table-error": "Impossibile caricare le Stablecoin. Prova ad aggiornare la pagina.",
+ "page-stablecoins-table-loading": "Caricamento dei dati delle Stablecoin...",
"page-stablecoins-title": "Stablecoin",
"page-stablecoins-top-coins": "Stablecoin più popolari per capitalizzazioni di mercato",
"page-stablecoins-top-coins-intro": "La capitalizzazione di mercato è",
@@ -155,7 +156,7 @@
"coinbase-logo": "Logo di Coinbase",
"coinmama-logo": "Logo di Coinmama",
"compound-logo": "Logo di Compound",
- "example-projects": "Esempi di progetti",
+ "example-projects": "Progetti di esempio",
"gemini-logo": "Logo di Gemini",
"gitcoin-logo": "Logo di Gitcoin",
"loopring-logo": "Logo di Loopring",
diff --git a/src/intl/it/page-upgrades-index.json b/src/intl/it/page-upgrades-index.json
index 72224fd6919..bc6e2bcb1bf 100644
--- a/src/intl/it/page-upgrades-index.json
+++ b/src/intl/it/page-upgrades-index.json
@@ -2,12 +2,12 @@
"consensus-client-besu-logo-alt": "Logo di Besu",
"consensus-client-erigon-logo-alt": "Logo di Erigon",
"consensus-client-geth-logo-alt": "Logo di Geth",
- "consensus-client-lighthouse-logo-alt": "Logo Lighthouse",
- "consensus-client-lodestar-logo-alt": "Logo Lodestar",
+ "consensus-client-lighthouse-logo-alt": "Logo di Lighthouse",
+ "consensus-client-lodestar-logo-alt": "Logo di Lodestar",
"consensus-client-nethermind-logo-alt": "Logo di Nethermind",
- "consensus-client-nimbus-logo-alt": "Logo Nimbus",
- "consensus-client-prysm-logo-alt": "Logo Prysm",
- "consensus-client-teku-logo-alt": "Logo Teku",
+ "consensus-client-nimbus-logo-alt": "Logo di Nimbus",
+ "consensus-client-prysm-logo-alt": "Logo di Prysm",
+ "consensus-client-teku-logo-alt": "Logo di Teku",
"page-upgrades-answer-1": "La Beacon Chain è stata utilizzata come strumento per aggiornare la Rete Principale di Ethereum alla Fusione.",
"page-upgrades-answer-2": "Con La Fusione, Ethereum ha avuto il suo aggiornamento più sostanziale di sempre, scambiando il proof-of-work per un nuovo livello di consenso basato sul proof-of-stake.",
"page-upgrades-answer-4": "La Beacon Chain è stata utilizzata per sviluppare il consenso basato sul proof-of-stake che Ethereum utilizza oggi. Era eseguita separatamente dalla Rete Principale di Ethereum, così che gli sviluppatori potessero osservare il meccanismo di consenso in isolamento prima di utilizzarlo per coordinare le attività reali.",
@@ -20,12 +20,12 @@
"page-upgrade-article-author-ethereum-foundation": "Ethereum Foundation",
"page-upgrade-article-author-vitalik-buterin": "Vitalik Buterin",
"page-upgrade-article-author-ethos-dev": "Ethos.dev",
- "page-upgrade-article-title-two-point-oh": "Due Punti Oh: La Catena Del Faro",
- "page-upgrade-article-title-beacon-chain-explainer": "Devi leggere prima la spiegazione della Beacon Chain Ethereum 2.0",
+ "page-upgrade-article-title-two-point-oh": "Due punto zero: la Beacon Chain",
+ "page-upgrade-article-title-beacon-chain-explainer": "Devi prima leggere la spiegazione della Beacon Chain Ethereum 2.0",
"page-upgrade-article-title-sharding-consensus": "Consenso allo sharding",
- "page-upgrade-article-title-sharding-is-great": "Perché lo sharding è fantastico: demistificare le proprietà tecniche",
- "page-upgrade-article-title-rollup-roadmap": "Una roadmap centrata sul rollup",
- "page-upgrade-article-title-hitchhikers-guide-to-ethereum": "La Guida per Autostoppisti A Ethereum",
+ "page-upgrade-article-title-sharding-is-great": "Perché lo sharding è fantastico: spiegazione delle proprietà tecniche",
+ "page-upgrade-article-title-rollup-roadmap": "Una roadmap incentrata sui rollup",
+ "page-upgrade-article-title-hitchhikers-guide-to-ethereum": "La guida per autostoppisti a Ethereum",
"page-upgrade-article-title-eip-4844": "EIP-4844: Transazioni Shard Blob (Proto-Danksharding)",
"page-upgrade-article-title-proto-danksharding-faq": "FAQ Proto-Danksharding",
"page-upgrade-article-title-sharding-das": "Una spiegazione dello sharding e della campionatura della disponibilità dei dati (DAS)",
@@ -36,21 +36,21 @@
"page-upgrade-article-title-execution-layer-specs": "Specifiche del livello di esecuzione",
"page-upgrade-article-title-consensus-layer-specs": "Specifiche del livello di consenso",
"page-upgrade-article-title-engine-api-specs": "Specifiche dell'Engine API",
- "page-upgrades-beacon-chain-date": "La Beacon Chain è disponibile dall'1 dicembre 2020",
+ "page-upgrades-beacon-chain-date": "La Beacon Chain è disponibile dal 1° dicembre 2020",
"page-upgrades-beacon-chain-desc": "La Beacon Chain ha portato lo staking su Ethereum e ha gettato le fondamenta per gli aggiornamenti futuri. Coordina il nuovo Ethereum di proof-of-stake.",
- "page-upgrades-beacon-chain-estimate": "La beacon chain è live",
- "page-upgrades-beacon-chain-title": "La Beacon Chain",
- "page-upgrades-bug-bounty": "Visualizza il programma bug bounty",
- "page-upgrades-clients": "Controlla i client di consenso (precedentemente noti come client 'Eth2')",
+ "page-upgrades-beacon-chain-estimate": "La beacon chain è realtà",
+ "page-upgrades-beacon-chain-title": "La beacon chain",
+ "page-upgrades-bug-bounty": "Visualizza il programma di bug bounty",
+ "page-upgrades-clients": "Controlla i client di consenso (precedentemente noti come client \"Eth2\")",
"page-staking-deposit-contract-title": "Controlla l'indirizzo del contratto di deposito",
"page-upgrades-dive": "Dettagli sulla vision",
"page-upgrades-dive-desc": "Come stiamo rendendo Ethereum più scalabile, sicura e sostenibile, mantenendo il concetto fondamentale di decentralizzazione?",
"page-upgrades-docking": "La fusione",
- "page-upgrades-merge-answer-1": "La Fusione è avvenuta quando Ethereum è passata al protocollo di consenso proof-of-stake, il 15 settembre 2022. La Beacon Chain si è fusa con la Rete principale, rendendo obsoleta di fatto la proof-of-work su Ethereum, con la conseguente riduzione del consumo energetico di Ethereum del ~99,95%.",
+ "page-upgrades-merge-answer-1": "La Fusione è avvenuta quando Ethereum è passata al protocollo di consenso proof-of-stake, il 15 settembre 2022. La Beacon Chain si è fusa con la Rete Principale, rendendo obsoleta di fatto la proof-of-work su Ethereum, con la conseguente riduzione del consumo energetico di Ethereum del ~99,95%.",
"page-upgrades-merge-btn": "Maggiori informazioni sulla fusione",
"page-upgrades-merge-desc": "La Rete Principale di Ethereum si è fusa con la Beacon Chain di proof-of-stake, segnando la fine del mining ad alto consumo energetico.",
"page-upgrades-merge-estimate": "La Fusione è arrivata",
- "page-upgrades-merge-mainnet": "Cos'è la rete principale?",
+ "page-upgrades-merge-mainnet": "Cos'è la Rete Principale?",
"page-upgrades-eth-blog": "blog ethereum.org",
"page-upgrades-explore-btn": "Esplora gli aggiornamenti",
"page-upgrades-get-involved": "Partecipa all'aggiornamento di Ethereum",
@@ -70,12 +70,12 @@
"page-upgrades-index-staking-step-2-desc": "Prima di fare staking con i tuoi ETH, controlla di avere l'indirizzo corretto. Devi anche sapere usare il launchpad prima di farlo.",
"page-upgrades-index-staking-sustainability": "Più sostenibile",
"page-upgrades-meta-desc": "Una panoramica degli aggiornamenti di Ethereum e della visione che si spera di realizzare.",
- "page-upgrades-meta-title": "Aggiornamenti Ethereum (precedentemente 'Eth2')",
+ "page-upgrades-meta-title": "Aggiornamenti Ethereum (precedentemente \"Eth2\")",
"page-upgrades-proof-stake-link": "Maggiori informazioni sul proof of stake",
"page-upgrades-question-1-title": "Quando saranno disponibili gli aggiornamenti?",
- "page-upgrades-question-1-desc": "Ethereum viene aggiornato progressivamente; gli aggiornamenti sono distinti e con date di arrivo differenti.",
+ "page-upgrades-question-1-desc": "Ethereum viene aggiornata progressivamente; gli aggiornamenti sono distinti e con date di rilascio differenti.",
"page-upgrades-question-2-title": "La Beacon Chain è una blockchain separata?",
- "page-upgrades-question-2-desc": "Sì, la Beacon Chain era il nome dato a una blockchain di proof-of-stake parallela usata per aggiornare la Rete Principale di Ethereum. Ora esiste solo una blockchain, formata dalla fusione della blockchain originale di Ethereum e della Beacon Chain.",
+ "page-upgrades-question-2-desc": "Sì. Beacon Chain era il nome dato a una blockchain di proof-of-stake parallela usata per aggiornare la Rete Principale di Ethereum. Ora esiste solo una blockchain, formata dalla fusione della blockchain originale di Ethereum e della Beacon Chain.",
"page-upgrades-question-3-answer-2a": "La Fusione ha avuto un impatto minimo sugli sviluppatori di dapp, che interagiscono ancora con Ethereum nello stesso modo.",
"page-upgrades-question-3-answer-2a-link": "La Fusione e gli sviluppatori di dapp",
"page-upgrades-question-3-answer-2b": "I piani di frammentazione sono ancora in fase di sviluppo, ma saranno progettati tenendo a mente i rollup del livello 2.",
@@ -83,87 +83,87 @@
"page-upgrades-question-3-answer-3-link": "Visita ethresearch.ch",
"page-upgrades-question-3-desc": "Non è necessario fare nulla in questo momento per prepararsi agli aggiornamenti.",
"page-upgrades-question-3-title": "Come posso prepararmi per gli aggiornamenti?",
- "page-upgrades-question-4-answer-1": "Ogni volta che invii una transazione o usi una dapp oggi, stai usando il livello d'esecuzione, anche noto come Rete Principale.",
+ "page-upgrades-question-4-answer-1": "Ogni volta che invii una transazione o usi una dapp oggi, stai usando il livello di esecuzione, anche noto come Rete Principale.",
"page-upgrades-question-4-answer-3": "Dalla Fusione, i validatori proteggono l'intera rete tramite il proof-of-stake.",
"page-upgrades-question-4-answer-6": "Chiunque può diventare validatore facendo staking con i propri ETH.",
"page-upgrades-question-4-answer-7": "Maggiori informazioni sullo staking",
"page-upgrades-question-4-title": "Cos'è il livello di esecuzione?",
- "page-upgrades-question-4-desc": "Prima della Fusione, la blockchain di Ethereum era talvolta definita \"Eth1\". Questo termine è stato gradualmente eliminato in favore del 'livello di esecuzione\".",
- "page-upgrades-question-5-answer-1": "Per diventare un validatore sulla rete dovrai mettere in staking 32 ETH. Se non ne hai così tanti, o non vorresti mettere in staking una cifra così alta, puoi unirti ai pool di staking, che ti permetteranno di mettere in staking una cifra inferiore e di guadagnare frazioni delle ricompense totali.",
- "page-upgrades-question-5-desc": "Dovrai usare il launchpad per lo staking o unirti a una staking pool.",
+ "page-upgrades-question-4-desc": "Prima della Fusione, la blockchain di Ethereum era talvolta definita \"Eth1\". Questo termine è stato gradualmente eliminato in favore di \"livello di esecuzione\".",
+ "page-upgrades-question-5-answer-1": "Per diventare un validatore sulla rete dovrai mettere in staking 32 ETH. Se non ne hai così tanti, o non desideri mettere in staking una cifra così alta, puoi unirti ai pool di staking, che ti permetteranno di mettere in staking una cifra inferiore e di guadagnare frazioni delle ricompense totali.",
+ "page-upgrades-question-5-desc": "Dovrai usare il launchpad per lo staking o unirti a un pool di staking.",
"page-upgrades-question-5-title": "Come si fa staking?",
"page-upgrades-question-6-answer-3": "Danny Ryan della Ethereum Foundation tiene la community regolarmente aggiornata:",
"page-upgrades-question-6-answer-4": "Ben Edgington di ConsenSys ha una newsletter settimanale sugli aggiornamenti di Ethereum:",
"page-upgrades-question-6-answer-5": "È inoltre possibile partecipare alla discussione sulla ricerca e lo sviluppo di Ethereum su ethresearch.ch.",
"page-upgrades-question-6-title": "Che cosa devo fare con la mia dapp?",
"page-upgrades-question-6-desc": "La Fusione è stata progettata per avere un impatto minimo sugli sviluppatori di dapp, sebbene vi siano state alcune piccole modifiche che vale la pena notare.",
- "page-upgrades-question-6-answer-1": "Gli sviluppatori di dapp che hanno familiarità con l'Ethereum precedente alla Fusione dovrebbero esser consapevoli di alcune modifiche. Queste includono la struttura e le tempistiche del blocco, alcune modifiche all'opcode, sorgenti di casualità sulla catena e il concetto di finalizzazione dell'epoca.",
- "page-upgrades-question-6-answer-1-link": "Come la fusione ha influito sul livello applicativo di Ethereum",
+ "page-upgrades-question-6-answer-1": "Gli sviluppatori di dapp che hanno familiarità con l'Ethereum precedente alla Fusione dovrebbero essere consapevoli di alcune modifiche. Queste includono la struttura e le tempistiche del blocco, alcune modifiche all'opcode, sorgenti di casualità sulla catena e il concetto di finalizzazione dell'epoca.",
+ "page-upgrades-question-6-answer-1-link": "Come la Fusione ha influito sul livello applicativo di Ethereum",
"page-upgrades-question-6-answer-2": "Le applicazioni sono rimaste pressoché inalterate.",
- "page-upgrades-question-7-desc": "Molti team da tutta la community stanno lavorando sui vari aggiornamenti di Ethereum.",
+ "page-upgrades-question-7-desc": "Molti team da tutta la community stanno lavorando ai vari aggiornamenti di Ethereum.",
"page-upgrades-question-7-lighthouse": "Lighthouse",
- "page-upgrades-question-7-lighthouse-lang": "(Implementazione rust)",
+ "page-upgrades-question-7-lighthouse-lang": "(implementazione di Rust)",
"page-upgrades-question-7-lodestar": "Lodestar",
- "page-upgrades-question-7-lodestar-lang": "(implementazione JavaScript)",
+ "page-upgrades-question-7-lodestar-lang": "(implementazione di JavaScript)",
"page-upgrades-question-7-nimbus": "Nimbus",
- "page-upgrades-question-7-nimbus-lang": "(Implementazione Nim)",
+ "page-upgrades-question-7-nimbus-lang": "(implementazione di Nim)",
"page-upgrades-question-7-prysm": "Prysm",
- "page-upgrades-question-7-prysm-lang": "(Implementazione Go)",
- "page-upgrades-question-7-teams": "I team del client di consenso Ethereum:",
+ "page-upgrades-question-7-prysm-lang": "(implementazione di Go)",
+ "page-upgrades-question-7-teams": "I team del client di consenso di Ethereum:",
"page-upgrades-question-7-teku": "Teku",
- "page-upgrades-question-7-teku-lang": "(Implementazione Java)",
- "page-upgrades-question-7-title": "Chi sta sviluppando gli aggiornamenti Ethereum?",
- "page-upgrades-question-7-clients": "Scopri di più sui client Ethereum",
- "page-upgrades-question-8-answer-1": "Gli aggiornamenti di Ethereum aiuteranno la scalabilità di Ethereum in modo decentralizzato, mantenendo la sicurezza e aumentando la sostenibilità.",
+ "page-upgrades-question-7-teku-lang": "(implementazione di Java)",
+ "page-upgrades-question-7-title": "Chi sta sviluppando gli aggiornamenti di Ethereum?",
+ "page-upgrades-question-7-clients": "Scopri di più sui client di Ethereum",
+ "page-upgrades-question-8-answer-1": "Gli aggiornamenti di Ethereum aiuteranno Ethereum a ridimensionarsi in modo decentralizzato, mantenendo la sicurezza e aumentando la sostenibilità.",
"page-upgrades-question-8-answer-2": "Forse il problema più evidente è che Ethereum deve essere in grado di gestire più di 15-45 transazioni al secondo. Ma gli aggiornamenti oggi si occupano anche di altri problemi con Ethereum.",
- "page-upgrades-question-8-answer-3": "Nei momenti di elevata domanda della rete, Ethereum è costoso da usare. I nodi nella rete faticano per via delle dimensioni di Ethereum e della quantità di dati che i computer devono elaborare. L'algoritmo originale alla base della sicurezza e della decentralizzazione di Ethereum era ad alta intensità energetica e doveva essere più ecosostenibile.",
+ "page-upgrades-question-8-answer-3": "Nei momenti di elevata domanda della rete, Ethereum è costosa da usare. I nodi nella rete faticano per via delle dimensioni di Ethereum e della quantità di dati che i computer devono elaborare. L'algoritmo originale alla base della sicurezza e della decentralizzazione di Ethereum era ad alto consumo di energia e doveva essere più ecosostenibile.",
"page-upgrades-question-8-answer-4": "Molti dei cambiamenti attuali sono sempre stati nella tabella di marcia di Ethereum, sin dal 2015. Ma le condizioni odierne stanno rendendo gli aggiornamenti ancora più necessari.",
"page-upgrades-question-8-answer-6": "Esplora la visione di Ethereum",
"page-upgrades-question-8-desc": "La rete Ethereum che utilizziamo oggi deve offrire una migliore esperienza agli utenti finali e ai partecipanti.",
"page-upgrades-question-8-title": "A che servono gli aggiornamenti?",
"page-upgrades-question-9-answer-1": "Il ruolo più attivo che puoi scegliere di avere è lo staking con i tuoi ETH.",
"page-upgrades-question-9-answer-2": "Se lo desideri, puoi anche eseguire un secondo client per contribuire a migliorare la diversità dei client.",
- "page-upgrades-question-9-answer-3": "Se hai conoscente tecniche, puoi contribuire a trovare bug nei nuovi client.",
+ "page-upgrades-question-9-answer-3": "Se hai conoscenze tecniche, puoi contribuire a trovare bug nei nuovi client.",
"page-upgrades-question-9-answer-4": "Puoi inoltre partecipare alle discussioni tecniche con i ricercatori Ethereum su ethresearch.ch.",
- "page-upgrades-question-9-desc": "Non devi esser un tecnico per contribuire. La community sta cercado contributi da ogni tipo di competenza.",
- "page-upgrades-question-9-stake-eth": "Punta ETH",
+ "page-upgrades-question-9-desc": "Non devi essere un tecnico per contribuire. La community è alla ricerca di contributi da ogni tipo di competenza.",
+ "page-upgrades-question-9-stake-eth": "Fai staking con gli ETH",
"page-upgrades-question-9-title": "Come posso contribuire agli aggiornamenti di Ethereum?",
"page-upgrades-question-9-more": "Trova metodi più generali per partecipare a Ethereum",
- "page-upgrades-question-10-title": "Cosa sono le 'fasi di Eth2?'",
- "page-upgrades-question-10-desc": "Qui alcune cose sono cambiate.",
- "page-upgrades-question-10-answer-0": "Il termine 'Eth2' stesso è gradualmente eliminato, poiché non rappresenta un solo aggiornamento o una nuova rete. Più accuratamente, è una serie di diversi aggiornamenti che fanno tutti la propria parte per rendere Ethereum più scalabile, sicuro e sostenibile. La rete che conosci e ami sarà semplicemente indicata come Ethereum.",
+ "page-upgrades-question-10-title": "Cosa sono le \"fasi di Eth2\"?",
+ "page-upgrades-question-10-desc": "In questo ambito alcune cose sono cambiate.",
+ "page-upgrades-question-10-answer-0": "Il termine \"Eth2\" stesso è stato gradualmente eliminato, poiché non rappresenta un solo aggiornamento o una nuova rete. Per essere più precisi, è una serie di diversi aggiornamenti che fanno tutti la propria parte per rendere Ethereum più scalabile, sicura e sostenibile. La rete che conosci e ami sarà semplicemente indicata come Ethereum.",
"page-upgrades-question-10-answer-1": "Siamo riluttanti a parlare troppo di tabella di marcia tecnica perché abbiamo a che fare con software e quindi le cose possono cambiare. Pensiamo che sia più facile capire cosa stia succedendo guardando i risultati.",
"page-upgrades-question-10-answer-1-link": "Visualizza gli aggiornamenti",
"page-upgrades-question-10-answer-2": "Ma se hai seguito le discussioni, ecco come gli aggiornamenti si inseriscono nelle tabelle di marcia tecniche e un po' su come stanno cambiando.",
- "page-upgrades-question-10-answer-3": "Fase 0 ha descritto il lavoro per portare live la Beacon Chain.",
+ "page-upgrades-question-10-answer-3": "Con Fase 0 si intende il lavoro completato per far sì che la Beacon Chain diventasse realtà.",
"page-upgrades-question-10-answer-5": "La Fase 1 si concentrava originariamente sull'implementazione delle catene di frammenti, ma la priorità si è spostata alla Fusione, avvenuta il 15 settembre 2022.",
"page-upgrades-question-10-answer-6": "La Fase 1.5 era originalmente pianificata per seguire le implementazioni dei frammenti quando la Rete Principale sarebbe stata aggiunta come ultimo frammento alla Beacon Chain. Tuttavia, al progredire della tecnologia dei rollup, la community di Ethereum ha invece accelerato l'abbandono del proof-of-work.",
- "page-upgrades-question-10-answer-7": "I piani riguardanti la Fase 2 sono stati un punto di intensa ricerca e discussione. Con La Fusione alle spalle, e i progressi nelle soluzioni di livello 2, gli obiettivi sono passati a fornire una forma di frammentazione dei dati più semplificata per massimizzare l'efficienza dei rollup. Gli attuali livelli 2 consentono di ridimensionare l'esecuzione delle transazioni, e la frammentazione consentirà l'archiviazione di prove per questi dati sul livello 1 in modo economico e scalabile.",
- "page-upgrades-question-10-answer-8": "Ulteriori informazioni su una tabella di marcia incentrata sul rollup",
+ "page-upgrades-question-10-answer-7": "I piani riguardanti la Fase 2 sono stati un punto di intensa ricerca e discussione. Con La Fusione alle spalle, e i progressi nelle soluzioni di livello 2, l'obiettivo è diventato fornire una forma di sharding dei dati più semplificata per massimizzare l'efficienza dei rollup. Gli attuali livelli 2 consentono di ridimensionare l'esecuzione delle transazioni, e lo sharding consentirà l'archiviazione di prove per questi dati sul livello 1 in modo economico e scalabile.",
+ "page-upgrades-question-10-answer-8": "Ulteriori informazioni su una tabella di marcia incentrata sui rollup",
"page-upgrades-question-11-title": "Posso acquistare Eth2?",
"page-upgrades-question-11-desc": "No. Non esiste alcun token Eth2 e i tuoi ETH non cambieranno dopo La Fusione.",
- "page-upgrades-question-11-answer-1": "Una delle forze trainanti del rebranding di Eth2 era il comune equivoco che i titolari di ETH dovessero migrare i propri ETH in 'ETH 2.0' dopo La Fusione o qualsiasi altro aggiornamento. Ciò non è vero e non lo è mai stato.",
+ "page-upgrades-question-11-answer-1": "Una delle forze trainanti del rebranding di Eth2 era il comune equivoco che i titolari di ETH dovessero migrare i propri ETH in \"ETH 2.0\" dopo La Fusione o qualsiasi altro aggiornamento. Ciò non è vero e non lo è mai stato.",
"page-upgrades-question-11-answer-2": "Questa confusione è comunemente sfruttata dai truffatori.",
"page-upgrades-question-title": "Domande frequenti",
- "page-upgrades-question3-answer-1": "I titolari di ETH non devono fare nulla. Gli ETH non dovranno esser cambiati o aggiornati. Ci sono più che certamente delle truffe che dicono altrimenti, quindi, fate attenione.",
+ "page-upgrades-question3-answer-1": "I titolari di ETH non devono fare nulla. Gli ETH non dovranno esser cambiati o aggiornati. È quasi certo che esistano truffe che dicono il contrario, quindi fai attenzione.",
"page-upgrades-scalable": "Più scalabile",
"page-upgrades-scalable-desc": "Ethereum deve supportare migliaia di transazioni al secondo, per rendere le applicazioni più veloci e meno costose da usare.",
"page-upgrades-secure": "Più sicura",
"page-upgrades-secure-desc": "Ethereum deve essere più sicura; man mano che l'adozione di Ethereum aumenta, il protocollo deve essere più protetto da tutte le forme di attacco.",
"page-upgrades-shard-date": "Lo sharding seguirà La Fusione in più fasi, tra il 2023 e il 2024.",
- "page-upgrades-shard-desc": "Danksharding espanderà la capacità di Ethereum di immagazzinare dati e lavorare in armonia con L2 per scalare la portata e ridurre i costi di rete. Danksharding verrà implementato in più fasi, a partire da ProtoDanksharding.",
+ "page-upgrades-shard-desc": "Il Danksharding espanderà la capacità di Ethereum di memorizzare dati e opererà in armonia con i L2 per scalare il volume e ridurre le commissioni della rete. Il Danksharding sarà lanciato in diverse fasi, a partire dal ProtoDanksharding.",
"page-upgrades-shard-estimate": "Stima: 2023-2024",
"page-upgrades-shard-lower": "Maggiori informazioni sullo sharding",
"page-upgrades-shard-title": "Sharding",
"page-upgrades-stay-up-to-date": "Segui gli aggiornamenti",
"page-upgrades-stay-up-to-date-desc": "Ricevi le ultime notizie dai ricercatori e sviluppatori che lavorano agli aggiornamenti di Ethereum.",
- "page-upgrades-sustainable-desc": "Ethereum è stata ad alta intensità energetica fino a poco tempo fa. La transizione al proof-of-stake ha portato a una riduzione dell'energia della rete di oltre il 99,9%.",
+ "page-upgrades-sustainable-desc": "Fino a poco tempo fa Ethereum è stata ad alto consumo di energia. La transizione al proof-of-stake ha portato a una riduzione dell'energia della rete di oltre il 99,9%.",
"page-upgrades-take-part": "Partecipa alla ricerca",
- "page-upgrades-take-part-desc": "I ricercatori e appassionati di Ethereum si incontrano qui per discutere degli sforzi di ricerca, inclusa qualsiasi cosa a riguardo degli aggiornamenti di Ethereum.",
+ "page-upgrades-take-part-desc": "I ricercatori e gli appassionati di Ethereum si incontrano qui per discutere degli sforzi di ricerca, compreso tutto ciò che riguarda degli aggiornamenti di Ethereum.",
"page-upgrades-the-upgrades": "Gli aggiornamenti di Ethereum",
"page-upgrades-the-upgrades-desc": "Gli aggiornamenti di Ethereum mirano a migliorare la scalabilità, la sicurezza e la sostenibilità della rete. Ethereum ha recentemente subito alcuni importanti aggiornamenti di sicurezza e sostenibilità, e in futuro ne arriveranno degli altri, specialmente correlati alla scalabilità.",
- "page-upgrades-unofficial-roadmap": "Questa non è una tabella di marcia ufficiale. Questa è come visualizziamo quanto sta succedendo in base alle informazioni là fuori. Ma questa è tecnologia, le cose possono cambiare in un istante. Quindi siete pregati di non leggere queste informazioni come cosa certa.",
- "page-upgrades-upgrade-desc": "La rete Ethereum che tutti conosciamo e amiamo, solo più scalabile, più sicura e più sostenibile.",
+ "page-upgrades-unofficial-roadmap": "Questa non è una tabella di marcia ufficiale, ma è come visualizziamo quanto sta succedendo in base alle informazioni disponibili. Ma si tratta di tecnologia, quindi le cose possono cambiare in un istante. Si prega pertanto di non leggere queste informazioni come cosa certa.",
+ "page-upgrades-upgrade-desc": "La rete Ethereum che tutti conosciamo e amiamo, solo più scalabile, più sicura e più sostenibile...",
"page-upgrades-upgrades": "Gli aggiornamenti di Ethereum",
"page-upgrades-upgrades-aria-label": "Menu degli aggiornamenti di Ethereum",
"page-upgrades-upgrades-beacon-chain": "La Cadena de Baliza",
@@ -173,33 +173,33 @@
"page-upgrades-upgrading": "Aggiornare Ethereum a nuovi livelli",
"page-roadmap-vision": "La visione",
"page-roadmap-vision-btn": "Maggiori informazioni sulla visione di Ethereum",
- "page-roadmap-vision-desc": "Per portare Ethereum nella rete principale e servire tutta l'umanità, dobbiamo rendere Ethereum più scalabile, sicura e sostenibile.",
- "page-upgrades-what-happened-to-eth2-title": "Che è successo a 'Eth2?'",
- "page-upgrades-what-happened-to-eth2-1": "Il termine 'Eth2' era comunemente usato prima della Fusione, ma è in fase di graduale eliminazione in favore di una terminologia più precisa.",
- "page-upgrades-what-happened-to-eth2-1-more": "Maggiori informazioni sulla fusione.",
- "page-upgrades-what-happened-to-eth2-2": "Dalla fusione di 'Eth1' ed 'Eth2', non esistono più due blockchain distinte di Ethereum; esiste solo Ethereum.",
+ "page-roadmap-vision-desc": "Per rendere Ethereum mainstream e servire tutta l'umanità, dobbiamo renderla più scalabile, sicura e sostenibile.",
+ "page-upgrades-what-happened-to-eth2-title": "Cos'è successo a 'Eth2'?",
+ "page-upgrades-what-happened-to-eth2-1": "Il termine \"Eth2\" era comunemente usato prima della Fusione, ma è in fase di graduale eliminazione in favore di una terminologia più precisa.",
+ "page-upgrades-what-happened-to-eth2-1-more": "Maggiori informazioni sulla Fusione.",
+ "page-upgrades-what-happened-to-eth2-2": "Dalla Fusione di \"Eth1\" ed \"Eth2\", non esistono più due blockchain distinte di Ethereum; esiste solo Ethereum.",
"page-upgrades-what-happened-to-eth2-3": "Per limitare la confusione, la community ha aggiornato questi termini:",
- "page-upgrades-what-happened-to-eth2-3-1": "'Eth1' è ora il 'livello d'esecuzione' che gestisce le transazioni e l'esecuzione.",
- "page-upgrades-what-happened-to-eth2-3-2": "'Eth2' è ora il 'livello di consenso', che gestisce il consenso di proof-of-stake.",
- "page-upgrades-what-happened-to-eth2-4": "Questi aggiornamenti della terminologia cambiano solo le convenzioni di nomenclatura; ciò non altera gli obiettivi o la tabella di marcia di Ethereum.",
+ "page-upgrades-what-happened-to-eth2-3-1": "'Eth1' è ora il 'livello di esecuzione' che gestisce le transazioni e l'esecuzione.",
+ "page-upgrades-what-happened-to-eth2-3-2": "'Eth2' è ora il 'livello di consenso', che gestisce il consenso di Proof of stake.",
+ "page-upgrades-what-happened-to-eth2-4": "Questi aggiornamenti della terminologia cambiano solo le convenzioni di nomenclatura, senza alterare gli obiettivi né la tabella di marcia di Ethereum.",
"page-upgrades-what-happened-to-eth2-5": "Scopri di più sulla rinominazione di 'Eth2'",
"page-upgrades-why-cant-we-just-use-eth2-title": "Perché non possiamo limitarci a usare Eth2?",
"page-upgrades-why-cant-we-just-use-eth2-mental-models-title": "Modelli mentali",
- "page-upgrades-why-cant-we-just-use-eth2-mental-models-description": "Uno dei problemi principali con Eth2 è che crea un modello mentale sbagliato per i nuovi utenti di Ethereum. Pensano intuitivamente che Eth1 venga prima e Eth2 venga dopo. O che Eth1 cessi di esistere all'arrivo di Eth2. Niente di tutto ciò è vero. Rimuovendo la terminologia legata a Eth2, risparmiamo a tutti i futuri utenti la confusione di questo modello mentale.",
+ "page-upgrades-why-cant-we-just-use-eth2-mental-models-description": "Uno dei problemi principali del nome Eth2 è che crea un modello mentale sbagliato per i nuovi utenti di Ethereum. Pensano intuitivamente che Eth1 venga prima e Eth2 venga dopo. O che Eth1 cessi di esistere all'arrivo di Eth2. Niente di tutto ciò è vero. Rimuovendo la terminologia legata a Eth2, risparmiamo a tutti i futuri utenti la confusione di questo modello mentale.",
"page-upgrades-why-cant-we-just-use-eth2-inclusivity-title": "Inclusività",
- "page-upgrades-why-cant-we-just-use-eth2-inclusivity-description": "All'evolvere di Ethereum, Ethereum 2.0 è diventata una rappresentazione inaccurata della tabella di marcia. Essere cauti e accurati nella scelta delle parole consente ai contenuti su Ethereum di essere compresi dal pubblico più vasto possibile.",
+ "page-upgrades-why-cant-we-just-use-eth2-inclusivity-description": "Con l'evolvere della tabella di marcia di Ethereum, Ethereum 2.0 ne è diventata una rappresentazione inaccurata. Essere cauti e accurati nella scelta delle parole consente ai contenuti su Ethereum di essere compresi dal pubblico più vasto possibile.",
"page-upgrades-why-cant-we-just-use-eth2-scam-prevention-title": "Prevenzione delle truffe",
- "page-upgrades-why-cant-we-just-use-eth2-scam-prevention-description": "Purtroppo, dei malintenzionati hanno tentato di usare il termine improprio 'Eth2' per truffare gli utenti, dicendo loro di scambiare i propri ETH con token 'ETH2' o che avrebbero in qualche modo dovuto migrare i propri ETH prima dell'aggiornamento di Eth2. Speriamo che questa terminologia aggiornata porterà chiarezza, così da eliminare questo vettore di truffa e aiutare a rendere l'ecosistema più sicuro.",
+ "page-upgrades-why-cant-we-just-use-eth2-scam-prevention-description": "Purtroppo, dei malintenzionati hanno tentato di usare il termine improprio Eth2 per truffare gli utenti dicendo loro di scambiare i propri ETH con token \"ETH2\" o che avrebbero in qualche modo dovuto migrare i propri ETH prima dell'aggiornamento di Eth2. Speriamo che questa terminologia aggiornata porterà chiarezza, così da eliminare questo vettore di truffa e aiutare a rendere l'ecosistema più sicuro.",
"page-upgrades-why-cant-we-just-use-eth2-staking-clarity-title": "Chiarezza sullo staking",
- "page-upgrades-why-cant-we-just-use-eth2-staking-clarity-description": "Anche alcuni operatori di staking hanno rappresentato gli ETH messi in staking sulla Beacon Chain con il ticker 'ETH2'. Ciò ha creato potenziale confusione, dato che gli utenti di questi servizi non ricevono in realtà un token 'ETH2'. Non esiste alcun token 'ETH2'; rappresenta semplicemente la loro porzione specifica sullo stake totale dei fornitori.",
+ "page-upgrades-why-cant-we-just-use-eth2-staking-clarity-description": "Anche alcuni operatori di staking hanno rappresentato gli ETH messi in staking sulla Beacon Chain con il ticker \"ETH2\". Ciò ha creato potenziale confusione, dato che gli utenti di questi servizi non ricevono in realtà un token \"ETH2\". Non esiste alcun token \"ETH2\"; rappresenta semplicemente la loro porzione sullo stake dei fornitori specifici.",
"page-upgrades-what-to-do": "Che cosa devi fare?",
"page-upgrades-what-to-do-desc": "Se sei utente di una dapp o detieni ETH, non devi fare nulla. Se sei uno sviluppatore o vuoi iniziare a fare staking, oggi ci sono diversi modi per essere coinvolti.",
"page-upgrades-whats-next": "Cosa sono gli aggiornamenti di Ethereum?",
"page-upgrades-whats-next-desc": "La tabella di marcia di Ethereum include aggiornamenti del protocollo interconnessi che renderanno la rete più scalabile, sicura e sostenibile. Questi aggiornamenti sono creati da diversi team da tutto l'ecosistema di Ethereum.",
- "page-upgrades-whats-next-history": "Impara sugli aggiornamenti precedenti di Ethereum",
+ "page-upgrades-whats-next-history": "Scopri di più sugli aggiornamenti precedenti di Ethereum",
"page-upgrades-whats-ethereum": "Ma cos'è Ethereum?",
- "page-upgrades-whats-new": "Cosa c'è dopo per Ethereum?",
- "page-upgrades-security-link": "Di più su sicurezza e prevenzione delle truffe",
+ "page-upgrades-whats-new": "Cosa riserva il futuro di Ethereum?",
+ "page-upgrades-security-link": "Maggiori informazioni su sicurezza e prevenzione delle truffe",
"page-staking-deposit-contract-staking-more-link": "Maggiori informazioni sullo staking",
"docs-nav-proof-of-stake": "Proof of Stake",
"docs-nav-proof-of-work": "Proof of Work",
diff --git a/src/intl/it/page-wallets-find-wallet.json b/src/intl/it/page-wallets-find-wallet.json
index c269f61cd81..a52dc4880ce 100644
--- a/src/intl/it/page-wallets-find-wallet.json
+++ b/src/intl/it/page-wallets-find-wallet.json
@@ -7,7 +7,6 @@
"page-find-wallet-meta-title": "Trova un portafoglio Ethereum",
"page-find-wallet-title": "Trova un portafoglio",
"page-find-wallet-try-removing": "Prova rimuovere una o due funzionalità",
- "page-find-wallet-choose-to-compare": "Seleziona per confrontare",
"page-stake-eth": "Fai staking con gli ETH",
"page-find-wallet-open-source": "Open source",
"page-find-wallet-open-source-desc": "Software open source che consente a chiunque di controllare l'integrità e la sicurezza dell'applicazione",
@@ -16,8 +15,6 @@
"page-find-wallet-non-custodial-desc": "Portafogli che non controllano le tue chiavi private",
"page-find-wallet-hardware-wallet-support": "Supporto portafogli hardware",
"page-find-wallet-hardware-wallet-support-desc": "Portafogli che possono connettersi a portafogli hardware per una migliore sicurezza",
- "page-find-wallet-walletconnect": "WalletConnect",
- "page-find-wallet-walletconnect-desc": "Portafogli che supportano WalletConnect per connettersi a dapp",
"page-find-wallet-rpc-importing": "Importazione RPC",
"page-find-wallet-rpc-importing-desc": "Portafogli che supportano endpoint RPC personalizzati per connettersi a nodi o reti differenti",
"page-find-wallet-nft-support": "Supporto NFT",
@@ -36,8 +33,6 @@
"page-find-wallet-ens-support-desc": "Portafogli che supportano l’Ethereum Name Service (ENS)",
"page-find-wallet-token-importing": "Importazione token",
"page-find-wallet-token-importing-desc": "Importa qualsiasi token ERC-20 da usare nel portafoglio",
- "page-find-wallet-fee-optimization": "Ottimizzazione delle commissioni",
- "page-find-wallet-fee-optimization-desc": "Supporta transazioni di tipo 2 per commissioni di gas ottimizzate e rimborsi di commissioni per il gas inutilizzato",
"page-find-wallet-buy-crypto": "Acquista criptovalute",
"page-find-wallet-buy-crypto-desc": "Acquista criptovalute con valute legali direttamente nel portafoglio\n*Nota: l'acquisto di criptovalute potrebbe variare da regione a regione",
"page-find-wallet-sell-for-fiat": "Vendi per valuta legale",
@@ -46,7 +41,6 @@
"page-find-wallet-multisig-desc": "Portafogli che richiedono firme multiple per autorizzare una transazione",
"page-find-wallet-social-recovery": "Recupero social",
"page-find-wallet-social-recovery-desc": "Portafogli che consentono ai guardiani di modificare la chiave di firma per i portafogli di contratti intelligenti",
- "page-find-wallet-token-support": "Supporto token",
"page-find-wallet-features": "Caratteristiche",
"page-find-wallet-security": "Sicurezza",
"page-find-wallet-smart-contract": "Smart Contract",
@@ -63,7 +57,6 @@
"page-find-wallet-chromium": "Chromium",
"page-find-wallet-firefox": "Firefox",
"page-find-wallet-hardware": "Hardware",
- "page-find-wallet-hardware-desc": "Portafogli hardware",
"page-find-wallet-new-to-crypto-title": "Senza conoscenza di criptovalute",
"page-find-wallet-new-to-crypto-desc": "Sei un utente alla ricerca del suo primo portafoglio",
"page-find-wallet-nfts-title": "NFT",
@@ -74,22 +67,14 @@
"page-find-wallet-finance-desc": "Sei un utente che utilizza DeFi e desideri un portafoglio che ti consenta di connetterti alle applicazioni di DeFi",
"page-find-wallet-developer-title": "Sviluppatore",
"page-find-wallet-developer-desc": "Sei uno sviluppatore e necessiti di un portafoglio che ti aiuti a sviluppare e testare dapp",
- "page-find-wallet-persona-desc": "Scegli il profilo che corrisponde al tuo tipo di utente e filtra l'elenco di portafogli",
"page-find-wallet-filters": "Filtri",
"page-find-wallet-active": "attivi",
- "page-find-wallet-profile-filters": "Filtri del profilo",
- "page-find-wallet-feature-filters": "Filtri di funzionalità",
"page-find-wallet-footnote-1": "I portafogli elencati su questa pagina non sono sponsorizzazioni ufficiali e sono messi a disposizione per soli scopi informativi.",
"page-find-wallet-footnote-2": "Le loro descrizioni sono state fornite dagli stessi progetti dei portafogli.",
"page-find-wallet-footnote-3": "Aggiungiamo prodotti a questa pagina secondo i criteri nella nostra politica di elencazione. Se vorresti che aggiungessimo un portafoglio, apri un ticket su GitHub.",
"page-find-wallet-mobile": "Mobile",
- "page-find-wallet-mobile-desc": "Portafogli con app mobili",
"page-find-wallet-desktop": "Desktop",
- "page-find-wallet-desktop-desc": "Portafogli con app desktop",
"page-find-wallet-browser": "Browser",
- "page-find-wallet-browser-desc": "Portafogli con estensioni per browser",
"page-find-wallet-device": "Dispositivo",
- "page-find-choose-to-compare": "Seleziona per confrontare",
- "page-find-wallet-choose-features": "Seleziona le funzionalità",
"page-find-wallet-reset-filters": "Ripristina filtri"
}
diff --git a/src/intl/ja/common.json b/src/intl/ja/common.json
index 3028892cb6d..e0e478f950c 100644
--- a/src/intl/ja/common.json
+++ b/src/intl/ja/common.json
@@ -1,17 +1,31 @@
{
- "account-abstraction": "アカウント抽象化",
"about-ethereum-org": "Ethereum.orgについて",
"about-us": "私たちについて",
+ "adding-desci-projects": "Desciプロジェクトの追加",
+ "adding-developer-tools": "デベロッパー向けツールの追加",
+ "adding-exchanges": "取引所の追加",
+ "adding-glossary-terms": "用語集への用語の追加",
+ "adding-layer-2s": "レイヤー2の追加",
+ "adding-products": "イーサリアムプロダクトの追加",
+ "adding-staking-products": "ステーキングプロダクトの追加",
+ "adding-wallets": "ウォレットの追加",
+ "account-abstraction": "アカウント抽象化",
+ "acknowledgements": "謝辞",
"aria-toggle-search-button": "検索ボタンの切り替え",
"aria-toggle-menu-button": "メニューボタンの切り替え",
"beacon-chain": "ビーコンチェーン",
"bridges": "ブロックチェーンブリッジ",
+ "bug-bounty": "バグ報奨金",
+ "build": "ビルド",
+ "build-menu": "ビルドメニュー",
"clear": "クリア",
"close": "閉じる",
"community": "コミュニティ",
"community-hub": "コミュニティハブ",
"community-menu": "コミュニティメニュー",
"contact": "お問い合わせ",
+ "content-buckets": "コンテンツバケット",
+ "content-resources": "コンテンツリソース",
"content-standardization": "コンテンツの標準化",
"contributing": "貢献",
"contributors": "貢献者",
@@ -20,17 +34,20 @@
"copied": "コピー済み",
"copy": "コピー",
"danksharding": "ダークシャーディング",
- "dao-page": "分散型自律組織(DAO)",
+ "dao-page": "DAO - 分散型自律組織",
"dark-mode": "ダーク",
"data-provided-by": "データソース:",
- "decentralized-applications-dapps": "分散型アプリケーション(dapps)",
+ "decentralized-applications-dapps": "Dapps - 分散型アプリケーション",
"decentralized-identity": "分散型アイデンティティ",
"decentralized-social-networks": "分散型ソーシャルネットワーク",
- "decentralized-science": "分散型サイエンス(DeSci)",
- "defi-page": "分散型金融(DeFi)",
+ "decentralized-science": "DeSci - 分散型サイエンス",
+ "description": "ナビゲーションアイテムの説明",
+ "defi-page": "DeFi - 分散型金融",
+ "design": "デザイン",
+ "design-principles": "デザイン原則",
"devcon": "Devcon",
"developers": "デベロッパー",
- "developers-home": "デベロッパーのホーム",
+ "developers-home": "開発者のホーム",
"docs": "ドキュメント",
"docsearch-to-select": "選択する",
"docsearch-to-navigate": "移動する",
@@ -51,7 +68,7 @@
"documentation": "ドキュメント",
"down": "下へ",
"ecosystem": "エコシステム",
- "edit-page": "ページ編集",
+ "edit-page": "ページを編集する",
"ef-blog": "イーサリアム・ファウンデーションブログ",
"eips": "イーサリアム改善の提案",
"energy-consumption": "イーサリアムのエネルギー消費",
@@ -63,7 +80,7 @@
"ethereum-bug-bounty": "イーサリアムバグ報奨金プログラム",
"consensus-when-shipping": "導入のタイミング",
"ethereum-upgrades": "イーサリアムのアップグレード",
- "ethereum-brand-assets": "イーサリアムブランドアセット",
+ "ethereum-brand-assets": "イーサリアムブランド資産",
"ethereum-online": "オンラインコミュニティ",
"ethereum-events": "イーサリアムイベント",
"ethereum-foundation": "イーサリアム・ファウンデーション",
@@ -94,11 +111,11 @@
"grants": "助成制度",
"grant-programs": "エコシステム助成プログラム",
"guides": "ガイド",
- "guides-hub": "ガイドハブ",
+ "guides-hub": "ハウツーガイド",
"history-of-ethereum": "イーサリアムの歴史",
"home": "ホーム",
"how-ethereum-works": "イーサリアムの仕組み",
- "how-to-register-an-ethereum-account": "イーサリアムアカウントの「登録」方法",
+ "how-to-create-an-ethereum-account": "イーサリアムアカウントの「開設」方法",
"how-to-revoke-token-access": "暗号資金へのスマートコントラクトのアクセスを無効にする方法",
"how-to-swap-tokens": "トークンの交換方法",
"how-to-use-a-bridge": "トークンをレイヤー2にブリッジする方法",
@@ -119,7 +136,7 @@
"learn-hub": "学習ハブ",
"learn-menu": "学習メニュー",
"learn-more": "もっと詳しく",
- "less": "より少なく",
+ "less": "少なく表示",
"light-mode": "ライト",
"listing-policy-disclaimer": "このページに掲載されている全てのプロダクトは、公式に推奨するものではなく、情報提供のみを目的としています。プロダクトの追加やポリシーに関するフィードバックをご希望の場合は、GitHubで問題を提起してください。",
"loading": "読み込み中",
@@ -128,11 +145,117 @@
"loading-error-try-again-later": "データをロードできません。後でもう一度お試しください。",
"logo": "ロゴ",
"mainnet-ethereum": "メインネット イーサリアム",
- "more": "もっと見る",
- "nav-developers": "デベロッパー",
+ "merge": "マージ",
+ "more": "さらに表示",
+ "nav-about-description": "イーサリアムコミュニティのためのパブリックオープンソースプロジェクト",
+ "nav-advanced-description": "さらに複雑なトピックについて学ぶ",
+ "nav-advanced-label": "上級者向け",
+ "nav-basics-description": "イーサリアムの基盤を理解する",
+ "nav-basics-label": "基本",
+ "nav-bridges-description": "Web3は、主要なL1ブロックチェーンとL2スケーリングソリューションのエコシステムに進化しました",
+ "nav-builders-home-description": "ビルダーによるビルダーのためのイーサリアムのビルダーマニュアル",
+ "nav-builders-home-label": "ビルダーのホーム",
+ "nav-contribute-description": "お手伝いいただける場合は、ここからその方法を確認できます",
+ "nav-contribute-label": "ethereum.orgに貢献する",
+ "nav-dao-description": "中央集権的な制御がない、メンバー所有のコミュニティ",
+ "nav-dapps-description": "イーサリアムを利用したエコシステムの豊富なアプリケーションを探索する",
+ "nav-defi-description": "従来の金融市場に代わる、グローバルで開かれた市場",
+ "nav-desci-description": "現在の科学的システムに代わる、グローバルで開かれたシステム",
+ "nav-desoc-description": "ソーシャル・インタラクションとコンテンツ作成のためのブロックチェーンベースのプラットフォーム",
"nav-developers-docs": "デベロッパー向け文書",
+ "nav-developers": "デベロッパー",
+ "nav-did-description": "独自の分散型識別子を発行し、所有する",
+ "nav-docs-description": "イーサリアムを理解し、イーサリアムを使ってビルドを行うためのヘルプドキュメント",
+ "nav-docs-design-description": "独自のWeb3デザインの課題、最善の方法、ユーザー検索のインサイトの説明",
+ "nav-docs-design-label": "UX/UIデザインの基礎",
+ "nav-docs-foundation-description": "イーサリアムで開発を行うための基本的な要点",
+ "nav-docs-foundation-label": "基礎的なトピック",
+ "nav-docs-overview-description": "デベロッパー向けドキュメントのホーム",
+ "nav-docs-stack-description": "イーサリアムスタックの全詳細を理解する",
+ "nav-docs-stack-label": "イーサリアムスタック",
+ "nav-eip-description": "新機能やプロセスを特定する基準",
+ "nav-eip-label": "EIP - イーサリアム改善提案",
+ "nav-emerging-description": "イーサリアムの他の新しいユースケースを知る",
+ "nav-emerging-label": "新たなユースケース",
+ "nav-enterprise-description": "イーサリアムのビジネスアプリケーション",
+ "nav-ethereum-org-description": "このウェブサイトはコミュニティが主導しています。ぜひ参加して貢献しましょう",
+ "nav-ethereum-wallets-description": "イーサリアムアカウントを使用してアプリで対話する",
+ "nav-events-description": "分散化、そして誰でも参加できる自由",
+ "nav-events-irl-description": "毎月、主要なイーサリアムイベントが対面およびオンラインで開催されています",
+ "nav-events-label": "コミュニティおよびイベント",
+ "nav-events-online-description": "数十万人のイーサリアム愛好家がこれらのオンラインコミュニティで集結します",
+ "nav-find-wallet-description": "ウォレットにより、暗号通貨が利用できるようになります",
+ "nav-find-wallet-label": "ウォレットを選ぶ",
+ "nav-gas-fees-description": "ETHトランザクションフィーはどのように計算されるか",
+ "nav-gas-fees-label": "ガス代",
+ "nav-get-eth-description": "イーサリアムアプリケーションを使用するにはEther (ETH)が必要です",
+ "nav-get-started-description": "イーサリアムの使用に向けた第1ステップ",
+ "nav-governance-description": "イーサリアムプロトコルのアップグレードに関連するプロセス",
+ "nav-governance-label": "ガバナンス",
+ "nav-grants-description": "コミュニティによって精選された、助成金プログラムを提供するプロジェクトリスト",
+ "nav-guide-create-account-description": "ウォレットアプリを使用すれば誰でもいつでも無料でEthereumアカウントを作成できます",
+ "nav-guide-create-account-label": "イーサリアムアカウントの開設方法",
+ "nav-guide-revoke-access-description": "Ethereumエコシステム内のスマートコントラクトやアプリケーションとのやり取り時には安全に注意してください",
+ "nav-guide-revoke-access-label": "スマートコントラクトのアクセスを取り消す方法",
+ "nav-guide-use-wallet-description": "ウォレットの基本機能をそれぞれ操作する方法を学ぶ",
+ "nav-guide-use-wallet-label": "ウォレットの使用方法",
+ "nav-guides-description": "使用開始準備のための段階的な実践ガイド",
+ "nav-guides-label": "ハウツーガイド",
+ "nav-history-description": "すべての主要なフォークとアップデートのタイムライン",
+ "nav-history-label": "イーサリアムの技術的な歴史",
+ "nav-layer-2-description": "より安く、より速いイーサリアムの取引",
+ "nav-learn-by-coding-description": "イーサリアムを試してみるのに役立つツール",
+ "nav-local-env-description": "イーサリアムの開発スタックを選択してセットアップする",
+ "nav-mainnet-description": "エンタープライズブロックチェーンアプリケーションは、パブリックのイーサリアムメインネット上で構築することができます",
+ "nav-nft-description": "イーサリアムベースのアセットとして、何か唯一無二なものを表現する方法",
+ "nav-open-research-description": "イーサリアムの主な強みの一つは、その活発な研究コミュニティです",
+ "nav-open-research-label": "オープンリサーチ",
+ "nav-overview-description": "イーサリアム教育に関して",
+ "nav-overview-label": "概要",
+ "nav-participate-overview-description": "参加方法の概要",
"nav-primary": "プライマリ",
- "nft-page": "非代替性トークン(NFT)",
+ "nav-private-description": "プライベードなエンタープライズ向けイーサリアムのデベロッパーリソース",
+ "nav-quizzes-description": "イーサリアムと仮想通貨の理解度をチェック",
+ "nav-quizzes-label": "あなたの理解度をテストする",
+ "nav-refi-description": "再生原理に基づく代替経済システム",
+ "nav-research-description": "イーサリアムをより良くするためのプロセス",
+ "nav-research-label": "研究・開発",
+ "nav-roadmap-description": "イーサリアムのスケーラビリティ、セキュリティ、サステナビリティを改善する工程",
+ "nav-roadmap-future-description": "イーサリアムを堅牢で分散型のネットワークとして確立させる",
+ "nav-roadmap-future-label": "未来のプルーフィング",
+ "nav-roadmap-label": "ロードマップ",
+ "nav-roadmap-scaling-description": "トランザクションコストをさらに削減し、処理速度を向上させるためのネットワーク更新",
+ "nav-roadmap-scaling-label": "より安価なトランザクション",
+ "nav-roadmap-security-description": "将来に向けてイーサリアムがあらゆる種類の攻撃に対して強靱であるようにする",
+ "nav-roadmap-security-label": "改善されたセキュリティ",
+ "nav-roadmap-ux-description": "イーサリアムの利用方法を簡素化する必要がある",
+ "nav-roadmap-ux-label": "ユーザーエクスペリエンスの向上",
+ "nav-run-a-node-description": "自分で完全にコントロールしつつ、ネットワークのセキュリティ向上に貢献する",
+ "nav-security-description": "暗号通貨を使用するときの最善の方法について学ぶ",
+ "nav-smart-contracts-description": "イーサリアムエコシステムの基本的な構築ブロック",
+ "nav-stablecoins-description": "ステーブルコインは、一定価値に保たれるように設計されたイーサリアムトークンです",
+ "nav-stake-description": "イーサリアムを保護して報酬を獲得",
+ "nav-stake-label": "ステーク",
+ "nav-staking-home-description": "ステーキングの異なるオプションの概要",
+ "nav-staking-home-label": "ステーキングホーム",
+ "nav-staking-pool-description": "他者と協力してETHをステーキングし、報酬を獲得する",
+ "nav-staking-pool-label": "ステーキングプール",
+ "nav-staking-saas-description": "サードパーティーのノードオペレータが、バリデータクライアントの運用を実施",
+ "nav-staking-saas-label": "サービスを利用してステーキングする",
+ "nav-staking-solo-description": "家庭用ハードウェアを稼働させ、イーサリアムネットワークのセキュリティと分散化に個人で貢献",
+ "nav-staking-solo-label": "ソロステーキング",
+ "nav-start-building-description": "初心者向けの有用な情報",
+ "nav-translation-program-description": "ethereum.orgをすべての言語に翻訳するための共同作業",
+ "nav-tutorials-description": "コミュニティチュートリアルの精選されたリスト",
+ "nav-use-cases-description": "イーサリアム利用のさまざまなアイデアを発見",
+ "nav-use-cases-label": "ユースケース",
+ "nav-what-is-ether-description": "イーサリアムアプリの通貨",
+ "nav-what-is-ethereum-description": "何がイーサリアムを特別なものにするのかを理解する",
+ "nav-what-is-web3-label": "Web3とは",
+ "nav-what-is-web3-description": "中央集権的な独占企業がルールを決定することに対する代替案",
+ "nav-whitepaper-description": "2014年にヴィタリック・ブテリンによって書かれたオリジナルのイーサリアムのホワイトペーパー",
+ "nav-zkp-description": "証明したい主張そのものを明らかにすることなく、主張の妥当性を証明する方法",
+ "nft-page": "NFT - 非代替性トークン",
"nfts": "NFT",
"no": "いいえ",
"on-this-page": "このページ",
@@ -140,6 +263,8 @@
"page-developers-aria-label": "開発者向けメニュー",
"page-index-meta-title": "ホーム",
"page-last-updated": "ページの最終更新日時",
+ "participate": "EIPへの参加",
+ "participate-menu": "参加メニュー",
"pbs": "プロポーザー/ビルダーセパレーション(PBS)",
"pools": "ステーキングプール",
"privacy-policy": "プライバシーポリシー",
@@ -150,8 +275,10 @@
"refresh": "ページを更新してください。",
"return-home": "ホームへ戻る",
"roadmap": "イーサリアムロードマップ",
+ "research": "リサーチ",
+ "research-menu": "リサーチメニュー",
"resources": "翻訳のリソース",
- "regenerative-finance": "再生金融(ReFi)",
+ "regenerative-finance": "ReFi - 再生金融",
"run-a-node": "ノードの運用",
"rollup-component-website": "ウェブサイト",
"rollup-component-developer-docs": "デベロッパー向け文書",
@@ -164,6 +291,7 @@
"search-box-blank-state-text": "検索!",
"search-eth-address": "これはイーサリアムのアドレスのようですが、アドレスに固有のデータは提供していません。etherscanのようなブロックエクスプローラーで検索してみてください。",
"search-no-results": "検索結果はありません。",
+ "security": "セキュリティ",
"single-slot-finality": "シングルスロット・ファイナリティ",
"statelessness": "ステートレス",
"see-contributors": "貢献者を表示",
@@ -172,7 +300,6 @@
"show-all": "すべて表示",
"show-less": "少なく表示",
"site-description": "イーサリアムは、お金と新しい種類のアプリケーションのためのグローバルな分散型プラットフォームです。 イーサリアムでは、お金を制御するコードを書くことができ、世界中のどこにいてもアクセス可能なアプリケーションを構築できます。",
- "site-title": "ethereum.org",
"skip-to-main-content": "メインコンテンツへスキップ",
"smart-contracts": "スマートコントラクト",
"stablecoins": "ステーブルコイン",
@@ -181,6 +308,7 @@
"start-here": "ここからスタート",
"style-guide": "スタイルガイド",
"solo": "ソロステーキング",
+ "support": "サポート",
"terms-of-use": "利用規約",
"translation-banner-body-new": "このページはまだ翻訳されていないため、英語で表示されています。このコンテンツの翻訳にご協力ください。",
"translation-banner-body-update": "このページの新しいバージョンがありますが、現在は英語のみです。最新バージョンの翻訳にご協力ください。",
@@ -191,11 +319,14 @@
"translation-banner-no-bugs-title": "ここにバグはありません!",
"translation-banner-no-bugs-content": "このページは翻訳されていないため、このページは英語で表示されています。",
"translation-banner-no-bugs-dont-show-again": "次回から表示しない",
+ "translation-program": "翻訳プログラム",
"try-using-search": "検索からお探しのものを検索してみてください。",
"tutorials": "チュートリアル",
"up": "上へ",
+ "use": "利用する",
"use-ethereum": "イーサリアムを使う",
"use-ethereum-menu": "イーサリアムのメニューを使用",
+ "use-menu": "利用メニュー",
"user-experience": "ユーザーエクスペリエンス",
"verkle-trees": "バークルツリー",
"wallets": "ウォレット",
diff --git a/src/intl/ja/page-wallets-find-wallet.json b/src/intl/ja/page-wallets-find-wallet.json
index e7c4641fd16..e56df347a1f 100644
--- a/src/intl/ja/page-wallets-find-wallet.json
+++ b/src/intl/ja/page-wallets-find-wallet.json
@@ -7,7 +7,6 @@
"page-find-wallet-meta-title": "イーサリアムウォレットを探しましょう",
"page-find-wallet-title": "ウォレットを探す",
"page-find-wallet-try-removing": "機能を1つまたは2つ削除してみてください",
- "page-find-wallet-choose-to-compare": "比較",
"page-stake-eth": "ETHのステーキング",
"page-find-wallet-open-source": "オープンソース",
"page-find-wallet-open-source-desc": "アプリケーションの完全性とセキュリティを監査できるオープンソースソフトウェア",
@@ -16,8 +15,6 @@
"page-find-wallet-non-custodial-desc": "秘密鍵を管理しないウォレット",
"page-find-wallet-hardware-wallet-support": "ハードウェアウォレット対応",
"page-find-wallet-hardware-wallet-support-desc": "セキュリティ向上のためハードウェアウォレットに接続できるウォレット",
- "page-find-wallet-walletconnect": "WalletConnect",
- "page-find-wallet-walletconnect-desc": "分散型アプリ(Dapp)に接続するWalletConnect対応ウォレット",
"page-find-wallet-rpc-importing": "RPCインポート",
"page-find-wallet-rpc-importing-desc": "異なるノードやネットワークに接続できるカスタムRPCエンドポイント対応ウォレット",
"page-find-wallet-nft-support": "NFT対応",
@@ -36,8 +33,6 @@
"page-find-wallet-ens-support-desc": "イーサリアム・ネーム・サービス(ENS)対応ウォレット",
"page-find-wallet-token-importing": "トークンのインポート",
"page-find-wallet-token-importing-desc": "ERC-20トークンをインポートし、ウォレットで使用",
- "page-find-wallet-fee-optimization": "手数料の最適化",
- "page-find-wallet-fee-optimization-desc": "最適化されたガス代のType 2トランザクション、未使用のガス代の払い戻し",
"page-find-wallet-buy-crypto": "暗号資産の購入",
"page-find-wallet-buy-crypto-desc": "ウォレットを使って法定通貨で暗号通貨を購入\n *注: 地域によっては暗号通貨を購入できない場合があります。",
"page-find-wallet-sell-for-fiat": "法定通貨への換金",
@@ -46,7 +41,6 @@
"page-find-wallet-multisig-desc": "トランザクションの承認に複数の署名が必要なウォレット",
"page-find-wallet-social-recovery": "ソーシャルリカバリー",
"page-find-wallet-social-recovery-desc": "スマートコントラクトウォレットの署名キーをガーディアンが変更できるウォレット",
- "page-find-wallet-token-support": "トークン対応",
"page-find-wallet-features": "機能",
"page-find-wallet-security": "セキュリティ",
"page-find-wallet-smart-contract": "スマートコントラクト",
@@ -63,7 +57,6 @@
"page-find-wallet-chromium": "Chromium",
"page-find-wallet-firefox": "Firefox",
"page-find-wallet-hardware": "ハードウェア",
- "page-find-wallet-hardware-desc": "ハードウェアウォレット",
"page-find-wallet-new-to-crypto-title": "暗号資産が始めたの方",
"page-find-wallet-new-to-crypto-desc": "初めてのウォレットをお探しの方",
"page-find-wallet-nfts-title": "NFT",
@@ -74,21 +67,13 @@
"page-find-wallet-finance-desc": "分散型金融(DeFi)を使用しており、DeFiアプリケーションに接続できるウォレットを希望",
"page-find-wallet-developer-title": "デベロッパー",
"page-find-wallet-developer-desc": "デベロッパーで、分散型アプリ(Dapp)の開発とテストに使用できるウォレットを希望",
- "page-find-wallet-persona-desc": "自分に合うユーザープロファイルを選択し、ウォレットリストをフィルタを適用してください",
"page-find-wallet-filters": "フィルター",
"page-find-wallet-active": "アクティブ",
- "page-find-wallet-profile-filters": "プロファイル",
- "page-find-wallet-feature-filters": "機能",
"page-find-wallet-footnote-1": "このページに記載されているウォレットは公式に推奨するものではなく、情報提供のみを目的として提供されています。",
"page-find-wallet-footnote-2": "ウォレットの説明文は、それぞれのウォレットプロジェクト側より提供されたものです。",
"page-find-wallet-footnote-3": "イーサリアムの掲載ポリシーに基づいて、ウォレットを本ページに追加しています。新たなウォレットの追加をご希望の場合は、GitHubで問題を提起してください。",
"page-find-wallet-mobile": "モバイル",
- "page-find-wallet-mobile-desc": "モバイルアプリのウォレット",
"page-find-wallet-desktop": "デスクトップ",
- "page-find-wallet-desktop-desc": "デスクトップアプリのウォレット",
"page-find-wallet-browser": "ブラウザ",
- "page-find-wallet-browser-desc": "ブラウザ拡張機能付きウォレット",
- "page-find-wallet-device": "デバイス",
- "page-find-choose-to-compare": "比較",
- "page-find-wallet-choose-features": "機能を選択"
+ "page-find-wallet-device": "デバイス"
}
diff --git a/src/intl/ka/common.json b/src/intl/ka/common.json
index 93100bf62e3..ba9b168fad3 100644
--- a/src/intl/ka/common.json
+++ b/src/intl/ka/common.json
@@ -1,17 +1,29 @@
{
- "account-abstraction": "ანგარიშის ამოღება",
"about-ethereum-org": "ethereum.org-ის შესახებ",
"about-us": "ჩვენს შესახებ",
+ "adding-desci-projects": "Desci პროექტების დამატება",
+ "adding-developer-tools": "პროგრამისტის ხელსაწყოების დამატება",
+ "adding-exchanges": "გაცვლების დამატება",
+ "adding-glossary-terms": "ლექსიკონის ტერმინების დამატება",
+ "adding-staking-products": "სტეიკინგის პროდუქტების დამატება",
+ "adding-wallets": "საფულეების დამატება",
+ "account-abstraction": "ანგარიშის ამოღება",
+ "acknowledgements": "ცნობები",
"aria-toggle-search-button": "ძიების ღილაკი",
"aria-toggle-menu-button": "მენიუს ღილაკი",
"beacon-chain": "Beacon ჯაჭვი",
"bridges": "ბლოკჩეინის ხიდები",
+ "bug-bounty": "Ჯილდო ბაგის აღმოჩენისათვის",
+ "build": "დეველოპმენტი",
+ "build-menu": "ააგეთ მენიუ",
"clear": "გასუფთავება",
"close": "დახურვა",
"community": "საზოგადოება",
"community-hub": "საზოგადოების ცენტრი",
"community-menu": "საზოგადოების მენიუ",
"contact": "კონტაქტი",
+ "content-buckets": "შინაარსის ნაერთები",
+ "content-resources": "შინაარსის რესურსები",
"content-standardization": "კონტენტის სტანდარტიზაცია",
"contributing": "შეიტანე წვლილი",
"contributors": "კონტრიბუტორები",
@@ -20,14 +32,17 @@
"copied": "დაკოპირებულია",
"copy": "კოპირება",
"danksharding": "დენკშერდინგი",
- "dao-page": "დეცენტრალიზებული ავტონომიური ორგანიზაციები (DAO)-ები",
+ "dao-page": "DAO - დეცენტრალიზებული ავტონომიური ორგანიზაციები-ები",
"dark-mode": "ბნელი",
"data-provided-by": "მონაცემთა წყარო:",
- "decentralized-applications-dapps": "დეცენტრალიზებული აპლიკაციები (dapps)",
+ "decentralized-applications-dapps": "Dapps - დეცენტრალიზებული აპლიკაციები",
"decentralized-identity": "დეცენტრალიზებული იდენტობა",
"decentralized-social-networks": "დეცენტრალიზებული სოციალური ქსელი",
- "decentralized-science": "დეცენტრალიზებული მეცნიერება (DeSci)",
- "defi-page": "დეცენტრალიზებული ფინანსები (DeFi)",
+ "decentralized-science": "DeSci - დეცენტრალიზებული მეცნიერება",
+ "description": "ნავიგაციის საგნის აღწერა",
+ "defi-page": "DeFi - დეცენტრალიზებული ფინანსები",
+ "design": "დიზაინი",
+ "design-principles": "დიზაინის პრინციპები",
"devcon": "Devcon",
"developers": "დეველოპერები",
"developers-home": "დეველოპერების მთავარი",
@@ -59,7 +74,6 @@
"enterprise-menu": "კომპანიის მენიუ",
"esp": "ეკოსისტემის მხარდაჭერის პროგრამა",
"eth-current-price": "ETH მიმდინარე ფასი (აშშ დოლარი)",
- "ethereum-basics": "Ethereum basics",
"ethereum-bug-bounty": "ეთერეუმის ხარვეზების ბოუნტი პროგრამა",
"consensus-when-shipping": "როდის არის მიწოდება?",
"ethereum-upgrades": "ეთერეუმის განახლებები",
@@ -83,22 +97,22 @@
"feedback-card-prompt-tutorial": "დაგეხმარა ეს სახელმძღვანელო?",
"feedback-widget-thank-you-title": "მადლობა გამოხმაურებისთვის!",
"feedback-widget-thank-you-subtitle": "გააუმჯობესეთ ეს გვერდი რამდენიმე კითხვაზე პასუხის გაცემით.",
- "feedback-widget-thank-you-subtitle-ext": "თუ დახმარება გჭირდებათ, შეგიძლიათ დაუკავშირდეთ საზოგადოებას ჩვენს Discord-ზე.",
+ "feedback-widget-thank-you-subtitle-ext": "დახმარების საჭიროების შემთხვევაში, შეგიძლიათ დაუკავშირდეთ საზოგადოებას ჩვენ Discord-ზე.",
"feedback-widget-thank-you-timing": "2–3 წუთი",
"feedback-widget-thank-you-cta": "გახსენით მოკლე გამოკითხვა",
"find-wallet": "იპოვე საფულე",
"future-proofing": "პერსპექტივა",
- "get-eth": "იყიდე ეთერეუმი",
+ "get-eth": "მიიღე ETH",
"get-involved": "ჩაერთე",
- "get-started": "დაიწყე",
+ "get-started": "დაწყება",
"grants": "გრანტები",
"grant-programs": "ეკოსისტემის საგრანტო პროგრამები",
"guides": "სახელმძღვანელოები",
- "guides-hub": "სახელმძღვანელოების ჰაბი",
+ "guides-hub": "ინსტრუქციები",
"history-of-ethereum": "ეთერეუმის ისტორია",
"home": "მთავარი",
"how-ethereum-works": "როგორ მუშაობს ეთერეუმი",
- "how-to-register-an-ethereum-account": "როგორ \"დავარეგისტრიროთ\" ეთერეუმის ანგარიში",
+ "how-to-create-an-ethereum-account": "Როგორ \"შევქმნათ\" ეთერიუმის ექაუნთი",
"how-to-revoke-token-access": "როგორ გააუქმოთ თქვენს კრიპტოზე ჭკვიანი კონტრაქტის წვდომა",
"how-to-swap-tokens": "როგორ გადავცვალოთ ტოქენები",
"how-to-use-a-bridge": "როგორ გავხიდოთ ტოქენები მე-2 დონეზე",
@@ -128,11 +142,105 @@
"loading-error-try-again-later": "მონაცემებზე წვდომა შეუძლებელია. კვლავ სცადეთ მოგვიანებით.",
"logo": "ლოგო",
"mainnet-ethereum": "ეთერეუმის მაინნეტი",
+ "merge": "შერწყმა",
"more": "მეტი",
- "nav-developers": "დეველოპერები",
+ "nav-about-description": "ეთერეუმის საზოგადოებისათვის განკუთვნილი საჯარო, ღია კოდის პროექტი",
+ "nav-advanced-description": "შეიტყვეთ მეტი კომპლექსური თემის შესახებ",
+ "nav-advanced-label": "დამატებით",
+ "nav-basics-description": "ეთერეუმის საფუძვლების გააზრება",
+ "nav-basics-label": "ძირითადი საკითხები",
+ "nav-bridges-description": "Web3-მა განიცადა ევოლუცია და იქცა პირველადი L1 ბლოქჩეინებისა და L2 სკალირების გადაწყვეტების ეკოსისტემად",
+ "nav-builders-home-description": "ეთერეუმის დეველოპერის სახელმძღვანელო - დეველოპერები დეველოპერებისთვის",
+ "nav-builders-home-label": "დეველოპერის მთავარი გვერდი",
+ "nav-contribute-description": "თუ დახმარება გჭირდებათ, შეგიძლიათ ამით იხელმძღვანელოთ",
+ "nav-contribute-label": "ethereum.org-ის კონტრიბუცია",
+ "nav-dao-description": "ცენტრალიზებული ხელმძღვანელობის არმქონე წევრების მფლობელობაში არსებული საზოგადოებები",
+ "nav-dapps-description": "ეთერეუმის გამოყენებით გამოიკვლიეთ აპების მდიდარი ეკოსისტემა",
+ "nav-defi-description": "ტრადიციული ფინანსური ბაზრის გლობალური, ღია ალტერნატივა",
+ "nav-desci-description": "მიმდინარე სამეცნიერო სისტემის გლობალური, ღია ალტერნატივა",
+ "nav-desoc-description": "ბლოკჩეინზე დაფუძნებული პლატფორმები სოციალური ინტერაქციისა და კონტენტის შექმნისათვის",
"nav-developers-docs": "დეველოპერების დოკუმენტაცია",
+ "nav-developers": "დეველოპერები",
+ "nav-did-description": "შექმენით და იქონიეთ თქვენი უნიკალური დეცენტრალიზებული იდენტიფიკატორები",
+ "nav-docs-description": "დოკუმენტები, რომლებიც დაგეხმარებათ ეთერეუმის გამოყენებით დეველოპმენტის გააზრებაში",
+ "nav-docs-design-description": "უნიკალური web3 დიზაინის გამოწვევების, საუკეთესი პრაქტიკებისა და მომხმარებლის კვლევის ინსაითების აღწერა",
+ "nav-docs-design-label": "UX/UI დიზაინის საფუძვლები",
+ "nav-docs-foundation-description": "ეთერეუმზე დეველოპმენტის ძირეული საფუძვლები",
+ "nav-docs-overview-description": "დეველოპერის დოკუმენტების თქვენი მთავარი გვერდი",
+ "nav-docs-stack-description": "ეთერეუმის სტეკის ყველა დეტალის გააზრება",
+ "nav-eip-description": "ახალი ფუნქციების თუ პროცესების მაკონკრეტებელი სტანდარტები",
+ "nav-eip-label": "EIP-ები - ეთერეუმის წინადადებები და შეთავაზებები",
+ "nav-emerging-description": "ეთერეუმის სხვა უფრო ახალი გამოყენების ქეისების გაცნობა",
+ "nav-enterprise-description": "ეთერეუმის ბიზნეს აპლიკაციები",
+ "nav-ethereum-org-description": "ვებსაიტი იმართება საზოგადოების მიერ—შემოგვიერთდით და მიიღეთ მონაწილეობა",
+ "nav-ethereum-wallets-description": "თქვენი ეთერეუმის ანგარიშთან ინტერაქციის აპლიკაცია",
+ "nav-events-description": "ნებისმიერი თქვენგანისათვის დეცენტრალიზაცია და მონაწილეობის თავისუფლება",
+ "nav-events-irl-description": "ყოველთვიურად იმართება ეთერეუმის ღონისძიებები, როგორც დასწრებული ასევე ონლაინ ფორმატით",
+ "nav-events-label": "საზოგადოებები და ღონისძიებები",
+ "nav-events-online-description": "ეთერეუმის ასობით ათასი ენთუზიასტი მამაა ამ ონლაინ საზოგადოებაში",
+ "nav-find-wallet-description": "საფულეები გაძლევთ კრიპტოს გამოყენების საშუალებას",
+ "nav-find-wallet-label": "აირჩიეთ თქვენი საფულე",
+ "nav-gas-fees-description": "როგორ ითვლება ETH ტრანზაქციის გადასახადები",
+ "nav-get-eth-description": "გჭირდებათ ეთერი (ETH) ან ეთერეუმის აპლიკაციის გამოყენება",
+ "nav-get-started-description": "ეთერეუმის გამოყენებისკენ გადადგმული თქვენი პირველი ნაბიჯები",
+ "nav-governance-description": "პროცესი, რომელიც გამოიყენებოდა ეთერეუმის პროტოკოლის გაახლებაში",
+ "nav-governance-label": "მმართველობა",
+ "nav-grants-description": "ჩვენი საზოგადოების კურატორის ზედამხედველობით შექმნილი სია პროექტებზე, რომლებიც უზრუნველყოფენ დაფინანსებს პროგრამების უფლებას",
+ "nav-guide-create-account-description": "საფულის აპის გამოყენებით, ეთერეუმის ანგარიშის შექმნა ნებისმიერ დროს, ნებისმიერ ადამიანს უფასოდ შეუძლია",
+ "nav-guide-create-account-label": "Როგორ შევქმნათ ეთერიუმის ექაუნთი",
+ "nav-guide-revoke-access-description": "ეთერეუმის ეკოსისტემაში სმარტ კონტრაქტებსა და აპლიკაციებთან ინტერაქციისას შეინარჩუნეთ უსაფრთხოება",
+ "nav-guide-revoke-access-label": "როგორ უნდა გავაუქმოთ სმარტ კონტრაქტზე წვდომა",
+ "nav-guide-use-wallet-description": "შეიტყვეთ, თუ როგორ მუშაობს საფულის ყველა საბაზისო ფუნქცია",
+ "nav-guide-use-wallet-label": "როგორ გამოვიყენოთ საფულე",
+ "nav-guides-description": "პრაქტიკული ნაბიჯ-ნაბიჯ სახელმძღვანელო, რომელიც საწყისი ეტაპისთვის დაგეხმარებათ",
+ "nav-guides-label": "ინსტრუქციები",
+ "nav-history-description": "ყველა მთავარი ფორკისა და განახლების დროის ხაზი",
+ "nav-history-label": "ეთერეუმის ტექნიკური ისტორია",
+ "nav-layer-2-description": "ეთერეუმის უფრო იაფი და სწრაფი ტრანზაქციები",
+ "nav-learn-by-coding-description": "იარაღები, რომლებიც დაგეხმარებათ ეთერეუმით ექსპერიმენტირებისთვის",
+ "nav-local-env-description": "აირჩიეთ და მოაწყვეთ თქვენი ეთერეუმის დეველოპმენტის სტეკი",
+ "nav-mainnet-description": "კომპანიის ბლოკჩეინ აპლიკაციების ჩაშენება შესაძლებელია ეთერეუმის საჯარო მეინნეტზე",
+ "nav-nft-description": "საშუალება წარმოაჩინოს რაიმე უნიკალური, როგორც Ethereum-ზე დაფუძნებული აქტივი",
+ "nav-open-research-description": "ეთერეუმის ერთ-ერთი უმთავრესი სიძლიერე მისი აქტიური კვლევითი საზოგადოებაა",
+ "nav-open-research-label": "ღია კვლევა",
+ "nav-overview-description": "ეთერეუმის ყოვლისმომცველი საგანმანათლებლო რესურსი",
+ "nav-participate-overview-description": "მიმოხილვა იმის შესახებ, თუ როგორ უნდა მიიღოთ მონაწილეობა",
"nav-primary": "ძირითადი",
- "nft-page": "შეუცვლელი ტოკენები (NFT)-ები",
+ "nav-quizzes-description": "შეიტყვეთ, თუ რამდენად კარგად იაზრებთ ეთერეუმსა და კრიპტოვალუტებს",
+ "nav-quizzes-label": "შეამოწმეთ თქვენი ცოდნა",
+ "nav-refi-description": "რეგენერაციულ პრინციპებზე დაფუძნებული ალტერნატიული ეკონომიკური სისტემა",
+ "nav-research-description": "ეთერეუმის გაუმჯობესებისთვის გამოყენებული პროცესები",
+ "nav-research-label": "კვლევა და განვითარება",
+ "nav-roadmap-description": "ეთერეუმის მეტი მასშტაბირებისკენ, დაცულობისა და მდგრადობისკენ მიმავალი გზა",
+ "nav-roadmap-future-description": "ეთერეუმის, როგორც მტკიცე და დეცენტრალიზებული ქსელის გამყარება",
+ "nav-roadmap-future-label": "პერსპექტივა",
+ "nav-roadmap-label": "რუკა",
+ "nav-roadmap-scaling-description": "ქსელის განახლებები, გამიზნული ტრანზაქციული ხარჯების დამატებით შემცირებისა და სისწრაფისთვის",
+ "nav-roadmap-security-description": "იმის უზრუნველყოფა, რომ ეთერეუმი სამომავლოდ ყველა ტიპის შემოტევების მიმართ შეუღწევადი დარჩება",
+ "nav-roadmap-security-label": "გაუმჯობესებული უსაფრთხოება",
+ "nav-roadmap-ux-description": "ეთერეუმის გამოყენება უნდა გამარტივდეს",
+ "nav-run-a-node-description": "გახდით მთლიანად სრულუფლებიანი, როცა ეხმარებით ქსელის დაცულად გახდომაში",
+ "nav-security-description": "შეიტყვეთ საუკეთესო გამოცდილებების შესახებ, კრიპტოვალუტის გამოყენებისას",
+ "nav-smart-contracts-description": "ეთერეუმის ეკოსისტემის მთავარი ფუნდამენტი",
+ "nav-stablecoins-description": "სთეიბლქოინები წარმოადგენს ეთერეუმის ტოკენებს, რომლებიც შექმნილია ფიქსირებულ მნიშვნელობაზე დასარჩენად",
+ "nav-stake-description": "ეთერეუმის დაცვისათვის მიიღეთ ჯილდოები",
+ "nav-stake-label": "სტეიკი",
+ "nav-staking-home-description": "სტეიკინგის სხვადასხვა ვარიანტის მიმოხილვა",
+ "nav-staking-pool-description": "სხვებთან შეერთებით, ეთერეუმის ნებისმიერი რაოდენობა განათავსეთ სტეიკად და მიიღეთ ჯილდო",
+ "nav-staking-pool-label": "გაერთიანებული სტეიკინგი",
+ "nav-staking-saas-label": "სერვისით სტეიკინგი",
+ "nav-staking-solo-label": "სოლო სტეიკინგი",
+ "nav-start-building-description": "სასარგებლო ინფორმაცია ახალი წევრებისათვის",
+ "nav-translation-program-description": "ურთიერთთანამშრომლობითი ძალისხმევა ethereum.org-ის ყველა ენაზე გადათარგმნის კუთხით",
+ "nav-tutorials-description": "საზოგადოების სასწავლო ვიდეოების კურირებული სია",
+ "nav-use-cases-description": "აღმოაჩინეთ ეთერეუმის გამოყენების განსხვავებული იდეები",
+ "nav-what-is-ether-description": "ეთერეუმის აპლიკაციების ვალუტა",
+ "nav-what-is-ethereum-description": "გაიგეთ, რა ხდის ეთერეუმს განსაკუთრებულს",
+ "nav-what-is-web3-label": "რა არის WEB3?",
+ "nav-what-is-web3-description": "ცენტრალიზებული მონოპოლიების ალტერნატივა, რომელიც კარნახობს წესებს",
+ "nav-whitepaper-description": "თავდაპირველი ეთერეუმის დოკუმენტი, რომელიც დაწერილია ვიტალიკ ბუტერინის მიერ, 2014 წელს",
+ "nav-zkp-description": "განაცხადის ვალიდურობის დამტკიცების გზა ისე, რომ არ მოხდეს თავად განაცხადის გამჟღავნება",
+ "nft-page": "NFT - შეუცვლელი ტოკენები-ები",
"nfts": "NFT-ები",
"no": "არა",
"on-this-page": "ამ გვერდზე",
@@ -140,6 +248,7 @@
"page-developers-aria-label": "დეველოპერების მენიუ",
"page-index-meta-title": "მთავარი",
"page-last-updated": "გვერდი ბოლოს განახლდა",
+ "participate-menu": "მონაწილეობის მენიუ",
"pbs": "შეთავაზების შემქმნელის გამიჯვნა",
"pools": "გაერთიანებული სტეიკინგი",
"privacy-policy": "კონფიდენციალურობის პოლიტიკა",
@@ -150,13 +259,15 @@
"refresh": "გთხოვთ განაახლეთ გვერდი.",
"return-home": "დაბრუნება მთავარზე",
"roadmap": "ეთერეუმის საგზაო რუკა",
+ "research": "კვლევა",
+ "research-menu": "კვლევის მენიუ",
"resources": "თარგმნის რესურსები",
- "regenerative-finance": "Რეგენერატიული ფინანსები (ReFi)",
- "run-a-node": "კვანძის გაშვება",
+ "regenerative-finance": "ReFi - Რეგენერატიული ფინანსები",
+ "run-a-node": "ქსელის ჩაშვება",
"rollup-component-website": "ვებგვერდი",
"rollup-component-developer-docs": "დეველოპერის დოკუმენტაცია",
"rollup-component-technology-and-risk-summary": "ტექნოლოგია და რისკის შეჯამება",
- "scaling": "სუბიექტები ქსელში, რომლებსაც შეუძლიათ ბალანსის შენარჩუნება და ტრანზაქციების გაგზავნა",
+ "scaling": "მასშტაბირება",
"saas": "სტეიკინგი როგორც სერვისი",
"search": "ძიება",
"search-ethereum-org": "ძიება ethereum.org-ზე",
@@ -164,6 +275,7 @@
"search-box-blank-state-text": "მოძებნე!",
"search-eth-address": "ეს ჰგავს Ethereum-ის მისამართს. ჩვენ არ გავცემთ მისამართებზე სპეციფიკურ მონაცემებს. სცადეთ მოიძიოთ ინფორმაცია ისეთ ბლოკ ექსპლორერში, როგორიცაა",
"search-no-results": "თქვენმა ძებნამ შედეგი არ გამოიღო",
+ "security": "უსაფრთხოება",
"single-slot-finality": "საბოლოო ცალკე სლოტი",
"statelessness": "გაუფორმებლობა",
"see-contributors": "იხილეთ კონტრიბუტორები",
@@ -172,15 +284,14 @@
"show-all": "ყველაფრის ჩვენება",
"show-less": "ნაკლების ჩვენება",
"site-description": "Ethereum არის გლობალური, დეცენტრალიზებული პლატფორმა ფინანსური თუ სხვა ახალი ტიპის აპლიკაციებისთვის. Ethereum-ზე შეგიძლიათ დაწეროთ კოდი, რომელიც აკონტროლებს ფულს და შექმნათ აპლიკაციები, რომლებიც ხელმისაწვდომი იქნება მსოფლიოს ნებისმიერ წერტილში.",
- "site-title": "ethereum.org",
"skip-to-main-content": "ძირითად მასალაზე გადასვლა",
"smart-contracts": "ჭკვიანი კონტრაქტები",
"stablecoins": "სტაბილური ქოინები",
"stake-eth": "დაასტეიკე ETH",
"staking": "სტეიკინგი",
"start-here": "დაიწყე აქ",
- "style-guide": "Style guide",
"solo": "სოლო სტეიკინგი",
+ "support": "მხარდაჭერა",
"terms-of-use": "მოხმარების წესები",
"translation-banner-body-new": "თქვენ ხედავთ ამ გვერდს ინგლისურად, რადგან ის ჯერ არ გვითარგმნია. დაგვეხმარეთ ამ გვერდის თარგმნაში.",
"translation-banner-body-update": "ეს გვერდის ახალი ვერსიაა, ამიტომ ის ამჟამად მხოლოდ ინგლისურ ენაზეა. დაგვეხმარეთ ახალი ვერსიის თარგმნაში. ",
@@ -191,12 +302,14 @@
"translation-banner-no-bugs-title": "აქ არ არის ბაგი!",
"translation-banner-no-bugs-content": "ეს გვერდი არ ითარგმნება. ჩვენ სპეციალურად დავტოვეთ ეს გვერდი ინგლისურად.",
"translation-banner-no-bugs-dont-show-again": "აღარ მაჩვენო",
+ "translation-program": "თარგმნის პროგრამა",
"try-using-search": "სცადეთ საძიებოს გამოყენება, რათა იპოვოთ ის, რასაც ეძებთ",
"tutorials": "გაკვეთილები",
"up": "მაღლა",
+ "use": "გამოყენება",
"use-ethereum": "ეთერეუმის გამოყენება",
"use-ethereum-menu": "ეთერეუმის მენიუს გამოყენება",
- "user-experience": "User experience",
+ "use-menu": "გამოიყენეთ მენიუ",
"verkle-trees": "\"Verkle\" ხეები",
"wallets": "საფულეები",
"we-couldnt-find-that-page": "გვერდი არ მოიძებნა",
diff --git a/src/intl/ka/page-languages.json b/src/intl/ka/page-languages.json
index aa667bad0bb..c1200486e2c 100644
--- a/src/intl/ka/page-languages.json
+++ b/src/intl/ka/page-languages.json
@@ -2,20 +2,28 @@
"page-languages-h1": "ენის მხარდაჭერა",
"page-languages-interested": "დაინტერესებული ხართ წვლილის შეტანით?",
"page-languages-learn-more": "მეტი შეიტყვეთ ჩვენი თარგმანის პროგრამის შესახებ",
- "page-languages-meta-desc": "Resources to all supported languages of ethereum.org and ways to get involved as a translator.",
+ "page-languages-meta-desc": "ethereum.org-ის ყველა მხარდაჭერილი ენის რესურსი და მთარგმნელად შემოერთების გზები.",
"page-languages-meta-title": "ethereum.org ენათა თარგმანები",
+ "page-languages-p1": "ეთერეუმი გლობალური პროექტია და ethereum.org-ის ყველასთვის ხელმისაწვდომობა, მიუხედავად მათი ეროვნებისა თუ ენისა, სასიცოცხლოდ აუცილებელია. ჩვენი საზოგადოება დებდა მაქსიმუმს საიმისოდ, რომ ეს ხედვა რეალობად გარდაექმნა.",
+ "page-languages-translations-available": "ethereum.org შემდეგ ენებზეა ხელმისაწვდომი",
+ "page-languages-resources-paragraph": "ethereum.org-ის სინაარსის თარგმნის გარდა, ჩვენ აგრეთვე ვინარჩუნებთ",
+ "page-languages-resources-link": "ეთერეუმის მრავალენოვანი რესურსების შემოწმებულ სიას",
"page-languages-want-more-header": "გსურთ ნახოთ ethereum.org სხვადასხვა ენაზე?",
- "page-languages-want-more-link": "თარგმანის პროგრამა",
+ "page-languages-want-more-link": "თარგმნის პროგრამა",
+ "page-languages-want-more-paragraph": "ethereum.org-ის მთარგმნელები გვერდებს ყოველთვის რაც შეიძლება მეტ ენაზე თარგმნიან. რათა იხილოთ მათი მიმდინარე სამუშაო ან დარეგისტრირდეთ მათთან შესაერთებლად, წაიკითხეთ ჩვენი []-ის შესახებ",
"page-languages-filter-label": "ფილტრების სია",
"page-languages-filter-placeholder": "აკრიბეთ დასაფილტრად",
"page-languages-browser-default": "ბრაუზერის ნაგულისხმები",
"page-languages-translated": "გადათარგმნილი",
"page-languages-words": "სიტყვები",
"page-languages-recruit-community": "დაგვეხმარეთ ethereum.org-ის გადათარგმნაში.",
+ "langauge-am": "ამჰარული",
"language-ar": "არაბული",
"language-az": "აზერბაიჯანული",
+ "langauge-be": "ბელორუსული",
"language-bg": "ბულგარული",
"language-bn": "ბენგალური",
+ "language-bs": "ბოსნიური",
"language-ca": "კატალონიური",
"language-cs": "ჩეხური",
"language-da": "დანიური",
@@ -27,22 +35,27 @@
"language-fi": "ფინური",
"language-fr": "ფრანგული",
"language-gl": "გალიციური",
+ "language-gu": "Gujarati",
"language-he": "Ებრაული",
"language-hi": "ინდური",
"language-hr": "ხორვატული",
"language-hu": "უნგრული",
+ "language-hy-am": "სომხური",
"language-id": "ინდონეზიური",
"language-ig": "იგბო",
"language-it": "იტალიური",
"language-ja": "იაპონური",
"language-ka": "ქართული",
"language-kk": "ყაზახური",
+ "language-km": "ქმერული",
+ "language-kn": "კანარესე (ინდური)",
"language-ko": "კორეული",
"language-lt": "ლიტვური",
"language-ml": "მალაიალამური",
"language-mr": "მარათხური",
"language-ms": "მალაიური",
"language-nb": "ნორვეგიული",
+ "language-ne-np": "ნეპალური",
"language-nl": "ჰოლანდიური",
"language-pcm": "ნიგერიული პიჯინი",
"language-fil": "ფილიპინური",
@@ -56,10 +69,13 @@
"language-sl": "სლოვენური",
"language-sr": "სერბული",
"language-sw": "სუაჰილი",
+ "language-ta": "ტამილიური",
"language-th": "ტაილანდური",
+ "language-tk": "თურქმენული",
"language-tr": "თურქული",
"language-uk": "უკრაინული",
"language-ur": "ურდუ",
+ "language-uz": "უზბეკური",
"language-vi": "ვიეტნამური",
"language-zh": "ჩინური გამარტივებული",
"language-zh-tw": "ჩინური ტრადიციული"
diff --git a/src/intl/kk/common.json b/src/intl/kk/common.json
index 820eaef73b3..372ed9d0e09 100644
--- a/src/intl/kk/common.json
+++ b/src/intl/kk/common.json
@@ -1,29 +1,70 @@
{
"about-ethereum-org": "ethereum.org туралы",
"about-us": "Біз туралы",
+ "adding-desci-projects": "Desci жобаларын қосу",
+ "adding-developer-tools": "Әзірлеуші құралдарды қосу",
+ "adding-exchanges": "Биржаларды қосу",
+ "adding-glossary-terms": "Глоссарий терминдерін қосу",
+ "adding-staking-products": "Стейкинг өнімдерін қосу",
+ "adding-wallets": "Әмияндарды қосу",
+ "account-abstraction": "Есептік жазбаның абстракциясы",
+ "acknowledgements": "Тану",
"aria-toggle-search-button": "Іздеуді ауыстыру түймесі",
"aria-toggle-menu-button": "Мәзірді ауыстыру түймесі",
"beacon-chain": "Beacon Chain",
"bridges": "Блокчейн көпірлері",
- "close": "Close",
+ "bug-bounty": "Баг марапаты",
+ "build": "Құру",
+ "build-menu": "Мәзір құру",
+ "clear": "Тазалау",
+ "close": "Жабу",
"community": "Қауымдастық",
"community-hub": "Қауымдастық орталығы",
"community-menu": "Қауымдастық мәзірі",
"contact": "Контакт",
+ "content-buckets": "Мазмұн шелектері",
+ "content-resources": "Мазмұн ресурстары",
+ "content-standardization": "Мазмұнды стандарттау",
"contributing": "Үлес қосу",
"contributors": "Үлес қосушылар",
"contributors-thanks": "Бұл бетке үлес қосқандардың бәріне рақмет!",
"cookie-policy": "Cookie саясаты",
"copied": "Көшірілді",
"copy": "Көшіру",
+ "danksharding": "Данкшардинг",
+ "dao-page": "DAO-лар - Орталықсыздандырылған автономды ұйымдар",
"dark-mode": "Күңгірт",
"data-provided-by": "Деректер көзі:",
- "decentralized-applications-dapps": "Орталықсыздандырылған қолданбалар (dapps)",
+ "decentralized-applications-dapps": "Dapps - Орталықсыздандырылған қолданбалар",
+ "decentralized-identity": "Орталықтандырылмаған сәйкестендіру",
+ "decentralized-social-networks": "Орталықтандырылмаған әлеуметтік желілер",
+ "decentralized-science": "DeSci - Орталықтандырылмаған ғылым",
+ "description": "Навигация элементінің сипаттамасы",
+ "defi-page": "DeFi - Орталықсыздандырылған қаржы",
+ "design": "Дизайн",
+ "design-principles": "Дизайн принциптері",
"devcon": "Devcon",
"developers": "Әзірлеушілер",
"developers-home": "Әзірлеушілер басты беті",
"docs": "Құжаттар",
+ "docsearch-to-select": "Тандау",
+ "docsearch-to-navigate": "Өту",
+ "docsearch-to-close": "Жабу",
+ "docsearch-search-by": "Іздеу",
+ "docsearch-start-recent-searches-title": "Соңғы",
+ "docsearch-start-no-recent-searches": "Соңғы іздеу сұраулары жоқ",
+ "docsearch-start-save-recent-search": "Бұл іздеу сұрауларын сақтаңыз",
+ "docsearch-start-remove-recent-search": "Бұл іздеу сұрауын тарихтан жойыңыз",
+ "docsearch-start-favorite-searches": "Таңдаулы",
+ "docsearch-start-remove-favorite-search": "Бұл іздеу сұрауын таңдаулылардан алып тастаңыз",
+ "docsearch-no-results-text": "Сұраныс бойынша нәтиже жоқ",
+ "docsearch-no-results-suggested-query": "Іздеуге тырысыңыз",
+ "docsearch-no-results-missing": "Осы сұраныс бойынша нәтижелер болуы керек деп ойлайсыз ба?",
+ "docsearch-no-results-missing-link": "Бізге хабарлаңыз.",
+ "docsearch-error-title": "Нәтиже беру мүмкін болмады",
+ "docsearch-error-help": "Желіге қосылуды тексеру қажет болуы мүмкін.",
"documentation": "Құжаттама",
+ "down": "Төмен",
"ecosystem": "Экожүйе",
"edit-page": "Бетті өңдеу",
"ef-blog": "Ethereum қорының блогі",
@@ -44,29 +85,37 @@
"ethereum-glossary": "Ethereum глоссарийі",
"ethereum-governance": "Ethereum платформасын Басқару",
"ethereum-logo": "Ethereum логотипі",
+ "ethereum-roadmap": "Ethereum жол картасы",
+ "ethereum-protocol": "Ethereum хаттамасы",
"ethereum-security": "Ethereum қауіпсіздігі және алаяқтықтың алдын алу",
"ethereum-support": "Ethereum қолдауы",
"ethereum-wallets": "Ethereum әмияндары",
"ethereum-whitepaper": "Ethereum жобалық құжаты",
"feedback-widget-prompt": "Бұл бет пайдалы ма?",
- "feedback-card-prompt-page": "Was this page helpful?",
- "feedback-card-prompt-article": "Was this article helpful?",
- "feedback-card-prompt-tutorial": "Was this tutorial helpful?",
+ "feedback-card-prompt-page": "Бұл бет пайдалы болды ма?",
+ "feedback-card-prompt-article": "Бұл мақала пайдалы болды ма?",
+ "feedback-card-prompt-tutorial": "Бұл нұсқаулық пайдалы болды ма?",
"feedback-widget-thank-you-title": "Пікіріңіз үшін рахмет!",
"feedback-widget-thank-you-subtitle": "Бірнеше сұраққа жауап беру арқылы бұл бетті бұрыннан да жақсырақ етіңіз.",
- "feedback-widget-thank-you-subtitle-ext": "If you need help, you can reach out to the community on our Discord.",
+ "feedback-widget-thank-you-subtitle-ext": "Егер сізге көмек қажет болса, сіз біздің Discord мекенжайы бойынша қоғамдастыққа хабарласа аласыз.",
"feedback-widget-thank-you-timing": "2-3 мин",
"feedback-widget-thank-you-cta": "Қысқаша сауалнаманы ашу",
"find-wallet": "Әмиян табу",
+ "future-proofing": "Болашақты қамтамасыз ету",
"get-eth": "ETH алу",
"get-involved": "Қатысу",
"get-started": "Бастау",
"grants": "Гранттар",
"grant-programs": "Экожүйелік гранттар бағдарламалары",
- "guides-and-resources": "Қауымдастық нұсқаулықтары мен ресурстары",
+ "guides": "Нұсқаулықтар",
+ "guides-hub": "Нұсқаулық",
"history-of-ethereum": "Ethereum тарихы",
"home": "Басты бет",
"how-ethereum-works": "Ethereum қалай жұмыс істейді?",
+ "how-to-revoke-token-access": "Ақылды келісімшарттың криптоқаражатына қол жетімділігін қалай жоюға болады",
+ "how-to-swap-tokens": "Токендерді қалай ауыстыруға болады",
+ "how-to-use-a-bridge": "Токендерді 2-деңгейге қалай аударуға болады",
+ "how-to-use-a-wallet": "Әмиянды қалай пайдалануға болады",
"image": "сурет",
"in-this-section": "Бұл бөлімде",
"individuals": "Тұлғалар",
@@ -80,6 +129,7 @@
"layer-2": "2-қабат",
"learn": "Үйрену",
"learn-by-coding": "Кодтау арқылы үйрену",
+ "learn-hub": "Оқу орталығы",
"learn-menu": "Үйрену мәзірі",
"learn-more": "Көбірек білу",
"less": "Азырақ",
@@ -88,42 +138,153 @@
"loading": "Жүктелуде...",
"loading-error": "Жүктеу қатесі.",
"loading-error-refresh": "Қате, жаңартыңыз.",
+ "loading-error-try-again-later": "Деректерді жүктеу мүмкін емес. Кейінірек қайталап көріңіз.",
"logo": "логотип",
"mainnet-ethereum": "Mainnet Ethereum",
+ "merge": "Біріктіру",
"more": "Көбірек",
- "nav-developers": "Әзірлеушілер",
+ "nav-about-description": "Ethereum қауымдастығы үшін ортақ, ашық жоба",
+ "nav-advanced-description": "Одан да күрделі тақырыптарды үйреніңіз",
+ "nav-basics-description": "Ethereum негіздерін түсініңіз",
+ "nav-basics-label": "Негіздер",
+ "nav-bridges-description": "Web3 негізгі L1 блокчейндері мен L2 масштабтау шешімдері экожүйесі болып өзгертілді",
+ "nav-builders-home-description": "Ethereum үшін әзірлеуші нұсқаулығы—әзірлеушілер бойынша, әзірлеушілер үшін",
+ "nav-builders-home-label": "Әзірлеуші басты беті",
+ "nav-contribute-description": "Егер сіз көмектескіңіз келсе, бұл сізге бағыт-бағдар көрсетеді",
+ "nav-contribute-label": "ethereum.org жүйесіне үлес қосу",
+ "nav-dao-description": "Мүшелердің иелігіндегі орталықтандырылған басқарусыз қауымдастықтар",
+ "nav-dapps-description": "Ethereum қолданатын қолданбалардың бай экожүйесін қарап шығыңыз",
+ "nav-defi-description": "Дәстүрлі қаржылық нарықтың ғаламдық, ашық баламасы",
+ "nav-desci-description": "Ағымдағы ғылыми жүйенің ғаламдық, ашық баламасы",
+ "nav-desoc-description": "Әлеуметтік өзара қарым-қатынас пен контент жасауға арналған блокчейн негізіндегі платформалар",
"nav-developers-docs": "Әзірлеушілер құжаттары",
+ "nav-developers": "Әзірлеушілер",
+ "nav-did-description": "Бірегей орталықсыздандырылған идентификаторларды шығару және оларға иелік ету",
+ "nav-docs-description": "Ethereum арқылы түсінуге және құруға көмектесетін құжаттар",
+ "nav-docs-design-description": "Бірегей web3 құрылымы тапсырмаларының, ең жақсы тәжірибелерінің және пайдаланушы зерттеу мәліметтерінің сипаттамасы",
+ "nav-docs-design-label": "UX/UI құрылымы негіздері",
+ "nav-docs-foundation-description": "Ethereum жүйесінде әзірлеуге арналған негіздер",
+ "nav-docs-overview-description": "Әзірлеуші құжаттарының мекені",
+ "nav-docs-stack-description": "Ethereum стегінің барлық мәліметтерін түсініңіз",
+ "nav-eip-description": "Жаңа мүмкіндіктерді немесе процестерді көрсететін стандарттар",
+ "nav-eip-label": "EIP - Ethereum жетілдіру ұсыныстары",
+ "nav-emerging-description": "Ethereum үшін басқа жаңа қолдану жағдайларын біліңіз",
+ "nav-enterprise-description": "Ethereum үшін бизнестік қолданбалар",
+ "nav-ethereum-org-description": "Бұл веб-сайт қауымдастық тарапынан басқарылады—бізге қосылып, өз үлесіңізді қосыңыз",
+ "nav-ethereum-wallets-description": "Ethereum шотымен жұмыс істеуге арналған қолданба",
+ "nav-events-description": "Орталықсыздандыру және әркімнің қатысу еркіндігі",
+ "nav-events-irl-description": "Әр айда маңызды Ethereum жүзбе-жүз және онлайн іс-шаралары болады",
+ "nav-events-label": "Қауымдастықтар мен іс-шаралар",
+ "nav-events-online-description": "Бұл онлайн қауымдастықтарда жүз мыңдаған Ethereum ынтагерлері бар",
+ "nav-find-wallet-description": "Әмияндар криптовалютаны пайдалану мүмкіндігін береді",
+ "nav-find-wallet-label": "Әмияныңызды таңдаңыз",
+ "nav-gas-fees-description": "ETH транзакцияларының алымы қалай есептеледі",
+ "nav-get-eth-description": "Ethereum қолданбаларын пайдалану үшін сізге эфир (ETH) қажет",
+ "nav-get-started-description": "Ethereum пайдаланудың алғашқы қадамдары",
+ "nav-governance-description": "Ethereum протоколын жаңартудағы процесс",
+ "nav-governance-label": "Басқармасы",
+ "nav-grants-description": "Грант негізінде қаржыландыру бағдарламаларын беретін жобалар бойынша біздің қауымдастығымыз тарапынан мұқият таңдалған тізім",
+ "nav-guide-create-account-description": "Кез келген адам кез келген уақытта әмиян қолданбасы арқылы Ethereum шотын тегін жасай алады",
+ "nav-guide-revoke-access-description": "Смарт келісімшарттармен және Ethereum экожүйелерімен жұмыс істегенде қауіпсіздікті сақтаңыз",
+ "nav-guide-revoke-access-label": "Смарт келісімшартты қолдану құқығын қалай қайтарып алуға болады",
+ "nav-guide-use-wallet-description": "Әмиянның барлық негізгі функцияларын қолдану туралы біліңіз",
+ "nav-guide-use-wallet-label": "Әмиянды қалай пайдалануға болады",
+ "nav-guides-description": "Сізге жұмысты бастауға көмектесетін қадамдық практикалық нұсқаулар",
+ "nav-guides-label": "Практикалық нұсқаулықтар",
+ "nav-history-description": "Барлық негізгі өзгерістер мен жаңартулардың хронологиясы",
+ "nav-history-label": "Ethereum техникалық тарихы",
+ "nav-layer-2-description": "Ethereum үшін арзан және жылдам транзакциялар",
+ "nav-learn-by-coding-description": "Ethereum арқылы тәжірибе жүргізіп көруге көмектесетін құралдар",
+ "nav-local-env-description": "Choose and set up your Ethereum әзірлеу стегін таңдау және орнату",
+ "nav-mainnet-description": "Кәсіпорын блокчейн қолданбаларын ортақ Ethereum негізгі желісінде құруға болады",
+ "nav-nft-description": "Ethereum негізіндегі актив ретінде бірегей өнімді ұсыну жолы",
+ "nav-open-research-description": "Ethereum негізгі басым тараптарының бірі оның белсенді зерттеу қауымдастығы болып табылады",
+ "nav-open-research-label": "Ағымдағы зерттеулер",
+ "nav-overview-description": "Ethereum туралы барлық мәліметтер",
+ "nav-participate-overview-description": "Қатысу әдісі туралы шолу",
"nav-primary": "Негізгі",
+ "nav-quizzes-description": "Ethereum және криптовалюталарды қаншалықты түсінетініңізді біліңіз",
+ "nav-quizzes-label": "Біліміңізді тексеріп көріңіз",
+ "nav-refi-description": "Қалпына келтіру принциптеріне негізделген балама экономикалық жүйе",
+ "nav-research-description": "Ethereum жақсарту үшін пайдаланылатын процестер",
+ "nav-research-label": "Зерттеу және әзірлеу",
+ "nav-roadmap-description": "Ethereum үшін масштабтау, қауіпсіздік және тұрақтылық жолы",
+ "nav-roadmap-future-description": "Ethereum криптовалютасын сенімді және орталықсыздандырылған желі ретінде нығайту",
+ "nav-roadmap-future-label": "Болашақты қамтамасыз ету",
+ "nav-roadmap-label": "Жол картасы",
+ "nav-roadmap-scaling-description": "Транзакция шығындары мен жылдамдығын одан әрі азайтуға арналған желі жаңартулары",
+ "nav-roadmap-security-description": "Ethereum криптовалютасының болашақтағы барлық қауіп түрлеріне төзімділігін қамтамасыз ету",
+ "nav-roadmap-security-label": "Жақсартылған қауіпсіздік",
+ "nav-roadmap-ux-description": "Ethereum пайдалану қарапайымдастырылуы керек",
+ "nav-run-a-node-description": "Желінің қауіпсіздігін қамтамасыз ету кезінде толықтай тәуелсіз болыңыз",
+ "nav-security-description": "Криптовалютаны пайдалану кезінде ең жақсы тәжірибелерді үйреніңіз",
+ "nav-smart-contracts-description": "Ethereum экожүйесінің негізгі құру блоктары",
+ "nav-stablecoins-description": "Стейблкоиндар белгіленген құнда қалуға арналған Ethereum токендері болып табылады",
+ "nav-stake-description": "Ethereum қауіпсіздігі үшін марапаттар алыңыз",
+ "nav-stake-label": "Ставка",
+ "nav-staking-home-description": "Ставка жасау үшін әртүрлі опцияларды шолу",
+ "nav-staking-pool-description": "Ставка жасаңыз және басқалармен қосылу арқылы кез келген ETH сомасында марапаттар алыңыз",
+ "nav-staking-pool-label": "Пулдық стейкинг",
+ "nav-staking-saas-label": "Қызмет арқылы ставка жасау",
+ "nav-staking-solo-label": "Соло стейкинг",
+ "nav-start-building-description": "Жаңа келгендер үшін пайдалы ақпарат",
+ "nav-translation-program-description": "ethereum.org сайтын барлық тілдерге аударуға бірге әрекеттену",
+ "nav-tutorials-description": "Қауымдастық нұсқаулығының таңдалған тізімі",
+ "nav-use-cases-description": "Ethereum пайдаланудың әртүрлі идеяларын ашыңыз",
+ "nav-what-is-ether-description": "Ethereum қолданбаларының валютасы",
+ "nav-what-is-ethereum-description": "Ethereum ерекшелігі неде екенін түсініңіз",
+ "nav-what-is-web3-label": "Web3 дегеніміз не?",
+ "nav-what-is-web3-description": "Ережелерді орнататын орталықтандырылған монополияның баламасы",
+ "nav-whitepaper-description": "Бастапқы Ethereum ресми құжаты 2014 жылы Виталик Бутерин тарапынан жазылған",
+ "nav-zkp-description": "Мәлімдеменің өзін әшкерелемей, мәлімдеменің жарамдылығын дәлелдеу әдісі",
+ "nft-page": "NFT-лер - Өзара алмастырылмайтын токендер",
+ "nfts": "NFT-лер",
"no": "Жоқ",
"on-this-page": "Бұл бетте",
- "open-research": "Open research",
+ "open-research": "Ағымдағы зерттеулер",
+ "page-developers-aria-label": "Әзірлеушілер мәзірі",
+ "page-index-meta-title": "Басты бет",
"page-last-updated": "Соңғы бет жаңартылуы",
+ "participate-menu": "Қатысу мәзірі",
+ "pbs": "Мәлімдеуші мен құрылысшыны бөлу",
+ "pools": "Пулдық стейкинг",
"privacy-policy": "Құпиялық саясаты",
"private-ethereum": "Жеке Ethereum",
+ "product-disclaimer": "Өнімдер мен қызметтер Ethereum қауымдастығы үшін ыңғайлылық үшін көрсетілген. Өнімді немесе қызметті қосу ethereum.org веб-сайт тобы немесе Ethereum қоры тарапынан мақұлдауды білдірмейді.",
+ "quizzes-title": "Викторина орталығы",
+ "quizzes": "Викториналар",
"refresh": "Бетті жаңартыңыз.",
"return-home": "үйге оралу",
+ "roadmap": "Ethereum жол картасы",
+ "research": "Зерттеу",
+ "research-menu": "Зерттеу мәзірі",
+ "resources": "Аударма ресурстары",
"run-a-node": "Түйінді басқару",
"rollup-component-website": "Веб-сайт",
"rollup-component-developer-docs": "Әзірлеуші құжаттары",
"rollup-component-technology-and-risk-summary": "Технология және тәуекелдер туралы жиынтық мәліметтер",
+ "saas": "Қызмет ретіндегі стейкинг",
"search": "Іздеу",
+ "search-ethereum-org": "ethereum.org іздеу",
+ "secret-leader-election": "Құпия көшбасшыны сайлау",
"search-box-blank-state-text": "Іздеңіз!",
"search-eth-address": "Бұл Ethereum мекенжайына ұқсайды. Біз мекенжайлар туралы деректерді қамтамасыз етпейміз. Оны мына сияқты блок іздеу құралында іздеп көріңіз:",
"search-no-results": "Іздеу нәтижелер қайтармады",
+ "security": "Қауіпсіздік",
+ "single-slot-finality": "Бір ұяшықта аяқтау",
+ "statelessness": "Мәртебенің болмауы",
"see-contributors": "Үлес қосушыларды көру",
- "set-up-local-env": "Жергілікті ортаны реттеу",
- "sharding": "Sharding",
+ "set-up-local-env": "Локал орта баптау",
"show-all": "Бәрін көрсету",
"show-less": "Азырақ көрсету",
"site-description": "Ethereum — ақша мен жаңа қолданбаларың түрлеріне арналған жаһандық, орталықсыздандырылған платформа. Ethereum арқылы ақша бақылайтын код жазып, әлемнің кез келген жерінде қолжетімді болатын қолданбалар жасай аласыз.",
- "site-title": "ethereum.org",
"skip-to-main-content": "Негізгі мазмұнға өту",
- "smart-contracts": "Смарт келісімшарттар",
- "stablecoins": "Стейблкойндар",
+ "smart-contracts": "Ақылды келісімшарттар",
+ "stablecoins": "Stablecoins",
"staking": "Стейкиң",
+ "start-here": "Осы жерден бастаңыз",
"solo": "Соло стейкинг",
- "saas": "Қызмет ретіндегі стейкинг",
- "pools": "Пулдық стейкинг",
+ "support": "Қолдау көрсету",
"terms-of-use": "Пайдалану шарттары",
"translation-banner-body-new": "Біз бұл бетті аудармағандықтан, оны ағылшын тілінде көріп отырсыз. Бұл мазмұнды аударуға көмектесіңіз.",
"translation-banner-body-update": "Бұл беттің жаңарақ нұсқасы бар, бірақ ол ағылшын тілінде ғана қолжетімді. Соңғы нұсқасын аударуға көмектесіңіз.",
@@ -134,21 +295,22 @@
"translation-banner-no-bugs-title": "Мұнда қателер жоқ!",
"translation-banner-no-bugs-content": "Бұл бет аударылып жатқан жоқ. Біз бұл бетті әзірге әдейі ағылшын тілінде қалдырдық.",
"translation-banner-no-bugs-dont-show-again": "Қайта көрсетпеу",
+ "translation-program": "Аударма бағдарламасы",
"try-using-search": "Іздеп жатқаныңызды табу үшін іздеуді қолданып көріңіз",
"tutorials": "Туториалдар",
+ "up": "Жоғары",
+ "use": "Қолд.",
"use-ethereum": "Ethereum платформасын пайдалану",
"use-ethereum-menu": "Ethereum мәзірін пайдалану",
+ "use-menu": "Қолдану мәзірі",
+ "verkle-trees": "Веркола Ауылы",
"wallets": "Әмияндар",
"we-couldnt-find-that-page": "Бұл бетті табу мүмкін болмады",
"web3": "Web3 дегеніміз не?",
"website-last-updated": "Веб-сайттың соңғы жаңартылуы",
- "what-is-ether": "Ether (ETH) дегеніміз не?",
- "what-is-ethereum": "Ethereum дегеніміз не?",
- "defi-page": "Орталықсыздандырылған қаржы (DeFi)",
- "dao-page": "Орталықсыздандырылған автономды ұйымдар (DAO-лар)",
- "nft-page": "Өзара алмастырылмайтын токендер (NFT-лер)",
- "decentralized-social-networks": "Decentralized social networks",
- "decentralized-identity": "Decentralized identity",
+ "what-is-ether": "Ether (ETH) деген не?",
+ "what-is-ethereum": "Ethereum деген не?",
+ "withdrawals": "Ставкаларды шығару",
"yes": "Иә",
- "page-index-meta-title": "Басты бет"
+ "zero-knowledge-proofs": "Нөлдік жария етілген дәлелдер"
}
diff --git a/src/intl/kk/page-languages.json b/src/intl/kk/page-languages.json
index d7b234ba390..7317959b7b0 100644
--- a/src/intl/kk/page-languages.json
+++ b/src/intl/kk/page-languages.json
@@ -1,18 +1,29 @@
{
- "page-languages-h1": "Тіл қолдау",
+ "page-languages-h1": "Тілді қолдау",
"page-languages-interested": "Үлес қосқыңыз келе ме?",
"page-languages-learn-more": "Аударма бағдарламасы туралы көбірек біліңіз",
"page-languages-meta-desc": "ethereum.org қолдайтын барлық тіл ресурсы және аудармашы ретінде үлес қосу жолдары.",
"page-languages-meta-title": "ethereum.org тіл аудармалары",
"page-languages-p1": "Ethereum — бұл жаһандық жоба, және ethereum.org сайтының ұлт немесе тілге қарамастан, бәріне қолжетімді болғандығы өте маңызды. Қауымдастығымыз бұл пікірді жүзеге асыру үшін бар ыждаһатын салады.",
"page-languages-translations-available": "ethereum.org келесі тілдерде қолжетімді",
+ "page-languages-resources-paragraph": "Ethereum.org мазмұнын аударудан басқа, біз",
+ "page-languages-resources-link": "көптеген тілдерде Ethereum ресурстарының мұқият іріктелген тізімін жүргіземіз",
"page-languages-want-more-header": "ethereum.org-ті басқа тілде көргіңіз келе ме?",
"page-languages-want-more-link": "Аударма бағдарламасы",
- "page-languages-want-more-paragraph": "ethereum.org аудармашылары беттерді әрқашан мүмкін болғанша көп тілге аударады. Олар қазіргі кезде немен жұмыс істеп жүргенін көргіңіз келсе, немесе оларға қосылу үшін тіркелгіңіз келсе, мұны оқыңыз:",
+ "page-languages-want-more-paragraph": "ethereum.org аудармашылары беттерді әрқашан мүмкін болғанша көп тілге аударады. Олар қазіргі кезде немен жұмыс істеп жүргенін көргіңіз келсе немесе оларға қосылу үшін тіркелгіңіз келсе, мынаны оқыңыз:",
+ "page-languages-filter-label": "Сүзгілер тізімі",
+ "page-languages-filter-placeholder": "Сүзгілеу түрі",
+ "page-languages-browser-default": "Әдепкі браузер",
+ "page-languages-translated": "аударылған",
+ "page-languages-words": "сөздер",
+ "page-languages-recruit-community": "ethereum.org аударуға көмектесіңіз.",
+ "langauge-am": "Амхар тілі",
"language-ar": "Араб",
"language-az": "Әзірбайжан",
+ "langauge-be": "Белорус тілі",
"language-bg": "Болгар",
"language-bn": "Бенгал",
+ "language-bs": "Босния тілі",
"language-ca": "Каталан",
"language-cs": "Чех",
"language-da": "Дат",
@@ -24,21 +35,30 @@
"language-fi": "Фин",
"language-fr": "Француз",
"language-gl": "Галисиан",
+ "language-gu": "Гуджарати",
+ "language-he": "Еврей тілі",
"language-hi": "Хинди",
"language-hr": "Хорват",
"language-hu": "Венгр",
+ "language-hy-am": "Армян тілі",
"language-id": "Индонезия",
"language-ig": "Игбо",
"language-it": "Итальян",
"language-ja": "Жапон",
"language-ka": "Грузин",
+ "language-kk": "Қазақ тілі",
+ "language-km": "Кхмер тілі",
+ "language-kn": "Каннада",
"language-ko": "Корей",
"language-lt": "Литва",
"language-ml": "Малаялам",
"language-mr": "Марати",
"language-ms": "Малай",
"language-nb": "Норвег",
+ "language-ne-np": "Непал тілі",
"language-nl": "Голланд",
+ "language-pcm": "Нигериялық пиджин",
+ "language-fil": "Филиппин тілі",
"language-pl": "Поляк",
"language-pt": "Португал",
"language-pt-br": "Португал (Бразилия)",
@@ -49,9 +69,13 @@
"language-sl": "Словен",
"language-sr": "Cерб",
"language-sw": "Суахили",
+ "language-ta": "Тамил тілі",
"language-th": "Тай",
+ "language-tk": "Түрікмен тілі",
"language-tr": "Түрік",
"language-uk": "Украин",
+ "language-ur": "Урду",
+ "language-uz": "Өзбек тілі",
"language-vi": "Вьетнам",
"language-zh": "Қытай (жеңілтілген)",
"language-zh-tw": "Қытай (дәстүрлі)"
diff --git a/src/intl/km/common.json b/src/intl/km/common.json
index 2154e3d01a6..bf7597404f5 100644
--- a/src/intl/km/common.json
+++ b/src/intl/km/common.json
@@ -1,17 +1,27 @@
{
- "account-abstraction": "Account abstraction",
"about-ethereum-org": "អំពី ethereum.org",
"about-us": "អំពីពួកយើង",
+ "adding-desci-projects": "ការបន្ថែមគម្រោង Desci",
+ "adding-developer-tools": "ការបន្ថែមឧបករណ៍អ្នកអភិវឌ្ឍន៍",
+ "adding-exchanges": "ការបន្ថែមការប្តូរ",
+ "adding-glossary-terms": "ការបន្ថែមវាក្យសព្ទសទ្ទានុក្រម",
+ "adding-staking-products": "ការបន្ថែមផលិតផលភ្នាល់",
+ "adding-wallets": "ការបន្ថែមកាបូប",
+ "acknowledgements": "ការទទួលស្គាល់",
"aria-toggle-search-button": "បិទបើកប៊ូតុងស្វែងរក",
"aria-toggle-menu-button": "បិទបើកប៊ូតុងមីនុយ",
"beacon-chain": "ខ្សែសង្វាក់ Beacon",
"bridges": "ស្ពាន Blockchain",
+ "build": "បង្កើត",
+ "build-menu": "ម៉ឺនុយបង្កើត",
"clear": "សម្អាត",
"close": "បិទ",
"community": "សហគមន៍",
"community-hub": "មជ្ឈមណ្ឌលសហគមន៍",
"community-menu": "ម៉ឺនុយសហគមន៍",
"contact": "ទំនាក់ទំនង",
+ "content-buckets": "ធុងមាតិកា",
+ "content-resources": "ធនធានមាតិកា",
"content-standardization": "ស្តង់ដារមាតិកា",
"contributing": "ការរួមចំណែក",
"contributors": "អ្នករួមចំណែក",
@@ -20,14 +30,17 @@
"copied": "បានចម្លង",
"copy": "ចម្លង",
"danksharding": "Danksharding",
- "dao-page": "អង្គការស្វយ័តវិមជ្ឈការ (DAOs)",
+ "dao-page": "DAOs - អង្គការស្វយ័តវិមជ្ឈការ",
"dark-mode": "ងងឹត",
"data-provided-by": "ប្រភពទិន្នន័យ៖",
- "decentralized-applications-dapps": "កម្មវិធីវិមជ្ឈការ (dapps)",
+ "decentralized-applications-dapps": "Dapps - កម្មវិធីវិមជ្ឈការ",
"decentralized-identity": "អត្តសញ្ញាណវិមជ្ឈការ",
"decentralized-social-networks": "បណ្តាញសង្គមវិមជ្ឈការ",
- "decentralized-science": "វិទ្យាសាស្ត្រវិមជ្ឈការ (DeSci)",
- "defi-page": "ហិរញ្ញវត្ថុវិមជ្ឈការ (DeFi)",
+ "decentralized-science": "DeSci - វិទ្យាសាស្ត្រវិមជ្ឈការ",
+ "description": "ការពណ៌នាសម្រាប់ធាតុ nav",
+ "defi-page": "DeFi - ហិរញ្ញវត្ថុវិមជ្ឈការ",
+ "design": "ការរចនា",
+ "design-principles": "គោលការណ៍នៃការរចនា",
"devcon": "Devcon",
"developers": "អ្នកអភិវឌ្ឍន៍",
"developers-home": "ផ្ទះរបស់អ្នកអភិវឌ្ឍន៍",
@@ -59,7 +72,6 @@
"enterprise-menu": "ម៉ឺនុយសហគ្រាស",
"esp": "កម្មវិធីជំនួយប្រព័ន្ធអេកូឡូស៊ី",
"eth-current-price": "តម្លៃ ETH បច្ចុប្បន្ន (USD)",
- "ethereum-basics": "Ethereum basics",
"ethereum-bug-bounty": "កម្មវិធី Ethereum Bug Bounty ",
"consensus-when-shipping": "តើការដឹកជញ្ជូននៅពេលណា?",
"ethereum-upgrades": "ការអាប់គ្រេដ Ethereum",
@@ -90,15 +102,14 @@
"future-proofing": "ការធានាអនាគត",
"get-eth": "ទទួលយក ETH",
"get-involved": "ចូលរួម",
- "get-started": "ចាប់ផ្ដើម",
+ "get-started": "តោះ! ចាប់ផ្ដើម",
"grants": "ជំនួយ",
"grant-programs": "កម្មវិធីជំនួយប្រព័ន្ធអេកូឡូស៊ី",
"guides": "ការណែនាំ",
- "guides-hub": "មជ្ឈមណ្ឌលណែនាំ",
+ "guides-hub": "របៀបណែនាំ",
"history-of-ethereum": "ប្រវត្តិ Ethereum",
"home": "ទំព័រដើម",
"how-ethereum-works": "របៀបដែល Ethereum ដំណើរការ",
- "how-to-register-an-ethereum-account": "របៀប \"ចុះឈ្មោះ\" គណនី Ethereum",
"how-to-revoke-token-access": "របៀបដកហូតការចូលប្រើមូលនិធិគ្រីបតូរបស់អ្នកពីកិច្ចសន្យាឆ្លាតវៃ។",
"how-to-swap-tokens": "របៀបប្រើ swap tokens",
"how-to-use-a-bridge": "របៀបផ្ទេរកាក់ទៅស្រទាប់ទី 2",
@@ -128,11 +139,104 @@
"loading-error-try-again-later": "មិនអាចផ្ទុកទិន្នន័យបានទេ។ សូមព្យាយាមម្តងទៀតពេលក្រោយ។",
"logo": "រូបសញ្ញា",
"mainnet-ethereum": "Mainnet Ethereum",
- "more": "ច្រើនទៀត",
- "nav-developers": "អ្នកអភិវឌ្ឍន៍",
+ "merge": "បញ្ចូលគ្នា",
+ "more": "ច្រើនជាង",
+ "nav-about-description": "គម្រោងប្រភពបើកចំហ សាធារណៈ សម្រាប់សហគមន៍ Ethereum",
+ "nav-advanced-description": "ស្វែងយល់អំពីប្រធានបទស្មុគស្មាញបន្ថែមទៀត",
+ "nav-advanced-label": "កម្រិតខ្ពស់",
+ "nav-basics-description": "ស្វែងយល់អំពីមូលដ្ឋានគ្រឹះរបស់ Ethereum",
+ "nav-basics-label": "មូលដ្ឋាន",
+ "nav-bridges-description": "Web3 បានវិវត្តទៅជាប្រព័ន្ធអេកូឡូស៊ីនៃប្លុកឆែន L1 បឋម និងដំណោះស្រាយពង្រីក L2",
+ "nav-builders-home-description": "សៀវភៅណែនាំរបស់អ្នកអភិវឌ្ឍសម្រាប់ Ethereum — ដោយអ្នកអភិវឌ្ឍ សម្រាប់អ្នកអភិវឌ្ឍ",
+ "nav-builders-home-label": "ផ្ទះរបស់អ្នកអភិវឌ្ឍ",
+ "nav-contribute-description": "ប្រសិនបើអ្នកត្រូវការជំនួយ ជំនួយនេះអាចជួយអ្នកបាន",
+ "nav-contribute-label": "ការចូលរួមចំណែកដល់ ethereum.org",
+ "nav-dao-description": "សហគមន៍ដែលគ្រប់គ្រងដោយសមាជិក ដោយគ្មានអាជ្ញាធរនៅកណ្តាល",
+ "nav-dapps-description": "រុករកប្រព័ន្ធអេកូឡូស៊ីដ៏សម្បូរបែបនៃកម្មវិធីដោយប្រើ Ethereum",
+ "nav-defi-description": "ជម្រើសជាសកល បើកចំហចំពោះទីផ្សារហិរញ្ញវត្ថុប្រពៃណី",
+ "nav-desci-description": "ជម្រើសជាសកល បើកចំហចំពោះប្រព័ន្ធវិទ្យាសាស្ត្របច្ចុប្បន្ន",
+ "nav-desoc-description": "ថ្នាលដែលមានមូលដ្ឋានលើប្លុកឆែនសម្រាប់អន្តរកម្មសង្គម និងការបង្កើតមាតិកា",
"nav-developers-docs": "ឯកសារអ្នកអភិវឌ្ឍន៍",
+ "nav-developers": "អ្នកអភិវឌ្ឍន៍",
+ "nav-did-description": "ចេញ និងធ្វើជាម្ចាស់ឧបករណ៍កំណត់អត្តសញ្ញាណវិមជ្ឈការតែមួយគត់របស់អ្នក",
+ "nav-docs-description": "ឯកសារដើម្បីជួយអ្នកយល់ និងអភិវឌ្ឍជាមួយ Ethereum",
+ "nav-docs-design-description": "ការពណ៌នាអំពីបញ្ហាប្រឈមនៃការរចនា web3 តែមួយគត់ ការអនុវត្តល្អបំផុត និងការយល់ដឹងអំពីការស្រាវជ្រាវអ្នកប្រើប្រាស់",
+ "nav-docs-design-label": "មូលដ្ឋានគ្រឹះអំពីការរចនា UX/UI",
+ "nav-docs-foundation-description": "មូលដ្ឋានគ្រឹះជាស្នូលដើម្បីអភិវឌ្ឍលើ Ethereum",
+ "nav-docs-overview-description": "ផ្ទះរបស់អ្នកសម្រាប់ឯកសារអ្នកអភិវឌ្ឍន៍",
+ "nav-docs-stack-description": "ស្វែងយល់ពីព័ត៌មានលម្អិតទាំងអស់នៃ stack របស់ Ethereum",
+ "nav-eip-description": "ស្ដង់ដារដែលបញ្ជាក់មុខងារ ឬដំណើរការថ្មី",
+ "nav-eip-label": "EIP - សំណើកែលម្អ Ethereum",
+ "nav-emerging-description": "ស្វែងយល់ពីករណីប្រើប្រាស់ថ្មីជាងនេះផ្សេងទៀតសម្រាប់ Ethereum",
+ "nav-enterprise-description": "កម្មវិធីអាជីវកម្មសម្រាប់ Ethereum",
+ "nav-ethereum-org-description": "គេហទំព័រនេះមានការជំរុញពីសហគមន៍ សូមចូលរួមជាមួយពួកយើង និងរួមចំណែកផងដែរ",
+ "nav-ethereum-wallets-description": "កម្មវិធីមួយដើម្បីធ្វើអន្តរកម្មជាមួយគណនី Ethereum របស់អ្នក",
+ "nav-events-description": "វិមជ្ឈការ និងសេរីភាពក្នុងការចូលរួមសម្រាប់មនុស្សគ្រប់រូប",
+ "nav-events-irl-description": "ជារៀងរាល់ខែមានព្រឹត្តិការណ៍ Ethereum សំខាន់ៗដោយជួបផ្ទាល់ និងតាមអ៊ីនធឺណិត",
+ "nav-events-label": "សហគមន៍ និងព្រឹត្តិការណ៍",
+ "nav-events-online-description": "មានឪពុកដែលជាអ្នកចូលចិត្ត Ethereum រាប់រយពាន់នាក់នៅក្នុងសហគមន៍អនឡាញទាំងនេះ",
+ "nav-find-wallet-description": "កាបូបដែលអាចឱ្យអ្នកប្រើគ្រីបតូ",
+ "nav-find-wallet-label": "ជ្រើសរើសកាបូបរបស់អ្នក",
+ "nav-gas-fees-description": "តើថ្លៃសេវាប្រតិបត្តិការ ETH ត្រូវបានគណនារបៀបណា",
+ "nav-get-eth-description": "អ្នកត្រូវការ ether (ETH) ដើម្បីប្រើកម្មវិធី Ethereum",
+ "nav-get-started-description": "ជំហានដំបូងរបស់អ្នកក្នុងការប្រើ Ethereum",
+ "nav-governance-description": "ដំណើរការពាក់ព័ន្ធនឹងការធ្វើឱ្យប្រសើរឡើងនូវពិធីការ Ethereum",
+ "nav-governance-label": "អភិបាលកិច្ច",
+ "nav-grants-description": "បញ្ជីត្រៀមទុកដោយសហគមន៍របស់យើងលើគម្រោងដែលផ្តល់កម្មវិធីផ្តល់មូលនិធិជំនួយ",
+ "nav-guide-create-account-description": "គ្រប់គ្នាអាចបង្កើតគណនី Ethereum នៅពេលណាក៏បាន ដោយមិនគិតថ្លៃជាមួយកម្មវិធីកាបូប",
+ "nav-guide-revoke-access-description": "រក្សាសុវត្ថិភាពនៅពេលធ្វើអន្តរកម្មជាមួយកិច្ចសន្យាឆ្លាតវៃ និងកម្មវិធីនៅក្នុងប្រព័ន្ធអេកូឡូស៊ី Ethereum",
+ "nav-guide-revoke-access-label": "របៀបដកសិទ្ធិចូលប្រើកិច្ចសន្យាឆ្លាតវៃ",
+ "nav-guide-use-wallet-description": "រៀនពីរបៀបដំណើរការមុខងារមូលដ្ឋានទាំងអស់របស់កាបូប",
+ "nav-guide-use-wallet-label": "របៀបប្រើកាបូប",
+ "nav-guides-description": "ការណែនាំជាជំហានៗជាក់ស្តែង ដើម្បីជួយអ្នកចាប់ផ្តើម",
+ "nav-guides-label": "របៀបណែនាំ",
+ "nav-history-description": "គ្រោងពេលវេលានៃការបំបែក និងការអាប់ដេតសំខាន់ៗទាំងអស់",
+ "nav-history-label": "ប្រវត្តិបច្ចេកទេសរបស់ Ethereum",
+ "nav-layer-2-description": "ប្រតិបត្តិការថោកជាង និងលឿនជាងមុនសម្រាប់ Ethereum",
+ "nav-learn-by-coding-description": "ឧបករណ៍ដែលជួយអ្នកសាកល្បងជាមួយ Ethereum",
+ "nav-local-env-description": "ជ្រើសរើស និងរៀបចំ stack អភិវឌ្ឍន៍ Ethereum របស់អ្នក",
+ "nav-mainnet-description": "កម្មវិធី blockchain សម្រាប់សហគ្រាសអាចត្រូវបានបង្កើតឡើងនៅលើ Ethereum Mainnet សាធារណៈ",
+ "nav-nft-description": "មធ្យោបាយដើម្បីតំណាងឱ្យអ្វីដែលប្លែកពីគេជាទ្រព្យសកម្មដែលផ្អែកលើ Ethereum",
+ "nav-open-research-description": "ចំណុចខ្លាំងសំខាន់មួយនៃ Ethereum គឺសហគមន៍ស្រាវជ្រាវសកម្មរបស់ខ្លួន",
+ "nav-open-research-label": "បើកការស្រាវជ្រាវ",
+ "nav-overview-description": "ការអប់រំ Ethereum មានទាំងអស់",
+ "nav-participate-overview-description": "ទិដ្ឋភាពទូទៅអំពីរបៀបចូលរួម",
"nav-primary": "បឋម",
- "nft-page": "ថូខិនដែលមិនអាចផ្លាស់ប្តូរបាន (NFTs)",
+ "nav-quizzes-description": "ស្វែងយល់ពីរបៀបដែលអ្នកយល់ Ethereum និងរូបិយប័ណ្ណគ្រីបតូ",
+ "nav-quizzes-label": "សាកល្បងចំណេះដឹងរបស់អ្នក",
+ "nav-refi-description": "ប្រព័ន្ធសេដ្ឋកិច្ចជំនួសដែលបង្កើតឡើងនៅលើគោលការណ៍បង្កើតឡើងវិញ",
+ "nav-research-description": "ដំណើរការដែលប្រើដើម្បីកែលម្អ Ethereum",
+ "nav-research-label": "ការស្រាវជ្រាវ និងអភិវឌ្ឍន៍",
+ "nav-roadmap-description": "ផ្លូវទៅកាន់ការពង្រីក សុវត្ថិភាព និងចីរភាពកាន់តែច្រើនសម្រាប់ Ethereum",
+ "nav-roadmap-future-description": "ការពង្រឹង Ethereum ឱ្យក្លាយជាបណ្តាញដ៏រឹងមាំ និងវិមជ្ឈការ",
+ "nav-roadmap-future-label": "ការធានាអនាគត",
+ "nav-roadmap-label": "ផែនទីបង្ហាញផ្លូវ",
+ "nav-roadmap-scaling-description": "ការអាប់ដេតបណ្តាញ ដើម្បីកាត់បន្ថយថ្លៃសេវាប្រតិបត្តិការ និងល្បឿនបន្ថែមទៀត",
+ "nav-roadmap-security-description": "ធ្វើឱ្យប្រាកដថា Ethereum រក្សាភាពធន់នឹងការវាយប្រហារគ្រប់ប្រភេទនាពេលអនាគត",
+ "nav-roadmap-security-label": "សន្តិសុខប្រសើរឡើង",
+ "nav-roadmap-ux-description": "ការប្រើ Ethereum ចាំបាច់ត្រូវធ្វើឱ្យសាមញ្ញ",
+ "nav-run-a-node-description": "ក្លាយជាអធិបតេយ្យពេញលេញ ស្របដែលជួយធានាដល់បណ្តាញ",
+ "nav-security-description": "ស្វែងយល់ពីការអនុវត្តល្អបំផុតនៅពេលប្រើរូបិយប័ណ្ណគ្រីបតូ",
+ "nav-smart-contracts-description": "ប្លុកនៃការបង្កើតជាមូលដ្ឋានគ្រឹះនៃប្រព័ន្ធអេកូឡូស៊ី Ethereum",
+ "nav-stablecoins-description": "Stablecoins គឺជាថូខិន Ethereum ដែលត្រូវបានរចនាឡើងដើម្បីរក្សាតម្លៃថេរ",
+ "nav-stake-description": "ទទួលបានរង្វាន់សម្រាប់ការធានា Ethereum",
+ "nav-stake-label": "ភ្នាល់",
+ "nav-staking-home-description": "ទិដ្ឋភាពទូទៅនៃជម្រើសផ្សេងៗសម្រាប់ការភ្នាល់",
+ "nav-staking-pool-description": "ភ្នាល់ និងទទួលបានរង្វាន់ជាមួយនឹងទឹកប្រាក់ណាមួយនៃ ETH ដោយចូលរួមជាមួយអ្នកដទៃ",
+ "nav-staking-pool-label": "ការភ្នាល់រួមបញ្ចូលគ្នា",
+ "nav-staking-saas-label": "ការភ្នាល់ដោយប្រើសេវាកម្ម",
+ "nav-staking-solo-label": "ការភ្នាល់ទោល",
+ "nav-start-building-description": "ព័ត៌មានសំខាន់ៗសម្រាប់អ្នកចូលរួមថ្មី",
+ "nav-translation-program-description": "ការខិតខំប្រឹងប្រែងរួមគ្នាដើម្បីបកប្រែ ethereum.org ឱ្យបានគ្រប់ភាសាទាំងអស់",
+ "nav-tutorials-description": "បញ្ជីត្រៀមទុកនៃការបង្រៀនសហគមន៍",
+ "nav-use-cases-description": "ស្វែងយល់ពីគំនិតផ្សេងៗគ្នាសម្រាប់ការប្រើ Ethereum",
+ "nav-what-is-ether-description": "រូបិយប័ណ្ណរបស់កម្មវិធី Ethereum",
+ "nav-what-is-ethereum-description": "ស្វែងយល់ពីអ្វីដែលធ្វើឱ្យ Ethereum មានលក្ខណៈពិសេស",
+ "nav-what-is-web3-label": "តើ Web3 ជាអ្វី?",
+ "nav-what-is-web3-description": "ជម្រើសជំនួសចំពោះភាពផ្តាច់មុខបែបមជ្ឈការដែលកំណត់ច្បាប់",
+ "nav-whitepaper-description": "ក្រដាសស Ethereum ដើមដែលសរសេរដោយ Vitalik Buterin នៅឆ្នាំ 2014",
+ "nav-zkp-description": "របៀបបញ្ជាក់សុពលភាពនៃសេចក្តីថ្លែងការណ៍ដោយមិនបង្ហាញសេចក្តីថ្លែងការណ៍ខ្លួនឯង",
+ "nft-page": "NFTs - ថូខិនដែលមិនអាចផ្លាស់ប្តូរបាន",
"nfts": "NFTs",
"no": "ទេ",
"on-this-page": "នៅលើទំព័រនេះ",
@@ -140,6 +244,7 @@
"page-developers-aria-label": "ម៉ឺនុយអ្នកអភិវឌ្ឍន៍",
"page-index-meta-title": "ទំព័រដើម",
"page-last-updated": "ទំព័របានធ្វើបច្ចុប្បន្នភាពចុងក្រោយ",
+ "participate-menu": "ម៉ឺនុយចូលរួម",
"pbs": "ការបែងចែករវាង អ្នកស្នើសុំ - អ្នកបង្កើត",
"pools": "ការភ្នាល់រួមបញ្ចូលគ្នា",
"privacy-policy": "គោលការណ៍ឯកជនភាព",
@@ -150,9 +255,11 @@
"refresh": "សូមផ្ទុកទំព័រឡើងវិញ។",
"return-home": "ត្រលប់ទៅទំព័រដើម",
"roadmap": "ផែនទីបង្ហាញផ្លូវ Ethereum",
+ "research": "ស្រាវជ្រាវ",
+ "research-menu": "ម៉ឺនុយស្រាវជ្រាវ",
"resources": "ធនធានបកប្រែ",
- "regenerative-finance": "ហិរញ្ញវត្ថុបង្កើតឡើងវិញ (ReFi)",
- "run-a-node": "ដំណើរការ node",
+ "regenerative-finance": "ReFi - ហិរញ្ញវត្ថុបង្កើតឡើងវិញ",
+ "run-a-node": "ដំណើរការnode",
"rollup-component-website": "វែបសាយ",
"rollup-component-developer-docs": "ឯកសារអ្នកអភិវឌ្ឍន៍",
"rollup-component-technology-and-risk-summary": "សង្ខេបបច្ចេកវិជ្ជា និងហានិភ័យ",
@@ -164,6 +271,7 @@
"search-box-blank-state-text": "ស្វែងរកដោយប្រុងប្រយ័ត្ន!",
"search-eth-address": "វាមើលទៅដូចជាអាសយដ្ឋាន Ethereum ។ យើងមិនផ្តល់ទិន្នន័យជាក់លាក់ចំពោះអាសយដ្ឋានទេ។ ព្យាយាមស្វែងរកវានៅលើកម្មវិធីរុករកប្លុកដូចជា",
"search-no-results": "គ្មានលទ្ធផលសម្រាប់ការស្វែងរករបស់អ្នកទេ។",
+ "security": "សន្តិសុខ",
"single-slot-finality": "ការបញ្ចប់តែមួយស្លត",
"statelessness": "ភាពមិនរក្សាទិន្នន័យ",
"see-contributors": "មើលអ្នករួមចំណែក",
@@ -172,15 +280,14 @@
"show-all": "បង្ហាញទាំងអស់",
"show-less": "បង្ហាញតិច",
"site-description": "Ethereum គឺជាវេទិកាវិមជ្ឈការសកល សម្រាប់រូបិយប័ណ្ណនិងជាកម្មវិធីបែបថ្មី។ នៅលើ Ethereum អ្នកអាចសរសេរកូដត្រួតពិនិត្យលុយ និងបង្កើតកម្មវិធីដែលអាចចូលប្រើប្រាស់បានគ្រប់ទីកន្លែងក្នុងពិភពលោក។",
- "site-title": "ethereum.org",
"skip-to-main-content": "រំលងទៅមាតិកាចម្បង",
"smart-contracts": "កិច្ចសន្យាឆ្លាតវៃ",
"stablecoins": "Stablecoins",
"stake-eth": "តម្កល់ ETH",
"staking": "ការភ្នាល់",
"start-here": "ចាប់ផ្តើមនៅទីនេះ",
- "style-guide": "Style guide",
"solo": "ការភ្នាល់ទោល",
+ "support": "គាំទ្រ",
"terms-of-use": "ល័ក្ខខ័ណ្ឌនៃការប្រើប្រាស់",
"translation-banner-body-new": "អ្នកកំពុងមើលទំព័រនេះជាភាសាអង់គ្លេស ដោយសារយើងមិនទាន់បានបកប្រែវានៅឡើយ។ ជួយយើងបកប្រែខ្លឹមសារនេះ។",
"translation-banner-body-update": "មានកំណែថ្មីនៃទំព័រនេះ ប៉ុន្តែវាជាភាសាអង់គ្លេសឥឡូវនេះ។ ជួយយើងបកប្រែកំណែចុងក្រោយបំផុត។",
@@ -191,12 +298,14 @@
"translation-banner-no-bugs-title": "គ្មានកំហុសនៅទីនេះទេ!",
"translation-banner-no-bugs-content": "ទំព័រនេះមិនត្រូវបានបកប្រែទេ។ យើងបានដាក់ទំព័រនេះជាភាសាអង់គ្លេសដោយចេតនានៅពេលនេះ។",
"translation-banner-no-bugs-dont-show-again": "កុំបង្ហាញម្តងទៀត",
+ "translation-program": "កម្មវិធីបកប្រែ",
"try-using-search": "សាកល្បងប្រើការស្វែងរកដើម្បីស្វែងរកអ្វីដែលអ្នកកំពុងស្វែងរក ឬ",
"tutorials": "ការបង្រៀន",
"up": "ឡើងលើ",
+ "use": "ប្រើ",
"use-ethereum": "ប្រើ Ethereum",
"use-ethereum-menu": "ប្រើម៉ឺនុយ Ethereum",
- "user-experience": "User experience",
+ "use-menu": "ម៉ឺនុយប្រើប្រាស់",
"verkle-trees": "Verkle trees",
"wallets": "កាបូប",
"we-couldnt-find-that-page": "យើងរកមិនឃើញទំព័រនោះទេ",
diff --git a/src/intl/km/page-languages.json b/src/intl/km/page-languages.json
index 7387e58d46e..af8cf05128f 100644
--- a/src/intl/km/page-languages.json
+++ b/src/intl/km/page-languages.json
@@ -17,10 +17,13 @@
"page-languages-translated": "បានបកប្រែ",
"page-languages-words": "ពាក្យពេចន៍",
"page-languages-recruit-community": "ជួយយើងបកប្រែ ethereum.org។",
+ "langauge-am": "អំហារិក",
"language-ar": "អារ៉ាប់",
"language-az": "អាស៊ែបៃហ្សង់",
+ "langauge-be": "បេឡារុស្ស",
"language-bg": "ប៊ុលហ្គារី",
"language-bn": "បង់ក្លាដែស",
+ "language-bs": "បូស្នី",
"language-ca": "កាតាឡាន",
"language-cs": "ឆេកូ",
"language-da": "ដាណឺម៉ាក",
@@ -37,6 +40,7 @@
"language-hi": "ហិណ្ឌូ",
"language-hr": "ក្រូអាត",
"language-hu": "ហុងគ្រី",
+ "language-hy-am": "អារមេនី",
"language-id": "ឥណ្ឌូនេស៊ី",
"language-ig": "អ៊ីហ្គបូ",
"language-it": "អ៊ីតាលី",
@@ -44,12 +48,14 @@
"language-ka": "ហ្ស៊កហ្ស៊ី",
"language-kk": "កាហ្សាក់",
"language-km": "ខ្មែរ",
+ "language-kn": "កាណាដា",
"language-ko": "កូរ៉េ",
"language-lt": "លីទុយអានី",
"language-ml": "ម៉ាឡាយ៉ាឡាម",
"language-mr": "ម៉ារ៉ាធី",
"language-ms": "ម៉ាឡេ",
"language-nb": "ន័រវែស",
+ "language-ne-np": "នេប៉ាល់",
"language-nl": "ហូឡង់",
"language-pcm": "នីហ្សេរីយ៉ា",
"language-fil": "ហ្វីលីពីន",
@@ -65,6 +71,7 @@
"language-sw": "ស្វាហ៊ីលី",
"language-ta": "តាមីល",
"language-th": "ថៃ",
+ "language-tk": "ទួកមែន",
"language-tr": "ទួរគី",
"language-uk": "អ៊ុយក្រែន",
"language-ur": "អ៊ូឌូ",
diff --git a/src/intl/km/page-wallets-find-wallet.json b/src/intl/km/page-wallets-find-wallet.json
index 981d9f4de0d..a7b1c2e1501 100644
--- a/src/intl/km/page-wallets-find-wallet.json
+++ b/src/intl/km/page-wallets-find-wallet.json
@@ -7,7 +7,6 @@
"page-find-wallet-meta-title": "ស្វែងរកកាបូប Ethereum",
"page-find-wallet-title": "ស្វែងរកកាបូប",
"page-find-wallet-try-removing": "សាកល្បងលុបមុខងារមួយ ឬពីរចេញ",
- "page-find-wallet-choose-to-compare": "ជ្រើសរើស ដើម្បីប្រៀបធៀប",
"page-stake-eth": "តម្កល់ ETH",
"page-find-wallet-open-source": "Open source",
"page-find-wallet-open-source-desc": "កម្មវិធីប្រភពបើកចំហ អនុញ្ញាតឲ្យនរណាម្នាក់ធ្វើសវនកម្មលើភាពត្រឹមត្រូវ និងសុវត្ថិភាពនៃកម្មវិធី",
@@ -16,8 +15,6 @@
"page-find-wallet-non-custodial-desc": "កាបូបដែលមិនគ្រប់គ្រង Private Key របស់អ្នក។",
"page-find-wallet-hardware-wallet-support": "អាចប្រើជាមួយ Hardware wallet",
"page-find-wallet-hardware-wallet-support-desc": "កាបូបដែលអាចភ្ជាប់ទៅ Hardware wallet សម្រាប់ពង្រឹងសុវត្ថិភាព",
- "page-find-wallet-walletconnect": "WalletConnect",
- "page-find-wallet-walletconnect-desc": "កាបូបដែលអាចភ្ជាប់ទៅកម្មវិធីវិមជ្ឈការ (DApps) តាមរយៈ WalletConnect",
"page-find-wallet-rpc-importing": "ការបញ្ជូល RPC",
"page-find-wallet-rpc-importing-desc": "កាបូបដែលអាចភ្ជាប់ទៅកាន់ node ឬបណ្តាញផ្សេងៗ តាមរយៈការបញ្ជូល RPC endpoints",
"page-find-wallet-nft-support": "អាចប្រើជាមួយ NFT",
@@ -36,8 +33,6 @@
"page-find-wallet-ens-support-desc": "កាបូបដែលអាចប្រើ Ethereum Name Service (ENS)",
"page-find-wallet-token-importing": "ការបញ្ជូល Token",
"page-find-wallet-token-importing-desc": "បញ្ជូលកាក់ ERC-20 ទៅប្រើនៅក្នុងកាបូប",
- "page-find-wallet-fee-optimization": "ការបង្កើនប្រសិទ្ធភាពថ្លៃសេវា",
- "page-find-wallet-fee-optimization-desc": "អាចប្រើប្រតិបត្តិការប្រភេទទី 2 សម្រាប់បង្កើនប្រសិទ្ធភាពថ្លៃសេវា Gas និងការសងថ្លៃសេវាវិញសម្រាប់ Gas ដែលមិនប្រើ",
"page-find-wallet-buy-crypto": "ទិញគ្រីបតូ",
"page-find-wallet-buy-crypto-desc": "ទិញគ្រីបតូ ជាមួយ fiat ដោយផ្ទាល់នៅក្នុងកាបូប \n *ចំណាំ៖ ការទិញគ្រីបតូអាចបានតាមតំបន់",
"page-find-wallet-sell-for-fiat": "លក់យកប្រាក់ fiat",
@@ -46,7 +41,6 @@
"page-find-wallet-multisig-desc": "កាបូបដែលត្រូវការហត្ថលេខាច្រើន ដើម្បីអនុញ្ញាតប្រតិបត្តិការ",
"page-find-wallet-social-recovery": "Social recovery",
"page-find-wallet-social-recovery-desc": "កាបូបដែលអនុញ្ញាតឲ្យអាណាព្យាបាលផ្លាស់ប្តូរ Signing key សម្រាប់កាបូបឆ្លាតវៃ",
- "page-find-wallet-token-support": "អាចប្រើជាមួយ Token",
"page-find-wallet-features": "Features",
"page-find-wallet-security": "សន្តិសុខ",
"page-find-wallet-smart-contract": "Smart contract",
@@ -63,7 +57,6 @@
"page-find-wallet-chromium": "Chromium",
"page-find-wallet-firefox": "Firefox",
"page-find-wallet-hardware": "Hardware",
- "page-find-wallet-hardware-desc": "កាបូប Hardware",
"page-find-wallet-new-to-crypto-title": "ថ្មីចំពោះគ្រីបតូ",
"page-find-wallet-new-to-crypto-desc": "លើកដំបូងដែលស្វែងរកកាបូបរបស់អ្នក។",
"page-find-wallet-nfts-title": "NFTs",
@@ -74,21 +67,13 @@
"page-find-wallet-finance-desc": "អ្នកដែលប្រើ DeFi ហើយចង់បានកាបូបដែលអនុញ្ញាតឲ្យអ្នកភ្ជាប់ទៅកម្មវិធី DeFi",
"page-find-wallet-developer-title": "អ្នកអភិវឌ្ឍន៍",
"page-find-wallet-developer-desc": "អ្នកអភិវឌ្ឍន៍ ហើយត្រូវការកាបូបដើម្បីជួយអភិវឌ្ឍ និងសាកល្បងកម្មវិធីវិមជ្ឈការ dapps",
- "page-find-wallet-persona-desc": "ជ្រើសរើសប្រភេទនៃការប្រើប្រាស់ដែលត្រូវនឹងអ្នក ហើយតម្រងកាបូបទាំងនោះ",
"page-find-wallet-filters": "តម្រង",
"page-find-wallet-active": "ដំណើរការ",
- "page-find-wallet-profile-filters": "តម្រងទម្រង់",
- "page-find-wallet-feature-filters": "តម្រងលក្ខណៈពិសេស",
"page-find-wallet-footnote-1": "កាបូបដែលបានរាយក្នុងទំព័រនេះមិនមែនជាការយល់ព្រមជាផ្លូវការទេ ហើយគ្រាន់តែផ្តល់ជូនជាព័ត៌មានតែប៉ុណ្ណោះ។",
"page-find-wallet-footnote-2": "ការពិពណ៌នាទាំងនេះត្រូវបានផ្តល់ជូនដោយគម្រោងកាបូបខ្លួនឯង។",
"page-find-wallet-footnote-3": "យើងបន្ថែមផលិតផលទៅទំព័រនេះដោយផ្អែកលើលក្ខណៈវិនិច្ឆ័យនៅក្នុង គោលការណ៍ចុះបញ្ជីរបស់យើង។ ប្រសិនបើអ្នកចង់ឱ្យយើងបន្ថែមកាបូបមួយ សូមលើកបញ្ហាមួយនៅក្នុង GitHub.",
"page-find-wallet-mobile": "ទូរស័ព្ទដៃ",
- "page-find-wallet-mobile-desc": "កាបូបជាមួយកម្មវិធីទូរសព្ទ",
"page-find-wallet-desktop": "កំព្យូទ័រ",
- "page-find-wallet-desktop-desc": "កាបូបជាមួយកម្មវិធីកុំព្យូទ័រ",
"page-find-wallet-browser": "កម្មវិធីរុករក",
- "page-find-wallet-browser-desc": "កាបូបដែលបន្ថែមលើកម្មវិធីរុករក",
- "page-find-wallet-device": "ឧបករណ៍",
- "page-find-choose-to-compare": "ជ្រើសរើស ដើម្បីប្រៀបធៀប",
- "page-find-wallet-choose-features": "ជ្រេីសរើសលក្ខណៈពិសេស"
+ "page-find-wallet-device": "ឧបករណ៍"
}
diff --git a/src/intl/kn/common.json b/src/intl/kn/common.json
index a0c30074f6e..195667f9ae3 100644
--- a/src/intl/kn/common.json
+++ b/src/intl/kn/common.json
@@ -1,17 +1,29 @@
{
- "account-abstraction": "ಅಕೌಂಟ್-ಅಬ್ಸ್ಟ್ರಾಕ್ಷನ್",
"about-ethereum-org": "Ethereum.org ಬಗ್ಗೆ",
"about-us": "ನಮ್ಮ ಬಗ್ಗೆ",
+ "adding-desci-projects": "Desci ಪ್ರಾಜೆಕ್ಟ್ಗಳನ್ನು ಸೇರಿಸುವುದು",
+ "adding-developer-tools": "ಡೆವಲಪರ್ ಟೂಲ್ಸ್ ಸೇರಿಸುವುದು",
+ "adding-exchanges": "ಎಕ್ಸ್ಚೇಂಜ್ಗಳನ್ನು ಸೇರಿಸುವುದು",
+ "adding-glossary-terms": "ಗ್ಲೋಸರಿ ಪದಗಳನ್ನು ಸೇರಿಸುವುದು",
+ "adding-staking-products": "ಸ್ಟ್ಯಾಕಿಂಗ್ ಉತ್ಪನ್ನಗಳನ್ನು ಸೇರಿಸುವುದು",
+ "adding-wallets": "ವ್ಯಾಲೆಟ್ಗಳನ್ನು ಸೇರಿಸುವುದು",
+ "account-abstraction": "ಅಕೌಂಟ್-ಅಬ್ಸ್ಟ್ರಾಕ್ಷನ್",
+ "acknowledgements": "ಸ್ವೀಕೃತಿಗಳು",
"aria-toggle-search-button": "ಹುಡುಕಾಟ ಬಟನ್ ಅನ್ನು ಟಾಗಲ್ ಮಾಡಿ",
"aria-toggle-menu-button": "ಮೆನು ಬಟನ್ ಅನ್ನು ಟಾಗಲ್ ಮಾಡಿ",
"beacon-chain": "ಬೀಕನ್ ಚೈನ್",
"bridges": "ಬ್ಲಾಕ್ಚೈನ್ ಸೇತುವೇಗಳು",
+ "bug-bounty": "ಬಗ್ ಬೌಂಟಿ",
+ "build": "ನಿರ್ಮಾಣ",
+ "build-menu": "ನಿರ್ಮಾಣ ಸೂಚಿ",
"clear": "ಅಳಿಸು",
"close": "ಮುಚ್ಚು",
"community": "ಸಮುದಾಯ",
"community-hub": "ಸಮುದಾಯದ ಮೆನು",
"community-menu": "ಸಮುದಾಯದ ಮೆನು",
"contact": "ಸಂಪರ್ಕ",
+ "content-buckets": "ವಿಷಯ ಬಕೆಟ್ಗಳು",
+ "content-resources": "ವಿಷಯ ಸಂಪನ್ಮೂಲಗಳು",
"content-standardization": "ವಿಷಯ ಮಾನಕೀಕರಣ",
"contributing": "ಕೊಡುಗೆ ನೀಡುತ್ತಿದೆ",
"contributors": "ಕೊಡುಗೆದಾರರು",
@@ -20,14 +32,17 @@
"copied": "ನಕಲು ಮಾಡಲಾಗಿದೆ",
"copy": "ನಕಲು",
"danksharding": "ಡ್ಯಾಂಕ್ಶಾರ್ಡಿಂಗ್",
- "dao-page": "ವಿಕೇಂದ್ರೀಕರಿತ ಸ್ವಯಂಚಾಲಿತ ಸಂಸ್ಥೆಗಳು (ಡಿಎಒಗಳು)",
- "dark-mode": "ಕತ್ತಲು / ಅಂಧಕಾರದ",
+ "dao-page": "ಡಿಎಒಗಳು - ವಿಕೇಂದ್ರೀಕರಿತ ಸ್ವಯಂಚಾಲಿತ ಸಂಸ್ಥೆಗಳು",
+ "dark-mode": "ಗಾಢ",
"data-provided-by": "ಡೇಟಾ ಮೂಲ:",
- "decentralized-applications-dapps": "ವಿಕೇಂದ್ರೀಕೃತ ಅಪ್ಲಿಕೇಶನ್ಗಳು (dapps)",
+ "decentralized-applications-dapps": "Dapps - ವಿಕೇಂದ್ರೀಕೃತ ಅಪ್ಲಿಕೇಶನ್ಗಳು",
"decentralized-identity": "ವಿಕೇಂದ್ರೀಕರಿತ ಗುರುತು",
"decentralized-social-networks": "ವಿಕೇಂದ್ರೀಕರಿತ ಸಾಮಾಜಿಕ ಜಾಲಗಳು",
- "decentralized-science": "ವಿಕೇಂದ್ರೀಕರಿತ ವಿಜ್ಞಾನ (ಡಿಸೈ)",
- "defi-page": "ವಿಕೇಂದ್ರೀಕರಿತ ಹಣಕಾಸು (ಡಿಫೈ)",
+ "decentralized-science": "ಡಿಸೈ - ವಿಕೇಂದ್ರೀಕರಿತ ವಿಜ್ಞಾನ",
+ "description": "ಸಂಚರಣೆಯ ವಿವರ",
+ "defi-page": "DeFi - ವಿಕೇಂದ್ರೀಕರಿತ ಹಣಕಾಸು",
+ "design": "ವಿನ್ಯಾಸ",
+ "design-principles": "ವಿನ್ಯಾಸ ತತ್ವಗಳು",
"devcon": "ಡೆವ್ಕಾನ್",
"developers": "ಡೆವೆಲಪರ್",
"developers-home": "ಡೆವಲಪರ್ಗಳ ಮುಖಪುಟ",
@@ -47,23 +62,21 @@
"docsearch-no-results-missing": "ಈ ಪ್ರಶ್ನೆಗೆ ಫಲಿತಾಂಶಗಳು ಬರಬೇಕೆಂದು ನೀವು ನಂಬುತ್ತೀರಾ?",
"docsearch-no-results-missing-link": "ನಮಗೆ ತಿಳಿಸಿ.",
"docsearch-error-title": "ಫಲಿತಾಂಶಗಳನ್ನು ಪಡೆಯಲು ಸಾಧ್ಯವಿಲ್ಲ",
- "docsearch-error-help": "ನೀವು ನಿಮ್ಮ ನೆಟ್ವರ್ಕ್ ಸಂಪರ್ಕವನ್ನು ಪರಿಶೀಲಿಸಬಯಸುತ್ತೀರಿ.",
+ "docsearch-error-help": "ನೀವು ನಿಮ್ಮ ನೆಟ್ವರ್ಕ್ ಸಂಪರ್ಕವನ್ನು ಪರಿಶೀಲಿಸಬಯಸುತ್ತೀರಿ.",
"documentation": "ದಾಖಲೆ",
"down": "ಕೆಳಗೆ",
"ecosystem": "ಪರಿಸರ ವ್ಯವಸ್ಥೆ",
"edit-page": "ಪುಟ ಸಂಪಾದಿಸಿ",
- "ef-blog": "ಎಥೆರಿಯಂ ಫೌಂಡೇಶನ್ ಬ್ಲಾಗ್",
- "eips": "ಎಥೆರಿಯಂ ಸುಧಾರಣಾ ಪ್ರಸ್ತಾವನೆಗಳು",
+ "ef-blog": "ಇಥಿರಿಯಂ ಫೌಂಡೇಶನ್ ಬ್ಲಾಗ್",
+ "eips": "ಇಥಿರಿಯಂ ಸುಧಾರಣಾ ಪ್ರಸ್ತಾವನೆಗಳು",
"energy-consumption": "ಇಥಿರಿಯಮ್ ಶಕ್ತಿಯ ಬಳಕೆ",
"enterprise": "ಉದ್ಯಮ",
"enterprise-menu": "ಎಂಟರ್ಪ್ರೈಸ್ ಮೆನು",
"esp": "ಪರಿಸರ ವ್ಯವಸ್ಥೆ ಬೆಂಬಲ ಕಾರ್ಯಕ್ರಮ",
"eth-current-price": "ಪ್ರಸ್ತುತ ETH ಬೆಲೆ (USD)",
- "ethereum-basics": "Ethereum basics",
"ethereum-bug-bounty": "ಇಥಿರಿಯಮ್ ಬಗ್ ಬೌಂಟಿ ಪ್ರೋಗ್ರಾಂ",
"consensus-when-shipping": "ಇದು ಯಾವಾಗ ಶಿಪ್ಪಿಂಗ್?",
"ethereum-upgrades": "ಇಥಿರಿಯಮ್ ನವೀಕರಣಗಳು",
- "ethereum-brand-assets": "Ethereum brand assets",
"ethereum-online": "ಆನ್ ಲೈನ್ ಸಮುದಾಯಗಳು",
"ethereum-events": "ಇಥಿರಿಯಮ್ ಘಟನೆಗಳು",
"ethereum-foundation": "ಇಥಿರಿಯಮ್ ಫೌಂಡೇಶನ್",
@@ -75,7 +88,7 @@
"ethereum-protocol": "ಇಥಿರಿಯಮ್ ಪ್ರೊಟೋಕಾಲ್",
"ethereum-security": "ಇಥಿರಿಯಮ್ ಭದ್ರತೆ ಮತ್ತು ಹಗರಣ ತಡೆಗಟ್ಟುವಿಕೆ",
"ethereum-support": "ಇಥಿರಿಯಮ್ ಬೆಂಬಲ",
- "ethereum-wallets": "ಇಥಿರಿಯಮ್ ವ್ಯಾಲೆಟ್ ಗಳು",
+ "ethereum-wallets": "ಇಥಿರಿಯಮ್ ವ್ಯಾಲೆಟ್ಗಳು",
"ethereum-whitepaper": "ಇಥಿರಿಯಮ್ ಶ್ವೇತಪತ್ರ",
"feedback-widget-prompt": "ಈ ಪುಟವು ಸಹಾಯಕವಾಗಿದೆಯೇ?",
"feedback-card-prompt-page": "ಈ ಪುಟವು ಸಹಾಯಕವಾಗಿದೆಯೇ?",
@@ -94,11 +107,10 @@
"grants": "ಅನುದಾನಗಳು",
"grant-programs": "ಪರಿಸರ ವ್ಯವಸ್ಥೆ ಅನುದಾನ ಕಾರ್ಯಕ್ರಮಗಳು",
"guides": "ಮಾರ್ಗದರ್ಶಿಗಳು",
- "guides-hub": "ಮಾರ್ಗದರ್ಶಿ ಕೇಂದ್ರ",
+ "guides-hub": "ಗೈಡ್ಸ್ ಹೇಗೆ",
"history-of-ethereum": "ಇಥಿರಿಯಮ್ ನ ಇತಿಹಾಸ",
"home": "ಹೋಮ್",
"how-ethereum-works": "ಇಥಿರಿಯಮ್ ಹೇಗೆ ಕಾರ್ಯನಿರ್ವಹಿಸುತ್ತದೆ",
- "how-to-register-an-ethereum-account": "ಇಥಿರಿಯಮ್ ಖಾತೆಯನ್ನು \"ನೋಂದಾಯಿಸುವುದು\" ಹೇಗೆ",
"how-to-revoke-token-access": "ನಿಮ್ಮ ಕ್ರಿಪ್ಟೋ ಫಂಡ್ಗಳಿಗೆ ಸ್ಮಾರ್ಟ್ ಕಾಂಟ್ರಾಕ್ಟ್ ಪ್ರವೇಶವನ್ನು ಹಿಂತೆಗೆದುಕೊಳ್ಳುವುದು ಹೇಗೆ",
"how-to-swap-tokens": "ಟೋಕನ್ ಗಳನ್ನು ವಿನಿಮಯ ಮಾಡಿಕೊಳ್ಳುವುದು ಹೇಗೆ",
"how-to-use-a-bridge": "ಟೋಕನ್ ಗಳನ್ನು ಲೇಯರ್ 2 ಗೆ ಹೇಗೆ ಸೇತುವೆ ಮಾಡುವುದು",
@@ -128,11 +140,106 @@
"loading-error-try-again-later": "ಡೇಟಾ ಲೋಡ್ ಮಾಡಲು ಅಸಮರ್ಥವಾಗಿದೆ. ನಂತರ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ.",
"logo": "ಲೋಗೋ",
"mainnet-ethereum": "ಮೈನೆಟ್ ಇಥಿರಿಯಮ್",
+ "merge": "ವಿಲೀನಗೊಳಿಸಿ",
"more": "ಇನ್ನಷ್ಟು",
- "nav-developers": "ಡೆವೆಲಪರ್",
+ "nav-about-description": "ಎಥೆರಿಯಮ್ ಸಮುದಾಯಕ್ಕೆ ಒಂದು ಸಾರ್ವಜನಿಕ, ಮುಕ್ತ ಸಂಪನ್ಮೂಲ ಯೋಜನೆಯಾಗಿದೆ",
+ "nav-advanced-description": "ಹೆಚ್ಚು ಸಂಕೀರ್ಣವಾದ ವಿಷಯಗಳನ್ನು ಕಲಿಯಿರಿ",
+ "nav-advanced-label": "ಮುಂದುವರೆದ",
+ "nav-basics-description": "ಎಥೆರಿಯಮ್ಮಿನ ಮೂಲಭೂತ ಅಂಶಗಳನ್ನು ಅರ್ಥಮಾಡಿಕೊಳ್ಳಿ",
+ "nav-basics-label": "ಮೂಲಭೂತ ಅಂಶಗಳು",
+ "nav-bridges-description": "ವೆಬ್3ಯು ಪ್ರಾಥಮಿಕ ಎಲ್1 ಬ್ಲಾಕ್ ಚೈನ್ಗಳು ಮತ್ತು ಎಲ್2 ಸ್ಕೇಲಿಂಗ್ ಪರಿಹಾರಗಳ ವ್ಯವಹಾರ ಪರಿಸರ ವ್ಯವಸ್ಥೆಯಾಗಿ ವಿಕಸನಗೊಂಡಿದೆ",
+ "nav-builders-home-description": "ಎಥೆರಿಯಮ್ಗಾಗಿ ನಿರ್ಮಿತರ ಕೈಪಿಡಿ - ನಿರ್ಮಿತರಿಂದ, ನಿರ್ಮಿತರಿಗಾಗಿ",
+ "nav-builders-home-label": "ನಿರ್ಮಿತರ ಮನೆ",
+ "nav-contribute-description": "ನೀವು ಸಹಾಯ ಮಾಡಲು ಬಯಸಿದರೆ, ಇದು ನಿಮಗೆ ಮಾರ್ಗದರ್ಶನ ನೀಡುತ್ತದೆ",
+ "nav-contribute-label": "Ethereum.org ಗೆ ಕೊಡುಗೆ ನೀಡು",
+ "nav-dao-description": "ಕೇಂದ್ರೀಕೃತ ಅಧಿಕಾರವಿಲ್ಲದ ಸದಸ್ಯ-ಮಾಲೀಕತ್ವದ ಸಮುದಾಯಗಳು",
+ "nav-dapps-description": "ಎಥೆರಿಯಮ್ ಬಳಸಿ ಅಪ್ಲಿಕೇಶನ್ಗಳ ಸಮೃದ್ಧ ವ್ಯವಹಾರ ಪರಿಸರ ವ್ಯವಸ್ಥೆಯನ್ನು ಅನ್ವೇಷಿಸಿ",
+ "nav-defi-description": "ಸಾಂಪ್ರದಾಯಿಕ ಹಣಕಾಸು ಮಾರುಕಟ್ಟೆಗೆ ಜಾಗತಿಕ, ಮುಕ್ತ ಪರ್ಯಾಯ",
+ "nav-desci-description": "ಪ್ರಸ್ತುತ ವೈಜ್ಞಾನಿಕ ವ್ಯವಸ್ಥೆಗೆ ಜಾಗತಿಕ, ಮುಕ್ತ ಪರ್ಯಾಯ",
+ "nav-desoc-description": "ಸಾಮಾಜಿಕ ಸಂವಹನ ಮತ್ತು ವಿಷಯ ಸೃಷ್ಟಿಗಾಗಿ ಬ್ಲಾಕ್ಚೈನ್ ಆಧಾರಿತ ವೇದಿಕೆಗಳು",
"nav-developers-docs": "ಡೆವಲಪರ್ಗಳ ಮುಖಪುಟ",
+ "nav-developers": "ಡೆವೆಲಪರ್",
+ "nav-did-description": "ನಿಮ್ಮ ಅನನ್ಯ ವಿಕೇಂದ್ರೀಕೃತ ಗುರುತಿಸುವಿಕೆಗಳನ್ನು ವಿತರಿಸಿ ಮತ್ತು ಹೊಂದಿರಿ",
+ "nav-docs-description": "ಎಥೆರಿಯಮ್ನೊಂದಿಗೆ ಅರ್ಥಮಾಡಿಕೊಳ್ಳಲು ಮತ್ತು ನಿರ್ಮಿಸಲು ನಿಮಗೆ ಸಹಾಯಕ್ಕೆ ಬೇಕಾಗುವ ದಾಖಲೆಗಳು",
+ "nav-docs-design-description": "ಅನನ್ಯ ವೆಬ್3 ಸವಾಲಾತ್ಮಕ ವಿನ್ಯಾಸಗಳು, ಉತ್ತಮ ಅಭ್ಯಾಸಗಳು ಮತ್ತು ಬಳಕೆದಾರರ ಸಂಶೋಧನಾ ಒಳನೋಟಗಳ ವಿವರಣೆ",
+ "nav-docs-design-label": "UX/UI ವಿನ್ಯಾಸದ ಮೂಲಭೂತ ಅಂಶಗಳು",
+ "nav-docs-foundation-description": "ಎಥೆರಿಯಂನಲ್ಲಿ ಅಭಿವೃದ್ಧಿಪಡಿಸಲು ಬೇಕಾದ ಪ್ರಮುಖ ಮೂಲಭೂತ ಅಂಶಗಳು",
+ "nav-docs-overview-description": "ಡೆವಲಪರ್ ದಾಖಲೆಗಳಿಗಾಗಿ ನಿಮ್ಮ ಮನೆ",
+ "nav-docs-stack-description": "ಎಥೆರಿಯಮ್ ಸ್ಟಾಕಿನ ಎಲ್ಲಾ ವಿವರಗಳನ್ನು ಅರ್ಥಮಾಡಿಕೊಳ್ಳಿ",
+ "nav-eip-description": "ಹೊಸ ವೈಶಿಷ್ಟ್ಯಗಳು ಅಥವಾ ಪ್ರಕ್ರಿಯೆಗಳನ್ನು ನಿರ್ದಿಷ್ಟಪಡಿಸುವ ಮಾನದಂಡಗಳು",
+ "nav-eip-label": "ಇಸುಪ್ರ ಗಳು - ಇಥಿರಿಯಂ ಸುಧಾರಣಾ ಪ್ರಸ್ತಾವನೆಗಳು",
+ "nav-emerging-description": "ಎಥೆರಿಯಮ್ನ ಇತರ ಹೊಸ ಬಳಕೆಯ ಪ್ರಕರಣಗಳನ್ನು ತಿಳಿದುಕೊಳ್ಳಿ",
+ "nav-enterprise-description": "ಎಥೆರಿಯಮ್ಗಾಗಿ ವ್ಯವಹಾರ ಅಪ್ಲಿಕೇಶನ್ಗಳು",
+ "nav-ethereum-org-description": "ಈ ಜಾಲತಾಣವು ಸಮುದಾಯ ಪ್ರೇರಿತವಾಗಿದೆ - ನಮ್ಮೊಂದಿಗೆ ಸೇರಿ ಹಾಗೂ ಕೊಡುಗೆ ನೀಡಿ",
+ "nav-ethereum-wallets-description": "ನಿಮ್ಮ ಎಥೆರಿಯಮ್ ಖಾತೆಯೊಂದಿಗೆ ಸಂವಹನ ನಡೆಸಲು ಒಂದು ಅಪ್ಲಿಕೇಶನ್",
+ "nav-events-description": "ವಿಕೇಂದ್ರೀಕರಣ ಮತ್ತು ಯಾರಿಗಾದರೂ ಭಾಗವಹಿಸುವ ಸ್ವಾತಂತ್ರ್ಯ",
+ "nav-events-irl-description": "ಪ್ರತಿ ತಿಂಗಳು ವೈಯಕ್ತಿಕವಾಗಿ ಮತ್ತು ಆನ್ಲೈನ್ನಲ್ಲಿ ಬಹಳ ಎಥೆರಿಯಮ್ ಕಾರ್ಯಕ್ರಮಗಳು ನಡೆಯುತ್ತವೆ",
+ "nav-events-label": "ಸಮುದಾಯಗಳು ಮತ್ತು ಕಾರ್ಯಕ್ರಮಗಳು",
+ "nav-events-online-description": "ಈ ಆನ್ಲೈನ್ ಸಮುದಾಯಗಳಲ್ಲಿ ಲಕ್ಷಾಂತರ ಎಥೆರಿಯಮ್ ಉತ್ಸಾಹಿಗಳ ತಂದೆ",
+ "nav-find-wallet-description": "ಕ್ರಿಪ್ಟೊವನ್ನು ಬಳಸಲು ವಾಲೆಟ್ಗಳು ನಿಮಗೆ ಅವಕಾಶ ನೀಡುತ್ತವೆ.",
+ "nav-find-wallet-label": "ನಿಮ್ಮ ವಾಲೆಟ್ಗಳನ್ನು ಆಯ್ಕೆ ಮಾಡಿ",
+ "nav-gas-fees-description": "ಎಥ್ ವಹಿವಾಟು ಶುಲ್ಕಗಳನ್ನು ಹೇಗೆ ಲೆಕ್ಕ ಹಾಕಲಾಗುತ್ತದೆ",
+ "nav-get-eth-description": "ಎಥೆರಿಯಮ್ ಅನ್ವಯಿಕೆಗಳನ್ನು ಬಳಸಲು ನಿಮಗೆ ಎಥೆರ್ (ಎಥ್) ನ ಅಗತ್ಯವಿದೆ",
+ "nav-get-started-description": "ಎಥೆರಿಯಮ್ ಅನ್ನು ಬಳಸಲು ನಿಮ್ಮ ಮೊದಲ ಹಂತಗಳು",
+ "nav-governance-description": "ಎಥೆರಿಯಮ್ ಶಿಷ್ಟಾಚಾರವನ್ನು ಮೇಲ್ದರ್ಜೆಗೇರಿಸುವಲ್ಲಿ ಒಳಗೊಂಡಿರುವ ಪ್ರಕ್ರಿಯೆ",
+ "nav-grants-description": "ಅನುದಾನ ಧನಸಹಾಯ ಕಾರ್ಯಕ್ರಮಗಳನ್ನು ಒದಗಿಸುವ ಯೋಜನೆಗಳ ಕುರಿತು ನಮ್ಮ ಸಮುದಾಯದಿಂದ ಸಂಗ್ರಹಿಸಲಾದ ಪಟ್ಟಿ",
+ "nav-guide-create-account-description": "ಯಾರಾದರೂ ಯಾವುದೇ ಸಮಯದಲ್ಲಿ, ವ್ಯಾಲೆಟ್ ಅಪ್ಲಿಕೇಶನ್ನೊಂದಿಗೆ ಉಚಿತವಾಗಿ ಎಥೆರಿಯಮ್ ಖಾತೆಯನ್ನು ರಚಿಸಬಹುದು",
+ "nav-guide-revoke-access-description": "ಎಥೆರಿಯಮ್ ವ್ಯವಹಾರ ಪರಿಸರ ವ್ಯವಸ್ಥೆಯಲ್ಲಿ ಸ್ಮಾರ್ಟ್ ಒಪ್ಪಂದಗಳು ಮತ್ತು ಅಪ್ಲಿಕೇಶನ್ಗಳೊಂದಿಗೆ ಸಂವಹನ ನಡೆಸುವಾಗ ಸುರಕ್ಷಿತವಾಗಿರಿ",
+ "nav-guide-revoke-access-label": "ಸ್ಮಾರ್ಟ್ ಕಾಂಟ್ರಾಕ್ಟ್ ಪ್ರವೇಶವನ್ನು ರದ್ದುಪಡಿಸುವುದು ಹೇಗೆ",
+ "nav-guide-use-wallet-description": "ವಾಲೆಟಿನ ಎಲ್ಲಾ ಮೂಲಭೂತ ಕಾರ್ಯಗಳನ್ನು ಹೇಗೆ ನಿರ್ವಹಿಸಬೇಕು ಎಂಬುದನ್ನು ತಿಳಿಯಿರಿ",
+ "nav-guide-use-wallet-label": "ವ್ಯಾಲೆಟ್ ಬಳಸುವುದು ಹೇಗೆ",
+ "nav-guides-description": "ನಿಮಗೆ ಪ್ರಾರಂಭಿಸಲು ಸಹಾಯ ಮಾಡಲು ಬೇಕಾದ ಪ್ರಾಯೋಗಿಕ ಹಂತ-ಹಂತದ ಮಾರ್ಗದರ್ಶಿಗಳು",
+ "nav-guides-label": "ಮಾರ್ಗದರ್ಶನ ಮಾಡುವುದು ಹೇಗೆ",
+ "nav-history-description": "ಎಲ್ಲಾ ಪ್ರಮುಖ ಫೋರ್ಕ್ಗಳ ಮತ್ತು ನವೀಕರಣಗಳ ಟೈಮ್ಲೈನ್",
+ "nav-history-label": "ಎಥೆರಿಯಮ್ನ ತಾಂತ್ರಿಕ ಇತಿಹಾಸ",
+ "nav-layer-2-description": "ಎಥೆರಿಯಂಗೆ ಅಗ್ಗದ ಮತ್ತು ವೇಗದ ವಹಿವಾಟುಗಳು",
+ "nav-learn-by-coding-description": "ಎಥೆರಿಯಮ್ನೊಂದಿಗೆ ಪ್ರಯೋಗ ಮಾಡಲು ನಿಮಗೆ ಸಹಾಯ ಮಾಡುವ ಉಪಕರಣಗಳು",
+ "nav-local-env-description": "ನಿಮ್ಮ ಎಥೆರಿಯಮ್ ಅಭಿವೃದ್ಧಿ ಸ್ಟ್ಯಾಕ್ ಅನ್ನು ಆಯ್ಕೆ ಮಾಡಿ ಮತ್ತು ಹೊಂದಿಸಿ",
+ "nav-mainnet-description": "ಎಂಟರ್ಪ್ರೈಸ್ ಬ್ಲಾಕ್ಚೈನ್ ಅಪ್ಲಿಕೇಶನ್ಗಳನ್ನು ಸಾರ್ವಜನಿಕ ಎಥೆರಿಯಮ್ ಮೇನ್ನೆಟ್ನಲ್ಲಿ ನಿರ್ಮಿಸಬಹುದು",
+ "nav-nft-description": "ಇಥಿರಿಯಮ್ ಆಧಾರಿತ ಆಸ್ತಿಯಾಗಿ ಅನನ್ಯವಾದ ಯಾವುದನ್ನಾದರೂ ಪ್ರತಿನಿಧಿಸುವ ಒಂದು ಮಾರ್ಗ",
+ "nav-open-research-description": "ಎಥೆರಿಯಮ್ನ ಪ್ರಾಥಮಿಕ ಸಾಮರ್ಥ್ಯಗಳಲ್ಲಿ ಒಂದು ಅದರ ಸಕ್ರಿಯ ಸಂಶೋಧನಾ ಸಮುದಾಯವಾಗಿದೆ",
+ "nav-open-research-label": "ಮುಕ್ತ ಸಂಶೋಧನೆ",
+ "nav-overview-description": "ಎಲ್ಲ ವಿಷಯಗಳು ಎಥೆರಿಯಮ್ ಶಿಕ್ಷಣ",
+ "nav-participate-overview-description": "ಹೇಗೆ ಭಾಗವಹಿಸಬೇಕು ಎಂಬುದರ ಕುರಿತು ಅವಲೋಕನ",
"nav-primary": "ಪ್ರಾಥಮಿಕ",
- "nft-page": "ಶಿಲೀಂಧ್ರವಲ್ಲದ ಟೋಕನ್ ಗಳು (NFTs)",
+ "nav-quizzes-description": "ನೀವು ಎಥೆರಿಯಮ್ ಮತ್ತು ಕ್ರಿಪ್ಟೋಕರೆನ್ಸಿಗಳನ್ನು ಎಷ್ಟು ಚೆನ್ನಾಗಿ ಅರ್ಥಮಾಡಿಕೊಂಡಿದ್ದೀರಿ ಎಂಬುದನ್ನು ಕಂಡುಕೊಳ್ಳಿ",
+ "nav-quizzes-label": "ನಿಮ್ಮ ಜ್ಞಾನವನ್ನು ಪರೀಕ್ಷಿಸಿ",
+ "nav-refi-description": "ಪರ್ಯಾಯ ಆರ್ಥಿಕ ವ್ಯವಸ್ಥೆಯು ಪುನರುತ್ಪಾದಕ ತತ್ವಗಳ ಮೇಲೆ ನಿರ್ಮಾಣವಾಗಿದೆ",
+ "nav-research-description": "ಎಥೆರಿಯಮ್ ಅನ್ನು ಸುಧಾರಿಸಲು ಬಳಸಲಾಗುವ ಪ್ರಕ್ರಿಯೆಗಳು",
+ "nav-research-label": "ಸಂಶೋಧನೆ ಮತ್ತು ಅಭಿವೃದ್ಧಿ",
+ "nav-roadmap-description": "ಎಥೆರಿಯಂಗೆ ಹೆಚ್ಚು ಸ್ಕೇಲೆಬಿಲಿಟಿ, ಭದ್ರತೆ ಮತ್ತು ಸುಸ್ಥಿರತೆಯ ಹಾದಿ",
+ "nav-roadmap-future-description": "ಎಥೆರಿಯಮ್ ಅನ್ನು ದೃಢವಾದ ಮತ್ತು ವಿಕೇಂದ್ರೀಕೃತ ಜಾಲವಾಗಿ ಒಗ್ಗೂಡಿಸುವುದು",
+ "nav-roadmap-future-label": "ಭವಿಷ್ಯ-ನಿರೋಧಕ",
+ "nav-roadmap-label": "ಮಾರ್ಗಸೂಚಿ",
+ "nav-roadmap-scaling-description": "ವಹಿವಾಟಿನ ವೆಚ್ಚ ಮತ್ತು ವೇಗವನ್ನು ಮತ್ತಷ್ಟು ಕಡಿಮೆ ಮಾಡಲು ಜಾಲಬಂಧ ನವೀಕರಣಗಳು",
+ "nav-roadmap-security-description": "ಭವಿಷ್ಯದಲ್ಲಿ ಎಲ್ಲಾ ರೀತಿಯ ದಾಳಿಗಳಿಗೆ ಎಥೆರಿಯಮ್ ಸ್ಥಿತಿಸ್ಥಾಪಕತ್ವವನ್ನು ಹೊಂದಿರುವುದನ್ನು ಖಚಿತಪಡಿಸಿಕೊಳ್ಳುವುದು",
+ "nav-roadmap-security-label": "ಭದ್ರತೆಯನ್ನು ಹೆಚ್ಚಿಸಲಾಗಿದೆ",
+ "nav-roadmap-ux-description": "ಎಥೆರಿಯಮ್ ಬಳಕೆಯನ್ನು ಸರಳೀಕರಿಸಬೇಕಾಗಿದೆ",
+ "nav-run-a-node-description": "ಜಾಲಬಂಧವನ್ನು ಭದ್ರಪಡಿಸಿಕೊಳ್ಳಲು ಸಹಾಯ ಮಾಡುವಾಗ ಸಂಪೂರ್ಣ ಸಾರ್ವಭೌಮತ್ವವನ್ನು ಹೊಂದಿರಿ",
+ "nav-security-description": "ಕ್ರಿಪ್ಟೋಕರೆನ್ಸಿಯನ್ನು ಬಳಸುವಾಗ ಉತ್ತಮ ಅಭ್ಯಾಸಗಳನ್ನು ಕಲಿಯಿರಿ",
+ "nav-smart-contracts-description": "ಎಥೆರಿಯಮ್ ಪರಿಸರ ವ್ಯವಸ್ಥೆಯ ಮೂಲಭೂತ ಬುಲ್ಡಿಂಗ್ ಬ್ಲಾಕ್ಗಳು",
+ "nav-stablecoins-description": "ಸ್ಥಿರ ನಾಣ್ಯಗಳು ಸ್ಥಿರ ಮೌಲ್ಯದಲ್ಲಿ ಉಳಿಯಲು ವಿನ್ಯಾಸಗೊಳಿಸಲಾದ ಎಥೆರಿಯಮ್ ಟೋಕನ್ಗಳಾಗಿವೆ",
+ "nav-stake-description": "ಎಥೆರಿಯಮ್ ಅನ್ನು ಭದ್ರಪಡಿಸಿಕೊಂಡಿದ್ದಕ್ಕಾಗಿ ಬಹುಮಾನಗಳನ್ನು ಗಳಿಸಿ",
+ "nav-stake-label": "ಸ್ಟೇಕ್",
+ "nav-staking-home-description": "ಸ್ಟೇಕಿಂಗ್ಗಾಗಿ ವಿವಿಧ ಆಯ್ಕೆಗಳ ಅವಲೋಕನ",
+ "nav-staking-home-label": "Staking ಮುಖಪುಟ",
+ "nav-staking-pool-description": "ಇತರರೊಂದಿಗೆ ಸೇರುವ ಮೂಲಕ ಯಾವುದೇ ಪ್ರಮಾಣದ ಇ. ಟಿ. ಎಚ್. ನೊಂದಿಗೆ ಪಾಲುದಾರಿಕೆ ಮಾಡಿಕೊಳ್ಳಿ ಮತ್ತು ಬಹುಮಾನಗಳನ್ನು ಗಳಿಸಿ",
+ "nav-staking-pool-label": "ಪೂಲ್ಡ್ Staking",
+ "nav-staking-saas-description": "ಮೂರನೇ ಪಕ್ಷದ ನೋಡ್ ಆಪರೇಟರ್ ಗಳು ನಿಮ್ಮ ವ್ಯಾಲಿಡೇಟರ್ ಕ್ಲೈಂಟ್ ನ ಕಾರ್ಯಾಚರಣೆಯನ್ನು ನಿರ್ವಹಿಸುತ್ತಾರೆ",
+ "nav-staking-saas-label": "ಸೇವೆಯೊಂದಿಗೆ ಸ್ಟಾಕಿಂಗ್",
+ "nav-staking-solo-description": "ನಿಮ್ಮ ಮನೆಯ ಹಾರ್ಡ್ವೇರ್ ಅನ್ನು ಚಲಾಯಿಸಿ ಮತ್ತು ವೈಯಕ್ತಿಕವಾಗಿ ಎಥೆರಿಯಂ ನೆಟ್ವರ್ಕ್ನ ಭದ್ರತೆ ಮತ್ತು decentralization ಗೆ ಸೇರಿಸಿ",
+ "nav-staking-solo-label": "ಏಕವ್ಯಕ್ತಿ Staking",
+ "nav-start-building-description": "ಹೊಸಬರಿಗೆ ಉಪಯುಕ್ತ ಮಾಹಿತಿ",
+ "nav-translation-program-description": "Ethereum.org ಅನ್ನು ಎಲ್ಲಾ ಭಾಷೆಗಳಿಗೆ ಭಾಷಾಂತರಿಸಲು ಸಹಯೋಗದ ಪ್ರಯತ್ನ",
+ "nav-tutorials-description": "ಸಮುದಾಯ ಬೋಧನೆಗಳ ಕ್ಯುರೇಟೆಡ್ ಪಟ್ಟಿ",
+ "nav-use-cases-description": "ಎಥೆರಿಯಮ್ ಬಳಕೆಗೆ ವಿವಿಧ ವಿಚಾರಗಳನ್ನು ಕಂಡುಕೊಳ್ಳಿ",
+ "nav-what-is-ether-description": "ಎಥೆರಿಯಮ್ ಅಪ್ಲಿಕೇಶನ್ಗಳ ಕರೆನ್ಸಿ",
+ "nav-what-is-ethereum-description": "ಎಥೆರಿಯಮ್ ಅನ್ನು ಯಾವುದು ವಿಶೇಷವಾಗಿಸುತ್ತದೆ ಎಂಬುದನ್ನು ಅರ್ಥಮಾಡಿಕೊಳ್ಳಿ",
+ "nav-what-is-web3-label": "Web3 ಎಂದರೇನು?",
+ "nav-what-is-web3-description": "ನಿಯಮಗಳನ್ನು ನಿರ್ದೇಶಿಸುವ ಕೇಂದ್ರೀಕೃತ ಏಕಸ್ವಾಮ್ಯಗಳಿಗೆ ಪರ್ಯಾಯ",
+ "nav-whitepaper-description": "2014ರಲ್ಲಿ ವಿಟಾಲಿಕ್ ಬ್ಯೂಟೆರಿನ್ ಬರೆದ ಮೂಲ ಎಥೆರಿಯಮ್ ಶ್ವೇತಪತ್ರ",
+ "nav-zkp-description": "ಹೇಳಿಕೆಯನ್ನು ಬಹಿರಂಗಪಡಿಸದೆ ಹೇಳಿಕೆಯ ಸಿಂಧುತ್ವವನ್ನು ಸಾಬೀತುಪಡಿಸುವ ಒಂದು ಮಾರ್ಗ",
+ "nft-page": "NFTs - ಶಿಲೀಂಧ್ರವಲ್ಲದ ಟೋಕನ್ ಗಳು",
"nfts": "NFTs",
"no": "ಇಲ್ಲ",
"on-this-page": "ಈ ಪುಟದಲ್ಲಿ",
@@ -140,6 +247,7 @@
"page-developers-aria-label": "ಅಭಿವರ್ಧಕರ ಮೆನು",
"page-index-meta-title": "ಹೋಮ್",
"page-last-updated": "ಪುಟವನ್ನು ಕೊನೆಯದಾಗಿ ನವೀಕರಿಸಲಾಗಿದೆ",
+ "participate-menu": "ಭಾಗವಹಿಸುವ ಮೆನು",
"pbs": "ಪ್ರಪೋಸರ್-ಬಿಲ್ಡರ್ ಪ್ರತ್ಯೇಕತೆ",
"pools": "ಪೂಲ್ಡ್ Staking",
"privacy-policy": "ಗೌಪ್ಯತೆ ನೀತಿ",
@@ -150,10 +258,10 @@
"refresh": "ದಯವಿಟ್ಟು ಪುಟವನ್ನು ತಾಜಾ ಮಾಡಿ.",
"return-home": "ಮುಖಪುಟ ಹಿಂತಿರುಗಿ",
"roadmap": "ಇಥಿರಿಯಮ್ ಮಾರ್ಗಸೂಚಿ",
+ "research": "ಸಂಶೋಧನೆ",
+ "research-menu": "ಸಂಶೋಧನಾ ಮೆನು",
"resources": "ಅನುವಾದ ಸಂಪನ್ಮೂಲಗಳು",
- "regenerative-finance": "ಪುನರುತ್ಪಾದಕ ಹಣಕಾಸು (ReFi)",
- "run-a-node": "Run a node",
- "rollup-component-website": "Website",
+ "regenerative-finance": "ReFi - ಪುನರುತ್ಪಾದಕ ಹಣಕಾಸು",
"rollup-component-developer-docs": "ಡೆವಲಪರ್ ಡಾಕ್ಸ್",
"rollup-component-technology-and-risk-summary": "ತಂತ್ರಜ್ಞಾನ ಮತ್ತು ಅಪಾಯದ ಸಾರಾಂಶ",
"scaling": "ಅಗತ್ಯನುಸಾರ",
@@ -168,18 +276,15 @@
"statelessness": "ಸ್ಥಿತಿ ರಹಿತತೆ",
"see-contributors": "ಕೊಡುಗೆದಾರರನ್ನು ನೋಡಿ",
"set-up-local-env": "ಸ್ಥಳೀಯ ಪರಿಸರವನ್ನು ಸ್ಥಾಪಿಸಿ",
- "sharding": "Sharding",
"show-all": "ಎಲ್ಲವನ್ನೂ ತೋರಿಸು",
"show-less": "ಕಡಿಮೆ ತೋರಿಸು",
"site-description": "\"ಎಥೆರಿಯಂ ಹಣ ಮತ್ತು ಹೊಸ ರೀತಿಯ ಅಪ್ಲಿಕೇಶನ್ಗಳಿಗಾಗಿ ಜಾಗತಿಕ, ವಿಕೇಂದ್ರೀಕೃತ ವೇದಿಕೆಯಾಗಿದೆ. ಎತೆರಿಯಮ್, ನೀವು ಹಣವನ್ನು ನಿಯಂತ್ರಿಸುವ ಕೋಡ್ ಅನ್ನು ಬರೆಯಬಹುದು ಮತ್ತು ಪ್ರಪಂಚದಲ್ಲಿ ಎಲ್ಲಿಯಾದರೂ ಪ್ರವೇಶಿಸಬಹುದಾದ ಅಪ್ಲಿಕೇಶನ್ಗಳನ್ನು ನಿರ್ಮಿಸಬಹುದು\".",
- "site-title": "ethereum.org",
"skip-to-main-content": "ಮುಖ್ಯ ವಿಷಯಕ್ಕೆ ಬಿಟ್ಟುಬಿಡಿ",
"smart-contracts": "ಸ್ಮಾರ್ಟ್ ಕಾಂಟ್ರಾಕ್ಟ್ ಗಳು",
"stablecoins": "ಸ್ಟೇಬಲ್ಕಾಯಿನ್ಗಳು",
"stake-eth": "ETH ಸ್ಟೇಕ್ ಮಾಡಿ",
"staking": "Staking",
"start-here": "ಇಲ್ಲಿ ಪ್ರಾರಂಭಿಸಿ",
- "style-guide": "Style guide",
"solo": "ಏಕವ್ಯಕ್ತಿ Staking",
"terms-of-use": "ಬಳಕೆಯ ನಿಯಮಗಳು",
"translation-banner-body-new": "ನೀವು ಈ ಪುಟವನ್ನು ಇಂಗ್ಲಿಷ್ ನಲ್ಲಿ ನೋಡುತ್ತಿದ್ದೀರಿ ಏಕೆಂದರೆ ನಾವು ಇನ್ನೂ ಅದನ್ನು ಅನುವಾದಿಸಿಲ್ಲ. ಈ ವಿಷಯವನ್ನು ಭಾಷಾಂತರಿಸಲು ನಮಗೆ ಸಹಾಯ ಮಾಡಿ.",
@@ -191,17 +296,19 @@
"translation-banner-no-bugs-title": "ಇಲ್ಲಿ ದೋಷಗಳಿಲ್ಲ!",
"translation-banner-no-bugs-content": "ಈ ಪುಟವನ್ನು ಭಾಷಾಂತರಿಸಲಾಗುತ್ತಿಲ್ಲ. ನಾವು ಉದ್ದೇಶಪೂರ್ವಕವಾಗಿ ಈ ಪುಟವನ್ನು ಇಂಗ್ಲಿಷ್ ನಲ್ಲಿ ಬಿಟ್ಟಿದ್ದೇವೆ.",
"translation-banner-no-bugs-dont-show-again": "ಮತ್ತೆ ತೋರಿಸಬೇಡಿ",
+ "translation-program": "ಅನುವಾದ ಪ್ರೋಗ್ರಾಂ",
"try-using-search": "ನೀವು ಏನನ್ನು ಹುಡುಕುತ್ತಿದ್ದೀರಿ ಎಂಬುದನ್ನು ಕಂಡುಹಿಡಿಯಲು ಹುಡುಕಾಟವನ್ನು ಬಳಸಲು ಪ್ರಯತ್ನಿಸಿ ಅಥವಾ",
"tutorials": "ಟ್ಯುಟೋರಿಯಲ್ ಗಳು",
"up": "ಮೇಲೇ",
+ "use": "ಬಳಸಿ",
"use-ethereum": "ಇಥಿರಿಯಮ್ ಬಳಸಿ",
"use-ethereum-menu": "ಇಥಿರಿಯಮ್ ಮೆನು ಬಳಸಿ",
+ "use-menu": "ಬಳಸಿ ಮೆನು",
"user-experience": "ಬಳಕೆದಾರರ ಅನುಭವ",
"verkle-trees": "ವೆರ್ಕಲ್ ಮರಗಳು",
"wallets": "ವ್ಯಾಲೆಟ್ಗಳು",
"we-couldnt-find-that-page": "ನಮಗೆ ಆ ಪುಟವನ್ನು ಹುಡುಕಲು ಸಾಧ್ಯವಾಗಲಿಲ್ಲ",
"web3": "Web3 ಎಂದರೇನು?",
- "web3-title": "Web3",
"website-last-updated": "ವೆಬ್ ಸೈಟ್ ಕೊನೆಯದಾಗಿ ನವೀಕರಿಸಲಾಗಿದೆ",
"what-is-ether": "ಇಥರ್ (ETH) ಎಂದರೇನು?",
"what-is-ethereum": "ಇಥಿರಿಯಮ್ ಎಂದರೇನು?",
diff --git a/src/intl/kn/page-languages.json b/src/intl/kn/page-languages.json
index c7a23c95481..978f03c1eb6 100644
--- a/src/intl/kn/page-languages.json
+++ b/src/intl/kn/page-languages.json
@@ -17,39 +17,39 @@
"page-languages-translated": "ಅನುವಾದಿಸಲಾಗಿದೆ",
"page-languages-words": "ಪದಗಳು",
"page-languages-recruit-community": "Ethereum.org ಅನ್ನು ಭಾಷಾಂತರಿಸಲು ನಮಗೆ ಸಹಾಯ ಮಾಡಿ.",
+ "langauge-am": "ಅಂಹರಿಕ್",
"language-ar": "ಅರೇಬಿಕ್",
"language-az": "ಅಜರ್ಬೈಜಾನಿ",
+ "langauge-be": "ಬೆಲರೂಸಿಯನ್",
"language-bg": "ಬಲ್ಗೇರಿಯನ್",
"language-bn": "ಬೆಂಗಾಲಿ",
+ "language-bs": "ಬೋಸ್ನಿಯನ್",
"language-ca": "ಕ್ಯಾಟಲಾನ್",
- "language-cs": "Czech",
"language-da": "ಡ್ಯಾನಿಶ್",
- "language-de": "German",
"language-el": "ಗ್ರೀಕ್",
"language-en": "ಇಂಗ್ಲಿಷ್",
- "language-es": "Spanish",
"language-fa": "ಫಾರ್ಸಿ",
"language-fi": "ಫಿನ್ನಿಶ್",
- "language-fr": "French",
"language-gl": "ಗ್ಯಾಲಿಶಿಯನ್",
"language-gu": "ಗುಜರಾತಿ",
"language-he": "ಹೀಬ್ರೂ",
"language-hi": "ಹಿಂದಿ",
"language-hr": "ಕ್ರೊವೇಷಿಯನ್",
"language-hu": "ಹಂಗೇರಿಯನ್",
+ "language-hy-am": "ಅರ್ಮೇನಿಯನ್",
"language-id": "ಇಂಡೋನೇಷಿಯನ್",
"language-ig": "ಇಗ್ಬೊ",
- "language-it": "Italian",
- "language-ja": "Japanese",
"language-ka": "ಜಾರ್ಜಿಯನ್",
"language-kk": "ಕಝಾಕ್",
"language-km": "ಖಮೇರ್",
+ "language-kn": "ಕನ್ನಡ",
"language-ko": "ಕೊರಿಯನ್",
"language-lt": "ಲಿಥುವೇನಿಯನ್",
"language-ml": "ಮಲಯಾಳಂ",
"language-mr": "ಮರಾಠಿ",
"language-ms": "ಮಲೈ",
"language-nb": "ನಾರ್ವೇಯನ್",
+ "language-ne-np": "ನೇಪಾಳಿ",
"language-nl": "ಡಚ್",
"language-pcm": "ನೈಜೀರಿಯನ್ ಪಿಡ್ಜಿನ್",
"language-fil": "ಫಿಲಿಪಿನೋ",
@@ -57,7 +57,6 @@
"language-pt": "ಪೋರ್ಚುಗೀಸ್",
"language-pt-br": "ಪೋರ್ಚುಗೀಸ್ (ಬ್ರೆಜೀಲಿಯನ್)",
"language-ro": "ರೊಮಾನಿಯನ್",
- "language-ru": "Russian",
"language-se": "ಸ್ವೀಡಿಶ್",
"language-sk": "ಸ್ಲೋವಾಕ್",
"language-sl": "ಸ್ಲೋವೇನಿಯನ್",
@@ -65,11 +64,10 @@
"language-sw": "ಸ್ವಾಹಿಲಿ",
"language-ta": "ತಮಿಳು",
"language-th": "ಥಾಯ್",
- "language-tr": "Turkish",
+ "language-tk": "ಟರ್ಕ್ಮೆನ್",
"language-uk": "ಉಕ್ರೇನಿಯನ್",
"language-ur": "ುರ್ದು",
"language-uz": "ಉಝ್ಬೇಕ್",
- "language-vi": "Vietnamese",
"language-zh": "ಸರಳೀಕೃತ ಚೈನೀಸ್",
"language-zh-tw": "ಸಾಂಪ್ರದಾಯಿಕ ಚೈನೀಸ್"
}
diff --git a/src/intl/kn/page-wallets-find-wallet.json b/src/intl/kn/page-wallets-find-wallet.json
index 4fc3778febb..68b85921bce 100644
--- a/src/intl/kn/page-wallets-find-wallet.json
+++ b/src/intl/kn/page-wallets-find-wallet.json
@@ -7,7 +7,6 @@
"page-find-wallet-meta-title": "ಒಂದು ಇಥಿರಿಯಮ್ ವಾಲೆಟ್ ಅನ್ನು ಹುಡುಕಿ",
"page-find-wallet-title": "ವ್ಯಾಲೆಟ್ ಹುಡುಕಿ",
"page-find-wallet-try-removing": "ಒಂದು ಅಥವಾ ಎರಡು ವೈಶಿಷ್ಟ್ಯಗಳನ್ನು ತೆಗೆಯಲು ಪ್ರಯತ್ನಿಸಿ",
- "page-find-wallet-choose-to-compare": "ಹೋಲಿಸಲು ಆಯ್ಕೆಮಾಡಿ",
"page-stake-eth": "ETH ಸ್ಟೇಕ್ ಮಾಡಿ",
"page-find-wallet-open-source": "Open source",
"page-find-wallet-open-source-desc": "ಓಪನ್ ಸೋರ್ಸ್ ಸಾಫ್ಟ್ವೇರ್ ಯಾರಿಗಾದರೂ ಅಪ್ಲಿಕೇಶನ್ನ ಸತತವನ್ನು ಮತ್ತು ಸುರಕ್ಷತೆಯನ್ನು ಪರೀಕ್ಷಿಸಲು ಅವಕಾಶ ನೀಡುತ್ತದೆ",
@@ -16,8 +15,6 @@
"page-find-wallet-non-custodial-desc": "ನಿಮ್ಮ ಖಾಸಗಿ ಕೀಗಳನ್ನು ನಿಯಂತ್ರಿಸದ ವಾಲೆಟ್ಗಳು",
"page-find-wallet-hardware-wallet-support": "ಹಾರ್ಡ್ವೇರ್ ವಾಲೆಟ್ ಬೆಂಬಲ",
"page-find-wallet-hardware-wallet-support-desc": "ಉತ್ತಮ ಸುರಕ್ಷತೆಗಾಗಿ ಹಾರ್ಡ್ವೇರ್ ವಾಲೆಟ್ಗೆ ಸಂಪರ್ಕಿಸಬಹುದಾದ ವಾಲೆಟ್ಗಳು",
- "page-find-wallet-walletconnect": "ವಾಲೆಟ್ ಕನೆಕ್ಟ್",
- "page-find-wallet-walletconnect-desc": "dapps ಗೆ ಸಂಪರ್ಕಿಸಲು ವಾಲೆಟ್ ಕನೆಕ್ಟ್ ಅನ್ನು ಬೆಂಬಲಿಸುವ ವಾಲೆಟ್ಗಳು",
"page-find-wallet-rpc-importing": "RPC ತೆಗೆಯಲು",
"page-find-wallet-rpc-importing-desc": "ವಿವಿಧ ನೋಡ್ಗಳಿಗೆ ಅಥವಾ ನೆಟ್ವರ್ಕ್ಗಳಿಗೆ ಸಂಪರ್ಕಿಸಲು ಕಸ್ಟಮ್ RPC ಎಂಡ್ಪಾಯಿಂಟ್ಗಳಿಗೆ ವಾಲೆಟ್ಗಳು ಬೆಂಬಲಿಸುತ್ತವೆ",
"page-find-wallet-nft-support": "NFT ಬೆಂಬಲ",
@@ -36,8 +33,6 @@
"page-find-wallet-ens-support-desc": "ಇಥಿರಿಯಮ್ ನಾಮ ಸೇವೆ (ENS) ಬೆಂಬಲಿಸುವ ವಾಲೆಟ್ಗಳು",
"page-find-wallet-token-importing": "ಟೋಕನ್ ಆಮದುಗೊಳಿಸುವಿಕೆ",
"page-find-wallet-token-importing-desc": "ವಾಲೆಟ್ನಲ್ಲಿ ಉಪಯೋಗಿಸಲು ಯಾವುದೇ ERC-20 ಟೋಕನ್ಅನ್ನು ಆಮದುಗೊಳಿಸಿ",
- "page-find-wallet-fee-optimization": "ಶುಲ್ಕ ಆಪ್ಟಿಮೈಸ್ಗೊಳಿಸುವಿಕೆ",
- "page-find-wallet-fee-optimization-desc": "ಆಪ್ಟಿಮೈಸ್ ಮಾಡಲಾದ ಗ್ಯಾಸ್ ಶುಲ್ಕಗಳಿಗೆ ಮತ್ತು ಉಪಯೋಗಿಸದ ಗ್ಯಾಸ್ಗಾಗಿ ಶುಲ್ಕವನ್ನು ರೀಫಂಡ್ ಪಡೆಯಲು ಟೈಪ್ 2 ವಹಿವಾಟುಗಳನ್ನು ಬೆಂಬಲಿಸಿ",
"page-find-wallet-buy-crypto": "ಕ್ರಿಪ್ಟೋ ಖರೀದಿಸಿ",
"page-find-wallet-buy-crypto-desc": "ವಾಲೆಟ್ನಲ್ಲಿ ನೇರವಾಗಿ ಫಿಯಟ್ ಮೂಲಕ ಕ್ರಿಪ್ಟೋ ಖರೀದಿಸಿ",
"page-find-wallet-sell-for-fiat": "ಫಿಯಟ್ಗೆ ಮಾರಾಟ ಮಾಡಿ",
@@ -46,7 +41,6 @@
"page-find-wallet-multisig-desc": "ವಹಿವಾಟವನ್ನು ಅಧಿಕೃತಗೊಳಿಸಲು ಬಹು ಸಹಿಗಳನ್ನು ಅಗತವಾಗಿ ಹೊಂದಿರುವ ವಾಲೆಟ್ಗಳು",
"page-find-wallet-social-recovery": "ಸಾಮಾಜಿಕ ರಿಕವರಿ",
"page-find-wallet-social-recovery-desc": "ಸ್ಮಾರ್ಟ್ ಕಾಂಟ್ರಾಕ್ಟ್ ವಾಲೆಟ್ಗಾಗಿ ಸಹಿ ಕೀಯನ್ನು ಬದಲಾಯಿಸಲು ಪಾಲಕರಿಗೆ ಅನುಮತಿಸುವ ವಾಲೆಟ್ಗಳು",
- "page-find-wallet-token-support": "ಟೋಕನ್ ಬೆಂಬಲ",
"page-find-wallet-features": "Features",
"page-find-wallet-security": "Security",
"page-find-wallet-smart-contract": "Smart contract",
@@ -63,7 +57,6 @@
"page-find-wallet-chromium": "ಕ್ರೋಮಿಯಂ",
"page-find-wallet-firefox": "Firefox",
"page-find-wallet-hardware": "Hardware",
- "page-find-wallet-hardware-desc": "ಹಾರ್ಡ್ವೇರ್ ವಾಲೆಟ್ಗಳು",
"page-find-wallet-new-to-crypto-title": "ಕ್ರಿಪ್ಟೋಗೆ ಹೊಸಬರು",
"page-find-wallet-new-to-crypto-desc": "ನೀವು ಮೊದಲ ಬಾರಿಯ ಬಳಕೆದಾರರು ಮತ್ತು ನಿಮ್ಮ ಮೊದಲನೆಯ ವಾಲೆಟ್ ಹುಡುಕುತ್ತಿದ್ದೀರಿ",
"page-find-wallet-nfts-title": "NFTs",
@@ -74,21 +67,13 @@
"page-find-wallet-finance-desc": "ನೀವು DeFi ಬಳಸುವವರು ಮತ್ತು DeFi ಅಪ್ಲಿಕೇಶನ್ಗಳಿಗೆ ಸಂಪರ್ಕಿಸಲು ಅನುಮತಿಸುವ ವಾಲೆಟ್ ಬಯಸುವವರು",
"page-find-wallet-developer-title": "ಡೆವಲಪರ್",
"page-find-wallet-developer-desc": "ನೀವು ಡೆವೆಲಪರ್ ಮತ್ತು ಡ್ಯಾಪ್ಸ್ಗಳನ್ನು ಅಭಿವೃದ್ಧಿಪಡಿಸಲು ಮತ್ತು ಪರೀಕ್ಷಿಸಲು ವಾಲೆಟ್ ಅಗತ್ಯವಾಗಿದೆ",
- "page-find-wallet-persona-desc": "ನಿಮ್ಮ ಬಳಕೆದಾರ ಪ್ರಕಾರಕ್ಕೆ ಹೊಂದುವ ಪ್ರೊಫೈಲ್ ಆಯ್ಕೆಮಾಡಿ ಮತ್ತು ವಾಲೆಟ್ ಪಟ್ಟಿಯನ್ನು ಫಿಲ್ಟರ್ ಮಾಡಿ",
"page-find-wallet-filters": "ಫಿಲ್ಟರ್ಗಳು",
"page-find-wallet-active": "ಸಕ್ರಿಯ",
- "page-find-wallet-profile-filters": "ಪ್ರೊಫೈಲ್ ಫಿಲ್ಟರ್ಗಳು",
- "page-find-wallet-feature-filters": "ವೈಶಿಷ್ಟ್ಯ ಫಿಲ್ಟರ್ಗಳು",
"page-find-wallet-footnote-1": "ಈ ಪುಟದಲ್ಲಿ ಪಟ್ಟಿಯಾದ ವಾಲೆಟ್ಗಳು ಅಧಿಕೃತ ಅಭಿಪ್ರಾಯಗಳಲ್ಲ ಮತ್ತು ಮಾಹಿತಿಯ ಉದ್ದೇಶಕ್ಕೆ ಮಾತ್ರ ಒದಗಿಸಲಾಗಿದೆ.",
"page-find-wallet-footnote-2": "ಅವರ ವಿವರಣೆಗಳು ವಾಲೆಟ್ ಯೋಜನೆಗಳೇ ಒದಗಿಸಿದವುಗಳಾಗಿವೆ.",
"page-find-wallet-footnote-3": "ನಾವು ಈ ಪುಟಕ್ಕೆ ಉತ್ತಮಗಳನ್ನು ನಮ್ಮ ಪಟ್ಟಿ ನೀತಿಯಲ್ಲಿನ ಮಾನದಂಡಗಳ ಆಧಾರದ ಮೇಲೆ ಸೇರಿಸುತ್ತೇವೆ. ನೀವು ನಮಗೆ ಒಂದು ವಾಲೆಟ್ ಸೇರಿಸಬೇಕೆಂದಿದ್ದರೆ, ಗಿಟ್ಹಬ್ನಲ್ಲಿ ಸಮಸ್ಯೆಯನ್ನು ಉತ್ತೇರಿಸಿ.",
"page-find-wallet-mobile": "ಮೊಬೈಲ್",
- "page-find-wallet-mobile-desc": "ಮೊಬೈಲ್ ಅಪ್ಲಿಕೇಶನ್ಗಳೊಂದಿಗೆ ವಾಲೆಟ್ಗಳು",
"page-find-wallet-desktop": "ಡೆಸ್ಕ್ಟಾಪ್",
- "page-find-wallet-desktop-desc": "ಡೆಸ್ಕ್ಟಾಪ್ ಅಪ್ಲಿಕೇಶನ್ಗಳೊಂದಿಗೆ ವಾಲೆಟ್ಗಳು",
"page-find-wallet-browser": "ಬ್ರೌಸರ್",
- "page-find-wallet-browser-desc": "ಬ್ರೌಸರ್ ವಿಸ್ತರಣೆಗಳೊಂದಿಗೆ ವಾಲೆಟ್ಗಳು",
- "page-find-wallet-device": "ಸಾಧನ",
- "page-find-choose-to-compare": "ಹೋಲಿಸಲು ಆಯ್ಕೆಮಾಡಿ",
- "page-find-wallet-choose-features": "ವೈಶಿಷ್ಟ್ಯಗಳನ್ನು ಆಯ್ಕೆಮಾಡಿ"
+ "page-find-wallet-device": "ಸಾಧನ"
}
diff --git a/src/intl/ko/common.json b/src/intl/ko/common.json
index 0fa72c87cc7..6d30712cee8 100644
--- a/src/intl/ko/common.json
+++ b/src/intl/ko/common.json
@@ -1,17 +1,31 @@
{
- "account-abstraction": "계정 추상화",
"about-ethereum-org": "ethereum.org 소개",
"about-us": "회사 소개",
+ "adding-desci-projects": "DeSci 프로젝트 추가",
+ "adding-developer-tools": "개발자 도구 추가",
+ "adding-exchanges": "거래소 추가",
+ "adding-glossary-terms": "용어집 용어 추가",
+ "adding-layer-2s": "Layer 2s (오프체인) 추가",
+ "adding-products": "제품 추가하기",
+ "adding-staking-products": "스테이킹 상품 추가",
+ "adding-wallets": "지갑 추가",
+ "account-abstraction": "계정 추상화",
+ "acknowledgements": "감사의 글",
"aria-toggle-search-button": "검색 버튼 보이기/숨기기",
"aria-toggle-menu-button": "메뉴 버튼 보이기/숨기기",
"beacon-chain": "비콘 체인",
"bridges": "블록체인 브리지",
+ "bug-bounty": "버그 포상금",
+ "build": "빌드",
+ "build-menu": "빌드 메뉴",
"clear": "지우기",
"close": "닫기",
"community": "커뮤니티",
"community-hub": "커뮤니티 허브",
"community-menu": "커뮤니티 메뉴",
"contact": "문의처",
+ "content-buckets": "콘텐츠 버킷",
+ "content-resources": "콘텐츠 참고 자료",
"content-standardization": "콘텐츠 표준화",
"contributing": "기여",
"contributors": "기여자",
@@ -20,14 +34,17 @@
"copied": "복사 완료",
"copy": "복사",
"danksharding": "댄크샤딩",
- "dao-page": "분산형 자율 조직(DAO)",
+ "dao-page": "DAO - 분산형 자율 조직",
"dark-mode": "다크",
"data-provided-by": "데이터 원본:",
- "decentralized-applications-dapps": "분산형 애플리케이션(디앱)",
+ "decentralized-applications-dapps": "디앱 - 분산형 애플리케이션",
"decentralized-identity": "탈중앙화 신원 증명",
"decentralized-social-networks": "탈중앙화 소셜 네트워크",
- "decentralized-science": "탈중앙화 과학(DeSci)",
- "defi-page": "분산형 금융(DeFi)",
+ "decentralized-science": "DeSci - 탈중앙화 과학",
+ "description": "탐색 항목에 대한 설명",
+ "defi-page": "DeFi - 분산형 금융",
+ "design": "디자인",
+ "design-principles": "디자인 원칙",
"devcon": "Devcon",
"developers": "개발자",
"developers-home": "개발자 홈",
@@ -51,7 +68,7 @@
"documentation": "개발문서",
"down": "아래로",
"ecosystem": "생태계",
- "edit-page": "페이지 수정",
+ "edit-page": "페이지 편집",
"ef-blog": "이더리움 재단 블로그",
"eips": "이더리움 개선 제안",
"energy-consumption": "이더리움 에너지 소비량",
@@ -83,22 +100,22 @@
"feedback-card-prompt-tutorial": "이 튜토리얼이 도움이 되셨나요?",
"feedback-widget-thank-you-title": "피드백을 주셔서 감사합니다!",
"feedback-widget-thank-you-subtitle": "몇 가지 질문에 답하여 이 페이지를 개선해 주세요.",
- "feedback-widget-thank-you-subtitle-ext": "도움이 필요하다면 Discord에서 커뮤니티를 활용해 보십시오.",
+ "feedback-widget-thank-you-subtitle-ext": "도움이 필요하시면 Discord에서 커뮤니티에 연락해 볼 수 있습니다.",
"feedback-widget-thank-you-timing": "2–3분",
"feedback-widget-thank-you-cta": "짧은 공개 설문조사",
"find-wallet": "지갑 찾기",
"future-proofing": "미래 대비",
- "get-eth": " ETH 사기",
+ "get-eth": "이더 구매하기",
"get-involved": "참여하기",
"get-started": "시작하기",
"grants": "지원금",
"grant-programs": "생태계 지원금 프로그램",
"guides": "가이드",
- "guides-hub": "가이드 허브",
+ "guides-hub": "사용법 안내서",
"history-of-ethereum": "이더리움 연혁",
"home": "홈",
"how-ethereum-works": "이더리움의 작동 원리",
- "how-to-register-an-ethereum-account": "이더리움 계정을 \"등록\"하는 방법",
+ "how-to-create-an-ethereum-account": "이더리움 계정 \"생성\"하는 법",
"how-to-revoke-token-access": "암호화폐 자금에 대한 스마트 계약 액세스를 취소하는 방법",
"how-to-swap-tokens": "토큰 교환 방법",
"how-to-use-a-bridge": "레이어 2로 토큰을 브리지하는 방법",
@@ -115,11 +132,11 @@
"last-edit": "최근 수정",
"layer-2": "레이어 2",
"learn": "학습하기",
- "learn-by-coding": "코딩으로 학습하기",
+ "learn-by-coding": "코딩으로 학습",
"learn-hub": "학습 허브",
"learn-menu": "메뉴 살펴보기",
"learn-more": "자세히 보기",
- "less": "간단히 보기",
+ "less": "간단히",
"light-mode": "라이트",
"listing-policy-disclaimer": "이 페이지에 명시된 모든 제품은 공식적으로 보증되지 않으며 정보 제공 용도로만 제공됩니다. 제품을 추가하거나 정책에 대한 피드백을 제공하려면 GitHub에 이슈를 올려 주세요.",
"loading": "불러오는 중...",
@@ -128,11 +145,112 @@
"loading-error-try-again-later": "데이터를 로드할 수 없습니다. 나중에 다시 시도하세요.",
"logo": "로고",
"mainnet-ethereum": "메인넷(Mainnet) 이더리움",
- "more": "더 보기",
- "nav-developers": "개발자",
+ "merge": "병합",
+ "more": "자세히",
+ "nav-about-description": "이더리움 커뮤니티를 위한 공개 오픈 소스 프로젝트",
+ "nav-advanced-description": "보다 복잡한 주제에 대해 알아보기",
+ "nav-advanced-label": "고급",
+ "nav-basics-description": "이더리움의 기초 이해하기",
+ "nav-basics-label": "기본",
+ "nav-bridges-description": "웹3는 기본 L1 블록체인과 L2 확장 솔루션의 생태계로 진화해 왔습니다.",
+ "nav-builders-home-description": "개발자가 개발자를 위해 만든 이더리움 개발자 매뉴얼",
+ "nav-builders-home-label": "개발자의 홈",
+ "nav-contribute-description": "도움이 필요하시면 이 자료가 길잡이가 될 수 있습니다.",
+ "nav-contribute-label": "ethereum.org에 기여하기",
+ "nav-dao-description": "중앙화된 기관이 없는 회원 소유 커뮤니티",
+ "nav-dapps-description": "이더리움을 사용하여 앱의 풍부한 생태계를 살펴보기",
+ "nav-defi-description": "기존 금융 시장에 대한 글로벌하고 개방적인 대안",
+ "nav-desci-description": "현재 과학 시스템에 대한 글로벌하고 개방적인 대안",
+ "nav-desoc-description": "소셜 상호 작용 및 콘텐츠 창작을 위한 블록체인 기반 플랫폼",
"nav-developers-docs": "개발자 문서",
+ "nav-developers": "개발자",
+ "nav-did-description": "고유한 탈중앙화된 식별자를 발급하고 소유",
+ "nav-docs-description": "이더리움을 이해하고 빌드하는 데 도움이 되는 문서",
+ "nav-docs-design-description": "고유한 웹3 디자인 과제, 모범 사례 및 사용자 검색 인사이트에 대한 설명",
+ "nav-docs-design-label": "UX/UI 디자인 기초",
+ "nav-docs-foundation-description": "이더리움에서 개발할 핵심 기초",
+ "nav-docs-foundation-label": "기초 주제",
+ "nav-docs-overview-description": "개발자 문서를 위한 홈",
+ "nav-docs-stack-description": "이더리움 스택의 모든 세부 사항 이해하기",
+ "nav-docs-stack-label": "이더리움 스택",
+ "nav-eip-description": "새로운 기능이나 프로세스를 지정하는 표준",
+ "nav-eip-label": "EIP - 이더리움 개선 제안",
+ "nav-emerging-description": "이더리움에 대한 기타 새로운 사용 사례 알아보기",
+ "nav-emerging-label": "새로운 사용 사례",
+ "nav-enterprise-description": "이더리움의 비즈니스 애플리케이션",
+ "nav-ethereum-org-description": "이 웹사이트는 커뮤니티 중심으로 운영됩니다. 함께 참여하고 기여해 보세요.",
+ "nav-ethereum-wallets-description": "이더리움 계정으로 상호 작업하는 앱",
+ "nav-events-description": "누구나 참여할 수 있는 탈중앙화 및 자유",
+ "nav-events-irl-description": "매월 오프라인 및 온라인에서 주요 이더리움 이벤트가 개최됩니다.",
+ "nav-events-label": "커뮤니티 및 이벤트",
+ "nav-events-online-description": "이 온라인 커뮤니티에는 수십만 명의 이더리움 열성팬이 있습니다.",
+ "nav-find-wallet-description": "지갑을 통해 암호화폐를 사용할 수 있습니다.",
+ "nav-find-wallet-label": "지갑 선택",
+ "nav-gas-fees-description": "ETH 거래 수수료가 계산되는 방법",
+ "nav-get-eth-description": "이더리움 애플리케이션을 사용하려면 이더(ETH)가 필요합니다.",
+ "nav-get-started-description": "이더리움을 사용하기 위한 첫 번째 단계",
+ "nav-governance-description": "이더리움 프로토콜 업그레이드 관련 프로세스",
+ "nav-governance-label": "운영 방식",
+ "nav-grants-description": "보조금 지원 프로그램을 제공하는 프로젝트에 대해 커뮤니티에서 선별한 목록",
+ "nav-guide-create-account-description": "누구든지 지갑 앱을 사용하여 언제든 무료로 이더리움 계정을 만들 수 있습니다.",
+ "nav-guide-create-account-label": "이더리움 계정 만들기",
+ "nav-guide-revoke-access-description": "이더리움 생태계에서 스마트 계약 및 애플리케이션으로 안전하게 상호 작업할 수 있습니다.",
+ "nav-guide-revoke-access-label": "스마트 계약 액세스를 취소하는 방법",
+ "nav-guide-use-wallet-description": "지갑의 모든 기본 기능을 실행하는 방법에 대해 알아보기",
+ "nav-guide-use-wallet-label": "지갑 사용법",
+ "nav-guides-description": "시작하는 데 도움이 되는 실용적인 단계별 안내서",
+ "nav-guides-label": "사용 방법 안내",
+ "nav-history-description": "모든 주요 포크 및 업데이트에 대한 타임라인",
+ "nav-history-label": "이더리움의 기술적 역사",
+ "nav-layer-2-description": "이더리움의 더 저렴하고 빠른 거래",
+ "nav-learn-by-coding-description": "이더리움을 실험하는 데 도움이 되는 도구",
+ "nav-local-env-description": "이더리움 개발 스택을 선택하고 설정하세요.",
+ "nav-mainnet-description": "엔터프라이즈 블록체인 애플리케이션은 공개 이더리움 메인넷에 구축될 수 있습니다.",
+ "nav-nft-description": "이더리움 기반 자산으로 고유한 모든 것을 나타내는 방법",
+ "nav-open-research-description": "이더리움의 주요 강점 중 하나는 활발한 연구 커뮤니티입니다.",
+ "nav-open-research-label": "공개 연구",
+ "nav-overview-description": "이더리움 교육의 모든 것",
+ "nav-overview-label": "개요",
+ "nav-participate-overview-description": "참여하는 방법에 대한 개요",
"nav-primary": "기본",
- "nft-page": "대체 불가 토큰(NFT)",
+ "nav-quizzes-description": "이더리움과 암호화폐를 얼마나 잘 이해하고 있는지 알아보기",
+ "nav-quizzes-label": "지식 테스트",
+ "nav-refi-description": "재생 원칙에 기반한 대안 경제 시스템",
+ "nav-research-description": "이더리움을 향상하는 데 사용되는 프로세스",
+ "nav-research-label": "연구 및 개발",
+ "nav-roadmap-description": "이더리움의 확장성, 보안 및 지속 가능성을 강화하는 방법",
+ "nav-roadmap-future-description": "이더리움을 강력하고 탈중앙화된 네트워크로 굳히기",
+ "nav-roadmap-future-label": "미래 대비",
+ "nav-roadmap-label": "로드맵",
+ "nav-roadmap-scaling-description": "거래 비용을 더욱 줄이고 속도를 높이기 위한 네트워크 업데이트",
+ "nav-roadmap-security-description": "이더리움이 미래에도 모든 종류의 공격에 대한 복원력을 유지할 수 있게 확인합니다.",
+ "nav-roadmap-security-label": "강화된 보안",
+ "nav-roadmap-ux-description": "이더리움 사용을 단순화해야 합니다.",
+ "nav-run-a-node-description": "네트워크를 보호하는 한편 완전한 주권자가 될 수 있습니다.",
+ "nav-security-description": "암호 화폐를 사용할 때 모범 사례 알아보기",
+ "nav-smart-contracts-description": "이더리움 생태계의 기본 구성 요소",
+ "nav-stablecoins-description": "스테이블코인은 고정된 가치를 유지하도록 설계된 이더리움 토큰입니다.",
+ "nav-stake-description": "이더리움을 보호하면서 보상받기",
+ "nav-stake-label": "스테이킹",
+ "nav-staking-home-description": "스테이킹의 다른 옵션 개요",
+ "nav-staking-home-label": "스테이킹 홈",
+ "nav-staking-pool-description": "다른 사용자와 함께 ETH의 양과 관계없이 스테이킹하고 보상을 받으세요.",
+ "nav-staking-pool-label": "풀 스테이킹",
+ "nav-staking-saas-description": "제3자 노드 운영자가 검증자 클라이언트의 운영을 처리함",
+ "nav-staking-saas-label": "서비스로 스테이킹",
+ "nav-staking-solo-description": "가정용 컴퓨터를 실행하고 이더리움 네트워크의 보안과 탈중앙화에 기여해 보세요.",
+ "nav-staking-solo-label": "솔로 스테이킹",
+ "nav-start-building-description": "신규 사용자를 위한 유용한 정보",
+ "nav-translation-program-description": "ethereum.org를 모든 언어로 번역하기 위한 공동의 노력",
+ "nav-tutorials-description": "엄선된 커뮤니티 튜토리얼 목록",
+ "nav-use-cases-description": "이더리움 사용에 대한 다른 아이디어 살펴보기",
+ "nav-what-is-ether-description": "이더리움 앱의 화폐",
+ "nav-what-is-ethereum-description": "이더리움을 특별하게 만드는 것이 무엇인지 이해하기",
+ "nav-what-is-web3-label": "Web3란 무엇입니까?",
+ "nav-what-is-web3-description": "규칙을 지시하는 중앙 집중식 독점에 대한 대안",
+ "nav-whitepaper-description": "2014년 비탈릭 부테린이 작성한 최초의 이더리움 백서",
+ "nav-zkp-description": "어떤 진술을 드러내지 않으면서도 그것의 유효성을 증명하는 방법",
+ "nft-page": "NFT - 대체 불가 토큰",
"nfts": "NFT",
"no": "아니오",
"on-this-page": "이 페이지에서는",
@@ -140,6 +258,8 @@
"page-developers-aria-label": "개발자 메뉴",
"page-index-meta-title": "홈",
"page-last-updated": "페이지가 마지막으로 업데이트됨",
+ "participate": "참여하기",
+ "participate-menu": "참여 메뉴",
"pbs": "제안자-빌더 분리",
"pools": "풀 스테이킹",
"privacy-policy": "개인정보 보호 정책",
@@ -150,8 +270,10 @@
"refresh": "페이지를 새로고침하세요.",
"return-home": "홈으로 돌아가기",
"roadmap": "이더리움 로드맵",
+ "research": "연구",
+ "research-menu": "연구 메뉴",
"resources": "번역 참고 자료",
- "regenerative-finance": "재생금융(ReFi)",
+ "regenerative-finance": "ReFi - 재생금융",
"run-a-node": "노드 실행하기",
"rollup-component-website": "웹사이트",
"rollup-component-developer-docs": "개발자 문서",
@@ -164,6 +286,7 @@
"search-box-blank-state-text": "바로 검색!",
"search-eth-address": "이것은 이더리움 주소로 보입니다. 당사는 특정 주소에 대한 데이터를 제공하지 않습니다. 블록 탐색기를 통해 아래와 같이 검색해 보세요.",
"search-no-results": "검색과 일치하는 결과가 없습니다.",
+ "security": "보안",
"single-slot-finality": "단일 슬롯 최종 승인",
"statelessness": "무상태성",
"see-contributors": "기여자 확인하기",
@@ -181,6 +304,7 @@
"start-here": "여기서 시작하세요",
"style-guide": "스타일 가이드",
"solo": "솔로 스테이킹",
+ "support": "지원",
"terms-of-use": "이용 약관",
"translation-banner-body-new": "이 페이지는 아직 내용이 번역되지 않아 영어로 쓰여 있습니다. 이 콘텐츠의 번역을 도와 주세요.",
"translation-banner-body-update": "이 페이지의 새로운 버전이 있지만 현재는 영어로만 제공됩니다. 최신 버전의 번역을 도와 주세요.",
@@ -191,11 +315,14 @@
"translation-banner-no-bugs-title": "버그 없음!",
"translation-banner-no-bugs-content": "이 페이지는 번역되고 있지 않습니다. 이 페이지는 현재 영어로만 제공되고 있습니다.",
"translation-banner-no-bugs-dont-show-again": "다시 표시하지 않기",
+ "translation-program": "번역 프로그램",
"try-using-search": "원하는 항목을 찾기 위해 검색을 해보세요.",
"tutorials": "튜토리얼",
"up": "위로",
+ "use": "사용",
"use-ethereum": "이더리움 사용하기",
"use-ethereum-menu": "이더리움 메뉴 사용하기",
+ "use-menu": "메뉴 사용",
"user-experience": "사용자 환경",
"verkle-trees": "버클 트리",
"wallets": "지갑",
@@ -203,8 +330,8 @@
"web3": "Web3란 무엇입니까?",
"web3-title": "웹3",
"website-last-updated": "웹사이트가 마지막으로 업데이트됨",
- "what-is-ether": "이더(ETH)란?",
- "what-is-ethereum": "이더리움이란?",
+ "what-is-ether": "이더(ETH)란 무엇인가요?",
+ "what-is-ethereum": "이더리움이란 무엇인가요?",
"withdrawals": "스테이킹 인출",
"yes": "네",
"zero-knowledge-proofs": "영지식 증명"
diff --git a/src/intl/ko/page-gas.json b/src/intl/ko/page-gas.json
new file mode 100644
index 00000000000..f8b3dba2626
--- /dev/null
+++ b/src/intl/ko/page-gas.json
@@ -0,0 +1,8 @@
+{
+ "page-gas-hero-button-1-content": "가스란 무엇인가요?",
+ "page-gas-summary-title": "요약",
+ "page-gas-how-do-i-pay-less-gas-card-3-title": "레이어 2 사용",
+ "page-gas-advanced": "고급",
+ "page-gas-faq-question-2-a-2": "ETH에 대해 자세히 알아보기",
+ "page-gas-use-layer-2": "레이어 2 사용"
+}
diff --git a/src/intl/ko/page-get-eth.json b/src/intl/ko/page-get-eth.json
index 6d73e3de1a8..c678ffc0c5e 100644
--- a/src/intl/ko/page-get-eth.json
+++ b/src/intl/ko/page-get-eth.json
@@ -9,23 +9,32 @@
"page-get-eth-cex-desc": "거래소는 기존 통화를 사용하여 암호화폐를 구매할 수 있는 비즈니스입니다. 거래소는 당신이 구매한 ETH를 지갑으로 보낼 때까지 모든 ETH에 대한 보호권을 가집니다.",
"page-get-eth-checkout-dapps-btn": "디앱스 확인하기",
"page-get-eth-community-safety": "보안에 대한 커뮤니티 게시물",
- "page-get-eth-description": "이더리움과 ETH는 중앙 정부나 기업의 통제를 받지 않으며 분권화되어 있습니다. 이것은 ETH가 모든 개인에게 열려 있음을 의미합니다.",
+ "page-get-eth-description": "이더리움은 어떠한 단일 조직의 통제도 받지 않습니다. 탈중앙화되어 있기 때문입니다.",
"page-get-eth-dex": "탈중앙화 거래소(DEX)",
- "page-get-eth-dex-desc": "더 많이 제어하시려면 ETH 피어-투-피어를 구입하십시오. DEX를 사용하면 중앙 집권화된 회사에 귀하의 재산을 제어할 수 있는 권한을 주지 않고 거래할 수 있습니다.",
+ "page-get-eth-dex-desc": "통제권을 더 확보하려면 스마트 계약을 사용하여 ETH를 매수하세요. DEX를 이용하면 보유한 자금의 통제권을 중앙화된 기업에 넘기지 않고도 디지털 자산을 거래할 수 있습니다.",
+ "page-get-eth-peers": "다른 사람한테서 ETH 받기",
+ "page-get-eth-peers-desc": "이더리움 계정을 개설하셨나요? 이제 주소를 공유하기만 하면 ETH(및 기타 토큰)를 P2P로 주고 받을 수 있습니다.",
+ "page-get-eth-staking": "보상 스테이크 중",
+ "page-get-eth-staking-desc": "이미 ETH를 보유하고 있는 경우 검증자 노드를 실행하여 ETH를 추가로 획득할 수 있습니다. 이 검증 작업을 수행하여 ETH로 보상을 받습니다.",
+ "page-get-eth-earn": "ETH 획득하기",
+ "page-get-eth-earn-desc": "암호화폐로 급여를 지불하는 DAO 또는 회사에서 일하거나 바운티(보상)을 받거나 소프트웨어 버그 등을 찾아 ETH를 획득할 수 있습니다.",
+ "page-get-eth-daos-link-desc": "DAO 알아보기",
+ "page-get-eth-cex-link-desc": "거래소 목록 보기",
+ "page-get-eth-staking-link-desc": "스테이킹 자세히 알아보기",
"page-get-eth-dexs": "탈중앙화 거래소(DEX)",
"page-get-eth-dexs-desc": "탈중앙화 거래소는 ETH 및 다른 토큰을 위한 오픈 마켓입니다. 해당 거래소는 구매자와 판매자를 직접 연결합니다.",
"page-get-eth-dexs-desc-2": "거래소는 거래에서 재산을 보호할 때 신뢰받는 타사를 이용하는 대신, 코드를 사용합니다. 판매자의 ETH는 납부가 확인되었을 경우에만 이체됩니다. 이러한 유형의 코드를 스마트 계약이라고 합니다.",
- "page-get-eth-dexs-desc-3": "이는 중앙화 거래소에 비해 지리적 제한을 덜 받음을 의미합니다. 누군가가 당신이 원하는 것을 판매하고 귀하가 제공하는 지불 방식을 받아들인다면, 완료된 것입니다. DEX에서는 다른 토큰, PayPal 또는 현금 직거래를 통해 ETH를 구매할 수 있습니다.",
+ "page-get-eth-dexs-desc-3": "이는 중앙화 거래소에 비해 지리적 제약이 적다는 뜻입니다. 누군가가 내가 원하는 것을 팔고 있고 내가 사용할 수 있는 지불 수단을 받아들인다면 거래가 가능합니다.",
"page-get-eth-do-not-copy": "예제: 복사하지 마시오",
"page-get-eth-exchanges-disclaimer": "이 정보는 저희가 직접 수집한 것입니다. 잘못된 부분이 있으면 이메일을 보내주세요.",
- "page-get-eth-exchanges-empty-state-text": "ETH를 구입하기 위해 사용할 수 있는 지갑과 거래소의 목록을 확인하려면 거주하고 계신 국가를 입력하세요.",
+ "page-get-eth-exchanges-empty-state-text": "이용할 수 있는 거래소 목록을 보려면 거주 국가를 입력하세요.",
"page-get-eth-exchanges-except": "제외",
"page-get-eth-exchanges-header": "어느 국가에 살고 있습니까?",
"page-get-eth-exchanges-header-exchanges": "거래소",
"page-get-eth-exchanges-header-wallets": "지갑",
- "page-get-eth-exchanges-intro": "거래소와 지갑에는 암호화폐를 판매할 수 있는 곳이 제한되어 있습니다.",
+ "page-get-eth-exchanges-intro": "거래소는 암호화폐를 판매할 수 있는 지리적 규제를 받습니다. 이 목록은 국가별 영업 중인 거래소 서비스를 정리한 것입니다. 단, 목록에 포함되었다고 해서 서비스 제공이 보장되지는 않으므로 정확한 정보는 직접 확인하시길 바랍니다!",
"page-get-eth-exchanges-no-exchanges": "죄송합니다. 이 국가에는 ETH를 구매할 수 있는 거래소가 없습니다. 거래 가능한 거래소를 알고 있으면 이메일을 보내주십시오.",
- "page-get-eth-exchanges-no-exchanges-or-wallets": "죄송합니다. 이 국가에는 ETH를 구매할 수 있는 거래소나 지갑이 없습니다. 거래 가능한 거래소나 지갑을 알고 있으면 이메일을 보내주십시오.",
+ "page-get-eth-exchanges-no-exchanges-or-wallets": "죄송합니다. 이 국가에는 ETH를 구매할 수 있는 거래소가 없습니다. 거래 가능한 거래소를 알고 있으면 이메일을 보내주십시오.",
"page-get-eth-exchanges-no-wallets": "죄송합니다. 이 국가에는 ETH를 구매할 수 있는 지갑이 없습니다. 거래 가능한 지갑을 알고 계시면 이메일을 보내주십시오.",
"page-get-eth-exchanges-search": "사는 곳을 입력하세요...",
"page-get-eth-exchanges-success-exchange": "법적인 확인 절차로 인해 거래소 등록에 며칠이 걸릴 수 있습니다.",
@@ -36,28 +45,28 @@
"page-get-eth-hero-image-alt": "ETH 구매 히어로 이미지",
"page-get-eth-keep-it-safe": "당신의 ETH를 안전하게 지키기",
"page-get-eth-meta-description": "거주지에 따라 ETH를 구매하고 관리하는 방법",
- "page-get-eth-meta-title": "ETH 구매 방법",
+ "page-get-eth-meta-title": "ETH 획득 방법",
"page-get-eth-need-wallet": "DEX를 사용하시려면 지갑이 필요합니다.",
"page-get-eth-new-to-eth": "ETH는 처음이신가요? 시작하려면 개요를 읽어보세요.",
"page-get-eth-other-cryptos": "다른 암호화폐로 구매하기",
- "page-get-eth-protect-eth-desc": "ETH를 많이 구매하시려면 거래소가 아니라 소유하신 지갑에 보관하는 게 좋습니다. 거래소는 해커들의 목표가 될 수 있기 때문입니다. 해커가 접근하게 되면 재산을 잃을 수도 있습니다. 대신, 오직 귀하만이 자신의 지갑을 통제할 수 있습니다.",
- "page-get-eth-protect-eth-in-wallet": "지갑 안의 ETH 보호하기",
+ "page-get-eth-protect-eth-desc": "이더리움의 주요 기능 중 하나는 사용자가 본인의 계정을 직접 관리하여 원하는 대로 자신의 자산을 통제할 수 있다는 점입니다. 즉, 자산을 제3자에게 위탁하지 않아도 되며 관리인의 부정행위, 파산 또는 해킹 위험으로부터 보호받습니다. 단, 사용자 본인이 자기 책임하에 보안도 유지해야 합니다.",
+ "page-get-eth-protect-eth-in-wallet": "본인 지갑에 ETH 보관하기",
"page-get-eth-search-by-country": "국가별 검색",
- "page-get-eth-security": "하지만 이는 자산의 안전을 진지하게 보호해야 한다는 뜻이기도 합니다. ETH의 경우, 은행이 당신의 돈을 지켜주는 게 아니라 당신 자신이 지켜야 하니까요.",
+ "page-get-eth-security": "이는 자기 자산은 본인이 직접 빈틈없이 지켜야 한다는 뜻입니다. ETH를 이용하면 은행이나 다른 기업에 자산을 맡기는 것이 아니라 사용자 본인이 스스로에 대한 책임을 집니다.",
"page-get-eth-smart-contract-link": "스마트 계약에 대한 자세한 정보",
"page-get-eth-swapping": "당신의 토큰을 다른 사람의 ETH와 교환하세요. 역으로도 가능합니다.",
"page-get-eth-try-dex": "탈중앙화 거래소 사용해 보기",
"page-get-eth-use-your-eth": "귀하의 ETH 사용",
"page-get-eth-use-your-eth-dapps": "이제 ETH를 소유하셨으니 이더리움 애플리케이션(디앱스)을 확인해보세요. 금융, 소셜 미디어, 게임 등 다양한 카테고리를 위한 디앱스가 있습니다.",
"page-get-eth-wallet-instructions": "지갑 설명서 따르기",
- "page-get-eth-wallet-instructions-lost": "지갑에 대한 접근권을 잃어버리면 본인의 자산에 접근할 수 없게 됩니다. 지갑에는 이를 방지하기 위한 설명서가 제공됩니다. 주의하여 그 내용을 따라주십시오. 대부분의 경우, 지갑에 대한 접근권을 잃어버리면 아무도 도와줄 수 없습니다.",
+ "page-get-eth-wallet-instructions-lost": "계정에 대한 액세스 권한을 분실하면 자금에 액세스할 권한도 잃습니다. 지갑은 이를 방지할 수 있는 지침을 제공합니다. 지침을 꼼꼼하게 읽으세요. 대부분의 경우 계정의 액세스 권한을 분실하면 그 누구도 도와줄 수 없습니다.",
"page-get-eth-wallets": "지갑",
"page-get-eth-wallets-link": "지갑에 대해 자세히 알아보기",
"page-get-eth-wallets-purchasing": "일부 지갑은 직불 카드/신용 카드, 계좌 이체나 Apple Pay로도 암호화폐를 구매할 수 있습니다. 지리적 제한이 적용됩니다.",
- "page-get-eth-warning": "이 탈중앙화 거래소는 어느 정도 ETH가 필요하기 때문에 초보자에게 적합하지 않습니다.",
+ "page-get-eth-warning": "이러한 DEX를 이용하려면 일정량의 ETH가 필요하기 때문에 초보자에게 적합하지 않습니다. 이는 단지 예시일 뿐이며 보장된 상품이 아닙니다. 정보는 본인이 직접 찾아야 합니다!",
"page-get-eth-what-are-DEX's": "DEX란 무엇인가요?",
"page-get-eth-whats-eth-link": "ETH란 무엇인가요?",
- "page-get-eth-where-to-buy-desc": "거래소나 지갑에서 직접 ETH를 구매할 수 있습니다.",
+ "page-get-eth-where-to-buy-desc": "ETH를 벌거나 다른 사람으로부터 받거나 거래소 및 앱에서 매수할 수 있습니다.",
"page-get-eth-where-to-buy-desc-2": "거주지에 따라 사용 가능한 서비스를 확인하세요.",
"page-get-eth-where-to-buy-title": "ETH 구매처",
"page-get-eth-your-address": "귀하의 ETH 주소",
diff --git a/src/intl/ko/page-languages.json b/src/intl/ko/page-languages.json
index d77b6080687..231ce4de6d5 100644
--- a/src/intl/ko/page-languages.json
+++ b/src/intl/ko/page-languages.json
@@ -55,7 +55,7 @@
"language-mr": "마라티어",
"language-ms": "말레이어",
"language-nb": "노르웨이어",
- "language-ne-np": "Nepali",
+ "language-ne-np": "네팔어",
"language-nl": "네덜란드어",
"language-pcm": "나이지리아 피진어",
"language-fil": "필리핀어",
diff --git a/src/intl/ko/page-layer-2.json b/src/intl/ko/page-layer-2.json
index 646bce15f3d..9e26a33a7b3 100644
--- a/src/intl/ko/page-layer-2.json
+++ b/src/intl/ko/page-layer-2.json
@@ -123,6 +123,7 @@
"zksync-description": "zkSync는 Matter Labs에서 개발한 사용자 중심의 영지식 롤업 플랫폼입니다. 이더리움을 위한 확장 솔루션이며 이미 이더리움 메인넷에서 사용되고 있습니다. 결제, 토큰 교환 및 NFT 발행을 지원합니다.",
"zkspace-description": "ZKSpace 플랫폼은 세 가지 주요 부분인 ZKSwap(ZK롤업 기술을 활용한 레이어 2 AMM DEX), ZKSquare(지급결제 서비스), ZKSea(NFT 마켓플레이스)로 구성됩니다.",
"aztec-description": "Aztec 네트워크는 이더리움의 첫 번째 비공개 영지식 롤업이며 분산형 애플리케이션이 정보를 보호하고 확장할 수 있도록 합니다.",
+ "starknet-description": "스타크넷은 검증 롤업 레이어2입니다. 이는 많은 양을 처리할 수 있으며 가스 비용이 저렴하고 이더리움 레이어1의 보안 수준을 유지합니다.",
"layer-2-note": "참고:",
"layer-2-ecosystem-portal": "생태계 포털",
"layer-2-token-lists": "토큰 목록",
diff --git a/src/intl/ko/page-wallets-find-wallet.json b/src/intl/ko/page-wallets-find-wallet.json
index 66c6304db15..d15a119b2e2 100644
--- a/src/intl/ko/page-wallets-find-wallet.json
+++ b/src/intl/ko/page-wallets-find-wallet.json
@@ -7,7 +7,6 @@
"page-find-wallet-meta-title": "이더리움 지갑 찾기",
"page-find-wallet-title": "지갑 찾기",
"page-find-wallet-try-removing": "한 개 또는 두 개의 기능을 제거해 보세요.",
- "page-find-wallet-choose-to-compare": "비교하도록 선택",
"page-stake-eth": "ETH 스테이킹하기",
"page-find-wallet-open-source": "오픈 소스",
"page-find-wallet-open-source-desc": "오픈소스 소프트웨어를 사용하면 누구든지 애플리케이션의 무결성과 보안을 감사할 수 있습니다.",
@@ -16,8 +15,6 @@
"page-find-wallet-non-custodial-desc": "개인 키를 제어하지 않는 지갑",
"page-find-wallet-hardware-wallet-support": "하드웨어 지갑 지원",
"page-find-wallet-hardware-wallet-support-desc": "하드웨어 지갑에 연결하여 보안을 강화할 수 있는 지갑",
- "page-find-wallet-walletconnect": "WalletConnect",
- "page-find-wallet-walletconnect-desc": "디앱에 연결하기 위해 WalletConnect를 지원하는 지갑",
"page-find-wallet-rpc-importing": "RPC 가져오기",
"page-find-wallet-rpc-importing-desc": "다른 노드 또는 네트워크에 연결할 수 있도록 사용자 지정 RPC 엔드포인트를 지원하는 지갑",
"page-find-wallet-nft-support": "NFT 지원",
@@ -36,8 +33,6 @@
"page-find-wallet-ens-support-desc": "이더리움 네임 서비스(ENS)를 지원하는 지갑",
"page-find-wallet-token-importing": "토큰 가져오기",
"page-find-wallet-token-importing-desc": "지갑에서 사용할 ERC-20 토큰 가져오기",
- "page-find-wallet-fee-optimization": "수수료 최적화",
- "page-find-wallet-fee-optimization-desc": "최적화된 가스 수수료에 대한 2종 거래 및 미사용 가스에 대한 수수료 환불을 지원",
"page-find-wallet-buy-crypto": "암호화폐 구매",
"page-find-wallet-buy-crypto-desc": "지갑에서 직접 법정 화폐로 암호화폐 구매 \n *참고: 암호화폐 구매는 지역별로 다를 수 있음",
"page-find-wallet-sell-for-fiat": "법정 화폐에 대해 판매",
@@ -46,7 +41,6 @@
"page-find-wallet-multisig-desc": "거래를 승인하기 위해 다중 서명이 필요한 지갑",
"page-find-wallet-social-recovery": "소셜 복구",
"page-find-wallet-social-recovery-desc": "보호자가 스마트 계약 지갑의 서명 키를 변경할 수 있는 지갑",
- "page-find-wallet-token-support": "토큰 지원",
"page-find-wallet-features": "기능",
"page-find-wallet-security": "보안",
"page-find-wallet-smart-contract": "스마트 계약",
@@ -63,7 +57,6 @@
"page-find-wallet-chromium": "Chromium",
"page-find-wallet-firefox": "Firefox",
"page-find-wallet-hardware": "하드웨어",
- "page-find-wallet-hardware-desc": "하드웨어 지갑",
"page-find-wallet-new-to-crypto-title": "암호화폐 신규 사용자",
"page-find-wallet-new-to-crypto-desc": "귀하는 첫 번째 지갑을 찾는 신규 사용자입니다.",
"page-find-wallet-nfts-title": "NFT",
@@ -74,21 +67,14 @@
"page-find-wallet-finance-desc": "DeFi를 사용하고 있으며 DeFi 애플리케이션에 연결할 수 있는 지갑을 원하는 사용자입니다.",
"page-find-wallet-developer-title": "개발자",
"page-find-wallet-developer-desc": "귀하는 개발자이며 디앱을 개발하고 테스트하는 데 도움이 되는 지갑이 필요합니다.",
- "page-find-wallet-persona-desc": "사용자 유형과 일치하는 프로필을 선택하고 지갑 목록을 필터링합니다.",
"page-find-wallet-filters": "필터",
"page-find-wallet-active": "활성",
- "page-find-wallet-profile-filters": "프로필 필터",
- "page-find-wallet-feature-filters": "기능 필터",
"page-find-wallet-footnote-1": "이 페이지에 나열된 지갑은 공식적으로 보증된 것이 아니며 정보 제공 목적으로만 제공됩니다.",
"page-find-wallet-footnote-2": "해당 설명은 지갑 프로젝트에서 직접 제공했습니다.",
"page-find-wallet-footnote-3": "리스팅 정책의 기준에 따라 이 페이지에 제품을 추가합니다. 지갑을 추가하려면 GitHub에 문제를 제출하세요.",
"page-find-wallet-mobile": "모바일",
- "page-find-wallet-mobile-desc": "모바일 앱이 있는 지갑",
"page-find-wallet-desktop": "데스크톱",
- "page-find-wallet-desktop-desc": "데스트톱 앱이 있는 지갑",
"page-find-wallet-browser": "브라우저",
- "page-find-wallet-browser-desc": "브라우저 확장 기능이 있는 지갑",
"page-find-wallet-device": "기기",
- "page-find-choose-to-compare": "비교하도록 선택",
- "page-find-wallet-choose-features": "기능 선택"
+ "page-find-wallet-reset-filters": "필터 초기화"
}
diff --git a/src/intl/lt/common.json b/src/intl/lt/common.json
index 1acb09d4eb8..8699739705d 100644
--- a/src/intl/lt/common.json
+++ b/src/intl/lt/common.json
@@ -1,28 +1,70 @@
{
"about-ethereum-org": "Apie ethereum.org",
"about-us": "Apie mus",
+ "adding-desci-projects": "„Desci“ projektų pridėjimas",
+ "adding-developer-tools": "Kūrėjo įrankių pridėjimas",
+ "adding-exchanges": "Keityklų pridėjimas",
+ "adding-glossary-terms": "Žodyno terminų pridėjimas",
+ "adding-staking-products": "Palaikymo produktų pridėjimas",
+ "adding-wallets": "Piniginių pridėjimas",
+ "account-abstraction": "Sąskaitos abstrakcija",
+ "acknowledgements": "Padėkos",
"aria-toggle-search-button": "Rodyti paieškos mygtuką",
"aria-toggle-menu-button": "Rodyti meniu mygtuką",
"beacon-chain": "Švyturio grandinė",
"bridges": "Blokų grandinės tiltai",
+ "bug-bounty": "Klaidų atlygis",
+ "build": "Kurti",
+ "build-menu": "Kūrimo meniu",
+ "clear": "Išvalyti",
+ "close": "Uždaryti",
"community": "Bendruomenė",
"community-hub": "Bendruomenės centras",
"community-menu": "Bendruomenės meniu",
"contact": "Susisiekti",
+ "content-buckets": "Turinio grupės",
+ "content-resources": "Turinio ištekliai",
+ "content-standardization": "Turinio standartizavimas",
"contributing": "Prisidėkite",
"contributors": "Pagalbininkai",
"contributors-thanks": "Visiems prisidėjusiems prie šio puslapio – ačiū!",
"cookie-policy": "Slapukų naudojimo politika",
"copied": "Nukopijuota",
"copy": "Kopijuoti",
+ "danksharding": "Dankšardingas",
+ "dao-page": "DAO - Decentralizuotos autonominės organizacijos",
"dark-mode": "Tamsus",
"data-provided-by": "Duomenų šaltinis:",
- "decentralized-applications-dapps": "Decentralizuotos programėlės (dapps'ai)",
+ "decentralized-applications-dapps": "Dapps'ai - Decentralizuotos programėlės",
+ "decentralized-identity": "Decentralizuota tapatybė",
+ "decentralized-social-networks": "Decentralizuoti socialiniai tinklai",
+ "decentralized-science": "„DeSci“ - Decentralizuotasis mokslas",
+ "description": "Navigacijos elemento aprašymas",
+ "defi-page": "DeFi - Decentralizuoti finansai",
+ "design": "Projektavimas",
+ "design-principles": "Projektavimo principai",
"devcon": "Devcon",
"developers": "Kūrėjams",
"developers-home": "Kūrėjų pagrindinis puslapis",
"docs": "Dokumentai",
+ "docsearch-to-select": "Kaip pasirinkti",
+ "docsearch-to-navigate": "Kaip surasti",
+ "docsearch-to-close": "Kaip uždaryti",
+ "docsearch-search-by": "Ieškoti pagal",
+ "docsearch-start-recent-searches-title": "Naujausia",
+ "docsearch-start-no-recent-searches": "Nėra naujausių paieškų",
+ "docsearch-start-save-recent-search": "Įrašyti šią paiešką",
+ "docsearch-start-remove-recent-search": "Šalinti šią paiešką iš istorijos",
+ "docsearch-start-favorite-searches": "Mėgstama",
+ "docsearch-start-remove-favorite-search": "Šalinti šią paiešką iš mėgstamų",
+ "docsearch-no-results-text": "Nepavyko rasti",
+ "docsearch-no-results-suggested-query": "Pabandykite ieškoti",
+ "docsearch-no-results-missing": "Ar manote, kad ši užklausa bus rezultatyvi?",
+ "docsearch-no-results-missing-link": "Praneškite mums.",
+ "docsearch-error-title": "Nepavyksta gauti rezultatų",
+ "docsearch-error-help": "Reikėtų patikrinti ryšį su tinklu.",
"documentation": "Dokumentacija",
+ "down": "Žemyn",
"ecosystem": "Ekosistema",
"edit-page": "Redaguoti puslapį",
"ef-blog": "Ethereum fondo tinklaraštis",
@@ -32,6 +74,8 @@
"enterprise-menu": "Verslo meniu",
"esp": "Ekosistemos palaikymo programa",
"eth-current-price": "Dabartinė ETH kaina (USD)",
+ "ethereum-basics": "Ethereum pagrindai",
+ "ethereum-bug-bounty": "„Ethereum“ atlygio už aptiktus riktus programa",
"consensus-when-shipping": "Kada bus išsiųstas?",
"ethereum-upgrades": "Ethereum atnaujinimai",
"ethereum-brand-assets": "Ethereum prekių ženklo turtas",
@@ -42,20 +86,37 @@
"ethereum-glossary": "Ethereum žodynėlis",
"ethereum-governance": "Ethereum valdymas",
"ethereum-logo": "Ethereum logotipas",
+ "ethereum-roadmap": "„Ethereum“ veiksmų gairės",
+ "ethereum-protocol": "„Ethereum“ protokolas",
"ethereum-security": "Ethereum sauga ir sukčiavimų prevencija",
"ethereum-support": "Ethereum palaikymas",
"ethereum-wallets": "Ethereum piniginės",
"ethereum-whitepaper": "Ethereum baltoji knyga",
+ "feedback-widget-prompt": "Ar šis puslapis naudingas?",
+ "feedback-card-prompt-page": "Ar šis puslapis padėjo?",
+ "feedback-card-prompt-article": "Ar šis straipsnis padėjo?",
+ "feedback-card-prompt-tutorial": "Ar ši mokomoji programa padėjo?",
+ "feedback-widget-thank-you-title": "Dėkojame už atsiliepimą!",
+ "feedback-widget-thank-you-subtitle": "Padarykite šį puslapį dar geresnį atsakydami į kelis klausimus.",
+ "feedback-widget-thank-you-subtitle-ext": "Jeigu reikia pagalbos, galite kreiptis į mūsų bendruomenę svetainėje „Discord“.",
+ "feedback-widget-thank-you-timing": "2–3 min.",
+ "feedback-widget-thank-you-cta": "Atverti trumpą anketą",
"find-wallet": "Rasti piniginę",
+ "future-proofing": "Pritaikymas ateičiai",
"get-eth": "Gauti ETH",
"get-involved": "Prisijunk",
"get-started": "Pradėti",
"grants": "Dotacijos",
"grant-programs": "Ekosistemos dotacijų programos",
- "guides-and-resources": "Bendruomenės gairės ir ištekliai",
+ "guides": "Gairės",
+ "guides-hub": "Aiškinamosios gairės",
"history-of-ethereum": "Ethereum istorija",
"home": "Pagrindinis puslapis",
"how-ethereum-works": "Kaip veikia Ethereum",
+ "how-to-revoke-token-access": "Kaip atšaukti išmaniosios sutarties prieigą prie jūsų kriptovaliutos atsargų",
+ "how-to-swap-tokens": "Kaip sukeisti žetonus",
+ "how-to-use-a-bridge": "Kaip susieti žetonus su 2 sluoksniu",
+ "how-to-use-a-wallet": "Kaip naudoti piniginę",
"image": "paveikslėlis",
"in-this-section": "Šiame skirsnyje",
"individuals": "Asmenims",
@@ -66,41 +127,168 @@
"languages": "Kalbos",
"last-24-hrs": "Pastarosios 24 valandos",
"last-edit": "Paskutinis koreguotas",
+ "layer-2": "2 sluoksnis",
"learn": "Sužinoti",
"learn-by-coding": "Mokykitės kurdami kodus",
+ "learn-hub": "Mokymosi centras",
"learn-menu": "Sužinoti meniu",
"learn-more": "Sužinoti daugiau",
"less": "Mažiau",
"light-mode": "Šviesus",
- "listing-policy-disclaimer": "Visi šiame puslapyje išvardyti produktai nėra oficialiai patvirtinti ir yra pateikti tik informaciniais tikslais. Jei norite pridėti produktą ar pateikti atsiliepimą apie politiką, iškelkite klausimą GitHub platformoje.",
+ "listing-policy-disclaimer": "Visi šiame puslapyje išvardyti produktai nėra oficialiai patvirtinti ir yra pateikti tik informaciniais tikslais. Jei norite pridėti produktą ar pateikti atsiliepimą apie politiką, iškelkite klausimą Github platformoje.",
"loading": "Įkeliama...",
"loading-error": "Įkėlimo klaida.",
"loading-error-refresh": "Klaida, prašome atnaujinti.",
+ "loading-error-try-again-later": "Nepavyksta įkelti duomenų. Pabandykite vėliau.",
"logo": "logotipas",
"mainnet-ethereum": "Mainnet Ethereum",
+ "merge": "Sulieti",
"more": "Daugiau",
+ "nav-about-description": "Etereum bendruomenei skirtas viešas, atvirojo šaltinio projektas",
+ "nav-advanced-description": "Įvaldykite sudėtingesnes temas",
+ "nav-advanced-label": "Pažengusiems",
+ "nav-basics-description": "Supraskite Ethereum pagrindus",
+ "nav-basics-label": "Pagrindai",
+ "nav-bridges-description": "Web3 išaugo į pirminių L1 blokų grandinių ir L2 dydžio pritaikymo sprendimų ekosistemą",
+ "nav-builders-home-description": "Kūrėjų Ethereum vadovas. Sukurta kūrėjų kūrėjams",
+ "nav-builders-home-label": "Kūrėjų pagrindinis puslapis",
+ "nav-contribute-description": "Norėdami padėti, laikykitės šių rekomendacijų",
+ "nav-contribute-label": "Prisidėkite prie ethereum.org",
+ "nav-dao-description": "Narių bendruomenės be centralizuoto valdymo",
+ "nav-dapps-description": "Atraskite turtingą taikomųjų programų ekosistemą naudodami Ethereum",
+ "nav-defi-description": "Visuotinė, atvira tradicinės finansų rinkos alternatyva",
+ "nav-desci-description": "Visuotinė, atvira esamos mokslinės sistemos alternatyva",
+ "nav-desoc-description": "Socialinės sąveikos ir turinio kūrimo platformos blokų grandinių pagrindu",
+ "nav-developers-docs": "Kūrėjų dokumentai",
+ "nav-developers": "Kūrėjams",
+ "nav-did-description": "Sukurkite ir turėkite savo unikalius decentralizuotus identifikatorius",
+ "nav-docs-description": "Dokumentai, padėsiantis jums suprasti Ethereum platformą ir joje kurti",
+ "nav-docs-design-description": "Unikalaus web3 dizaino iššūkių aprašymas, geriausios praktikos ir naudotojų tyrimo įžvalgos",
+ "nav-docs-design-label": "UX/UI dizaino pradmenys",
+ "nav-docs-foundation-description": "Pagrindiniai dalykai, reikalingi kuriant Ethereum platformoje",
+ "nav-docs-overview-description": "Kūrėjų dokumentų pagrindinis puslapis",
+ "nav-docs-stack-description": "Supraskite Ethereum saugyklos informaciją",
+ "nav-eip-description": "Standartai, pagal kuriuos apibūdinamos naujos savybės ir procesai",
+ "nav-eip-label": "Pasiūlymai, kaip tobulinti Ethereum",
+ "nav-emerging-description": "Susipažinkite su naujausiais Ethereum naudotojų atvejais",
+ "nav-enterprise-description": "Ethereum verslo taikomosios programos",
+ "nav-ethereum-org-description": "Ši interneto svetainė pagrįsta bendruomenės bendradarbiavimu – prisijunkite ir prisidėkite ir jūs",
+ "nav-ethereum-wallets-description": "Taikomoji programa, skirta susieti su Ethereum paskyra",
+ "nav-events-description": "Decentralizuotas požiūris ir laisvė dalyvauti visiems",
+ "nav-events-irl-description": "Kas mėnesį gyvai ir nuotoliniu būdu organizuojami reikšmingi Ethereum renginiai",
+ "nav-events-label": "Bendruomenės ir renginiai",
+ "nav-events-online-description": "Šimtai tūkstančių Ethereum entuziastų aktyviai dalyvauja šiose internetinėse bendruomenėse",
+ "nav-find-wallet-description": "Piniginėse galite naudoti kriptovaliutą",
+ "nav-find-wallet-label": "Pasirinkite piniginę",
+ "nav-gas-fees-description": "Kaip apskaičiuojami vidinės Ethereum kriptovaliutos mokesčiai?",
+ "nav-get-eth-description": "Kad galėtumėte naudoti Ethereum taikomąsias programas, jums reikia eterių (ETH – vidinė Ethereum kriptovaliuta)",
+ "nav-get-started-description": "Pirmieji žingsniai naudojant Ethereum",
+ "nav-governance-description": "Ethereum protokolo naujinimo procesas",
+ "nav-governance-label": "Valdymas",
+ "nav-grants-description": "Mūsų bendruomenės sudarytas projektų, kuriuose teikiamos dotacijų finansavimo programos, sąrašas",
+ "nav-guide-create-account-description": "Ethereum paskyrą bet kada gali susikurti visi naudotojai, turintys piniginės taikomąją programą",
+ "nav-guide-revoke-access-description": "Saugiai valdykite išmaniąsias sutartis ir taikomąsias programas Ethereum ekosistemoje",
+ "nav-guide-revoke-access-label": "Kaip atšaukti prieigą prie išmaniųjų sutarčių?",
+ "nav-guide-use-wallet-description": "Sužinokite, kaip valdyti visas pagrindines piniginės funkcijas",
+ "nav-guide-use-wallet-label": "Kaip naudoti piniginę",
+ "nav-guides-description": "Praktiški detalūs pradiniai nurodymai",
+ "nav-guides-label": "Aiškinamosios gairės",
+ "nav-history-description": "Visų svarbiausių išsišakojimų ir naujinių tvarkaraštis",
+ "nav-history-label": "Ethereum techninė istorija",
+ "nav-layer-2-description": "Ethereum pigesni ir spartesni sandoriai",
+ "nav-learn-by-coding-description": "Įrankiai, kurie padeda jums eksperimentuoti Ethereum platformoje",
+ "nav-local-env-description": "Pasirinkite ir sukurtkite savo Ethereum kūrimo saugyklą",
+ "nav-mainnet-description": "Verslo blokų grandinių taikomąsias programas galima sukurti viešame tinkle Ethereum Mainnet",
+ "nav-nft-description": "Būdas pateikti viską, kas unikalu, kaip Ethereum pagrįstą investiciją",
+ "nav-open-research-description": "Viena iš pagrindinių Ethereum stiprybių – aktyvi tyrėjų bendruomenė",
+ "nav-open-research-label": "Atverti tyrimą",
+ "nav-overview-description": "Viskas apie Ethereum švietimą",
+ "nav-overview-label": "Apžvalga",
+ "nav-participate-overview-description": "Dalyvavimo galimybių apžvalga",
+ "nav-primary": "Pagrindinis",
+ "nav-quizzes-description": "Pasitikrinkite, ar gerai išmanote Ethereum ir kriptovaliutas",
+ "nav-quizzes-label": "Patikrinkite savo žinias",
+ "nav-refi-description": "Alternatyvi ekonominė sistema, sukurta regeneravimo principu",
+ "nav-research-description": "Ethereum tobulinimo procesai",
+ "nav-research-label": "Tyrimai ir plėtra",
+ "nav-roadmap-description": "Kelias link didesnio Ethereum išplečiamumo, saugumo ir tvarumo",
+ "nav-roadmap-future-description": "Ethereum, kaip patikimo ir decentralizuoto tinklo, įtvirtinimas",
+ "nav-roadmap-future-label": "Pritaikymas ateičiai",
+ "nav-roadmap-label": "Planas",
+ "nav-roadmap-scaling-description": "Tinklo naujiniai, siekiant dar labiau sumažinti sandorių išlaidas ir greitį",
+ "nav-roadmap-security-description": "Užtikrinimas, kad Ethereum platforma ir ateityje išliktų atspari įvairiems išpuoliams",
+ "nav-roadmap-security-label": "Didesnis saugumas",
+ "nav-roadmap-ux-description": "Ethereum naudojimas turi būti paprastesnis",
+ "nav-run-a-node-description": "Tapkite visiškai nepriklausomi ir padėkite apsaugoti tinklą",
+ "nav-security-description": "Susipažinkite su geriausiomis kriptovaliutos naudojimo praktikomis",
+ "nav-smart-contracts-description": "Pagrindiniai Ethereum ekosistemos blokai",
+ "nav-stablecoins-description": "Stablecoins yra Ethereum žetonai, kurių vertė išlieka fiksuota",
+ "nav-stake-description": "Gaukite atlygį už Ethereum saugumo didinimą",
+ "nav-stake-label": "Palaikyti",
+ "nav-staking-home-description": "Skirtingų palaikymo parinkčių apžvalga",
+ "nav-staking-pool-description": "Palaikykite ir gaukite bet kokios ETH sumos atlygį prisijungdami prie kitų",
+ "nav-staking-pool-label": "Sutelktasis palaikymas",
+ "nav-staking-saas-label": "Palaikymas teikiant paslaugą",
+ "nav-staking-solo-label": "Savarankiškas palaikymas",
+ "nav-start-building-description": "Naudinga informacija naujokams",
+ "nav-translation-program-description": "Bendros pastangos išversti puslapį ethereum.org į visas kalbas",
+ "nav-tutorials-description": "Sudarytas bendruomenės vadovėlių sąrašas",
+ "nav-use-cases-description": "Atraskite kitokio Ethereum panaudojimo idėjų",
+ "nav-what-is-ether-description": "Ethereum taikomųjų programų valiuta",
+ "nav-what-is-ethereum-description": "Supraskite, kodėl Ethereum yra ypatinga platforma",
+ "nav-what-is-web3-label": "Kas yra „Web3“?",
+ "nav-what-is-web3-description": "Centralizuotų monopolijų, diktuojančių taisykles, alternatyva",
+ "nav-whitepaper-description": "Originali Ethereum baltoji knyga, kurią 2014 m. parašė Vitalik Buterin",
+ "nav-zkp-description": "Būdas įrodyti teiginio pagrįstumą, neatskleidžiant paties teiginio",
+ "nft-page": "NFT - Nekeičiamieji žetonai",
+ "nfts": "NFT žetonai",
"no": "Ne",
"on-this-page": "Šiame puslapyje",
+ "open-research": "Atverti tyrimą",
+ "page-developers-aria-label": "Kūrėjų meniu",
+ "page-index-meta-title": "Pagrindinis puslapis",
"page-last-updated": "Puslapis paskutinį kartą atnaujintas",
+ "participate-menu": "Dalyvavimo meniu",
+ "pbs": "Siūlytojo-kūrėjo atskyrimas",
+ "pools": "Sutelktasis palaikymas",
"privacy-policy": "Privatumo politika",
"private-ethereum": "Privatus Ethereum",
+ "product-disclaimer": "Produktų ir paslaugų sąrašas sudarytas tam, kad „Ethereum“ bendruomenei būtų patogiau. Jei produktas ar paslauga įtraukiamas (-a), tai nereiškia, kad jį (ją) patvirtino interneto svetainės ethereum.org komanda arba „Ethereum“ fondas.",
+ "quizzes-title": "Apklausų centras",
+ "quizzes": "Apklausos",
"refresh": "Prašome atnaujinti puslapį.",
+ "return-home": "grįžti į pradžią",
+ "roadmap": "„Ethereum“ veiksmų gairės",
+ "research": "Tyrimai",
+ "research-menu": "Tyrimų meniu",
+ "resources": "Vertimo ištekliai",
"run-a-node": "Paleisti mazgą",
+ "rollup-component-developer-docs": "Kūrėjo dokumentai",
+ "rollup-component-technology-and-risk-summary": "Technologijų ir rizikų suvestinė",
+ "scaling": "Dydžio pritaikymas",
+ "saas": "Palaikymo paslauga",
"search": "Paieška",
+ "search-ethereum-org": "Ieškoti svetainėje ethereum.org",
+ "secret-leader-election": "Slaptieji lyderio rinkimai",
"search-box-blank-state-text": "Ieškok!",
"search-eth-address": "Panašu, kad tai Ethereum adresas. Mes neteikiame duomenų, susijusių su konkrečiais adresais. Bandykite ieškoti duomenų blokų naršyklėje Etherscan",
"search-no-results": "Rezultatų, atitinkančių paieškos užklausą, nerasta",
+ "security": "Saugumas",
+ "single-slot-finality": "Baigtumas per tą patį laikotarpį",
+ "statelessness": "Bepilietybė",
"see-contributors": "Žiūrėti pagalbininkus",
- "set-up-local-env": "Susikurti vietinę aplinką",
- "sharding": "Padalijimo grandinės",
+ "set-up-local-env": "Susikurkite vietinę aplinką",
+ "sharding": "Skirstymas",
"show-all": "Rodyti visus",
"show-less": "Rodyti mažiau",
"site-description": "Ethereum yra globali, decentralizuota platforma, skirta pinigų ir naujo tipo programoms. Ethereum platformoje galite sukurti pinigus valdantį kodą ir kurti programas, prieinamas visame pasaulyje.",
- "site-title": "ethereum.org",
"skip-to-main-content": "Pereiti prie pagrindinio turinio",
"smart-contracts": "Išmaniosios sutartys",
"stablecoins": "Stablecoins",
"staking": "Palaikymas",
+ "start-here": "Pradėti čia",
+ "solo": "Savarankiškas palaikymas",
+ "support": "Parama",
"terms-of-use": "Naudojimosi sąlygos",
"translation-banner-body-new": "Šį puslapį matote anglų kalba, nes jis dar nėra išverstas. Padėkite mums išversti šį turinį.",
"translation-banner-body-update": "Jau yra nauja šio puslapio versija, bet kol kas tik anglų kalba. Padėkite mums išversti naujausią versiją.",
@@ -108,17 +296,25 @@
"translation-banner-button-translate-page": "Išversti puslapį",
"translation-banner-title-new": "Padėkite išversti šį puslapį",
"translation-banner-title-update": "Padėkite atnaujinti šį puslapį",
+ "translation-banner-no-bugs-title": "Čia riktų nėra!",
+ "translation-banner-no-bugs-content": "Šis puslapis neverčiamas. Kol kas jį tyčia paliekame anglų kalba.",
+ "translation-banner-no-bugs-dont-show-again": "Daugiau nerodyti",
+ "translation-program": "Vertimo programa",
+ "try-using-search": "Norėdami surasti norimą dalyką išbandykite paieškos funkciją arba",
"tutorials": "Pamokos",
+ "up": "Aukštyn",
+ "use": "Naudojimas",
"use-ethereum": "Naudoti Ethereum",
"use-ethereum-menu": "Naudoti Ethereum meniu",
+ "use-menu": "Naudojimo meniu",
+ "verkle-trees": "„Verkle“ medžiai",
"wallets": "Piniginės",
+ "we-couldnt-find-that-page": "Nepavyko rasti šio puslapio",
+ "web3": "Kas yra „Web3“?",
"website-last-updated": "Svetainė paskutinį kartą atnaujinta",
"what-is-ether": "Kas yra Ether (ETH)?",
"what-is-ethereum": "Kas yra Ethereum?",
- "defi-page": "Decentralizuoti finansai (DeFi)",
- "dao-page": "Decentralizuotos autonominės organizacijos (DAO)",
- "nft-page": "Nekeičiamieji žetonai (NFT)",
+ "withdrawals": "Palaikymo lėšų atsiėmimas",
"yes": "Taip",
- "page-index-meta-title": "Pagrindinis puslapis",
- "page-developers-aria-label": "Kūrėjų meniu"
+ "zero-knowledge-proofs": "Įrodymas be žinių"
}
diff --git a/src/intl/lt/page-languages.json b/src/intl/lt/page-languages.json
index 72c247c692f..e07499d898d 100644
--- a/src/intl/lt/page-languages.json
+++ b/src/intl/lt/page-languages.json
@@ -1,17 +1,32 @@
{
- "page-languages-h1": "Kalbos palaikymas",
+ "page-languages-h1": "Vertimas įvairiomis kalbomis",
+ "page-languages-interested": "Ar norite prisidėti?",
+ "page-languages-learn-more": "Daugiau informacijos apie mūsų vertimo programą",
+ "page-languages-meta-desc": "Visų svetainės ethereum.org kalbų ištekliai ir informacija apie taip, kaip padirbėti vertėju.",
+ "page-languages-meta-title": "ethereum.org vertimas į kitas kalbas",
+ "page-languages-p1": "„Ethereum“ – tai tarptautinis projektas, todėl labai svarbu, kad svetainė ethereum.org būtų prieinama visiems įvairių tautybių žmonėms, kalbantiems įvairiomis kalbomis. Mūsų bendruomenė deda daug pastangų, kad šis sumanymas virstų tikrove.",
+ "page-languages-translations-available": "Svetainė ethereum.org išversta į toliau nurodytas kalbas",
+ "page-languages-resources-paragraph": "Mes ne tik verčiame svetainės ethereum.org turinį, bet ir rengiame",
+ "page-languages-resources-link": "prižiūrimą „Ethereum“ išteklių sąrašą įvairiausiomis kalbomis",
+ "page-languages-want-more-header": "Ar norite, kad informacija svetainėje ethereum.org būtų pateikiama kita kalba?",
"page-languages-want-more-link": "Vertimo programa",
+ "page-languages-want-more-paragraph": "ethereum.org vertėjai stengiasi puslapius išversti į kuo daugiau kalbų. Norėdami sužinoti, su kuo jie dirba dabar, arba norėdami užsiregistruoti į jų komandą, paskaitykite apie mūsų",
"page-languages-filter-label": "Filtrų sąrašas",
"page-languages-filter-placeholder": "Filtro tipas",
"page-languages-browser-default": "Numatytoji naršyklė",
"page-languages-translated": "išversta",
"page-languages-words": "žodžiai",
"page-languages-recruit-community": "Padėkite mums išversti puslapį ethereum.org.",
+ "langauge-am": "Amharų",
"language-ar": "Arabų",
+ "language-az": "Azerbadžaniečių",
+ "langauge-be": "Baltarusų",
"language-bg": "Bulgarų",
"language-bn": "Bengalų",
+ "language-bs": "Bosnių",
"language-ca": "Katalonų",
"language-cs": "Čekų",
+ "language-da": "Danų",
"language-de": "Vokiečių",
"language-el": "Graikų",
"language-en": "Anglų",
@@ -19,21 +34,31 @@
"language-fa": "Persų",
"language-fi": "Suomių",
"language-fr": "Prancūzų",
+ "language-gl": "Galisų",
+ "language-gu": "Gudžaratų",
+ "language-he": "Hebrajų",
"language-hi": "Hindi",
"language-hr": "Kroatų",
"language-hu": "Vengrų",
+ "language-hy-am": "Armėnų",
"language-id": "Indoneziečių",
"language-ig": "Igbų",
"language-it": "Italų",
"language-ja": "Japonų",
"language-ka": "Kartvelų",
+ "language-kk": "Kazachų",
+ "language-km": "Khmerų",
+ "language-kn": "Kanadų",
"language-ko": "Korėjiečių",
"language-lt": "Lietuvių",
"language-ml": "Malajalių\n\n",
"language-mr": "Marathų",
"language-ms": "Malajų ",
"language-nb": "Norvegų",
+ "language-ne-np": "Nepaliečių",
"language-nl": "Olandų",
+ "language-pcm": "Nigerijos pidžinų",
+ "language-fil": "Filipiniečių",
"language-pl": "Lenkų",
"language-pt": "Portugalų",
"language-pt-br": "Portugalų (Brazilijos)",
@@ -43,11 +68,15 @@
"language-sk": "Slovakų",
"language-sl": "Slovėnų",
"language-sr": "Serbų",
- "language-sw": "Svahilių",
+ "language-sw": "Suahilių",
+ "language-ta": "Tamilų",
"language-th": "Tajų",
+ "language-tk": "Turkmėnų",
"language-tr": "Turkų",
"language-uk": "Ukrainiečių",
+ "language-ur": "Urdų",
+ "language-uz": "Uzbekų",
"language-vi": "Vietnamiečių",
"language-zh": "Kinų supaprastinta",
- "language-zh-tw": "Kinų (tradicinė)"
+ "language-zh-tw": "Kinų tradicinė"
}
diff --git a/src/intl/ml/common.json b/src/intl/ml/common.json
index a3362555781..f8d5a84958c 100644
--- a/src/intl/ml/common.json
+++ b/src/intl/ml/common.json
@@ -1,28 +1,70 @@
{
"about-ethereum-org": "Ethereum.org-നെ കുറിച്ച്",
"about-us": "ഞങ്ങളെ കുറിച്ച്",
+ "adding-desci-projects": "Desci പ്രോജക്റ്റുകൾ ചേർക്കൽ",
+ "adding-developer-tools": "ഡെവലപ്പർ ഉപകരണങ്ങൾ ചേർക്കൽ",
+ "adding-exchanges": "എക്സ്ചേഞ്ചുകൾ ചേർക്കൽ",
+ "adding-glossary-terms": "ഗ്ലോസറി പദങ്ങൾ ചേർക്കൽ",
+ "adding-staking-products": "സ്റ്റെയ്ക്കിങ് ഉൽപ്പന്നങ്ങൾ ചേർക്കൽ",
+ "adding-wallets": "വാലറ്റുകൾ ചേർക്കൽ",
+ "account-abstraction": "അക്കൗണ്ട് അബ്സ്ട്രാക്ഷൻ",
+ "acknowledgements": "അംഗീകാരങ്ങൾ",
"aria-toggle-search-button": "തിരയൽ ബട്ടൺ ടോഗിൾ ചെയ്യുക",
"aria-toggle-menu-button": "മെനു ബട്ടൺ ടോഗിൾ ചെയ്യുക",
"beacon-chain": "ബീക്കൺ ചെയിൻ",
"bridges": "ബ്ലോക്ക്ചെയിൻ ബ്രിഡ്ജുകൾ",
+ "bug-bounty": "ബഗ് ബൗണ്ടി",
+ "build": "ബിൽഡ്",
+ "build-menu": "ബിൽഡ് മെനു",
+ "clear": "മായ്ക്കുക",
+ "close": "അവസാനിപ്പിക്കുക",
"community": "കമ്യൂണിറ്റി",
"community-hub": "കമ്മ്യൂണിറ്റി കേന്ദ്രം",
"community-menu": "കമ്മ്യൂണിറ്റി മെനു",
"contact": "ബന്ധപ്പെടുക",
+ "content-buckets": "ഉള്ളടക്ക ബക്കറ്റുകൾ",
+ "content-resources": "ഉള്ളടക്ക റിസോഴ്സുകൾ",
+ "content-standardization": "ഉള്ളടക്ക ക്രമവൽക്കരണം",
"contributing": "സംഭാവന ചെയ്യുന്നു",
"contributors": "കോണ്ട്രിബ്യൂട്ടര്മാര്",
"contributors-thanks": "ഈ പേജിലേക്ക് സംഭാവന നൽകിയ എല്ലാവരും - നന്ദി!",
"cookie-policy": "കുക്കി നയം",
"copied": "പകർത്തി",
"copy": "പകര്പ്പ്",
+ "danksharding": "ഡാങ്ക്ഷാർഡിംഗ്",
+ "dao-page": "DAOs - വികേന്ദ്രീകൃത സ്വയംഭരണ സ്ഥാപനങ്ങൾ",
"dark-mode": "ഡാർക്ക്",
"data-provided-by": "ഡാറ്റ ഉറവിടം:",
- "decentralized-applications-dapps": "വികേന്ദ്രീകൃത ആപ്ലിക്കേഷനുകൾ (ഡാപ്പുകൾ)",
+ "decentralized-applications-dapps": "ഡാപ്പുകൾ - വികേന്ദ്രീകൃത ആപ്ലിക്കേഷനുകൾ",
+ "decentralized-identity": "വികേന്ദ്രീകൃത വ്യക്തിവിവരം",
+ "decentralized-social-networks": "വികേന്ദ്രീകൃത സോഷ്യൽ നെറ്റ്വർക്കുകൾ",
+ "decentralized-science": "DeSci - വികേന്ദ്രീകൃത ശാസ്ത്രം",
+ "description": "നാവിഗേഷൻ ഇനത്തിനുള്ള വിവരണം",
+ "defi-page": "DeFi - വികേന്ദ്രീകൃത ധനകാര്യം",
+ "design": "രൂപരേഖ",
+ "design-principles": "രൂപരേഖ തത്വങ്ങൾ",
"devcon": "ഡവ്കോൺ",
"developers": "ഡെവലപ്പർമാർ",
"developers-home": "ഡെവലപ്പേഴ്സ് ഹോം",
"docs": "ഡോക്യുമെന്റുകൾ",
+ "docsearch-to-select": "തിരഞ്ഞെടുക്കാൻ",
+ "docsearch-to-navigate": "നാവിഗേറ്റ് ചെയ്യാൻ",
+ "docsearch-to-close": "അടയ്ക്കാൻ",
+ "docsearch-search-by": "ഇപ്രകാരം തിരയുക",
+ "docsearch-start-recent-searches-title": "സമീപകാലത്തേത്",
+ "docsearch-start-no-recent-searches": "സമീപകാല തിരയലുകൾ ഒന്നുമില്ല",
+ "docsearch-start-save-recent-search": "ഈ തിരയൽ സംരക്ഷിക്കുക",
+ "docsearch-start-remove-recent-search": "ഹിസ്റ്ററിയിൽ നിന്ന് ഈ തിരയൽ നീക്കംചെയ്യുക",
+ "docsearch-start-favorite-searches": "പ്രിയപ്പെട്ടത്",
+ "docsearch-start-remove-favorite-search": "പ്രിയപ്പെട്ടവയിൽ നിന്ന് ഈ തിരയൽ നീക്കംചെയ്യുക",
+ "docsearch-no-results-text": "ഇതിനുള്ള ഉത്തരം കണ്ടെത്താനായില്ല",
+ "docsearch-no-results-suggested-query": "ഇതിനായി തിരഞ്ഞ് ശ്രമിക്കുക",
+ "docsearch-no-results-missing": "ഈ അന്വേഷണം ഉത്തരം തരുമെന്ന് വിശ്വസിക്കുന്നുണ്ടോ?",
+ "docsearch-no-results-missing-link": "നമുക്ക് നോക്കി നോക്കാം.",
+ "docsearch-error-title": "ഉത്തരം കണ്ടെത്താനായില്ല",
+ "docsearch-error-help": "നിങ്ങളുടെ നെറ്റ്വർക്ക് കണക്ഷൻ ഉറപ്പുവരുത്തുക.",
"documentation": "പ്രമാണീകരണം",
+ "down": "താഴെ",
"ecosystem": "ഇക്കോസിസ്റ്റം",
"edit-page": "പേജ് എഡിറ്റുചെയ്യുക",
"ef-blog": "Ethereum ഫൗണ്ടേഷന് ബ്ലോഗ്",
@@ -32,9 +74,11 @@
"enterprise-menu": "എന്റർപ്രൈസ് മെനു",
"esp": "ഇക്കോസിസ്റ്റം സപ്പോർട്ട് പ്രോഗ്രാം",
"eth-current-price": "നിലവിലെ ETH വില (USD)",
+ "ethereum-basics": "Ethereum അടിസ്ഥാനകാര്യങ്ങൾ",
+ "ethereum-bug-bounty": "Ethereum ബഗ് ബൗണ്ടി പ്രോഗ്രാം",
"consensus-when-shipping": "ഇത് ഷിപ്പ് ചെയ്യുന്നത് എപ്പോഴാണ്?",
"ethereum-upgrades": "Ethereum അപ്ഗ്രേഡുകൾ",
- "ethereum-brand-assets": "Ethereum ബ്രാന്ഡ് ആസ്തികള്",
+ "ethereum-brand-assets": "Ethereum ബ്രാന്ഡ് അസറ്റുകള്",
"ethereum-online": "ഓൺലൈൻ കമ്മ്യൂണിറ്റികൾ",
"ethereum-events": "Ethereum ഇവെന്റ്സ്",
"ethereum-foundation": "Ethereum ഫൗണ്ടേഷന്",
@@ -42,20 +86,37 @@
"ethereum-glossary": "Ethereum പദാവലി",
"ethereum-governance": "Ethereum ഭരണനിർവഹണം",
"ethereum-logo": "Ethereum ലോഗോ",
+ "ethereum-roadmap": "Ethereum റോഡ്മാപ്പ്",
+ "ethereum-protocol": "Ethereum പ്രോട്ടോക്കോൾ",
"ethereum-security": "Ethereum സുരക്ഷ, അഴിമതി തടയൽ",
"ethereum-support": "Ethereum പിന്തുണ",
- "ethereum-wallets": "Ethereum വാലറ്റുകള്",
+ "ethereum-wallets": "Ethereum വാലറ്റുകൾ",
"ethereum-whitepaper": "Ethereum ധവളപത്രം",
+ "feedback-widget-prompt": "ഈ പേജ് സഹായകരമാണോ?",
+ "feedback-card-prompt-page": "ഈ പേജ് സഹായകരമായോ?",
+ "feedback-card-prompt-article": "ഈ ലേഖനം സഹായകമായിരുന്നോ?",
+ "feedback-card-prompt-tutorial": "ഈ ട്യൂട്ടോറിയൽ സഹായകമായിരുന്നോ?",
+ "feedback-widget-thank-you-title": "നിങ്ങളുടെ അഭിപ്രായത്തിന് നന്ദി!",
+ "feedback-widget-thank-you-subtitle": "കുറച്ച് ചോദ്യങ്ങൾക്ക് ഉത്തരം നൽകി ഈ പേജ് കൂടുതൽ മികച്ചതാക്കുക.",
+ "feedback-widget-thank-you-subtitle-ext": "നിങ്ങൾക്ക് സഹായം ആവശ്യമുണ്ടെങ്കിൽ, നിങ്ങൾക്ക് ഞങ്ങളുടെ Discord-ലെ കമ്മ്യൂണിറ്റിയുമായി ബന്ധപ്പെടാം.",
+ "feedback-widget-thank-you-timing": "2–3 മിനിറ്റ്",
+ "feedback-widget-thank-you-cta": "ഹ്രസ്വമായ സർവേ തുറക്കുക",
"find-wallet": "വാലറ്റ് കണ്ടെത്തുക",
+ "future-proofing": "ഭാവി-പ്രൂഫിംഗ്",
"get-eth": "ETH നേടൂ",
"get-involved": "ഇടപെടുക",
"get-started": "ആരംഭിക്കുക",
"grants": "ഗ്രാന്റുകൾ",
"grant-programs": "ഇക്കോസിസ്റ്റം ഗ്രാന്റ് പ്രോഗ്രാമുകൾ",
- "guides-and-resources": "കമ്മ്യൂണിറ്റി ഗൈഡുകളും റിസോഴ്സുകളും",
+ "guides": "ഗൈഡുകൾ",
+ "guides-hub": "ഏതുവിധമെന്ന മാർഗ്ഗനിർദ്ദേശങ്ങൾ",
"history-of-ethereum": "Ethereum ചരിത്രം",
"home": "ഹോം",
"how-ethereum-works": "Ethereum എങ്ങനെ പ്രവർത്തിക്കുന്നു",
+ "how-to-revoke-token-access": "എങ്ങനെ നിങ്ങളുടെ ക്രിപ്റ്റോ ഫണ്ടുകളിലേക്കുള്ള സ്മാർട്ട് കരാർ പിൻവലിക്കാം",
+ "how-to-swap-tokens": "എങ്ങനെ ടോക്കൺസ് സ്വാപ്പ് ചെയ്യാം",
+ "how-to-use-a-bridge": "എങ്ങനെ ടോക്കൺസ് വരി 2-വുമായി ബന്ധിപ്പിക്കാം",
+ "how-to-use-a-wallet": "എങ്ങനെ ഒരു വാലറ്റ് ഉപയോഗിക്കാം",
"image": "ചിത്രം",
"in-this-section": "ഈ വിഭാഗത്തിൽ",
"individuals": "വ്യക്തികൾ",
@@ -69,6 +130,7 @@
"layer-2": "വരി 2",
"learn": "പഠിക്കൂ",
"learn-by-coding": "കോഡിംഗ് ഉപയോഗിച്ച് പഠിക്കൂ",
+ "learn-hub": "പഠന ഹബ്",
"learn-menu": "മെനു പഠിക്കൂ",
"learn-more": "കൂടുതല് അറിയുക",
"less": "കുറവ്",
@@ -77,30 +139,149 @@
"loading": "ലോഡ്ചെയ്യുന്നു...",
"loading-error": "ലോഡു ചെയ്യുന്നതിൽ പിശക്.",
"loading-error-refresh": "പിശക്, പുതുക്കുക.",
+ "loading-error-try-again-later": "ഡേറ്റ ലോഡ് ചെയ്യാൻ സാധിക്കുന്നില്ല. പിന്നീട് വീണ്ടും ശ്രമിക്കുക.",
"logo": "ലോഗോ",
"mainnet-ethereum": "മെയിന്നെറ്റ് Ethereum",
+ "merge": "ലയിപ്പിക്കുക",
"more": "കൂടുതൽ",
- "nav-developers": "ഡെവലപ്പർമാർ",
+ "nav-about-description": "Ethereum കമ്മ്യൂണിറ്റിക്കുള്ള ഒരു പൊതുവായ ഓപ്പൺ-സോഴ്സ് പ്രൊജക്റ്റ്",
+ "nav-advanced-description": "കൂടുതൽ സങ്കീർണ്ണമായ വിഷയങ്ങൾ മനസ്സിലാക്കുക",
+ "nav-advanced-label": "വിപുലമായത്",
+ "nav-basics-description": "Ethereum-ന്റെ അടിസ്ഥാന തത്ത്വങ്ങൾ മനസ്സിലാക്കുക",
+ "nav-basics-label": "അടിസ്ഥാന കാര്യങ്ങൾ",
+ "nav-bridges-description": "പ്രാഥമിക L1 ബ്ലോക്ക്ചെയിനുകളുടെയും L2 സ്കെയിലിംഗ് സൊല്യൂഷനുകളുടെയും ഒരു ഇക്കോസിസ്റ്റമായി Web3 പരിണമിച്ചിരിക്കുന്നു",
+ "nav-builders-home-description": "Ethereum-നായുള്ള നിർമ്മാതാക്കളുടെ ഒരു മാനുവൽ—നിർമ്മാതാക്കൾക്കായി, നിർമ്മാതാക്കള് തയ്യാറാക്കിയത്",
+ "nav-builders-home-label": "നിർമ്മാതാക്കളുടെ ഹോം",
+ "nav-contribute-description": "നിങ്ങൾക്ക് സഹായിക്കാൻ താൽപ്പര്യമുണ്ടെങ്കിൽ, ഇത് നിങ്ങളെ മുന്നോട്ടുനയിക്കും",
+ "nav-contribute-label": "Ethereum.org എന്നതിലേക്ക് സംഭാവന നൽകൽ",
+ "nav-dao-description": "കേന്ദ്രീകൃത അധികാരമില്ലാത്ത, അംഗങ്ങൾക്ക് സ്വന്തമായ കമ്മ്യൂണിറ്റികൾ",
+ "nav-dapps-description": "Ethereum ഉപയോഗിക്കുന്ന ആപ്പുകളുടെ ഒരു സമ്പന്നമായ ഇക്കോസിസ്റ്റം അടുത്തറിയുക",
+ "nav-defi-description": "പരമ്പരാഗത സാമ്പത്തിക വിപണിക്കുള്ള ആഗോളമായ ഒരു സ്വതന്ത്ര ബദൽ",
+ "nav-desci-description": "നിലവിലെ ശാസ്ത്രീയ സംവിധാനത്തിനുള്ള ആഗോളമായ ഒരു സ്വതന്ത്ര ബദൽ",
+ "nav-desoc-description": "സാമൂഹിക ഇടപഴകലിനും ഉള്ളടക്കം സൃഷ്ടിക്കുന്നതിനുമായി ബ്ലോക്ക്ചെയിൻ അടിസ്ഥാനമാക്കിയുള്ള പ്ലാറ്റ്ഫോമുകൾ",
"nav-developers-docs": "ഡെവലപ്പർമാർ ഡോക്സ്",
+ "nav-developers": "ഡെവലപ്പർമാർ",
+ "nav-did-description": "നിങ്ങളുടെ തനത് വികേന്ദ്രീകൃത ഐഡന്റിഫയറുകൾ ഇഷ്യൂ ചെയ്യുക, സ്വന്തമാക്കുക",
+ "nav-docs-description": "Ethereum മനസ്സിലാക്കി അത് ഉപയോഗിച്ച് ബിൽഡ് ചെയ്യാൻ നിങ്ങളെ സഹായിക്കുന്ന ഡോക്യുമെന്റുകൾ",
+ "nav-docs-design-description": "തനത് web3 രൂപകൽപ്പനാ ചലഞ്ചുകൾ, മികച്ച കീഴ്വഴക്കങ്ങൾ, ഉപയോക്തൃ ഗവേഷണ ഇൻസൈറ്റുകൾ എന്നിവയുടെ വിവരണം",
+ "nav-docs-design-label": "UX/UI രൂപകൽപ്പനാ അടിസ്ഥാന തത്ത്വങ്ങൾ",
+ "nav-docs-foundation-description": "Ethereum എന്നതിൽ അഭിവൃദ്ധിപ്പെടാനുള്ള പ്രധാന അടിസ്ഥാന തത്ത്വങ്ങൾ",
+ "nav-docs-foundation-label": "അടിസ്ഥാന വിഷയങ്ങൾ",
+ "nav-docs-overview-description": "ഡെവലപ്പർ ഡോക്യുമെന്റുകൾക്കുള്ള നിങ്ങളുടെ ഹോം",
+ "nav-docs-stack-description": "ഇതറീയം സ്റ്റേക്കിന്റെ എല്ലാ വിശദാംശങ്ങളും മനസ്സിലാക്കുക",
+ "nav-docs-stack-label": "Ethereum സ്റ്റേക്ക്",
+ "nav-eip-description": "പുതിയ സവിശേഷതകളോ പ്രോസസ്സുകളോ വ്യക്തമാക്കുന്ന സ്റ്റാൻഡേർഡുകൾ",
+ "nav-eip-label": "EIP-കൾ - Ethereum ഇംപ്രൂവ്മെന്റ് പ്രൊപ്പോസലുകള്",
+ "nav-emerging-description": "Ethereum-നുള്ള ഏറ്റവും പുതിയ മറ്റ് ഉപയോഗ സാഹചര്യങ്ങൾ മനസ്സിലാക്കുക",
+ "nav-enterprise-description": "Ethereum-നുള്ള ബിസിനസ് ആപ്ലിക്കേഷനുകൾ",
+ "nav-ethereum-org-description": "ഈ വെബ്സൈറ്റ് കമ്മ്യൂണിറ്റി പ്രേരിതമാണ്—ഞങ്ങൾക്കൊപ്പം ചേർന്ന് സംഭാവന ചെയ്യൂ",
+ "nav-ethereum-wallets-description": "നിങ്ങളുടെ Ethereum അക്കൗണ്ടുമായി സംവദിക്കുന്ന ഒരു ആപ്പ്",
+ "nav-events-description": "വികേന്ദ്രീകരണവും ആർക്കും പങ്കെടുക്കാനുള്ള സ്വാതന്ത്ര്യവും",
+ "nav-events-irl-description": "നേരിട്ടും ഓൺലൈനിലും ഓരോ മാസവുമുള്ള പ്രമുഖ Ethereum ഇവന്റുകൾ",
+ "nav-events-label": "കമ്മ്യൂണിറ്റികളും ഇവന്റുകളും",
+ "nav-events-online-description": "ആയിരക്കണക്കിന് Ethereum പ്രേമികളാണ് ഈ ഓൺലൈൻ കമ്മ്യൂണിറ്റികൾ സൃഷ്ടിച്ചിട്ടുള്ളത്",
+ "nav-find-wallet-description": "ക്രിപ്റ്റോ ഉപയോഗിക്കാൻ വാലറ്റുകൾ നിങ്ങളെ അനുവദിക്കുന്നു",
+ "nav-find-wallet-label": "നിങ്ങളുടെ വാലറ്റ് തിരഞ്ഞെടുക്കുക",
+ "nav-gas-fees-description": "ETH ഇടപാട് നിരക്കുകൾ കണക്കാക്കുന്നതെങ്ങനെ",
+ "nav-get-eth-description": "Ethereum ആപ്ലിക്കേഷനുകൾ ഉപയോഗിക്കാൻ നിങ്ങൾക്ക് ഇതർ (ETH) ആവശ്യമാണ്",
+ "nav-get-started-description": "Ethereum ഉപയോഗിക്കാനുള്ള നിങ്ങളുടെ ആദ്യ ചുവടുകൾ",
+ "nav-governance-description": "പ്രോസസ്സിൽ Ethereum പ്രോട്ടോക്കോൾ അപ്ഗ്രേഡ് ചെയ്യുന്നത് ഉൾപ്പെടുന്നു",
+ "nav-governance-label": "ഭരണനിർവഹണം",
+ "nav-grants-description": "ഗംഭീരമായ ഫണ്ടിംഗ് പ്രോഗ്രാമുകൾ നൽകുന്ന പ്രൊജക്റ്റുകൾ സംബന്ധിച്ച് ഞങ്ങളുടെ കമ്മ്യൂണിറ്റി ക്യുറേറ്റ് ചെയ്ത ഒരു ലിസ്റ്റ്",
+ "nav-guide-create-account-description": "ആർക്കും എപ്പോൾ വേണമെങ്കിലും ഒരു വാലറ്റ് ആപ്പ് ഉപയോഗിച്ച് സൗജന്യമായി ഒരു Ethereum അക്കൗണ്ട് സൃഷ്ടിക്കാം",
+ "nav-guide-revoke-access-description": "Ethereum ഇക്കോസിസ്റ്റത്തിൽ സ്മാർട്ട് കരാറുകൾ, ആപ്ലിക്കേഷനുകൾ എന്നിവയുമായി സംവദിക്കുമ്പോൾ സുരക്ഷിതരായിരിക്കുക",
+ "nav-guide-revoke-access-label": "സ്മാർട്ട് കരാർ ആക്സസ് എങ്ങനെ പിൻവലിക്കാം",
+ "nav-guide-use-wallet-description": "ഒരു വാലറ്റിന്റെ എല്ലാ അടിസ്ഥാന പ്രവർത്തനങ്ങളും പ്രവർത്തിപ്പിക്കുന്ന വിധം മനസ്സിലാക്കുക",
+ "nav-guide-use-wallet-label": "എങ്ങനെ ഒരു വാലറ്റ് ഉപയോഗിക്കാം",
+ "nav-guides-description": "ആരംഭിക്കാനായി നിങ്ങളെ സഹായിക്കാൻ, ഘട്ടം ഘട്ടമായുള്ള പ്രായോഗിക ഗൈഡുകൾ",
+ "nav-guides-label": "എങ്ങനെ ഗൈഡ് ചെയ്യുന്നു",
+ "nav-history-description": "എല്ലാ പ്രമുഖ ഫോർക്കുകളുടെയും അപ്ഡേറ്റുകളുടെയും ഒരു ടൈംലൈൻ",
+ "nav-history-label": "Ethereum-ന്റെ സാങ്കേതിക ചരിത്രം",
+ "nav-layer-2-description": "Ethereum-നുള്ള ചെലവ് കുറഞ്ഞതും വേഗമേറിയതുമായ ഇടപാടുകൾ",
+ "nav-learn-by-coding-description": "Ethereum ഉപയോഗിച്ചുള്ള പരീക്ഷണത്തിന് നിങ്ങളെ സഹായിക്കുന്ന ഉപകരണങ്ങൾ",
+ "nav-local-env-description": "നിങ്ങളുടെ Ethereum വികസന സഞ്ചയം തിരഞ്ഞെടുത്ത് സജ്ജീകരിക്കുക",
+ "nav-mainnet-description": "പൊതു Ethereum മെയിൻനെറ്റിൽ എന്റർപ്രൈസ് ബ്ലോക്ക്ചെയിൻ ആപ്ലിക്കേഷനുകൾ സൃഷ്ടിക്കാൻ കഴിയും",
+ "nav-nft-description": "ഒരു Ethereum അധിഷ്ഠിത അസറ്റ് പോലുള്ള, തനതായ എന്തിനെയും പ്രതിനിധീകരിക്കാനുള്ള ഒരു മാർഗ്ഗം",
+ "nav-open-research-description": "Ethereum-ന്റെ മുൻനിര കരുത്തുകളിലൊന്ന്, അതിന്റെ സജീവമായ ഗവേഷണ കമ്മ്യൂണിറ്റിയാണ്",
+ "nav-open-research-label": "റിസേർച്ച് എന്നത് തുറക്കുക",
+ "nav-overview-description": "Ethereum വിദ്യാഭ്യാസം സംബന്ധിച്ച എല്ലാ കാര്യങ്ങളും",
+ "nav-participate-overview-description": "എങ്ങനെ പങ്കെടുക്കാമെന്നത് സംബന്ധിച്ച ചുരുക്കവിവരണം",
"nav-primary": "പ്രാഥമികം",
+ "nav-quizzes-description": "നിങ്ങൾ Ethereum, ക്രിപ്റ്റോകറൻസികൾ എന്നിവ എത്രത്തോളം നന്നായി മനസ്സിലാക്കിയിട്ടുണ്ടെന്ന് കണ്ടെത്തുക",
+ "nav-quizzes-label": "നിങ്ങളുടെ അറിവ് പരീക്ഷിക്കുക",
+ "nav-refi-description": "പുനരുൽപ്പാദന തത്ത്വങ്ങളിൽ അധിഷ്ഠിതമായി സൃഷ്ടിച്ചെടുത്ത ഒരു ബദൽ സമ്പദ്വ്യവസ്ഥ",
+ "nav-research-description": "Ethereum മെച്ചപ്പെടുത്താൻ ഉപയോഗിക്കുന്ന പ്രോസസ്സുകൾ",
+ "nav-research-label": "ഗവേഷണവും വികസനവും",
+ "nav-roadmap-description": "Ethereum-നുള്ള കൂടുതൽ വിപുലീകരണക്ഷമത, സുരക്ഷ, സ്ഥിരത എന്നിവയിലേക്കുള്ള പാത",
+ "nav-roadmap-future-description": "ബലവത്തായതും വികേന്ദ്രീകൃതവുമായ ഒരു നെറ്റ്വർക്ക് എന്ന നിലയിൽ Ethereum കരുത്തുറ്റതാകുന്നു",
+ "nav-roadmap-future-label": "ഭാവി-പ്രൂഫിംഗ്",
+ "nav-roadmap-label": "റോഡ്മാപ്പ്",
+ "nav-roadmap-scaling-description": "ഇടപാട് ചെലവുകളും വേഗതയും കൂടുതൽ ചുരുക്കാനുള്ള നെറ്റ്വർക്ക് അപ്ഡേറ്റുകൾ",
+ "nav-roadmap-security-description": "ഭാവിയിലെ എല്ലാത്തരം ആക്രമണങ്ങളെയും അതിജീവിച്ച് Ethereum നിലനിൽക്കുമെന്ന് ഉറപ്പാക്കുന്നു",
+ "nav-roadmap-security-label": "മെച്ചപ്പെടുത്തിയ സുരക്ഷ",
+ "nav-roadmap-ux-description": "Ethereum-ന്റെ ഉപയോഗം ലളിതമാക്കേണ്ടതുണ്ട്",
+ "nav-run-a-node-description": "നെറ്റ്വർക്ക് സുരക്ഷിതമാക്കാൻ സഹായിക്കുമ്പോൾ തന്നെ, പൂർണ്ണമായും ഫലവത്തായതുമായി മാറുന്നു",
+ "nav-security-description": "ക്രിപ്റ്റോകറൻസി ഉപയോഗിക്കുമ്പോഴുള്ള മികച്ച കീഴ്വഴക്കങ്ങൾ മനസ്സിലാക്കുക",
+ "nav-smart-contracts-description": "Ethereum ഇക്കോസിസ്റ്റത്തിന്റെ അടിസ്ഥാന ശിലകൾ",
+ "nav-stablecoins-description": "ഒരു നിശ്ചിത മൂല്യത്തിൽ നിലനിൽക്കാൻ രൂപകൽപ്പന ചെയ്തിട്ടുള്ള Ethereum ടോക്കണുകളാണ് സ്റ്റേബിൾകോയിനുകൾ",
+ "nav-stake-description": "Ethereum സുരക്ഷിതമാക്കുന്നതിനുള്ള റിവാർഡുകൾ കരസ്ഥമാക്കുക",
+ "nav-stake-label": "സ്റ്റേക്ക്",
+ "nav-staking-home-description": "സ്റ്റെയ്ക്കിങ്ങിനുള്ള വ്യത്യസ്ത ഓപ്ഷനുകളുടെ ഒരു ചുരുക്കവിവരണം",
+ "nav-staking-pool-description": "മറ്റുള്ളവർക്കൊപ്പം ചേരുന്നതിലൂടെ, സ്റ്റേക്ക് ചെയ്ത് ETH-ന്റെ ഏതൊരു തുകയ്ക്കുമുള്ള റിവാർഡുകൾ കരസ്ഥമാക്കുക",
+ "nav-staking-pool-label": "പൂൾഡ് സ്റ്റെയ്ക്കിങ്",
+ "nav-staking-saas-label": "ഒരു സേവനം ഉപയോഗിച്ചുള്ള സ്റ്റെയ്ക്കിങ്",
+ "nav-staking-solo-label": "സോളോ സ്റ്റെയ്ക്കിങ്",
+ "nav-start-building-description": "നവാഗതർക്കുള്ള ഉപയോഗപ്രദമായ വിവരങ്ങൾ",
+ "nav-translation-program-description": "എല്ലാ ഭാഷകളിലേക്കും ethereum.org വിവർത്തനം ചെയ്യാനുള്ള ഒരു കൂട്ടായ പരിശ്രമം",
+ "nav-tutorials-description": "കമ്മ്യൂണിറ്റി ട്യൂട്ടോറിയലുകളുടെ ക്യൂറേറ്റ് ചെയ്ത ലിസ്റ്റ്",
+ "nav-use-cases-description": "Ethereum ഉപയോഗത്തിനുള്ള വ്യത്യസ്ത ആശയങ്ങൾ കണ്ടെത്തുക",
+ "nav-what-is-ether-description": "Ethereum ആപ്പുകളുടെ കറൻസി",
+ "nav-what-is-ethereum-description": "Ethereum-നെ വേറിട്ടതാക്കുന്നത് എന്തെന്ന് മനസ്സിലാക്കുക",
+ "nav-what-is-web3-label": "എന്താണ് Web3?",
+ "nav-what-is-web3-description": "കേന്ദ്രീകൃത കുത്തകകൾ സ്വയം നിയമങ്ങൾ സൃഷ്ടിക്കുന്ന അവസ്ഥയ്ക്ക് പകരമായുള്ള ഒരു സംവിധാനം",
+ "nav-whitepaper-description": "2014-ൽ വിറ്റാലിക് ബ്യൂട്ടറിൻ എഴുതിയ യഥാർത്ഥ Ethereum ധവളപത്രം",
+ "nav-zkp-description": "പ്രസ്താവന വെളിപ്പെടുത്താതെ തന്നെ ആ പ്രസ്താവനയുടെ സാധുത തെളിയിക്കാനുള്ള ഒരു മാർഗ്ഗം",
+ "nft-page": "NFTs - നോൺ-ഫഞ്ചിബിൾ ടോക്കണുകൾ",
+ "nfts": "NFT-കൾ",
"no": "ഇല്ല",
"on-this-page": "ഈ പേജില്",
+ "open-research": "റിസേർച്ച് എന്നത് തുറക്കുക",
+ "page-developers-aria-label": "ഡവലപ്പർമാരുടെ മെനു",
+ "page-index-meta-title": "ഹോം",
"page-last-updated": "അവസാനം അപ്ഡേറ്റുചെയ്ത പേജ്",
+ "participate": "പങ്കെടുക്കുക",
+ "participate-menu": "പങ്കെടുക്കൽ മെനു",
+ "pbs": "പ്രൊപ്പോസർ-ബിൽഡർ വേർതിരിക്കൽ",
+ "pools": "പൂൾഡ് സ്റ്റെയ്ക്കിങ്",
"privacy-policy": "സ്വകാര്യതാ നയം",
"private-ethereum": "പ്രൈവറ്റ് Ethereum",
+ "product-disclaimer": "Ethereum കമ്മ്യൂണിക്കായുള്ള ഒരു സൗകര്യമായി ഉൽപ്പന്നങ്ങളും സേവനങ്ങളും ലിസ്റ്റ് ചെയ്തിരിക്കുന്നു. ഒരു ഉൽപ്പന്നത്തിന്റെയോ സേവനത്തിന്റെയോ ഉൾപ്പെടുത്തൽ ethereum.org വെബ്സൈറ്റ് ടീമിൽ നിന്നുള്ള അല്ലെങ്കിൽ Ethereum ഫൗണ്ടേഷനിൽ നിന്നുള്ള ഒരു എൻഡോഴ്സ്മെന്റിനെ പ്രതിനിധീകരിക്കുന്നില്ല.",
+ "quizzes-title": "ക്വിസ് ഹബ്",
+ "quizzes": "ക്വിസ്സുകൾ",
"refresh": "ദയവായി പേജ് പുതുക്കുക.",
"return-home": "ഹോമിലേക്ക് മടങ്ങുക",
- "run-a-node": "ഒരു നോഡ് റൺ ചെയ്യുക",
+ "roadmap": "Ethereum റോഡ്മാപ്പ്",
+ "research": "ഗവേഷണം",
+ "research-menu": "ഗവേഷണ മെനു",
+ "resources": "വിവർത്തന ഉറവിടങ്ങൾ",
+ "run-a-node": "ഒരു നോഡ് പ്രവർത്തിപ്പിക്കുക",
"rollup-component-website": "വെബ്സൈറ്റ്",
"rollup-component-developer-docs": "ഡെവലപ്പർ ഡോക്സ്",
"rollup-component-technology-and-risk-summary": "സാങ്കേതികവിദ്യയും അപകടസാധ്യതാ സംഗ്രഹവും",
+ "scaling": "സ്കെയിലിംഗ്",
+ "saas": "ഒരു സേവനമായി സ്റ്റെയ്ക്കിങ്",
"search": "തിരയുക",
+ "search-ethereum-org": "ethereum.org തിരയുക",
+ "secret-leader-election": "രഹസ്യ ലീഡർ തിരഞ്ഞെടുപ്പ്",
"search-box-blank-state-text": "അകലെ തിരയുക!",
"search-eth-address": "ഇത് ഒരു Ethereum വിലാസം പോലെ തോന്നുന്നു. വിലാസങ്ങൾക്ക് മാത്രമായുള്ള ഡാറ്റ ഞങ്ങൾ നൽകുന്നില്ല. ഇതുപോലുള്ള ഒരു ബ്ലോക്ക് എക്സ്പ്ലോററിൽ തിരയാൻ ശ്രമിക്കുക",
"search-no-results": "നിങ്ങളുടെ തിരയലിന് ഫലങ്ങളൊന്നുമില്ല",
+ "security": "സുരക്ഷ",
+ "single-slot-finality": "സിംഗിൾ-സ്ലോട്ട് ഫൈനലിറ്റി",
+ "statelessness": "സ്റ്റേറ്റ്ലെസ്നെസ്",
"see-contributors": "കോണ്ട്രിബ്യൂട്ടര്മാരെ കാണുക",
"set-up-local-env": "തദ്ദേശീയ അന്തരീക്ഷം സജ്ജമാക്കൂ",
- "sharding": "ഷാർഡ് ചെയിനുകള്",
+ "sharding": "ഷാർഡിംഗ്",
"show-all": "എല്ലാം കാണിക്കുക",
"show-less": "കുറച്ച് കാണിക്കുക",
"site-description": "പണത്തിനും പുതിയ തരം അപ്ലിക്കേഷനുകൾക്കുമുള്ള ആഗോള വികേന്ദ്രീകൃത പ്ലാറ്റ്ഫോമാണ് Ethereum. നിങ്ങൾക്ക് Ethereum- ൽ പണത്തെ നിയന്ത്രിക്കുന്ന കോഡ് എഴുതാനും ലോകത്തെവിടെയും ആക്സസ് ചെയ്യാവുന്ന അപ്ലിക്കേഷനുകൾ നിർമ്മിക്കാനും കഴിയും.",
@@ -108,10 +289,11 @@
"skip-to-main-content": "പ്രധാന ഉള്ളടക്കത്തിലേക്ക് പോകുക",
"smart-contracts": "സ്മാര്ട്ട് കരാറുകള്",
"stablecoins": "സ്റ്റേബിള്കോയിനുകള്",
+ "stake-eth": "ETH സ്റ്റേക്ക് ചെയ്യുക",
"staking": "സ്റ്റേക്കിംഗ്",
- "solo": "Solo staking",
- "saas": "Staking as a service",
- "pools": "Pooled staking",
+ "start-here": "ഇവിടെ തുടങ്ങാം",
+ "solo": "സോളോ സ്റ്റെയ്ക്കിങ്",
+ "support": "സപ്പോർട്ട്",
"terms-of-use": "ഉപയോഗ നിബന്ധനകൾ",
"translation-banner-body-new": "നിങ്ങൾ ഈ പേജ് ഇംഗ്ലീഷിൽ കാണുന്നതിന് കാരണം ഞങ്ങൾ ഇത് ഇതുവരെ വിവര്ത്തനം ചെയ്തിട്ടില്ലാത്തതിനാലാണ്. ഈ ഉള്ളടക്കം വിവർത്തനം ചെയ്യാൻ ഞങ്ങളെ സഹായിക്കൂ.",
"translation-banner-body-update": "ഈ പേജിന്റെ ഒരു പുതിയ പതിപ്പുണ്ട്, പക്ഷേ ഇത് ഇപ്പോൾ ഇംഗ്ലീഷിൽ മാത്രമേ ഉള്ളൂ. ഈ ഏറ്റവും പുതിയ പതിപ്പ് വിവർത്തനം ചെയ്യാൻ ഞങ്ങളെ സഹായിക്കൂ.",
@@ -122,20 +304,22 @@
"translation-banner-no-bugs-title": "ഇവിടെ ബഗുകൾ ഒന്നുമില്ല!",
"translation-banner-no-bugs-content": "ഈ പേജ് വിവർത്തനം ചെയ്തില്ല. ഞങ്ങൾ ഇപ്പോഴത്തേക്ക് ഈ പേജ് ബോധപൂർവ്വം ഇംഗ്ലീഷിൽ തന്നെ വിട്ടിരിക്കുന്നു.",
"translation-banner-no-bugs-dont-show-again": "വീണ്ടും കാണിക്കരുത്",
+ "translation-program": "വിവർത്തന പരിപാടി",
"try-using-search": "നിങ്ങൾ തിരയുന്നത് കണ്ടെത്താൻ തിരയൽ ഉപയോഗിച്ച് നോക്കുക, അല്ലെങ്കിൽ",
"tutorials": "ട്യൂട്ടോറിയലുകൾ",
+ "up": "മുകളിൽ",
+ "use": "ഉപയോഗിക്കുക",
"use-ethereum": "Ethereum ഉപയോഗിക്കൂ",
"use-ethereum-menu": "Ethereum മെനു ഉപയോഗിക്കൂ",
- "wallets": "വാലറ്റുകള്",
+ "use-menu": "ഉപയോഗ മെനു",
+ "verkle-trees": "Verkle മരങ്ങൾ",
+ "wallets": "വാലറ്റുകൾ",
"we-couldnt-find-that-page": "ഞങ്ങൾക്ക് ആ പേജ് കണ്ടെത്താൻ കഴിഞ്ഞില്ല",
"web3": "എന്താണ് Web3?",
"website-last-updated": "അവസാനം അപ്ഡേറ്റുചെയ്ത വെബ്സൈറ്റ്",
- "what-is-ether": "എന്താണ് ഇതര് (ETH)?",
+ "what-is-ether": "എന്താണ് ഈതര് (ETH)?",
"what-is-ethereum": "എന്താണ് Ethereum?",
- "defi-page": "വികേന്ദ്രീകൃത ധനകാര്യം (DeFi)",
- "dao-page": "വികേന്ദ്രീകൃത സ്വയംഭരണ സ്ഥാപനങ്ങൾ (DAOs)",
- "nft-page": "നോൺ-ഫഞ്ചിബിൾ ടോക്കണുകൾ (NFTs)",
+ "withdrawals": "സ്റ്റെയ്ക്കിങ് പിൻവലിക്കലുകൾ",
"yes": "അതെ",
- "page-index-meta-title": "വീട്",
- "page-developers-aria-label": "ഡവലപ്പർമാരുടെ മെനു"
+ "zero-knowledge-proofs": "പൂജ്യം-അറിവ് പ്രൂഫുകൾ"
}
diff --git a/src/intl/ml/page-languages.json b/src/intl/ml/page-languages.json
index 41af9e0e1cf..f5f72e05635 100644
--- a/src/intl/ml/page-languages.json
+++ b/src/intl/ml/page-languages.json
@@ -17,11 +17,14 @@
"page-languages-translated": "വിവർത്തനം ചെയ്തത്",
"page-languages-words": "വാക്കുകൾ",
"page-languages-recruit-community": "Ethereum.org വിവർത്തനം ചെയ്യാൻ ഞങ്ങളെ സഹായിക്കുക.",
+ "langauge-am": "അംഹാരിക്",
"language-ar": "അറബിക്",
"language-az": "അസർബൈജാനി",
+ "langauge-be": "ബെലാറഷ്യൻ",
"language-bg": "ബൾഗേറിയൻ",
"language-bn": "ബംഗാളി",
- "language-ca": "ക്യാറ്റലന്",
+ "language-bs": "ബോസ്നിയൻ",
+ "language-ca": "കറ്റാലൻ",
"language-cs": "ചെക്ക്",
"language-da": "ഡാനിഷ്",
"language-de": "ജര്മ്മന്",
@@ -32,21 +35,29 @@
"language-fi": "ഫിന്നിഷ്",
"language-fr": "ഫ്രഞ്ച്",
"language-gl": "ഗലീഷ്യൻ",
+ "language-gu": "ഗുജറാത്തി",
+ "language-he": "ഹീബ്രു",
"language-hi": "ഹിന്ദി",
"language-hr": "ക്രോയേഷ്യന്",
"language-hu": "ഹംഗേറിയന്",
+ "language-hy-am": "അർമേനിയൻ",
"language-id": "ഇന്തോനേഷ്യൻ",
"language-ig": "ഇഗ്ബോ",
"language-it": "ഇറ്റാലിയന്",
"language-ja": "ജാപ്പനീസ്",
"language-ka": "ജോർജിയൻ",
+ "language-kk": "കസഖ്",
+ "language-km": "ഖെമർ",
+ "language-kn": "കന്നഡ",
"language-ko": "കൊറിയൻ",
"language-lt": "ലിത്വാനിയന്",
"language-ml": "മലയാളം",
"language-mr": "മറാത്തി",
"language-ms": "മലായ്",
"language-nb": "നോര്വീജിയന്",
+ "language-ne-np": "നേപ്പാളി",
"language-nl": "ഡച്ച്",
+ "language-pcm": "നൈജീരിയൻ പിഡ്ജിൻ",
"language-fil": "ഫിലിപ്പിനോ",
"language-pl": "പോളിഷ്",
"language-pt": "പോർച്ചുഗീസ്",
@@ -58,10 +69,14 @@
"language-sl": "സ്ലൊവീനിയൻ",
"language-sr": "സെർബിയൻ",
"language-sw": "സ്വാഹിലി",
+ "language-ta": "തമിഴ്",
"language-th": "തായ്",
+ "language-tk": "തുർക്മെൻ",
"language-tr": "ടർക്കിഷ്",
"language-uk": "ഉക്രേനിയൻ",
+ "language-ur": "ഉര്ദു",
+ "language-uz": "ഉസ്ബെക്ക്",
"language-vi": "വിയറ്റ്നാമീസ്",
- "language-zh": "ലഘൂകരിച്ച ചൈനീസ്സ്",
+ "language-zh": "ലഘൂകരിച്ച ചൈനീസ്",
"language-zh-tw": "പരമ്പരാഗത ചൈനീസ്"
}
diff --git a/src/intl/mr/common.json b/src/intl/mr/common.json
index c63f55112a2..9944d5a62bb 100644
--- a/src/intl/mr/common.json
+++ b/src/intl/mr/common.json
@@ -1,17 +1,29 @@
{
- "account-abstraction": "खाते शून्यमनस्कता",
"about-ethereum-org": "Ethereum.org बद्दल",
"about-us": "आमच्याबद्दल",
+ "adding-desci-projects": "Desci प्रकल्प जोडत आहे",
+ "adding-developer-tools": "विकसक साधने जोडत आहे",
+ "adding-exchanges": "एक्सचेंज जोडत आहे",
+ "adding-glossary-terms": "शब्दकोष अटी जोडत आहे",
+ "adding-staking-products": "स्टिकिंग उत्पादने जोडणे",
+ "adding-wallets": "वॉलेट्स जोडत आहे",
+ "account-abstraction": "खाते शून्यमनस्कता",
+ "acknowledgements": "श्रेयनिर्देश",
"aria-toggle-search-button": "शोध बटण टॉगल करा",
"aria-toggle-menu-button": "मेनू बटण टॉगल करा",
"beacon-chain": "बीकन चेन",
"bridges": "ब्लॉकचेन ब्रिज",
+ "bug-bounty": "बग बाउंटी",
+ "build": "निर्माण",
+ "build-menu": "निर्माण मेनू",
"clear": "साफ",
"close": "बंद",
"community": "समुदाय",
- "community-hub": "समुदाय यादी",
+ "community-hub": "समुदाय केंद्र",
"community-menu": "समुदाय यादी",
"contact": "संपर्क",
+ "content-buckets": "सामग्री बकेट्स",
+ "content-resources": "सामग्री संसाधने",
"content-standardization": "सामग्री मानकीकरण",
"contributing": "योगदान करा",
"contributors": "योगदानकर्ते",
@@ -20,15 +32,18 @@
"copied": "कॉपी केले",
"copy": "कॉपी",
"danksharding": "डंकशार्डिंग",
- "dao-page": "विकेंद्रीत स्वायत्त संस्था (DAO)",
+ "dao-page": "DAO - विकेंद्रीत स्वायत्त संस्था",
"dark-mode": "गडद",
"data-provided-by": "डेटा स्रोत:",
- "decentralized-applications-dapps": "विकेंद्रित अनुप्रयोग (dapps)",
+ "decentralized-applications-dapps": "Dapps - विकेंद्रित अनुप्रयोग",
"decentralized-identity": "विकेंद्रित ओळख",
"decentralized-social-networks": "विकेंद्रित सामाजिक जाळे",
- "decentralized-science": "विकेंद्रित विज्ञान (DeSci)",
- "defi-page": "विकेंद्रीत अर्थव्यवस्था (DeFi)",
- "devcon": "डेव्हकॉन",
+ "decentralized-science": "DeSci - विकेंद्रित विज्ञान",
+ "description": "एनएव्ही आयटमचे वर्णन",
+ "defi-page": "DeFi - विकेंद्रीत अर्थव्यवस्था",
+ "design": "डिझाईन",
+ "design-principles": "डिझाईनची तत्त्वे",
+ "devcon": "Devcon",
"developers": "विकासक",
"developers-home": "विकासकांचे मुख्यपृष्ठ",
"docs": "दस्तऐवज",
@@ -51,7 +66,7 @@
"documentation": "दस्तऐवज",
"down": "खाली",
"ecosystem": "इकोसिस्टम",
- "edit-page": "पृष्ठ संपादित करा",
+ "edit-page": "पृष्ठ सुधारणे",
"ef-blog": "Ethereum फाउंडेशन ब्लॉग",
"eips": "Ethereum सुधार प्रस्ताव",
"energy-consumption": "Ethereum ची ऊर्जा खपत",
@@ -59,11 +74,9 @@
"enterprise-menu": "एंटरप्राइझ मेनू",
"esp": "इकोसिस्टम सपोर्ट प्रोग्राम",
"eth-current-price": "सध्याची ETH किंमत (USD)",
- "ethereum-basics": "Ethereum basics",
"ethereum-bug-bounty": "Ethereum दोष बक्षीस कार्यक्रम",
"consensus-when-shipping": "हे शिपिंग कधी आहे?",
"ethereum-upgrades": "Ethereum चे अपग्रेड",
- "ethereum-brand-assets": "Ethereum ब्रँड मालमत्ता",
"ethereum-online": "ऑनलाइन समुदाय",
"ethereum-events": "Ethereum कार्यक्रम",
"ethereum-foundation": "Ethereum फाउंडेशन",
@@ -75,7 +88,7 @@
"ethereum-protocol": "Ethereum प्रोटोकॉल",
"ethereum-security": "Ethereum सुरक्षा आणि घोटाळा प्रतिबंध",
"ethereum-support": "Ethereum सपोर्ट",
- "ethereum-wallets": "Ethereum वॉलेट",
+ "ethereum-wallets": "Ethereum वॅलेट",
"ethereum-whitepaper": "Ethereum व्हाइटपेपर",
"feedback-widget-prompt": "हे पृष्ठ उपयुक्त आहे का?",
"feedback-card-prompt-page": "हे पृष्ठ उपयुक्त होते का?",
@@ -83,7 +96,7 @@
"feedback-card-prompt-tutorial": "हे मार्गदर्शन उपयुक्त होते का?",
"feedback-widget-thank-you-title": "आपल्या अभिप्रायाबद्दल आपले धन्यवाद!",
"feedback-widget-thank-you-subtitle": "हे पृष्ठ काही प्रश्नांची उत्तरे देऊन आणखी चांगले बनवा.",
- "feedback-widget-thank-you-subtitle-ext": "तुम्हाला मदत हवी असल्यास, तुम्ही आमच्या Discord वर समुदायापर्यंत पोहोचू शकता.",
+ "feedback-widget-thank-you-subtitle-ext": "तुम्हाला मदत हवी असल्यास, तुम्ही आमच्या मतभेदावर Discord वर समुदायापर्यंत पोहोचू शकता.",
"feedback-widget-thank-you-timing": "2-3 मिनिटे",
"feedback-widget-thank-you-cta": "लहान सर्वेक्षण उघडा",
"find-wallet": "वॉलेट शोधा",
@@ -94,11 +107,10 @@
"grants": "अनुदान",
"grant-programs": "अनुदान कार्यक्रम प्रणाली",
"guides": "मार्गदर्शक",
- "guides-hub": "मार्गदर्शक हब",
+ "guides-hub": "\"कसे करावे” मार्गदर्शिका",
"history-of-ethereum": "Ethereum चा इतिहास",
"home": "मुख्यपृष्ठ",
"how-ethereum-works": "Ethereum कसे कार्य करते",
- "how-to-register-an-ethereum-account": "Ethereum खाते \"नोंदणी\" कसे करावे",
"how-to-revoke-token-access": "तुमच्या क्रिप्टो फंडांमध्ये स्मार्ट कॉन्ट्रॅक्ट प्रवेश कसा रद्द करायचा",
"how-to-swap-tokens": "प्रतिक कसे देवाणघेवाण करावे",
"how-to-use-a-bridge": "टोकन लेयर 2 वर कसे जोडायचे",
@@ -115,7 +127,7 @@
"last-edit": "शेवटचे संपादन",
"layer-2": "स्तर 2",
"learn": "शिका",
- "learn-by-coding": "सांकेतिक लेखनासह शिका",
+ "learn-by-coding": "कोडिंग करून शिका",
"learn-hub": "हब शिका",
"learn-menu": "जाणून घ्या मेनू",
"learn-more": "अधिक जाणून घ्या",
@@ -128,11 +140,106 @@
"loading-error-try-again-later": "डेटा लोड करण्यात अक्षम. पुन्हा प्रयत्न करा.",
"logo": "लोगो",
"mainnet-ethereum": "मेननेट Ethereum",
+ "merge": "विलीन करा",
"more": "अधिक",
- "nav-developers": "विकसक",
+ "nav-about-description": "इथरियम समुदायासाठी सार्वजनिक, मुक्त-स्रोत प्रकल्प",
+ "nav-advanced-description": "अधिक जटिल विषय जाणून घ्या",
+ "nav-advanced-label": "प्रगत",
+ "nav-basics-description": "इथरियमची मूलभूत तत्त्वे समजून घ्या",
+ "nav-basics-label": "मूलभूत",
+ "nav-bridges-description": "Web3 प्राथमिक L1 ब्लॉकचेन्स आणि L2 स्केलिंग सोल्यूशन्सच्या इकोसिस्टममध्ये विकसित झाले आहे",
+ "nav-builders-home-description": "इथरियमसाठी बिल्डर्सचे मॅन्युअल—बिल्डर्सद्वारे, बिल्डर्ससाठी",
+ "nav-builders-home-label": "बिल्डर्स होम",
+ "nav-contribute-description": "तुम्हाला मदत करायची असल्यास, हे तुम्हाला मार्गदर्शन करेल",
+ "nav-contribute-label": "Ethereum.org वर योगदान देत आहे",
+ "nav-dao-description": "केंद्रीकृत अधिकाराशिवाय सदस्य-मालकीचे समुदाय",
+ "nav-dapps-description": "इथरियम वापरून ॲप्सची समृद्ध इकोसिस्टम एक्सप्लोर करा",
+ "nav-defi-description": "पारंपारिक आर्थिक बाजारपेठेसाठी जागतिक, खुला पर्याय",
+ "nav-desci-description": "सध्याच्या वैज्ञानिक प्रणालीसाठी जागतिक, खुला पर्याय",
+ "nav-desoc-description": "सामाजिक संवाद आणि सामग्री निर्मितीसाठी ब्लॉकचेन-आधारित व्यासपीठ",
"nav-developers-docs": "विकसक डॉक्स",
+ "nav-developers": "विकासक",
+ "nav-did-description": "तुमचे विशेष विकेंद्रीकृत अभिज्ञापक जारी करा आणि मालकी मिळवा",
+ "nav-docs-description": "तुम्हाला इथरियमला समजून घेण्यात आणि तयार करण्यात मदत करणारे दस्तऐवज",
+ "nav-docs-design-description": "विशेष web3 डिझाइनची आव्हाने, सर्वोत्तम पद्धती आणि वापरकर्ता संशोधन अंतर्दृष्टी यांचे वर्णन",
+ "nav-docs-design-label": "UX/UI डिझाइनची आधारभूत तत्वे",
+ "nav-docs-foundation-description": "इथरियमवर विकसित करण्यासाठी मूळ आधारभूत तत्त्वे",
+ "nav-docs-overview-description": "विकसक दस्तऐवजांसाठी तुमचे होम",
+ "nav-docs-stack-description": "इथरियम भागभांडवलाचे सर्व तपशील समजून घ्या",
+ "nav-eip-description": "नवीन वैशिष्ट्ये किंवा प्रक्रिया निर्दिष्ट करणारी मानके",
+ "nav-eip-label": "EIPs - इथरियम सुधारणा प्रस्ताव",
+ "nav-emerging-description": "इथरियमसाठी इतर नवीन वापर प्रकरणे जाणून घ्या",
+ "nav-enterprise-description": "इथरियमसाठी व्यवसाय ॲप्लिकेशन्स",
+ "nav-ethereum-org-description": "ही वेबसाइट समुदायाद्वारे चालवली जात आहे—आमच्यात सामील व्हा आणि योगदान द्या",
+ "nav-ethereum-wallets-description": "तुमच्या इथरियम खात्याशी संवाद साधण्यासाठी एक ॲप",
+ "nav-events-description": "विकेंद्रीकरण आणि कोणासाठीही भाग घेण्याचे स्वातंत्र्य",
+ "nav-events-irl-description": "प्रत्येक महिन्यात येथे वैयक्तिक आणि ऑनलाइन प्रमुख इथरियम कार्यक्रम असतात",
+ "nav-events-label": "समुदाय आणि कार्यक्रम",
+ "nav-events-online-description": "या ऑनलाइन समुदायांमध्ये शेकडो हजारो इथरियम उत्साही जनक आहेत",
+ "nav-find-wallet-description": "वॉलेट तुम्हाला क्रिप्टो वापरण्याची परवानगी देतात",
+ "nav-find-wallet-label": "तुमचे वॉलेट निवडा",
+ "nav-gas-fees-description": "ETH चे व्यवहार शुल्क कसे मोजले जाते",
+ "nav-get-eth-description": "इथरियम अॅप्लिकेशन्स वापरण्यासाठी तुम्हाला इथर (ETH) आवश्यक आहे",
+ "nav-get-started-description": "इथरियम वापरण्यासाठी तुमची पहिली पायरी",
+ "nav-governance-description": "इथरियम प्रोटोकॉल अपग्रेड करण्यासाठी प्रक्रिया समाविष्ट आहे",
+ "nav-governance-label": "शासन",
+ "nav-grants-description": "अनुदान निधी कार्यक्रम प्रदान करणाऱ्या उपक्रमांवर आमच्या समुदायाने तयार केलेली यादी",
+ "nav-guide-create-account-description": "वॉलेट ॲपसह कोणीही कधीही इथरियम खाते तयार करू शकते",
+ "nav-guide-revoke-access-description": "इथरियम इकोसिस्टममधील स्मार्ट करार आणि ॲप्लिकेशन्सशी संवाद साधताना सुरक्षित रहा",
+ "nav-guide-revoke-access-label": "स्मार्ट करार प्रवेश कसा रद्द करायचा",
+ "nav-guide-use-wallet-description": "वॉलेटची सर्व मूलभूत कार्ये कशी चालवायची ते शिका",
+ "nav-guide-use-wallet-label": "वॉलेट कसे वापरावे",
+ "nav-guides-description": "आपल्याला प्रारंभ करण्यात मदत करण्यासाठी व्यावहारिक चरण-दर-चरण मार्गदर्शक",
+ "nav-guides-label": "मार्गदर्शन कसे करायचे",
+ "nav-history-description": "सर्व प्रमुख फॉर्क्स आणि अद्यतनांची टाइमलाइन",
+ "nav-history-label": "इथरियमचा तांत्रिक इतिहास",
+ "nav-layer-2-description": "इथरियमसाठी स्वस्त आणि जलद व्यवहार",
+ "nav-learn-by-coding-description": "तुम्हाला इथरियमचा प्रयोग करण्यास मदत करणारी साधने",
+ "nav-local-env-description": "तुमचे इथरियम विकास भागभांडवल निवडा आणि सेट करा",
+ "nav-mainnet-description": "सार्वजनिक इथरियम मेननेटवर एंटरप्राइझ ब्लॉकचेन अॅप्लिकेशन्स तयार केले जाऊ शकतात",
+ "nav-nft-description": "Ethereum-आधारित मालमत्ता म्हणून अद्वितीय कोणत्याही गोष्टीचे प्रतिनिधित्व करण्याचा एक मार्ग",
+ "nav-open-research-description": "इथरियमची प्राथमिक ताकद म्हणजे त्याचा सक्रिय संशोधन समुदाय",
+ "nav-open-research-label": "संशोधन खोला",
+ "nav-overview-description": "इथरियम शिक्षणाच्या सर्व गोष्टी",
+ "nav-participate-overview-description": "सहभागी कसे व्हावे याबद्दलचा आढावा",
"nav-primary": "प्राथमिक",
- "nft-page": "नॉन-फंजीबल टोकन (NFT)",
+ "nav-quizzes-description": "इथरियम आणि क्रिप्टोकरन्सी तुम्हाला किती चांगल्या प्रकारे समजतात ते शोधा",
+ "nav-quizzes-label": "तुमच्या ज्ञानाची चाचणी घ्या",
+ "nav-refi-description": "पुनर्निर्मिती तत्त्वांवर आधारित पर्यायी आर्थिक व्यवस्था",
+ "nav-research-description": "इथरियम सुधारण्यासाठी वापरल्या जाणाऱ्या प्रक्रिया",
+ "nav-research-label": "संशोधन आणि विकास",
+ "nav-roadmap-description": "इथरियमसाठी अधिक मापनीयता, सुरक्षितता आणि टिकाऊपणाचा मार्ग",
+ "nav-roadmap-future-description": "मजबूत आणि विकेंद्रित नेटवर्क म्हणून इथरियमचे घनीकरण",
+ "nav-roadmap-future-label": "भविष्य-प्रूफिंग",
+ "nav-roadmap-label": "नकाशा",
+ "nav-roadmap-scaling-description": "व्यवहार खर्च आणि गती आणखी कमी करण्यासाठी नेटवर्क अद्यतने",
+ "nav-roadmap-security-description": "भविष्यात इथरियम सर्व प्रकारच्या हल्ल्यांना लवचिक राहते याची खात्री करणे",
+ "nav-roadmap-security-label": "सुधारित सुरक्षा",
+ "nav-roadmap-ux-description": "इथरियम वापरणे सोपे करणे आवश्यक आहे",
+ "nav-run-a-node-description": "नेटवर्क सुरक्षित करण्यात मदत करताना पूर्णपणे सार्वभौम व्हा",
+ "nav-security-description": "क्रिप्टोकरन्सी वापरताना सर्वोत्तम पद्धती जाणून घ्या",
+ "nav-smart-contracts-description": "इथरियम इकोसिस्टमचे मूलभूत बिल्डिंग ब्लॉक्स",
+ "nav-stablecoins-description": "स्टेबलकॉइन्स हे इथरियम टोकन्स आहेत जे एका निश्चित मूल्यावर राहण्यासाठी डिझाइन केले आहेत",
+ "nav-stake-description": "इथरियम सुरक्षित करण्यासाठी बक्षिसे मिळवा",
+ "nav-stake-label": "भागभांडवल",
+ "nav-staking-home-description": "भागभांडवलासाठी विविध पर्यायांचा आढावा",
+ "nav-staking-pool-description": "इतरांसह सामील होऊन ETH च्या कितीही रकमेसह भागभांडवल मिळवा आणि बक्षिसे मिळवा",
+ "nav-staking-pool-label": "पूल केलेले स्टॅकिंग",
+ "nav-staking-saas-description": "थर्ड-पार्टी नोड ऑपरेटर तुमच्या व्हॅलिडेटर क्लायंटचे ऑपरेशन हाताळतात",
+ "nav-staking-saas-label": "एक सेवेसह भागभांडवल",
+ "nav-staking-solo-description": "होम हार्डवेअर चालवा आणि वैयक्तिकरित्या इथरियम नेटवर्कची सुरक्षा आणि विकेंद्रीकरण जोडा",
+ "nav-staking-solo-label": "सोलो स्टॅकिंग",
+ "nav-start-building-description": "नवोदितांसाठी उपयुक्त माहिती",
+ "nav-translation-program-description": "Ethereum.org सर्व भाषांमध्ये अनुवादित करण्याचा एक सहयोगी प्रयत्न",
+ "nav-tutorials-description": "सामुदायिक ट्यूटोरियलची क्युरेट केलेली यादी",
+ "nav-use-cases-description": "इथरियमच्या वापरासाठी विविध कल्पना शोधा",
+ "nav-what-is-ether-description": "इथरियम ॲप्सचे चलन",
+ "nav-what-is-ethereum-description": "असे काय आहे जे इथरियमला विशेष बनवते ते समजून घ्या",
+ "nav-what-is-web3-label": "Web3 म्हणजे काय?",
+ "nav-what-is-web3-description": "केंद्रीकृत मक्तेदारी नियमांचे पालन करण्याचा पर्याय",
+ "nav-whitepaper-description": "2014 मध्ये व्हिटालिक बुटेरिन यांनी लिहिलेले मूळ इथरियम व्हाइटपेपर",
+ "nav-zkp-description": "विधान उघड न करता विधानाची वैधता सिद्ध करण्याचा एक मार्ग",
+ "nft-page": "NFT - नॉन-फंजीबल टोकन",
"nfts": "NFT",
"no": "नाही",
"on-this-page": "या पृष्ठावर",
@@ -140,6 +247,7 @@
"page-developers-aria-label": "विकसक मेनू",
"page-index-meta-title": "मुख्यपृष्ठ",
"page-last-updated": "पृष्ठ अखेरचे अद्यतनित",
+ "participate-menu": "सहभागी मेनू",
"pbs": "प्रस्तावक-बिल्डर वेगळे करणे",
"pools": "पूल केलेले स्टॅकिंग",
"privacy-policy": "गुप्तता धोरण",
@@ -150,8 +258,10 @@
"refresh": "कृपया पृष्ठ रीफ्रेश करा.",
"return-home": "मुख्यपृष्ठावर परत या",
"roadmap": "Ethereum नकाशा",
+ "research": "संशोधन",
+ "research-menu": "संशोधन मेनू",
"resources": "भाषांतर संसाधने",
- "regenerative-finance": "रीजनरेटिव्ह फायनान्स (ReFi)",
+ "regenerative-finance": "ReFi - रीजनरेटिव्ह फायनान्स",
"run-a-node": "एक नोड चालवा",
"rollup-component-website": "वेबसाईट",
"rollup-component-developer-docs": "विकसक डॉक्स",
@@ -164,23 +274,23 @@
"search-box-blank-state-text": "शोध घ्या!",
"search-eth-address": "हे Ethereum पत्त्याप्रमाणे दिसते. आम्ही पत्त्यांसाठी विशिष्ट असा डेटा प्रदान करत नाही. ब्लॉक एक्सप्लोरअर वर एथरस्केन प्रमाणे त्यासाठी शोध घेण्याचा प्रयत्न करा",
"search-no-results": "आपल्या शोधासाठी कोणतेही परिणाम नाहीत",
+ "security": "सुरक्षा",
"single-slot-finality": "एकटा-स्लॉट अंतिमता",
"statelessness": "राज्यहीनता",
"see-contributors": "योगदानकर्ता पहा",
- "set-up-local-env": "स्थानिक वातावरण सेट अप करा",
+ "set-up-local-env": "स्थानिक पातळीवर सेट अप करा",
"sharding": "खापरीकरण",
"show-all": "सर्व दाखवा",
"show-less": "कमी दाखवा",
"site-description": "Ethereum हे पैसे आणि नवीन प्रकारच्या अनुप्रयोगांसाठी जागतिक, विकेंद्रीकृत व्यासपीठ आहे. Ethereum वर, आपण पैसे नियंत्रित करणारा कोड लिहू शकता आणि जगात कोठेही प्रवेशयोग्य अनुप्रयोग तयार करू शकता.",
- "site-title": "ethereum.org",
"skip-to-main-content": "प्रमुख मजकुराकडे जा",
"smart-contracts": "स्मार्ट कॉन्ट्रॅक्ट",
- "stablecoins": "स्टेबलकॉइन्स",
+ "stablecoins": "स्टेबलकोइन्स",
"stake-eth": "भागभांडवल ETH",
"staking": "स्टॅकिंग",
"start-here": "इथून सुरुवात",
- "style-guide": "Style guide",
"solo": "सोलो स्टॅकिंग",
+ "support": "मदत",
"terms-of-use": "वापरण्याच्या अटी",
"translation-banner-body-new": "आपण हे पृष्ठ इंग्रजीमध्ये पहात आहात कारण आम्ही अद्याप ते अनुवादित केलेले नाही. आम्हाला या सामग्रीचे भाषांतर करण्यात मदत करा.",
"translation-banner-body-update": "या पृष्ठाची नवीन आवृत्ती आहे परंतु ती आत्ता केवळ इंग्रजीमध्ये आहे. नवीनतम आवृत्ती अनुवादित करण्यात आमची मदत करा.",
@@ -191,20 +301,21 @@
"translation-banner-no-bugs-title": "येथे कोणतेही बग नाहीत!",
"translation-banner-no-bugs-content": "हे पृष्ठ भाषांतरित केले जात नाही. आम्ही जाणूनबुजून हे पृष्ठ इंग्रजीमध्ये सोडले आहे.",
"translation-banner-no-bugs-dont-show-again": "पुन्हा दाखवू नका",
+ "translation-program": "भाषांतर कार्यक्रम",
"try-using-search": "तुम्ही जे शोधत आहात ते शोधण्यासाठी शोध बार वापरून पहा किंवा",
"tutorials": "शिकवण्या",
"up": "वर",
+ "use": "वापर",
"use-ethereum": "Ethereum वापरा",
"use-ethereum-menu": "Ethereum मेनू वापरा",
- "user-experience": "User experience",
+ "use-menu": "वापर मेनू",
"verkle-trees": "वर्कल ट्रीस",
"wallets": "वॉलेट",
"we-couldnt-find-that-page": "आम्हाला ते पृष्ठ सापडले नाही",
"web3": "Web3 म्हणजे काय?",
- "web3-title": "Web3",
"website-last-updated": "संकेतस्थळाचे अखेरचे अद्यतनित",
- "what-is-ether": "इथर(ETH) म्हणजे काय?",
- "what-is-ethereum": "इथेरियम म्हणजे काय?",
+ "what-is-ether": "इथर (ETH) म्हणजे काय?",
+ "what-is-ethereum": "Ethereum म्हणजे काय?",
"withdrawals": "पैसे काढणे स्टिकिंग",
"yes": "होय",
"zero-knowledge-proofs": "शून्य-ज्ञान पुरावे"
diff --git a/src/intl/mr/page-languages.json b/src/intl/mr/page-languages.json
index 94de22f0b60..7784e747f2e 100644
--- a/src/intl/mr/page-languages.json
+++ b/src/intl/mr/page-languages.json
@@ -17,10 +17,13 @@
"page-languages-translated": "भाषांतरित",
"page-languages-words": "शब्द",
"page-languages-recruit-community": "ethereum.org चे भाषांतर करण्यात आम्हाला मदत करा.",
+ "langauge-am": "अम्हेरिक",
"language-ar": "अरेबिक",
"language-az": "अझरबैजानी",
+ "langauge-be": "बेलारूसी",
"language-bg": "बल्गेरियन",
"language-bn": "बंगाली",
+ "language-bs": "बोसनियन",
"language-ca": "कॅटलन",
"language-cs": "चेक",
"language-da": "डॅनिश",
@@ -37,6 +40,7 @@
"language-hi": "हिंदी",
"language-hr": "क्रोएशिअन",
"language-hu": "हंगेरियन",
+ "language-hy-am": "अर्मेनिअन",
"language-id": "इंडोनेशियन",
"language-ig": "इगबो",
"language-it": "इटालियन",
@@ -44,12 +48,14 @@
"language-ka": "जॉर्जियन",
"language-kk": "कझाक",
"language-km": "ख्मेर",
+ "language-kn": "कन्नड",
"language-ko": "कोरियन",
"language-lt": "लिथुआनिअन",
"language-ml": "मल्याळम",
"language-mr": "मराठी",
"language-ms": "मलय",
"language-nb": "नॉर्वेजियन",
+ "language-ne-np": "नेपाळी",
"language-nl": "डच",
"language-pcm": "नायजेरियन पिडगिन",
"language-fil": "फिलिपिनो",
@@ -65,6 +71,7 @@
"language-sw": "स्वाहिली",
"language-ta": "तमिळ",
"language-th": "थाई",
+ "language-tk": "तुर्कमेन",
"language-tr": "तुर्किश",
"language-uk": "युक्रेनियन",
"language-ur": "उर्दू",
diff --git a/src/intl/mr/page-wallets-find-wallet.json b/src/intl/mr/page-wallets-find-wallet.json
index cdf355e420b..25ac0066af1 100644
--- a/src/intl/mr/page-wallets-find-wallet.json
+++ b/src/intl/mr/page-wallets-find-wallet.json
@@ -7,7 +7,6 @@
"page-find-wallet-meta-title": "Ethereum वॉलेट शोधा",
"page-find-wallet-title": "वॉलेट शोधा",
"page-find-wallet-try-removing": "एक किंवा दोन वैशिष्ट्य काढून टाकण्याचा प्रयत्न करा",
- "page-find-wallet-choose-to-compare": "तुलना करणे निवडा",
"page-stake-eth": "भागभांडवल ETH",
"page-find-wallet-open-source": "Open source",
"page-find-wallet-open-source-desc": "मुक्त-स्रोत सॉफ्टवेअर कोणालाही अनुप्रयोगाची अखंडता आणि सुरक्षितता तपासू देते",
@@ -16,8 +15,6 @@
"page-find-wallet-non-custodial-desc": "वॅलेटं जे तुमच्या खाजगी की नियंत्रित करत नाहीत",
"page-find-wallet-hardware-wallet-support": "हार्डवेअर वॉलेट समर्थन",
"page-find-wallet-hardware-wallet-support-desc": "चांगल्या सुरक्षिततेसाठी हार्डवेअर पाकीटशी कनेक्ट होऊ शकणारे वॉलेट",
- "page-find-wallet-walletconnect": "WalletConnect",
- "page-find-wallet-walletconnect-desc": "dapps शी कनेक्ट करण्यासाठी WalletConnect चे समर्थन करणारे वॅलेटं",
"page-find-wallet-rpc-importing": "RPC आयात करत आहे",
"page-find-wallet-rpc-importing-desc": "वेगवेगळ्या नोड्स किंवा नेटवर्कशी कनेक्ट होण्यासाठी सानुकूल RPC शेवटच्या बिंदूंना समर्थन देणारी पाकीट",
"page-find-wallet-nft-support": "NFT समर्थन",
@@ -36,8 +33,6 @@
"page-find-wallet-ens-support-desc": "Ethereum नेम सर्व्हिस (ENS) चे समर्थन करणारे वॅलेटं",
"page-find-wallet-token-importing": "टोकन आयात करणे",
"page-find-wallet-token-importing-desc": "वॉलेटमध्ये वापरण्यासाठी कोणतेही ERC-20 टोकन आयात करा",
- "page-find-wallet-fee-optimization": "फी सर्वोत्तमीकरण",
- "page-find-wallet-fee-optimization-desc": "सर्वोत्तमी केलेले गॅस फीसाठी समर्थन प्रकार 2 व्यवहार आणि न वापरलेल्या गॅससाठी शुल्क परतावा",
"page-find-wallet-buy-crypto": "क्रिप्टो खरेदी करा",
"page-find-wallet-buy-crypto-desc": "थेट वॉलेटमध्ये फियाटसह क्रिप्टो खरेदी करा \n *टीप: क्रिप्टो खरेदी करणे प्रदेश विशिष्ट असू शकते",
"page-find-wallet-sell-for-fiat": "फियाटसाठी विक्री करा",
@@ -46,7 +41,6 @@
"page-find-wallet-multisig-desc": "वॅलेटं ज्यांना व्यवहार अधिकृत करण्यासाठी एकाधिक स्वाक्षरी आवश्यक आहेत",
"page-find-wallet-social-recovery": "सामाजिक पुनर्प्राप्ती",
"page-find-wallet-social-recovery-desc": "वॅलेटं जे पालकांना स्मार्ट कॉन्ट्रॅक्ट वॅलेटंसाठी साइनिंग की बदलण्याची परवानगी देतात",
- "page-find-wallet-token-support": "टोकन समर्थन",
"page-find-wallet-features": "Features",
"page-find-wallet-security": "सुरक्षा",
"page-find-wallet-smart-contract": "Smart contract",
@@ -63,7 +57,6 @@
"page-find-wallet-chromium": "Chromium",
"page-find-wallet-firefox": "Firefox",
"page-find-wallet-hardware": "Hardware",
- "page-find-wallet-hardware-desc": "हार्डवेअर पाकीट",
"page-find-wallet-new-to-crypto-title": "क्रिप्टोसाठी नवीन",
"page-find-wallet-new-to-crypto-desc": "तुम्ही तुमचे पहिले वॉलेट शोधत असलेले प्रथमच वापरकर्ते आहात",
"page-find-wallet-nfts-title": "NFT",
@@ -74,21 +67,13 @@
"page-find-wallet-finance-desc": "तुम्ही DeFi वापरणारे आहात आणि तुम्हाला DeFi अनुप्रयोगशी कनेक्ट करू देणारे वॉलेट हवे आहे",
"page-find-wallet-developer-title": "विकसक",
"page-find-wallet-developer-desc": "तुम्ही विकसक आहात आणि dapps विकसित करण्यासाठी आणि चाचणी करण्यात मदत करण्यासाठी वॉलेटची आवश्यकता आहे",
- "page-find-wallet-persona-desc": "तुमच्या वापरकर्त्याच्या प्रकाराशी जुळणारे प्रोफाइल निवडा आणि वॉलेट सूची फिल्टर करा",
"page-find-wallet-filters": "फिल्टर",
"page-find-wallet-active": "सक्रिय",
- "page-find-wallet-profile-filters": "प्रोफाइल फिल्टर",
- "page-find-wallet-feature-filters": "वैशिष्ट्य फिल्टर",
"page-find-wallet-footnote-1": "या पृष्ठावर सूचीबद्ध केलेले वॉलेट्स अधिकृत समर्थन नाहीत आणि केवळ माहितीच्या उद्देशाने प्रदान केले आहेत.",
"page-find-wallet-footnote-2": "त्यांची वर्णने वॉलेट प्रकल्पांनीच दिली आहेत.",
"page-find-wallet-footnote-3": "आम्ही आमच्या सूची धोरण मधील निकषांवर आधारित या पृष्ठावर उत्पादने जोडतो. तुम्हाला आम्ही वॉलेट जोडायचे असल्यास, GitHub मध्ये समस्या मांडा सुचवा.",
"page-find-wallet-mobile": "मोबाईल",
- "page-find-wallet-mobile-desc": "मोबाइल अॅप्ससह वॉलेट",
"page-find-wallet-desktop": "डेस्कटॉप",
- "page-find-wallet-desktop-desc": "डेस्कटॉप अॅप्ससह पाकीट",
"page-find-wallet-browser": "ब्राउझर",
- "page-find-wallet-browser-desc": "ब्राउझर विस्तारांसह वॅलेटं",
- "page-find-wallet-device": "डिव्हाइस",
- "page-find-choose-to-compare": "तुलना करणे निवडा",
- "page-find-wallet-choose-features": "वैशिष्ट्ये निवडा"
+ "page-find-wallet-device": "डिव्हाइस"
}
diff --git a/src/intl/ms/common.json b/src/intl/ms/common.json
index f977fcf3736..e2a0133865f 100644
--- a/src/intl/ms/common.json
+++ b/src/intl/ms/common.json
@@ -1,17 +1,29 @@
{
- "account-abstraction": "Pengabstrakan akaun",
"about-ethereum-org": "Perihal ethereum.org",
"about-us": "Perihal kami",
+ "adding-desci-projects": "Menambah Projek Desci",
+ "adding-developer-tools": "Menambah Alat Pemaju",
+ "adding-exchanges": "Menambah Pertukaran",
+ "adding-glossary-terms": "Menambah Istilah Daftar Kata",
+ "adding-staking-products": "Menambah Produk Pertaruhan",
+ "adding-wallets": "Menambah Dompet",
+ "account-abstraction": "Pengabstrakan akaun",
+ "acknowledgements": "Perakuan",
"aria-toggle-search-button": "Togol butang cari",
"aria-toggle-menu-button": "Togol butang menu",
"beacon-chain": "Rantai Beacon",
"bridges": "Jambatan blok rantai",
+ "bug-bounty": "Hadiah untuk penemuan Pepijat",
+ "build": "Bina",
+ "build-menu": "Bina menu",
"clear": "Kosongkan",
"close": "Tutup",
"community": "Komuniti",
"community-hub": "Hab komuniti",
"community-menu": "Menu Komuniti",
"contact": "Hubungi",
+ "content-buckets": "Baldi Kandungan",
+ "content-resources": "Sumber Kandungan",
"content-standardization": "Pemiawaian kandungan",
"contributing": "Menyumbang",
"contributors": "Penyumbang",
@@ -20,14 +32,17 @@
"copied": "Telah disalin",
"copy": "Salin",
"danksharding": "Danksharding",
- "dao-page": "Organisasi autonomi yang tak terpusat (DAO)",
+ "dao-page": "DAO - Organisasi autonomi yang tak terpusat",
"dark-mode": "Gelap",
"data-provided-by": "Sumber data:",
- "decentralized-applications-dapps": "Aplikasi tidak berpusat (dapps)",
+ "decentralized-applications-dapps": "Dapp - Aplikasi tidak berpusat",
"decentralized-identity": "Identiti ternyahpusat",
"decentralized-social-networks": "Rangkaian sosial ternyahpusat",
- "decentralized-science": "Sains ternyahpusat (DeSci)",
- "defi-page": "Kewangan tak terpusat (DeFi)",
+ "decentralized-science": "DeSci - Sains ternyahpusat",
+ "description": "Deskripsi untuk item navigasi",
+ "defi-page": "DeFi - Kewangan tak terpusat",
+ "design": "Reka Bentuk",
+ "design-principles": "Prinsip Reka Bentuk",
"devcon": "Devcon",
"developers": "Pembangun",
"developers-home": "Laman Utama Pembangun",
@@ -51,7 +66,7 @@
"documentation": "Dokumentasi",
"down": "Bawah",
"ecosystem": "Ekosistem",
- "edit-page": "Edit halaman",
+ "edit-page": "Edit halaman\nOr\nSunting halaman",
"ef-blog": "Blog Yayasan Ethereum",
"eips": "Cadangan Penambahbaikan Ethereum",
"energy-consumption": "Penggunaan tenaga Ethereum",
@@ -63,7 +78,7 @@
"ethereum-bug-bounty": "Sistem baunti pepijat Ethereum",
"consensus-when-shipping": "Bilakah ia dihantar?",
"ethereum-upgrades": "Naik taraf Ethereum",
- "ethereum-brand-assets": "Aset Jenama Ethereum",
+ "ethereum-brand-assets": "Aset jenama Ethereum",
"ethereum-online": "Komuniti dalam talian",
"ethereum-events": "Acara Ethereum",
"ethereum-foundation": "Yayasan Ethereum",
@@ -83,22 +98,22 @@
"feedback-card-prompt-tutorial": "Adakah tutorial ini membantu?",
"feedback-widget-thank-you-title": "Terima kasih atas maklum balas anda!",
"feedback-widget-thank-you-subtitle": "Jadikan halaman ini lebih baik dengan menjawab beberapa soalan.",
- "feedback-widget-thank-you-subtitle-ext": "Jika anda memerlukan bantuan, anda boleh menghubungi komuniti kami di Discord kami.",
+ "feedback-widget-thank-you-subtitle-ext": "Jika anda memerlukan bantuan, anda boleh menghubungi komuniti kami di Discord.",
"feedback-widget-thank-you-timing": "2–3 minit",
"feedback-widget-thank-you-cta": "Tinjauan ringkas terbuka",
"find-wallet": "Cari dompet",
"future-proofing": "Langkah berdaya tahan masa depan",
"get-eth": "Dapatkan ETH",
"get-involved": "Libatkan diri",
- "get-started": "Mari mulakan",
+ "get-started": "Mari bermula",
"grants": "Geran",
"grant-programs": "Program Geran Ekosistem",
"guides": "Panduan",
- "guides-hub": "Hab panduan",
+ "guides-hub": "Panduan cara",
"history-of-ethereum": "Sejarah Ethereum",
"home": "Laman Utama",
"how-ethereum-works": "Cara Ethereum berfungsi",
- "how-to-register-an-ethereum-account": "Cara \"mendaftar\" akaun Ethereum",
+ "how-to-create-an-ethereum-account": "Cara untuk \"mencipta\" akaun Ethereum",
"how-to-revoke-token-access": "Cara membatalkan akses kontrak pintar kepada dana kripto anda",
"how-to-swap-tokens": "Cara menukar token",
"how-to-use-a-bridge": "Cara menghubungkan token kepada lapisan 2",
@@ -115,7 +130,7 @@
"last-edit": "Suntingan terakhir",
"layer-2": "Lapisan 2",
"learn": "Ketahui",
- "learn-by-coding": "Belajar melalui mengekod",
+ "learn-by-coding": "Belajar melalui pengekodan",
"learn-hub": "Hab Pembelajaran",
"learn-menu": "Menu belajar",
"learn-more": "Ketahui lebih lanjut",
@@ -128,11 +143,110 @@
"loading-error-try-again-later": "Tidak dapat memuatkan data. Cuba lagi kemudian.",
"logo": "logo",
"mainnet-ethereum": "Jaringan Utama Ethereum",
- "more": "Selanjutnya",
- "nav-developers": "Pemaju",
+ "merge": "Gabung",
+ "more": "Lebih lanjut",
+ "nav-about-description": "Satu projek sumber terbuka umum untuk komuniti Ethereum",
+ "nav-advanced-description": "Pelajari topik yang lebih kompleks",
+ "nav-advanced-label": "Maju",
+ "nav-basics-description": "Fahami asas Ethereum",
+ "nav-basics-label": "Asas",
+ "nav-bridges-description": "Web3 telah berkembang menjadi satu ekosistem blok rantai L1 utama dan penyelesaian penskalaan L2",
+ "nav-builders-home-description": "Buku panduan pembina untuk Ethereum—oleh pembina, untuk pembina",
+ "nav-builders-home-label": "Laman utama pembina",
+ "nav-contribute-description": "Jika anda mahu membantu, ini akan memberi anda panduan",
+ "nav-contribute-label": "Menyumbang kepada ethereum.org",
+ "nav-dao-description": "Komuniti milik ahli tanpa penguasaan berpusat",
+ "nav-dapps-description": "Terokai pelbagai ekosistem aplikasi menggunakan Ethereum",
+ "nav-defi-description": "Satu alternatif global yang terbuka berbanding pasaran kewangan tradisional",
+ "nav-desci-description": "Satu alternatif global yang terbuka berbanding sistem saintifik semasa",
+ "nav-desoc-description": "Platform berasaskan blok rantai untuk interaksi sosial dan penciptaan kandungan",
"nav-developers-docs": "Dokumen pembangun",
+ "nav-developers": "Pembangun",
+ "nav-did-description": "Hasilkan dan miliki pengecam tidak berpusat anda yang unik",
+ "nav-docs-description": "Dokumen untuk membantu anda memahami dan membina dengan Ethereum",
+ "nav-docs-design-description": "Deskripsi cabaran reka bentuk web3 unik, amalan terbaik, dan pemahaman penyelidikan pengguna",
+ "nav-docs-design-label": "Asas reka bentuk UX/UI",
+ "nav-docs-foundation-description": "Laman utama anda untuk dokumen pembangun",
+ "nav-docs-foundation-label": "Topik asas",
+ "nav-docs-overview-description": "Laman utama anda untuk dokumen pembangun",
+ "nav-docs-stack-description": "Fahami semua butiran timbunan Ethereum",
+ "nav-docs-stack-label": "Timbunan Ethereum",
+ "nav-eip-description": "Standard yang menentukan ciri atau proses baharu",
+ "nav-eip-label": "EIP - Cadangan penambahbaikan Ethereum",
+ "nav-emerging-description": "Kenali kes penggunaan baharu yang lain bagi Ethereum",
+ "nav-emerging-label": "Kes penggunaan yang muncul",
+ "nav-enterprise-description": "Aplikasi perniagaan untuk Ethereum",
+ "nav-ethereum-org-description": "Tapak web ini dipacu oleh komuniti—sertai kami dan buat sumbangan juga",
+ "nav-ethereum-wallets-description": "Aplikasi untuk berinteraksi dengan akaun Ethereum anda",
+ "nav-events-description": "Desentralisasi dan kebebasan untuk mengambil bahagian kepada sesiapa sahaja",
+ "nav-events-irl-description": "Setiap bulan terdapat acara besar Ethereum secara langsung dan dalam talian",
+ "nav-events-label": "Komuniti dan acara",
+ "nav-events-online-description": "Begitu ramai penyokong Ethereum mengetuai komuniti dalam talian ini",
+ "nav-find-wallet-description": "Dompet membolehkan anda menggunakan kripto",
+ "nav-find-wallet-label": "Pilih dompet anda",
+ "nav-gas-fees-description": "Cara yuran transaksi ETH dikira",
+ "nav-get-eth-description": "Anda memerlukan ether (ETH) untuk menggunakan aplikasi Ethereum",
+ "nav-get-started-description": "Langkah pertama anda untuk menggunakan Ethereum",
+ "nav-governance-description": "Proses yang terlibat untuk meningkatkan protokol Ethereum",
+ "nav-governance-label": "Tadbir Urus",
+ "nav-grants-description": "Senarai yang dipilih susun oleh komuniti tentang projek yang menyediakan program pembiayaan geran",
+ "nav-guide-create-account-description": "Semua orang boleh mencipta akaun Ethereum pada bila-bila masa, secara percuma dengan aplikasi dompet",
+ "nav-guide-create-account-label": "Cara untuk mencipta akaun Ethereum",
+ "nav-guide-revoke-access-description": "Kekal selamat apabila berinteraksi dengan kontrak pintar dan aplikasi dalam ekosistem Ethereum",
+ "nav-guide-revoke-access-label": "Cara membatalkan akses kontrak pintar",
+ "nav-guide-use-wallet-description": "Belajar cara mengendalikan semua fungsi asas dalam sebuah dompet",
+ "nav-guide-use-wallet-label": "Cara menggunakan dompet",
+ "nav-guides-description": "Panduan langkah demi langkah praktikal untuk membantu anda bermula",
+ "nav-guides-label": "Panduan cara",
+ "nav-history-description": "Garis masa semua pelaksanaan dan pengemaskinian penting",
+ "nav-history-label": "Sejarah teknikal Ethereum",
+ "nav-layer-2-description": "Transaksi yang lebih murah dan pantas untuk Ethereum",
+ "nav-learn-by-coding-description": "Alat-alat yang membantu anda mencuba dengan Ethereum",
+ "nav-local-env-description": "Pilih dan tetapkan tindanan pembangunan Ethereum anda",
+ "nav-mainnet-description": "Aplikasi blok rantai syarikat boleh dibina pada Rangkaian Utama Ethereum umum",
+ "nav-nft-description": "Satu cara untuk mewakili apa sahaja yang unik sebagai aset berasaskan Ethereum",
+ "nav-open-research-description": "Salah satu kelebihan utama Ethereum ialah komuniti penyelidikannya yang aktif",
+ "nav-open-research-label": "Penyelidikan terbuka",
+ "nav-overview-description": "Segala-galanya tentang Ethereum",
+ "nav-overview-label": "Ringkasan",
+ "nav-participate-overview-description": "Gambaran keseluruhan tentang cara untuk mengambil bahagian",
"nav-primary": "Utama",
- "nft-page": "Token yang tidak dapat dipertukarkan (NFT)",
+ "nav-quizzes-description": "Ketahui sejauh mana anda memahami Ethereum dan mata wang kripto",
+ "nav-quizzes-label": "Uji pengetahuan anda",
+ "nav-refi-description": "Satu sistem ekonomi alternatif yang dibina atas prinsip penjanaan semula",
+ "nav-research-description": "Proses yang digunakan untuk menambah baik Ethereum",
+ "nav-research-label": "Penyelidikan dan pembangunan",
+ "nav-roadmap-description": "Laluan untuk penskalaan, keselamatan dan kelestarian yang lebih untuk Ethereum",
+ "nav-roadmap-future-description": "Mengukuhkan Ethereum sebagai satu rangkaian yang teguh dan tidak berpusat",
+ "nav-roadmap-future-label": "Langkah berdaya tahan masa depan",
+ "nav-roadmap-label": "Pelan hala tuju",
+ "nav-roadmap-scaling-description": "Pengemaskinian rangkaian untuk mengurangkan lagi kos transaksi dan kelajuan",
+ "nav-roadmap-security-description": "Memastikan Ethereum kekal berdaya tahan kepada semua jenis serangan pada masa depan",
+ "nav-roadmap-security-label": "Meningkatkan keselamatan",
+ "nav-roadmap-ux-description": "Penggunaan Ethereum perlu dipermudahkan",
+ "nav-run-a-node-description": "Jadi berkuasa sepenuhnya di samping membantu melindungi rangkaian",
+ "nav-security-description": "Ketahui amalan terbaik apabila menggunakan mata wang kripto",
+ "nav-smart-contracts-description": "Blok pembangunan asas bagi ekosistem Ethereum",
+ "nav-stablecoins-description": "Stablecoins ialah token Ethereum yang direka bentuk untuk kekal pada nilai tetap",
+ "nav-stake-description": "Peroleh ganjaran kerana menggunakan Ethereum",
+ "nav-stake-label": "Petaruhan",
+ "nav-staking-home-description": "Gambaran keseluruhan tentang pilihan berbeza untuk pertaruhan",
+ "nav-staking-pool-description": "Bertaruh dan peroleh ganjaran dengan sebarang amaun ETH dengan menyertai bersama orang lain",
+ "nav-staking-pool-label": "Pertaruhan terkumpul",
+ "nav-staking-saas-description": "Pengendali nod pihak ketiga mengendalikan operasi klien pengesah anda",
+ "nav-staking-saas-label": "Pertaruhan dengan perkhidmatan",
+ "nav-staking-solo-label": "Pertaruhan solo",
+ "nav-start-building-description": "Maklumat berguna untuk pengguna baharu",
+ "nav-translation-program-description": "Usahasama untuk menterjemah ethereum.org kepada semua bahasa",
+ "nav-tutorials-description": "Senarai tutorial komuniti yang dipilih susun",
+ "nav-use-cases-description": "Terokai idea lain untuk penggunaan Ethereum",
+ "nav-what-is-ether-description": "Mata wang aplikasi Ethereum",
+ "nav-what-is-ethereum-description": "Fahami perkara yang membuatkan Ethereum istimewa",
+ "nav-what-is-web3-label": "Apakah itu Web3?",
+ "nav-what-is-web3-description": "Alternatif kepada monopoli berpusat yang menentukan peraturan",
+ "nav-whitepaper-description": "Kertas putih Ethereum yang asal ditulis oleh Vitalik Buterin pada 2014",
+ "nav-zkp-description": "Satu cara untuk membuktikan kesahihan kenyataan tanpa mendedahkan kenyataan itu sendiri",
+ "nft-page": "NFT - Token yang tidak dapat dipertukarkan",
"nfts": "NFT",
"no": "Tidak",
"on-this-page": "Pada halaman ini",
@@ -140,6 +254,7 @@
"page-developers-aria-label": "Menu Pembangun",
"page-index-meta-title": "Laman Utama",
"page-last-updated": "Kali terakhir halaman dikemas kini",
+ "participate-menu": "Menu penyertaan",
"pbs": "Pemisahan pencadang-pembina",
"pools": "Pertaruhan terkumpul",
"privacy-policy": "Dasar privasi",
@@ -150,9 +265,11 @@
"refresh": "Sila muat semula halaman.",
"return-home": "kembali ke laman utama",
"roadmap": "Peta hala tuju Ethereum",
+ "research": "Penyelidikan",
+ "research-menu": "Menu penyelidikan",
"resources": "Sumber untuk penterjemahan",
- "regenerative-finance": "Regenerative finance (ReFi)",
- "run-a-node": "Jalankan nod",
+ "regenerative-finance": "ReFi - Kewangan Jana Semula",
+ "run-a-node": "Gerakkan nod",
"rollup-component-website": "Laman web",
"rollup-component-developer-docs": "Dokumen pembangun",
"rollup-component-technology-and-risk-summary": "Teknologi dan ringkasan risiko",
@@ -164,6 +281,7 @@
"search-box-blank-state-text": "Cari!",
"search-eth-address": "Kelihatan seperti alamat Ethereum. Kami tidak menyediakan data spesifik kepada alamat. Cuba cari pada pelayar blok seperti",
"search-no-results": "Carian anda tidak dijumpai",
+ "security": "Keselamatan",
"single-slot-finality": "Kemuktamadan slot tunggal",
"statelessness": "Ketiadaan keadaan",
"see-contributors": "Lihat penyumbang",
@@ -172,15 +290,15 @@
"show-all": "Tunjukkan semua",
"show-less": "Tunjukkan lebih sedikit",
"site-description": "Ethereum ialah sebuah platform global dan tak terpusat untuk mata wang dan pelbagai aplikasi baharu. Dalam Ethereum, anda boleh menulis kod yang dapat mengawal mata wang, serta membina aplikasi yang boleh diakses di mana-mana sahaja di dunia.",
- "site-title": "ethereum.org",
"skip-to-main-content": "Langkau ke kandungan utama",
"smart-contracts": "Kontrak pintar",
- "stablecoins": "Stablecoins",
+ "stablecoins": "Syiling Stabil",
"stake-eth": "Taruh ETH",
"staking": "Pertaruhan",
"start-here": "Mula di sini",
"style-guide": "Gaya panduan",
"solo": "Pertaruhan solo",
+ "support": "Bantuan",
"terms-of-use": "Terma Penggunaan",
"translation-banner-body-new": "Anda sedang melihat halaman ini dalam Bahasa Inggeris kerana kami belum menterjemahkannya lagi. Bantu kami untuk menterjemahkan kandungan ini.",
"translation-banner-body-update": "Terdapat versi baru untuk halaman ini tetapi ianya hanya didapati dalam Bahasa Inggeris buat masa ini. Bantu kami untuk menterjemahkan versi terkini.",
@@ -191,20 +309,22 @@
"translation-banner-no-bugs-title": "Tiada pepijat di sini!",
"translation-banner-no-bugs-content": "Halaman ini tiada terjemahan. Kami membiarkan halaman ini dalam bahasa Inggeris buat masa ini.",
"translation-banner-no-bugs-dont-show-again": "Jangan tunjuk lagi",
+ "translation-program": "Program Penterjemahan",
"try-using-search": "Cuba gunakan carian untuk menemui perkara yang anda cari",
"tutorials": "Tutorial",
"up": "Atas",
+ "use": "Guna",
"use-ethereum": "Guna Ethereum",
"use-ethereum-menu": "Guna menu Ethereum",
+ "use-menu": "Menu penggunaan",
"user-experience": "Pengalaman pengguna",
"verkle-trees": "Pohon Verkle",
- "wallets": "Dompet",
+ "wallets": "Dompet-dompet",
"we-couldnt-find-that-page": "Maaf, kami tidak jumpa halaman tersebut",
"web3": "Apakah itu Web3?",
- "web3-title": "Web3",
"website-last-updated": "Kali terakhir laman web dikemas kini",
"what-is-ether": "Apakah ether (ETH)?",
- "what-is-ethereum": "Apa itu Ethereum?",
+ "what-is-ethereum": "Apakah itu Ethereum?",
"withdrawals": "Pertaruhan keluaran",
"yes": "Ya",
"zero-knowledge-proofs": "Bukti sifar pengetahuan"
diff --git a/src/intl/ms/page-languages.json b/src/intl/ms/page-languages.json
index 14d6f85fc0f..0d774166dce 100644
--- a/src/intl/ms/page-languages.json
+++ b/src/intl/ms/page-languages.json
@@ -17,10 +17,13 @@
"page-languages-translated": "diterjemah",
"page-languages-words": "perkataan",
"page-languages-recruit-community": "Bantu kami menterjemah ethereum.org.",
+ "langauge-am": "Bahasa Amhara",
"language-ar": "Bahasa Arab",
"language-az": "Bahasa Azerbaijan",
+ "langauge-be": "Bahasa Belarus",
"language-bg": "Bahasa Bulgaria",
"language-bn": "Bahasa Bengali",
+ "language-bs": "Bahasa Bosnia",
"language-ca": "Bahasa Catalonia",
"language-cs": "Bahasa Czech",
"language-da": "Bahasa Denmark",
@@ -37,6 +40,7 @@
"language-hi": "Bahasa Hindi",
"language-hr": "Bahasa Croatia",
"language-hu": "Bahasa Hungary",
+ "language-hy-am": "Bahasa Armenia",
"language-id": "Bahasa Indonesia",
"language-ig": "Bahasa Igbo",
"language-it": "Bahasa Itali",
@@ -44,12 +48,14 @@
"language-ka": "Bahasa Georgia",
"language-kk": "Bahasa Kazakh",
"language-km": "Bahasa Khmer",
+ "language-kn": "Bahasa Kannada",
"language-ko": "Bahasa Korea",
"language-lt": "Bahasa Lithuania",
"language-ml": "Bahasa Malayalam",
"language-mr": "Bahasa Marathi",
"language-ms": "Bahasa Melayu",
"language-nb": "Bahasa Norway",
+ "language-ne-np": "Bahasa Nepal",
"language-nl": "Bahasa Belanda",
"language-pcm": "Bahasa Pidgin Nigeria",
"language-fil": "Bahasa Filipina",
@@ -65,6 +71,7 @@
"language-sw": "Bahasa Swahili",
"language-ta": "Bahasa Tamil",
"language-th": "Bahasa Thai",
+ "language-tk": "Bahasa Turkmen",
"language-tr": "Bahasa Turki",
"language-uk": "Bahasa Ukraine",
"language-ur": "Bahasa Urdu",
diff --git a/src/intl/ms/page-wallets-find-wallet.json b/src/intl/ms/page-wallets-find-wallet.json
index c27f175bd67..8c11796f982 100644
--- a/src/intl/ms/page-wallets-find-wallet.json
+++ b/src/intl/ms/page-wallets-find-wallet.json
@@ -7,7 +7,6 @@
"page-find-wallet-meta-title": "Cari Dompet Ethereum",
"page-find-wallet-title": "Cari dompet",
"page-find-wallet-try-removing": "Cuba alih keluar beberapa ciri",
- "page-find-wallet-choose-to-compare": "Pilih untuk membuat perbandingan",
"page-stake-eth": "Taruh ETH",
"page-find-wallet-open-source": "Sumber terbuka",
"page-find-wallet-open-source-desc": "Perisian sumber terbuka membolehkan sesiapa sahaja mengaudit integriti dan keselamatan aplikasi",
@@ -16,8 +15,6 @@
"page-find-wallet-non-custodial-desc": "Dompet yang tidak mengawal kunci peribadi anda",
"page-find-wallet-hardware-wallet-support": "Menyokong dompet perkakasan",
"page-find-wallet-hardware-wallet-support-desc": "Dompet yang boleh disambungkan ke dompet perkakasan untuk keselamatan yang lebih baik",
- "page-find-wallet-walletconnect": "WalletConnect",
- "page-find-wallet-walletconnect-desc": "Dompet yang menyokong WalletConnect untuk menyambung kepada dapps",
"page-find-wallet-rpc-importing": "Pengimportan RPC",
"page-find-wallet-rpc-importing-desc": "Dompet yang menyokong titik akhir RPC tersuai untuk menyambung ke nod atau rangkaian yang berbeza",
"page-find-wallet-nft-support": "Menyokong NFT",
@@ -36,8 +33,6 @@
"page-find-wallet-ens-support-desc": "Dompet yang menyokong Perkhidmatan Nama Ethereum (ENS)",
"page-find-wallet-token-importing": "Mengimport token",
"page-find-wallet-token-importing-desc": "Import sebarang token ERC-20 untuk digunakan dalam dompet",
- "page-find-wallet-fee-optimization": "Pengoptimuman fi",
- "page-find-wallet-fee-optimization-desc": "Menyokong transaksi jenis 2 untuk fi gas yang dioptimumkan, dan bayaran balik fi untuk gas yang tidak digunakan",
"page-find-wallet-buy-crypto": "Beli kripto",
"page-find-wallet-buy-crypto-desc": "Beli kripto dengan fiat terus dalam dompet \n *Nota: pembelian kripto mungkin adalah berdasarkan rantau",
"page-find-wallet-sell-for-fiat": "Jual untuk fiat",
@@ -46,7 +41,6 @@
"page-find-wallet-multisig-desc": "Dompet yang memerlukan berbilang tandatangan untuk membenarkan transaksi",
"page-find-wallet-social-recovery": "Pemulihan sosial",
"page-find-wallet-social-recovery-desc": "Dompet yang membenarkan penjaga menukar kunci tandatangan untuk dompet kontrak pintar",
- "page-find-wallet-token-support": "Sokongan token",
"page-find-wallet-features": "Features",
"page-find-wallet-security": "Keselamatan",
"page-find-wallet-smart-contract": "Smart contract",
@@ -63,7 +57,6 @@
"page-find-wallet-chromium": "Chromium",
"page-find-wallet-firefox": "Firefox",
"page-find-wallet-hardware": "Hardware",
- "page-find-wallet-hardware-desc": "Dompet perkakasan",
"page-find-wallet-new-to-crypto-title": "Baru mengenali kripto",
"page-find-wallet-new-to-crypto-desc": "Anda seorang pengguna baru yang mencari dompet pertama anda",
"page-find-wallet-nfts-title": "NFT",
@@ -74,21 +67,13 @@
"page-find-wallet-finance-desc": "Anda seseorang yang menggunakan DeFi dan mahu dompet yang membolehkan anda menyambung ke aplikasi DeFi",
"page-find-wallet-developer-title": "Pembangun",
"page-find-wallet-developer-desc": "Anda seorang pembangun dan memerlukan dompet untuk membantu membangunkan dan menguji dapps",
- "page-find-wallet-persona-desc": "Pilih profil yang sepadan dengan jenis pengguna anda dan tapis senarai dompet",
"page-find-wallet-filters": "Penapis",
"page-find-wallet-active": "aktif",
- "page-find-wallet-profile-filters": "Penapis profil",
- "page-find-wallet-feature-filters": "Penapis ciri",
"page-find-wallet-footnote-1": "Dompet yang disenaraikan di halaman ini bukan sokongan rasmi, dan disediakan untuk tujuan maklumat sahaja.",
"page-find-wallet-footnote-2": "Penerangan telah disediakan oleh projek dompet itu sendiri.",
"page-find-wallet-footnote-3": "Kami menambah produk kepada halaman ini berdasarkan kriteria dalam dasar penyenaraian. Jika anda ingin kami menambah suatu dompet, bangkitkan isu di GitHub.",
"page-find-wallet-mobile": "Mudah Alih",
- "page-find-wallet-mobile-desc": "Dompet dengan aplikasi mudah alih",
"page-find-wallet-desktop": "Desktop",
- "page-find-wallet-desktop-desc": "Dompet dengan aplikasi desktop",
"page-find-wallet-browser": "Pelayar",
- "page-find-wallet-browser-desc": "Dompet dengan sambungan pelayar",
- "page-find-wallet-device": "Peranti",
- "page-find-choose-to-compare": "Pilih untuk membuat perbandingan",
- "page-find-wallet-choose-features": "Pilih ciri"
+ "page-find-wallet-device": "Peranti"
}
diff --git a/src/intl/nb/common.json b/src/intl/nb/common.json
index ef4c9dacf0a..8c969545fc4 100644
--- a/src/intl/nb/common.json
+++ b/src/intl/nb/common.json
@@ -1,30 +1,70 @@
{
"about-ethereum-org": "Om ethereum.org",
"about-us": "Om oss",
+ "adding-desci-projects": "Legger til Desci-prosjekter",
+ "adding-developer-tools": "Legger til utviklerverktøy",
+ "adding-exchanges": "Legger til børser",
+ "adding-glossary-terms": "Legger til ordlisteuttrykk",
+ "adding-staking-products": "Legger til staking-produkter",
+ "adding-wallets": "Legger til lommebøker",
+ "account-abstraction": "Kontoabstraksjon",
+ "acknowledgements": "Anerkjennelser",
"aria-toggle-search-button": "Veksleknapp for søk",
"aria-toggle-menu-button": "Veksleknapp for meny",
"beacon-chain": "Beacon-kjeden",
"bridges": "Blokkkjedebroer",
+ "bug-bounty": "Bug bounty-program",
+ "build": "Bygg",
+ "build-menu": "Byggemeny",
+ "clear": "Tøm",
"close": "Lukk",
"community": "Fellesskap",
"community-hub": "Samfunnssentral",
"community-menu": "Fellesskapsmeny",
"contact": "Kontakt",
+ "content-buckets": "Innholdssøyler",
+ "content-resources": "Innholdsressurser",
+ "content-standardization": "Innholdsstandardisering",
"contributing": "Bidra",
"contributors": "Bidragsytere",
"contributors-thanks": "Alle som har bidratt til denne siden – takk!",
"cookie-policy": "Retningslinjer for informasjonskapsler",
"copied": "Kopiert",
"copy": "Kopier",
+ "danksharding": "Danksharding",
+ "dao-page": "DAO - Desentraliserte egenstyrte organisasjoner",
"dark-mode": "Mørk",
"data-provided-by": "Datakilde:",
- "decentralized-applications-dapps": "Desentraliserte applikasjoner (dapper)",
- "decentralized-science": "Desentralisert vitenskap (DeSci)",
+ "decentralized-applications-dapps": "Dapper - Desentraliserte applikasjoner",
+ "decentralized-identity": "Desentralisert identitet",
+ "decentralized-social-networks": "Desentraliserte sosiale nettverk",
+ "decentralized-science": "DeSci - Desentralisert vitenskap",
+ "description": "Beskrivelse av nav-element",
+ "defi-page": "DeFi - Desentralisert finans",
+ "design": "Design",
+ "design-principles": "Designprinsipper",
"devcon": "Devcon",
"developers": "Utviklere",
"developers-home": "Startside for utviklere",
"docs": "Dokumenter",
+ "docsearch-to-select": "Å velge",
+ "docsearch-to-navigate": "Å navigere",
+ "docsearch-to-close": "Å lukke",
+ "docsearch-search-by": "Søk etter",
+ "docsearch-start-recent-searches-title": "Nylig",
+ "docsearch-start-no-recent-searches": "Ingen nylige søk",
+ "docsearch-start-save-recent-search": "Lagre dette søket",
+ "docsearch-start-remove-recent-search": "Fjern dette søket fra historikken",
+ "docsearch-start-favorite-searches": "Favoritt",
+ "docsearch-start-remove-favorite-search": "Fjern dette søket fra favoritter",
+ "docsearch-no-results-text": "Ingen resultater for",
+ "docsearch-no-results-suggested-query": "Prøv å søke etter",
+ "docsearch-no-results-missing": "Burde dette spørsmålet gi deg resultater?",
+ "docsearch-no-results-missing-link": "Gi oss beskjed.",
+ "docsearch-error-title": "Kunne ikke hente resultater",
+ "docsearch-error-help": "Du burde kanskje sjekke koblingen til nettverket ditt.",
"documentation": "Dokumentasjon",
+ "down": "Ned",
"ecosystem": "Økosystem",
"edit-page": "Rediger side",
"ef-blog": "Ethereum Foundation-blogg",
@@ -34,10 +74,10 @@
"enterprise-menu": "Bedrift-meny",
"esp": "Støtteprogram for økosystem",
"eth-current-price": "Nåværende ETH-pris (USD)",
+ "ethereum-basics": "Grunnleggende om Ethereum",
"ethereum-bug-bounty": "Ethereums belønningsprogram for problemløsning",
"consensus-when-shipping": "Når blir den levert?",
"ethereum-upgrades": "Ethereum-oppgraderinger",
- "ethereum-brand-assets": "Merkevareaktiva for Ethereum",
"ethereum-online": "Nettbaserte felleskap",
"ethereum-events": "Ethereum-arrangementer",
"ethereum-foundation": "Ethereum Foundation",
@@ -45,6 +85,8 @@
"ethereum-glossary": "Ethereum-ordliste",
"ethereum-governance": "Ethereum-styring",
"ethereum-logo": "Ethereum-logo",
+ "ethereum-roadmap": "Ethereum-veikart",
+ "ethereum-protocol": "Ethereum-protokoll",
"ethereum-security": "Ethereums sikkerhets- og svindelforebygging",
"ethereum-support": "Ethereum-brukerstøtte",
"ethereum-wallets": "Ethereum-lommebøker",
@@ -59,18 +101,17 @@
"feedback-widget-thank-you-timing": "2–3 min.",
"feedback-widget-thank-you-cta": "Åpne kort spørreundersøkelse",
"find-wallet": "Finn lommebok",
+ "future-proofing": "Fremtidssikring",
"get-eth": "Hent ETH",
"get-involved": "Bli involvert",
"get-started": "Kom i gang",
"grants": "Tilskudd",
"grant-programs": "Støtteprogram for økosystem",
- "guides-and-resources": "Fellesskapsveiledninger og -ressurser",
"guides": "Veiledninger",
- "guides-hub": "Veileder-hub",
+ "guides-hub": "Veiledninger",
"history-of-ethereum": "Ethereums historie",
"home": "Startside",
"how-ethereum-works": "Slik fungerer Ethereum",
- "how-to-create-an-ethereum-account": "Slik registrerer du en Ethereum-konto",
"how-to-revoke-token-access": "Slik opphever du smartkontraktens tilgang til dine krypto-midler",
"how-to-swap-tokens": "Hvordan bytte token",
"how-to-use-a-bridge": "Hvordan bygger du tokenbro til lag 2",
@@ -88,6 +129,7 @@
"layer-2": "Lag 2",
"learn": "Lær",
"learn-by-coding": "Lær ved koding",
+ "learn-hub": "Læringshub",
"learn-menu": "Lær-meny",
"learn-more": "Finn ut mer",
"less": "Mindre",
@@ -96,23 +138,143 @@
"loading": "Laster...",
"loading-error": "Lasting mislyktes.",
"loading-error-refresh": "Feil, vennligst oppdater.",
+ "loading-error-try-again-later": "Kan ikke laste inn data. Prøv igjen senere.",
"logo": "logo",
"mainnet-ethereum": "Ethereum-hovednett",
+ "merge": "Slå sammen",
"more": "Mer",
+ "nav-about-description": "Et offentlig, åpen kildekode-prosjekt for Ethereum-samfunnet",
+ "nav-advanced-description": "Lær de mer komplekse emnene",
+ "nav-advanced-label": "Avansert",
+ "nav-basics-description": "Forstå det grunnleggende av Ethereum",
+ "nav-basics-label": "Grunnleggende",
+ "nav-bridges-description": "Web3 har utviklet seg til et økosystem av hovedsakelig L1-blokkjeder og L2-skalerings-løsninger",
+ "nav-builders-home-description": "En byggehåndbok for Ethereum, av byggere for byggere",
+ "nav-builders-home-label": "Byggernes hjem",
+ "nav-contribute-description": "Hvis du vil ha hjelp, vill dette veilede deg",
+ "nav-contribute-label": "Bidra til ethereum.org",
+ "nav-dao-description": "Samfunn eid av medlemmer uten sentralisert myndighet",
+ "nav-dapps-description": "Utforsk et rikt økosystem av apper ved bruk av Ethereum",
+ "nav-defi-description": "Et globalt, åpent alternativ til det tradisjonelle finansmarkedet",
+ "nav-desci-description": "Et globalt, åpent alternativ til dagens vitenskapelige system",
+ "nav-desoc-description": "Blokkjede-baserte plattformer for sosiale interaksjoner og utvikling av innhold",
+ "nav-developers-docs": "Dokumenter for utviklere",
+ "nav-developers": "Utviklere",
+ "nav-did-description": "Utsted og eie dine unike desentraliserte identifikatorer",
+ "nav-docs-description": "Dokumenter for å hjelpe deg med å forstå og bygge med Ethereum",
+ "nav-docs-design-description": "Beskrivelse av unike web3-designutfordringer, beste praksis og brukeres innblikk i forskning",
+ "nav-docs-design-label": "UX/UI grunnleggende design",
+ "nav-docs-foundation-description": "Grunnleggende faktorer for å utvikle på Ethereum",
+ "nav-docs-overview-description": "Ditt hjem for utviklere-dokumenter",
+ "nav-docs-stack-description": "Forstå alle detaljene av Ethereum-stabelen",
+ "nav-eip-description": "Standarder som angir nye funksjoner eller prosesser",
+ "nav-eip-label": "EIPs - Forslag til forbedringer for Ethereum",
+ "nav-emerging-description": "Bli kjent med andre nyere brukstilfeller for Ethereum",
+ "nav-enterprise-description": "Forretningsapplikasjoner for Ethereum",
+ "nav-ethereum-org-description": "Dette nettstedet er drevet av fellesskapet – bli med oss og bidra også",
+ "nav-ethereum-wallets-description": "En app for å samhandle med Ethereum-kontoen din",
+ "nav-events-description": "Desentralisering og frihet til å delta for alle",
+ "nav-events-irl-description": "Hver måned er det store Ethereum-arrangementer personlig og på nett",
+ "nav-events-label": "Fellesskap og arrangementer",
+ "nav-events-online-description": "Hundretusener av Ethereum-entusiaster samles i disse nettsamfunnene",
+ "nav-find-wallet-description": "Lommebøker lar deg bruke krypto",
+ "nav-find-wallet-label": "Velg din lommebok",
+ "nav-gas-fees-description": "Hvordan er ETH-transaksjonsgebyrer kalkulert",
+ "nav-get-eth-description": "Du trenger ether (ETH) for å bruke Ethereum-applikasjoner",
+ "nav-get-started-description": "Ditt første steg for å bruke Ethereum",
+ "nav-governance-description": "Prosessen involvert i oppgradering av Ethereum-protokollen",
+ "nav-governance-label": "Styring",
+ "nav-grants-description": "En kuratert liste av samfunnet vårt over prosjekter som gir tilskuddsfinansieringsprogrammer",
+ "nav-guide-create-account-description": "Hvem som helst kan skape en Ethereum-konto når som helst, helt gratis med en lommebok-app",
+ "nav-guide-revoke-access-description": "Vær trygg når du samhandler med smarte kontrakter og applikasjoner i Ethereum-økosystemet",
+ "nav-guide-revoke-access-label": "Hvordan tilbakekalle smart kontraktstilgang",
+ "nav-guide-use-wallet-description": "Lær hvordan du bruker alle de grunnleggende funksjonene til en lommebok",
+ "nav-guide-use-wallet-label": "Slik bruker du en lommebok",
+ "nav-guides-description": "Praktiske trinnvise veiledninger for å hjelpe deg i gang",
+ "nav-guides-label": "Hvordan bruke veiledere",
+ "nav-history-description": "En tidslinje for alle de store forgrene og oppdateringene",
+ "nav-history-label": "Ethereums tekniske historie",
+ "nav-layer-2-description": "Billigere og raskere transaksjoner for Ethereum",
+ "nav-learn-by-coding-description": "Verktøy som hjelper deg å eksperimentere med Ethereum",
+ "nav-local-env-description": "Velg og sett opp Ethereum-utviklingsstabelen din",
+ "nav-mainnet-description": "Enterprise blokkjede-applikasjoner kan bygges på det offentlige Ethereum Mainnet",
+ "nav-nft-description": "En måte å representere noe unikt som en Ethereum-basert eiendel",
+ "nav-open-research-description": "En av de viktigste styrkene til Ethereum er det aktive forskningsmiljøet",
+ "nav-open-research-label": "Åpen forskning",
+ "nav-overview-description": "Alt om Ethereum-utdanning",
+ "nav-participate-overview-description": "Oversikt over hvordan du deltar",
+ "nav-primary": "Primær",
+ "nav-quizzes-description": "Finn ut hvor godt du forstår Ethereum og kryptovalutaer",
+ "nav-quizzes-label": "Test kunnskapen din",
+ "nav-refi-description": "Et alternativt økonomisk system bygget på regenerative prinsipper",
+ "nav-research-description": "Prosesser som brukes til å forbedre Ethereum",
+ "nav-research-label": "Forskning og utvikling",
+ "nav-roadmap-description": "Veien til mer skalerbarhet, sikkerhet og bærekraft for Ethereum",
+ "nav-roadmap-future-description": "Styrking av Ethereum som et robust og desentralisert nettverk",
+ "nav-roadmap-future-label": "Fremtidssikring",
+ "nav-roadmap-label": "Veikart",
+ "nav-roadmap-scaling-description": "Nettverksoppdateringer for å redusere transaksjonskostnader og hastighet ytterligere",
+ "nav-roadmap-security-description": "Sørge for at Ethereum forblir motstandsdyktig mot alle slags angrep i fremtiden",
+ "nav-roadmap-security-label": "Forbedret sikkerhet",
+ "nav-roadmap-ux-description": "Bruk av Ethereum må forenkles",
+ "nav-run-a-node-description": "Bli fullstendig suveren samtidig som du bidrar til å sikre nettverket",
+ "nav-security-description": "Lær beste praksis når du bruker kryptovaluta",
+ "nav-smart-contracts-description": "De grunnleggende bulideringsblokkene i Ethereum-økosystemet",
+ "nav-stablecoins-description": "Stablecoins er Ethereum-tokens designet for å holde seg på en fast verdi",
+ "nav-stake-description": "Tjen belønninger for å sikre Ethereum",
+ "nav-stake-label": "Stake",
+ "nav-staking-home-description": "En oversikt over ulike alternativer for staking",
+ "nav-staking-pool-description": "Stake og tjen belønninger med et hvilket som helst beløp av ETH ved å bli med andre",
+ "nav-staking-pool-label": "Samlet staking",
+ "nav-staking-saas-label": "Staking med en tjeneste",
+ "nav-staking-solo-label": "Solo-staking",
+ "nav-start-building-description": "Nyttig informasjon for nykommere",
+ "nav-translation-program-description": "Et samarbeid for å oversette ethereum.org til alle språk",
+ "nav-tutorials-description": "Kuratert liste over opplæringsprogrammer for fellesskapet",
+ "nav-use-cases-description": "Oppdag forskjellige ideer for bruk av Ethereum",
+ "nav-what-is-ether-description": "Valutaen til Ethereum-apper",
+ "nav-what-is-ethereum-description": "Forstå hva som gjør Ethereum spesielt",
+ "nav-what-is-web3-label": "Hva er Web3?",
+ "nav-what-is-web3-description": "Et alternativ til sentraliserte monopoler som dikterer reglene",
+ "nav-whitepaper-description": "Den originale Ethereum whitepaper skrevet av Vitalik Buterin i 2014",
+ "nav-zkp-description": "En måte å bevise gyldigheten av en uttalelse uten å avsløre selve uttalelsen",
+ "nft-page": "NFT - Ikke-ombyttelige tokener",
+ "nfts": "FTF-er",
+ "no": "Nei",
"on-this-page": "På denne siden",
+ "open-research": "Åpen forskning",
+ "page-developers-aria-label": "Utviklermeny",
+ "page-index-meta-title": "Startside",
"page-last-updated": "Siden sist oppdatert",
+ "participate-menu": "Delta-menyen",
+ "pbs": "Seperasjon av Forslag-bygger",
+ "pools": "Samlet staking",
"privacy-policy": "Retningslinjer for personvern",
"private-ethereum": "Privat Ethereum",
+ "product-disclaimer": "Produkter og tjenester er listet som en bekvemmelighet for Ethereum-samfunnet. Inkludering av produkter eller tjenester representerer ikke en anbefaling fra ethereum.org nettside-teamet, eller Ethereum Foundation.",
+ "quizzes-title": "Quiz-hub",
+ "quizzes": "Quizer",
"refresh": "Last inn siden på nytt.",
"return-home": "returner hjem",
- "run-a-node": "Kjør en node",
+ "roadmap": "Ethereum-veikart",
+ "research": "Forskning",
+ "research-menu": "Forskning-menyen",
+ "resources": "Oversettelsesressurser",
+ "run-a-node": "Kjøre en node",
"rollup-component-website": "Nettsted",
"rollup-component-developer-docs": "Dokumenter for utviklere",
"rollup-component-technology-and-risk-summary": "Teknologi- og risikosammendrag",
+ "scaling": "Skalering",
+ "saas": "Staking som en tjeneste",
"search": "Søk",
+ "search-ethereum-org": "Søk på ethereum.org",
+ "secret-leader-election": "Hemmelig valg av leder",
"search-box-blank-state-text": "Søk i vei!",
"search-eth-address": "Dette ser ut som en Ethereum adresse. Vi oppgir ikke data som er spesifikke for adresser. Prøv å søke på en blokkjedeutforsker som",
"search-no-results": "Ingen resultater for søket ditt",
+ "security": "Sikkerhet",
+ "single-slot-finality": "Enkeltsporsavslutning",
+ "statelessness": "Statelesshet",
"see-contributors": "Vis bidragsytere",
"set-up-local-env": "Sett opp lokalt miljø",
"sharding": "Sharding",
@@ -124,10 +286,9 @@
"smart-contracts": "Smarte kontrakter",
"stablecoins": "Stablecoins",
"staking": "Staking",
+ "start-here": "Start her",
"solo": "Solo-staking",
- "saas": "Staking som en tjeneste",
- "pools": "Samlet staking",
- "withdrawals": "Staking uttak",
+ "support": "Brukerstøtte",
"terms-of-use": "Vilkår for bruk",
"translation-banner-body-new": "Du ser på denne siden på engelsk fordi vi ikke har oversatt den ennå. Hjelp oss å oversette dette innholdet.",
"translation-banner-body-update": "Det finnes en ny versjon av denne siden, men den er bare på engelsk akkurat nå. Hjelp oss å oversette den nyeste versjonen.",
@@ -138,24 +299,23 @@
"translation-banner-no-bugs-title": "Ingen feil her!",
"translation-banner-no-bugs-content": "Denne siden oversettes ikke. Vi har med hensikt latt denne siden stå på engelsk så lenge.",
"translation-banner-no-bugs-dont-show-again": "Ikke vis igjen",
+ "translation-program": "Oversettelsesprogram",
"try-using-search": "Prøv å bruke søk for å finne det du leter etter eller",
"tutorials": "Veiledninger",
+ "up": "Opp",
+ "use": "Bruk",
"use-ethereum": "Bruke Ethereum",
"use-ethereum-menu": "Bruke Ethereum-meny",
- "wallets": "Lommebøker",
+ "use-menu": "Bruk-menyen",
+ "verkle-trees": "Verkle-trær",
+ "wallets": "Lommebok",
"we-couldnt-find-that-page": "Vi fant ikke den siden",
"web3": "Hva er Web3?",
"web3-title": "Web3",
"website-last-updated": "Nettsiden ble sist oppdatert",
"what-is-ether": "Hva er ether (ETH)?",
"what-is-ethereum": "Hva er Ethereum?",
- "defi-page": "Desentralisert finans (DeFi)",
- "dao-page": "Desentraliserte egenstyrte organisasjoner (DAO)",
- "nft-page": "Ikke-ombyttelige tokener (NFT)",
- "decentralized-social-networks": "Desentraliserte sosiale nettverk",
- "decentralized-identity": "Desentralisert identitet",
+ "withdrawals": "Staking uttak",
"yes": "Ja",
- "zero-knowledge-proofs": "Null-kunnskap bevis",
- "page-index-meta-title": "Hjem",
- "page-developers-aria-label": "Utviklermeny"
+ "zero-knowledge-proofs": "Null-kunnskap bevis"
}
diff --git a/src/intl/nb/page-languages.json b/src/intl/nb/page-languages.json
index f2bbead3fe8..735515b1fd2 100644
--- a/src/intl/nb/page-languages.json
+++ b/src/intl/nb/page-languages.json
@@ -2,11 +2,14 @@
"page-languages-h1": "Støtte for språk",
"page-languages-interested": "Er du interessert i å bidra?",
"page-languages-learn-more": "Les mer om vårt oversettelsesprogram",
- "page-languages-meta-title": "ethereum.org språkoversettelser",
+ "page-languages-meta-desc": "Ressurser til alle støttede språk av ethereum.org og måter å bli involvert som en oversetter.",
+ "page-languages-meta-title": "Språkoversettelser for ethereum.org",
+ "page-languages-p1": "Ethereum er et globalt prosjekt, og det er kritisk at ethereum.org er tilgjengelig til alle, uansett deres nasjonalitet eller språk. Vårt samfunn har jobbet hardt for å gjøre denne visjonen til virkelighet.",
"page-languages-translations-available": "ethereum.org er tilgjengelig på følgende språk",
- "page-languages-resources-paragraph": "I tillegg til å oversette ethereum.org innhold, vedlikeholder vi også en",
+ "page-languages-resources-paragraph": "I tillegg til å oversette ethereum.org-innhold vedlikeholder vi også en",
+ "page-languages-resources-link": "kurert liste over Ethereum ressurser i mange språk",
"page-languages-want-more-header": "Ønsker du å se ethereum.org på et annet språk?",
- "page-languages-want-more-link": "Oversettelseprogram",
+ "page-languages-want-more-link": "Oversettelsesprogram",
"page-languages-want-more-paragraph": "ethereum.org-oversettere oversetter alltid sider på så mange språk som mulig. For å se hva de jobber med akkurat nå eller for å registrere deg for å bli med dem, les om vår",
"page-languages-filter-label": "Filtrer liste",
"page-languages-filter-placeholder": "Skriv for å filtrere",
@@ -17,7 +20,7 @@
"langauge-am": "Amharisk",
"language-ar": "Arabisk",
"language-az": "Aserbajdsjansk",
- "langauge-be": "Hviterussisk",
+ "langauge-be": "Belarusisk",
"language-bg": "Bulgarsk",
"language-bn": "Bengalsk",
"language-bs": "Bosnisk",
@@ -49,12 +52,12 @@
"language-ko": "Koreansk",
"language-lt": "Litauisk",
"language-ml": "Malayalam",
- "language-mr": "Maratii",
+ "language-mr": "Marathi",
"language-ms": "Malaysisk",
"language-nb": "Norsk",
- "language-ne-np": "Nepali",
+ "language-ne-np": "Nepalsk",
"language-nl": "Nederlandsk",
- "language-pcm": "Nigerianske Pidgin",
+ "language-pcm": "Nigeriansk pidgin",
"language-fil": "Filippinsk",
"language-pl": "Polsk",
"language-pt": "Portugisisk",
diff --git a/src/intl/ne-np/common.json b/src/intl/ne-np/common.json
index 6e38c282f7b..46d2fe308d3 100644
--- a/src/intl/ne-np/common.json
+++ b/src/intl/ne-np/common.json
@@ -1,17 +1,27 @@
{
- "account-abstraction": "खाता अमूर्तता",
"about-ethereum-org": "ethereum.org को बारेमा",
"about-us": "हाम्रो बारेमा",
+ "adding-desci-projects": "डेस्की(Desci) परियोजनाहरू थप्दै",
+ "adding-developer-tools": "निर्माता उपकरणहरू थप्दै",
+ "adding-exchanges": "आदानप्रदानहरू थप्दै",
+ "adding-glossary-terms": "शब्दावली सर्तहरू थप्दै",
+ "adding-staking-products": "स्टेकिङ उत्पादनहरू थप्दै",
+ "adding-wallets": "वालेटहरू थप्दै",
+ "account-abstraction": "खाता अमूर्तता",
"aria-toggle-search-button": "खोज बटन टगल गर्नुहोस्",
"aria-toggle-menu-button": "मेनु बटन टगल गर्नुहोस्",
"beacon-chain": "बीकन चेन",
"bridges": "ब्लकचेन ब्रिज",
+ "build": "निर्माण",
+ "build-menu": "निर्माण मेनु",
"clear": "खाली गर्नुहोस्",
"close": "बन्द गर्नुहोस्",
"community": "समुदाय",
"community-hub": "सामुदायिक केन्द्र",
"community-menu": "समुदाय मेनु",
"contact": "सम्पर्क गर्नुहोस्",
+ "content-buckets": "विषयवस्तु बाल्टी",
+ "content-resources": "विषयवस्तुका स्रोतहरू",
"content-standardization": "विषयवस्तु मानकीकरण",
"contributing": "योगदान गर्दै",
"contributors": "योगदानकर्ताहरू",
@@ -20,14 +30,17 @@
"copied": "प्रतिलिपि गरिएको",
"copy": "प्रतिलिपि बनाउनुहोस्",
"danksharding": "डैंकसार्डिङ",
- "dao-page": "विकेन्द्रीकृत स्वायत्त संस्थाहरू (DAOs)",
+ "dao-page": "DAOs - विकेन्द्रीकृत स्वायत्त संस्थाहरू",
"dark-mode": "अँध्यारो",
"data-provided-by": "डाटाको स्रोत:",
- "decentralized-applications-dapps": "विकेन्द्रीकृत एप्पहरू (dapps)",
+ "decentralized-applications-dapps": "Dapps - विकेन्द्रीकृत एप्पहरू",
"decentralized-identity": "विकेन्द्रीकृत पहिचान",
"decentralized-social-networks": "विकेन्द्रीकृत सामाजिक सञ्जाल",
- "decentralized-science": "विकेन्द्रीकृत विज्ञान (DeSci)",
- "defi-page": "विकेन्द्रीकृत वित्त (DeFi)",
+ "decentralized-science": "DeSci - विकेन्द्रीकृत विज्ञान",
+ "description": "न्याभ सामग्रीको विवरण",
+ "defi-page": "DeFi - विकेन्द्रीकृत वित्त",
+ "design": "डिजाइन",
+ "design-principles": "डिजाइनका सिद्धान्तहरू",
"devcon": "डेवकन",
"developers": "निर्माताहरु",
"developers-home": "निर्माताको गृहपृष्ठ",
@@ -51,7 +64,6 @@
"documentation": "कागजात",
"down": "तल",
"ecosystem": "इकोसिस्टम",
- "edit-page": "Edit page",
"ef-blog": "इथेरियम प्रतिष्ठान ब्लग",
"eips": "इथेरियम सुधार प्रस्तावहरू",
"energy-consumption": "इथेरियम ऊर्जा खपत",
@@ -59,11 +71,9 @@
"enterprise-menu": "उद्यम मेनु",
"esp": "इकोसिस्टम समर्थन कार्यक्रम",
"eth-current-price": "ETH को वर्तमान मूल्य (अमेरिकी डलर)",
- "ethereum-basics": "Ethereum basics",
"ethereum-bug-bounty": "इथेरियम बग बाउन्टी कार्यक्रम",
"consensus-when-shipping": "यो कहिले ढुवानी हुदैछ?",
"ethereum-upgrades": "इथेरियम अपग्रेडहरू",
- "ethereum-brand-assets": "Ethereum brand assets",
"ethereum-online": "अनलाइन समुदायहरू",
"ethereum-events": "इथरियम कार्यक्रमहरू",
"ethereum-foundation": "इथेरियम प्रतिष्ठान",
@@ -75,7 +85,6 @@
"ethereum-protocol": "इथेरियम प्रोटोकल",
"ethereum-security": "इथेरियम सुरक्षा र घोटाला रोकथाम",
"ethereum-support": "इथेरियम समर्थन",
- "ethereum-wallets": "Ethereum wallets",
"ethereum-whitepaper": "इथेरियम वाहिटपेपर",
"feedback-widget-prompt": "के यो पृष्ठ उपयोगी छ?",
"feedback-card-prompt-page": "के यो पृष्ठ उपयोगी थियो?",
@@ -83,10 +92,9 @@
"feedback-card-prompt-tutorial": "के यो ट्यूटोरियल उपयोगी थियो?",
"feedback-widget-thank-you-title": "तपाईंको प्रतिक्रियाको लागि धन्यवाद!",
"feedback-widget-thank-you-subtitle": "केहि प्रश्नहरूका जवाफ दिएर यो पृष्ठ अझ राम्रो बनाउनुहोस्।",
- "feedback-widget-thank-you-subtitle-ext": "तपाईंलाई मद्दत चाहिन्छ भने, तपाईंले हाम्रो डिस्कर्ड समुदायमा सम्पर्क गर्न सक्नुहुन्छ।",
+ "feedback-widget-thank-you-subtitle-ext": "तपाईंलाई मद्दत चाहिन्छ भने, तपाईं हाम्रो कलह समुदायलाई सम्पर्क गर्न सक्नुहुन्छ।",
"feedback-widget-thank-you-timing": "२-३ मिनेट",
"feedback-widget-thank-you-cta": "छोटो सर्वेक्षण खोल्नुहोस्",
- "find-wallet": "Find wallet",
"future-proofing": "भविष्यका लागि सुरक्षित गर्दै",
"get-eth": "ETH प्राप्त गर्नुहोस्",
"get-involved": "संलग्न हुनुहोस्",
@@ -94,11 +102,10 @@
"grants": "अनुदान",
"grant-programs": "इकोसिस्टम अनुदान कार्यक्रम",
"guides": "मार्गदर्शनहरू",
- "guides-hub": "मार्गदर्शनहरूका केन्द्र",
+ "guides-hub": "कसरी मार्गदर्शन गर्ने",
"history-of-ethereum": "इथेरियमको इतिहास",
"home": "गृहपृष्ठ",
"how-ethereum-works": "इथेरियमले कसरी काम गर्छ",
- "how-to-register-an-ethereum-account": "इथेरियम खाता कसरी \"दर्ता गर्ने\"",
"how-to-revoke-token-access": "स्मार्ट सम्झौताको क्रिप्टो कोषमा पहुँच कसरी रद्द गर्ने",
"how-to-swap-tokens": "टोकनहरू कसरी साटासाट गर्ने",
"how-to-use-a-bridge": "टोकनहरुलाई तह २ मा कसरी ब्रिज गर्ने",
@@ -115,11 +122,9 @@
"last-edit": "पछिल्लो सम्पादन",
"layer-2": "तह २",
"learn": "सिक्नुहोस्",
- "learn-by-coding": "Learn by coding",
"learn-hub": "सिक्ने केन्द्र",
"learn-menu": "सिक्ने मेनु",
"learn-more": "थप जान्नुहोस्",
- "less": "Less",
"light-mode": "उज्यालो",
"listing-policy-disclaimer": "यस पृष्ठमा सूचीबद्ध कुनैपनि उत्पादनहरू आधिकारिक अनुमोदन होइनन् र केवल सूचना उद्देश्यका लागि प्रदान गरिएका हुन्। तपाईं उत्पादन थप्न वा नीतिमा प्रतिक्रिया दिन चाहनुहुन्छ भने GitHub मा मुद्दा उठाउनुहोस्।",
"loading": "लोड हुँदै...",
@@ -128,11 +133,101 @@
"loading-error-try-again-later": "डाटा लोड गर्न असमर्थ। केहि समय पछि पुन: प्रयास गर्नुहोस्।",
"logo": "लोगो",
"mainnet-ethereum": "इथेरियमको मुख्य नेटवर्क",
- "more": "More",
- "nav-developers": "निर्माताहरु",
+ "merge": "एउटैमा मिलाउनु",
+ "nav-about-description": "इथेरियम समुदायको लागि एउटा सार्वजनिक, ओपन-सोर्स परियोजना",
+ "nav-advanced-description": "जटिल विषयहरू बारे जान्नुहोस्",
+ "nav-basics-description": "इथेरियमको आधारभूत कुराहरू बुझ्नुहोस्",
+ "nav-basics-label": "आधारभूत कुराहरू",
+ "nav-bridges-description": "Web3 को विकास एउटा त्यस्तो इकोसिस्टमको रुपमा भइसकेको छ जसमा आधारभूत L1 ब्लकचेनहरू र L2 स्केलिङ सोलुशनहरू समावेश रहेको छ",
+ "nav-builders-home-description": "इथेरियमको लागि एउटा निर्माणकर्ता म्यानुअल- निर्माणकर्ताहरूबाट निर्माणकर्ताहरूका निम्ति",
+ "nav-builders-home-label": "निर्माणकर्ता गृहपृष्ठ",
+ "nav-contribute-description": "तपाईं मद्दत गर्न चाहनुहुन्छ भने, यसले तपाईंलाई मार्गदर्शन प्रदान गर्नेछ",
+ "nav-contribute-label": "ethereum.org मा योगदान गर्दै",
+ "nav-dao-description": "केन्द्रीकृत अधिकार बिना सदस्य-स्वामित्व समुदायहरू",
+ "nav-dapps-description": "इथेरियम प्रयोग गर्ने एपहरूका एउटा प्रचुर इकोसिस्टमको अन्वेषण गर्नुहोस्",
+ "nav-defi-description": "पारम्परिक वित्तीय बजारको सट्टा एउटा विश्वव्यापी, खुला विकल्प",
+ "nav-desci-description": "वर्तमान वैज्ञानिक प्रणालीको सट्टा एउटा विश्वव्यापी, खुला विकल्प",
+ "nav-desoc-description": "सामाजिक अन्तरक्रिया र सामग्री सिर्जनाको लागि ब्लकचेन-आधारित प्लेटफर्महरू",
"nav-developers-docs": "निर्माताको कागजात",
+ "nav-developers": "निर्माताहरु",
+ "nav-did-description": "तपाईंको अद्वितीय विकेन्द्रीकृत पहिचानकर्ताहरू जारी गर्नुहोस् र स्वामित्व लिनुहोस्",
+ "nav-docs-description": "तपाईंलाई इथेरियम बुझ्न र निर्माण गर्न मद्दत गर्ने कागजातहरू",
+ "nav-docs-design-description": "विशिष्ट web3 डिजाइन चुनौतीहरू, उत्कृष्ट अभ्यासहरू र प्रयोगकर्ता अनुसन्धान अन्तर्दृष्टिहरूका विवरण",
+ "nav-docs-design-label": "UX/UI डिजाइनका आधारभूत कुराहरू",
+ "nav-docs-foundation-description": "इथेरियममा विकास गर्ने मुख्य आधारभूत कुराहरू",
+ "nav-docs-overview-description": "डेभेलपर कागजातहरूका लागि तपाईंको गृहपृष्ठ",
+ "nav-docs-stack-description": "इथेरियम स्ट्याकको सबै विवरणहरू बुझ्नुहोस्",
+ "nav-eip-description": "नयाँ विशेषताहरू वा प्रक्रियाहरू निर्दिष्ट गर्ने मानकहरू",
+ "nav-eip-label": "EIPs - इथेरियम सुधार प्रस्तावहरू",
+ "nav-emerging-description": "इथेरियमको लागि अन्य नयाँ प्रयोग मामिलाहरू बारेमा थाहा पाउनुहोस्",
+ "nav-enterprise-description": "इथेरियमको लागि व्यापारिक एप्लिकेशनहरू",
+ "nav-ethereum-org-description": "यो वेबसाइट समुदाय सञ्चालित हो—हामीसँग जोडिनुहोस् र योगदान पनि गर्नुहोस्",
+ "nav-ethereum-wallets-description": "तपाईंको इथेरियम खातासँग अन्तरक्रिया गर्नको लागि एउटा एप",
+ "nav-events-description": "विकेन्द्रीकरण र सबैलाई सहभागी हुने स्वतन्त्रता",
+ "nav-events-irl-description": "हरेक महिना प्रत्यक्ष तथा अनलाइन माध्यमबाट विशेष इथेरियम आयोजनाहरू भइरहेका हुन्छन्",
+ "nav-events-label": "समुदायहरू र आयोजनाहरू",
+ "nav-events-online-description": "यी अनलाइन समुदायहरूका अभिभावकत्व सयौँ हजारौँ इथेरियम उत्साहीहरूले लिन्छन्",
+ "nav-find-wallet-description": "तपाईंलाई क्रिप्टो प्रयोग गर्न वालेटले अनुमति दिन्छ",
+ "nav-find-wallet-label": "तपाईंको वालेट छान्नुहोस्",
+ "nav-gas-fees-description": "ETH कारोवार शुल्कहरू कसरी हिसाब गरिन्छन्",
+ "nav-get-eth-description": "इथेरियम एप्लिकेशनहरूका प्रयोग गर्न तपाईंलाई इथर (ETH) आवश्यक पर्छ",
+ "nav-get-started-description": "तपाईंले इथेरियम प्रयोग गर्ने सुरुवाती कदमहरू",
+ "nav-governance-description": "इथेरियम प्रोटोकललाई अद्यावदिक गर्ने सम्मिलित प्रक्रिया",
+ "nav-grants-description": "अनुदान कोष कार्यक्रम प्रदान गर्ने परियोजनाहरू बारेमा हाम्रो समुदायबाट क्युरेट गरिएको सूची",
+ "nav-guide-create-account-description": "कसैले पनि वालेट एपको साथ कुनै पनि समयमा निःशुल्क इथेरियम खाता सिर्जना गर्न सक्दछन्",
+ "nav-guide-revoke-access-description": "इथेरियम इकोसिस्टम भित्र स्मार्ट सम्झौताहरू र एप्लिकेशनहरूसँग अन्तरक्रिया गर्दा सुरक्षित बस्नुहोस्",
+ "nav-guide-revoke-access-label": "स्मार्ट सम्झौताको पहुँचलाई कसरी रद्द गर्ने",
+ "nav-guide-use-wallet-description": "वालेटका सबै आधारभूत कार्यहरू कसरी सञ्चालन गर्ने भनेर सिक्नुहोस्",
+ "nav-guide-use-wallet-label": "वालेट कसरी प्रयोग गर्ने",
+ "nav-guides-description": "तपाईंलाई सुरुवात गर्न मद्दत गर्नको लागि व्यवहारिक चरण-दर-चरण मार्गदर्शकहरू",
+ "nav-guides-label": "कसरी भन्ने मार्गदर्शकहरू",
+ "nav-history-description": "सबै मूख्य फोर्कहरू र अपडेटका समय रेखा",
+ "nav-history-label": "इथेरियमको प्राविधिक इतिहास",
+ "nav-layer-2-description": "इथेरियमको लागि सस्तो र छिटो कारोवारहरू",
+ "nav-learn-by-coding-description": "तपाईंलाई इथेरियमसँग प्रयोग गर्न मद्दत गर्ने उपकरणहरू",
+ "nav-local-env-description": "तपाईंको इथेरियम विकास स्ट्याकलाई छान्नुहोस् र सेट अप गर्नुहोस्",
+ "nav-mainnet-description": "व्यापार ब्लकचेन एप्लिकेशनहरू सार्वजनिक इथेरियम मेइन्नेटमा निर्माण गर्न सकिन्छ",
+ "nav-nft-description": "इथेरियम-आधारित सम्पत्तिको रूपमा कुनै पनि अद्वितीय प्रतिनिधित्व गर्ने एउटा तरिका",
+ "nav-open-research-description": "इथेरियमको एउटा मुख्य शक्ति यसको सक्रिय अनुसन्धान समुदाय हो",
+ "nav-open-research-label": "अनुसन्धान खोल्नुहोस्",
+ "nav-overview-description": "इथेरियम शिक्षाको सबै कुरा",
+ "nav-participate-overview-description": "कसरी सहभागी भन्ने बारेमा एउटा अवलोकन",
"nav-primary": "प्राथमिक",
- "nft-page": "नन-फन्जिबल टोकन (NFTs)",
+ "nav-quizzes-description": "तपाईंले इथेरियम र क्रिप्टोकरेन्सीहरू कत्तिको राम्ररी बुझ्नु भएको छ भन्ने कुरा थाहा पाउनुहोस्",
+ "nav-quizzes-label": "आफ्नो ज्ञानको परीक्षण गर्नुहोस्",
+ "nav-refi-description": "पुनरुत्पादक सिद्धान्तहरूमा आधारित वैकल्पिक आर्थिक प्रणाली",
+ "nav-research-description": "इथेरियमलाई सुधार गर्ने प्रक्रियाहरू",
+ "nav-research-label": "अनुसन्धान र विकास",
+ "nav-roadmap-description": "इथेरियमको लागि थप स्केलेबिलिटि, सुरक्षा र दीगोपनाको मार्ग",
+ "nav-roadmap-future-description": "इथेरियमलाई एउटा सुदृढ तथा विकेन्द्रीकृत सञ्जालको रुपमा ठोस बनाउने",
+ "nav-roadmap-future-label": "भविष्यका लागि सुरक्षित गर्दै",
+ "nav-roadmap-label": "मार्गचित्र",
+ "nav-roadmap-scaling-description": "कारोवार खर्चहरू र गतिलाई थप घटाउने नेटवर्क अपडेटहरू",
+ "nav-roadmap-security-description": "भविष्यमा कुनै पनि किसिमको हमला विरुद्ध इथेरियम सबल रहेको कुरा सुनिश्चित गर्ने",
+ "nav-roadmap-security-label": "सुधारिएको सुरक्षा",
+ "nav-roadmap-ux-description": "इथेरियमको प्रयोगलाई सरल गर्नु आवश्यक रहेको छ",
+ "nav-run-a-node-description": "नेटवर्कलाई सुरक्षित बनाउन मद्दत गर्दै पूर्ण रुपमा सार्वभौम बन्ने",
+ "nav-security-description": "क्रिप्टोकरेन्सी प्रयोग गर्दा उत्कृष्ट अभ्यासहरू सिक्नुहोस्",
+ "nav-smart-contracts-description": "इथेरियम इकोसिस्टमका प्राथमिक निर्माण ब्कलहरू",
+ "nav-stablecoins-description": "स्टेबलकोइनहरू त्यस्ता इथेरियम टोकनहरू हुन् जसलाई स्थिर मूल्यमा रहनको लागि डिजाइन गरिएको छ",
+ "nav-stake-description": "इथेरियमलाई सुरक्षित बनाउँदा पुरस्कार कमाउनुहोस्",
+ "nav-stake-label": "स्टेक",
+ "nav-staking-home-description": "स्टेकिङ गर्नको लागि विभिन्न विकल्पहरूको एक अवलोकन",
+ "nav-staking-pool-description": "अरूहरूसँग सम्मिलित भएर कुनै पनि मात्राको ETHबाट स्टेक गर्नुहोस् र पुरस्कार कमाउनुहोस्",
+ "nav-staking-pool-label": "जम्मा गरिएको स्टेकिंग",
+ "nav-staking-saas-label": "एउटा सेवासँग स्ट्याकिङ गर्दै",
+ "nav-staking-solo-label": "एकल स्टेकिंग",
+ "nav-start-building-description": "नवागन्तुकहरूका लागि उपयोगी जानकारी",
+ "nav-translation-program-description": "सबै भाषाहरूमा ethereum.org लाई अनुवाद गर्ने एउटा सहकार्यात्मक प्रयास",
+ "nav-tutorials-description": "सामुदायिक ट्युटोरियलहरूका क्युरेट गरिएको सूची",
+ "nav-use-cases-description": "इथेरियम प्रयोगको लागि विभिन्न विचारहरू",
+ "nav-what-is-ether-description": "इथेरियम एपहरूका मुद्रा",
+ "nav-what-is-ethereum-description": "इथेरियमलाई के कुराले विशेष बनाउँछ भन्ने कुरा बुझ्नुहोस्",
+ "nav-what-is-web3-label": "Web3 के हो?",
+ "nav-what-is-web3-description": "नियमहरू निर्देशन गर्ने केन्द्रीकृत एकाधिकारहरूका एउटा विकल्प",
+ "nav-whitepaper-description": "सबैभन्दा पहिलो इथेरियम स्वेतपत्रलाई भिटालिक बुटेरिनले 2014मा लेखेका हुन्",
+ "nav-zkp-description": "बयानलाई खुलासा नगरिकन त्यस बयानको वैधतालाई प्रमाणित गर्ने एउटा तरिका",
+ "nft-page": "NFTs - नन-फन्जिबल टोकन",
"nfts": "NFTs",
"no": "होइन",
"on-this-page": "यस पृष्ठमा",
@@ -140,6 +235,7 @@
"page-developers-aria-label": "निर्माताको मेनु",
"page-index-meta-title": "गृहपृष्ठ",
"page-last-updated": "पृष्ठ अन्तिम पटक अद्यावधिक गरिएको",
+ "participate-menu": "सहभागी मेनु",
"pbs": "प्रस्तावक-निर्माता विभाजन",
"pools": "जम्मा गरिएको स्टेकिंग",
"privacy-policy": "गोपनीयता नीति",
@@ -150,13 +246,11 @@
"refresh": "कृपया पृष्ठलाई रिफ्रेस गर्नुहोस।",
"return-home": "गृहपृष्ठमा फर्कनुहोस",
"roadmap": "इथेरियम रोडम्याप",
+ "research": "अनुसन्धान",
+ "research-menu": "अनुसन्धान मेनु",
"resources": "अनुवादका स्रोतहरू",
- "regenerative-finance": "Regenerative finance (ReFi)",
- "run-a-node": "Run a node",
- "rollup-component-website": "Website",
"rollup-component-developer-docs": "निर्माताको कागजात",
"rollup-component-technology-and-risk-summary": "प्रविधि र जोखिमको सारांश",
- "scaling": "Scaling",
"saas": "सेवाको रूपमा स्टेकिंग",
"search": "खोज्नुहोस्",
"search-ethereum-org": "ethereum.orgमा खोज्नुहोस्",
@@ -167,19 +261,12 @@
"single-slot-finality": "एकल-स्लट फाइनालिटि",
"statelessness": "स्तिथिविहीनता",
"see-contributors": "योगदानकर्ताहरु हेर्नुहोस्",
- "set-up-local-env": "Set up local environment",
- "sharding": "Sharding",
"show-all": "सबै देखाउनुहोस",
"show-less": "कम देखाउनुहोस",
"site-description": "ईथेरियम एक विश्वव्यापी, विकेन्द्रित प्लेटफर्म हो जुन वित्तिय तथा अन्य प्रयोगका लागि बनाइएको हो। ईथेरियममा तपाईंले विश्वभरबाट पहुँच हुने पैसा नियन्त्रण गर्ने कोड लेख्न र एप्पहरु बनाउन सक्नुहुनेछ।",
- "site-title": "ethereum.org",
"skip-to-main-content": "सिधै मुख्य विषयवस्तुमा जानुहोस्",
- "smart-contracts": "Smart contracts",
- "stablecoins": "Stablecoins",
- "stake-eth": "Stake ETH",
"staking": "स्टेकिंग",
"start-here": "यहाँबाट सुरु गर्नुहोस्",
- "style-guide": "Style guide",
"solo": "एकल स्टेकिंग",
"terms-of-use": "उपयोगका सर्तहरु",
"translation-banner-body-new": "तपाईंले यो पृष्ठ अंग्रेजीमा हेर्दै हुनुहुन्छ किनभने हामीले यसलाई अझै अनुवाद गरेका छैनौं। हामीलाई यो विषयवस्तु अनुवाद गर्न सहयोग गर्नुहोस्।",
@@ -191,19 +278,19 @@
"translation-banner-no-bugs-title": "यहाँ कुनै बगहरू छैनन्!",
"translation-banner-no-bugs-content": "यो पृष्ठ अनुवाद भइरहेको छैन। हामीले जानाजानी यो पृष्ठ अहिलेको लागि अंग्रेजीमा छोडेका छौं।",
"translation-banner-no-bugs-dont-show-again": "फेरि नदेखाउनुहोस्",
+ "translation-program": "अनुवाद कार्यक्रम",
"try-using-search": "तपाईंले जुन चिज खोजिरहनु भएको छ, त्यसकोलागि खोज्नको प्रयोग गर्ने प्रयास गर्नुहोस् वा",
"tutorials": "ट्यूटोरियलहरू",
"up": "माथि",
+ "use": "प्रयोग",
"use-ethereum": "इथेरियम प्रयोग गर्नुहोस",
"use-ethereum-menu": "इथेरियम मेनु प्रयोग गर्नुहोस",
- "user-experience": "User experience",
+ "use-menu": "प्रयोग मेनु",
"verkle-trees": "भर्कल ट्रिहरु",
"wallets": "वालेटहरु",
"we-couldnt-find-that-page": "हामीले त्यो पृष्ठ फेला पार्न सकेनौं",
"web3": "Web3 के हो?",
- "web3-title": "Web3",
"website-last-updated": "वेबसाइट अन्तिम पटक अद्यावधिक गरिएको",
- "what-is-ether": "What is ether (ETH)?",
"what-is-ethereum": "इथरियम के हो?",
"withdrawals": "स्टेकिंग निकासी",
"yes": "हो",
diff --git a/src/intl/ne-np/page-languages.json b/src/intl/ne-np/page-languages.json
index 1e3c6d7daae..65c02354afb 100644
--- a/src/intl/ne-np/page-languages.json
+++ b/src/intl/ne-np/page-languages.json
@@ -1,8 +1,73 @@
{
+ "page-languages-h1": "भाषा समर्थन",
+ "page-languages-interested": "योगदान गर्न इच्छुक हुनुहुन्छ?",
+ "page-languages-learn-more": "हाम्रो अनुवाद कार्यक्रमकाबारे थप जान्नुहोस्",
+ "page-languages-meta-desc": "ethereum.org का सबै समर्थित भाषाहरूमा स्रोतहरू र अनुवादकको रूपमा संलग्न हुने तरिकाहरू।",
+ "page-languages-meta-title": "ethereum.org भाषा अनुवाद",
+ "page-languages-p1": "इथेरियम एउटा विश्वव्यापी परियोजना हो र यो महत्वपूर्ण छ कि ethereum.org उनीहरूको राष्ट्रियता वा भाषाको परवाह नगरी सबैका लागि पहुँचयोग्य छ। हाम्रो समुदायले यो दृष्टिकोणलाई वास्तविकतामा परिणत गर्न कडा परिश्रम गरिरहेको छ।",
+ "page-languages-translations-available": "ethereum.org निम्न भाषाहरूमा उपलब्ध छ",
+ "page-languages-resources-paragraph": "ethereum.org का विषयवस्तु अनुवाद गर्नुको अतिरिक्त, हामी निम्न पनि राख्छौँ",
+ "page-languages-resources-link": "धेरै भाषाहरूमा इथेरियम स्रोतहरूका क्युरेट गरिएको सूची",
+ "page-languages-want-more-header": "ethereum.org लाई फरक भाषामा हेर्न चाहनुहुन्छ?",
+ "page-languages-want-more-link": "अनुवाद कार्यक्रम",
+ "page-languages-want-more-paragraph": "ethereum.org अनुवादकहरूले सधैं सकेसम्म धेरै भाषाहरूमा पृष्ठहरू अनुवाद गरिरहेका छन्। तिनीहरू अहिले के काम गरिरहेका छन् हेर्न वा तिनीहरूमा सामेल हुन साइन अप गर्न, हाम्रो बारेमा पढ्नुहोस्",
"page-languages-filter-label": "फिल्टर सूची",
"page-languages-filter-placeholder": "फिल्टर गर्न टाइप गर्नुहोस्",
"page-languages-browser-default": "ब्राउजर डिफल्ट",
"page-languages-translated": "अनुवाद गरिएको",
"page-languages-words": "शब्दहरू",
- "page-languages-recruit-community": "हामीलाई ethereum.org अनुवाद गर्न मद्दत गर्नुहोस्।"
+ "page-languages-recruit-community": "हामीलाई ethereum.org अनुवाद गर्न मद्दत गर्नुहोस्।",
+ "langauge-am": "अम्हारिक",
+ "language-ar": "अरबी",
+ "language-az": "अजरबैजानी",
+ "langauge-be": "बेलारूसी",
+ "language-bg": "बुल्गेरियाली",
+ "language-bn": "बंगाली",
+ "language-bs": "बोस्नियाली",
+ "language-ca": "क्याटालान",
+ "language-da": "डेनिस",
+ "language-el": "ग्रीक",
+ "language-en": "अंग्रेजी",
+ "language-fa": "फारसी",
+ "language-fi": "फिनिस",
+ "language-gl": "गालिसियन",
+ "language-gu": "गुजराती",
+ "language-he": "हिब्रु",
+ "language-hi": "हिन्दी",
+ "language-hr": "क्रोएसियाली",
+ "language-hu": "हंगेरियन",
+ "language-hy-am": "आर्मेनियाली",
+ "language-id": "इन्डोनेसियाली",
+ "language-ig": "इग्बो",
+ "language-ka": "जर्जियाली",
+ "language-kk": "कजाख",
+ "language-km": "खमेर",
+ "language-kn": "कन्नड",
+ "language-ko": "कोरियाली",
+ "language-lt": "लिथुआनियाली",
+ "language-ml": "मलयालम",
+ "language-mr": "मराठी",
+ "language-ms": "मलाया",
+ "language-nb": "नर्वेजियन",
+ "language-ne-np": "नेपाली",
+ "language-nl": "डच",
+ "language-pcm": "नाइजेरियाली पिजिन",
+ "language-fil": "फिलिपिनो",
+ "language-pl": "पोलिश",
+ "language-pt": "पोर्तुगाली",
+ "language-pt-br": "पोर्तुगाली (ब्राजिलियन)",
+ "language-ro": "रोमानियाली",
+ "language-se": "स्विडेनी",
+ "language-sk": "स्लोभाक",
+ "language-sl": "स्लोभेनियाली",
+ "language-sr": "सर्बियाली",
+ "language-sw": "स्वाहिली",
+ "language-ta": "तमिल",
+ "language-th": "थाई",
+ "language-tk": "तुर्कमेन",
+ "language-uk": "युक्रेनी",
+ "language-ur": "उर्दू",
+ "language-uz": "उज्बेक",
+ "language-zh": "चिनियाँ सरलीकृत",
+ "language-zh-tw": "चिनियाँ परम्परागत"
}
diff --git a/src/intl/nl/common.json b/src/intl/nl/common.json
index 338be03ed4d..2642fb818e6 100644
--- a/src/intl/nl/common.json
+++ b/src/intl/nl/common.json
@@ -1,17 +1,28 @@
{
- "account-abstraction": "Accountabstractie",
"about-ethereum-org": "Over ethereum.org",
"about-us": "Over ons",
+ "adding-desci-projects": "Desci-projecten toevoegen",
+ "adding-developer-tools": "Tools voor ontwikkelaars toevoegen",
+ "adding-exchanges": "Uitwisselingskantoor toevoegen",
+ "adding-glossary-terms": "Nieuwe woorden toevoegen",
+ "adding-products": "Producten toevoegen",
+ "adding-staking-products": "Staking-producten toevoegen",
+ "adding-wallets": "Portemonnees toevoegen",
+ "account-abstraction": "Accountabstractie",
+ "acknowledgements": "Erkenningen",
"aria-toggle-search-button": "Toon/verberg zoekknop",
"aria-toggle-menu-button": "Toon/verberg menuknop",
"beacon-chain": "Beacon Chain",
"bridges": "Blockchain-bruggen",
+ "build": "Bouwen",
+ "build-menu": "Bouwmenu",
"clear": "Wissen",
"close": "Sluiten",
"community": "Community",
"community-hub": "Community hub",
"community-menu": "Community-menu",
"contact": "Contact",
+ "content-resources": "Inhoudelijke bronnen",
"content-standardization": "Inhoudsstandaardisering",
"contributing": "Bijdragen",
"contributors": "Bijdragers",
@@ -20,14 +31,17 @@
"copied": "Gekopieerd",
"copy": "Kopiëren",
"danksharding": "Danksharding",
- "dao-page": "Gedecentraliseerde autonome organisaties (DAO's)",
+ "dao-page": "DAO's - Gedecentraliseerde autonome organisaties",
"dark-mode": "Donker",
"data-provided-by": "Gegevensbron:",
- "decentralized-applications-dapps": "Gedecentraliseerde toepassingen (dapps)",
+ "decentralized-applications-dapps": "Dapps - Gedecentraliseerde toepassingen",
"decentralized-identity": "Gedecentraliseerde identiteit",
"decentralized-social-networks": "Gedecentraliseerde sociale netwerken",
- "decentralized-science": "Gedecentraliseerde wetenschap (DeSci)",
- "defi-page": "Gedecentraliseerde financiën (DeFi)",
+ "decentralized-science": "DeSci - Gedecentraliseerde wetenschap",
+ "description": "Beschrijving voor nav.item",
+ "defi-page": "DeFi - Gedecentraliseerde financiën",
+ "design": "Ontwerp",
+ "design-principles": "Ontwerpprincipes",
"devcon": "Devcon",
"developers": "Ontwikkelaars",
"developers-home": "Startpagina voor ontwikkelaars",
@@ -51,7 +65,7 @@
"documentation": "Documentatie",
"down": "Naar beneden",
"ecosystem": "Ecosysteem",
- "edit-page": "Pagina bewerken",
+ "edit-page": "Bewerk pagina",
"ef-blog": "Ethereum Foundation-blog",
"eips": "Voorstellen voor verbetering van Ethereum",
"energy-consumption": "Ethereum-energieverbruik",
@@ -63,7 +77,7 @@
"ethereum-bug-bounty": "Ethereum bug bounty-programma",
"consensus-when-shipping": "Wanneer wordt het verstuurd?",
"ethereum-upgrades": "Ethereum-upgrades",
- "ethereum-brand-assets": "Ethereum-merkcontent",
+ "ethereum-brand-assets": "Merkactiva van Ethereum",
"ethereum-online": "Online gemeenschappen",
"ethereum-events": "Ethereum-evenementen",
"ethereum-foundation": "Ethereum Foundation",
@@ -75,7 +89,7 @@
"ethereum-protocol": "Ethereum-protocol",
"ethereum-security": "Ethereum-beveiliging en -scampreventie",
"ethereum-support": "Ethereum-ondersteuning",
- "ethereum-wallets": "Ethereum Wallets",
+ "ethereum-wallets": "Ethereum wallets",
"ethereum-whitepaper": "Ethereum-whitepaper",
"feedback-widget-prompt": "Vond u deze pagina nuttig?",
"feedback-card-prompt-page": "Was deze pagina behulpzaam?",
@@ -83,22 +97,22 @@
"feedback-card-prompt-tutorial": "Was deze tutorial nuttig?",
"feedback-widget-thank-you-title": "Bedankt voor je feedback!",
"feedback-widget-thank-you-subtitle": "Maak deze pagina nog beter door enkele vragen te beantwoorden.",
- "feedback-widget-thank-you-subtitle-ext": "Als u hulp nodig heeft, kunt u contact opnemen met de community op ons Discord-kanaal.",
+ "feedback-widget-thank-you-subtitle-ext": "Als je hulp nodig hebt, kun je contact opnemen met de gemeenschap op onze Discord.",
"feedback-widget-thank-you-timing": "2-3 minuten",
"feedback-widget-thank-you-cta": "Open korte enquête",
- "find-wallet": "Zoek wallet",
+ "find-wallet": "Zoek een wallet",
"future-proofing": "Toekomstbestendigheid",
- "get-eth": "ETH verkrijgen",
+ "get-eth": "Verkrijg ETH",
"get-involved": "Help mee",
"get-started": "Aan de slag",
"grants": "Subsidies",
"grant-programs": "Ecosysteem-subsidieprogramma's",
"guides": "Gidsen",
- "guides-hub": "Hub voor handleidingen",
+ "guides-hub": "Handleidingen",
"history-of-ethereum": "Geschiedenis van Ethereum",
"home": "Home",
"how-ethereum-works": "Hoe Ethereum werkt",
- "how-to-register-an-ethereum-account": "Hoe een Ethereum-account registreren",
+ "how-to-create-an-ethereum-account": "Hoe een Ethereum-account \"creëren\"",
"how-to-revoke-token-access": "Hoe toegang via slimme contracten tot uw cryptofondsen herroepen",
"how-to-swap-tokens": "Hoe tokens wisselen",
"how-to-use-a-bridge": "Hoe tokens naar laag 2 bridgen",
@@ -115,7 +129,7 @@
"last-edit": "Laatst bewerkt",
"layer-2": "Laag 2",
"learn": "Info",
- "learn-by-coding": "Leer door coderen",
+ "learn-by-coding": "Leer door te coderen",
"learn-hub": "Hub leren",
"learn-menu": "Leer menu",
"learn-more": "Meer informatie",
@@ -128,18 +142,121 @@
"loading-error-try-again-later": "Kan gegevens niet laden. Probeer het later nog eens.",
"logo": "logo",
"mainnet-ethereum": "Mainnet Ethereum",
+ "merge": "Samenvoegen",
"more": "Meer",
- "nav-developers": "Ontwikkelaars",
+ "nav-about-description": "Een openbaar, open-source project voor de Ethereum-gemeenschap",
+ "nav-advanced-description": "Leer de complexere onderwerpen",
+ "nav-advanced-label": "Geavanceerd",
+ "nav-basics-description": "Begrijp de fundamenten van Ethereum",
+ "nav-basics-label": "Basisbeginselen",
+ "nav-bridges-description": "Web3 is geëvolueerd naar een ecosysteem van primaire L1-blockchains en L2-schaaloplossingen",
+ "nav-builders-home-description": "Een bouwhandleiding voor Ethereum – door bouwers, voor bouwers",
+ "nav-builders-home-label": "Startpagina bouwers",
+ "nav-contribute-description": "Als je wilt helpen, zal dit je leidraad zijn",
+ "nav-contribute-label": "Bijdragen aan ethereum.org",
+ "nav-dao-description": "Gemeenschappen die eigendom zijn van leden, zonder gecentraliseerd gezag",
+ "nav-dapps-description": "Ontdek een rijk ecosysteem van apps met behulp van Ethereum",
+ "nav-defi-description": "Een wereldwijd, open alternatief voor de traditionele financiële markt",
+ "nav-desci-description": "Een wereldwijd, open alternatief voor het huidige wetenschappelijke systeem",
+ "nav-desoc-description": "Op blockchain gebaseerde platforms voor sociale interactie en contentcreatie",
"nav-developers-docs": "Ontwikkelaarsdocumenten",
+ "nav-developers": "Ontwikkelaars",
+ "nav-did-description": "Geef je unieke gedecentraliseerde identifiers uit en beheer deze",
+ "nav-docs-description": "Documenten om je te helpen Ethereum te begrijpen en ermee te bouwen",
+ "nav-docs-design-description": "Beschrijving van unieke uitdagingen op het gebied van web3-ontwerp, best practices en inzichten uit gebruikersonderzoeken",
+ "nav-docs-design-label": "Basisbeginselen voor UX/UI-ontwerp",
+ "nav-docs-foundation-description": "Kernfundamenten om te ontwikkelen op Ethereum",
+ "nav-docs-foundation-label": "Fundamentele onderwerpen",
+ "nav-docs-overview-description": "Je thuisbasis voor ontwikkelaarsdocumenten",
+ "nav-docs-stack-description": "Begrijp alle details van de Ethereum stack",
+ "nav-docs-stack-label": "Ethereum stack",
+ "nav-eip-description": "Normen die nieuwe functies of processen specificeren",
+ "nav-eip-label": "EIP's - Ethereum-verbeteringsvoorstellen",
+ "nav-emerging-description": "Maak kennis met andere nieuwere gebruiksscenario's voor Ethereum",
+ "nav-enterprise-description": "Zakelijke toepassingen voor Ethereum",
+ "nav-ethereum-org-description": "Deze website wordt door de gemeenschap aangestuurd — doe mee en draag ook bij",
+ "nav-ethereum-wallets-description": "Een app om te communiceren met je Ethereum-account",
+ "nav-events-description": "Decentralisatie en vrijheid om te participeren voor iedereen",
+ "nav-events-irl-description": "Elke maand zijn er grote Ethereum-evenementen, zowel persoonlijk als online",
+ "nav-events-label": "Gemeenschappen en evenementen",
+ "nav-events-online-description": "Honderdduizenden Ethereum-enthousiastelingen zijn actief in deze online gemeenschappen",
+ "nav-find-wallet-description": "Met portemonnees kun je crypto gebruiken",
+ "nav-find-wallet-label": "Kies je portemonnee",
+ "nav-gas-fees-description": "Hoe worden ETH-transactiekosten berekend",
+ "nav-gas-fees-label": "Gas kosten",
+ "nav-get-eth-description": "Je hebt ether (ETH) nodig om Ethereum-applicaties te gebruiken",
+ "nav-get-started-description": "Je eerste stappen om Ethereum te gebruiken",
+ "nav-governance-description": "Het proces dat betrokken is bij het upgraden van het Ethereum-protocol",
+ "nav-governance-label": "Bestuur",
+ "nav-grants-description": "Een door onze gemeenschap samengestelde lijst met projecten die subsidieprogramma's aanbieden",
+ "nav-guide-create-account-description": "Iedereen kan op elk moment gratis een Ethereum-account aanmaken met een portemonnee-app",
+ "nav-guide-create-account-label": "Een Ethereum-account maken",
+ "nav-guide-revoke-access-description": "Blijf veilig tijdens de interactie met slimme contracten en applicaties in het Ethereum-ecosysteem",
+ "nav-guide-revoke-access-label": "Hoe je de toegang tot slimme contracten kunt intrekken",
+ "nav-guide-use-wallet-description": "Leer hoe je alle basisfuncties van een portemonnee gebruikt",
+ "nav-guide-use-wallet-label": "Hoe een wallet gebruiken",
+ "nav-guides-description": "Praktische stap-voor-stap handleidingen om je op weg te helpen",
+ "nav-guides-label": "Handleidingen",
+ "nav-history-description": "Een tijdlijn van alle belangrijke vorken en updates",
+ "nav-history-label": "Technische geschiedenis van Ethereum",
+ "nav-layer-2-description": "Goedkopere en snellere transacties voor Ethereum",
+ "nav-learn-by-coding-description": "Tools die je helpen met Ethereum te experimenteren",
+ "nav-local-env-description": "Kies en configureer je Ethereum-ontwikkelstack",
+ "nav-mainnet-description": "Enterprise blockchain-applicaties kunnen worden gebouwd op het openbare Ethereum Mainnet",
+ "nav-nft-description": "Een manier om iets unieks te vertegenwoordigen als een op Ethereum gebaseerd activum",
+ "nav-open-research-description": "Een van de belangrijkste sterke punten van Ethereum is de actieve onderzoeksgemeenschap",
+ "nav-open-research-label": "Onderzoek openen",
+ "nav-overview-description": "Alles wat met Ethereum-voorlichting te maken heeft",
+ "nav-overview-label": "Overzicht",
+ "nav-participate-overview-description": "Overzicht van hoe je kunt deelnemen",
"nav-primary": "Primair",
- "nft-page": "Niet-vervangbare tokens (NFT's)",
+ "nav-quizzes-description": "Ontdek hoe goed je Ethereum en cryptocurrencies begrijpt",
+ "nav-quizzes-label": "Test je kennis",
+ "nav-refi-description": "Een alternatief economisch systeem dat voortbouwt op regeneratieve principes",
+ "nav-research-description": "Processen die gebruikt worden om Ethereum te verbeteren",
+ "nav-research-label": "Onderzoek en ontwikkeling",
+ "nav-roadmap-description": "Het traject naar meer schaalbaarheid, veiligheid en duurzaamheid voor Ethereum",
+ "nav-roadmap-future-description": "Ethereum versterken als een robuust en gedecentraliseerd netwerk",
+ "nav-roadmap-future-label": "Toekomstbestendigheid",
+ "nav-roadmap-label": "Routekaart",
+ "nav-roadmap-scaling-description": "Netwerkupdates om de transactiekosten en snelheid verder te verlagen",
+ "nav-roadmap-security-description": "Ervoor zorgen dat Ethereum ook in de toekomst bestand blijft tegen allerlei soorten aanvallen",
+ "nav-roadmap-security-label": "Verbeterde beveiliging",
+ "nav-roadmap-ux-description": "Het gebruik van Ethereum moet worden vereenvoudigd",
+ "nav-run-a-node-description": "Word volledig soeverein en help tegelijkertijd het netwerk te beveiligen",
+ "nav-security-description": "Leer best practices bij het gebruik van cryptocurrency",
+ "nav-smart-contracts-description": "De fundamentele bouwstenen van het Ethereum-ecosysteem",
+ "nav-stablecoins-description": "Stablecoins zijn Ethereum-tokens die zijn ontworpen om een vaste waarde te behouden",
+ "nav-stake-description": "Verdien beloningen voor het veiligstellen van Ethereum",
+ "nav-stake-label": "Stake",
+ "nav-staking-home-description": "Een overzicht van verschillende opties voor staking",
+ "nav-staking-home-label": "Staking-startpagina",
+ "nav-staking-pool-description": "Stake en verdien beloningen met elk willekeurig ETH-bedrag door samen te werken met anderen",
+ "nav-staking-pool-label": "Gepoolde staking",
+ "nav-staking-saas-description": "Node operators van derden beheren de werking van uw validator-client",
+ "nav-staking-saas-label": "Staking met een service",
+ "nav-staking-solo-description": "Voer home-hardware uit en voeg persoonlijk toe aan de beveiliging en decentralisatie van het Ethereum-netwerk",
+ "nav-staking-solo-label": "Solo staking",
+ "nav-start-building-description": "Nuttige informatie voor nieuwkomers",
+ "nav-translation-program-description": "Een collaboratieve inspanning om ethereum.org in alle talen te vertalen",
+ "nav-tutorials-description": "Samengestelde lijst van gemeenschapstutorials",
+ "nav-use-cases-description": "Ontdek verschillende ideeën voor het gebruik van Ethereum",
+ "nav-what-is-ether-description": "De valuta van Ethereum-apps",
+ "nav-what-is-ethereum-description": "Begrijp wat Ethereum speciaal maakt",
+ "nav-what-is-web3-label": "Wat is Web3?",
+ "nav-what-is-web3-description": "Een alternatief voor gecentraliseerde monopolies die de regels dicteren",
+ "nav-whitepaper-description": "Het oorspronkelijke Ethereum-whitepaper geschreven door Vitalik Buterin in 2014",
+ "nav-zkp-description": "Een manier om de geldigheid van een verklaring te bewijzen zonder de verklaring zelf te onthullen",
+ "nft-page": "NFT's - Niet-vervangbare tokens",
"nfts": "NFT's",
"no": "Nee",
"on-this-page": "Op deze pagina",
"open-research": "Onderzoek openen",
- "page-developers-aria-label": "Ontwikkelaarsmenu",
+ "page-developers-aria-label": "Menu voor ontwikkelaars",
"page-index-meta-title": "Home",
"page-last-updated": "Pagina laatst bijgewerkt",
+ "participate": "Doe mee",
+ "participate-menu": "Deelnamemenu",
"pbs": "Scheiding proposer-builder",
"pools": "Gepoolde staking",
"privacy-policy": "Privacybeleid",
@@ -150,8 +267,10 @@
"refresh": "Ververs de pagina.",
"return-home": "terug naar startpagina",
"roadmap": "Ethereum-roadmap",
+ "research": "Onderzoek",
+ "research-menu": "Onderzoeksmenu",
"resources": "Vertaalbronnen",
- "regenerative-finance": "Regeneratieve financiering (ReFi)",
+ "regenerative-finance": "ReFi - Regeneratieve financiering",
"run-a-node": "Run een node",
"rollup-component-website": "Website",
"rollup-component-developer-docs": "Ontwikkelaarsdocumenten",
@@ -164,6 +283,7 @@
"search-box-blank-state-text": "Zoeken maar!",
"search-eth-address": "Dit lijkt op een Ethereum-adres. We verstrekken geen specifieke gegevens. Probeer het te zoeken op een block explorer zoals",
"search-no-results": "Geen zoekresulaten",
+ "security": "Beveiliging",
"single-slot-finality": "Single-slot finaliteit",
"statelessness": "Statelessness",
"see-contributors": "Bekijk bijdragers",
@@ -181,6 +301,7 @@
"start-here": "Start hier",
"style-guide": "Stijlgids",
"solo": "Solo staking",
+ "support": "Ondersteuning",
"terms-of-use": "Gebruiksvoorwaarden",
"translation-banner-body-new": "Je bekijkt deze pagina in het Engels omdat we hem nog niet hebben vertaald. Help ons deze inhoud te vertalen.",
"translation-banner-body-update": "Er is een nieuwe versie van deze pagina, maar die is momenteel alleen in het Engels. Help ons de nieuwste versie te vertalen.",
@@ -191,11 +312,14 @@
"translation-banner-no-bugs-title": "Geen bugs hier!",
"translation-banner-no-bugs-content": "Deze pagina wordt niet vertaald. We hebben deze pagina voorlopig bewust in het Engels laten staan.",
"translation-banner-no-bugs-dont-show-again": "Niet meer tonen",
+ "translation-program": "Vertalingsprogramma",
"try-using-search": "Gebruik zoekopdracht om te vinden waar u naar op zoek bent",
"tutorials": "Tutorials",
"up": "Naar boven",
+ "use": "Gebruik",
"use-ethereum": "Ethereum gebruiken",
"use-ethereum-menu": "Ethereum-menu gebruiken",
+ "use-menu": "Gebruiksmenu",
"user-experience": "Gebruikerservaring",
"verkle-trees": "Verkle-bomen",
"wallets": "Wallets",
diff --git a/src/intl/nl/page-languages.json b/src/intl/nl/page-languages.json
index 0d1026c769d..1218e29a9bb 100644
--- a/src/intl/nl/page-languages.json
+++ b/src/intl/nl/page-languages.json
@@ -20,7 +20,7 @@
"langauge-am": "Amhaars",
"language-ar": "Arabisch",
"language-az": "Azerbaidzjaans",
- "langauge-be": "Belarussisch",
+ "langauge-be": "Wit-Russisch",
"language-bg": "Bulgaars",
"language-bn": "Bengaals",
"language-bs": "Bosnisch",
diff --git a/src/intl/nl/page-wallets-find-wallet.json b/src/intl/nl/page-wallets-find-wallet.json
index 678fe295985..a59b1a404fc 100644
--- a/src/intl/nl/page-wallets-find-wallet.json
+++ b/src/intl/nl/page-wallets-find-wallet.json
@@ -7,7 +7,6 @@
"page-find-wallet-meta-title": "Vind een Ethereum-portemonnee",
"page-find-wallet-title": "Vind een portemonnee",
"page-find-wallet-try-removing": "Probeer een functie of twee te verwijderen",
- "page-find-wallet-choose-to-compare": "Kies om te vergelijken",
"page-stake-eth": "Stake ETH",
"page-find-wallet-open-source": "Open source",
"page-find-wallet-open-source-desc": "Open-source software laat iedereen de integriteit en beveiliging van de applicatie controleren",
@@ -16,8 +15,6 @@
"page-find-wallet-non-custodial-desc": "Portemonnees die je privé-sleutels niet beheren",
"page-find-wallet-hardware-wallet-support": "Hardwareportemonnee-ondersteuning",
"page-find-wallet-hardware-wallet-support-desc": "Portemonnees die verbinding kunnen maken met hardwareportemonnees voor betere beveiliging",
- "page-find-wallet-walletconnect": "WalletConnect",
- "page-find-wallet-walletconnect-desc": "Portemonnees die WalletConnect ondersteunen voor het verbinden met dapps",
"page-find-wallet-rpc-importing": "RPC importeren",
"page-find-wallet-rpc-importing-desc": "Portemonnees die aangepaste RPC-eindpunten ondersteunen om verbinding te maken met verschillende nodes of netwerken",
"page-find-wallet-nft-support": "NFT-ondersteuning",
@@ -36,8 +33,6 @@
"page-find-wallet-ens-support-desc": "Portemonnees die Ethereum Name Service (ENS) ondersteunen",
"page-find-wallet-token-importing": "Token importeren",
"page-find-wallet-token-importing-desc": "Importeer eender welke ERC-20 token om te gebruiken in de portemonnee",
- "page-find-wallet-fee-optimization": "Vergoedingsoptimalisatie",
- "page-find-wallet-fee-optimization-desc": "Ondersteuning van type 2-transacties voor geoptimaliseerde gaskosten en restitutie van kosten voor ongebruikt gas",
"page-find-wallet-buy-crypto": "Koop crypto",
"page-find-wallet-buy-crypto-desc": "Koop crypto met fiat direct in de portemonnee \n *Let op: crypto kopen kan regiospecifiek zijn",
"page-find-wallet-sell-for-fiat": "Verkopen voor fiat",
@@ -46,7 +41,6 @@
"page-find-wallet-multisig-desc": "Portemonnees die meerdere handtekeningen vereisen om een transactie te autoriseren",
"page-find-wallet-social-recovery": "Sociaal herstel",
"page-find-wallet-social-recovery-desc": "Portemonnees die guardians in staat stellen de ondertekeningssleutel voor smart contract portemonnees te wijzigen",
- "page-find-wallet-token-support": "Tokenondersteuning",
"page-find-wallet-features": "Eigenschappen",
"page-find-wallet-security": "Beveiliging",
"page-find-wallet-smart-contract": "Smart contract",
@@ -63,7 +57,6 @@
"page-find-wallet-chromium": "Chromium",
"page-find-wallet-firefox": "Firefox",
"page-find-wallet-hardware": "Hardware",
- "page-find-wallet-hardware-desc": "Hardwareportemonnees",
"page-find-wallet-new-to-crypto-title": "Nieuw bij crypto",
"page-find-wallet-new-to-crypto-desc": "Jij bent een nieuwe gebruiker die op zoek is naar je eerste portemonnee",
"page-find-wallet-nfts-title": "NFT's",
@@ -74,21 +67,13 @@
"page-find-wallet-finance-desc": "Jij bent iemand die DeFi gebruikt en een portemonnee wil waarmee je verbinding kunt maken met DeFi-applicaties",
"page-find-wallet-developer-title": "Ontwikkelaar",
"page-find-wallet-developer-desc": "Je bent ontwikkelaar en hebt een portemonnee nodig om te helpen met het ontwikkelen en testen van dapps",
- "page-find-wallet-persona-desc": "Kies het profiel dat overeenkomt met jouw type gebruiker en filter de portemonneelijst",
"page-find-wallet-filters": "Filters",
"page-find-wallet-active": "actief",
- "page-find-wallet-profile-filters": "Profiel filters",
- "page-find-wallet-feature-filters": "Functiefilters",
"page-find-wallet-footnote-1": "Portemonnees op deze pagina zijn niet officiëel goedgekeurd en worden alleen ter informatie aangeboden.",
"page-find-wallet-footnote-2": "De beschrijvingen zijn afkomstig van de portemonneeprojecten zelf.",
"page-find-wallet-footnote-3": "We voegen producten toe aan deze pagina op basis van criteria in ons lijstbeleid. Als je wilt dat we een portemonnee toevoegen, meld dit dan via GitHub.",
"page-find-wallet-mobile": "Mobiel",
- "page-find-wallet-mobile-desc": "Portemonnees met mobiele apps",
"page-find-wallet-desktop": "Desktop",
- "page-find-wallet-desktop-desc": "Portemonnees met desktop apps",
"page-find-wallet-browser": "Browser",
- "page-find-wallet-browser-desc": "Portemonnees met browserextensies",
- "page-find-wallet-device": "Apparaat",
- "page-find-choose-to-compare": "Kies om te vergelijken",
- "page-find-wallet-choose-features": "Functies kiezen"
+ "page-find-wallet-device": "Apparaat"
}
diff --git a/src/intl/pcm/common.json b/src/intl/pcm/common.json
index edf1faa5c6e..8cf9840adb6 100644
--- a/src/intl/pcm/common.json
+++ b/src/intl/pcm/common.json
@@ -1,17 +1,29 @@
{
- "account-abstraction": "Akant abstashon",
"about-ethereum-org": "Abou ethereum.org",
"about-us": "Abou us",
+ "adding-desci-projects": "To dey add Desci Projects",
+ "adding-developer-tools": "To dey add Divelopa Tools",
+ "adding-exchanges": "To dey add ekshanjis",
+ "adding-glossary-terms": "To dey add Glossary Terms",
+ "adding-staking-products": "To dey add Staking Products",
+ "adding-wallets": "To dey add Wallets",
+ "account-abstraction": "Akant abstashon",
+ "acknowledgements": "Acknowledgements",
"aria-toggle-search-button": "Press searsh buton",
"aria-toggle-menu-button": "Press menu buton",
"beacon-chain": "Beacon Chain",
"bridges": "Blokchain bridges",
+ "bug-bounty": "Bug bounty",
+ "build": "Build",
+ "build-menu": "Build menu",
"clear": "Klear",
"close": "Klose",
"community": "Komunity",
"community-hub": "Komunity hub",
"community-menu": "Komunity menu",
"contact": "Kontact",
+ "content-buckets": "Kontents Buckets",
+ "content-resources": "Kontent Risorsis",
"content-standardization": "Di Koret standad for D way kontent supose dey",
"contributing": "Dey kontribut",
"contributors": "Kontributor",
@@ -20,14 +32,17 @@
"copied": "Kopied",
"copy": "Kopy",
"danksharding": "Dankshardin",
- "dao-page": "Disentralized autonomous organisashon (DAOs)",
+ "dao-page": "DAOs - Disentralized autonomous organisashon",
"dark-mode": "Dark",
"data-provided-by": "Data sorse:",
- "decentralized-applications-dapps": "Disentralized aplikashons (dapps)",
+ "decentralized-applications-dapps": "Dapps - Disentralized aplikashons",
"decentralized-identity": "Disentralized identity",
"decentralized-social-networks": "Disentralized soshia netwoks",
- "decentralized-science": "Disentralized sayens (DeSci)",
- "defi-page": "Disentralized finans (Defi)",
+ "decentralized-science": "DeSci - Disentralized sayens",
+ "description": "Desikripshon for nav item",
+ "defi-page": "Defi - Disentralized finans",
+ "design": "Disign",
+ "design-principles": "Disign Prinsipol",
"devcon": "Devkon",
"developers": "Divelopas",
"developers-home": "Divelopas haus",
@@ -59,7 +74,6 @@
"enterprise-menu": "Entaprise menu",
"esp": "Ekosystem Suport programme",
"eth-current-price": "Kurrent ETH price (USD)",
- "ethereum-basics": "Ethereum basics",
"ethereum-bug-bounty": "Ethereum bug bounty program",
"consensus-when-shipping": "Wen e go ship?",
"ethereum-upgrades": "Ethereum upgrades",
@@ -83,7 +97,7 @@
"feedback-card-prompt-tutorial": "Shey dis tutorial dey helep?",
"feedback-widget-thank-you-title": "Tank yu for wetin yu tell us!",
"feedback-widget-thank-you-subtitle": "Make dis page betta as yu dey ansa few kweshons.",
- "feedback-widget-thank-you-subtitle-ext": "If yu nid any helep, yu fit tok to di komunity on top awa Discord.",
+ "feedback-widget-thank-you-subtitle-ext": "If yu nid helep, yu fit rish out to di komunity on awa Discord.",
"feedback-widget-thank-you-timing": "2-3 min",
"feedback-widget-thank-you-cta": "Make yu open short survey",
"find-wallet": "Find wallet",
@@ -94,11 +108,10 @@
"grants": "Grants",
"grant-programs": "Ecosystem Grant programs",
"guides": "Guides",
- "guides-hub": "Guides hub",
+ "guides-hub": "Hau to dey guide",
"history-of-ethereum": "Ethereum history",
"home": "Haus",
"how-ethereum-works": "Hau ethereum dey work",
- "how-to-register-an-ethereum-account": "Hau yu fit regista ethereum akant",
"how-to-revoke-token-access": "Hau yu fit komot smart kontract wey get asess to yor crypto funds",
"how-to-swap-tokens": "Hau yu fit take swap tokens",
"how-to-use-a-bridge": "Hau yu fit bridge tokens to layer2",
@@ -115,7 +128,7 @@
"last-edit": "Last edit",
"layer-2": "Layer 2",
"learn": "Make yu Learn",
- "learn-by-coding": "Learn by coding",
+ "learn-by-coding": "Learn by kodin",
"learn-hub": "Learn Hub",
"learn-menu": "Learn menu",
"learn-more": "Make yu learn more",
@@ -128,11 +141,105 @@
"loading-error-try-again-later": "Di tin wey yu dey find nor gri load. Yu fit try am again later.",
"logo": "logo",
"mainnet-ethereum": "Ethereum mainnet",
- "more": "More",
- "nav-developers": "Developers",
+ "merge": "Merge am",
+ "more": "Show more",
+ "nav-about-description": "A publik, projet wey dey open for di Ethereum komunity",
+ "nav-advanced-description": "Learn topiks wey dey kompleks pass welu welu",
+ "nav-advanced-label": "Waya Pass",
+ "nav-basics-description": "Undastand di fundamentals of Ethereum",
+ "nav-basics-label": "Basiks",
+ "nav-bridges-description": "Web3 don dey evolve into ekosystem of primary L1 blokchains andi L2 solushons wey dey skale",
+ "nav-builders-home-description": "One buildas manual wey dey for Ethereum—by pipo wey dey build, for pipo wey dey build",
+ "nav-builders-home-label": "Buildas home",
+ "nav-contribute-description": "If yu wont helep, dis go guide yu",
+ "nav-contribute-label": "To dey kontribute to ethereum.org",
+ "nav-dao-description": "Komunitis wey memba own witout authority wey dem sentralize",
+ "nav-dapps-description": "Eksplor one rish ekosystem of apps wey dey yus Ethereum",
+ "nav-defi-description": "One global, open altanative wey dey di tradishonal finanshia market",
+ "nav-desci-description": "One global, open altanative wey dey di kurent sayentifik system",
+ "nav-desoc-description": "Platfoms wey base on blokchain for soshia interakshon and kontent kreashon",
"nav-developers-docs": "Diveloas docs",
+ "nav-developers": "Divelopas",
+ "nav-did-description": "Isshiu make yu get your own unik desentralized identifiers",
+ "nav-docs-description": "Docs to helep yu ondastand andi build wit Ethereum",
+ "nav-docs-design-description": "Desikripshon of unik web3 disign shalengis, ogbonge praktis andi user researsh insights",
+ "nav-docs-design-label": "UX/UI disign fundamentals",
+ "nav-docs-foundation-description": "Core fundamental wey go divelop on Ethereum",
+ "nav-docs-overview-description": "Yor home for divelopa docs",
+ "nav-docs-stack-description": "Ondastand all di details wey dey for di Ethereum stack",
+ "nav-eip-description": "Standards wey spesify new fitures abi processes",
+ "nav-eip-label": "EIPs - Ethereum improvement proposal",
+ "nav-emerging-description": "Mak yu sabi oda case for Ethereum wey new pass",
+ "nav-enterprise-description": "Biznes aplikashons wey dey for Ethereum",
+ "nav-ethereum-org-description": "Dis website na wetin komunity dey drive—make yu join us andi kontribute too",
+ "nav-ethereum-wallets-description": "App wey yu fit yus interat wit yor Ethereum akant",
+ "nav-events-description": "Disentralizashon and fridom to artisipate for anybodi",
+ "nav-events-irl-description": "Efri month major Ethereum events dey for in-pesin andi online",
+ "nav-events-label": "Komunitis andi events",
+ "nav-events-online-description": "Plenti pipol wey bi Ethereum supporta papa for dis online komunitis",
+ "nav-find-wallet-description": "Wallets dey alow yu to yus krypto",
+ "nav-find-wallet-label": "Mak yu shuse yor wallet",
+ "nav-gas-fees-description": "Hau dem dey kalkulate ETH transakshon fees",
+ "nav-gas-fees-label": "Gas fee",
+ "nav-get-eth-description": "Yu go nid ether (ETH) to yus Ethereum aplikashons",
+ "nav-get-started-description": "Yor first steps to sabi yus Ethereum",
+ "nav-governance-description": "Di process wey dey involve to dey upgrade di Ethereum protokol",
+ "nav-governance-label": "Governance",
+ "nav-grants-description": "List wey wi kurate by awa komunity for projets wey provide grant wey dey fund programs",
+ "nav-guide-create-account-description": "Anybodi fit kreate one Ethereum akant at any taim, for fri wit one wallet app",
+ "nav-guide-revoke-access-description": "Mak yu stay safe wen yu dey rilate wit smat kontrats and aplikashons for di Ethereum ekosystem",
+ "nav-guide-revoke-access-label": "Hau yu go sabi rivoke smat kontrat access",
+ "nav-guide-use-wallet-description": "Mak yu sabi hau to operate all di basik funkshons of one wallet",
+ "nav-guide-use-wallet-label": "Hau to yus wallet",
+ "nav-guides-description": "Pratika step-by-step dey guide to helep yu stat",
+ "nav-guides-label": "Hau-to-sabi guides",
+ "nav-history-description": "One timeline for all di major forks and updates",
+ "nav-history-label": "Teknikal histori ofi Ethereum",
+ "nav-layer-2-description": "Sheapa andi fasta transakshon for Ethereum",
+ "nav-learn-by-coding-description": "Tools wey fit helep yu eksperiment wit Ethereum",
+ "nav-local-env-description": "Shuse andi set up yor Ethereum divelopment stak",
+ "nav-mainnet-description": "Wi sabi fit build enterprise blokchain aplikashons on di publik Ethereum Mainnet",
+ "nav-nft-description": "Na one way to reprisent anytin wey dey unik as Ethereum-based asset",
+ "nav-open-research-description": "One of di primary pawa of Ethereum na im aktive risearsh komunity",
+ "nav-open-research-label": "Open risearsh",
+ "nav-overview-description": "All tins wey consign Ethereum edukashon",
+ "nav-participate-overview-description": "Ovaview on hau yu go fit patisipate",
"nav-primary": "Primary",
- "nft-page": "Non-fungibol tokens (NFTs)",
+ "nav-quizzes-description": "Mak yu find out hau welu yu ondastand Ethereum and kryptokurensis",
+ "nav-quizzes-label": "Make yu test yor knowlege",
+ "nav-refi-description": "One alternative ekonomik system wey dem build on regenerative prinsipol",
+ "nav-research-description": "Processes wey dem yus to impruf Ethereum",
+ "nav-research-label": "Risearsh andi divelopment",
+ "nav-roadmap-description": "Di path wey folow to more skalability, sekurity andi sustainability for Ethereum",
+ "nav-roadmap-future-description": "Make Ethereum gidigba as one bigi andi disentralize netwok",
+ "nav-roadmap-future-label": "Fushure-prufin",
+ "nav-roadmap-label": "Roadmap",
+ "nav-roadmap-scaling-description": "Netwok updates to kontinu dey ridus trasakshon cost and speed",
+ "nav-roadmap-security-description": "To dey make sure Ethereum stand gidigba to all kain attaks into di fushure",
+ "nav-roadmap-security-label": "Sikurity wey don impruf",
+ "nav-roadmap-ux-description": "To dey yus Ethereum nid to dey simpol",
+ "nav-run-a-node-description": "Mak yu dey fully sovereign as yu dey helep sikure di netwok",
+ "nav-security-description": "Learn di ogbonge praktis wen yu dey yus kryptokurensis",
+ "nav-smart-contracts-description": "Di fundamental buildin bloks ofi Ethereum ekosystem",
+ "nav-stablecoins-description": "Stabolcoins na Ethereum tokens wey dem disign to stay for value wey nor dey shanj",
+ "nav-stake-description": "Mak yu earn riwods for yu to sikure Ethereum",
+ "nav-stake-label": "Stake",
+ "nav-staking-home-description": "One ovaview of difrent opshon for stakin",
+ "nav-staking-pool-description": "Stake andi earn riwods wit any amount of ETH by to join wit odas",
+ "nav-staking-pool-label": "Pooled stakin",
+ "nav-staking-saas-label": "To dey stake wit one sarvis",
+ "nav-staking-solo-label": "Solo Stakin",
+ "nav-start-building-description": "Informashon wey dey yusful for otondo",
+ "nav-translation-program-description": "One joint effoti to make sure dem translate ethereum.org to all di languages",
+ "nav-tutorials-description": "List wey dem kurate for komunity tutorials",
+ "nav-use-cases-description": "Diskova difrent idias wey dem fit use Ethereum for",
+ "nav-what-is-ether-description": "Di kurrensy wey dem dey use for Ethereum apps",
+ "nav-what-is-ethereum-description": "Mak yu ondastand wetin make Ethereum dey speshia",
+ "nav-what-is-web3-label": "Wetin bi web3?",
+ "nav-what-is-web3-description": "One alternativ to sentranliz monopoliz to dey diktate di rules",
+ "nav-whitepaper-description": "Di orijina Ethereum whitepaper wey Vitalik Buterin write for 2014",
+ "nav-zkp-description": "One way yu fit yus pruf di validity of one statement witout make yu show di statement imsef",
+ "nft-page": "NFTs - Non-fungibol tokens",
"nfts": "NFTs",
"no": "No",
"on-this-page": "On dis page",
@@ -140,6 +247,7 @@
"page-developers-aria-label": "Divelopas' Menu",
"page-index-meta-title": "Haus",
"page-last-updated": "Last taim wey dem update dis page",
+ "participate-menu": "Patisipate menu",
"pbs": "Proposa-builda seperashon",
"pools": "Pooled stakin",
"privacy-policy": "Privacy policy",
@@ -150,8 +258,10 @@
"refresh": "Abeg rifresh dis page.",
"return-home": "Make yu riturn haus",
"roadmap": "Ethereum roadmap",
+ "research": "Risearsh",
+ "research-menu": "Risearsh menu",
"resources": "Translashon risorsis",
- "regenerative-finance": "Regenerative finans (ReFi)",
+ "regenerative-finance": "ReFi - Regenerative finans",
"run-a-node": "Run node",
"rollup-component-website": "Website",
"rollup-component-developer-docs": "Divelopa docs",
@@ -164,23 +274,23 @@
"search-box-blank-state-text": "Searsh away!",
"search-eth-address": "E be like ethereum address. Wi nor dey provide info to address. Try to dey find am on top blok explorer like",
"search-no-results": "Nor rizut for wetin you dey find",
+ "security": "Security",
"single-slot-finality": "Singol slot finality",
"statelessness": "Statelessnes",
"see-contributors": "Si kontributors",
- "set-up-local-env": "Set up your local level",
+ "set-up-local-env": "Set up yor local level",
"sharding": "Sharding",
"show-all": "Show mi evrytin",
"show-less": "Show mi smoll",
"site-description": "Ethereum na one global, disentrlize platfom for money and new kain aplikashon. For Ethereum, yu fit write kode wey det kontrol money, and dey build aplikashon wey yu fir yus anywia in di world.",
- "site-title": "ethereum.org",
"skip-to-main-content": "Skip go main kontent",
"smart-contracts": "Smart contracts",
- "stablecoins": "Stablecoins",
+ "stablecoins": "Stabolcoins",
"stake-eth": "Stake ETH",
"staking": "To dey stake",
"start-here": "Make yu stat here",
- "style-guide": "Style guide",
"solo": "Solo Stakin",
+ "support": "Support",
"terms-of-use": "Terms of yus",
"translation-banner-body-new": "Yu dey look dis page in English bikos wi neva tranlate am. Helep us translate dis kontent.",
"translation-banner-body-update": "Dis na di new vashon of di page but im dey only English for nau. Helep us translate di latest vashon.",
@@ -191,11 +301,14 @@
"translation-banner-no-bugs-title": "No bugs for here!",
"translation-banner-no-bugs-content": "Wi nor dey translate dis page as wi leave am for english by pupose.",
"translation-banner-no-bugs-dont-show-again": "Nor show am again",
+ "translation-program": "Translashon program",
"try-using-search": "Try to dey yus di searsh take find wetin yu dey find",
"tutorials": "Tutorials",
"up": "Up",
- "use-ethereum": "Yus Ethereum",
+ "use": "Yus",
+ "use-ethereum": "Yus Ethreum",
"use-ethereum-menu": "Yus ethereum menu",
+ "use-menu": "Yus menu",
"user-experience": "User experience",
"verkle-trees": "Verkle trees",
"wallets": "Wallets",
@@ -203,8 +316,8 @@
"web3": "Wetin bi web3?",
"web3-title": "Web3",
"website-last-updated": "Website last update",
- "what-is-ether": "Wetin be ether (ETH)?",
- "what-is-ethereum": "What is Ethereum?",
+ "what-is-ether": "Wetin bi ether (ETH)?",
+ "what-is-ethereum": "Wetin bi Ethereum?",
"withdrawals": "To dey stake witdrawals",
"yes": "Yes",
"zero-knowledge-proofs": "Zero-knowledge prufs"
diff --git a/src/intl/pcm/page-languages.json b/src/intl/pcm/page-languages.json
index fb51e1e3783..b91a6d2b036 100644
--- a/src/intl/pcm/page-languages.json
+++ b/src/intl/pcm/page-languages.json
@@ -57,7 +57,7 @@
"language-nb": "Norwegian",
"language-ne-np": "Nepali",
"language-nl": "Dutch",
- "language-pcm": "Nigerian pidgin",
+ "language-pcm": "Nigerian Pidgin",
"language-fil": "Filipino",
"language-pl": "Polish",
"language-pt": "Portuguese",
diff --git a/src/intl/pcm/page-wallets-find-wallet.json b/src/intl/pcm/page-wallets-find-wallet.json
index 7da6e81dbcb..91646fb86f1 100644
--- a/src/intl/pcm/page-wallets-find-wallet.json
+++ b/src/intl/pcm/page-wallets-find-wallet.json
@@ -7,7 +7,6 @@
"page-find-wallet-meta-title": "Find ethereum wallet",
"page-find-wallet-title": "Make yu find one wallet",
"page-find-wallet-try-removing": "Try rimuv one abi two feature",
- "page-find-wallet-choose-to-compare": "Make yu shuse to kompia",
"page-stake-eth": "Stake ETH",
"page-find-wallet-open-source": "Open source",
"page-find-wallet-open-source-desc": "Open-sorse software dey alow anyone audit di integrity and sikurity of di aplikashon",
@@ -16,8 +15,6 @@
"page-find-wallet-non-custodial-desc": "Wallets wey nor dey kontrol yor private keys",
"page-find-wallet-hardware-wallet-support": "Hardware wallet suport",
"page-find-wallet-hardware-wallet-support-desc": "Wallets wey fit konet to hardware wallet to sekure am wella",
- "page-find-wallet-walletconnect": "WalletKonet",
- "page-find-wallet-walletconnect-desc": "Wallets wey suport WalletKonet to dey konet to dapps",
"page-find-wallet-rpc-importing": "RPC importin",
"page-find-wallet-rpc-importing-desc": "Wallets wey dey suport kustom RPC finalplace to konet to difren nodes abi netwoks",
"page-find-wallet-nft-support": "NFT join body",
@@ -36,8 +33,6 @@
"page-find-wallet-ens-support-desc": "Wallet wey suport Ethereum Name Savis (ENS)",
"page-find-wallet-token-importing": "To dey impot token",
"page-find-wallet-token-importing-desc": "You fit impot any ERC-20 token wey yu go fit yus for di wallet",
- "page-find-wallet-fee-optimization": "To dey optimize yor fee",
- "page-find-wallet-fee-optimization-desc": "Suport type 2 transakshons for gas fees wey dem optimiz, and fee rifunds for gas wey dem nor yus",
"page-find-wallet-buy-crypto": "Buy crypto",
"page-find-wallet-buy-crypto-desc": "Buy crypto wit normal moni from di wallet.\n*Note say: to dey dey buy crypto fit base on di region wey yu dey stay",
"page-find-wallet-sell-for-fiat": "Sell for normal cash",
@@ -46,7 +41,6 @@
"page-find-wallet-multisig-desc": "Wallet wey get plenti signatures sto konfam one transakshon",
"page-find-wallet-social-recovery": "Social rekovry",
"page-find-wallet-social-recovery-desc": "Wallets wey gri make guardians shange di key dem dey yus sign for smart kontrat",
- "page-find-wallet-token-support": "Token suport",
"page-find-wallet-features": "Features",
"page-find-wallet-security": "Security",
"page-find-wallet-smart-contract": "Smart kontrat",
@@ -63,7 +57,6 @@
"page-find-wallet-chromium": "Chromium",
"page-find-wallet-firefox": "Firefox",
"page-find-wallet-hardware": "Hardware",
- "page-find-wallet-hardware-desc": "Hardware wallets",
"page-find-wallet-new-to-crypto-title": "New to crypto",
"page-find-wallet-new-to-crypto-desc": "Yu bi first taim user wey dey find hau to get yor first wallet",
"page-find-wallet-nfts-title": "NFTs",
@@ -74,22 +67,14 @@
"page-find-wallet-finance-desc": "You be pesin wey dey yus DeFi and wont one wallet wey go alow yu konet to DeFi apikashons",
"page-find-wallet-developer-title": "Developa",
"page-find-wallet-developer-desc": "You be developa and nid wallet wey go helep yu divelop and test dapps",
- "page-find-wallet-persona-desc": "Shuse di profile wey bi di same wit yor kain user and filter di wallet list",
"page-find-wallet-filters": "Filtas",
"page-find-wallet-active": "acktiv",
- "page-find-wallet-profile-filters": "Profile filtas",
- "page-find-wallet-feature-filters": "Feature filtas",
"page-find-wallet-footnote-1": "Wallets wey dem list for dis page nor get official endorsements, and dem dey provided only for informashional purposes.",
"page-find-wallet-footnote-2": "Di wallet projects don already provide dia diskripshon demsefs.",
"page-find-wallet-footnote-3": "Wi add products to dis page based on di kriteria wey dey inside awa listin policy. If yu go like add new wallet, yu fit raise issue for di GitHub.",
"page-find-wallet-mobile": "Mobile",
- "page-find-wallet-mobile-desc": "Wallet wey get mobile apps",
"page-find-wallet-desktop": "Desktop",
- "page-find-wallet-desktop-desc": "Wallets wey get desktop apps",
"page-find-wallet-browser": "Browser",
- "page-find-wallet-browser-desc": "Wallets wey get browser Eksepshon",
"page-find-wallet-device": "Device",
- "page-find-choose-to-compare": "Make yu shuse to kompia",
- "page-find-wallet-choose-features": "Shuse features",
"page-find-wallet-reset-filters": "Make yu reset filters"
}
diff --git a/src/intl/pl/common.json b/src/intl/pl/common.json
index edee4eac2e0..99864fc4670 100644
--- a/src/intl/pl/common.json
+++ b/src/intl/pl/common.json
@@ -5,8 +5,6 @@
"adding-developer-tools": "Dodawanie narzędzi deweloperskich",
"adding-exchanges": "Dodawanie giełd",
"adding-glossary-terms": "Dodawanie terminów glosariusza",
- "adding-layer-2s": "Adding Layer 2s",
- "adding-products": "Adding Products",
"adding-staking-products": "Dodawanie produktów stakingowych",
"adding-wallets": "Dodawanie portfeli",
"account-abstraction": "Abstrakcja konta",
@@ -15,6 +13,9 @@
"aria-toggle-menu-button": "Włącz przycisk menu",
"beacon-chain": "Łańcuch śledzący",
"bridges": "Mosty blockchain",
+ "bug-bounty": "Nagrody za błędy",
+ "build": "Wybuduj",
+ "build-menu": "Menu budowania",
"clear": "Wyczyść",
"close": "Zamknij",
"community": "Społeczność",
@@ -31,14 +32,15 @@
"copied": "Skopiowane",
"copy": "Kopiuj",
"danksharding": "Danksharding",
- "dao-page": "Zdecentralizowane autonomiczne organizacje (DAO)",
+ "dao-page": "DAO - Zdecentralizowane autonomiczne organizacje",
"dark-mode": "Ciemny",
"data-provided-by": "Źródło danych:",
- "decentralized-applications-dapps": "Aplikacje zdecentralizowane (dapps)",
+ "decentralized-applications-dapps": "Dapps - Aplikacje zdecentralizowane",
"decentralized-identity": "Zdecentralizowana tożsamość",
"decentralized-social-networks": "Zdecentralizowane sieci społecznościowe",
- "decentralized-science": "Zdecentralizowana nauka (DeSci)",
- "defi-page": "Zdecentralizowane finanse (DeFi)",
+ "decentralized-science": "DeSci - Zdecentralizowana nauka",
+ "description": "Opis elementu nawigacyjnego",
+ "defi-page": "DeFi - Zdecentralizowane finanse",
"design": "Projekt",
"design-principles": "Zasady projektowania",
"devcon": "Devcon",
@@ -76,7 +78,7 @@
"ethereum-bug-bounty": "Program nagród za błędy Ethereum",
"consensus-when-shipping": "Kiedy to się stanie?",
"ethereum-upgrades": "Uaktualnienia Ethereum",
- "ethereum-brand-assets": "Aktywa marki Ethereum",
+ "ethereum-brand-assets": "Zasoby marki Ethereum",
"ethereum-online": "Społeczności internetowe",
"ethereum-events": "Wydarzenia Ethereum",
"ethereum-foundation": "Fundacja Ethereum",
@@ -96,7 +98,7 @@
"feedback-card-prompt-tutorial": "Czy ten samouczek był pomocny?",
"feedback-widget-thank-you-title": "Dziękujemy za opinię!",
"feedback-widget-thank-you-subtitle": "Spraw, aby ta strona była jeszcze lepsza, odpowiadając na kilka pytań.",
- "feedback-widget-thank-you-subtitle-ext": "Jeśli potrzebujesz pomocy, możesz skontaktować się ze społecznością na naszym kanale Discord.",
+ "feedback-widget-thank-you-subtitle-ext": "Jeśli potrzebujesz pomocy, możesz skontaktować się ze społecznością na naszym serwerze Discord.",
"feedback-widget-thank-you-timing": "2–3 min",
"feedback-widget-thank-you-cta": "Otwórz krótką ankietę",
"find-wallet": "Znajdź portfel",
@@ -143,10 +145,113 @@
"mainnet-ethereum": "Sieć główna Ethereum",
"merge": "Połącz",
"more": "Więcej",
- "nav-developers": "Autorzy",
+ "nav-about-description": "Publiczny projekt open-source dla społeczności Ethereum",
+ "nav-advanced-description": "Poznaj bardziej złożone zagadnienia",
+ "nav-advanced-label": "Zaawansowane",
+ "nav-basics-description": "Poznaj podstawy Ethereum",
+ "nav-basics-label": "Podstawy",
+ "nav-bridges-description": "Web3 przekształcił się w ekosystem podstawowych łańcuchów bloków L1 i rozwiązań skalowania L2",
+ "nav-builders-home-description": "Podręcznik twórców Ethereum — stworzony przez twórców dla twórców",
+ "nav-builders-home-label": "Strona główna twórcy",
+ "nav-contribute-description": "Jeśli chcesz pomóc, to Cię poprowadzi",
+ "nav-contribute-label": "Przyczynianie się do rozwoju ethereum.org",
+ "nav-dao-description": "Należące do członków społeczności bez scentralizowanej władzy",
+ "nav-dapps-description": "Poznaj bogaty ekosystem aplikacji korzystających z Ethereum",
+ "nav-defi-description": "Globalna, otwarta alternatywa dla tradycyjnego rynku finansowego",
+ "nav-desci-description": "Globalna, otwarta alternatywa dla obecnego systemu naukowego",
+ "nav-desoc-description": "Oparte na łańcuchu bloków platformy umożliwiające interakcje społeczne oraz tworzenie treści",
"nav-developers-docs": "Dokumentacja deweloperów",
+ "nav-developers": "Deweloperzy",
+ "nav-did-description": "Wydawaj i posiadaj swoje unikalne zdecentralizowane identyfikatory",
+ "nav-docs-description": "Dokumenty, które pomogą Ci zrozumieć Ethereum i tworzyć za jego pomocą",
+ "nav-docs-design-description": "Opis unikalnych wyzwań związanych z projektowaniem web3, najlepsze praktyki i wnioski z badań użytkowników",
+ "nav-docs-design-label": "Podstawy projektowania UX/UI",
+ "nav-docs-foundation-description": "Główne podstawy programowania w sieci Ethereum",
+ "nav-docs-foundation-label": "Zagadnienia podstawowe",
+ "nav-docs-overview-description": "Twoja strona główna dokumentów programistycznych",
+ "nav-docs-stack-description": "Poznaj wszystkie szczegóły stosu Ethereum",
+ "nav-docs-stack-label": "Stos Ethereum",
+ "nav-eip-description": "Standardy określające nowe funkcje lub procesy",
+ "nav-eip-label": "EIP - Wnioski dotyczące ulepszenia Ethereum",
+ "nav-emerging-description": "Poznaj inne, nowsze przypadki użycia Ethereum",
+ "nav-emerging-label": "Pojawiające się przypadki użycia",
+ "nav-enterprise-description": "Zastosowania biznesowe Ethereum",
+ "nav-ethereum-org-description": "Ta witryna internetowa jest prowadzona przez społeczność — dołącz do nas i również wnieś swój wkład",
+ "nav-ethereum-wallets-description": "Aplikacja do interakcji z Twoim kontem Ethereum",
+ "nav-events-description": "Decentralizacja i swoboda uczestnictwa dla każdego",
+ "nav-events-irl-description": "Każdego miesiąca odbywają się ważne wydarzenia związane z Ethereum, zarówno osobiste, jak i online",
+ "nav-events-label": "Społeczności i wydarzenia",
+ "nav-events-online-description": "W tych społecznościach internetowych zrzeszone są setki tysięcy entuzjastów Ethereum",
+ "nav-find-wallet-description": "Portfele umożliwiają korzystanie z kryptowalut",
+ "nav-find-wallet-label": "Wybierz swój portfel",
+ "nav-gas-fees-description": "Jak obliczane są opłaty transakcyjne ETH",
+ "nav-gas-fees-label": "Opłaty za gaz",
+ "nav-get-eth-description": "Do korzystania z aplikacji Ethereum niezbędny jest Ether (ETH)",
+ "nav-get-started-description": "Twoje pierwsze kroki w używaniu Ethereum",
+ "nav-governance-description": "Proces związany z aktualizacją protokołu Ethereum",
+ "nav-governance-label": "Zarządzanie",
+ "nav-grants-description": "Wyselekcjonowana przez naszą społeczność lista projektów, które zapewniają programy grantów finansowych",
+ "nav-guide-create-account-description": "Każdy może utworzyć konto Ethereum w dowolnym momencie, za darmo i z aplikacją portfela",
+ "nav-guide-create-account-label": "Jak stworzyć konto Ethereum",
+ "nav-guide-revoke-access-description": "Zachowaj bezpieczeństwo podczas interakcji z inteligentnymi kontraktami i aplikacjami w ekosystemie Ethereum",
+ "nav-guide-revoke-access-label": "Jak cofnąć dostęp do inteligentnego kontraktu",
+ "nav-guide-use-wallet-description": "Dowiedz się, jak obsługiwać wszystkie podstawowe funkcje portfela",
+ "nav-guide-use-wallet-label": "Jak używać portfela",
+ "nav-guides-description": "Praktyczne przewodniki krok po kroku, które pomogą Ci zacząć",
+ "nav-guides-label": "Przewodniki",
+ "nav-history-description": "Oś czasu wszystkich głównych forków i aktualizacji",
+ "nav-history-label": "Historia techniczna Ethereum",
+ "nav-layer-2-description": "Tańsze i szybsze transakcje w Ethereum",
+ "nav-learn-by-coding-description": "Narzędzia, które pomogą Ci eksperymentować z Ethereum",
+ "nav-local-env-description": "Wybierz i skonfiguruj swój stos programistyczny Ethereum",
+ "nav-mainnet-description": "Aplikacje blockchain dla przedsiębiorstw można tworzyć w publicznej sieci głównej Ethereum",
+ "nav-nft-description": "Sposób reprezentowania czegoś wyjątkowego jako aktywu na blockchainie Ethereum",
+ "nav-open-research-description": "Jedną z głównych zalet Ethereum jest jego aktywna społeczność badawcza",
+ "nav-open-research-label": "Otwarte badania",
+ "nav-overview-description": "Edukacją na temat wszystkiego, co związane z Ethereum",
+ "nav-overview-label": "Przegląd",
+ "nav-participate-overview-description": "Informacje o tym, jak wziąć udział",
"nav-primary": "Podstawowe",
- "nft-page": "Tokeny niewymienialne (NFT)",
+ "nav-private-description": "Zasoby deweloperskie dla prywatnego przedsiębiorstwa Ethereum",
+ "nav-quizzes-description": "Sprawdź, jak dobrze rozumiesz Ethereum i kryptowaluty",
+ "nav-quizzes-label": "Przetestuj swoją wiedzę",
+ "nav-refi-description": "Alternatywny system ekonomiczny oparty na zasadach regeneracji",
+ "nav-research-description": "Procesy stosowane w celu ulepszenia Ethereum",
+ "nav-research-label": "Badania i rozwój",
+ "nav-roadmap-description": "Droga do zwiększenia skalowalności, bezpieczeństwa i stabilności Ethereum",
+ "nav-roadmap-future-description": "Umacnianie Ethereum jako niezawodnej sieci zdecentralizowanej",
+ "nav-roadmap-future-label": "Zabezpieczenie na przyszłość",
+ "nav-roadmap-label": "Plan działania",
+ "nav-roadmap-scaling-description": "Aktualizacje sieci, mające na celu dalsze obniżenie kosztów i zwiększenie szybkości transakcji",
+ "nav-roadmap-scaling-label": "Tańsze transakcje",
+ "nav-roadmap-security-description": "Dbanie o to, aby sieć Ethereum pozostała odporna na wszelkiego rodzaju ataki w przyszłości",
+ "nav-roadmap-security-label": "Zwiększone bezpieczeństwo",
+ "nav-roadmap-ux-description": "Korzystanie z Ethereum wymaga uproszczenia",
+ "nav-run-a-node-description": "Zapewnij sobie pełną suwerenność, zarazem pomagając w zabezpieczeniu sieci",
+ "nav-security-description": "Poznaj najlepsze praktyki dotyczące korzystania z kryptowalut",
+ "nav-smart-contracts-description": "Podstawowe elementy składowe ekosystemu Ethereum",
+ "nav-stablecoins-description": "Stablecoiny to tokeny Ethereum zaprojektowane tak, aby utrzymywały stałą wartość",
+ "nav-stake-description": "Zdobywaj nagrody za zabezpieczanie Ethereum",
+ "nav-stake-label": "Stakuj",
+ "nav-staking-home-description": "Omówienie różnych opcji stakingu",
+ "nav-staking-home-label": "Strona główna stakingu",
+ "nav-staking-pool-description": "Stakuj i zdobywaj nagrody z dowolną ilością ETH, łącząc siły z innymi",
+ "nav-staking-pool-label": "Stakowanie w puli",
+ "nav-staking-saas-description": "Działanie Twojego walidatora zapewniają zewnętrzni operatorzy węzłów",
+ "nav-staking-saas-label": "Staking za pomocą usługi",
+ "nav-staking-solo-description": "Uruchamiaj sprzęt domowy i osobiście zwiększaj bezpieczeństwo i decentralizację sieci Ethereum",
+ "nav-staking-solo-label": "Stakowanie solo",
+ "nav-start-building-description": "Przydatne informacje dla nowych użytkowników",
+ "nav-translation-program-description": "Wspólny wysiłek na rzecz przetłumaczenia ethereum.org na wszystkie języki",
+ "nav-tutorials-description": "Wyselekcjonowana lista samouczków społeczności",
+ "nav-use-cases-description": "Odkryj różne pomysły na wykorzystanie Ethereum",
+ "nav-what-is-ether-description": "Waluta aplikacji Ethereum",
+ "nav-what-is-ethereum-description": "Dowiedz się, co wyróżnia Ethereum",
+ "nav-what-is-web3-label": "Co to jest Web3?",
+ "nav-what-is-web3-description": "Alternatywa dla scentralizowanych monopoli dyktujących zasady",
+ "nav-whitepaper-description": "Oryginalna dokumentacja Ethereum napisana przez Vitalika Buterina w roku 2014",
+ "nav-zkp-description": "Sposób na udowodnienie prawdziwości stwierdzenia bez ujawniania samego stwierdzenia",
+ "nft-page": "NFT - Tokeny niewymienialne",
"nfts": "Tokeny NFT",
"no": "Nie",
"on-this-page": "Na tej stronie",
@@ -154,6 +259,8 @@
"page-developers-aria-label": "Menu dewelopera",
"page-index-meta-title": "Strona główna",
"page-last-updated": "Strona ostatnio zaktualizowana",
+ "participate": "Uczestnictwo",
+ "participate-menu": "Menu Uczestnictwo",
"pbs": "Separacja proponujący-budujący",
"pools": "Stakowanie w puli",
"privacy-policy": "Polityka prywatności",
@@ -164,9 +271,11 @@
"refresh": "Odśwież stronę.",
"return-home": "wróć do strony głównej",
"roadmap": "Mapa drogowa Ethereum",
+ "research": "Badania",
+ "research-menu": "Menu Badania",
"resources": "Zasoby do tłumaczenia",
- "regenerative-finance": "Finanse regeneracyjne (ReFi)",
- "run-a-node": "Dodaj węzeł",
+ "regenerative-finance": "ReFi - Finanse regeneracyjne",
+ "run-a-node": "Uruchom węzeł",
"rollup-component-website": "Strona internetowa",
"rollup-component-developer-docs": "Dokumentacja dewelopera",
"rollup-component-technology-and-risk-summary": "Technologia i podsumowanie ryzyka",
@@ -211,17 +320,19 @@
"try-using-search": "Aby znaleźć to, czego szukasz, spróbuj użyć wyszukiwania lub",
"tutorials": "Samouczki",
"up": "W górę",
+ "use": "Zastosowania",
"use-ethereum": "Korzystanie z Ethereum",
"use-ethereum-menu": "Menu korzystania z Ethereum",
- "user-experience": "Doświadczenia użytkownika",
+ "use-menu": "Menu Zastosowania",
+ "user-experience": "Doświadczenie użytkownika",
"verkle-trees": "Drzewa Verkle",
"wallets": "Portfele",
"we-couldnt-find-that-page": "Nie udało się odnaleźć tej strony",
"web3": "Co to jest Web3?",
"web3-title": "Web3",
"website-last-updated": "Data ostatniej aktualizacji strony",
- "what-is-ether": "Czym jest ether (ETH)?",
- "what-is-ethereum": "Co to jest Ethereum?",
+ "what-is-ether": "Czym jest eter (ETH)?",
+ "what-is-ethereum": "Czym jest Ethereum?",
"withdrawals": "Wypłaty ze stakingu",
"yes": "Tak",
"zero-knowledge-proofs": "Pakiety zbiorcze o wiedzy zerowej"
diff --git a/src/intl/pl/page-staking.json b/src/intl/pl/page-staking.json
index 6090d278f3c..b630ad6fc82 100644
--- a/src/intl/pl/page-staking.json
+++ b/src/intl/pl/page-staking.json
@@ -38,7 +38,7 @@
"page-staking-saas-with-abbrev": "Usługi stakingowe (SaaS)",
"page-staking-more-on-saas": "Więcej na temat usług stakingowych",
"page-staking-learn-more-saas": "Dowiedz się więcej o usługach stakingowych",
- "page-staking-dropdown-pools": "Staking łączony",
+ "page-staking-dropdown-pools": "Stakowanie w puli",
"page-staking-dropdown-withdrawals": "O wypłatach",
"page-staking-dropdown-dvt": "Technologia rozproszonego walidatora",
"page-staking-more-on-pools": "Więcej o stakowaniu w puli",
diff --git a/src/intl/pl/page-wallets-find-wallet.json b/src/intl/pl/page-wallets-find-wallet.json
index 124da75e16d..2c387aab0d8 100644
--- a/src/intl/pl/page-wallets-find-wallet.json
+++ b/src/intl/pl/page-wallets-find-wallet.json
@@ -7,7 +7,6 @@
"page-find-wallet-meta-title": "Znajdź portfel Ethereum",
"page-find-wallet-title": "Znajdź portfel",
"page-find-wallet-try-removing": "Spróbuj usunąć jedną lub dwie funkcje",
- "page-find-wallet-choose-to-compare": "Wybierz, aby porównać",
"page-stake-eth": "Stakuj ETH",
"page-find-wallet-open-source": "Otwarte źródło",
"page-find-wallet-open-source-desc": "Oprogramowanie open-source pozwala każdemu kontrolować uczciwość i bezpieczeństwo aplikacji",
@@ -16,8 +15,6 @@
"page-find-wallet-non-custodial-desc": "Portfele niekontrolujące Twoich kluczy prywatnych",
"page-find-wallet-hardware-wallet-support": "Obsługa portfela sprzętowego",
"page-find-wallet-hardware-wallet-support-desc": "Portfele mogące się łączyć z portfelem sprzętowym w celu zapewnienia lepszych zabezpieczeń",
- "page-find-wallet-walletconnect": "WalletConnect",
- "page-find-wallet-walletconnect-desc": "Portfele obsługujące WalletConnect do łączenia się ze zdecentralizowanymi aplikacjami",
"page-find-wallet-rpc-importing": "Importowanie RPC",
"page-find-wallet-rpc-importing-desc": "Portfele obsługujące niestandardowe punkty końcowe RPC do łączenia się z różnymi węzłami lub sieciami",
"page-find-wallet-nft-support": "Obsługa tokenów NFT",
@@ -36,8 +33,6 @@
"page-find-wallet-ens-support-desc": "Portfele obsługujące Ethereum Name Service (ENS)",
"page-find-wallet-token-importing": "Importowanie tokenów",
"page-find-wallet-token-importing-desc": "Import dowolnego tokena ERC-20 do użycia w portfelu",
- "page-find-wallet-fee-optimization": "Optymalizacja opłat",
- "page-find-wallet-fee-optimization-desc": "Obsługa transakcji typu 2 dla zoptymalizowanych opłat za gaz oraz zwroty opłat za niewykorzystany gaz",
"page-find-wallet-buy-crypto": "Zakup kryptowalut",
"page-find-wallet-buy-crypto-desc": "Zakup kryptowalut za walutę fiducjarną bezpośrednio w portfelu \n * Uwaga: możliwość zakupu kryptowalut zależy od regionu",
"page-find-wallet-sell-for-fiat": "Sprzedaż za walutę fiducjarną",
@@ -46,7 +41,6 @@
"page-find-wallet-multisig-desc": "Portfele wymagające wielu podpisów do autoryzacji transakcji",
"page-find-wallet-social-recovery": "Odzyskiwanie społeczne",
"page-find-wallet-social-recovery-desc": "Portfele umożliwiające opiekunom zmianę klucza podpisującego dla portfeli inteligentnych kontraktów",
- "page-find-wallet-token-support": "Obsługa tokenów",
"page-find-wallet-features": "Funkcje",
"page-find-wallet-security": "Ochrona",
"page-find-wallet-smart-contract": "Inteligentny kontrakt",
@@ -63,7 +57,6 @@
"page-find-wallet-chromium": "Chromium",
"page-find-wallet-firefox": "Firefox",
"page-find-wallet-hardware": "Sprzęt",
- "page-find-wallet-hardware-desc": "Portfele sprzętowe",
"page-find-wallet-new-to-crypto-title": "Początkujący w kryptowalutach",
"page-find-wallet-new-to-crypto-desc": "Jesteś początkującym użytkownikiem i szukasz swojego pierwszego portfela",
"page-find-wallet-nfts-title": "Tokeny NFT",
@@ -74,22 +67,14 @@
"page-find-wallet-finance-desc": "Używasz DeFi i chcesz portfela, który umożliwi połączenie się z aplikacjami DeFi",
"page-find-wallet-developer-title": "Deweloper",
"page-find-wallet-developer-desc": "Jesteś deweloperem i potrzebujesz portfela do rozwijania i testowania zdecentralizowanych aplikacji",
- "page-find-wallet-persona-desc": "Wybierz pasujący do Ciebie profil użytkownika i przefiltruj listę portfeli",
"page-find-wallet-filters": "Filtry",
"page-find-wallet-active": "aktywny",
- "page-find-wallet-profile-filters": "Filtry profilów",
- "page-find-wallet-feature-filters": "Filtry funkcji",
"page-find-wallet-footnote-1": "Wyszczególnienie portfeli na tej stronie nie stanowi ich oficjalnej aprobaty i portfele te podano wyłącznie do celów informacyjnych.",
"page-find-wallet-footnote-2": "Ich opisy zostały dostarczone przez projekty portfelowe.",
"page-find-wallet-footnote-3": "Produkty dodajemy do tej strony na podstawie kryteriów określonych w naszych zasadach . Jeśli chcesz, abyśmy dodali jakiś portfel, prześlij zgłoszenie w GitHub.",
"page-find-wallet-mobile": "Mobilny",
- "page-find-wallet-mobile-desc": "Portfele z aplikacjami mobilnymi",
"page-find-wallet-desktop": "Desktopowe",
- "page-find-wallet-desktop-desc": "Portfele z aplikacjami komputerowymi",
"page-find-wallet-browser": "Przeglądarkowe",
- "page-find-wallet-browser-desc": "Portfele z rozszerzeniami przeglądarki",
"page-find-wallet-device": "Urządzenie",
- "page-find-choose-to-compare": "Wybierz, aby porównać",
- "page-find-wallet-choose-features": "Wybierz funkcje",
"page-find-wallet-reset-filters": "Zresetuj filtry"
}
diff --git a/src/intl/pt-br/common.json b/src/intl/pt-br/common.json
index 9b36306b79e..ac5e901a555 100644
--- a/src/intl/pt-br/common.json
+++ b/src/intl/pt-br/common.json
@@ -1,5 +1,5 @@
{
- "about-ethereum-org": "Sobre ethereum.org",
+ "about-ethereum-org": "Sobre o ethereum.org ",
"about-us": "Quem somos",
"adding-desci-projects": "Adicionar projetos DeSci",
"adding-developer-tools": "Adicionando ferramentas de desenvolvedor",
@@ -15,6 +15,9 @@
"aria-toggle-menu-button": "Alternar botão de menu",
"beacon-chain": "Beacon Chain",
"bridges": "Pontes de “Blockchains”",
+ "bug-bounty": "Recompensa por bugs",
+ "build": "Criar",
+ "build-menu": "Menu Criar",
"clear": "Limpar",
"close": "Fechar",
"community": "Comunidade",
@@ -31,14 +34,15 @@
"copied": "Copiado",
"copy": "Copiar",
"danksharding": "Danksharding",
- "dao-page": "Organizações autônomas descentralizadas (DAOs)",
+ "dao-page": "DAOs - Organizações autônomas descentralizadas",
"dark-mode": "Escuro",
"data-provided-by": "Fonte de dados:",
- "decentralized-applications-dapps": "Aplicativos descentralizados (dapps)",
+ "decentralized-applications-dapps": "Dapps - Aplicativos descentralizados",
"decentralized-identity": "Identidade descentralizada",
"decentralized-social-networks": "Redes sociais descentralizadas",
- "decentralized-science": "Ciência descentralizada (DeSci)",
- "defi-page": "Finanças descentralizadas (DeFi)",
+ "decentralized-science": "DeSci - Ciência descentralizada",
+ "description": "Descrição do item de navegação",
+ "defi-page": "DeFi - Finanças descentralizadas",
"design": "Visual",
"design-principles": "Princípios do design",
"devcon": "Devcon",
@@ -64,7 +68,7 @@
"documentation": "Documentação",
"down": "Abaixo",
"ecosystem": "Ecossistema",
- "edit-page": "Editar Página",
+ "edit-page": "Editar página",
"ef-blog": "Blog da Fundação Ethereum",
"eips": "Propostas de melhorias no Ethereum",
"energy-consumption": "Consumo energético do Ethereum",
@@ -76,7 +80,7 @@
"ethereum-bug-bounty": "Plano de recompensas à caça a erros de programação",
"consensus-when-shipping": "Quando estará disponível?",
"ethereum-upgrades": "Melhorias no Ethereum",
- "ethereum-brand-assets": "Ativos da marca Ethereum",
+ "ethereum-brand-assets": "Ativos de marca Ethereum",
"ethereum-online": "Comunidades on-line",
"ethereum-events": "Eventos Ethereum",
"ethereum-foundation": "Fundação Ethereum",
@@ -84,7 +88,7 @@
"ethereum-glossary": "Glossário de Ethereum",
"ethereum-governance": "Governança da Ethereum",
"ethereum-logo": "Logotipo da Ethereum",
- "ethereum-roadmap": "Roteiro Ethereum",
+ "ethereum-roadmap": "Planejamento Ethereum",
"ethereum-protocol": "Protocolo Ethereum",
"ethereum-security": "Segurança e prevenção de fraude da Ethereum",
"ethereum-support": "Suporte do Ethereum",
@@ -96,18 +100,18 @@
"feedback-card-prompt-tutorial": "Este tutorial foi útil?",
"feedback-widget-thank-you-title": "Agradecemos o seu feedback!",
"feedback-widget-thank-you-subtitle": "Torne esta página ainda melhor respondendo a estas perguntas.",
- "feedback-widget-thank-you-subtitle-ext": "Se precisar de ajuda, entre em contato com a comunidade em nosso Discord.",
+ "feedback-widget-thank-you-subtitle-ext": "Se precisar de ajuda, você pode entrar em contato com a comunidade em nosso Discord.",
"feedback-widget-thank-you-timing": "2 – 3 minutos",
"feedback-widget-thank-you-cta": "Abrir pesquisa rápida",
"find-wallet": "Buscar carteira",
"future-proofing": "À prova de futuro",
- "get-eth": "Compre ETH",
+ "get-eth": "Obtenha ETH",
"get-involved": "Participe",
"get-started": "Introdução",
"grants": "Recompensas",
"grant-programs": "Programas de recompensas do ecossistema",
"guides": "Guias",
- "guides-hub": "How-to guides",
+ "guides-hub": "Guias práticos",
"history-of-ethereum": "História do Ethereum",
"home": "Início",
"how-ethereum-works": "Como Ethereum funciona",
@@ -143,10 +147,115 @@
"mainnet-ethereum": "Rede principal da Ethereum",
"merge": "Integração",
"more": "Mais",
- "nav-developers": "Desenvolvedores",
+ "nav-about-description": "Um projeto público e de código aberto para a comunidade Ethereum",
+ "nav-advanced-description": "Fique por dentro dos tópicos mais complexos",
+ "nav-advanced-label": "Avançado",
+ "nav-basics-description": "Entenda os fundamentos do Ethereum",
+ "nav-basics-label": "Fundamentos",
+ "nav-bridges-description": "Web3 passou a ser um ecossistema de blockchains L1 primárias e soluções de escalabilidade L2",
+ "nav-builders-home-description": "Um manual para desenvolvedores de Ethereum: de desenvolvedores para desenvolvedores",
+ "nav-builders-home-label": "Página inicial para desenvolvedores",
+ "nav-contribute-description": "Use este material, caso queira ajudar",
+ "nav-contribute-label": "Contribua com ethereum.org",
+ "nav-dao-description": "Comunidades de membros sem liderança centralizada",
+ "nav-dapps-description": "Conheça o amplo ecossistema de apps que usam Ethereum",
+ "nav-defi-description": "Uma alternativa aberta e global ao mercado financeiro tradicional",
+ "nav-desci-description": "Uma alternativa global e aberta ao sistema científico atual",
+ "nav-desoc-description": "Plataformas baseadas em blockchain para interação social e criação de conteúdo",
"nav-developers-docs": "Documentação para o desenvolvedor",
+ "nav-developers": "Desenvolvedores",
+ "nav-did-description": "Emita e seja o proprietário de seus identificadores descentralizados exclusivos",
+ "nav-docs-description": "Documentos que o ajudam a entender e criar com Ethereum",
+ "nav-docs-design-description": "Descrição dos desafios de design únicos do Web3, práticas recomendadas e informações de pesquisa para o usuário",
+ "nav-docs-design-label": "Fundamentos de design de UX/UI",
+ "nav-docs-foundation-description": "Principais fundamentos para desenvolver usando Ethereum",
+ "nav-docs-foundation-label": "Tópicos fundamentais",
+ "nav-docs-overview-description": "Seu repositório de documentos para o desenvolvedor",
+ "nav-docs-stack-description": "Entenda todos os detalhes da pilha do Ethereum",
+ "nav-docs-stack-label": "Pilha de Ethereum",
+ "nav-eip-description": "Padrões que especificam novos recursos ou processos",
+ "nav-eip-label": "EIPs - Propostas de melhorias do Ethereum",
+ "nav-emerging-description": "Conheça outros casos de uso mais recentes do Ethereum",
+ "nav-emerging-label": "Casos de uso emergentes",
+ "nav-enterprise-description": "Aplicações de negócios para o Ethereum",
+ "nav-ethereum-org-description": "Este website é dedicado à comunidade: participe e contribua",
+ "nav-ethereum-wallets-description": "Um app para interagir com sua conta Ethereum",
+ "nav-events-description": "Descentralização e liberdade para participar",
+ "nav-events-irl-description": "Há eventos importantes, presenciais e online, sobre o Ethereum todos os meses",
+ "nav-events-label": "Comunidades e eventos",
+ "nav-events-online-description": "Milhares de entusiastas do Ethereum nestas comunidades online",
+ "nav-find-wallet-description": "As carteiras permitem que você use criptomoedas",
+ "nav-find-wallet-label": "Escolha sua carteira",
+ "nav-gas-fees-description": "Como as taxas de transação de ETH são calculadas",
+ "nav-gas-fees-label": "Taxas de gás",
+ "nav-get-eth-description": "Você precisa de ethers (ETH) para usar aplicações Ethereum",
+ "nav-get-started-description": "Sua porta de entrada para usar Ethereum",
+ "nav-governance-description": "O processo o upgrade do protocolo Ethereum",
+ "nav-governance-label": "Governança",
+ "nav-grants-description": "Uma lista selecionada por nossa comunidade sobre projetos que oferecem programas de financiamento",
+ "nav-guide-create-account-description": "Com uma carteira digital, qualquer pessoa pode criar uma conta Ethereum de forma gratuita e a qualquer momento",
+ "nav-guide-create-account-label": "Como criar uma conta Ethereum",
+ "nav-guide-revoke-access-description": "Proteja-se ao interagir com contratos inteligentes e aplicações no ecossistema Ethereum",
+ "nav-guide-revoke-access-label": "Como revogar o acesso a contratos inteligentes",
+ "nav-guide-use-wallet-description": "Aprenda como operar todas as funções básicas de uma carteira",
+ "nav-guide-use-wallet-label": "Como usar uma carteira",
+ "nav-guides-description": "Guias detalhados e práticos para ajudá-lo a começar",
+ "nav-guides-label": "Guias explicativos",
+ "nav-history-description": "Uma linha do tempo de todos os forks e atualizações mais importantes",
+ "nav-history-label": "História técnica do Ethereum",
+ "nav-layer-2-description": "Transações mais rápidas e econômicas para Ethereum",
+ "nav-learn-by-coding-description": "Ferramentas que o ajudam a usar Ethereum",
+ "nav-local-env-description": "Escolha e configure sua pilha de desenvolvimento Ethereum",
+ "nav-mainnet-description": "É possível criar aplicações blockchain empresariais na rede principal pública do Ethereum",
+ "nav-nft-description": "Uma forma de representar qualquer coisa única como um ativo baseado no Ethereum",
+ "nav-open-research-description": "Um dos pontos fortes do Ethereum é sua comunidade ativa de pesquisa",
+ "nav-open-research-label": "Pesquisa aberta",
+ "nav-overview-description": "Tudo sobre o Ethereum: informações",
+ "nav-overview-label": "Visão geral",
+ "nav-participate-overview-description": "Descrição geral de como participar",
"nav-primary": "Principal",
- "nft-page": "Tokens não fungíveis (NFTs)",
+ "nav-private-description": "Recursos de desenvolvedor Ethereum para empresas privadas",
+ "nav-quizzes-description": "Comprove seus conhecimentos sobre Ethereum e criptomoedas",
+ "nav-quizzes-label": "Teste seus conhecimentos",
+ "nav-refi-description": "Um sistema econômico alternativo criado com vase em princípios regenerativos",
+ "nav-research-description": "Processos usados para melhorar o Ethereum",
+ "nav-research-label": "Pesquisa e desenvolvimento",
+ "nav-roadmap-description": "O caminho para mais escalabilidade, segurança e sustentabilidade no Ethereum",
+ "nav-roadmap-future-description": "Fortalecimento do Ethereum como uma rede robusta e descentralizada",
+ "nav-roadmap-future-label": "À prova de futuro",
+ "nav-roadmap-label": "Planejamento",
+ "nav-roadmap-scaling-description": "Atualizações de rede para reduzir ainda mais os custos e aumentar a rapidez das transações",
+ "nav-roadmap-scaling-label": "Transações mais baratas",
+ "nav-roadmap-security-description": "Como garantir a resiliência do Ethereum face a todos os tipos de ataques no futuro",
+ "nav-roadmap-security-label": "Segurança reforçada",
+ "nav-roadmap-ux-description": "O uso do Ethereum precisa ser mais simples",
+ "nav-roadmap-ux-label": "Melhor experiência do usuário",
+ "nav-run-a-node-description": "Torne-se totalmente soberano enquanto ajuda a proteger a rede",
+ "nav-security-description": "Aprenda as práticas recomendadas ao usar criptomoedas",
+ "nav-smart-contracts-description": "Os elementos básicos do ecossistema Ethereum",
+ "nav-stablecoins-description": "Stablecoins são tokens Ethereum criadas para que se mantenham em um valor estável",
+ "nav-stake-description": "Ganhe recompensas para proteger o Ethereum",
+ "nav-stake-label": "Participe",
+ "nav-staking-home-description": "Uma descrição geral das diferentes opções de participação",
+ "nav-staking-home-label": "Staking de casa",
+ "nav-staking-pool-description": "Participe com outros e ganhe recompensas com qualquer quantidade de ETH",
+ "nav-staking-pool-label": "Staking em pool (combinado)",
+ "nav-staking-saas-description": "Operadores de nó terceirizados lidam com a operação de seu cliente validador",
+ "nav-staking-saas-label": "Participação com um serviço",
+ "nav-staking-solo-description": "Execute o hardware local e adicione pessoalmente à segurança e descentralização da rede Ethereum",
+ "nav-staking-solo-label": "Participação individual",
+ "nav-start-building-description": "Informações úteis para principiantes",
+ "nav-translation-program-description": "Um esforço colaborativo para traduzir o site ethereum.org para todos os idiomas",
+ "nav-tutorials-description": "Lista selecionada de tutoriais da comunidade",
+ "nav-use-cases-description": "Descubra como usar o Ethereum de diferentes formas",
+ "nav-use-cases-label": "Casos de uso",
+ "nav-what-is-ether-description": "A moeda dos aplicativos Ethereum",
+ "nav-what-is-ethereum-description": "Entenda o que torna o Ethereum especial",
+ "nav-what-is-web3-label": "O que é Web3?",
+ "nav-what-is-web3-description": "Uma alternativa aos monopólios centralizados que ditam as regras",
+ "nav-whitepaper-description": "A proposta original do Ethereum, escrita por Vitalik Buterin em 2014",
+ "nav-zkp-description": "Uma forma de provar a validade de uma afirmação sem a revelar",
+ "nft-page": "NFTs - Tokens não fungíveis",
"nfts": "NFTs (Tokens Não Fungíveis)",
"no": "Não",
"on-this-page": "Nesta página",
@@ -154,6 +263,8 @@
"page-developers-aria-label": "Menu dos Desenvolvedores",
"page-index-meta-title": "Início",
"page-last-updated": "Última atualização da página",
+ "participate": "Participar",
+ "participate-menu": "Menu Participe",
"pbs": "Separação de Proponente-Construtor",
"pools": "Staking em pool (combinado)",
"privacy-policy": "Política de privacidade",
@@ -164,13 +275,15 @@
"refresh": "Atualize a página.",
"return-home": "Voltar ao início",
"roadmap": "Planejamento Ethereum",
+ "research": "Pesquisa",
+ "research-menu": "Menu Pesquisa",
"resources": "Recursos de tradução",
- "regenerative-finance": "Finanças regenerativas (ReFi)",
+ "regenerative-finance": "ReFi - Finanças regenerativas",
"run-a-node": "Executar um nó",
- "rollup-component-website": "Site",
+ "rollup-component-website": "Website",
"rollup-component-developer-docs": "Documentação para o desenvolvedor",
"rollup-component-technology-and-risk-summary": "Resumo da tecnologia e riscos",
- "scaling": "Escalabilidade",
+ "scaling": "Dimensionamento",
"saas": "Participação como serviço",
"search": "Pesquisar",
"search-ethereum-org": "Buscar no ethereum.org",
@@ -211,9 +324,11 @@
"try-using-search": "Tente usar a pesquisa para encontrar o que está procurando ou",
"tutorials": "Tutoriais",
"up": "Acima",
+ "use": "Uso",
"use-ethereum": "Usar Ethereum",
"use-ethereum-menu": "Menu Usar Ethereum",
- "user-experience": "Experiência do Usuário",
+ "use-menu": "Menu Uso",
+ "user-experience": "Experiência do usuário",
"verkle-trees": "Árvores de Verkle",
"wallets": "Carteiras",
"we-couldnt-find-that-page": "Não foi possível encontrar essa página",
@@ -221,7 +336,7 @@
"web3-title": "Web3",
"website-last-updated": "Última atualização do site",
"what-is-ether": "O que é ether (ETH)?",
- "what-is-ethereum": "O que é Ethereum?",
+ "what-is-ethereum": "O que é o Ethereum?",
"withdrawals": "Saque de staking",
"yes": "Sim",
"zero-knowledge-proofs": "Prova de conhecimento zero"
diff --git a/src/intl/pt-br/page-wallets-find-wallet.json b/src/intl/pt-br/page-wallets-find-wallet.json
index de451aecbfa..49680d8f49d 100644
--- a/src/intl/pt-br/page-wallets-find-wallet.json
+++ b/src/intl/pt-br/page-wallets-find-wallet.json
@@ -7,7 +7,6 @@
"page-find-wallet-meta-title": "Encontre uma carteira Ethereum",
"page-find-wallet-title": "Encontre uma carteira",
"page-find-wallet-try-removing": "Tente remover um ou dois recursos",
- "page-find-wallet-choose-to-compare": "Selecione para comparar",
"page-stake-eth": "Participe com ETH",
"page-find-wallet-open-source": "Código aberto",
"page-find-wallet-open-source-desc": "Software de código aberto permite que qualquer pessoa audite a integridade e a segurança do aplicativo",
@@ -16,8 +15,6 @@
"page-find-wallet-non-custodial-desc": "Carteiras que não controlam suas chaves privadas",
"page-find-wallet-hardware-wallet-support": "Suporte para carteira de hardware",
"page-find-wallet-hardware-wallet-support-desc": "Carteiras que podem se conectar à carteira de hardware para uma melhor segurança",
- "page-find-wallet-walletconnect": "WalletConnect",
- "page-find-wallet-walletconnect-desc": "Carteiras que suportam o WalletConnect para se conectar a dapps",
"page-find-wallet-rpc-importing": "Importação de RPC",
"page-find-wallet-rpc-importing-desc": "Carteiras que suportam pontos de extremidade RPC personalizados para se conectar a nós ou redes diferentes",
"page-find-wallet-nft-support": "Suporte para NFTs",
@@ -36,8 +33,6 @@
"page-find-wallet-ens-support-desc": "Carteiras que suportam o Ethereum Name Service (ENS)",
"page-find-wallet-token-importing": "Importação de token",
"page-find-wallet-token-importing-desc": "Importar qualquer token ERC-20 para usar na carteira",
- "page-find-wallet-fee-optimization": "Otimização de taxa",
- "page-find-wallet-fee-optimization-desc": "Suporte a transações tipo 2 para taxas de gás otimizadas e taxas de reembolso para gás não utilizado",
"page-find-wallet-buy-crypto": "Comprar cripto",
"page-find-wallet-buy-crypto-desc": "Compre cripto com fiat diretamente na carteira \n *Observação: comprar cripto pode ser específico da região",
"page-find-wallet-sell-for-fiat": "Venda através de fiduciários",
@@ -46,7 +41,6 @@
"page-find-wallet-multisig-desc": "Carteiras que requerem múltiplas assinaturas para autorizar uma transação",
"page-find-wallet-social-recovery": "Recuperação social",
"page-find-wallet-social-recovery-desc": "Carteiras que permitem que os guardiões alterem a chave de assinatura para carteiras de contrato inteligentes",
- "page-find-wallet-token-support": "Suporte para token",
"page-find-wallet-features": "Recursos",
"page-find-wallet-security": "Segurança",
"page-find-wallet-smart-contract": "Contrato inteligente",
@@ -63,7 +57,6 @@
"page-find-wallet-chromium": "Chromium",
"page-find-wallet-firefox": "Firefox",
"page-find-wallet-hardware": "Hardware",
- "page-find-wallet-hardware-desc": "Carteiras de hardware",
"page-find-wallet-new-to-crypto-title": "Novo em cripto",
"page-find-wallet-new-to-crypto-desc": "Você é o primeiro usuário a procurar sua primeira carteira",
"page-find-wallet-nfts-title": "NFTs (Tokens Não Fungíveis)",
@@ -74,22 +67,14 @@
"page-find-wallet-finance-desc": "Você é alguém que usa DeFi e quer uma carteira que lhe permita conectar-se a aplicativos DeFi",
"page-find-wallet-developer-title": "Desenvolvedor",
"page-find-wallet-developer-desc": "Você é desenvolvedor e precisa de uma carteira para ajudar a desenvolver e testar dapps",
- "page-find-wallet-persona-desc": "Escolha o perfil que corresponde ao seu tipo de usuário e filtre a lista de carteiras",
"page-find-wallet-filters": "Filtros",
"page-find-wallet-active": "ativo",
- "page-find-wallet-profile-filters": "Filtros de perfil",
- "page-find-wallet-feature-filters": "Filtros de recursos",
"page-find-wallet-footnote-1": "As carteiras listadas nesta página não são endossos oficiais e são fornecidas apenas a título informativo.",
"page-find-wallet-footnote-2": "As descrições delas foram fornecidas pelos próprios projetos da carteira.",
"page-find-wallet-footnote-3": "Adicionamos produtos a esta página com base nos critérios em nossa política de listagem. Se você quiser que adicionemos uma carteira, abra um tíquete no GitHub.",
"page-find-wallet-mobile": "Celular",
- "page-find-wallet-mobile-desc": "Carteiras com aplicativos móveis",
"page-find-wallet-desktop": "Área de trabalho",
- "page-find-wallet-desktop-desc": "Carteiras com aplicativos de desktop",
"page-find-wallet-browser": "Navegador",
- "page-find-wallet-browser-desc": "Carteiras com extensões de navegador",
"page-find-wallet-device": "Dispositivo",
- "page-find-choose-to-compare": "Selecione para comparar",
- "page-find-wallet-choose-features": "Escolher recursos",
"page-find-wallet-reset-filters": "Redefinir filtros"
}
diff --git a/src/intl/pt/common.json b/src/intl/pt/common.json
index d31426c166c..57b6bcb6e36 100644
--- a/src/intl/pt/common.json
+++ b/src/intl/pt/common.json
@@ -1,17 +1,29 @@
{
- "account-abstraction": "Abstração da conta",
"about-ethereum-org": "Acerca do ethereum.org",
"about-us": "Quem somos",
+ "adding-desci-projects": "Adicionar projetos Desci",
+ "adding-developer-tools": "Adicionar ferramentas de programador",
+ "adding-exchanges": "Adicionar câmbios",
+ "adding-glossary-terms": "Adicionar termos do glossário",
+ "adding-staking-products": "Adicionar produtos de implantação",
+ "adding-wallets": "Adicionar carteiras",
+ "account-abstraction": "Abstração da conta",
+ "acknowledgements": "Reconhecimentos",
"aria-toggle-search-button": "Alternar botão de pesquisa",
"aria-toggle-menu-button": "Botão menu alternativo",
"beacon-chain": "Cadeia sinalizadora",
"bridges": "Pontes de Blockchain",
+ "bug-bounty": "Recompensa por bugs",
+ "build": "Construir",
+ "build-menu": "Menu de construção",
"clear": "Limpar",
"close": "Fechar",
"community": "Comunidade",
"community-hub": "Centro de Comunidade",
"community-menu": "Menu de comunidade",
"contact": "Contacto",
+ "content-buckets": "Buckets de conteúdo",
+ "content-resources": "Recursos de conteúdo",
"content-standardization": "Normalização de conteúdos",
"contributing": "Contribuir",
"contributors": "Contribuidores",
@@ -20,14 +32,16 @@
"copied": "Copiado",
"copy": "Copiar",
"danksharding": "Danksharding",
- "dao-page": "Organizações Autónomas Descentralizadas (DAO)",
+ "dao-page": "DAO - Organizações Autónomas Descentralizadas",
"dark-mode": "Escuro",
"data-provided-by": "Origem dos dados:",
- "decentralized-applications-dapps": "Aplicações descentralizadas (dapps)",
+ "decentralized-applications-dapps": "Dapps - Aplicações descentralizadas",
"decentralized-identity": "Identidade descentralizada",
"decentralized-social-networks": "Redes sociais descentralizadas",
- "decentralized-science": "Ciência Descentralizada (DeSci)",
- "defi-page": "Finanças descentralizadas (DeFi)",
+ "decentralized-science": "DeSci - Ciência Descentralizada",
+ "description": "Descrição do item de navegação",
+ "defi-page": "DeFi - Finanças descentralizadas",
+ "design-principles": "Princípios do design",
"devcon": "Devcon",
"developers": "Programadores",
"developers-home": "Menu para Programadores",
@@ -63,7 +77,7 @@
"ethereum-bug-bounty": "Programa de recompensas de bug de Ethereum",
"consensus-when-shipping": "Quando é que é enviado?",
"ethereum-upgrades": "Atualizações do Ethereum",
- "ethereum-brand-assets": "Ativos da Marca Ethereum",
+ "ethereum-brand-assets": "Recursos de marca Ethereum",
"ethereum-online": "Comunidades online",
"ethereum-events": "Eventos Ethereum",
"ethereum-foundation": "Fundação Ethereum",
@@ -86,19 +100,19 @@
"feedback-widget-thank-you-subtitle-ext": "Se precisar de ajuda, pode entrar em contacto com a comunidade no nosso Discord.",
"feedback-widget-thank-you-timing": "2–3 min",
"feedback-widget-thank-you-cta": "Abrir um inquérito rápido",
- "find-wallet": "Procurar carteira",
+ "find-wallet": "Encontrar carteira",
"future-proofing": "À prova de futuro",
- "get-eth": "Obtenha o ETH",
+ "get-eth": "Obter ETH",
"get-involved": "Envolva-se",
- "get-started": "Começar",
+ "get-started": "Introdução",
"grants": "Permissões",
"grant-programs": "Programas de concessão do ecossistema",
"guides": "Guias",
- "guides-hub": "Central de guias",
+ "guides-hub": "Tutoriais",
"history-of-ethereum": "A história do Ethereum",
"home": "Início",
"how-ethereum-works": "Como funciona o Ethereum",
- "how-to-register-an-ethereum-account": "Como \"registar\" uma conta Ethereum",
+ "how-to-create-an-ethereum-account": "Como \"registar\" uma conta Ethereum",
"how-to-revoke-token-access": "Como revogar o acesso de contratos inteligentes aos seus fundos digitais",
"how-to-swap-tokens": "Como trocar tokens",
"how-to-use-a-bridge": "Como conectar tokens à camada 2",
@@ -115,7 +129,7 @@
"last-edit": "Última edição",
"layer-2": "Camada 2",
"learn": "Aprender",
- "learn-by-coding": "Aprenda usando programação",
+ "learn-by-coding": "Aprenda programando",
"learn-hub": "Centro de Aprendizagem",
"learn-menu": "Menu aprender",
"learn-more": "Saber mais",
@@ -128,11 +142,109 @@
"loading-error-try-again-later": "Não foi possível carregar os dados. Tente novamente mais tarde.",
"logo": "logótipo",
"mainnet-ethereum": "Mainnet Ethereum",
+ "merge": "Fusão",
"more": "Mais",
- "nav-developers": "Programadores",
+ "nav-about-description": "Um projeto público e open-source para a comunidade Ethereum",
+ "nav-advanced-description": "Aprenda os tópicos mais complexos",
+ "nav-advanced-label": "Avançado",
+ "nav-basics-description": "Compreenda os princípios básicos do Ethereum",
+ "nav-basics-label": "Informações básicas",
+ "nav-bridges-description": "A Web3 evoluiu para um ecossistema de blockchains L1 primárias e soluções de dimensionamento L2",
+ "nav-builders-home-description": "Um manual para construtores Ethereum—de construtores para construtores",
+ "nav-builders-home-label": "Página inicial do construtor",
+ "nav-contribute-description": "Se quiser ajudar, isto irá guiá-lo",
+ "nav-contribute-label": "Contribuir para ethereum.org",
+ "nav-dao-description": "Comunidades pertencentes aos membros, sem autoridade centralizada",
+ "nav-dapps-description": "Explore um rico ecossistema de aplicações que utilizam Ethereum",
+ "nav-defi-description": "Uma alternativa global e aberta ao mercado financeiro tradicional",
+ "nav-desci-description": "Uma alternativa global e aberta ao atual sistema científico",
+ "nav-desoc-description": "Plataformas baseadas em blockchain para interação social e criação de conteúdos",
"nav-developers-docs": "Documentos de programadores",
+ "nav-developers": "Programadores",
+ "nav-did-description": "Emita e possua os seus identificadores descentralizados únicos",
+ "nav-docs-description": "Documentos para o ajudar a compreender e a construir com o Ethereum",
+ "nav-docs-design-description": "Descrição de desafios únicos de design web3, melhores práticas e conhecimentos de pesquisas de utilizadores",
+ "nav-docs-design-label": "Princípios básicos de design UX/UI",
+ "nav-docs-foundation-description": "Fundamentos básicos para desenvolver em Ethereum",
+ "nav-docs-foundation-label": "Tópicos fundamentais",
+ "nav-docs-overview-description": "O seu lar para documentos de programador",
+ "nav-docs-stack-description": "Compreenda todos os detalhes da pilha de Ethereum",
+ "nav-docs-stack-label": "Pilha de Ethereum",
+ "nav-eip-description": "Padrões que especificam novos recursos ou processos",
+ "nav-eip-label": "EIPs - Propostas de Melhoramentos do Ethereum",
+ "nav-emerging-description": "Conheça outros casos de utilização mais recentes para o Ethereum",
+ "nav-enterprise-description": "Aplicações comerciais para o Ethereum",
+ "nav-ethereum-org-description": "Este website é orientado para a comunidade - junte-se a nós e contribua também",
+ "nav-ethereum-wallets-description": "Uma aplicação para interagir com a sua conta Ethereum",
+ "nav-events-description": "Descentralização e liberdade de participação para todos",
+ "nav-events-irl-description": "Todos os meses há grandes eventos Ethereum presenciais e online",
+ "nav-events-label": "Comunidades e eventos",
+ "nav-events-online-description": "Centenas de milhares de entusiastas do Ethereum participam nestas comunidades online",
+ "nav-find-wallet-description": "As carteiras permitem-lhe utilizar criptomoedas",
+ "nav-find-wallet-label": "Escolha a sua carteira",
+ "nav-gas-fees-description": "Como são calculadas as taxas de transação de ETH",
+ "nav-gas-fees-label": "Taxas de gas",
+ "nav-get-eth-description": "Precisa de ether (ETH) para utilizar as aplicações Ethereum",
+ "nav-get-started-description": "Os seus primeiros passos para utilizar o Ethereum",
+ "nav-governance-description": "O processo envolvido na atualização do protocolo Ethereum",
+ "nav-governance-label": "Governação",
+ "nav-grants-description": "Uma lista selecionada pela nossa comunidade sobre projetos que fornecem programas de financiamento de subsídios",
+ "nav-guide-create-account-description": "Qualquer pessoa pode criar uma conta Ethereum em qualquer altura, gratuitamente com uma aplicação de carteira",
+ "nav-guide-revoke-access-description": "Mantenha-se em segurança ao interagir com contratos inteligentes e aplicações no ecossistema Ethereum",
+ "nav-guide-revoke-access-label": "Como revogar o acesso a um contrato inteligente",
+ "nav-guide-use-wallet-description": "Aprenda a operar todas as funções básicas de uma carteira",
+ "nav-guide-use-wallet-label": "Como usar uma carteira",
+ "nav-guides-description": "Guias práticos passo-a-passo para o ajudar a começar",
+ "nav-guides-label": "Tutoriais",
+ "nav-history-description": "Uma cronologia de todos os principais forks e atualizações",
+ "nav-history-label": "História técnica do Ethereum",
+ "nav-layer-2-description": "Transações mais baratas e mais rápidas para o Ethereum",
+ "nav-learn-by-coding-description": "Ferramentas que o ajudam a experimentar com Ethereum",
+ "nav-local-env-description": "Escolher e configurar a sua pilha de desenvolvimento Ethereum",
+ "nav-mainnet-description": "As aplicações de blockchain empresariais podem ser construídas na rede pública Ethereum principal",
+ "nav-nft-description": "Uma forma de representar algo único como um ativo baseado na Ethereum",
+ "nav-open-research-description": "Um dos principais pontos fortes do Ethereum é a sua comunidade de investigação ativa",
+ "nav-open-research-label": "Pesquisa aberta",
+ "nav-overview-description": "Tudo sobre a formação Ethereum",
+ "nav-participate-overview-description": "Visão geral sobre como participar",
"nav-primary": "Principal",
- "nft-page": "Tokens não fungíveis (NFTs)",
+ "nav-quizzes-description": "Descubra até que ponto compreende o Ethereum e as criptomoedas",
+ "nav-quizzes-label": "Teste os seus conhecimentos",
+ "nav-refi-description": "Um sistema económico alternativo baseado em princípios regenerativos",
+ "nav-research-description": "Processos utilizados para melhorar o Ethereum",
+ "nav-research-label": "Investigação e desenvolvimento",
+ "nav-roadmap-description": "O caminho para uma maior escalabilidade, segurança e sustentabilidade do Ethereum",
+ "nav-roadmap-future-description": "Solidificar o Ethereum como uma rede robusta e descentralizada",
+ "nav-roadmap-future-label": "À prova de futuro",
+ "nav-roadmap-label": "Roteiro",
+ "nav-roadmap-scaling-description": "Atualizações de rede para reduzir ainda mais os custos e a velocidade das transações",
+ "nav-roadmap-security-description": "Garantir a resiliência do Ethereum a todos os tipos de ataques no futuro",
+ "nav-roadmap-security-label": "Segurança melhorada",
+ "nav-roadmap-ux-description": "A utilização do Ethereum tem de ser simplificada",
+ "nav-run-a-node-description": "Torne-se totalmente independente enquanto ajuda a proteger a rede",
+ "nav-security-description": "Aprenda as melhores práticas ao utilizar criptomoedas",
+ "nav-smart-contracts-description": "Os blocos de construção fundamentais do ecossistema Ethereum",
+ "nav-stablecoins-description": "Stablecoins são tokens Ethereum concebidos para se manterem num valor fixo",
+ "nav-stake-description": "Ganhar recompensas por proteger o Ethereum",
+ "nav-stake-label": "Investir",
+ "nav-staking-home-description": "Uma visão geral das diferentes opções de implantação",
+ "nav-staking-pool-description": "Participe e ganhe recompensas com qualquer quantidade de ETH unindo-se a outros",
+ "nav-staking-pool-label": "Participação agrupada",
+ "nav-staking-saas-description": "Os operadores de nós de terceiros tratam do funcionamento do seu cliente validador",
+ "nav-staking-saas-label": "Staking com um serviço",
+ "nav-staking-solo-description": "Opere hardware doméstico e contribua pessoalmente para a segurança e descentralização da rede Ethereum",
+ "nav-staking-solo-label": "Participação individual",
+ "nav-start-building-description": "Informações úteis para os principiantes",
+ "nav-translation-program-description": "Um esforço de colaboração para traduzir o ethereum.org para todas as línguas",
+ "nav-tutorials-description": "Lista selecionada de tutoriais da comunidade",
+ "nav-use-cases-description": "Descubra ideias distintas para a utilização do Ethereum",
+ "nav-what-is-ether-description": "A moeda das aplicações na blockchain Ethereum",
+ "nav-what-is-ethereum-description": "Compreenda o que torna o Ethereum especial",
+ "nav-what-is-web3-label": "O que é Web3?",
+ "nav-what-is-web3-description": "Uma alternativa aos monopólios centralizados que ditam as regras",
+ "nav-whitepaper-description": "O documento técnico original do Ethereum escrito por Vitalik Buterin em 2014",
+ "nav-zkp-description": "Uma forma de provar a validade de uma afirmação sem revelar a própria afirmação",
+ "nft-page": "NFTs - Tokens não fungíveis",
"nfts": "NFT",
"no": "Não",
"on-this-page": "Nesta página",
@@ -140,6 +252,8 @@
"page-developers-aria-label": "Menu para Programadores",
"page-index-meta-title": "Início",
"page-last-updated": "Última atualização da página",
+ "participate": "Participar",
+ "participate-menu": "Menu de participação",
"pbs": "Separação proponente-construtor",
"pools": "Participação agrupada",
"privacy-policy": "Política de privacidade",
@@ -150,10 +264,12 @@
"refresh": "Atualize a página.",
"return-home": "voltar à página principal",
"roadmap": "Roteiro Ethereum",
+ "research": "Pesquisa",
+ "research-menu": "Menu de pesquisa",
"resources": "Recursos de tradução",
- "regenerative-finance": "Finanças regenerativas (ReFi)",
+ "regenerative-finance": "ReFi - Finanças regenerativas",
"run-a-node": "Executar um nó",
- "rollup-component-website": "Website",
+ "rollup-component-website": "Sítio web",
"rollup-component-developer-docs": "Documentos de programadores",
"rollup-component-technology-and-risk-summary": "Tecnologia e resumo de riscos",
"scaling": "Dimensionamento",
@@ -164,6 +280,7 @@
"search-box-blank-state-text": "Procure!",
"search-eth-address": "Isto parece um endereço Ethereum. Nós não fornecemos dados específicos para endereços. Tente procurá-lo num explorador de blocos como",
"search-no-results": "Nenhum resultado para a sua pesquisa",
+ "security": "Segurança",
"single-slot-finality": "Finalidade de slot único",
"statelessness": "Apatridia",
"see-contributors": "Ver colaboradores",
@@ -179,8 +296,8 @@
"stake-eth": "Bloquear ETH",
"staking": "Implantação",
"start-here": "Comece aqui",
- "style-guide": "Style guide",
"solo": "Participação individual",
+ "support": "Apoio",
"terms-of-use": "Termos de Utilização",
"translation-banner-body-new": "Está a ver esta página em inglês porque ainda não a traduzimos. Ajude-nos a traduzir este conteúdo.",
"translation-banner-body-update": "Existe uma nova versão desta página, mas por enquanto só existe em inglês. Ajude-nos a traduzir a versão mais recente.",
@@ -191,19 +308,20 @@
"translation-banner-no-bugs-title": "Nenhum bug aqui!",
"translation-banner-no-bugs-content": "Esta página não está a ser traduzida. Deixamos intencionalmente esta página em Inglês por enquanto.",
"translation-banner-no-bugs-dont-show-again": "Não mostrar novamente",
+ "translation-program": "Programa de tradução",
"try-using-search": "Tente utilizar a pesquisa para encontrar o que está à procura ou",
"tutorials": "Tutoriais",
"up": "Para cima",
+ "use": "Utilizar",
"use-ethereum": "Usar o Ethereum",
"use-ethereum-menu": "Usar o menu do Ethereum",
- "user-experience": "User experience",
+ "use-menu": "Menu de uso",
"verkle-trees": "Árvores Verkle",
"wallets": "Carteiras",
"we-couldnt-find-that-page": "Não conseguimos encontrar esta página",
"web3": "O que é Web3?",
- "web3-title": "Web3",
"website-last-updated": "Última atualização do site",
- "what-is-ether": "O que é o ether (ETH)?",
+ "what-is-ether": "O que é o Ether (ETH)?",
"what-is-ethereum": "O que é o Ethereum?",
"withdrawals": "Levantamentos de staking",
"yes": "Sim",
diff --git a/src/intl/pt/page-languages.json b/src/intl/pt/page-languages.json
index cdf796d7fcc..500045be976 100644
--- a/src/intl/pt/page-languages.json
+++ b/src/intl/pt/page-languages.json
@@ -17,10 +17,13 @@
"page-languages-translated": "traduzido",
"page-languages-words": "palavras",
"page-languages-recruit-community": "Ajude-nos a traduzir o ethereum.org.",
+ "langauge-am": "Amárico",
"language-ar": "Árabe",
"language-az": "Azerbaijanês",
+ "langauge-be": "Bielorusso",
"language-bg": "Búlgaro",
"language-bn": "Bengali",
+ "language-bs": "Bósnio",
"language-ca": "Catalão",
"language-cs": "Tcheco",
"language-da": "Dinamarquês",
@@ -37,6 +40,7 @@
"language-hi": "Hindi",
"language-hr": "Croata",
"language-hu": "Húngaro",
+ "language-hy-am": "Arménio",
"language-id": "Indonésio",
"language-ig": "Igbo",
"language-it": "Italiano",
@@ -44,12 +48,14 @@
"language-ka": "Georgiano",
"language-kk": "Cazaque",
"language-km": "Khmer",
+ "language-kn": "Canarês",
"language-ko": "Coreano",
"language-lt": "Lituano",
"language-ml": "Malaio",
"language-mr": "Marati",
"language-ms": "Malaio",
"language-nb": "Norueguês",
+ "language-ne-np": "Nepalês",
"language-nl": "Neerlandês",
"language-pcm": "Pidgin Nigeriano",
"language-fil": "Filipino",
@@ -65,6 +71,7 @@
"language-sw": "Suaíli",
"language-ta": "Tamil",
"language-th": "Tailandês",
+ "language-tk": "Turcomano",
"language-tr": "Turco",
"language-uk": "Ucraniano",
"language-ur": "Urdu",
diff --git a/src/intl/pt/page-wallets-find-wallet.json b/src/intl/pt/page-wallets-find-wallet.json
index 210418c12b1..a358755ddd8 100644
--- a/src/intl/pt/page-wallets-find-wallet.json
+++ b/src/intl/pt/page-wallets-find-wallet.json
@@ -7,7 +7,6 @@
"page-find-wallet-meta-title": "Encontrar uma carteira Ethereum",
"page-find-wallet-title": "Encontre uma carteira",
"page-find-wallet-try-removing": "Tente remover uma ou duas funcionalidades",
- "page-find-wallet-choose-to-compare": "Escolha para comparar",
"page-stake-eth": "Bloquear ETH",
"page-find-wallet-open-source": "Open source",
"page-find-wallet-open-source-desc": "O software de código aberto permite a qualquer pessoa auditar a integridade e a segurança da aplicação",
@@ -16,8 +15,6 @@
"page-find-wallet-non-custodial-desc": "Carteiras que não controlam as suas chaves privadas",
"page-find-wallet-hardware-wallet-support": "Suporte para carteira de hardware",
"page-find-wallet-hardware-wallet-support-desc": "Carteiras que podem ligar-se a uma carteira de hardware para maior segurança",
- "page-find-wallet-walletconnect": "WalletConnect",
- "page-find-wallet-walletconnect-desc": "Carteiras que suportam o WalletConnect para ligação a dapps",
"page-find-wallet-rpc-importing": "Importação de RPC",
"page-find-wallet-rpc-importing-desc": "Carteiras que suportam endpoints RPC personalizados para ligação a diferentes nós ou redes",
"page-find-wallet-nft-support": "Apoio NFT",
@@ -36,8 +33,6 @@
"page-find-wallet-ens-support-desc": "Carteiras que suportam o Serviço de Nomes Ethereum (ENS)",
"page-find-wallet-token-importing": "Importação de tokens",
"page-find-wallet-token-importing-desc": "Importar qualquer token ERC-20 para utilizar na carteira",
- "page-find-wallet-fee-optimization": "Otimização das taxas",
- "page-find-wallet-fee-optimization-desc": "Suporte a transações do tipo 2 para taxas de gás otimizadas e reembolsos de taxas para gás não utilizado",
"page-find-wallet-buy-crypto": "Comprar moeda digital",
"page-find-wallet-buy-crypto-desc": "Comprar moeda digital com moeda fiduciária diretamente na carteira \n *Nota: a compra de moeda digital pode ser específica da região",
"page-find-wallet-sell-for-fiat": "Vender por moeda fiduciária",
@@ -46,7 +41,6 @@
"page-find-wallet-multisig-desc": "Carteiras que requerem várias assinaturas para autorizar uma transação",
"page-find-wallet-social-recovery": "Recuperação social",
"page-find-wallet-social-recovery-desc": "Carteiras que permitem aos tutores alterar a chave de assinatura de carteiras de contratos inteligentes",
- "page-find-wallet-token-support": "Suporte de token",
"page-find-wallet-features": "Funcionalidades",
"page-find-wallet-security": "Segurança",
"page-find-wallet-smart-contract": "Smart contract",
@@ -63,7 +57,6 @@
"page-find-wallet-chromium": "Chromium",
"page-find-wallet-firefox": "Firefox",
"page-find-wallet-hardware": "Hardware",
- "page-find-wallet-hardware-desc": "Carteiras de hardware",
"page-find-wallet-new-to-crypto-title": "Novidade no mundo das moedas digitais",
"page-find-wallet-new-to-crypto-desc": "É um utilizador principiante à procura da sua primeira carteira",
"page-find-wallet-nfts-title": "NFT",
@@ -74,21 +67,13 @@
"page-find-wallet-finance-desc": "É uma pessoa que utiliza a DeFi e pretende uma carteira que lhe permita ligar-se a aplicações DeFi",
"page-find-wallet-developer-title": "Programador",
"page-find-wallet-developer-desc": "É um programador e precisa de uma carteira para ajudar a desenvolver e testar dapps",
- "page-find-wallet-persona-desc": "Escolha o perfil que corresponde ao seu tipo de utilizador e filtre a lista de carteiras",
"page-find-wallet-filters": "Filtros",
"page-find-wallet-active": "ativo",
- "page-find-wallet-profile-filters": "Filtros de perfil",
- "page-find-wallet-feature-filters": "Filtros de características",
"page-find-wallet-footnote-1": "As carteiras listadas nesta página não são recomendações oficiais e são fornecidas apenas para fins informativos.",
"page-find-wallet-footnote-2": "As suas descrições foram fornecidas pelos próprios projetos de carteiras.",
"page-find-wallet-footnote-3": "Adicionamos produtos a esta página com base nos critérios da nossa política de admissão. Se pretender que adicionemos uma carteira, levante uma questão no GitHub.",
"page-find-wallet-mobile": "Telemóvel",
- "page-find-wallet-mobile-desc": "Carteiras com aplicações móveis",
"page-find-wallet-desktop": "Computador",
- "page-find-wallet-desktop-desc": "Carteiras com aplicações para computador",
"page-find-wallet-browser": "Navegador",
- "page-find-wallet-browser-desc": "Carteiras com extensões de navegador",
- "page-find-wallet-device": "Dispositivo",
- "page-find-choose-to-compare": "Escolha para comparar",
- "page-find-wallet-choose-features": "Selecionar funcionalidades"
+ "page-find-wallet-device": "Dispositivo"
}
diff --git a/src/intl/ro/common.json b/src/intl/ro/common.json
index 47bf5795da8..b8fe5a14951 100644
--- a/src/intl/ro/common.json
+++ b/src/intl/ro/common.json
@@ -1,17 +1,29 @@
{
- "account-abstraction": "Abstractizarea contului",
"about-ethereum-org": "Despre ethereum.org",
"about-us": "Despre noi",
+ "adding-desci-projects": "Adăugarea proiectelor Desci",
+ "adding-developer-tools": "Adăugarea instrumentelor de dezvoltator",
+ "adding-exchanges": "Adăugarea schimburilor",
+ "adding-glossary-terms": "Adăugarea termenilor de glosar",
+ "adding-staking-products": "Adăugarea produselor de mizare",
+ "adding-wallets": "Adăugarea portofelelor",
+ "account-abstraction": "Abstractizarea contului",
+ "acknowledgements": "Mulțumiri",
"aria-toggle-search-button": "Activează butonul de căutare",
"aria-toggle-menu-button": "Activați butonul pentru meniu",
"beacon-chain": "Lanțul Beacon",
"bridges": "Punți Blockchain",
+ "bug-bounty": "Recompensă pentru depistarea disfuncționalităților",
+ "build": "Versiune",
+ "build-menu": "Meniu Versiune",
"clear": "Eliminare",
"close": "Închidere",
"community": "Comunitatea",
"community-hub": "Centrul comunitar",
"community-menu": "Meniul pentru comunitate",
"contact": "Contact",
+ "content-buckets": "Categorii de conținut",
+ "content-resources": "Resurse conținut",
"content-standardization": "Standardizarea conținutului",
"contributing": "Contribuire",
"contributors": "Cine și-a adus contribuția",
@@ -20,14 +32,17 @@
"copied": "Copiat",
"copy": "Copiați",
"danksharding": "Danksharding",
- "dao-page": "Organizațiile autonome descentralizate (DAO)",
+ "dao-page": "DAO - Organizațiile autonome descentralizate",
"dark-mode": "Fundal întunecat",
"data-provided-by": "Sursa datelor:",
- "decentralized-applications-dapps": "Aplicații descentralizate (dapp)",
+ "decentralized-applications-dapps": "Dapp - Aplicații descentralizate",
"decentralized-identity": "Identitate descentralizată",
"decentralized-social-networks": "Rețele sociale descentralizate",
- "decentralized-science": "Știința descentralizată (DeSci)",
- "defi-page": "Finanțele descentralizate (DeFi)",
+ "decentralized-science": "DeSci - Știința descentralizată",
+ "description": "Descriere articol nav",
+ "defi-page": "DeFi - Finanțele descentralizate",
+ "design": "Design",
+ "design-principles": "Principii de concepție",
"devcon": "Devcon",
"developers": "Dezvoltatori",
"developers-home": "Pagina de pornire pentru dezvoltatori",
@@ -51,7 +66,7 @@
"documentation": "Documentație",
"down": "Jos",
"ecosystem": "Ecosistemul",
- "edit-page": "Modificați pagina",
+ "edit-page": "Editare pagină",
"ef-blog": "Blogul Fundației Ethereum",
"eips": "Propuneri de îmbunătățire pentru Ethereum",
"energy-consumption": "Energia consumată de Ethereum",
@@ -63,7 +78,7 @@
"ethereum-bug-bounty": "Programul Ethereum de recompense pentru interceptarea disfuncționalităților",
"consensus-when-shipping": "Când va fi lansat?",
"ethereum-upgrades": "Actualizările Ethereum",
- "ethereum-brand-assets": "Materialele de branding Ethereum",
+ "ethereum-brand-assets": "Materiale de branding Ethereum",
"ethereum-online": "Comunitățile online",
"ethereum-events": "Evenimentele Ethereum",
"ethereum-foundation": "Fundația Ethereum",
@@ -83,7 +98,7 @@
"feedback-card-prompt-tutorial": "A fost util acest tutorial?",
"feedback-widget-thank-you-title": "Îți mulțumim pentru feedback!",
"feedback-widget-thank-you-subtitle": "Îmbunătățește și mai mult această pagină răspunzând la câteva întrebări.",
- "feedback-widget-thank-you-subtitle-ext": "Daca ai nevoie de ajutor, poți contacta comunitatea pe canalul nostru de Discord.",
+ "feedback-widget-thank-you-subtitle-ext": "Dacă ai nevoie de ajutor, poți contacta comunitatea de pe Discord.",
"feedback-widget-thank-you-timing": "2-3 minute",
"feedback-widget-thank-you-cta": "Deschide sondajul scurt",
"find-wallet": "Găsiți portofelul",
@@ -94,11 +109,10 @@
"grants": "Granturi",
"grant-programs": "Programele de granturi ale ecosistemului",
"guides": "Ghiduri",
- "guides-hub": "Centru de ghiduri",
+ "guides-hub": "Tutoriale",
"history-of-ethereum": "Istoricul Ethereum",
"home": "Pagina de pornire",
"how-ethereum-works": "Cum funcționează Ethereum",
- "how-to-register-an-ethereum-account": "Cum se „înregistrează” un cont Ethereum",
"how-to-revoke-token-access": "Cum se poate revoca accesul contractului inteligent la fondurile cripto",
"how-to-swap-tokens": "Cum se schimbă tokenuri",
"how-to-use-a-bridge": "Cum se face legătura între tokenuri și nivelul 2",
@@ -115,7 +129,7 @@
"last-edit": "Ultima modificare",
"layer-2": "Nivel 2",
"learn": "Învață",
- "learn-by-coding": "Învățați codificând",
+ "learn-by-coding": "Învațați scriind cod",
"learn-hub": "Centru de învățare",
"learn-menu": "Meniu de învățare",
"learn-more": "Află mai multe",
@@ -128,18 +142,117 @@
"loading-error-try-again-later": "Nu se pot încărca datele. Încearcă din nou mai târziu.",
"logo": "logo",
"mainnet-ethereum": "Rețeaua principală Ethereum",
- "more": "Aflați mai multe",
- "nav-developers": "Dezvoltatori",
+ "merge": "Fuziunea",
+ "more": "Mai mult",
+ "nav-about-description": "Un proiect public, open source pentru comunitatea Ethereum",
+ "nav-advanced-description": "Află mai multe despre subiecte mai complexe",
+ "nav-advanced-label": "Avansat",
+ "nav-basics-description": "Aprofundează noțiunile de bază ale Ethereum",
+ "nav-basics-label": "Noțiuni de bază",
+ "nav-bridges-description": "Web3 a evoluat într-un ecosistem de blockchainuri L1 principale și soluții de scalare L2",
+ "nav-builders-home-description": "Un manual pentru dezvoltatorii Ethereum, de la dezvoltatori, pentru dezvoltatori",
+ "nav-builders-home-label": "Pagina de pornire a dezvoltatorului",
+ "nav-contribute-description": "Aici vei găsi îndrumare dacă dorești să contribui",
+ "nav-contribute-label": "Contribuții la ethereum.org",
+ "nav-dao-description": "Comunități ale membrilor, fără autoritate centralizată",
+ "nav-dapps-description": "Explorează un ecosistem bogat de aplicații care folosesc Ethereum",
+ "nav-defi-description": "O alternativă globală, deschisă la piața financiară clasică",
+ "nav-desci-description": "O alternativă globală, deschisă la sistemul științific actual",
+ "nav-desoc-description": "Platforme bazate pe blockchain pentru interacțiune socială și creare de conținut",
"nav-developers-docs": "Documente dezvoltator",
+ "nav-developers": "Dezvoltatori",
+ "nav-did-description": "Creezi și deții proprii identificatori unici, descentralizați",
+ "nav-docs-description": "Documente care te ajută să înțelegeți și să construiești cu Ethereum",
+ "nav-docs-design-description": "Descrierea provocărilor de design unice web3, practicile de urmat și punctele de vedere în materie de cercetare ale utilizatorilor",
+ "nav-docs-design-label": "Elemente de bază de design UX/UI",
+ "nav-docs-foundation-description": "Elemente fundamentale pentru dezvoltare în Ethereum",
+ "nav-docs-foundation-label": "Subiecte fundamentale",
+ "nav-docs-overview-description": "Punctul tău de plecare pentru documentele dezvoltatorilor",
+ "nav-docs-stack-description": "Aprofundează toate detaliile stivei Ethereum",
+ "nav-docs-stack-label": "Stiva Ethereum",
+ "nav-eip-description": "Standarde care specifică funcții și procese noi",
+ "nav-eip-label": "EIP-uri - Propuneri de îmbunătățire pentru Ethereum",
+ "nav-emerging-description": "Află cazuri de utilizare noi pentru Ethereum",
+ "nav-enterprise-description": "Aplicații în afaceri pentru Ethereum",
+ "nav-ethereum-org-description": "Acest site este creat și gestionat de comunitate. Vino alături de noi și contribuie și tu",
+ "nav-ethereum-wallets-description": "O aplicație pentru interacțiuni cu contul tău Ethereum",
+ "nav-events-description": "Descentralizare și libertate de a participa pentru oricine",
+ "nav-events-irl-description": "În fiecare lună, sunt organizate evenimente majore Ethereum cu participare fizică și online",
+ "nav-events-label": "Comunități și evenimente",
+ "nav-events-online-description": "Sute de mii de pasionați de Ethereum se regăsesc în aceste comunități online",
+ "nav-find-wallet-description": "Portofelele îți permit să folosești cripto",
+ "nav-find-wallet-label": "Alege-ți portofelul",
+ "nav-gas-fees-description": "Calcularea comisioanelor de tranzacție ETH",
+ "nav-get-eth-description": "Ai nevoie de ether (ETH) pentru a folosi aplicațiile Ethereum",
+ "nav-get-started-description": "Primi pașii în folosirea Ethereum",
+ "nav-governance-description": "Procesul de upgrade al protocolului Ethereum",
+ "nav-governance-label": "Conducere",
+ "nav-grants-description": "O listă gestionată de comunitatea noastră pentru proiectele care oferă finanțare prin granturi programelor",
+ "nav-guide-create-account-description": "Orice poate crea un cont Ethereum în orice moment, gratuit, cu o aplicație portofel",
+ "nav-guide-revoke-access-description": "Fii atent când interacționezi cu aplicații și contracte inteligente în ecosistemul Ethereum",
+ "nav-guide-revoke-access-label": "Revocarea accesului la contracte inteligente",
+ "nav-guide-use-wallet-description": "Află cum poți folosi toate funcțiile de bază ale unui portofel",
+ "nav-guide-use-wallet-label": "Cum se utilizează un portofel",
+ "nav-guides-description": "Ghiduri practice, pas cu pas pentru a te ajuta să începi",
+ "nav-guides-label": "Folosirea ghidurilor",
+ "nav-history-description": "O cronologie a tuturor bifurcațiilor și update-urilor importante",
+ "nav-history-label": "Istoricul tehnic al Ethereum",
+ "nav-layer-2-description": "Tranzacții mai ieftine și mai rapide pentru Ethereum",
+ "nav-learn-by-coding-description": "Instrumente care te ajută să experimentezi cu Ethereum",
+ "nav-local-env-description": "Alege și configurează stiva de dezvoltare Ethereum",
+ "nav-mainnet-description": "Aplicațiile blockchain pentru companii pot fi create pe rețeaua principală publică Ethereum",
+ "nav-nft-description": "O modalitate de a reprezenta orice lucru unic ca activ bazat pe Ethereum",
+ "nav-open-research-description": "Unul prin principalele puncte forte ale Ethereum este comunitatea de cercetare activă",
+ "nav-open-research-label": "Deschidere cercetare",
+ "nav-overview-description": "Toate proiectele de educație Ethereum",
+ "nav-overview-label": "Prezentare generală",
+ "nav-participate-overview-description": "Prezentare a modalității de participare",
"nav-primary": "Principal",
- "nft-page": "Tokenuri nefungibile (NFT)",
+ "nav-private-description": "Resurse destinate dezvoltatorilor din Ethereum-ul privat pentru întreprinderi",
+ "nav-quizzes-description": "Află cât de bine înțelegi Ethereum și criptomonedele",
+ "nav-quizzes-label": "Testează-ți cunoștințele",
+ "nav-refi-description": "O sistem economic alternativ bazat pe principii regenerative",
+ "nav-research-description": "Procesele folosite pentru a îmbunătăți Ethereum",
+ "nav-research-label": "Cercetare și dezvoltare",
+ "nav-roadmap-description": "Calea către scalabilitate, securitate și durabilitate superioare pentru Ethereum",
+ "nav-roadmap-future-description": "Consolidarea Ethereum ca o rețea robustă și descentralizată",
+ "nav-roadmap-future-label": "Dovadă viitoare",
+ "nav-roadmap-label": "Foaie de parcurs",
+ "nav-roadmap-scaling-description": "Actualizări de rețea pentru a reduce mai mult costurile și viteza tranzacțiilor",
+ "nav-roadmap-security-description": "Eforturi depuse pentru ca Ethereum să continue să reziste tuturor tipurilor de atacuri în viitor",
+ "nav-roadmap-security-label": "Securitate îmbunătățită",
+ "nav-roadmap-ux-description": "Utilizarea Ethereum trebuie simplificată",
+ "nav-run-a-node-description": "Ai control absolut în timp ce contribui la protejarea securității rețelei",
+ "nav-security-description": "Familiarizează-te cu cele mai bune practici când folosești criptomonede",
+ "nav-smart-contracts-description": "Elementele de bază ale dezvoltării ecosistemului Ethereum",
+ "nav-stablecoins-description": "Stablecoin-urile sunt tokenuri Ethereum concepute să rămână la o valoare fixă",
+ "nav-stake-description": "Câștigă recompense când protejezi Ethereum",
+ "nav-stake-label": "Miză",
+ "nav-staking-home-description": "O descriere generală a diferitelor opțiuni de mizare",
+ "nav-staking-pool-description": "Mizează și câștigă recompense cu orice cantitate de ETH alăturându-te celorlalți",
+ "nav-staking-pool-label": "Miză cumulată",
+ "nav-staking-saas-label": "Mizare cu un serviciu",
+ "nav-staking-solo-label": "Miză individuală",
+ "nav-start-building-description": "Informații utile pentru nou-veniți",
+ "nav-translation-program-description": "Un proiect de colaborare pentru a traduce ethereum.org în toate limbile",
+ "nav-tutorials-description": "Listă curatoriată cu tutoriale generate de comunitate",
+ "nav-use-cases-description": "Descoperă diferite idei pentru utilizarea Ethereum",
+ "nav-what-is-ether-description": "Moneda aplicațiilor Ethereum",
+ "nav-what-is-ethereum-description": "Aflați ce face ca Ethereum să fie special",
+ "nav-what-is-web3-label": "Ce este Web3?",
+ "nav-what-is-web3-description": "O alternativă la monopolurile centralizate care dictează regulile",
+ "nav-whitepaper-description": "Cartea albă originală Ethereum scrisă de Vitalik Buterin în 2014",
+ "nav-zkp-description": "O modalitate de a dovedi validitatea unei afirmații fără a expune afirmația",
+ "nft-page": "NFT - Tokenuri nefungibile",
"nfts": "NFT-uri",
"no": "Nu",
"on-this-page": "Pe această pagină",
"open-research": "Deschidere cercetare",
- "page-developers-aria-label": "Meniu pentru programatori",
+ "page-developers-aria-label": "Meniul pentru dezvoltatori",
"page-index-meta-title": "Pagina de pornire",
"page-last-updated": "Ultima actualizare a paginii",
+ "participate": "Participă",
+ "participate-menu": "Meniu Participare",
"pbs": "Separare ofertant-constructor",
"pools": "Miză cumulată",
"privacy-policy": "Politică de confidențialitate",
@@ -150,9 +263,10 @@
"refresh": "Actualizează pagina.",
"return-home": "înapoi la pagina principală",
"roadmap": "Parcurs Ethereum",
+ "research": "Cercetare",
+ "research-menu": "Meniu Cercetare",
"resources": "Resurse de traducere",
- "regenerative-finance": "Regenerative finance (ReFi)",
- "run-a-node": "Rulați un nod",
+ "run-a-node": "Rularea unui nod",
"rollup-component-website": "Site web",
"rollup-component-developer-docs": "Documente programator",
"rollup-component-technology-and-risk-summary": "Tehnologie şi rezumat al riscurilor",
@@ -164,23 +278,24 @@
"search-box-blank-state-text": "Începe căutarea!",
"search-eth-address": "Pare o adresă Ethereum. Nu oferim date care corespund adreselor. Încearcă să le cauți într-un block explorer ca",
"search-no-results": "Nu există rezultate pentru această căutare",
+ "security": "Securitatea",
"single-slot-finality": "Finalitate cu un singur slot",
"statelessness": "Delegare",
"see-contributors": "Vezi cine a contribuit",
- "set-up-local-env": "Configurați un mediu local",
- "sharding": "Fragmentare",
+ "set-up-local-env": "Configurarea unui mediu local",
+ "sharding": "Fragmentarea",
"show-all": "Afișează tot",
"show-less": "Afișează mai puțin",
"site-description": "Ethereum este o platformă mondială, descentralizată, care se ocupă de bani și noi tipuri de aplicații. Pe Ethereum se pot crea coduri pentru controlul banilor și se pot elabora aplicații accesibile oriunde în lume.",
"site-title": "ethereum.org",
"skip-to-main-content": "Salt la conținutul principal",
"smart-contracts": "Contractele inteligente",
- "stablecoins": "Stablecoin-uri",
+ "stablecoins": "Stablecoins",
"stake-eth": "Mizați ETH",
"staking": "Mizarea",
"start-here": "Începe aici",
- "style-guide": "Style guide",
"solo": "Miză individuală",
+ "support": "Asistență",
"terms-of-use": "Condiții de utilizare",
"translation-banner-body-new": "Vizualizezi această pagină în limba engleză deoarece încă nu am tradus-o. Ajută-ne să traducem conținutul acestei pagini.",
"translation-banner-body-update": "Există o nouă versiune a acestei pagini, dar este doar în limba engleză pentru moment. Ajută-ne să traducem versiunea cea mai recentă.",
@@ -191,19 +306,21 @@
"translation-banner-no-bugs-title": "Nicio eroare aici!",
"translation-banner-no-bugs-content": "Această pagină nu este tradusă. Am lăsat în mod intenționat această pagină în limba engleză deocamdată.",
"translation-banner-no-bugs-dont-show-again": "Nu afișa din nou",
+ "translation-program": "Programul de traducere",
"try-using-search": "Încearcă să ajustezi căutarea pentru a găsi ceea ce cauți",
"tutorials": "Tutoriale",
"up": "Sus",
+ "use": "Utilizare",
"use-ethereum": "Utilizează Ethereum",
"use-ethereum-menu": "Meniul Utilizează Ethereum",
- "user-experience": "User experience",
+ "use-menu": "Meniu Utilizare",
"verkle-trees": "Arbori Verkle",
"wallets": "Portofele",
"we-couldnt-find-that-page": "Nu am găsit pagina respectivă",
"web3": "Ce este Web3?",
"web3-title": "Web3",
"website-last-updated": "Ultima actualizare a site-ului",
- "what-is-ether": "Ce este ether-ul (ETH)?",
+ "what-is-ether": "Ce este ether (ETH)?",
"what-is-ethereum": "Ce este Ethereum?",
"withdrawals": "Retrageri la mizare",
"yes": "Da",
diff --git a/src/intl/ro/page-languages.json b/src/intl/ro/page-languages.json
index 3052e91e74f..ad1393e3830 100644
--- a/src/intl/ro/page-languages.json
+++ b/src/intl/ro/page-languages.json
@@ -17,10 +17,13 @@
"page-languages-translated": "tradus",
"page-languages-words": "cuvinte",
"page-languages-recruit-community": "Ajută-ne să traducem ethereum.org.",
+ "langauge-am": "Amhară",
"language-ar": "Arabă",
"language-az": "Azeră",
+ "langauge-be": "Belarusă",
"language-bg": "Bulgară",
"language-bn": "Bengaleză",
+ "language-bs": "Bosniacă",
"language-ca": "Catalană",
"language-cs": "Cehă",
"language-da": "Daneză",
@@ -31,23 +34,30 @@
"language-fa": "Persană",
"language-fi": "Finlandeză",
"language-fr": "Franceză",
- "language-gl": "Galiciană",
- "language-hi": "Hindusă",
+ "language-gl": "Galeză",
+ "language-gu": "Gujarati",
+ "language-he": "Ebraică",
+ "language-hi": "Hindi",
"language-hr": "Croată",
"language-hu": "Maghiară",
+ "language-hy-am": "Armeană",
"language-id": "Indoneziană",
"language-ig": "Igbo",
"language-it": "Italiană",
"language-ja": "Japoneză",
"language-ka": "Georgiană",
"language-kk": "Kazahă",
+ "language-km": "Khmeră",
+ "language-kn": "Kannada",
"language-ko": "Coreeană",
"language-lt": "Lituaniană",
"language-ml": "Malayalam",
"language-mr": "Marathi",
- "language-ms": "Malaeză",
+ "language-ms": "Malaieză",
"language-nb": "Norvegiană",
- "language-nl": "Neerlandeză",
+ "language-ne-np": "Nepaleză",
+ "language-nl": "Olandeză",
+ "language-pcm": "Pigdin nigeriană",
"language-fil": "Filipineză",
"language-pl": "Poloneză",
"language-pt": "Portugheză",
@@ -59,9 +69,13 @@
"language-sl": "Slovenă",
"language-sr": "Sârbă",
"language-sw": "Swahili",
+ "language-ta": "Tamil",
"language-th": "Thailandeză",
+ "language-tk": "Turkmenă",
"language-tr": "Turcă",
"language-uk": "Ucraineană",
+ "language-ur": "Urdu",
+ "language-uz": "Uzbecă",
"language-vi": "Vietnameză",
"language-zh": "Chineză simplificată",
"language-zh-tw": "Chineză tradițională"
diff --git a/src/intl/ru/common.json b/src/intl/ru/common.json
index ac646cd9838..a2a008c7543 100644
--- a/src/intl/ru/common.json
+++ b/src/intl/ru/common.json
@@ -5,7 +5,6 @@
"adding-developer-tools": "Добавление инструментов для разработчиков",
"adding-exchanges": "Добавление бирж",
"adding-glossary-terms": "Добавление терминов в глоссарий",
- "adding-layer-2s": "Adding Layer 2s",
"adding-products": "Добавление продуктов",
"adding-staking-products": "Добавление продуктов, использующих стейкинг",
"adding-wallets": "Добавление кошельков",
@@ -15,6 +14,9 @@
"aria-toggle-menu-button": "Переключение кнопки меню",
"beacon-chain": "Beacon Chain",
"bridges": "Мосты блокчейна",
+ "bug-bounty": "Вознаграждения за найденные ошибки",
+ "build": "Сборка",
+ "build-menu": "Меню сборки",
"clear": "Очистить",
"close": "Закрыть",
"community": "Сообщество",
@@ -31,14 +33,15 @@
"copied": "Скопировано",
"copy": "Копировать",
"danksharding": "Данкшардинг",
- "dao-page": "Децентрализованные автономные организации (DAO)",
+ "dao-page": "DAO - Децентрализованные автономные организации",
"dark-mode": "Темная",
"data-provided-by": "Источник данных:",
- "decentralized-applications-dapps": "Децентрализованные приложения (dapps)",
+ "decentralized-applications-dapps": "Dapps - Децентрализованные приложения",
"decentralized-identity": "Децентрализованная идентификация",
"decentralized-social-networks": "Децентрализованные социальные сети",
- "decentralized-science": "Децентрализованная наука (DeSci)",
- "defi-page": "Децентрализованные финансы (DeFi)",
+ "decentralized-science": "DeSci - Децентрализованная наука",
+ "description": "Описание элемента навигации",
+ "defi-page": "DeFi - Децентрализованные финансы",
"design": "Дизайн",
"design-principles": "Принципы дизайна",
"devcon": "Девкон",
@@ -76,7 +79,7 @@
"ethereum-bug-bounty": "Программа вознаграждения за нахождение ошибок Ethereum",
"consensus-when-shipping": "Когда это запустится?",
"ethereum-upgrades": "Обновления Ethereum",
- "ethereum-brand-assets": "Активы бренда Ethereum",
+ "ethereum-brand-assets": "Ресурсы бренда Ethereum",
"ethereum-online": "Онлайн-сообщества",
"ethereum-events": "Мероприятия Ethereum",
"ethereum-foundation": "Фонд Ethereum",
@@ -96,7 +99,7 @@
"feedback-card-prompt-tutorial": "Было ли это руководство полезным?",
"feedback-widget-thank-you-title": "Спасибо за ваш отзыв!",
"feedback-widget-thank-you-subtitle": "Сделайте эту страницу еще лучше, ответив на несколько вопросов.",
- "feedback-widget-thank-you-subtitle-ext": "Если вам нужна помощь, вы можете связаться с сообществом в нашем Discord.",
+ "feedback-widget-thank-you-subtitle-ext": "Если вам нужна помощь, вы можете связаться с сообществом в нашем Discord.",
"feedback-widget-thank-you-timing": "2–3 мин",
"feedback-widget-thank-you-cta": "Открыть небольшой опрос",
"find-wallet": "Найти кошелек",
@@ -128,7 +131,7 @@
"last-edit": "Последнее редактирование",
"layer-2": "Слой 2",
"learn": "Обучение",
- "learn-by-coding": "Обучение на программировании",
+ "learn-by-coding": "Учитесь на программировании",
"learn-hub": "Учебный центр",
"learn-menu": "Меню обучения",
"learn-more": "Узнать больше",
@@ -143,10 +146,114 @@
"mainnet-ethereum": "Основная сеть Ethereum",
"merge": "Слияние",
"more": "Больше",
- "nav-developers": "Разработчикам",
+ "nav-about-description": "Публичный проект с открытым кодом для сообщества Ethereum",
+ "nav-advanced-description": "Узнавайте о более сложных темах",
+ "nav-advanced-label": "Дополнительно",
+ "nav-basics-description": "Разберитесь в основах Ethereum",
+ "nav-basics-label": "Основы",
+ "nav-bridges-description": "Web3 становится экосистемой, состоящей из первичных блокчейнов L1 и решений для масштабирования L2",
+ "nav-builders-home-description": "Руководство разработчика для Ethereum. От разработчиков и для разработчиков",
+ "nav-builders-home-label": "Домашняя страница для разработчиков",
+ "nav-contribute-description": "Если вам нужна помощь, вам это пригодится",
+ "nav-contribute-label": "Помощь в развитии ethereum.org",
+ "nav-dao-description": "Сообщества, принадлежащие своим членам, без централизованного аппарата управления",
+ "nav-dapps-description": "Откройте для себя богатую экосистему приложений с помощью Ethereum",
+ "nav-defi-description": "Глобальная открытая альтернатива традиционному финансовому рынку",
+ "nav-desci-description": "Глобальная открытая альтернатива существующей научной системе",
+ "nav-desoc-description": "Платформы на основе блокчейна для социального взаимодействия и создания контента",
"nav-developers-docs": "Документация для разработчиков",
+ "nav-developers": "Разработчикам",
+ "nav-did-description": "Создавайте уникальные децентрализованные идентификаторы и владейте ими",
+ "nav-docs-description": "Документы, помогающие разобраться в Ethereum и заняться разработкой",
+ "nav-docs-design-description": "Описание уникальных вызовов, связанных с дизайном web3, рекомендации и результаты пользовательских исследований",
+ "nav-docs-design-label": "Основы дизайна UX/UI",
+ "nav-docs-foundation-description": "Отправная точка для разработки на Ethereum",
+ "nav-docs-foundation-label": "Основные темы",
+ "nav-docs-overview-description": "Ваш центр документации для разработчиков",
+ "nav-docs-stack-description": "Понимание всех особенностей стека Ethereum",
+ "nav-docs-stack-label": "Стек Ethereum",
+ "nav-eip-description": "Стандарты, определяющие новые функции или процессы",
+ "nav-eip-label": "EIP - Предложения по улучшению Ethereum",
+ "nav-emerging-description": "Узнавайте самые свежие примеры использования Ethereum",
+ "nav-emerging-label": "Новые варианты использования",
+ "nav-enterprise-description": "Бизнес-приложения для Ethereum",
+ "nav-ethereum-org-description": "Этот сайт развивается сообществом, станьте его участником и внесите свой вклад",
+ "nav-ethereum-wallets-description": "Приложение для взаимодействия с вашим аккаунтом Ethereum",
+ "nav-events-description": "Децентрализация и свобода участия для каждого",
+ "nav-events-irl-description": "Каждый месяц проходят крупные мероприятия Ethereum — как онлайн, так и в очном режиме",
+ "nav-events-label": "Сообщества и мероприятия",
+ "nav-events-online-description": "Эти онлайн-сообщества развиваются сотнями тысяч энтузиастов Ethereum",
+ "nav-find-wallet-description": "Кошельки позволяют пользоваться криптовалютой",
+ "nav-find-wallet-label": "Выберите кошелек",
+ "nav-gas-fees-description": "Как рассчитываются комиссии за транзакции в ETH",
+ "nav-gas-fees-label": "Комиссии за газ",
+ "nav-get-eth-description": "Чтобы пользоваться приложениями Ethereum, потребуется эфир (ETH)",
+ "nav-get-started-description": "Ваши первые шаги к использованию Ethereum",
+ "nav-governance-description": "Процесс включает обновление протокола Ethereum",
+ "nav-governance-label": "Руководство",
+ "nav-grants-description": "Список проектов, предлагающих гранты для финансирования программ, ведется нашим сообществом",
+ "nav-guide-create-account-description": "Каждый может создать аккаунт Ethereum бесплатно и в любое время с помощью приложения кошелька",
+ "nav-guide-create-account-label": "Как создать учетную запись Ethereum",
+ "nav-guide-revoke-access-description": "Оставайтесь в безопасности, взаимодействуя с умными контрактами и приложениями в экосистеме Ethereum",
+ "nav-guide-revoke-access-label": "Как отозвать доступ смарт-контрактов",
+ "nav-guide-use-wallet-description": "Узнайте, как работают все основные функции кошелька",
+ "nav-guide-use-wallet-label": "Как использовать кошелек",
+ "nav-guides-description": "Практичные пошаговые руководства, помогающие начать",
+ "nav-guides-label": "Практические руководства",
+ "nav-history-description": "График всех основных ветвлений и обновлений",
+ "nav-history-label": "Техническая история Ethereum",
+ "nav-layer-2-description": "Транзакции Ethereum дешевле и быстрее",
+ "nav-learn-by-coding-description": "Инструменты, помогающие экспериментировать с Ethereum",
+ "nav-local-env-description": "Выберите и настройте свой стек разработки Ethereum",
+ "nav-mainnet-description": "Блокчейн-приложения для компаний можно создавать на публичной основной сети Ethereum",
+ "nav-nft-description": "Способ представить что-либо уникальное как актив на основе Ethereum",
+ "nav-open-research-description": "Одно из ключевых преимуществ Ethereum — активное сообщество исследователей",
+ "nav-open-research-label": "Текущие исследования",
+ "nav-overview-description": "Обучающие материалы по Ethereum на любые темы",
+ "nav-overview-label": "Обзор",
+ "nav-participate-overview-description": "Обзор возможностей для участия",
"nav-primary": "Основной",
- "nft-page": "Невзаимозаменяемые токены (NFT)",
+ "nav-private-description": "Ресурсы разработчиков для частного предприятия Ethereum",
+ "nav-quizzes-description": "Узнайте, насколько хорошо вы разбираетесь в Ethereum и криптовалютах",
+ "nav-quizzes-label": "Проверьте свои знания",
+ "nav-refi-description": "Альтернативная экономическая система, построенная на регенеративных принципах",
+ "nav-research-description": "Процессы, используемые для совершенствования Ethereum",
+ "nav-research-label": "Исследования и разработки",
+ "nav-roadmap-description": "Путь к большей масштабируемости, безопасности и экологичности Ethereum",
+ "nav-roadmap-future-description": "Укрепление Ethereum как надежной и децентрализованной сети",
+ "nav-roadmap-future-label": "Обеспечение будущего",
+ "nav-roadmap-label": "Дорожная карта",
+ "nav-roadmap-scaling-description": "Обновления сети для дальнейшего сокращения расходов и времени на транзакции",
+ "nav-roadmap-scaling-label": "Более дешевые транзакции",
+ "nav-roadmap-security-description": "Обеспечение способности Ethereum выдерживать любые типы будущих атак",
+ "nav-roadmap-security-label": "Улучшенная безопасность",
+ "nav-roadmap-ux-description": "Использование Ethereum нужно упростить",
+ "nav-run-a-node-description": "Получите полную независимость, помогая защитить сеть",
+ "nav-security-description": "Узнайте о лучших способах использовать криптовалюту",
+ "nav-smart-contracts-description": "Главные строительные блоки экосистемы Ethereum",
+ "nav-stablecoins-description": "Стейблкойны — это токены Ethereum, разработанные для сохранения фиксированной ценности",
+ "nav-stake-description": "Зарабатывайте вознаграждения за защиту Ethereum",
+ "nav-stake-label": "Доля",
+ "nav-staking-home-description": "Обзор различных вариантов стейкинга",
+ "nav-staking-home-label": "Главная страница стейкинга",
+ "nav-staking-pool-description": "Становитесь дольщиком и зарабатывайте награды при любом количестве ETH, объединяясь с другими",
+ "nav-staking-pool-label": "Объединенный стейкинг",
+ "nav-staking-saas-description": "Операторы сторонних узлов управляют работой вашего клиента валидатора",
+ "nav-staking-saas-label": "Стейкинг с услугой",
+ "nav-staking-solo-description": "Запустите домашнее оборудование и лично добавьте безопасности и децентрализации сети Ethereum",
+ "nav-staking-solo-label": "Одиночный стейкинг",
+ "nav-start-building-description": "Полезная информация для новичков",
+ "nav-translation-program-description": "Общие усилия по переводу ethereum.org на все языки",
+ "nav-tutorials-description": "Курируемый список руководств сообщества",
+ "nav-use-cases-description": "Узнайте различные идеи по использованию Ethereum",
+ "nav-use-cases-label": "Применение",
+ "nav-what-is-ether-description": "Валюта приложений Ethereum",
+ "nav-what-is-ethereum-description": "Узнайте, в чем особенность Ethereum",
+ "nav-what-is-web3-label": "Что такое Web3?",
+ "nav-what-is-web3-description": "Альтернатива централизованным монополиям, диктующим свои условия",
+ "nav-whitepaper-description": "Первоначальное описание Ethereum, написанное Виталиком Бутериным в 2014 году",
+ "nav-zkp-description": "Способ доказать действительность заявления, не раскрывая его",
+ "nft-page": "NFT - Невзаимозаменяемые токены",
"nfts": "NFT",
"no": "Нет",
"on-this-page": "На этой странице",
@@ -154,6 +261,8 @@
"page-developers-aria-label": "Меню разработчиков",
"page-index-meta-title": "Главная",
"page-last-updated": "Последнее обновление страницы",
+ "participate": "Участвуйте",
+ "participate-menu": "Меню участия",
"pbs": "Разделение предлагающих и строителей",
"pools": "Объединенный стейкинг",
"privacy-policy": "Политика о конфиденциальности",
@@ -164,10 +273,12 @@
"refresh": "Обновите страницу.",
"return-home": "Вернуться на главную",
"roadmap": "Дорожная карта Ethereum",
+ "research": "Исследования",
+ "research-menu": "Меню исследований",
"resources": "Ресурсы для перевода",
- "regenerative-finance": "Регенеративные финансы (ReFi)",
+ "regenerative-finance": "ReFi - Регенеративные финансы",
"run-a-node": "Запуск узла",
- "rollup-component-website": "Сайт",
+ "rollup-component-website": "Вебсайт",
"rollup-component-developer-docs": "Документация для разработчиков",
"rollup-component-technology-and-risk-summary": "Обзор рисков и технологий",
"scaling": "Масштабирование",
@@ -190,14 +301,14 @@
"site-title": "ethereum.org",
"skip-to-main-content": "Перейти к основному содержанию",
"smart-contracts": "Умные контракты",
- "stablecoins": "Stablecoins",
+ "stablecoins": "Стабильные монеты",
"stake-eth": "Вложить ETH",
"staking": "Ставки",
"start-here": "Начните здесь",
"style-guide": "Руководство по стилю",
"solo": "Одиночный стейкинг",
"support": "Поддержка",
- "terms-of-use": "Условия пользования",
+ "terms-of-use": "Условия использования",
"translation-banner-body-new": "Вы просматриваете эту страницу на английском языке, потому что мы еще не перевели ее. Помогите нам перевести эти материалы.",
"translation-banner-body-update": "Есть новая версия этой страницы, но пока только на английском языке. Помогите нам перевести последнюю версию.",
"translation-banner-button-see-english": "См. английский",
@@ -211,8 +322,10 @@
"try-using-search": "Попробуйте использовать поиск, чтобы найти то, что вы ищете, или",
"tutorials": "Учебники",
"up": "Вверх",
+ "use": "Использование",
"use-ethereum": "Использование Ethereum",
"use-ethereum-menu": "Использовать меню Ethereum",
+ "use-menu": "Меню использования",
"user-experience": "Пользовательский опыт",
"verkle-trees": "Деревья Веркла",
"wallets": "Кошельки",
@@ -220,7 +333,7 @@
"web3": "Что такое Web3?",
"web3-title": "Web3",
"website-last-updated": "Последнее обновление страницы",
- "what-is-ether": "Что такое эфир (ETH)?",
+ "what-is-ether": "Что такое Ether (ETH)?",
"what-is-ethereum": "Что такое Ethereum?",
"withdrawals": "Вывод средств, использованных в стейкинге",
"yes": "Да",
diff --git a/src/intl/ru/page-layer-2.json b/src/intl/ru/page-layer-2.json
index 900d72a59e6..e1f0b13a9eb 100644
--- a/src/intl/ru/page-layer-2.json
+++ b/src/intl/ru/page-layer-2.json
@@ -16,7 +16,7 @@
"layer-2-what-is-layer-2-1": "Уровень 2 (L2) — это собирательный термин для описания определенного набора решений для масштабирования Ethereum. Уровень 2 — это отдельная цепочка блоков, которая расширяет Ethereum и наследует гарантии безопасности Ethereum.",
"layer-2-what-is-layer-2-2": "Теперь давайте разберемся в этом немного подробнее. Для этого нам сначала нужно объяснить, что такое «слой 1» (L1).",
"layer-2-what-is-layer-1-title": "Что такое «уровень1»?",
- "layer-2-what-is-layer-1-1": "Слой 1 — это основной блокчейн. И Ethereum, и Bitcoin — блокчейны слоя 1, так как они выступают в качестве основы, над которой надстраиваются различные сети слоя 2. К примерам блокчейнов второго уровня относятся «свертки» на Ethereum и Lightning Network на Bitcoin. Все пользовательские транцзакции, происходящие на блокчейне слоя 2, в итоге находят отражение на блокчейне слоя 1.",
+ "layer-2-what-is-layer-1-1": "Слой 1 — это основной блокчейн. И Ethereum, и Bitcoin — блокчейны слоя 1, так как они выступают в качестве основы, над которой надстраиваются различные сети слоя 2. К примерам блокчейнов второго уровня относятся «свертки» на Ethereum и Lightning Network на Bitcoin. Все пользовательские транзакции, происходящие на блокчейне слоя 2, в итоге находят отражение на блокчейне слоя 1.",
"layer-2-what-is-layer-1-2": "Ethereum служит также уровнем доступности данных для уровня 2. Проекты уровня 2 будут размещать данные транзакций в Ethereum, полагаясь на Ethereum для обеспечения доступности данных. Эти данные можно использовать для получения состояния уровня 2 или для оспаривания транзакций на уровне 2.",
"layer-2-what-is-layer-1-list-title": "Ethereum, как уровень 1, включает такие элементы:",
"layer-2-what-is-layer-1-list-1": "Сеть операторов узлов для обеспечения безопасности и проверки сети",
diff --git a/src/intl/ru/page-wallets-find-wallet.json b/src/intl/ru/page-wallets-find-wallet.json
index 038cc3f13bc..86d6e6f9dda 100644
--- a/src/intl/ru/page-wallets-find-wallet.json
+++ b/src/intl/ru/page-wallets-find-wallet.json
@@ -7,7 +7,6 @@
"page-find-wallet-meta-title": "Найти кошелек Ethereum",
"page-find-wallet-title": "Найти кошелек",
"page-find-wallet-try-removing": "Попробуйте удалить одну или две функции",
- "page-find-wallet-choose-to-compare": "Выбрать для сравнения",
"page-stake-eth": "Вложить ETH",
"page-find-wallet-open-source": "Открытый исходный код",
"page-find-wallet-open-source-desc": "Программное обеспечение с открытым исходным кодом позволяет любому желающему проверить целостность и безопасность приложения",
@@ -16,8 +15,6 @@
"page-find-wallet-non-custodial-desc": "Кошельки, которые не контролируют ваши закрытые ключи",
"page-find-wallet-hardware-wallet-support": "Поддержка аппаратных кошельков",
"page-find-wallet-hardware-wallet-support-desc": "Кошельки, которые могут подключаться к аппаратному кошельку для повышения безопасности",
- "page-find-wallet-walletconnect": "WalletConnect",
- "page-find-wallet-walletconnect-desc": "Кошельки, поддерживающие WalletConnect для подключения к децентрализованным приложениям",
"page-find-wallet-rpc-importing": "Импорт RPC",
"page-find-wallet-rpc-importing-desc": "Кошельки, поддерживающие пользовательские конечные точки RPC для подключения к различным узлам или сетям",
"page-find-wallet-nft-support": "Поддержка NFT",
@@ -36,8 +33,6 @@
"page-find-wallet-ens-support-desc": "Кошельки, поддерживающие службу имен Ethereum Name Service (ENS)",
"page-find-wallet-token-importing": "Импорт токена",
"page-find-wallet-token-importing-desc": "Импортируйте любой токен ERC-20 для использования в кошельке",
- "page-find-wallet-fee-optimization": "Оптимизация оплаты",
- "page-find-wallet-fee-optimization-desc": "Поддержка транзакций типа 2 для оптимизированной платы за газ и возврата платы за неиспользованный газ",
"page-find-wallet-buy-crypto": "Купить криптовалюту",
"page-find-wallet-buy-crypto-desc": "Покупайте криптовалюту за фиатные деньги прямо в кошельке \n * Примечание: покупка криптовалюты может зависеть от региона",
"page-find-wallet-sell-for-fiat": "Продать за фиатные деньги",
@@ -46,7 +41,6 @@
"page-find-wallet-multisig-desc": "Кошельки, требующие нескольких подписей для авторизации транзакции",
"page-find-wallet-social-recovery": "Социальное восстановление",
"page-find-wallet-social-recovery-desc": "Кошельки, позволяющие опекунам изменять ключ подписи для кошельков умных контрактов",
- "page-find-wallet-token-support": "Поддержка токенов",
"page-find-wallet-features": "Функции",
"page-find-wallet-security": "Безопасность",
"page-find-wallet-smart-contract": "Смарт-контракт",
@@ -63,7 +57,6 @@
"page-find-wallet-chromium": "Chromium",
"page-find-wallet-firefox": "Firefox",
"page-find-wallet-hardware": "Аппаратное обеспечение",
- "page-find-wallet-hardware-desc": "Аппаратные кошельки",
"page-find-wallet-new-to-crypto-title": "Новичок в криптовалютах",
"page-find-wallet-new-to-crypto-desc": "Вы — начинающий пользователь, ищущий свой первый кошелек",
"page-find-wallet-nfts-title": "NFT",
@@ -74,22 +67,14 @@
"page-find-wallet-finance-desc": "Вы используете DeFi и хотите получить кошелек, который позволит вам подключаться к приложениям DeFi",
"page-find-wallet-developer-title": "Разработчик",
"page-find-wallet-developer-desc": "Вы разработчик и вам нужен кошелек для помощи в разработке и тестировании децентрализованных приложений",
- "page-find-wallet-persona-desc": "Выберите профиль, соответствующий вашему типу пользователя, и отфильтруйте список кошельков",
"page-find-wallet-filters": "Фильтры",
"page-find-wallet-active": "активные",
- "page-find-wallet-profile-filters": "Фильтры пользователей",
- "page-find-wallet-feature-filters": "Фильтры функций",
"page-find-wallet-footnote-1": "Кошельки, перечисленные на этой странице, не являются официально подтвержденными и представлены исключительно в информационных целях.",
"page-find-wallet-footnote-2": "Их описания были предоставлены самими проектами кошельков.",
"page-find-wallet-footnote-3": "Мы добавляем продукты на эту страницу на основе критериев политики листинга. Если вы хотите, чтобы мы добавили кошелек, сообщите о проблеме в GitHub.",
"page-find-wallet-mobile": "На мобильном",
- "page-find-wallet-mobile-desc": "Кошельки с мобильными приложениями",
"page-find-wallet-desktop": "На настольном ПК",
- "page-find-wallet-desktop-desc": "Кошельки с приложениями для настольных ПК",
"page-find-wallet-browser": "Браузер",
- "page-find-wallet-browser-desc": "Кошельки с расширениями для браузеров",
"page-find-wallet-device": "Устройство",
- "page-find-choose-to-compare": "Выбрать для сравнения",
- "page-find-wallet-choose-features": "Выберите функции",
"page-find-wallet-reset-filters": "Сбросить фильтры"
}
diff --git a/src/intl/se/common.json b/src/intl/se/common.json
index 64c07275cc7..346fac1ab7f 100644
--- a/src/intl/se/common.json
+++ b/src/intl/se/common.json
@@ -1,17 +1,29 @@
{
- "account-abstraction": "Kontoabstraktion",
"about-ethereum-org": "Om ethereum.org",
"about-us": "Om oss",
+ "adding-desci-projects": "Lägga till Desci-projekt",
+ "adding-developer-tools": "Lägga till utvecklarverktyg",
+ "adding-exchanges": "Lägga till börser",
+ "adding-glossary-terms": "Lägga till ordlistetermer",
+ "adding-staking-products": "Lägga till utsättningsprodukter",
+ "adding-wallets": "Lägga till plånböcker",
+ "account-abstraction": "Kontoabstraktion",
+ "acknowledgements": "Tack till",
"aria-toggle-search-button": "Växla sökknappen",
"aria-toggle-menu-button": "Växla menyknappen",
"beacon-chain": "Beacon-kedjan",
"bridges": "Blockkedjebryggor",
+ "bug-bounty": "Hittelön för skadlig kod",
+ "build": "Bygg",
+ "build-menu": "Byggmeny",
"clear": "Rensa",
"close": "Stäng",
- "community": "Community",
+ "community": "Gemenskap",
"community-hub": "Gemenskapshubben",
"community-menu": "Gemenskapsmenyn",
"contact": "Kontakta oss",
+ "content-buckets": "Innehållsämnen",
+ "content-resources": "Innehållsresurser",
"content-standardization": "Standardisering av innehåll",
"contributing": "Bidragande",
"contributors": "Bidragsgivare",
@@ -20,14 +32,17 @@
"copied": "Kopierad",
"copy": "Kopiera",
"danksharding": "Danksharding",
- "dao-page": "Decentraliserade autonoma organisationer (DAO)",
+ "dao-page": "DAO - Decentraliserade autonoma organisationer",
"dark-mode": "Mörkt",
"data-provided-by": "Datakälla:",
- "decentralized-applications-dapps": "Decentraliserade program (dapps)",
+ "decentralized-applications-dapps": "Dapps - Decentraliserade program",
"decentralized-identity": "Decentraliserad identitet",
"decentralized-social-networks": "Decentraliserade sociala nätverk",
- "decentralized-science": "Decentraliserad vetenskap (DeSci)",
- "defi-page": "Decentraliserad finansiering (DeFi)",
+ "decentralized-science": "DeSci - Decentraliserad vetenskap",
+ "description": "Beskrivning för navobjekt",
+ "defi-page": "DeFi - Decentraliserad finansiering",
+ "design": "Design",
+ "design-principles": "Designprinciper",
"devcon": "Devcon",
"developers": "Utvecklare",
"developers-home": "Startsida för utvecklare",
@@ -59,22 +74,24 @@
"enterprise-menu": "Företagsmeny",
"esp": "Stödprogram för ekosystemet",
"eth-current-price": "Nuvarande ETH-pris (USD)",
+ "ethereum-basics": "Grunderna i Ethereum",
"ethereum-bug-bounty": "Ethereums program för hittelön för skadlig kod",
"consensus-when-shipping": "När lanseras det?",
"ethereum-upgrades": "Ethereum-uppgraderingar",
"ethereum-brand-assets": "Ethereum-varumärkestillgångar",
- "ethereum-online": "Communitys online",
+ "ethereum-online": "Gemenskaper online",
"ethereum-events": "Ethereum-evenemang",
"ethereum-foundation": "Ethereum Foundation",
"ethereum-foundation-logo": "Ethereum Foundation-logotyp",
"ethereum-glossary": "Ethereum-ordlista",
"ethereum-governance": "Ethereum – styrning",
"ethereum-logo": "Ethereum-logotyp",
- "ethereum-roadmap": "Färdplan för Ethereum",
+ "ethereum-roadmap": "Vägkarta för Ethereum",
+ "ethereum-protocol": "Ethereum-protokoll",
"ethereum-security": "Ethereum – skydd och förebyggande av bedrägerier",
"ethereum-support": "Ethereum-support",
"ethereum-wallets": "Ethereum-plånböcker",
- "ethereum-whitepaper": "Vitbok för Ethereum",
+ "ethereum-whitepaper": "Ethereum-faktablad",
"feedback-widget-prompt": "Är den här sidan till hjälp?",
"feedback-card-prompt-page": "Var den här sidan till hjälp?",
"feedback-card-prompt-article": "Var den här artikeln till hjälp?",
@@ -92,11 +109,10 @@
"grants": "Anslag",
"grant-programs": "Anslagsprogram för ekosystemet",
"guides": "Guider",
- "guides-hub": "Hubb för guider",
+ "guides-hub": "Guider",
"history-of-ethereum": "Ethereums historia",
"home": "Startsida",
"how-ethereum-works": "Så här fungerar Ethereum",
- "how-to-create-an-ethereum-account": "Så här \"registrerar\" man ett Ethereum-konto",
"how-to-revoke-token-access": "Så här återkallar du åtkomsten till smarta kontrakt för dina kryptofonder",
"how-to-swap-tokens": "Så här byter man polletter",
"how-to-use-a-bridge": "Så här överför man polletter till lager 2",
@@ -123,13 +139,112 @@
"loading": "Laddar ...",
"loading-error": "Laddningsfel.",
"loading-error-refresh": "Fel, uppdatera.",
+ "loading-error-try-again-later": "Det gick inte att läsa in data. Försök igen senare.",
"logo": "logotyp",
"mainnet-ethereum": "Mainnet Ethereum",
+ "merge": "Sammanfoga",
"more": "Mer",
- "nav-developers": "Utvecklare",
+ "nav-about-description": "Ett kollektivt projekt med öppen källa för Ethereum-communityn",
+ "nav-advanced-description": "Lär dig om de mer komplexa ämnena",
+ "nav-advanced-label": "Avancerat",
+ "nav-basics-description": "Förstå grunderna i Ethereum",
+ "nav-basics-label": "Grunderna",
+ "nav-bridges-description": "Web3 har utvecklats till ett ekosystem av primära L1-blockkedjor och L2-skalningslösningar",
+ "nav-builders-home-description": "En bygghandbok för Ethereum – av byggare, för byggare",
+ "nav-builders-home-label": "Startsida för byggare",
+ "nav-contribute-description": "Om du vill ha hjälp kommer denna handbok att vägleda dig",
+ "nav-contribute-label": "Bidra till ethereum.org",
+ "nav-dao-description": "Medlemsägda gemenskaper utan centraliserad ledning",
+ "nav-dapps-description": "Utforska ett rikt ekosystem av appar med Ethereum",
+ "nav-defi-description": "Ett globalt, öppet alternativ till den traditionella finansiella marknaden",
+ "nav-desci-description": "Ett globalt, öppet alternativ till det nuvarande vetenskapliga systemet",
+ "nav-desoc-description": "Blockkedjebaserade plattformar för social interagering och innehållsskapande",
"nav-developers-docs": "Utvecklardokument",
+ "nav-developers": "Utvecklare",
+ "nav-did-description": "Skapa och äg dina unika decentraliserade identifierare",
+ "nav-docs-description": "Dokument som hjälper dig att förstå och bygga med Ethereum",
+ "nav-docs-design-description": "Beskrivning av unika web3-designutmaningar, bästa praxis och insikter om användarforskning",
+ "nav-docs-design-label": "Grunder för UX/UI-design",
+ "nav-docs-foundation-description": "Grunderna för att utveckla på Ethereum",
+ "nav-docs-foundation-label": "Grundläggande ämnen",
+ "nav-docs-overview-description": "Din startsida för dokument för utvecklare",
+ "nav-docs-stack-description": "Förstå alla detaljerna i Ethereum-stacken",
+ "nav-docs-stack-label": "Ethereum stack",
+ "nav-eip-description": "Standarder som specificerar nya funktioner och processer",
+ "nav-eip-label": "EIP:er - Förbättringsförslag för Ethereum",
+ "nav-emerging-description": "Få reda på andra nya användarfall för Ethereum",
+ "nav-enterprise-description": "Företagsapplikationer för Ethereum",
+ "nav-ethereum-org-description": "Den här webbplatsen drivs av communityn – delta och bidra själv",
+ "nav-ethereum-wallets-description": "En app för att interagera med ditt Ethereum-konto",
+ "nav-events-description": "Decentralisering och frihet att delta för alla",
+ "nav-events-irl-description": "Varje månad äger stora Ethereum-evenemang rum i verkligheten och online",
+ "nav-events-label": "Gemenskaper och evenemang",
+ "nav-events-online-description": "Hundratusentals Ethereum-entusiaster ligger bakom dessa onlinegemenskaper",
+ "nav-find-wallet-description": "Med plånböcker kan du använda crypto",
+ "nav-find-wallet-label": "Välj din plånbok",
+ "nav-gas-fees-description": "Hur ETH-transaktionsavgifter beräknas",
+ "nav-get-eth-description": "Du behöver ether (ETH) för att använda Ethereum-applikationer",
+ "nav-get-started-description": "Dina första steg för att använda Ethereum",
+ "nav-governance-description": "Processen att uppgradera Ethereum-protokollet",
+ "nav-governance-label": "Styrning",
+ "nav-grants-description": "En kurerad lista av vår gemenskap med projekt som tillhandahåller program för stipendiefinansering",
+ "nav-guide-create-account-description": "Vem som helst kan när som helst skapa ett Ethereum-konto gratis med en plånboksapp",
+ "nav-guide-revoke-access-description": "Håll dig säker när du interagerar med smarta kontrakt och applikationer i Ethereum-ekosystemet",
+ "nav-guide-revoke-access-label": "Så nekar du åtkomst till smarta kontrakt",
+ "nav-guide-use-wallet-description": "Ta reda på hur du använder alla grundläggande funktioner för en plånbok",
+ "nav-guide-use-wallet-label": "Så här använder man en plånbok",
+ "nav-guides-description": "Praktiska steg-för-steg-guider som hjälper dig att komma igång",
+ "nav-guides-label": "Guider",
+ "nav-history-description": "En tidslinje för alla viktiga förgreningar och uppdateringar",
+ "nav-history-label": "Ethereums tekniska historia",
+ "nav-layer-2-description": "Billigare och snabbare transaktioner för Ethereum",
+ "nav-learn-by-coding-description": "Verktyg som hjälper dig att experimentera med Ethereum",
+ "nav-local-env-description": "Välj och konfigurera din Ethereum-utvecklingsstack",
+ "nav-mainnet-description": "Enterprise-blockkedjeapplikationer kan byggas på det kollektiva Ethereum-huvudnätverket",
+ "nav-nft-description": "Ett sätt att representera något unikt som en Ethereum-baserad tillgång",
+ "nav-open-research-description": "En av de främsta styrkorna med Ethereum är dess aktiva forskningsgemenskap",
+ "nav-open-research-label": "Öppen forskning",
+ "nav-overview-description": "Allt om Ethereum-utbildning",
+ "nav-participate-overview-description": "Översikt över hur du deltar",
"nav-primary": "Primär",
- "nft-page": "Icke-fungibla polletter (NFT)",
+ "nav-quizzes-description": "Ta reda på hur väl du förstår Ethereum och kryptovalutor",
+ "nav-quizzes-label": "Testa dina kunskaper",
+ "nav-refi-description": "Ett alternativt ekonomiskt system byggt på regenerativa principer",
+ "nav-research-description": "Processer som används för att förbättra Ethereum",
+ "nav-research-label": "Forskning och utveckling",
+ "nav-roadmap-description": "Vägen till ökad skalbarhet, säkerhet och hållbarhet för Ethereum",
+ "nav-roadmap-future-description": "Stärker Ethereum som ett robust och decentraliserat nätverk",
+ "nav-roadmap-future-label": "Framtidssäkring",
+ "nav-roadmap-label": "Vägkarta",
+ "nav-roadmap-scaling-description": "Nätverksuppdateringar för att ytterligare reducera transaktionskostnader och hastighet",
+ "nav-roadmap-security-description": "Se till att Ethereum håller sig motståndskraftigt mot alla typer av angrepp i framtiden",
+ "nav-roadmap-security-label": "Förbättrad säkerhet",
+ "nav-roadmap-ux-description": "Användningen av Ethereum måste förenklas",
+ "nav-run-a-node-description": "Bli hypereffektiv samtidigt som du hjälper till att göra nätverket säkert",
+ "nav-security-description": "Lär dig bästa praxis för att använda kryptovaluta",
+ "nav-smart-contracts-description": "De grundläggande byggnadsblocken i Ethereum-ekosystemet",
+ "nav-stablecoins-description": "Stablecoins är Ethereum-tokens som är utformade för att ha ett fast värde",
+ "nav-stake-description": "Få belöningar för att göra Ethereum säkrare",
+ "nav-stake-label": "Insats",
+ "nav-staking-home-description": "En översikt över olika alternativ för utsättningar",
+ "nav-staking-home-label": "Staking startsida",
+ "nav-staking-pool-description": "Satsa och få belöningar med valfri mängd ETH genom att gå samman med andra",
+ "nav-staking-pool-label": "Sammansatt utsättning",
+ "nav-staking-saas-description": "Nodoperatörer från tredje part hanterar driften av din valideringsklient",
+ "nav-staking-saas-label": "Utsättning med en tjänst",
+ "nav-staking-solo-description": "Kör hem hårdvara och personligen lägg till säkerheten och decentraliseringen av Ethereum-nätverket",
+ "nav-staking-solo-label": "Soloutsättning",
+ "nav-start-building-description": "Användbar information för nybörjare",
+ "nav-translation-program-description": "Ett samarbetsprojekt för att översätta ethereum.org till alla språk",
+ "nav-tutorials-description": "Kurerad lista över community-guider",
+ "nav-use-cases-description": "Upptäck olika idéer för Ethereum-användning",
+ "nav-what-is-ether-description": "Valutan för Ethereum-appar",
+ "nav-what-is-ethereum-description": "Förstå vad som gör Ethereum speciellt",
+ "nav-what-is-web3-label": "Vad är Web3?",
+ "nav-what-is-web3-description": "Ett alternativ till centraliserade monopol som bestämmer reglerna",
+ "nav-whitepaper-description": "Det ursprungliga Ethereum-faktabladet skrivet av Vitalik Buterin år 2014",
+ "nav-zkp-description": "Ett sätt att bevisa giltigheten i ett uttalande utan att avslöja själva uttalandet",
+ "nft-page": "NFT - Icke-fungibla polletter",
"nfts": "NFT:er",
"no": "Nej",
"on-this-page": "På denna sida",
@@ -137,44 +252,50 @@
"page-developers-aria-label": "Utvecklarmeny",
"page-index-meta-title": "Startsida",
"page-last-updated": "Sidan uppdaterades senast",
+ "participate": "Delta",
+ "participate-menu": "Deltagandemeny",
"pbs": "Separering av förslagsgivare och byggare",
- "pools": "Sammansatt stakning",
+ "pools": "Sammansatt utsättning",
"privacy-policy": "Sekretesspolicy",
"private-ethereum": "Privat Ethereum",
- "product-disclaimer": "Produkter och tjänster listas för att underlätta för personerna i Ethereum-communityn. En produkt eller tjänst som finns med i listan innebär inte en rekommendation eller någon typ av godkännande från teamet för webbplatsen ethereum.org eller Ethereum Foundation.",
- "quizzes-title": "Kvisshubben",
+ "product-disclaimer": "Produkter och tjänster listas för att underlätta för personerna i Ethereum-gemenskapen. En produkt eller tjänst som finns med i listan innebär inte en rekommendation eller någon typ av godkännande från teamet för webbplatsen ethereum.org eller Ethereum Foundation.",
+ "quizzes-title": "Frågesportshubben",
"quizzes": "Frågesporter",
"refresh": "Uppdatera sidan.",
"return-home": "återgå till startsidan",
- "roadmap": "Färdplan för Ethereum",
+ "roadmap": "Vägkarta för Ethereum",
+ "research": "Forskning",
+ "research-menu": "Forskningsmeny",
+ "resources": "Översättningsresurser",
"run-a-node": "Kör en nod",
"rollup-component-website": "Webbplats",
"rollup-component-developer-docs": "Utvecklardokument",
"rollup-component-technology-and-risk-summary": "Teknik- och risksammanfattning",
"scaling": "Skalning",
- "saas": "Staking som en tjänst",
+ "saas": "Utsättning som en tjänst",
"search": "Sök",
"search-ethereum-org": "Sök på ethereum.org",
"secret-leader-election": "Hemligt val av ledare",
"search-box-blank-state-text": "Sök!",
- "search-eth-address": "Detta ser ut som en Ethereum-adress. Vi tillhandahåller inte data som är specifik för adresser. Försök att söka efter det på en blockutforskare som",
+ "search-eth-address": "Detta ser ut som en Ethereum-adress. Vi tillhandahåller inte data som är specifika för adresser. Försök att söka efter det på en blockutforskare som",
"search-no-results": "Vi hittade inga resultat för din sökning",
+ "security": "Säkerhet",
"single-slot-finality": "Single-slot finality (SSF)",
"statelessness": "Statslöshet",
"see-contributors": "Se medverkande",
"set-up-local-env": "Konfigurera lokal miljö",
- "sharding": "Horisontell partitionering",
+ "sharding": "Sharding",
"show-all": "Visa alla",
"show-less": "Visa mindre",
"site-description": "Ethereum är en global, decentraliserad plattform för pengar och nya slags applikationer. På Ethereum kan du skriva kod som styr pengar och bygga appar som är tillgängliga var som helst i världen.",
- "site-title": "ethereum.org",
"skip-to-main-content": "Hoppa till huvudinnehållet",
"smart-contracts": "Smarta kontrakt",
"stablecoins": "Stablecoins",
"stake-eth": "Stake ETH",
- "staking": "Staking",
- "style-guide": "Style guide",
- "solo": "Solo-staking",
+ "staking": "Utsättning",
+ "start-here": "Börja här",
+ "solo": "Soloutsättning",
+ "support": "Hjälp",
"terms-of-use": "Användarvillkor",
"translation-banner-body-new": "Du ser den här sidan på engelska eftersom vi inte har översatt den än. Hjälp oss att översätta detta innehåll.",
"translation-banner-body-update": "Det finns en ny version av den här sidan men den finns bara på engelska just nu. Hjälp oss att översätta den senaste versionen.",
@@ -185,21 +306,23 @@
"translation-banner-no-bugs-title": "Inga buggar här!",
"translation-banner-no-bugs-content": "Den här sidan översätts inte. Vi har avsiktligt lämnat den här sidan på engelska för tillfället.",
"translation-banner-no-bugs-dont-show-again": "Visa inte igen",
+ "translation-program": "Översättningsprogram",
"try-using-search": "Prova att använda sökfunktionen för att hitta det du letar efter eller",
"tutorials": "Handledningar",
"up": "Upp",
+ "use": "Använd",
"use-ethereum": "Använda Ethereum",
- "use-ethereum-menu": "Använd Ethereum-menyn",
- "user-experience": "User experience",
+ "use-ethereum-menu": "Använda Ethereum-menyn",
+ "use-menu": "Användningsmeny",
"verkle-trees": "Verkle-träd",
"wallets": "Plånböcker",
- "we-couldnt-find-that-page": "Vi kunde inte hitta den sidan",
+ "we-couldnt-find-that-page": "Vi kunde inte hitta sidan",
"web3": "Vad är Web3?",
"web3-title": "Web3",
"website-last-updated": "Webbplatsen senast uppdaterad",
- "what-is-ether": "Vad är ether (ETH)?",
+ "what-is-ether": "Vad är Ether (ETH)?",
"what-is-ethereum": "Vad är Ethereum?",
- "withdrawals": "Staking-uttag",
+ "withdrawals": "Utsättningsuttag",
"yes": "Ja",
"zero-knowledge-proofs": "Nollkunskapsbevis"
}
diff --git a/src/intl/se/page-languages.json b/src/intl/se/page-languages.json
index a2667712bbd..1f4a3dc4e92 100644
--- a/src/intl/se/page-languages.json
+++ b/src/intl/se/page-languages.json
@@ -1,12 +1,12 @@
{
- "page-languages-h1": "Språksupport",
+ "page-languages-h1": "Språkstöd",
"page-languages-interested": "Intresserad av att bidra?",
"page-languages-learn-more": "Lär dig mer om vårt översättningsprogram",
"page-languages-meta-desc": "Resurser till alla språk som stöds av ethereum.org och sätt att engagera sig som översättare.",
- "page-languages-meta-title": "ethereum.org översättningar",
- "page-languages-p1": "Ethereum är ett globalt projekt, och det är avgörande att ethereum.org är tillgängligt för alla, oavsett nationalitet eller språk. Vårt samhälle har arbetat hårt för göra denna vision till verklighet.",
+ "page-languages-meta-title": "Översättningar på ethereum.org",
+ "page-languages-p1": "Ethereum är ett globalt projekt, och det är avgörande att ethereum.org är tillgängligt för alla, oavsett nationalitet eller språk. Vår gemenskap har arbetat hårt för att göra denna vision till verklighet.",
"page-languages-translations-available": "ethereum.org är tillgänglig på följande språk",
- "page-languages-resources-paragraph": "Förutom att översätta ethereum.org-innehåll underhåller vi också en",
+ "page-languages-resources-paragraph": "Förutom att översätta ethereum.org-innehåll bibehåller vi också en",
"page-languages-resources-link": "kurerad lista över Ethereum-resurser på flera språk",
"page-languages-want-more-header": "Vill du se ethereum.org på ett annat språk?",
"page-languages-want-more-link": "Översättningsprogram",
@@ -17,10 +17,13 @@
"page-languages-translated": "översatt",
"page-languages-words": "ord",
"page-languages-recruit-community": "Hjälp oss att översätta ethereum.org.",
+ "langauge-am": "Amhariska",
"language-ar": "Arabiska",
"language-az": "Azerbajdzjanska",
+ "langauge-be": "Belarusiska",
"language-bg": "Bulgariska",
"language-bn": "Bengali",
+ "language-bs": "Bosniska",
"language-ca": "Katalanska",
"language-cs": "Tjeckiska",
"language-da": "Danska",
@@ -32,22 +35,29 @@
"language-fi": "Finska",
"language-fr": "Franska",
"language-gl": "Galiciska",
+ "language-gu": "Gujarati",
+ "language-he": "Hebreiska",
"language-hi": "Hindi",
"language-hr": "Kroatiska",
"language-hu": "Ungerska",
+ "language-hy-am": "Armeniska",
"language-id": "Indonesiska",
"language-ig": "Igbo",
"language-it": "Italienska",
"language-ja": "Japanska",
"language-ka": "Georgiska",
"language-kk": "Kazakiska",
+ "language-km": "Khmer",
+ "language-kn": "Kannada",
"language-ko": "Koreanska",
"language-lt": "Litauiska",
"language-ml": "Malayalam",
"language-mr": "Marathi",
"language-ms": "Malajiska",
"language-nb": "Norska",
+ "language-ne-np": "Nepali",
"language-nl": "Nederländska",
+ "language-pcm": "Nigeriansk pidgin",
"language-fil": "Filippinska",
"language-pl": "Polska",
"language-pt": "Portugisiska",
@@ -59,9 +69,13 @@
"language-sl": "Slovenska",
"language-sr": "Serbiska",
"language-sw": "Swahili",
+ "language-ta": "Tamil",
"language-th": "Thailändska",
+ "language-tk": "Turkmeniska",
"language-tr": "Turkiska",
"language-uk": "Ukrainska",
+ "language-ur": "Urdu",
+ "language-uz": "Uzbekiska",
"language-vi": "Vietnamesiska",
"language-zh": "Kinesiska (förenklad)",
"language-zh-tw": "Kinesiska (traditionell)"
diff --git a/src/intl/se/page-wallets-find-wallet.json b/src/intl/se/page-wallets-find-wallet.json
index ae542373527..9a1f0a3bae9 100644
--- a/src/intl/se/page-wallets-find-wallet.json
+++ b/src/intl/se/page-wallets-find-wallet.json
@@ -7,7 +7,6 @@
"page-find-wallet-meta-title": "Hitta en Ethereum-plånbok",
"page-find-wallet-title": "Hitta en plånbok",
"page-find-wallet-try-removing": "Försök att ta bort en eller två funktioner",
- "page-find-wallet-choose-to-compare": "Välj att jämföra",
"page-stake-eth": "Stake ETH",
"page-find-wallet-open-source": "Open source",
"page-find-wallet-open-source-desc": "Programvara med öppen källkod gör det möjligt för vem som helst att granska applikationens integritet och säkerhet",
@@ -16,8 +15,6 @@
"page-find-wallet-non-custodial-desc": "Plånböcker som inte kontrollerar dina privata nycklar",
"page-find-wallet-hardware-wallet-support": "Stöd för hårdvaruplånböcker",
"page-find-wallet-hardware-wallet-support-desc": "Plånböcker som kan anslutas till hårdvaruplånböcker för bättre säkerhet",
- "page-find-wallet-walletconnect": "WalletConnect",
- "page-find-wallet-walletconnect-desc": "Plånböcker som stöder WalletConnect för anslutning till dapps",
"page-find-wallet-rpc-importing": "RPC-import",
"page-find-wallet-rpc-importing-desc": "Plånböcker som stöder anpassade RPC-slutpunkter för anslutning till olika noder eller nätverk",
"page-find-wallet-nft-support": "Stöd från NFT",
@@ -36,8 +33,6 @@
"page-find-wallet-ens-support-desc": "Plånböcker med stöd för Ethereum Name Service (ENS)",
"page-find-wallet-token-importing": "Import av token",
"page-find-wallet-token-importing-desc": "Importera valfri ERC-20-token att använda i plånboken",
- "page-find-wallet-fee-optimization": "Optimering av avgifter",
- "page-find-wallet-fee-optimization-desc": "Stöd typ 2-transaktioner för optimerade gasavgifter och återbetalning av avgifter för oanvänd gas",
"page-find-wallet-buy-crypto": "Köpa krypto",
"page-find-wallet-buy-crypto-desc": "Köp krypto med fiat direkt i plånboken \n *Notera: att köpa krypto kan vara regionspecifikt",
"page-find-wallet-sell-for-fiat": "Sälj för fiat",
@@ -46,7 +41,6 @@
"page-find-wallet-multisig-desc": "Plånböcker som kräver flera signaturer för att godkänna en transaktion",
"page-find-wallet-social-recovery": "Social återhämtning",
"page-find-wallet-social-recovery-desc": "Plånböcker som tillåter vårdnadshavare att ändra signeringsnyckeln för plånböcker för smarta kontrakt",
- "page-find-wallet-token-support": "Stöd för tokens",
"page-find-wallet-features": "Funktioner",
"page-find-wallet-security": "Säkerhet",
"page-find-wallet-smart-contract": "Smart contract",
@@ -63,7 +57,6 @@
"page-find-wallet-chromium": "Krom",
"page-find-wallet-firefox": "Firefox",
"page-find-wallet-hardware": "Hårdvara",
- "page-find-wallet-hardware-desc": "Plånböcker för hårdvara",
"page-find-wallet-new-to-crypto-title": "Nybörjare på krypto",
"page-find-wallet-new-to-crypto-desc": "Du är en förstagångsanvändare som letar efter din första plånbok",
"page-find-wallet-nfts-title": "NFT:er",
@@ -74,21 +67,13 @@
"page-find-wallet-finance-desc": "Du är någon som använder DeFi och vill ha en plånbok som gör att du kan ansluta till DeFi-applikationer",
"page-find-wallet-developer-title": "Utvecklare",
"page-find-wallet-developer-desc": "Du är utvecklare och behöver en plånbok för att hjälpa till att utveckla och testa dappar",
- "page-find-wallet-persona-desc": "Välj den profil som matchar din typ av användare och filtrera plånbokslistan",
"page-find-wallet-filters": "Filter",
"page-find-wallet-active": "aktiv",
- "page-find-wallet-profile-filters": "Profilfilter",
- "page-find-wallet-feature-filters": "Filter med funktioner",
"page-find-wallet-footnote-1": "Plånböckerna på den här sidan är inte officiella rekommendationer utan tillhandahålls endast i informationssyfte.",
"page-find-wallet-footnote-2": "Beskrivningarna har tillhandahållits av plånboksprojekten själva.",
"page-find-wallet-footnote-3": "Vi lägger till produkter på denna sida baserat på kriterier i vår listningspolicy. Om du vill att vi ska lägga till en plånbok kan du skapa ett problem i GitHub.",
"page-find-wallet-mobile": "Mobil",
- "page-find-wallet-mobile-desc": "Plånböcker med mobilappar",
"page-find-wallet-desktop": "Skrivbord",
- "page-find-wallet-desktop-desc": "Plånböcker med desktop-appar",
"page-find-wallet-browser": "Webbläsare",
- "page-find-wallet-browser-desc": "Plånböcker med webbläsartillägg",
- "page-find-wallet-device": "Anordning",
- "page-find-choose-to-compare": "Välj att jämföra",
- "page-find-wallet-choose-features": "Välj funktioner"
+ "page-find-wallet-device": "Anordning"
}
diff --git a/src/intl/sk/common.json b/src/intl/sk/common.json
index 7d7e602c70e..cc5ccf59cb4 100644
--- a/src/intl/sk/common.json
+++ b/src/intl/sk/common.json
@@ -1,17 +1,29 @@
{
- "account-abstraction": "Abstrakcia účtu",
"about-ethereum-org": "O ethereum.org",
"about-us": "O nás",
+ "adding-desci-projects": "Pridávanie projektov Desci",
+ "adding-developer-tools": "Pridávanie nástrojov pre vývojárov",
+ "adding-exchanges": "Pridávanie zmenární",
+ "adding-glossary-terms": "Pridávanie pojmov do slovníka",
+ "adding-staking-products": "Pridávanie produktov pre staking",
+ "adding-wallets": "Pridávanie peňaženiek",
+ "account-abstraction": "Abstrakcia účtu",
+ "acknowledgements": "Poďakovania",
"aria-toggle-search-button": "Prepínač vyhľadávania",
"aria-toggle-menu-button": "Prepínač ponuky",
"beacon-chain": "Beacon Chain",
"bridges": "Mosty blockchainu",
+ "bug-bounty": "Odmena za nájdenie chýb",
+ "build": "Zostava",
+ "build-menu": "Ponuka Zostava",
"clear": "Vymazať",
"close": "Zavrieť",
"community": "Komunita",
"community-hub": "Komunitné centrum",
"community-menu": "Ponuka Komunita",
"contact": "Kontakt",
+ "content-buckets": "Kategórie",
+ "content-resources": "Zdroje",
"content-standardization": "Štandardizácia obsahu",
"contributing": "Príspevky",
"contributors": "Prispievatelia",
@@ -20,14 +32,17 @@
"copied": "Skopírované",
"copy": "Kopírovať",
"danksharding": "Danksharding",
- "dao-page": "Decentralizované autonómne organizácie (DAO)",
+ "dao-page": "DAO - Decentralizované autonómne organizácie",
"dark-mode": "Tmavé",
"data-provided-by": "Zdroj dát:",
- "decentralized-applications-dapps": "Decentralizované aplikácie (dapp)",
+ "decentralized-applications-dapps": "Dapp - Decentralizované aplikácie",
"decentralized-identity": "Decentralizovaná identita",
"decentralized-social-networks": "Decentralizovaná sociálna sieť",
- "decentralized-science": "Decentralizovaná veda (DeSci)",
- "defi-page": "Decentralizované finančníctvo (DeFi)",
+ "decentralized-science": "DeSci - Decentralizovaná veda",
+ "description": "Popis položky navigácie",
+ "defi-page": "DeFi - Decentralizované finančníctvo",
+ "design": "Dizajn",
+ "design-principles": "Princípy dizajnu",
"devcon": "Developerská konferencia",
"developers": "Vývojári",
"developers-home": "Domovská stránka pre vývojárov",
@@ -63,7 +78,7 @@
"ethereum-bug-bounty": "Program na lovenie chýb v ethereu",
"consensus-when-shipping": "Kedy vychádza?",
"ethereum-upgrades": "Vylepšenia Etherea",
- "ethereum-brand-assets": "Zdroje značky Ethereum",
+ "ethereum-brand-assets": "Značkové položky Ethereum",
"ethereum-online": "Online komunity",
"ethereum-events": "Udalosti Ethereum",
"ethereum-foundation": "Nadácia Etherea",
@@ -83,7 +98,7 @@
"feedback-card-prompt-tutorial": "Bol tento návod užitočný?",
"feedback-widget-thank-you-title": "Ďakujeme za názor!",
"feedback-widget-thank-you-subtitle": "Urobte túto stránku lepšou zodpovedaním na pár otázok.",
- "feedback-widget-thank-you-subtitle-ext": "Pokiaľ potrebujete pomoc môžte za obrátiť na komunitný kanál na Discorde.",
+ "feedback-widget-thank-you-subtitle-ext": "Ak potrebujete pomoc, môžete sa obrátiť na komunitu na Discord.",
"feedback-widget-thank-you-timing": "2–3 min",
"feedback-widget-thank-you-cta": "Krátky prieskum",
"find-wallet": "Nájsť peňaženku",
@@ -94,11 +109,10 @@
"grants": "Granty",
"grant-programs": "Programy ekosystémových grantov",
"guides": "Nápoveda",
- "guides-hub": "Centrum nápoved",
+ "guides-hub": "Návody",
"history-of-ethereum": "História Etherea",
"home": "Domov",
"how-ethereum-works": "Ako Ethereum funguje",
- "how-to-register-an-ethereum-account": "Ako si \"zaregistrovať\" účet Etherea",
"how-to-revoke-token-access": "Ako zrušiť prístup chytrého kontraktu k Vašim prostriedkom",
"how-to-swap-tokens": "Ako zameniť tokeny / kryptomeny",
"how-to-use-a-bridge": "Ako preniesť tokeny do siete druhej úrovne",
@@ -128,11 +142,105 @@
"loading-error-try-again-later": "Nemožné načítať údaje. Skúste to znova.",
"logo": "logo",
"mainnet-ethereum": "Mainnet Ethereum",
+ "merge": "Zlúčenie",
"more": "Viac",
- "nav-developers": "Pre vývojárov",
+ "nav-about-description": "Verejný projekt s otvoreným zdrojovým kódom pre komunitu Ethereum",
+ "nav-advanced-description": "Zoznámte sa so zložitejšími témami",
+ "nav-advanced-label": "Pre pokročilých",
+ "nav-basics-description": "Pochopenie základov Etherea",
+ "nav-basics-label": "Základy",
+ "nav-bridges-description": "Web3 sa vyvinul do ekosystému primárnych blockchainov L1 a škálovacích riešení L2",
+ "nav-builders-home-description": "Príručka programátora pre Ethereum — programátori programátorom",
+ "nav-builders-home-label": "Domovská stránka pre programátorov",
+ "nav-contribute-description": "Ak chcete pomôcť, toto vám poskytne návod",
+ "nav-contribute-label": "Prispievanie na portál ethereum.org",
+ "nav-dao-description": "Členské komunity bez centralizovanej autority",
+ "nav-dapps-description": "Preskúmajte bohatý ekosystém aplikácií využívajúcich Ethereum",
+ "nav-defi-description": "Globálna, otvorená alternatíva k tradičnému finančnému trhu",
+ "nav-desci-description": "Globálna, otvorená alternatíva k súčasnému vedeckému systému",
+ "nav-desoc-description": "Platformy založené na blockchaine pre sociálnu interakciu a tvorbu obsahu",
"nav-developers-docs": "Vývojárske dokumenty",
+ "nav-developers": "Vývojári",
+ "nav-did-description": "Vydávajte a vlastnite svoje jedinečné decentralizované identifikátory",
+ "nav-docs-description": "Dokumenty, ktoré vám pomôžu pochopiť a vytvoriť systémy pomocou Etherea",
+ "nav-docs-design-description": "Opis jedinečných výziev v oblasti dizajnu web3, osvedčených postupov a skúseností používateľov",
+ "nav-docs-design-label": "Základy dizajnu UX/UI",
+ "nav-docs-foundation-description": "Hlavné princípy vývoja na platforme Ethereum",
+ "nav-docs-overview-description": "Vaša domovská stránka s dokumentmi pre vývojárov",
+ "nav-docs-stack-description": "Pochopenie všetkých podrobností o Ethereum stack",
+ "nav-eip-description": "Štandardy, ktoré špecifikujú nové funkcie alebo procesy",
+ "nav-eip-label": "EIP - Návrhy na zlepšenie Etherea",
+ "nav-emerging-description": "Spoznajte ďalšie novšie prípady použitia Etherea",
+ "nav-enterprise-description": "Obchodné aplikácie pre Ethereum",
+ "nav-ethereum-org-description": "Táto webová stránka je vytvorená komunitou — pridajte sa k nám a prispievajte aj vy",
+ "nav-ethereum-wallets-description": "Aplikácia na interakciu s vaším účtom Ethereum",
+ "nav-events-description": "Decentralizácia a možnosť účasti pre každého",
+ "nav-events-irl-description": "Každý mesiac sa konajú významné osobné a online podujatia zamerané na Ethereum",
+ "nav-events-label": "Komunity a podujatia",
+ "nav-events-online-description": "Súčasťou týchto online komunít sú stovky tisíc nadšencov Etherea",
+ "nav-find-wallet-description": "Peňaženky, ktoré umožňujú používať kryptomeny",
+ "nav-find-wallet-label": "Vyberte si peňaženku",
+ "nav-gas-fees-description": "Ako sa vypočítavajú poplatky za transakcie ETH",
+ "nav-gas-fees-label": "Poplatky",
+ "nav-get-eth-description": "Na používanie aplikácií Ethereum potrebujete ether (ETH)",
+ "nav-get-started-description": "Vaše prvé kroky pri používaní Etherea",
+ "nav-governance-description": "Proces aktualizácie protokolu Etherea",
+ "nav-governance-label": "Správa",
+ "nav-grants-description": "Zoznam zostavený našou komunitou týkajúci sa projektov, ktoré poskytujú grantové programy",
+ "nav-guide-create-account-description": "Účet Ethereum si môže kedykoľvek vytvoriť ktokoľvek, a to zadarmo pomocou aplikácie s peňaženkou",
+ "nav-guide-revoke-access-description": "Zostaňte v bezpečí pri interakcii s inteligentnými kontraktmi a aplikáciami v ekosystéme Ethereum",
+ "nav-guide-revoke-access-label": "Ako zrušiť prístup k inteligentným kontraktom",
+ "nav-guide-use-wallet-description": "Naučte sa ovládať všetky základné funkcie peňaženky",
+ "nav-guide-use-wallet-label": "Ako používať peňaženku",
+ "nav-guides-description": "Praktické podrobné príručky, ktoré vám pomôžu začať",
+ "nav-guides-label": "Organizačné príručky",
+ "nav-history-description": "Časová os všetkých hlavných verzií a aktualizácií",
+ "nav-history-label": "Technická história Etherea",
+ "nav-layer-2-description": "Lacnejšie a rýchlejšie transakcie pre Ethereum",
+ "nav-learn-by-coding-description": "Nástroje, ktoré vám pomôžu experimentovať s Ethereom",
+ "nav-local-env-description": "Výber a nastavenie vývojárskeho Ethereum stack",
+ "nav-mainnet-description": "Podnikové blockchainové aplikácie môžu byť vytvárané vo verejnej sieti Ethereum Mainnet",
+ "nav-nft-description": "Spôsob, ako reprezentovať čokoľvek unikátne ako majetok založený na Ethereu",
+ "nav-open-research-description": "Jednou z hlavných predností Etherea je jeho aktívna komunita výskumníkov",
+ "nav-open-research-label": "Otvoriť prieskum",
+ "nav-overview-description": "Všetko o vzdelávaní v oblasti Etherea",
+ "nav-participate-overview-description": "Prehľad o tom, ako sa zapojiť",
"nav-primary": "Primárne",
- "nft-page": "Non-fungible tokeny (NFT)",
+ "nav-quizzes-description": "Zistite, ako dobre rozumiete ethereu a kryptomenám",
+ "nav-quizzes-label": "Otestujte si svoje znalosti",
+ "nav-refi-description": "Alternatívny ekonomický systém založený na princípoch obnovy",
+ "nav-research-description": "Procesy používané na zlepšenie Etherea",
+ "nav-research-label": "Výskum a vývoj",
+ "nav-roadmap-description": "Cesta k väčšej škálovateľnosti, bezpečnosti a udržateľnosti pre Ethereum",
+ "nav-roadmap-future-description": "Posilnenie Etherea ako robustnej a decentralizovanej siete",
+ "nav-roadmap-future-label": "Zabezpečenie do budúcnosti",
+ "nav-roadmap-label": "Plán cesty",
+ "nav-roadmap-scaling-description": "Sieťové aktualizácie na ďalšie zníženie transakčných nákladov a zvýšenie rýchlosti",
+ "nav-roadmap-security-description": "Zabezpečenie odolnosti Etherea voči rôznym druhom útokov aj v budúcnosti",
+ "nav-roadmap-security-label": "Zlepšené zabezpečenie",
+ "nav-roadmap-ux-description": "Používanie Etherea sa musí zjednodušiť",
+ "nav-run-a-node-description": "Staňte na úplne samostatnými pri pomáhaní v zabezpečení siete",
+ "nav-security-description": "Naučte sa osvedčené postupy pri používaní kryptomien",
+ "nav-smart-contracts-description": "Základné stavebné bloky ekosystému Ethereum",
+ "nav-stablecoins-description": "Stablecoiny sú tokenmi Etherea, ktoré sú navrhnuté tak, aby mali fixnú hodnotu",
+ "nav-stake-description": "Získajte odmeny za zabezpečenie Etherea",
+ "nav-stake-label": "Staking",
+ "nav-staking-home-description": "Prehľad rôznych možností stakingu",
+ "nav-staking-pool-description": "Využívajte staking, získavajte odmeny s ľubovoľnou sumou ETH a pridajte sa k ostatným",
+ "nav-staking-pool-label": "Stakovanie v pooloch",
+ "nav-staking-saas-label": "Stakovanie ako služba",
+ "nav-staking-solo-label": "Sólo stakovanie",
+ "nav-start-building-description": "Užitočné informácie pre nováčikov",
+ "nav-translation-program-description": "Spoločné úsilie o preklad webovej lokality ethereum.org do všetkých jazykov",
+ "nav-tutorials-description": "Zoznam komunitných výukových materiálov",
+ "nav-use-cases-description": "Objavte rôzne nápady na využitie Etherea",
+ "nav-what-is-ether-description": "Mena aplikácií Etherea",
+ "nav-what-is-ethereum-description": "Pochopte, čím je Ethereum výnimočné",
+ "nav-what-is-web3-label": "Čo je Web3?",
+ "nav-what-is-web3-description": "Alternatíva k centralizovaným monopolom určujúcim pravidlá",
+ "nav-whitepaper-description": "Pôvodný dokument o Ethereu, ktorý napísal Vitalik Buterin v roku 2014",
+ "nav-zkp-description": "Spôsob, ako dokázať platnosť výroku bez odhalenia samotného výroku",
+ "nft-page": "NFT - Non-fungible tokeny",
"nfts": "NFT-čka",
"no": "Nie",
"on-this-page": "Na tejto stránke",
@@ -140,6 +248,8 @@
"page-developers-aria-label": "Ponuka pre vývojárov",
"page-index-meta-title": "Domov",
"page-last-updated": "Posledná aktualizácia stránky",
+ "participate": "Pripoj sa",
+ "participate-menu": "Ponuka účasti",
"pbs": "Oddelenie navrhovateľ-staviteľ",
"pools": "Stakovanie v pooloch",
"privacy-policy": "Zásady ochrany osobných údajov",
@@ -150,10 +260,11 @@
"refresh": "Obnovte stránku.",
"return-home": "návrat domov",
"roadmap": "Cestovná mapa Etherea",
+ "research": "Výskum",
+ "research-menu": "Ponuka Výskum",
"resources": "Zdroje prekladu",
- "regenerative-finance": "Regeneratívne finančníctvo (ReFi)",
+ "regenerative-finance": "ReFi - Regeneratívne finančníctvo",
"run-a-node": "Spustiť uzol",
- "rollup-component-website": "Website",
"rollup-component-developer-docs": "Vývojárske dokumenty",
"rollup-component-technology-and-risk-summary": "Zhrnutie technológií a rizík",
"scaling": "Škálovanie",
@@ -164,11 +275,11 @@
"search-box-blank-state-text": "Hľadajte!",
"search-eth-address": "Toto vyzerá ako ethereová adresa. Neposkytujeme dáta o špecifických adresách. Vyskúšajte ju vyhľadať cez prehliadač blokov ako",
"search-no-results": "Neboli nájdené žiadne výsledky pre hľadaný výraz",
+ "security": "Zabezpečenie",
"single-slot-finality": "Konečnosť jedného slotu",
"statelessness": "Bezstavovosť",
"see-contributors": "Zobraziť prispievateľov",
"set-up-local-env": "Nastavenie miestneho prostredia",
- "sharding": "Sharding",
"show-all": "Zobraziť všetko",
"show-less": "Zobraziť menej",
"site-description": "Ethereum je globálna decentralizovaná platforma pre peniaze a nové typy aplikácii. V Ethereu môžete tvoriť kód, ktorý bude riadiť peniaze, a zostavovať aplikácie, ktoré budú prístupné z celého sveta.",
@@ -179,8 +290,8 @@
"stake-eth": "Stakovanie ETH",
"staking": "Stakovanie",
"start-here": "Začnite tu",
- "style-guide": "Style guide",
"solo": "Sólo stakovanie",
+ "support": "Podpora",
"terms-of-use": "Podmienky používania",
"translation-banner-body-new": "Táto stránka sa zobrazuje v angličtine, pretože sme ju ešte nestihli preložiť. Pomôžte nám s jej prekladom.",
"translation-banner-body-update": "K dispozícii je nová verzia tejto stránky. V súčasnosti je však len v angličtine. Pomôžte nám s prekladom najnovšej verzie.",
@@ -191,17 +302,18 @@
"translation-banner-no-bugs-title": "Tu niesu žiadne chyby!",
"translation-banner-no-bugs-content": "Táto stránka nebola preložená. Zatiaľ sme ponechali túto stránku v Angličtine.",
"translation-banner-no-bugs-dont-show-again": "Znova nezobrazovať",
+ "translation-program": "Program prekladania",
"try-using-search": "Pokúste sa použiť vyhľadávač na nájdenie toho, čo hľadáte",
"tutorials": "Kurzy",
"up": "Hore",
+ "use": "Používanie",
"use-ethereum": "Používanie Etherea",
"use-ethereum-menu": "Ponuka Používanie Etherea",
- "user-experience": "User experience",
+ "use-menu": "Ponuka Použiť",
"verkle-trees": "Verkle stromy",
"wallets": "Peňaženky",
"we-couldnt-find-that-page": "Túto stránku sme nenašli",
"web3": "Čo je Web3?",
- "web3-title": "Web3",
"website-last-updated": "Posledná aktualizácia stránky",
"what-is-ether": "Čo je Ether (ETH)?",
"what-is-ethereum": "Čo je to Ethereum?",
diff --git a/src/intl/sk/page-languages.json b/src/intl/sk/page-languages.json
index 09a9ff766d0..09beb799890 100644
--- a/src/intl/sk/page-languages.json
+++ b/src/intl/sk/page-languages.json
@@ -1,49 +1,64 @@
{
"page-languages-h1": "Podpora jazykov",
"page-languages-interested": "Zaujímate sa o možnosť prispieť?",
- "page-languages-learn-more": "Dozvedieť sa viac o našom programe prekladania",
+ "page-languages-learn-more": "Zistite viac o našom programe prekladania",
"page-languages-meta-desc": "Zdroje k všetkým podporovaným jazykom ethereum.org a možnostiach podieľať sa na prekladoch.",
"page-languages-meta-title": "jazykové preklady ethereum.org",
- "page-languages-p1": "Ethereum je globálny projekt a je dôležité, že ethereum.ogr je prístupný komukoľvek, bez ohľadu na národnosť alebo jazyk. Naša komunita dbá na pretavenie tejto vízie do reality.",
- "page-languages-translations-available": "ethereum.org je dostupné v nasledujúcich jazykoch",
- "page-languages-resources-paragraph": "Navyše na preklad obsahu ethereum.org tiež spravujeme",
+ "page-languages-p1": "Ethereum je globálny projekt a je dôležité, že lokalita ethereum.org je prístupná komukoľvek bez ohľadu na národnosť alebo jazyk. Naša komunita dbá na pretavenie tejto vízie do reality.",
+ "page-languages-translations-available": "lokalita ethereum.org je dostupná v nasledujúcich jazykoch",
+ "page-languages-resources-paragraph": "Okrem prekladania obsahu lokality ethereum.org tiež spravujeme",
"page-languages-resources-link": "zoznam zdrojov Ethereum v mnohých jazykoch",
- "page-languages-want-more-header": "Chcete vidieť ethereum.org v inom jazyku?",
- "page-languages-want-more-link": "Programe prekladania",
- "page-languages-want-more-paragraph": "ethereum.org prekladatelia vždy prekladajú stránky do čo najviac jazykov ako je to možné. Ak chcete vedieť na čom pracujú práve teraz alebo na pripojenie sa k nim, čítajte o našom",
+ "page-languages-want-more-header": "Chcete vidieť lokalitu ethereum.org v inom jazyku?",
+ "page-languages-want-more-link": "Program prekladania",
+ "page-languages-want-more-paragraph": "Prekladatelia lokality ethereum.org vždy prekladajú stránky do čo najväčšieho počtu jazykov. Ak chcete zistiť, na čom práve pracujú, alebo sa k nim pridať, prečítajte si o",
"page-languages-filter-label": "Zoznam filtrov",
"page-languages-filter-placeholder": "Písaním zadajte filter",
"page-languages-browser-default": "Predvolené nastavenie prehliadača",
"page-languages-translated": "preložené",
"page-languages-words": "slová",
"page-languages-recruit-community": "Pomôžte nám preložiť webovú lokalitu ethereum.org.",
+ "langauge-am": "Amharčina",
"language-ar": "Arabčina",
+ "language-az": "Azerbajdžančina",
+ "langauge-be": "Bieloruština",
"language-bg": "Bulharčina",
"language-bn": "Bengálčina",
+ "language-bs": "Bosniačtina",
"language-ca": "Katalánčina",
"language-cs": "Čeština",
+ "language-da": "Dánčina",
"language-de": "Nemčina",
"language-el": "Gréčtina",
"language-en": "Angličtina",
"language-es": "Španielčina",
"language-fa": "Perzština",
- "language-fi": "Fínština",
+ "language-fi": "Fínčina",
"language-fr": "Francúzština",
+ "language-gl": "Galícijčina",
+ "language-gu": "Gudžarátčina",
+ "language-he": "Hebrejčina",
"language-hi": "Hindčina",
"language-hr": "Chorvátčina",
"language-hu": "Maďarčina",
- "language-id": "Indonézština",
+ "language-hy-am": "Arménčina",
+ "language-id": "Indonézčina",
"language-ig": "Igbo",
"language-it": "Taliančina",
"language-ja": "Japončina",
"language-ka": "Gruzínčina",
+ "language-kk": "Kazaština",
+ "language-km": "Khmérčina",
+ "language-kn": "Kannadčina",
"language-ko": "Kórejčina",
"language-lt": "Litovčina",
"language-ml": "Malajálamčina",
"language-mr": "Maráthčina",
"language-ms": "Malajčina",
"language-nb": "Nórčina",
+ "language-ne-np": "Nepálčina",
"language-nl": "Holandčina",
+ "language-pcm": "Nigerijský pidžin",
+ "language-fil": "Filipínčina",
"language-pl": "Polština",
"language-pt": "Portugalčina",
"language-pt-br": "Portugalčina (Brazília)",
@@ -54,9 +69,13 @@
"language-sl": "Slovinčina",
"language-sr": "Srbčina",
"language-sw": "Svahilčina",
+ "language-ta": "Tamilčina",
"language-th": "Thajčina",
+ "language-tk": "Turkménčina",
"language-tr": "Turečtina",
"language-uk": "Ukrajinčina",
+ "language-ur": "Urdčina",
+ "language-uz": "Uzbečtina",
"language-vi": "Vietnamčina",
"language-zh": "Zjednodušená čínština",
"language-zh-tw": "Tradičná čínština"
diff --git a/src/intl/sk/page-wallets-find-wallet.json b/src/intl/sk/page-wallets-find-wallet.json
index 28e7528b2f7..af2615dfd0f 100644
--- a/src/intl/sk/page-wallets-find-wallet.json
+++ b/src/intl/sk/page-wallets-find-wallet.json
@@ -7,7 +7,6 @@
"page-find-wallet-meta-title": "Vyhľadajte Ethereum peňaženku",
"page-find-wallet-title": "Nájsť peňaženku",
"page-find-wallet-try-removing": "Skúste jeden, alebo dva parametre",
- "page-find-wallet-choose-to-compare": "Vyberte na porovnanie",
"page-stake-eth": "Stakovanie ETH",
"page-find-wallet-open-source": "Open source",
"page-find-wallet-open-source-desc": "Programy s otvoreným kódom umožňujú komukoľvek kontrolovať integritu a bezpečnosť aplikácie",
@@ -16,8 +15,6 @@
"page-find-wallet-non-custodial-desc": "Peňaženky, ktoré nemajú pod kontrolou vaše privátne kľúče",
"page-find-wallet-hardware-wallet-support": "Podpora pre hardvérové peňaženky",
"page-find-wallet-hardware-wallet-support-desc": "Peňaženky, ktoré môžu byť pripojené k hardvérovým peňaženkám za účelom zvýšenia bezpečnosti",
- "page-find-wallet-walletconnect": "WalletConnect",
- "page-find-wallet-walletconnect-desc": "Peňaženky, ktoré podporujú použitie rozhrania WalletConnect za účelom pripojenia k decentralizovaným aplikáciám - dapps",
"page-find-wallet-rpc-importing": "RPC importing",
"page-find-wallet-rpc-importing-desc": "Peňaženky umožňujúce vytvorenie súkromných RPC bodov za účelom pripojenia rozdielnych uzlov, alebo sietí",
"page-find-wallet-nft-support": "Podpora NFT",
@@ -36,8 +33,6 @@
"page-find-wallet-ens-support-desc": "Peňaženky, ktoré podporujú službu Ethereum Name Service (ENS), ktorá umožňuje zobrazenie vami zvoleného mena, ako názvu účtu namiesto kombinácie čísel a písmen",
"page-find-wallet-token-importing": "Importovanie tokenov",
"page-find-wallet-token-importing-desc": "Importujte do peňaženky akýkoľvek ERC-20 token",
- "page-find-wallet-fee-optimization": "Optimalizácia poplatkov",
- "page-find-wallet-fee-optimization-desc": "Podpora transakcií druhého typu, ktoré umožňujú optimalizáciu sieťových poplatkov a refundáciu nepoužitých sieťových poplatkov",
"page-find-wallet-buy-crypto": "Nakúp kryptomeny",
"page-find-wallet-buy-crypto-desc": "Nákup kryptomien za bežné peniaze priamo v peňaženke * Upozornenie: nákup kryptomien môže byť regionálne obmedzený",
"page-find-wallet-sell-for-fiat": "Predaj za bežné peniaze",
@@ -46,7 +41,6 @@
"page-find-wallet-multisig-desc": "Peňaženky vyžadujúce viacero podpisov na autorizáciu transakcií",
"page-find-wallet-social-recovery": "Social recovery",
"page-find-wallet-social-recovery-desc": "Peňaženky umožňujúce správcom zmenu podpisových kľúčov peňaženiek chytrých kontraktov",
- "page-find-wallet-token-support": "Podpora tokenov",
"page-find-wallet-features": "Funkcie",
"page-find-wallet-security": "Zabezpečenie",
"page-find-wallet-smart-contract": "Smart contract",
@@ -63,7 +57,6 @@
"page-find-wallet-chromium": "Chromium",
"page-find-wallet-firefox": "Firefox",
"page-find-wallet-hardware": "Hardvér",
- "page-find-wallet-hardware-desc": "Hardvérové peňaženky",
"page-find-wallet-new-to-crypto-title": "Nový v kryptosvete",
"page-find-wallet-new-to-crypto-desc": "Ste používateľ, ktorý po prvý raz hľadá svoju digitálnu peňaženku",
"page-find-wallet-nfts-title": "NFT-čka",
@@ -74,21 +67,13 @@
"page-find-wallet-finance-desc": "Ste používateľom decentralizovaných financií (DeFi) a potrebujete peňaženku, ktorá vám umožní pripojenie k DeFi aplikáciám",
"page-find-wallet-developer-title": "Vývojár",
"page-find-wallet-developer-desc": "Ste vývojár a potrebujete peňaženku na tvorbu a testovanie dapps",
- "page-find-wallet-persona-desc": "Vyberte si profil, ktorý zodpovedá vášmu typu užívateľa a filtrujte zoznam peňaženiek",
"page-find-wallet-filters": "Filtre",
"page-find-wallet-active": "spustiť",
- "page-find-wallet-profile-filters": "Profilové filtre",
- "page-find-wallet-feature-filters": "Filtre vlastností",
"page-find-wallet-footnote-1": "Peňaženky uvedené na tejto stránke niesu oficiálne schválené a sú zobrazené len na informatívne účely.",
"page-find-wallet-footnote-2": "Ich popisy boli poskytnuté priamo ich prevádzkovateľmi.",
"page-find-wallet-footnote-3": "Produkty na tejto stránke pridávame na základe ktitérií našej politiky. Pokiaľ si želáte pridať peňaženku, dajte nám vedieť v GitHub.",
"page-find-wallet-mobile": "Mobil",
- "page-find-wallet-mobile-desc": "Peňaženky s mobilnými aplikáciami",
"page-find-wallet-desktop": "Počítač",
- "page-find-wallet-desktop-desc": "Peňaženky s počítačovými aplikáciami",
"page-find-wallet-browser": "Internetový prehliadač",
- "page-find-wallet-browser-desc": "Peňaženky s rozšíreniami internetových prehliadačov",
- "page-find-wallet-device": "Zariadenia",
- "page-find-choose-to-compare": "Vyberte na porovnanie",
- "page-find-wallet-choose-features": "Vybrať vlastnosť"
+ "page-find-wallet-device": "Zariadenia"
}
diff --git a/src/intl/sl/common.json b/src/intl/sl/common.json
index 626cd0f80ec..fadf6ca6f9f 100644
--- a/src/intl/sl/common.json
+++ b/src/intl/sl/common.json
@@ -1,17 +1,29 @@
{
- "account-abstraction": "Abstrakcija računa",
"about-ethereum-org": "O ethereum.org",
"about-us": "O nas",
+ "adding-desci-projects": "Dodajanje projektov DeSci",
+ "adding-developer-tools": "Dodajanje orodij za razvijalce",
+ "adding-exchanges": "Dodajanje borz",
+ "adding-glossary-terms": "Dodajanje izrazov v slovar",
+ "adding-staking-products": "Dodajanje izdelkov za zastavljanje",
+ "adding-wallets": "Dodajanje denarnic",
+ "account-abstraction": "Abstrakcija računa",
+ "acknowledgements": "Zahvale",
"aria-toggle-search-button": "Preklopni gumb za iskanje",
"aria-toggle-menu-button": "Preklopni gumb za meni",
"beacon-chain": "Oddajniška veriga",
"bridges": "Mostovi blokovnih verig",
+ "bug-bounty": "Nagrade za odpravljanje napak",
+ "build": "Razvijanje",
+ "build-menu": "Meni za razvijanje",
"clear": "Počisti",
"close": "Zapri",
"community": "Skupnost",
"community-hub": "Središče skupnosti",
"community-menu": "Meni skupnosti",
"contact": "Stik",
+ "content-buckets": "Vsebinska vedra",
+ "content-resources": "Viri vsebin",
"content-standardization": "Standardizacija vsebine",
"contributing": "Prispevajte",
"contributors": "Sodelujoči",
@@ -20,14 +32,17 @@
"copied": "Kopirano",
"copy": "Kopiraj",
"danksharding": "Dankovo drobljenje",
- "dao-page": "Decentralizirane avtonomne organizacije (DAO)",
+ "dao-page": "DAO - Decentralizirane avtonomne organizacije",
"dark-mode": "Temno",
"data-provided-by": "Vir podatkov:",
- "decentralized-applications-dapps": "Decentralizirane aplikacije (dapps)",
+ "decentralized-applications-dapps": "Dapps - Decentralizirane aplikacije",
"decentralized-identity": "Decentralizirana identiteta",
"decentralized-social-networks": "Decentralizirana družabna omrežja",
- "decentralized-science": "Decentralizirana znanost (DeSci)",
- "defi-page": "Decentralizirane finance (DeFi)",
+ "decentralized-science": "DeSci - Decentralizirana znanost",
+ "description": "Opis elementa za krmarjenje",
+ "defi-page": "DeFi - Decentralizirane finance",
+ "design": "Oblikovanje",
+ "design-principles": "Načela oblikovanja",
"devcon": "Devcon",
"developers": "Razvijalci",
"developers-home": "Začetna stran za razvijalce",
@@ -83,7 +98,7 @@
"feedback-card-prompt-tutorial": "Je bila ta vadnica uporabna?",
"feedback-widget-thank-you-title": "Hvala za povratne informacije.",
"feedback-widget-thank-you-subtitle": "Odgovorite na nekaj vprašanj in to stran še izboljšajte.",
- "feedback-widget-thank-you-subtitle-ext": "Če potrebujete pomoč, se lahko obrnete na skupnost na našem portalu Discord.",
+ "feedback-widget-thank-you-subtitle-ext": "Če potrebujete pomoč, se lahko obrnete na skupnost na našem Discordu.",
"feedback-widget-thank-you-timing": "2–3 min",
"feedback-widget-thank-you-cta": "Odpri kratko anketo",
"find-wallet": "Poišči denarnico",
@@ -94,11 +109,11 @@
"grants": "Finančne spodbude",
"grant-programs": "Program za podporo ekosistemu",
"guides": "Vodiči",
- "guides-hub": "Središče vodičev",
+ "guides-hub": "Navodila",
"history-of-ethereum": "Zgodovina Ethereuma",
"home": "Začetna stran",
"how-ethereum-works": "Kako deluje Ethereum",
- "how-to-register-an-ethereum-account": "Kako \"registrirati\" račun Ethereum",
+ "how-to-create-an-ethereum-account": "Kako \"ustvariti\" Ethereum račun",
"how-to-revoke-token-access": "Kako pametni pogodbi preklicati dostop do vaših kripto sredstev",
"how-to-swap-tokens": "Kako zamenjati žetone",
"how-to-use-a-bridge": "Kako premostiti žetone na 2. raven",
@@ -128,11 +143,109 @@
"loading-error-try-again-later": "Ni bilo mogoče naložiti podatkov. Ponovno poskusite kasneje.",
"logo": "logotip",
"mainnet-ethereum": "Glavno omrežje Ethereum",
+ "merge": "Združitev",
"more": "Več",
- "nav-developers": "Razvijalci",
+ "nav-about-description": "Javen odprtokodni projekt za Ethereumovo skupnost",
+ "nav-advanced-description": "Spoznajte tudi bolj zapletene teme",
+ "nav-advanced-label": "Dodatno",
+ "nav-basics-description": "Razumite osnove Ethereuma",
+ "nav-basics-label": "Osnove",
+ "nav-bridges-description": "Web3 se je razvil v ekosistem primarnih verig blokov na 1. ravni in rešitev za širjenje na 2. ravni",
+ "nav-builders-home-description": "Priročnik za razvijalce, ki delajo z Ethereumom – od razvijalcev za razvijalce",
+ "nav-builders-home-label": "Domača stran za razvijalce",
+ "nav-contribute-description": "Če potrebujete pomoč, jo lahko dobite tukaj",
+ "nav-contribute-label": "Prispevanje k skupnosti ethereum.org",
+ "nav-dao-description": "Skupnosti v lasti članov brez centralizirane oblasti",
+ "nav-dapps-description": "Raziščite bogat ekosistem aplikacij, ki uporabljajo Ethereum",
+ "nav-defi-description": "Globalna, odprta alternativa tradicionalnemu finančnemu trgu",
+ "nav-desci-description": "Globalna, odprta alternativa obstoječemu sistemu znanosti",
+ "nav-desoc-description": "Platforme, ki temeljijo na verigah blokov, za družabno interakcijo in ustvarjanje vsebin",
"nav-developers-docs": "Dokumentacija za razvijalce",
+ "nav-developers": "Razvijalci",
+ "nav-did-description": "Izdajajte in si lastite edinstvene decentralizirane identifikatorje",
+ "nav-docs-description": "Dokumentacija, ki vam bo pomagala razumeti Ethereum in razvijati z njim",
+ "nav-docs-design-description": "Opis edinstvenih oblikovalskih izzivov, najboljših praks in vpogledov v raziskave uporabnikov, povezanih z web3",
+ "nav-docs-design-label": "Osnove oblikovanja uporabniške izkušnje/vmesnika",
+ "nav-docs-foundation-description": "Najpomembnejše osnove za razvijanje v Ethereumu",
+ "nav-docs-foundation-label": "Temeljne teme",
+ "nav-docs-overview-description": "Vaša domača stran z dokumentacijo za razvijalce",
+ "nav-docs-stack-description": "Razumite vse podrobnosti Ethereumovega sklada",
+ "nav-docs-stack-label": "Sklad Ethereum",
+ "nav-eip-description": "Standardi za opredeljevanje novih funkcij ali procesov",
+ "nav-eip-label": "EIP - Predlogi za izboljšanje Ethereuma",
+ "nav-emerging-description": "Spoznajte druge novejše primere uporabe Ethereuma",
+ "nav-enterprise-description": "Poslovne aplikacije za Ethereum",
+ "nav-ethereum-org-description": "To spletno mesto napaja skupnost – pridružite se nam in prispevajte",
+ "nav-ethereum-wallets-description": "Aplikacija za interakcijo z vašim računom Ethereum",
+ "nav-events-description": "Decentralizacija in svoboda sodelovanja za vsakogar",
+ "nav-events-irl-description": "Vsak mesec se odvijajo dogodki o Ethereumu v živo in v spletu",
+ "nav-events-label": "Skupnosti in dogodki",
+ "nav-events-online-description": "V teh spletnih skupnostih je zbrano več sto tisoč Ethereumovih zanesenjakov",
+ "nav-find-wallet-description": "Denarnice vam omogočajo uporabo kriptovalut",
+ "nav-find-wallet-label": "Izberite denarnico",
+ "nav-gas-fees-description": "Kako se izračunajo provizije za transakcije z ETH",
+ "nav-get-eth-description": "Če želite uporabljati Ethereumove aplikacije, potrebujete ether (ETH)",
+ "nav-get-started-description": "Prvi koraki uporabe Ethereuma",
+ "nav-governance-description": "Postopek nadgradnje protokola Ethereum",
+ "nav-governance-label": "Upravljanje",
+ "nav-grants-description": "Seznam projektov s programi financiranja z nepovratnimi sredstvi, ki ga je pregledala skupnost",
+ "nav-guide-create-account-description": "Z aplikacijo denarnice lahko kdor koli kadar koli brezplačno ustvari račun Ethereum",
+ "nav-guide-create-account-label": "Kako ustvariti Ethereum račun",
+ "nav-guide-revoke-access-description": "Varna interakcija s pametnimi pogodbami in aplikacijami v Ethereumovem ekosistemu",
+ "nav-guide-revoke-access-label": "Preklic dostopa za pametne pogodbe",
+ "nav-guide-use-wallet-description": "Spoznajte, kako uporabljate vse osnovne funkcije denarnice",
+ "nav-guide-use-wallet-label": "Kako uporabljati denarnico",
+ "nav-guides-description": "Priročni postopni koraki za začetek uporabe",
+ "nav-guides-label": "Navodila",
+ "nav-history-description": "Časovnica vseh večjih razcepov in posodobitev",
+ "nav-history-label": "Tehnična zgodovina Ethereuma",
+ "nav-layer-2-description": "Cenejše in hitrejše transakcije v Ethereumovem omrežju",
+ "nav-learn-by-coding-description": "Orodja, ki vam pomagajo pri eksperimentiranju z Ethereumom",
+ "nav-local-env-description": "Izberite in nastavite sklad za razvoj v Ethereumu",
+ "nav-mainnet-description": "Poslovne aplikacije z verigami blokov lahko razvijate v javnem glavnem Ethereumovem omrežju",
+ "nav-nft-description": "Način predstavitve česar koli edinstvenega kot sredstva, ki temelji na Ethereumu",
+ "nav-open-research-description": "Ena glavnih Ethereumovih prednosti je njegova aktivna raziskovalna skupnost",
+ "nav-open-research-label": "Odprte raziskave",
+ "nav-overview-description": "Vsa gradiva za izobraževanje o Ethereumu",
+ "nav-overview-label": "Pregled",
+ "nav-participate-overview-description": "Pregled načinov sodelovanja",
"nav-primary": "Primarna",
- "nft-page": "Nezamenljivi žetoni (NFT-ji)",
+ "nav-private-description": "Razvijalski viri za zasebni Ethereum za podjetja",
+ "nav-quizzes-description": "Preverite, kako dobro poznate Ethereum in kriptovalute",
+ "nav-quizzes-label": "Preverite svoje znanje",
+ "nav-refi-description": "Nadomestni ekonomski sistem, zgrajen na načelih regeneracije",
+ "nav-research-description": "Postopki za izboljševanje Ethereuma",
+ "nav-research-label": "Raziskave in razvoj",
+ "nav-roadmap-description": "Pot do večje razširljivosti, varnosti in trajnosti za Ethereum",
+ "nav-roadmap-future-description": "Vzpostavljanje Ethereuma kot robustnega in decentraliziranega omrežja",
+ "nav-roadmap-future-label": "Zaščita za prihodnost",
+ "nav-roadmap-label": "Načrt",
+ "nav-roadmap-scaling-description": "Posodobitve omrežja za dodatno znižanje stroškov transakcij in hitrejše delovanje",
+ "nav-roadmap-security-description": "Zagotavljanje, da Ethereum tudi v prihodnje ostane odporen na vse vrste napadov",
+ "nav-roadmap-security-label": "Izboljšana varnost",
+ "nav-roadmap-ux-description": "Uporaba Ethereuma mora biti preprostejša",
+ "nav-run-a-node-description": "Postanite popolnoma suvereni, medtem ko pomagate varovati omrežje",
+ "nav-security-description": "Naučite se najboljših praks pri uporabi kriptovalut",
+ "nav-smart-contracts-description": "Osnovni gradniki Ethereumovega ekosistema",
+ "nav-stablecoins-description": "Stabilni kovanci so Ethereumovi žetoni, zasnovani tako, da ohranijo fiksno vrednost",
+ "nav-stake-description": "Zaslužite nagrade, tako da zavarujete Ethereum",
+ "nav-stake-label": "Zastavljanje",
+ "nav-staking-home-description": "Pregled različnih možnosti zastavljanja",
+ "nav-staking-pool-description": "Pridružite se drugim, zastavite poljubno količino ETH in si prislužite nagrade",
+ "nav-staking-pool-label": "Skupno zastavljanje",
+ "nav-staking-saas-label": "Zastavljanje s storitvijo",
+ "nav-staking-solo-label": "Samostojno zastavljanje",
+ "nav-start-building-description": "Koristne informacije za novince",
+ "nav-translation-program-description": "Skupna prizadevanja za prevod spletnega mesta ethereum.org v vse jezike",
+ "nav-tutorials-description": "Pregledan seznam vadnic skupnosti",
+ "nav-use-cases-description": "Odkrijte različne zamisli za uporabo Ethereuma",
+ "nav-what-is-ether-description": "Valuta aplikacij na Ethereumu",
+ "nav-what-is-ethereum-description": "Razumite, zakaj je Ethereum poseben",
+ "nav-what-is-web3-label": "Kaj je Web3?",
+ "nav-what-is-web3-description": "Alternativa centraliziranim monopolistom, ki narekujejo pravila",
+ "nav-whitepaper-description": "Izvirna bela knjiga o Ethereumu, ki jo je leta 2014 napisal Vitalik Buterin",
+ "nav-zkp-description": "Način dokazovanja veljavnosti izjave brez razkrivanja same izjave",
+ "nft-page": "NFT-ji - Nezamenljivi žetoni",
"nfts": "NFT-ji",
"no": "Ne",
"on-this-page": "Na tej strani",
@@ -140,6 +253,8 @@
"page-developers-aria-label": "Meni za razvijalce",
"page-index-meta-title": "Začetna stran",
"page-last-updated": "Zadnja posodobitev strani",
+ "participate": "Sodelovanje",
+ "participate-menu": "Meni za sodelovanje",
"pbs": "Ločitev med predlagateljem in sestavljalcem",
"pools": "Skupno zastavljanje",
"privacy-policy": "Pravilnik o zasebnosti",
@@ -150,8 +265,10 @@
"refresh": "Osvežite stran.",
"return-home": "vrni se domov",
"roadmap": "Načrt strani Ethereum",
+ "research": "Raziskave",
+ "research-menu": "Meni za raziskave",
"resources": "Prevajalski viri",
- "regenerative-finance": "Regenerativne finance (ReFi)",
+ "regenerative-finance": "ReFi - Regenerativne finance",
"run-a-node": "Upravljajte vozlišče",
"rollup-component-website": "Spletna stran",
"rollup-component-developer-docs": "Dokumentacija za razvijalce",
@@ -164,6 +281,7 @@
"search-box-blank-state-text": "Začnite iskati!",
"search-eth-address": "To je videti kot naslov Ethereum. Ne zagotavljamo podatkov za posamezne naslove. Poskusite ga poiskati v pregledovalniku blokov, kot je",
"search-no-results": "Ni rezultatov iskanja",
+ "security": "Varnost",
"statelessness": "Brezdomovinstvo",
"see-contributors": "Pokaži sodelavce",
"set-up-local-env": "Nastavitev lokalnega okolja",
@@ -171,7 +289,6 @@
"show-all": "Prikaži vse",
"show-less": "Prikaži manj",
"site-description": "Ethereum je globalna, decentralizirana platforma za denar in nove vrste aplikacij. V Ethereumu lahko pišete programsko kodo, ki upravlja denar, in gradite aplikacije, ki so dostopne povsod po svetu.",
- "site-title": "ethereum.org",
"skip-to-main-content": "Preskoči na glavno vsebino",
"smart-contracts": "Pametne pogodbe",
"stablecoins": "Stabilni kovanci",
@@ -180,6 +297,7 @@
"start-here": "Začnite tukaj",
"style-guide": "Slogovni priročnik",
"solo": "Samostojno zastavljanje",
+ "support": "Podpora",
"terms-of-use": "Pogoji uporabe",
"translation-banner-body-new": "To stran vidite v angleščini, ker je še nismo prevedli. Pomagajte nam prevesti to vsebino.",
"translation-banner-body-update": "Na voljo je nova različica te strani, vendar je zaenkrat samo v angleščini. Pomagajte nam prevesti najnovejšo različico.",
@@ -190,12 +308,14 @@
"translation-banner-no-bugs-title": "Brez napak!",
"translation-banner-no-bugs-content": "Ta stran se ne prevaja. Namenoma smo jo za zdaj pustili v angleščini.",
"translation-banner-no-bugs-dont-show-again": "Ne prikaži več",
+ "translation-program": "Program prevajanja",
"try-using-search": "Da bi našli, kar iščete, poskusite z uporabo iskalnika ali",
"tutorials": "Vadnice",
"up": "Gor",
+ "use": "Uporaba",
"use-ethereum": "Uporaba Ethereuma",
"use-ethereum-menu": "Meni Uporaba Ethereuma",
- "user-experience": "User experience",
+ "use-menu": "Meni za uporabo",
"verkle-trees": "Verklejeva drevesa",
"wallets": "Denarnice",
"we-couldnt-find-that-page": "Te strani ni mogoče najti",
diff --git a/src/intl/sl/page-languages.json b/src/intl/sl/page-languages.json
index d257c5ba85d..05b6827b773 100644
--- a/src/intl/sl/page-languages.json
+++ b/src/intl/sl/page-languages.json
@@ -7,7 +7,7 @@
"page-languages-p1": "Ethereum je globalen projekt in ključno je, da je ethereum.org na voljo vsem ne glede na njihovo narodnost ali jezik. Naša skupnost si močno prizadeva uresničiti to vizijo.",
"page-languages-translations-available": "ethereum.org je na voljo v naslednjih jezikih",
"page-languages-resources-paragraph": "Poleg tega, da prevajamo vsebino ethereum.org, prav tako vzdržujemo",
- "page-languages-resources-link": "upravljan seznam Ethereum virov v številnih jezikih",
+ "page-languages-resources-link": "upravljan seznam Ethereumovih virov v številnih jezikih",
"page-languages-want-more-header": "Ali želite ethereum.org v drugem jeziku?",
"page-languages-want-more-link": "Program prevajanja",
"page-languages-want-more-paragraph": "Prevajalci ethereum.org vedno prevajajo strani v čim več jezikov. Če si želite ogledati, na čem trenutno delajo, ali se želite prijaviti in se jim pridružiti, preberite več o našem",
@@ -17,10 +17,13 @@
"page-languages-translated": "prevedeno",
"page-languages-words": "besede",
"page-languages-recruit-community": "Pomagajte nam prevesti ethereum.org.",
+ "langauge-am": "Amharščina",
"language-ar": "Arabščina",
"language-az": "Azerbajdžanščina",
- "language-bg": "Bulgraščina",
+ "langauge-be": "Beloruščina",
+ "language-bg": "Bolgarščina",
"language-bn": "Bengalščina",
+ "language-bs": "Bosanščina",
"language-ca": "Katalonščina",
"language-cs": "Češčina",
"language-da": "Danščina",
@@ -32,21 +35,30 @@
"language-fi": "Finščina",
"language-fr": "Francoščina",
"language-gl": "Galicijščina",
+ "language-gu": "Gudžaratski jezik",
+ "language-he": "Hebrejščina",
"language-hi": "Hindijščina",
"language-hr": "Hrvaščina",
"language-hu": "Madžarščina",
- "language-id": "Indoneziščina",
+ "language-hy-am": "Armenščina",
+ "language-id": "Indonezijščina",
"language-ig": "Igbo",
"language-it": "Italijanščina",
"language-ja": "Japonščina",
"language-ka": "Gruzijščina",
+ "language-kk": "Kazahstanščina",
+ "language-km": "Kmerščina",
+ "language-kn": "Kanareščina",
"language-ko": "Korejščina",
"language-lt": "Litovščina",
"language-ml": "Malajalščina",
- "language-mr": "Marathi",
+ "language-mr": "Maratščina",
"language-ms": "Malezijščina",
"language-nb": "Norveščina",
+ "language-ne-np": "Nepalščina",
"language-nl": "Nizozemščina",
+ "language-pcm": "Nigerijski pidgin",
+ "language-fil": "Filipinščina",
"language-pl": "Poljščina",
"language-pt": "Portugalščina",
"language-pt-br": "Portugalščina (Brazilija)",
@@ -57,9 +69,13 @@
"language-sl": "Slovenščina",
"language-sr": "Srbščina",
"language-sw": "Svahili",
+ "language-ta": "Tamilščina",
"language-th": "Tajščina",
+ "language-tk": "Turkmenščina",
"language-tr": "Turščina",
"language-uk": "Ukrajinščina",
+ "language-ur": "Urdu",
+ "language-uz": "Uzbeščina",
"language-vi": "Vietnamščina",
"language-zh": "Kitajščina (poenostavljena)",
"language-zh-tw": "Kitajščina (tradicionalna)"
diff --git a/src/intl/sr/common.json b/src/intl/sr/common.json
index ad80401aa17..c9887d9fee2 100644
--- a/src/intl/sr/common.json
+++ b/src/intl/sr/common.json
@@ -1,17 +1,29 @@
{
- "account-abstraction": "Apstrakcija naloga",
"about-ethereum-org": "O ethereum.org",
"about-us": "O nama",
+ "adding-desci-projects": "Dodavanje Desci projekata",
+ "adding-developer-tools": "Dodavanje alata za programere",
+ "adding-exchanges": "Dodavanje menjačnica",
+ "adding-glossary-terms": "Dodavanje termina u rečnik",
+ "adding-staking-products": "Dodavanje ulagačkih proizvoda",
+ "adding-wallets": "Dodavanje novčanika",
+ "account-abstraction": "Apstrakcija naloga",
+ "acknowledgements": "Zahvalnost",
"aria-toggle-search-button": "Dugme za pretragu",
"aria-toggle-menu-button": "Dugme menija",
"beacon-chain": "Beacon lanac",
"bridges": "Blokčejn mostovi",
+ "bug-bounty": "Lov na bagove",
+ "build": "Gradnja",
+ "build-menu": "Meni gradnje",
"clear": "Obriši",
"close": "Zatvori",
"community": "Zajednica",
"community-hub": "Čvorište zajednice",
"community-menu": "Meni Zajednice",
"contact": "Kontakt",
+ "content-buckets": "Grupe sadržaja",
+ "content-resources": "Resursi za sadržaj",
"content-standardization": "Standardizacija sadržaja",
"contributing": "Doprinesi",
"contributors": "Saradnici",
@@ -20,14 +32,17 @@
"copied": "Kopirano",
"copy": "Kopiraj",
"danksharding": "Fragmentacija podataka za skalabilnost (danksharding)",
- "dao-page": "Decentralizovane autonomne organizacije (DAO)",
+ "dao-page": "DAO - Decentralizovane autonomne organizacije",
"dark-mode": "Tamno",
"data-provided-by": "Izvor podataka:",
- "decentralized-applications-dapps": "Decentralizovane aplikacije (dapps)",
+ "decentralized-applications-dapps": "Dapps - Decentralizovane aplikacije",
"decentralized-identity": "Decentralizovan identitet",
"decentralized-social-networks": "Decentralizovane društvene mreže",
- "decentralized-science": "Decentralizovana nauka (DeSci)",
- "defi-page": "Decentralizovane finansije (DeFi)",
+ "decentralized-science": "DeSci - Decentralizovana nauka",
+ "description": "Opis za stavku navigacije",
+ "defi-page": "DeFi - Decentralizovane finansije",
+ "design": "Dizajn",
+ "design-principles": "Principi dizajna",
"devcon": "Devcon",
"developers": "Programeri",
"developers-home": "Kuća programera",
@@ -51,7 +66,7 @@
"documentation": "Dokumentacija",
"down": "Nadolе",
"ecosystem": "Ekosistem",
- "edit-page": "Izmeni stranicu",
+ "edit-page": "Izmenite stranicu",
"ef-blog": "Blog Ethereum fondacije",
"eips": "Predlozi za poboljšanje Ethereum-a",
"energy-consumption": "Ethereum potrošnja energije",
@@ -83,22 +98,22 @@
"feedback-card-prompt-tutorial": "Da li vam je ovaj tutorijal bio od pomoći?",
"feedback-widget-thank-you-title": "Hvala na povratnim informacijama!",
"feedback-widget-thank-you-subtitle": "Poboljšajte ovu stranicu tako što ćete odgovoriti na nekoliko pitanja.",
- "feedback-widget-thank-you-subtitle-ext": "Ako vam je potrebna pomoć, možete se obratiti zajednici na našem Diskordu.",
+ "feedback-widget-thank-you-subtitle-ext": "Ako vam je potrebna pomoć, možete se obratiti zajednici na našem Discordu.",
"feedback-widget-thank-you-timing": "2–3 minute",
"feedback-widget-thank-you-cta": "Otvori kratku anketu",
"find-wallet": "Pronađi novčanik",
"future-proofing": "Sigurno za budućnost",
"get-eth": "Uzmi ETH",
"get-involved": "Uključi se",
- "get-started": "Započni",
+ "get-started": "Počnite",
"grants": "Odobrenja",
"grant-programs": "Program grantova za podršku ekosistemu",
"guides": "Vodiči",
- "guides-hub": "Centar za vodiče",
+ "guides-hub": "Vodiči",
"history-of-ethereum": "Istorija Ethereum-a",
"home": "Početna",
"how-ethereum-works": "Kako Ethereum funkcioniše",
- "how-to-register-an-ethereum-account": "Kako registrovati Ethereum nalog",
+ "how-to-create-an-ethereum-account": "Kako da kreirate Ethereum nalog",
"how-to-revoke-token-access": "Kako ukinuti pristup pametnog ugovora vašim kripto fondovima",
"how-to-swap-tokens": "Kako razmeniti tokene",
"how-to-use-a-bridge": "Kako premostiti tokene na nivo 2",
@@ -128,11 +143,111 @@
"loading-error-try-again-later": "Nije moguće učitati podatke. Pokušajte ponovo kasnije.",
"logo": "logo",
"mainnet-ethereum": "Mainnet Ethereum",
+ "merge": "Spajanje",
"more": "Više",
- "nav-developers": "Programeri",
+ "nav-about-description": "Javni, projekat otvorenog koda za Ethereum zajednicu",
+ "nav-advanced-description": "Saznajte više od složenijim temama",
+ "nav-advanced-label": "Napredno",
+ "nav-basics-description": "Shvatite osnove Ethereuma",
+ "nav-basics-label": "Osnove",
+ "nav-bridges-description": "Web3 se razvio u ekosistem primarnih L1 lanaca blokova i L2 rešenja za skaliranje",
+ "nav-builders-home-description": "Priručnik za graditelje za Ethereum – od graditelja, za graditelje",
+ "nav-builders-home-label": "Početna stanica za graditelje",
+ "nav-contribute-description": "Ukoliko želite da pomognete, ovo će vam biti vodič",
+ "nav-contribute-label": "Doprinos ethereum.org",
+ "nav-dao-description": "Zajednice koje su u vlasništvu članova bez centralizovanog autoriteta",
+ "nav-dapps-description": "Istražite bogat ekosistem aplikacija koristeći Ethereum",
+ "nav-defi-description": "Globalna, otvorena alternativa tradicionalnom finansijskom tržištu",
+ "nav-desci-description": "Globalna, otvorena alternativa trenutnom naučnom sistemu",
+ "nav-desoc-description": "Platforme bazirane na lancima blokova za društvenu interakciju i kreiranje sadržaja",
"nav-developers-docs": "Dokumentacija za programere",
+ "nav-developers": "Programeri",
+ "nav-did-description": "Izdajte i posedujte sopstvene jedinstvene decentralizovane identifikatore",
+ "nav-docs-description": "Dokumenti koji će vam pomoći da razumete i gradite uz Ethereum",
+ "nav-docs-design-description": "Opis jedinstvenih dizajnerskih izazova mreže web3, najbolje prakse i uvidi istraživanja korisnika",
+ "nav-docs-design-label": "Osnove dizajna korisničkog doživljaja/korisničkog interfejsa",
+ "nav-docs-foundation-description": "Suštinske osnove za razvoj na Ethereumu",
+ "nav-docs-foundation-label": "Temeljne teme",
+ "nav-docs-overview-description": "Početna stranica za dokumente za programere",
+ "nav-docs-stack-description": "Shvatite sve detalje Ethereum steka",
+ "nav-docs-stack-label": "Ethereum stack",
+ "nav-eip-description": "Standardi koji određuju nove funkcije ili procese",
+ "nav-eip-label": "EIP - Predlozi za poboljšanje Ethereuma",
+ "nav-emerging-description": "Upoznajte druge novije slučajeve korišćenja za Ethereum",
+ "nav-emerging-label": "Načini primene",
+ "nav-enterprise-description": "Poslovne aplikacije za Ethereum",
+ "nav-ethereum-org-description": "Ovaj veb-sajt vodi zajednica – pridružite nam se, pa i sami dajte svoj doprinos",
+ "nav-ethereum-wallets-description": "Aplikacija za interakciju sa Ethereum nalogom",
+ "nav-events-description": "Decentralizacija i sloboda učešća za svakoga",
+ "nav-events-irl-description": "Svakog meseca se održavaju velika Ethereum dešavanja, kako uz lično prisustvo, tako i na mreži",
+ "nav-events-label": "Zajednice i događaji",
+ "nav-events-online-description": "Na stotine hiljada Ethereum entuzijasta stvara u ovim zajednicama na mreži",
+ "nav-find-wallet-description": "Novčanici vam omogućavaju korišćenje kriptovaluta",
+ "nav-find-wallet-label": "Odaberite novčanik",
+ "nav-gas-fees-description": "Kako se računaju provizije za transakciju ETH",
+ "nav-get-eth-description": "Potreban vam je ether (ETH) da biste koristili Ethereum aplikacije",
+ "nav-get-started-description": "Prvi korak ka korišćenju Ethereuma",
+ "nav-governance-description": "Postupak uključen u nadogradnju Ethereum protokola",
+ "nav-governance-label": "Nadzor",
+ "nav-grants-description": "Uređena lista koju je pripremila naša zajednica i koja se odnosi na projekte sa obezbeđenim programima finansiranja grantova",
+ "nav-guide-create-account-description": "Svako može da kreira Ethereum nalog bilo kad, besplatno uz aplikaciju novčanika",
+ "nav-guide-create-account-label": "Kako kreirati Ethereum nalog",
+ "nav-guide-revoke-access-description": "Ostanite bezbedni pri interakciji sa pametnim ugovorima i aplikacijama u ekosistemu Ethereum",
+ "nav-guide-revoke-access-label": "Kako da opozovete pristup pametnom ugovoru",
+ "nav-guide-use-wallet-description": "Saznajte kako da upravljate svim osnovnim funkcijama novčanika",
+ "nav-guide-use-wallet-label": "Kako koristiti novčanik",
+ "nav-guides-description": "Praktični, postupni vodiči kao pomoć pri prvim koracima",
+ "nav-guides-label": "Vodiči",
+ "nav-history-description": "Vremenska linija svih glavnih račvanja i ažuriranja",
+ "nav-history-label": "Tehnička istorija Ethereuma",
+ "nav-layer-2-description": "Jeftinije i brže transakcije za Ethereum",
+ "nav-learn-by-coding-description": "Alatke za olakšavanje eksperimentisanja sa Ethereumom",
+ "nav-local-env-description": "Odaberite i postavite Ethereum razvojni stek",
+ "nav-mainnet-description": "Na javnoj Ethereum glavnoj mreži mogu da se grade aplikacije lanca blokova za preduzeća",
+ "nav-nft-description": "Način da se bilo šta jedinstveno prikaže kao sredstvo zasnovano na Ethereumu",
+ "nav-open-research-description": "Jedna od primarnih prednosti Ethereuma je njegova aktivna istraživačka zajednica",
+ "nav-open-research-label": "Otvori istraživanje",
+ "nav-overview-description": "Sve u vezi sa Ethereum edukacijom",
+ "nav-overview-label": "Pregled",
+ "nav-participate-overview-description": "Pregled načina učestvovanja",
"nav-primary": "Primarna",
- "nft-page": "Nezamenljivi (NFT) tokeni",
+ "nav-private-description": "Resursi za programere za Ethereum kod privatnih poduzeća",
+ "nav-quizzes-description": "Otkrijte koliko dobro se razumete u Ethereum i kriptovalute",
+ "nav-quizzes-label": "Testirajte svoje znanje",
+ "nav-refi-description": "Alternativa ekonomskom sistemu izgrađena na regenerativnim principima",
+ "nav-research-description": "Postupci koji se koriste za poboljšanje Ethereuma",
+ "nav-research-label": "Istraživanje i razvoj",
+ "nav-roadmap-description": "Putanja do većeg rasta, bezbednosti i održivosti za Ethereum",
+ "nav-roadmap-future-description": "Učvršćivanje Ethereuma kao snažne i decentralizovane mreže",
+ "nav-roadmap-future-label": "Sigurno za budućnost",
+ "nav-roadmap-label": "Plan",
+ "nav-roadmap-scaling-description": "Ažuriranja mreže radi daljeg smanjenja troškova transakcije i brzine",
+ "nav-roadmap-security-description": "Vodite računa da Ethereum ostane otporan na sve vrste napada u budućnosti",
+ "nav-roadmap-security-label": "Poboljšana bezbednost",
+ "nav-roadmap-ux-description": "Korišćenje Ethereuma treba da se pojednostavi",
+ "nav-run-a-node-description": "Postanite potpuno suvereni dok pomažete u obezbeđivanju mreže",
+ "nav-security-description": "Saznajte koje su najbolje prakse pri korišćenju kriptovalute",
+ "nav-smart-contracts-description": "Osnovni gradivni blokovi Ethereum ekosistema",
+ "nav-stablecoins-description": "Stabilni novčići su Ethereum tokeni osmišljeni da ostanu na fiksnoj vrednosti",
+ "nav-stake-description": "Zaradite nagrade za obezbeđivanje Ethereuma",
+ "nav-stake-label": "Ulog",
+ "nav-staking-home-description": "Pregled različitih opcija za ulaganje",
+ "nav-staking-pool-description": "Stavite ulog i zarađujte nagrade sa bilo kojom količinom ETH-a tako što ćete se pridružiti sa drugima",
+ "nav-staking-pool-label": "Udruženo ulaganje",
+ "nav-staking-saas-description": "Treća lica upravljaju radom vašeg klijenta za validatore",
+ "nav-staking-saas-label": "Ulaganje uz uslugu",
+ "nav-staking-solo-label": "Samostalno ulaganje",
+ "nav-start-building-description": "Korisne informacije za novajlije",
+ "nav-translation-program-description": "Zajednički napor da se ethereum.org prevede na sve jezike",
+ "nav-tutorials-description": "Uređena lista tutorijala zajednice",
+ "nav-use-cases-description": "Otkrijte različite ideje za korišćenje Ethereuma",
+ "nav-what-is-ether-description": "Valuta Ethereumovih aplikacija",
+ "nav-what-is-ethereum-description": "Uvidite zbog čega je Ethereum poseban",
+ "nav-what-is-web3-label": "Šta je Web3?",
+ "nav-what-is-web3-description": "Alternativa centralizovanim monopolima koji diktiraju pravila",
+ "nav-whitepaper-description": "Originalni beli papir za Ethereum napisan 2014. godine, autor Vitalik Buterin",
+ "nav-zkp-description": "Način da se dokaže verodostojnost izvoda bez pokazivanja samog izvoda",
+ "nft-page": "NFT - Nezamenljivi tokeni",
"nfts": "Nezamenjivi tokeni",
"no": "Ne",
"on-this-page": "Na ovoj stranici",
@@ -140,6 +255,7 @@
"page-developers-aria-label": "Meni programera",
"page-index-meta-title": "Početna",
"page-last-updated": "Stranica poslednji put ažurirana",
+ "participate-menu": "Meni učestvovanja",
"pbs": "Razdvajanje predlagača-graditelja",
"pools": "Udruženo ulaganje",
"privacy-policy": "Politika privatnosti",
@@ -150,8 +266,10 @@
"refresh": "Molimo osvežite stranicu.",
"return-home": "povratak na početnu stranicu",
"roadmap": "Plan mreže Ethereum",
+ "research": "Istraživanje",
+ "research-menu": "Meni istraživanja",
"resources": "Resursi za prevođenje",
- "regenerative-finance": "Regenerativne finansije (ReFi)",
+ "regenerative-finance": "ReFi - Regenerativne finansije",
"run-a-node": "Pokretanje čvora",
"rollup-component-website": "Veb-sajt",
"rollup-component-developer-docs": "Dokumentacija za programere",
@@ -164,11 +282,12 @@
"search-box-blank-state-text": "Traži dalje!",
"search-eth-address": "Ovo izgleda kao Ethereum adresa. Ne pružamo podatke specifične adresama. Pokušajte pretragu na block exploreru kao",
"search-no-results": "Nema rezultata za vašu pretragu",
+ "security": "Bezbednost",
"single-slot-finality": "Jednokratna konačnost",
"statelessness": "Stanje bez pripadnosti",
"see-contributors": "Pogledaj saradnike",
- "set-up-local-env": "Postavi lokalno okruženje",
"sharding": "Usitnjavanje",
+ "set-up-local-env": "Postavite lokalno okruženje",
"show-all": "Prikaži sve",
"show-less": "Prikaži manje",
"site-description": "Ethereum je globalna, decentralizovana platforma za novac i nove vrste aplikacija. Na Ethereumu možete pisati kod koji kontroliše novac i graditi aplikacije dostupne bilo gde u svetu.",
@@ -181,6 +300,7 @@
"start-here": "Počni ovde",
"style-guide": "Stilski priručnik",
"solo": "Samostalno ulaganje",
+ "support": "Podrška",
"terms-of-use": "Uslovi korišćenja",
"translation-banner-body-new": "Ovu stranicu čitate na engleskom jer je još nismo preveli. Pomozite nam da prevedemo ovaj sadržaj.",
"translation-banner-body-update": "Postoji novija verzija ove stranice ali je trenutno dostupna samo na engleskom. Pomozite nam da prevedemo poslednju verziju.",
@@ -191,17 +311,18 @@
"translation-banner-no-bugs-title": "Ovo nije greška!",
"translation-banner-no-bugs-content": "Ova stranica nije prevođena. Namerno smo ostavili ovu stranicu na engleskom jeziku za sada.",
"translation-banner-no-bugs-dont-show-again": "Ne prikazuj ponovo",
+ "translation-program": "Program Prevođenja",
"try-using-search": "Pokušajte da koristite funkciju pretrage da biste pronašli to što tražite",
"tutorials": "Tutorijali",
"up": "Gore",
+ "use": "Korišćenje",
"use-ethereum": "Koristi Ethereum",
"use-ethereum-menu": "Koristi Ethereum meni",
- "user-experience": "User experience",
+ "use-menu": "Meni korišćenja",
"verkle-trees": "Verkle stabla",
"wallets": "Novčanici",
"we-couldnt-find-that-page": "Nismo uspeli da pronađemo tu stranicu",
"web3": "Šta je Web3?",
- "web3-title": "Web3",
"website-last-updated": "Websajt poslednji put ažuriran",
"what-is-ether": "Šta je ether (ETH)?",
"what-is-ethereum": "Šta je Ethereum?",
diff --git a/src/intl/sr/page-languages.json b/src/intl/sr/page-languages.json
index cb7f5a3cca3..3225aa5bb5b 100644
--- a/src/intl/sr/page-languages.json
+++ b/src/intl/sr/page-languages.json
@@ -17,10 +17,13 @@
"page-languages-translated": "prevedeno",
"page-languages-words": "reči",
"page-languages-recruit-community": "Pomozite nam da prevedemo ethereum.org.",
+ "langauge-am": "Amharski",
"language-ar": "Arapski",
"language-az": "Azerbejdžanski",
+ "langauge-be": "Beloruski",
"language-bg": "Bugarski",
"language-bn": "Bеngalski",
+ "language-bs": "Bosanski",
"language-ca": "Katalonski",
"language-cs": "Češki",
"language-da": "Danski",
@@ -37,6 +40,7 @@
"language-hi": "Hindi",
"language-hr": "Hrvatski",
"language-hu": "Mađarski",
+ "language-hy-am": "Jermenski",
"language-id": "Indonežanski",
"language-ig": "Igbo",
"language-it": "Italijanski",
@@ -44,12 +48,14 @@
"language-ka": "Gruzijski",
"language-kk": "Kazaški",
"language-km": "Kmerski",
+ "language-kn": "Kanada",
"language-ko": "Korejski",
"language-lt": "Litvanski",
"language-ml": "Malajalamski",
"language-mr": "Marati",
"language-ms": "Malajski",
"language-nb": "Norvеški",
+ "language-ne-np": "Nepalski",
"language-nl": "Holandski",
"language-pcm": "nigerijski pidžin",
"language-fil": "Filipinski",
@@ -65,6 +71,7 @@
"language-sw": "Svahili",
"language-ta": "tamilski",
"language-th": "Tajlandski",
+ "language-tk": "Turkmenski",
"language-tr": "Turski",
"language-uk": "Ukrajinski",
"language-ur": "urdu",
diff --git a/src/intl/sr/page-wallets-find-wallet.json b/src/intl/sr/page-wallets-find-wallet.json
index aa7b1f8ea58..90b7fc2aad9 100644
--- a/src/intl/sr/page-wallets-find-wallet.json
+++ b/src/intl/sr/page-wallets-find-wallet.json
@@ -7,7 +7,6 @@
"page-find-wallet-meta-title": "Pronađite Ethereum novčanik",
"page-find-wallet-title": "Pronađite novčanik",
"page-find-wallet-try-removing": "Pokušajte ukloniti karakteristike",
- "page-find-wallet-choose-to-compare": "Vrednost za poređenje",
"page-stake-eth": "Uložite ETH",
"page-find-wallet-open-source": "Otvoreni kod",
"page-find-wallet-open-source-desc": "Softver otvorenog koda omogućava svakome da kontroliše integritet i bezbednost aplikacije",
@@ -16,8 +15,6 @@
"page-find-wallet-non-custodial-desc": "Novčanici koji ne kontrolišu vaše privatne interese",
"page-find-wallet-hardware-wallet-support": "Podrška za hardverski novčanik",
"page-find-wallet-hardware-wallet-support-desc": "Novčanici koji se mogu povezati sa hardverskim novčanikom radi bolje bezbednosti",
- "page-find-wallet-walletconnect": "Povezzivanje sa otvorenim protokolom",
- "page-find-wallet-walletconnect-desc": "Novčanici koji podržavaju sadržaj novčanika za povezivanje sa decentralizovanom aplikacijom",
"page-find-wallet-rpc-importing": "Procedura uvođenja poziva na daljinu",
"page-find-wallet-rpc-importing-desc": "Novčanici koji podržavaju prilagođene RPC krajnje tačke za povezivanje sa različitim čvorovima ili mrežama",
"page-find-wallet-nft-support": "NFT podrška",
@@ -36,8 +33,6 @@
"page-find-wallet-ens-support-desc": "Novčanici koji podržavaju Ethereum Name Service (ENS)",
"page-find-wallet-token-importing": "Uvoz tokena",
"page-find-wallet-token-importing-desc": "Uvezite bilo koji ERC-20 token za korištenje u novčaniku",
- "page-find-wallet-fee-optimization": "Optimizacija nadoknade",
- "page-find-wallet-fee-optimization-desc": "Podrška za transakcije tipa 2 za optimizovane naknade za gas i povraćaj naknada za neiskorišćeni gas",
"page-find-wallet-buy-crypto": "Kupite kripto",
"page-find-wallet-buy-crypto-desc": "Kupite kriptovalute direktno u novčaniku putem valuta fiat\n * Napomena: Kupovina kriptovaluta može zavisiti od regije",
"page-find-wallet-sell-for-fiat": "Prodaj za fiat valute",
@@ -46,7 +41,6 @@
"page-find-wallet-multisig-desc": "Novčanici koji zahtevaju više potpisa za odobrenje transakcije",
"page-find-wallet-social-recovery": "Povraćaj naloga pomoću drugih ljudi",
"page-find-wallet-social-recovery-desc": "Novčanici koji omogućavaju vlasnicima da promene potpisni ključ za novčanike pametnih ugovora",
- "page-find-wallet-token-support": "Podrška za tokene",
"page-find-wallet-features": "Karakteristike",
"page-find-wallet-security": "Bezbednost",
"page-find-wallet-smart-contract": "Pametni ugovor",
@@ -63,7 +57,6 @@
"page-find-wallet-chromium": "Chromium",
"page-find-wallet-firefox": "Firefox",
"page-find-wallet-hardware": "Hardver",
- "page-find-wallet-hardware-desc": "Hardverski novčanik",
"page-find-wallet-new-to-crypto-title": "Početnik u kriptu",
"page-find-wallet-new-to-crypto-desc": "Novi ste korisnik i tražite Vaš prvi novčanik",
"page-find-wallet-nfts-title": "Nezamenjivi tokeni",
@@ -74,21 +67,13 @@
"page-find-wallet-finance-desc": "Vi ste osoba koja koristi DeFi i želite novčanik koji omogućava povezivanje sa DeFi aplikacijama",
"page-find-wallet-developer-title": "Programer",
"page-find-wallet-developer-desc": "Vi ste programer i treba Vam novčanik za pomoć pri razvijanju i testiranju decentralizovanih aplikacija",
- "page-find-wallet-persona-desc": "Izaberite profil koji odgovara vašem tipu korisnika i filtrirajte listu novčanika",
"page-find-wallet-filters": "Filteri",
"page-find-wallet-active": "aktivno",
- "page-find-wallet-profile-filters": "Filteri profila",
- "page-find-wallet-feature-filters": "Filteri funkcija",
"page-find-wallet-footnote-1": "Novčanici navedeni na ovoj stranici nisu zvanične preporuke i služe samo u informativne svrhe.",
"page-find-wallet-footnote-2": "Opise novčanika pružaju sami projekti novčanika.",
"page-find-wallet-footnote-3": "Dodajemo proizvode na ovu stranicu prema kriterijumima naše politike navođenja. Ako želite da dodamo novčanik, prijavite se za to na platformi GitHub.",
"page-find-wallet-mobile": "Mobilni",
- "page-find-wallet-mobile-desc": "Novčanici sa mobilnim aplikacijama",
"page-find-wallet-desktop": "Desktop",
- "page-find-wallet-desktop-desc": "Novčanici sa desktop aplikacijama",
"page-find-wallet-browser": "Pretraživač",
- "page-find-wallet-browser-desc": "Novčanici sa proširenjima za pregledače",
- "page-find-wallet-device": "Uređaj",
- "page-find-choose-to-compare": "Vrednost za poređenje",
- "page-find-wallet-choose-features": "Odaberite funkcije"
+ "page-find-wallet-device": "Uređaj"
}
diff --git a/src/intl/sw/common.json b/src/intl/sw/common.json
index b1f3f07fec7..187a13206b2 100644
--- a/src/intl/sw/common.json
+++ b/src/intl/sw/common.json
@@ -1,17 +1,29 @@
{
- "account-abstraction": "Ubora wa akaunti",
"about-ethereum-org": "Kuhusu ethereum.org",
"about-us": "Kuhusu sisi",
+ "adding-desci-projects": "Kuongeza mipango ya Desci",
+ "adding-developer-tools": "Kuongeza zana za watengenezaji",
+ "adding-exchanges": "Kuongeza masoko",
+ "adding-glossary-terms": "Kuongeza Farahasa ya Maneno",
+ "adding-staking-products": "Kuongeza bidhaa za hisa",
+ "adding-wallets": "Kuongeza pochi",
+ "account-abstraction": "Ubora wa akaunti",
+ "acknowledgements": "Shukurani",
"aria-toggle-search-button": "Badilisha kitufe cha utafutaji",
"aria-toggle-menu-button": "Badilisha kitufe cha orodha",
"beacon-chain": "Mlolongo wa beacon",
"bridges": "Madaraja ya blockchain",
+ "bug-bounty": "Mtafuta mdudu",
+ "build": "Unda",
+ "build-menu": "Unda menyu",
"clear": "Futa",
"close": "Funga",
"community": "Jamii",
"community-hub": "Msingi wa jamii",
"community-menu": "Menyu ya Jamii",
"contact": "Wasiliana",
+ "content-buckets": "Vikapu vya yaliomo",
+ "content-resources": "Rasilimali za maudhui",
"content-standardization": "Usanifishaji wa maudhui",
"contributing": "Kuchangia",
"contributors": "Wachangiaji",
@@ -20,14 +32,17 @@
"copied": "Imenakiliwa",
"copy": "Nakala",
"danksharding": "Ugawanyikaji wa Dank",
- "dao-page": "Mashirika huru yasiyotawaliwa (DAOs)",
+ "dao-page": "DAOs - Mashirika huru yasiyotawaliwa",
"dark-mode": "Giza",
"data-provided-by": "Chanzo cha taarifa:",
- "decentralized-applications-dapps": "Programu zisizoendeshwa na benki kuu wala serikali (dapps)",
+ "decentralized-applications-dapps": "Dapps - Programu zisizoendeshwa na benki kuu wala serikali",
"decentralized-identity": "Utambulisho uliogatuliwa",
"decentralized-social-networks": "Mitandao ya kijamiii iliogatuliwa",
- "decentralized-science": "Sayansi iliogatuliwa (DeSci)",
- "defi-page": "Fedha zisizotawalia (DeFi)",
+ "decentralized-science": "DeSci - Sayansi iliogatuliwa",
+ "description": "Ufafanuzi wa kipengee cha usogezaji",
+ "defi-page": "DeFi - Fedha zisizotawalia",
+ "design": "Kubuni",
+ "design-principles": "Kanuni za kubuni",
"devcon": "Devkon",
"developers": "Wasanidi programu",
"developers-home": "Nyumba ya Wasanidi Programu",
@@ -59,7 +74,6 @@
"enterprise-menu": "Oradha ya biashara",
"esp": "Programu ya usaidizi kwenye ikolojia",
"eth-current-price": "Bei ya sasa ya ETH(USD)",
- "ethereum-basics": "Ethereum basics",
"ethereum-bug-bounty": "Mpango wa malipo ya watafuta hitilafu",
"consensus-when-shipping": "Inasfirishwa lini?",
"ethereum-upgrades": "Visasisho vya Ethereum",
@@ -83,7 +97,7 @@
"feedback-card-prompt-tutorial": "Umesaidika na mafunzo haya?",
"feedback-widget-thank-you-title": "Asante kwa maoni yako!",
"feedback-widget-thank-you-subtitle": "Fanya ukurasa huu kua bora zaidi kwa kujibu maswali kadhaa.",
- "feedback-widget-thank-you-subtitle-ext": "Kwa msaada zaidi unaweza kufikia jumuiya yetu kwenye Discord.",
+ "feedback-widget-thank-you-subtitle-ext": "Kwa msaada zaidi unaweza kufikia jumuiya yetu kwenye Discord yetu.",
"feedback-widget-thank-you-timing": "Dakika 2-3",
"feedback-widget-thank-you-cta": "Fungua uangalizi mfupi",
"find-wallet": "Tafuta pochi",
@@ -94,11 +108,10 @@
"grants": "Tunzo",
"grant-programs": "Programu za ikolojia na tunzo",
"guides": "Maelekezo",
- "guides-hub": "Kitovu cha maelekezo",
+ "guides-hub": "Jinsi ya kutumia miongozo",
"history-of-ethereum": "Historia ya Ethereum",
"home": "Nyumbani",
"how-ethereum-works": "Jinsi Ethereum inavyofanya kazi",
- "how-to-register-an-ethereum-account": "Jinsi ya \"kujisajili\" kwenye akaunti ya Ethereum",
"how-to-revoke-token-access": "Jinsi ya Kubatilisha mkataba erevu usifikie fedha zako za kripto",
"how-to-swap-tokens": "Jinsi ya kubadili tokeni",
"how-to-use-a-bridge": "Jinsi ya kuvusha tokeni kwenda safu ya namba 2",
@@ -121,18 +134,112 @@
"learn-more": "Jifunze zaidi",
"less": "Kidogo",
"light-mode": "Nyepesi",
- "listing-policy-disclaimer": "Bidhaa zote zilizo zilizoorodheshwa kwenye ukurasa huu sio uthibitisho rasmi, na zinatolewea kwa kusidi la chanzo cha taarifa tu. kama unataka kuongeza bidhaa ama kutuma maoni juu ya sera ongea suala kwenye GitHub.",
+ "listing-policy-disclaimer": "Bidhaa zote zilizo zilizoorodheshwa kwenye ukurasa huu sio uthibitisho rasmi, na zinatolewea kwa kusidi la chanzo cha taarifa tu. kama unataka kuongeza bidhaa ama kutuma maoni juu ya sera ongea suala kwenye Github.",
"loading": "Inapakia...",
"loading-error": "Tatizo katika upakiaji.",
"loading-error-refresh": "Kuna tatizo, tafadhali fanyiza upya.",
"loading-error-try-again-later": "Imeshindwa kupakia data. Jaribu tena baadae.",
"logo": "nembo",
"mainnet-ethereum": "Mtandao kuu wa Ethereum",
+ "merge": "Unganisha",
"more": "Zaidi",
- "nav-developers": "Wasanidi programu",
+ "nav-about-description": "Mradi wa huria wa umma kwa ajili ya jamii ya Ethereum",
+ "nav-advanced-description": "Pata maelezo kuhusu mada nzito zaidi",
+ "nav-advanced-label": "Ya hali ya juu",
+ "nav-basics-description": "Elewa mambo ya msingi ya Ethereum",
+ "nav-basics-label": "Mambo ya msingi",
+ "nav-bridges-description": "Web3 imekua mfumo wa ikolojia wa minyororo bloku ya msingi ya L1 na programu za uboreshaji wa L2",
+ "nav-builders-home-description": "Mwongozo wa mjenzi wa Ethereum—na wajenzi, kwa wajenzi",
+ "nav-builders-home-label": "Nyumbani kwa mjenzi",
+ "nav-contribute-description": "Ikiwa unataka usaidizi, hii itakuongoza",
+ "nav-contribute-label": "Kuchangia kwenye ethereum.org",
+ "nav-dao-description": "Jamii zinazomilikiwa na wanachama bila mamlaka ya serikali",
+ "nav-dapps-description": "Gundua mfumo ikolojia wenye programu nyingi kwa kutumia Ethereum",
+ "nav-defi-description": "Mfumo mbadala huria wa kimataifa kwa soko la fedha la zamani",
+ "nav-desci-description": "Mfumo mbadala huria wa kimataifa kwa mfumo wa sasa wa kisayansi",
+ "nav-desoc-description": "Mifumo ya mnyororo bloku ya mawasiliano ya jamii na uundaji wa maudhui",
"nav-developers-docs": "Nyaraka za wasanidi programu",
+ "nav-developers": "Wasanidi programu",
+ "nav-did-description": "Toa na umiliki vitambulishi vyako vya kipekee vilivyogatuliwa",
+ "nav-docs-description": "Hati za kukusaidia kuelewa na kujenga kwa Ethereum",
+ "nav-docs-design-description": "Ufafanuzi wa changamoto za kipekee za muundo wa web3, desturi bora na maarifa ya utafiti wa mtumiaji",
+ "nav-docs-design-label": "Mambo ya msingi ya muundo wa UX/UI",
+ "nav-docs-foundation-description": "Mambo ya msingi ya kuimarika kwenye Ethereum",
+ "nav-docs-overview-description": "Nyumbani kwako kwa hati za wasanidi programu",
+ "nav-docs-stack-description": "Elewa maelezo yote ya bloku ya Ethereum",
+ "nav-eip-description": "Viwango vinavyobainisha vipengele au michakato mipya",
+ "nav-eip-label": "EIP - Mapendekezo ya uboreshaji wa Ethereum",
+ "nav-emerging-description": "Fahamu visa vingine vipya zaidi vya matumizi vya Ethereum",
+ "nav-enterprise-description": "Programu za biashara za Ethereum",
+ "nav-ethereum-org-description": "Tovuti hii inachochewa kijamii—jiunge nasi na uchangie pia",
+ "nav-ethereum-wallets-description": "Programu ya kutumia akaunti yako ya Ethereum",
+ "nav-events-description": "Ugatuaji na uhuru wa kushiriki kwa kila mtu",
+ "nav-events-irl-description": "Kila mwezi kuna matukio makubwa ya Ethereum ya ana kwa ana au mtandaoni",
+ "nav-events-label": "Jamii na matukio",
+ "nav-events-online-description": "Mamia ya maelfu ya wapenzi wa Ethereum wako katika jamii hizi za mtandaoni",
+ "nav-find-wallet-description": "Pochi hukuruhusu kutumia kripto",
+ "nav-find-wallet-label": "Chagua pochi yako",
+ "nav-gas-fees-description": "Jinsi ada za muamala wa ETH zinazovyokokotolewa",
+ "nav-gas-fees-label": "Ada ya gesi",
+ "nav-get-eth-description": "Unahitaji ether (ETH) ili kutumia programu za Ethereum",
+ "nav-get-started-description": "Hatua zako za kwanza kutumia Ethereum",
+ "nav-governance-description": "Mchakato unaohusika katika kuboresha itifaki ya Ethereum",
+ "nav-governance-label": "Utawala",
+ "nav-grants-description": "Orodha iliyorekebishwa na jamii yetu kuhusu miradi inayotoa mipango ya fedha za ruzuku",
+ "nav-guide-create-account-description": "Yeyote anaweza kufungua akaunti ya Ethereum wakati wowote, bila malipo kwa programu ya pochi",
+ "nav-guide-revoke-access-description": "Endelea kuwa salama wakati wa kutumia mikataba-erevu na programu katika mfumo ikolojia wa Ethereum",
+ "nav-guide-revoke-access-label": "Jinsi ya kubatilisha ufikiaji wa mkataba-erevu",
+ "nav-guide-use-wallet-description": "Pata maelezo ya jinsi ya kutumia vipengele vyote vya msingi vya pochi",
+ "nav-guide-use-wallet-label": "Jinsi ya kutumia pochi",
+ "nav-guides-description": "Miongozo halisi ya hatua kwa hatua ya kukusaidia kuanza",
+ "nav-guides-label": "Jinsi ya kutumia miongozo",
+ "nav-history-description": "Ratiba ya migawanyiko na taarifa zote kuu",
+ "nav-history-label": "Historia ya kiufundi ya Ethereum",
+ "nav-layer-2-description": "Miamala nafuu na ya haraka ya Ethereum",
+ "nav-learn-by-coding-description": "Zana za kukusaidia kujaribu Ethereum",
+ "nav-local-env-description": "Chagua na ufungue bloku ya maendeleo yako ya Ethereum",
+ "nav-mainnet-description": "Programu za mnyororo wa bloku za biashara zinaweza kuundwa kwenye Mtandao Mkuu wa umma wa Ethereum",
+ "nav-nft-description": "Njia ya kuwakilisha kitu chochote cha pekee kama mali zilizojengwa na Ethereum",
+ "nav-open-research-description": "Moja ya nguvu za msingi za Ethereum ni jamii yake ya utafiti wa mara kwa mara",
+ "nav-open-research-label": "Tafiti zilizowazi",
+ "nav-overview-description": "Masuala yote yanayohusu elimu ya Ethereum",
+ "nav-participate-overview-description": "Muhtasari kuhusu jinsi ya kushiriki",
"nav-primary": "Msingi",
- "nft-page": "Ishara zisizoambukiza (NFTs)",
+ "nav-quizzes-description": "Fahamu jinsi ya kuelewa vyema Ethereum na cryptocurrency",
+ "nav-quizzes-label": "Jaribu maarifa yako",
+ "nav-refi-description": "Mfumo wa uchumi mbadala uliojengwa kwa kanuni endelevu",
+ "nav-research-description": "Michakato inayotumiwa kuboresha Ethereum",
+ "nav-research-label": "Utafiti na maendeleo",
+ "nav-roadmap-description": "Njia ya uimarikaji, usalama na uendelevu zaidi wa Ethereum",
+ "nav-roadmap-future-description": "Kuimarisha Ethereum kama mtandao madhubuti na uliogatuliwa",
+ "nav-roadmap-future-label": "Uthibitishaji-wa-badae",
+ "nav-roadmap-label": "Mpango",
+ "nav-roadmap-scaling-description": "Taarifa za mtandao ili kupunguza zaidi gharama na kasi",
+ "nav-roadmap-security-description": "Kuhakiklisha kuwa Ethereum inaendelea kuwa imara kwa aina zote za mashambulizi siku zijazo",
+ "nav-roadmap-security-label": "Usalama ulioimarishwa",
+ "nav-roadmap-ux-description": "Kutumia Ethereum kunahitaji kurahisishwa",
+ "nav-run-a-node-description": "Kuwa huru kikamilifu huku ukisaidia kulinda mtandao",
+ "nav-security-description": "Jifunze desturi bora unapotumia sarafu ya kripto",
+ "nav-smart-contracts-description": "Bloku za msingi za ujenzi za mfumo ikolojia wa Ethereum",
+ "nav-stablecoins-description": "Sarafu imara ni token za Ethereum zilizoundwa ili kusalia kwenye thamani isiyobadilika",
+ "nav-stake-description": "Pata zawadi kwa kulinda Ethereum",
+ "nav-stake-label": "Hisa",
+ "nav-staking-home-description": "Muhtasari wa machaguo tofauti ya kusimamisha",
+ "nav-staking-pool-description": "Simamisha na upate zawadi kwa kiasi chochote cha ETH kwa kujiunga na wengine",
+ "nav-staking-pool-label": "Usimamishaji wa hisa wa kundi",
+ "nav-staking-saas-label": "Usimamishaji wa huduma",
+ "nav-staking-solo-label": "Usimamishaji binafsi wa hisa",
+ "nav-start-building-description": "Taarifa muhimu kwa wanaoanza",
+ "nav-translation-program-description": "Jitihada za pamoja za kutafsiri ethereum.org hadi lugha zote",
+ "nav-tutorials-description": "Orodha iliyorekebishwa ya mafunzo ya jamii",
+ "nav-use-cases-description": "Gundua hoja tofauti za matumizi ya Ethereum",
+ "nav-what-is-ether-description": "Sarafu ya programu za Ethereum",
+ "nav-what-is-ethereum-description": "Elewa kile ambacho kinafanya Ethereum kuwa ya kipekee",
+ "nav-what-is-web3-label": "Je, Web3 ni nini?",
+ "nav-what-is-web3-description": "Mbadala wa ukiritimba wa serikali unaoamua sheria",
+ "nav-whitepaper-description": "Karatasi nyeupe asili ya Ethereum iliyoandikwa na Vitalik Buterin in 2014",
+ "nav-zkp-description": "Njia ya kuimarisha uthibitisho wa taarifa bila kufichua taarifa yenyewe",
+ "nft-page": "NFTs - Ishara zisizoambukiza",
"nfts": "NFTs",
"no": "Hapana",
"on-this-page": "Juu ya ukurasa huu",
@@ -140,6 +247,8 @@
"page-developers-aria-label": "Menyu kwa Wasanidi Programu",
"page-index-meta-title": "Nyumbani",
"page-last-updated": "Ukurasa ulisasishwa mwisho",
+ "participate": "Shiriki",
+ "participate-menu": "Menyu ya kushiriki",
"pbs": "Utengano wa mpendekezaji-mjenzi",
"pools": "Usimamishaji wa hisa wa kundi",
"privacy-policy": "Sera ya faragha",
@@ -150,8 +259,10 @@
"refresh": "Tafadhali onyesha ukurasa upya.",
"return-home": "rudi nyumbani",
"roadmap": "Barabara ya Ethereum",
+ "research": "Utafiti",
+ "research-menu": "Menyu ya utafiti",
"resources": "Rasilimali za tafsiri",
- "regenerative-finance": "Uzalishaji upya wa fedha (ReFi)",
+ "regenerative-finance": "ReFi - Uzalishaji upya wa fedha",
"run-a-node": "Endesha nodi",
"rollup-component-website": "Tovuti",
"rollup-component-developer-docs": "Nyaraka za msanidi programu",
@@ -164,6 +275,7 @@
"search-box-blank-state-text": "Umabali wa kutafuta!",
"search-eth-address": "Hii inafanana na anuwani ya Ethereum. Hatutoi taarifa za anuwani yenyewe. Jaribu kuitafuta kwenye chunguzi za bloku kama",
"search-no-results": "Hakuna matokeo ya ulichotafuta",
+ "security": "Usalama",
"single-slot-finality": "Mwisho wa nafasi-moja",
"statelessness": "Pasipokua na hali",
"see-contributors": "Ona wachangiaji",
@@ -172,15 +284,14 @@
"show-all": "Onyesha yote",
"show-less": "Onyesha chache",
"site-description": "Ethereum ni jukwaa la kimataifa, ambalo halitegemei wamiliki wa madaraka kwa pesa na aina mpya za programu. Kwenye Ethereum, unaweza kuandika msimbo unaodhibiti pesa, na kuunda programu zinazoweza kupatikana mahali popote ulimwenguni.",
- "site-title": "ethereum.org",
"skip-to-main-content": "Ruka kwenda kwenye maudhui makuu",
"smart-contracts": "Mikataba erevu",
- "stablecoins": "Sarafu imara",
+ "stablecoins": "Sarafu-imara",
"stake-eth": "Weka ETH",
"staking": "Kusimamisha",
"start-here": "Anza hapa",
- "style-guide": "Style guide",
"solo": "Usimamishaji binafsi wa hisa",
+ "support": "Msaada",
"terms-of-use": "Masharti ya matumizi",
"translation-banner-body-new": "Unatazama ukurahasa huu kwa kiingereza kwasababu bado hatujautafsiri. Tusaidie kutafsiri maudhui haya.",
"translation-banner-body-update": "Kuna toleo jipya la ukurasa huu ila liko kwenye Kiingereza tu hivi sasa. Tusaidie kutafsiri toleo jipya zaidi.",
@@ -191,17 +302,18 @@
"translation-banner-no-bugs-title": "Hapana hitilafu hapa!",
"translation-banner-no-bugs-content": "Ukurasa huu hautafsiriwi. Tumeuacha ukurasa huu kwa Kiingereza kwa sasa.",
"translation-banner-no-bugs-dont-show-again": "Usionyeshe tena",
+ "translation-program": "Programu ya Kutafsiri",
"try-using-search": "Jaribu kutumia utafutaji kupata unachotafuta",
"tutorials": "Mafunzo",
"up": "Juu",
+ "use": "Tumia",
"use-ethereum": "Tumia Ethereum",
"use-ethereum-menu": "Tumia orodha ya Ethereum",
- "user-experience": "User experience",
+ "use-menu": "Tumia menyu",
"verkle-trees": "Miti ya Verkle",
"wallets": "Pochi",
"we-couldnt-find-that-page": "Hatukuweza kupata ukurasa huo",
"web3": "Je, Web3 ni nini?",
- "web3-title": "Web3",
"website-last-updated": "Ukurasa ulisasishwa mwisho",
"what-is-ether": "Ether ni nini (ETH)?",
"what-is-ethereum": "Ethereum ni nini?",
diff --git a/src/intl/sw/page-languages.json b/src/intl/sw/page-languages.json
index da18abbfd0f..fc87bf72c2f 100644
--- a/src/intl/sw/page-languages.json
+++ b/src/intl/sw/page-languages.json
@@ -17,13 +17,16 @@
"page-languages-translated": "imetafsiriwa",
"page-languages-words": "maneno",
"page-languages-recruit-community": "Tusaidie kutafsiri ethereum.org.",
+ "langauge-am": "Kiamhara",
"language-ar": "Kiarabu",
"language-az": "Kiazerbaijani",
+ "langauge-be": "Kibelarusi",
"language-bg": "Kibulgaria",
"language-bn": "Kibengali",
+ "language-bs": "Kibosnia",
"language-ca": "Kikatalani",
"language-cs": "Kicheki",
- "language-da": "Kidenishi",
+ "language-da": "Kideni",
"language-de": "Kijerumani",
"language-el": "Kigiriki",
"language-en": "Kiingereza",
@@ -37,6 +40,7 @@
"language-hi": "Kihindi",
"language-hr": "Kikroeshia",
"language-hu": "Kihungaria",
+ "language-hy-am": "Kiarmenia",
"language-id": "Kiindonesia",
"language-ig": "Igbo",
"language-it": "Kiitaliano",
@@ -44,12 +48,14 @@
"language-ka": "Kijojia",
"language-kk": "Kikazakhi",
"language-km": "Kikhmeri",
+ "language-kn": "Kikanada",
"language-ko": "Kikorea",
"language-lt": "Kiluthuania",
- "language-ml": "Kimalayalam",
+ "language-ml": "Kimalayalamu",
"language-mr": "Kimarathi",
"language-ms": "Kimalai",
"language-nb": "Kinorwei",
+ "language-ne-np": "Kinepali",
"language-nl": "Kiholanzi",
"language-pcm": "Kinigeria pidgin",
"language-fil": "Kifilipino",
@@ -62,14 +68,15 @@
"language-sk": "Kislovaki",
"language-sl": "Kislovenia",
"language-sr": "Kiserbia",
- "language-sw": "Swahili",
+ "language-sw": "Kiswahili",
"language-ta": "Kitamili",
"language-th": "Kithai",
+ "language-tk": "Kiturkmeni",
"language-tr": "Kituruki",
"language-uk": "Kiyukrenia",
"language-ur": "Kiurdu",
"language-uz": "Kiuzbeki",
"language-vi": "Kivietinamu",
"language-zh": "Kichina Kilichorahisishwa",
- "language-zh-tw": "Kichina cha jadi"
+ "language-zh-tw": "Kichina cha Jadi"
}
diff --git a/src/intl/sw/page-wallets-find-wallet.json b/src/intl/sw/page-wallets-find-wallet.json
index 5ad4b822e89..c86c67d5257 100644
--- a/src/intl/sw/page-wallets-find-wallet.json
+++ b/src/intl/sw/page-wallets-find-wallet.json
@@ -7,7 +7,6 @@
"page-find-wallet-meta-title": "Tafuta pochi ya Ethereum",
"page-find-wallet-title": "Tafuta pochi",
"page-find-wallet-try-removing": "Jaribu kuondoa kipengele kimoja ama viwili",
- "page-find-wallet-choose-to-compare": "Chagua ulinganishaji",
"page-stake-eth": "Weka ETH",
"page-find-wallet-open-source": "Open source",
"page-find-wallet-open-source-desc": "Programu za vyanzo-vya-wazi huruhusu mtu yeyote kukagua uadilifu na usalama wa programu hio",
@@ -16,8 +15,6 @@
"page-find-wallet-non-custodial-desc": "Pochi ambazo hazidhibiti funguo zako za faragha",
"page-find-wallet-hardware-wallet-support": "Msaada wa vifaa kwa pochi",
"page-find-wallet-hardware-wallet-support-desc": "Pochi zinazoweza kuunganishwa na pochi ya maunzi kwa usalama zaidi",
- "page-find-wallet-walletconnect": "UnganishaPochi",
- "page-find-wallet-walletconnect-desc": "Pochi zinazotoa huduma za UnganishaPochi kwa ajili ya kuunga dapps",
"page-find-wallet-rpc-importing": "Uingizaji wa RPC",
"page-find-wallet-rpc-importing-desc": "Pochi zinazotoa huduma binafsi za noti za mwisho za RPC ili kuunganishwa na nodi tofauti au mtandao",
"page-find-wallet-nft-support": "Msaada wa NFT",
@@ -36,8 +33,6 @@
"page-find-wallet-ens-support-desc": "Pochi zenye mfumo wa Huduma za Majina ya Ethereum (Ethereum Name Service) ENS",
"page-find-wallet-token-importing": "Uingizaji wa tokeni",
"page-find-wallet-token-importing-desc": "Ingiza tokeni yoyote ya ERC-20 na uitumie kwenye pochi",
- "page-find-wallet-fee-optimization": "Uboreshaji wa ada",
- "page-find-wallet-fee-optimization-desc": "Wezesha miamala ya safu ya pili kwa ajili ya maboresho ya bei ya ada, na malipo ya kurejesha pesa za gesi ambayo haijatumika",
"page-find-wallet-buy-crypto": "Nunua Kripto",
"page-find-wallet-buy-crypto-desc": "Nunua kripto na fedha za jadi moja kwa moja kwenye pochi\n*Kumbuka: Manunuzi ya kripto yanaweza kua na mipaka ya kijografia",
"page-find-wallet-sell-for-fiat": "Uza kripto upate fedha za jadi",
@@ -46,7 +41,6 @@
"page-find-wallet-multisig-desc": "Pochi zinazohitaji saini nyingi ili kuruhusu muamala",
"page-find-wallet-social-recovery": "Ahueni ya kijamii",
"page-find-wallet-social-recovery-desc": "Pochi zinazoruhusu walezi kubadili funguo za pochi za mikataba-erevu",
- "page-find-wallet-token-support": "Msaada wa tokeni",
"page-find-wallet-features": "Vipengele vya Huduma",
"page-find-wallet-security": "Usalama",
"page-find-wallet-smart-contract": "Smart contract",
@@ -63,7 +57,6 @@
"page-find-wallet-chromium": "Kromium",
"page-find-wallet-firefox": "FireFox",
"page-find-wallet-hardware": "Maunzi",
- "page-find-wallet-hardware-desc": "Pochi za maunzi",
"page-find-wallet-new-to-crypto-title": "Kripto mpya",
"page-find-wallet-new-to-crypto-desc": "Unatumia ethereum kwa mara ya kwanza na unahitaji pochi yako ya kwanza",
"page-find-wallet-nfts-title": "NFTs",
@@ -74,21 +67,13 @@
"page-find-wallet-finance-desc": "Ni mtu unatumia DeFi na unataka pochi itakayokuunganisha na programu za DeFi",
"page-find-wallet-developer-title": "Msanidi programu",
"page-find-wallet-developer-desc": "Wewe ni msanidi programu na unahitaji pochi itakayosaidia ujenzi na majribio ya programu zako ama dapps",
- "page-find-wallet-persona-desc": "Chagua wasifu unaendana na matumizi yako na chuja orodha ya pochi",
"page-find-wallet-filters": "Chujio",
"page-find-wallet-active": "hai",
- "page-find-wallet-profile-filters": "Chujio za wasifu",
- "page-find-wallet-feature-filters": "Chujio za huduma",
"page-find-wallet-footnote-1": "Pochi zilizoorodheshwa hapa sio ridhaa rasmi, bali kwa kutoa taarifa peke yake.",
"page-find-wallet-footnote-2": "Maelezo yametolewa na kazi za pochi zenyewe.",
"page-find-wallet-footnote-3": "Tunaongeza bidhaa kwenye ukurasa huu kwa kutazama msingi wa sera za orodha. Kama ungependa tuongeze pochi, andika pendekezo kwenye GitHub.",
"page-find-wallet-mobile": "Rununu",
- "page-find-wallet-mobile-desc": "Pochi zenye programu za simu",
"page-find-wallet-desktop": "Tarakilishi",
- "page-find-wallet-desktop-desc": "Pochi zenye programu za kompyuta",
"page-find-wallet-browser": "Kivinjari",
- "page-find-wallet-browser-desc": "Pochi zenye viendelezi vya kivinjari",
- "page-find-wallet-device": "Kifaa",
- "page-find-choose-to-compare": "Chagua ulinganishaji",
- "page-find-wallet-choose-features": "Chagua vipengele"
+ "page-find-wallet-device": "Kifaa"
}
diff --git a/src/intl/ta/common.json b/src/intl/ta/common.json
index 86dc3caeac4..67a3482b6c9 100644
--- a/src/intl/ta/common.json
+++ b/src/intl/ta/common.json
@@ -1,17 +1,29 @@
{
- "account-abstraction": "கணக்குச் சுருக்கம்",
"about-ethereum-org": "ethereum.org பற்றிய தகவல்கள்",
"about-us": "எங்களைப் பற்றிய தகவல்கள்",
+ "adding-desci-projects": "டெஸ்கி திட்டங்களைச் சேர்த்தல்",
+ "adding-developer-tools": "உருவாக்குநர்கள் (டெவலப்பர்கள்) கருவிகளைச் சேர்த்தல்",
+ "adding-exchanges": "எக்ஸ்சேஞ்ச்களைச் சேர்த்தல்",
+ "adding-glossary-terms": "சொற்களஞ்சிய சொற்களைச் சேர்த்தல்",
+ "adding-staking-products": "ஸ்டேக்கிங் தயாரிப்புகளைச் சேர்த்தல்",
+ "adding-wallets": "வாலட்களைச் சேர்த்தல்",
+ "account-abstraction": "கணக்குச் சுருக்கம்",
+ "acknowledgements": "ஒப்புதல்கள்",
"aria-toggle-search-button": "தேடல் மெனு பட்டனை நிலைமாற்றும்",
"aria-toggle-menu-button": "மெனு பட்டனை நிலைமாற்றும்",
"beacon-chain": "தீப்பந்த சங்கிலி",
"bridges": "பிளாக்செயின் பாலங்கள்",
+ "bug-bounty": "பிழைக்கான ஊக்க ஊதியம்",
+ "build": "கட்டமைப்பு",
+ "build-menu": "மெனுவை கட்டமைக்கவும்",
"clear": "அழி",
"close": "மூடு",
"community": "சமூகம்",
"community-hub": "சமூக மையம்",
"community-menu": "சமூகம் மெனு",
"contact": "தொடர்புக்கு",
+ "content-buckets": "உள்ளடக்கப் பக்கெட்கள்",
+ "content-resources": "உள்ளடக்க வளங்கள்",
"content-standardization": "தகவல் தரப்படுத்தல்",
"contributing": "பங்களிக்கிறீர்கள்",
"contributors": "பங்களிப்பாளர்கள்",
@@ -20,14 +32,17 @@
"copied": "நகலெடுக்கப்பட்டது",
"copy": "நகலெடு",
"danksharding": "டான்க்ஷார்டிங்",
- "dao-page": "பன்முனைப்படுத்தப்பட்ட தன்னாட்சி அமைப்புகள் (DAOs)",
+ "dao-page": "DAOs - பன்முனைப்படுத்தப்பட்ட தன்னாட்சி அமைப்புகள்",
"dark-mode": "அடர்நிறம்",
"data-provided-by": "தரவு மூலம்:",
- "decentralized-applications-dapps": "பன்முனைச் செயலிகள் (dapps)",
+ "decentralized-applications-dapps": "Dapps - பன்முனைச் செயலிகள்",
"decentralized-identity": "பன்முனைப்படுத்தப்பட்ட அடையாளம்",
"decentralized-social-networks": "பன்முனைப்படுத்தப்பட்ட சமூக வலைப்பின்னல்கள்",
- "decentralized-science": "பன்முனை அறிவியல் (DeSci)",
- "defi-page": "பன்முனைப்படுத்தப்பட்ட நிதி (DeFi)",
+ "decentralized-science": "DeSci - பன்முனை அறிவியல்",
+ "description": "நேவி உருப்படிக்கான விளக்கம்",
+ "defi-page": "DeFi - பன்முனைப்படுத்தப்பட்ட நிதி",
+ "design": "வடிவமைப்பு",
+ "design-principles": "வடிவமைப்புக் கொள்கைகள்",
"devcon": "டெவ்கான்",
"developers": "உருவாக்குநர்கள் (டெவலப்பர்கள்)",
"developers-home": "உருவாக்குநர்களின் முகப்பு",
@@ -51,7 +66,7 @@
"documentation": "ஆவணப்படுத்துதல்",
"down": "கீழே",
"ecosystem": "சூழல்",
- "edit-page": "பக்கத்தைத் திருத்து",
+ "edit-page": "பக்கத்தைத் தொகுக்க",
"ef-blog": "எத்தேரியம் நிறுவன வலைப்பதிவு",
"eips": "எத்தேரியம் முன்னேற்ற முன்மொழிவுகள்",
"energy-consumption": "எத்தேரியம் ஆற்றல் நுகர்வு",
@@ -59,7 +74,6 @@
"enterprise-menu": "நிறுவனம் மெனு",
"esp": "சூழலுக்கு ஆதரவு வழங்கும் திட்டம்",
"eth-current-price": "தற்போதைய ETH விலை (USD)",
- "ethereum-basics": "Ethereum basics",
"ethereum-bug-bounty": "நிரற் பிழைக்கான எத்தேரியம் வெகுமதித் திட்டம்",
"consensus-when-shipping": "அது எப்போது ஷிப்பிங் செய்யும்?",
"ethereum-upgrades": "எத்தேரியம் மேம்பாடுகள்",
@@ -75,7 +89,7 @@
"ethereum-protocol": "எத்தீரியம் நெறிமுறை",
"ethereum-security": "எத்தேரியம் பாதுகாப்பு மற்றும் மோசடி தடுப்பு",
"ethereum-support": "எத்தேரியம் தொடர்பான உதவி",
- "ethereum-wallets": "எத்தேரியம் பணப்பைகள்",
+ "ethereum-wallets": "Ethereum பணப்பைகள்",
"ethereum-whitepaper": "எத்தேரியம் யாதாஸ்து",
"feedback-widget-prompt": "இந்தப் பக்கம் உதவியாக உள்ளதா?",
"feedback-card-prompt-page": "இந்தப் பக்கம் உதவியாக இருந்ததா?",
@@ -86,19 +100,18 @@
"feedback-widget-thank-you-subtitle-ext": "உங்களுக்கு உதவி தேவைப்பட்டால், எங்கள் சமூகத்தை Discord தளத்தில் தொடர்புகொள்ளலாம்.",
"feedback-widget-thank-you-timing": "2–3 நிமிடம்",
"feedback-widget-thank-you-cta": "சிறிய கருத்துக்கணிப்பைத் திற",
- "find-wallet": "பணப்பையைத் தேடு",
+ "find-wallet": "பணப்பையைத் தேடுங்கள்",
"future-proofing": "எதிர்காலச்-சான்று",
- "get-eth": "ETHஐ பெறுக",
+ "get-eth": "ETH பெறுக",
"get-involved": "ஈடுபடுத்திக் கொள்ளுங்கள்",
- "get-started": "தொடங்கு",
+ "get-started": "தொடங்குக",
"grants": "உதவித் தொகைகள்",
"grant-programs": "சூழலுக்கான உதவித் தொகை திட்டங்கள்",
"guides": "வழிகாட்டிகள்",
- "guides-hub": "வழிகாட்டிகள் மையம்",
+ "guides-hub": "எப்படி வழிகாட்டுகிறது",
"history-of-ethereum": "எத்தேரியம் வரலாறு",
"home": "முகப்பு",
"how-ethereum-works": "எத்தேரியம் எப்படிச் செயல்படுகிறது?",
- "how-to-register-an-ethereum-account": "எத்தேரியம் கணக்கைப் \"பதிவு\" செய்வது எப்படி",
"how-to-revoke-token-access": "உங்கள் கிரிப்டோ நிதியை மேம்படுத்தப்பட்ட ஒப்பந்த அணுகலை எப்படி\n மீண்டும் பெறுவது",
"how-to-swap-tokens": "டோக்கன்களை மாற்றுவது எப்படி",
"how-to-use-a-bridge": "டோக்கன்களை எப்படி இரண்டாம் அடுக்குடன் இணைப்பது",
@@ -115,11 +128,11 @@
"last-edit": "கடைசியாகத் திருத்தப்பட்டது",
"layer-2": "2ம் அடுக்கு",
"learn": "கற்றுக்கொள்க",
- "learn-by-coding": "குறியீடுகளை எழுதுவதன் மூலம் கற்றுக்கொள்க",
+ "learn-by-coding": "குறியீடுகள் மூலம் கற்க",
"learn-hub": "கற்கும் கூடம்",
"learn-menu": "கற்றுக்கொள்க மெனு",
"learn-more": "மேலும் அறிக",
- "less": "குறைந்த",
+ "less": "குறைவாக",
"light-mode": "வெளிச்சம்",
"listing-policy-disclaimer": "இந்தப் பக்கத்தில் பட்டியலிடப்பட்டுள்ள அனைத்துத் தயாரிப்புகளுக்கும் அதிகாரப்பூர்வமான ஒப்புதல்கள் வழங்கப்படவில்லை, அவை தகவல்களாக வாசிக்கப்படுவற்காக மட்டுமே வழங்கப்பட்டுள்ளன. நீங்கள் ஒரு தயாரிப்பைச் சேர்க்கவோ கொள்கையைப் பற்றிக் கருத்து வழங்கவோ விரும்பினால், GitHubக்குச் சென்று புகாரளியுங்கள்.",
"loading": "ஏற்றுகிறது...",
@@ -128,11 +141,104 @@
"loading-error-try-again-later": "தகவல்களைப் பெற முடியவில்லை. பின்னர் மீண்டும் முயற்சிக்கவும்.",
"logo": "லோகோ",
"mainnet-ethereum": "முதன்வலை எத்தேரியம்",
+ "merge": "இணைக்கவும்",
"more": "மேலும்",
- "nav-developers": "உருவாக்குநர்கள் (டெவலப்பர்கள்)",
+ "nav-about-description": "எத்தேரியம் சமூகத்திற்கான ஒரு பொதுவான, வெளிப்படையான திட்டம்",
+ "nav-advanced-description": "மிகவும் சிக்கலான தலைப்புகளைக் கற்றுக்கொள்ளுங்கள்",
+ "nav-advanced-label": "மேம்பட்டவை",
+ "nav-basics-description": "எத்தேரியம்-இன் அடிப்படைகளைப் புரிந்துகொள்ளுங்கள்",
+ "nav-basics-label": "அடிப்படைகள்",
+ "nav-bridges-description": "Web3 முதன்மை L1 பிளாக்செயின்கள் மற்றும் L2 ஸ்கேலிங் தீர்வுகளின் சுற்றுச்சூழல் அமைப்பாக உருவாகியுள்ளது",
+ "nav-builders-home-description": "எத்தீரியம்க்கான பில்டர்ஸ் கையேடு- பில்டர்களுக்கானாது, பில்டர்களால் உருவாக்கப்பட்டது",
+ "nav-builders-home-label": "பில்டர்களின் முகப்பு",
+ "nav-contribute-description": "நீங்கள் உதவ விரும்பினால், இது உங்களுக்கு வழிகாட்டும்",
+ "nav-contribute-label": "ethereum.org தளத்திற்கான பங்களிப்பு",
+ "nav-dao-description": "மையப்படுத்தப்பட்ட அதிகாரம் அற்ற உறுப்பினர்களுக்குச் சொந்தமான சமூகங்கள்",
+ "nav-dapps-description": "எத்தேரியம்-ஐ பயன்படுத்தி செயலிகளின் உயரிய அமைப்பை ஆராய்ந்திடுங்கள்",
+ "nav-defi-description": "பாரம்பரிய நிதிச் சந்தைக்கான உலகளாவிய, வெளிப்படையான மாற்று",
+ "nav-desci-description": "தற்போதைய விஞ்ஞான அமைப்பிற்கான உலகளாவிய, வெளிப்படையான மாற்று",
+ "nav-desoc-description": "சமூக தொடர்பு மற்றும் உள்ளடக்க உருவாக்கத்திற்கான பிளாக்செயின் அடிப்படையிலான தளங்கள்",
"nav-developers-docs": "உருவாக்குநர்களின் ஆவணங்கள்",
+ "nav-developers": "உருவாக்குநர்கள் (டெவலப்பர்கள்)",
+ "nav-did-description": "உங்கள் தனிப்பட்ட பரவலாக்கப்பட்ட அடையாளங்காட்டிகளை வழங்கி உரிமையைக் கொண்டிருங்கள்",
+ "nav-docs-description": "எத்தேரியம் குறித்து புரிந்துகொள்ளவும் அதனுடன் வளர்ச்சியை அடைவதற்கு உதவும் ஆவணங்கள்",
+ "nav-docs-design-description": "தனித்துவமான web3 வடிவமைப்புச் சவால்கள், சிறந்த நடைமுறைகள் மற்றும் பயனர் ஆராய்ச்சி நுண்ணறிவுகளின் விளக்கம்",
+ "nav-docs-design-label": "UX/UI வடிவமைப்பு அடிப்படைகள்",
+ "nav-docs-foundation-description": "எத்தேரியம்-இல் உருவாக்குவதற்கான முக்கிய அடிப்படைகள்",
+ "nav-docs-overview-description": "உருவாக்குநர்கள் (டெவலப்பர்கள்) ஆவணங்களுக்கான உங்கள் முகப்பு",
+ "nav-docs-stack-description": "எத்தேரியம் ஸ்டாக்-இன் அனைத்து விவரங்களையும் புரிந்துகொள்ளுதல்",
+ "nav-eip-description": "புதிய அம்சங்கள் அல்லது செயல்முறைகளைக் குறிப்பிடும் தரநிலைகள்",
+ "nav-eip-label": "EIPக்கள் - எத்தேரியம் முன்னேற்ற முன்மொழிவுகள்",
+ "nav-emerging-description": "எத்தேரியம்-க்கான பிற புதிய பயன்பாட்டு நிலைகளைத் தெரிந்துகொள்ளுதல்",
+ "nav-enterprise-description": "எத்தேரியம்-க்கான வணிக செயலிகள்",
+ "nav-ethereum-org-description": "இந்த இணையதளம் சமூகத்தால் வழிநடத்தப்படுகிறது - எங்களுடன் சேர்ந்து பங்களித்திடுங்கள்",
+ "nav-ethereum-wallets-description": "உங்கள் எத்தேரியம் கணக்குடன் ஊடாடுவதற்கான செயலி",
+ "nav-events-description": "அதிகாரப் பரவலாக்கம் மற்றும் எவரும் பங்கேற்கும் சுதந்திரம்",
+ "nav-events-irl-description": "ஒவ்வொரு மாதமும் நேரில் பங்கேற்கும் மற்றும் ஆன்லைனில் பங்கேற்கும் முக்கிய எத்தேரியம் நிகழ்வுகள்",
+ "nav-events-label": "சமூகங்கள் மற்றும் நிகழ்வுகள்",
+ "nav-events-online-description": "இந்த ஆன்லைன் சமூகத்தில் ஆயிரக்கணக்கான எத்தேரியம் பயனர்கள் ஒன்றுசேர்கின்றனர்",
+ "nav-find-wallet-description": "வாலட்கள் கிரிப்டோவை பயன்படுத்த அனுமதிக்கிறது",
+ "nav-find-wallet-label": "உங்கள் வாலட்டை தேர்ந்தெடுக்கவும்",
+ "nav-gas-fees-description": "ETH பரிவர்த்தனை கட்டணங்கள் எவ்வாறு கணக்கிடப்படுகின்றன",
+ "nav-get-eth-description": "எத்தேரியம் செயலிகளில் பயன்படுத்த உங்களுக்கு ஈதர்(ETH) தேவைப்படும்",
+ "nav-get-started-description": "எத்தேரியம்-ஐ பயன்படுத்துவதற்கான உங்கள் முதற்படிகள்",
+ "nav-governance-description": "எத்தேரியம் நெறிமுறையை புதுப்பிக்கும் செயல்முறை",
+ "nav-governance-label": "நிர்வாகம்",
+ "nav-grants-description": "மானிய நிதி திட்டங்களை வழங்கும் திட்டங்களில் எங்கள் சமூகத்தால் தொகுக்கப்பட்ட பட்டியல்",
+ "nav-guide-create-account-description": "எந்த நேரத்திலும் ஒரு வாலட் செயலியுடன் இலவசமாக எவரும் ஒரு எத்தேரியம் கணக்கை உருவாக்கலாம்",
+ "nav-guide-revoke-access-description": "எத்தேரியம் அமைப்பில் உள்ள ஸ்மார்ட் ஒப்பந்தங்கள் மற்றும் செயலிகளைப் பயன்படுத்தும்போது பாதுகாப்பாக இருந்திடுங்கள்",
+ "nav-guide-revoke-access-label": "ஸ்மார்ட் ஒப்பந்த அணுகலை எவ்வாறு திரும்பப் பெறுவது",
+ "nav-guide-use-wallet-description": "வாலட்-இன் அடிப்படை செயல்பாடுகள் அனைத்தையும் எவ்வாறு பயன்படுத்துவது என்பதை கற்றல்",
+ "nav-guide-use-wallet-label": "Wallet பயன்படுத்துவது எப்படி",
+ "nav-guides-description": "நீங்கள் தொடங்குவதற்கு உதவும் வகையில் படிப்படியான செயல்முறை வழிகாட்டு முறைகள்",
+ "nav-guides-label": "எப்படி வழிகாட்டுகிறது",
+ "nav-history-description": "அனைத்து முக்கிய ஃபோர்க்குகள் மற்றும் புதுப்பித்தலுக்கான காலவரையறை",
+ "nav-history-label": "எத்தேரியம்-இன் தொழில்நுட்ப வரலாறு",
+ "nav-layer-2-description": "எத்தேரியம்-க்கான விலைமலிவான மற்றும் விரைவான பரிவர்த்தனைகள்",
+ "nav-learn-by-coding-description": "எத்தேரியம் உடன் ஆராய்வதற்கு உதவக்கூடிய கருவிகள்",
+ "nav-local-env-description": "உங்கள் எத்தேரியம் உருவாக்க அடுக்கைத் தேர்ந்தெடுத்து அமைத்தல்",
+ "nav-mainnet-description": "நிறுவன பிளாக்செயின் செயலிகள் பொது எத்தேரியம் மெயின்நெட்டில் உருவாக்கலாம்",
+ "nav-nft-description": "எத்தேரியம் அடிப்படையிலான உடைமையைப் போன்று ஏதேனும் தனித்துவமான ஒன்றை கட்சிப்படுத்தும் வழி",
+ "nav-open-research-description": "எத்தேரியம்-இன் முதன்மை வலிமைகளில் ஒன்று அதன் செயல்பாட்டுடன் கூடிய ஆராய்ச்சி சமூகம்",
+ "nav-open-research-label": "திறந்த ஆராய்ச்சி",
+ "nav-overview-description": "எத்தேரியம் சார்ந்த அனைத்து கல்வி",
+ "nav-participate-overview-description": "எவ்வாறு பங்கேற்பது என்பதன் மீதான கண்ணோட்டம்",
"nav-primary": "முதன்மை",
- "nft-page": "மாற்ற முடியாத டோக்கன்கள் (NFTs)",
+ "nav-quizzes-description": "எத்தேரியம் மற்றும் கிரிப்டோகரன்சி குறித்து எவ்வளவு நன்றாகப் புரிந்துவைத்துள்ளீர்கள் என்று கண்டறிதல்",
+ "nav-quizzes-label": "உங்கள் பொதுஅறிவை சோதித்தல்",
+ "nav-refi-description": "மீளுருவாக்கம் கொள்கைகளைக் கொண்டு உருவாக்கப்பட்ட ஒரு மாற்று பொருளாதார அமைப்பு",
+ "nav-research-description": "எத்தேரியம்-ஐ மேம்படுத்துவதற்கு பயன்படுத்தப்படும் செயல்முறைகள்",
+ "nav-research-label": "ஆராய்ச்சி மற்றும் வளர்ச்சி",
+ "nav-roadmap-description": "எத்தேரியம்-க்கான அதிக அளவிடுதல், பாதுகாப்பு மற்றும் நிலைத்தன்மைக்கான பாதை",
+ "nav-roadmap-future-description": "Ethereum ஒரு வலுவான மற்றும் பரவலாக்கப்பட்ட நெட்வொர்க்காகத் திடப்படுத்துதல்",
+ "nav-roadmap-future-label": "எதிர்காலச்-சான்று",
+ "nav-roadmap-label": "திட்டப்பாதை",
+ "nav-roadmap-scaling-description": "பரிவர்த்தனை கட்டணங்கள் மற்றும் வேகத்தை மேலும் குறைப்பதற்கான நெட்வொர்க் புதுப்பித்தல்கள்",
+ "nav-roadmap-security-description": "எத்தேரியம் எதிர்காலத்தில் அனைத்து வகையான சைபர் தாக்குதல்களையும் தாங்கி நிற்கிறது என்பதை உறுதி செய்தல்",
+ "nav-roadmap-security-label": "மேம்பட்ட பாதுகாப்பு",
+ "nav-roadmap-ux-description": "எத்தேரியம் பயன்பாடு எளிதாக்கப்பட வேண்டும்",
+ "nav-run-a-node-description": "நெட்வொர்க்கைப் பாதுகாக்க உதவும்போது முழு இறையாண்மையாக இருத்தல்",
+ "nav-security-description": "கிரிப்டோகரன்சியை பயன்படுத்தும்போது சிறந்த செயல்முறையை கற்றிடுங்கள்",
+ "nav-smart-contracts-description": "எத்தேரியம் அமைப்பின் அடிப்படை வளர்ச்சி படிகள்",
+ "nav-stablecoins-description": "Stablecoins ஒரு நிலையான மதிப்பில் இருக்க வடிவமைக்கப்பட்ட எத்தேரியம் டோக்கன்கள்",
+ "nav-stake-description": "எத்தேரியம்-ஐ பாதுகாப்பதற்கான ரிவார்ட்களை ஈட்டிடுங்கள்",
+ "nav-stake-label": "பங்கு",
+ "nav-staking-home-description": "ஸ்டேக்கிங்-கிற்கான வெவ்வேறு விருப்பத்தேர்வுகளின் கண்ணோட்டம்",
+ "nav-staking-pool-description": "மற்றவர்களுடன் இணைந்து எந்த ஒரு ETH தொகையுடன் ஸ்டேக் செய்து ரிவார்டுகளை ஈட்டிடுங்கள்",
+ "nav-staking-pool-label": "பூல்டு ஸ்டேக்கிங்",
+ "nav-staking-saas-label": "சேவையுடன் கூடிய ஸ்டேகிங்",
+ "nav-staking-solo-label": "சோலோ ஸ்டேக்கிங்",
+ "nav-start-building-description": "புதிதாக நிறுவியுள்ளவர்களுக்கான பயனுள்ள தகவல்கள்",
+ "nav-translation-program-description": "Ethereum.org-ஐ அனைத்து மொழிகளிலும் மொழிபெயர்ப்பு செய்வதற்கான ஒரு கூட்டு முயற்சி",
+ "nav-tutorials-description": "சமூக கல்விசார் பாடங்களின் தொகுப்பு",
+ "nav-use-cases-description": "எத்தேரியம் பயன்பாட்டிற்கான வெவ்வேறு யோசனைகளை கண்டறிதல்",
+ "nav-what-is-ether-description": "எத்தேரியம் செயலிகளின் நாணயம்",
+ "nav-what-is-ethereum-description": "எத்தேரியம்-ஐ எது சிறப்பாக்குகிறது என்பதை புரிந்துகொள்ளுதல்",
+ "nav-what-is-web3-label": "Web3 என்றால் என்ன?",
+ "nav-what-is-web3-description": "விதிகளைக் கொண்டிருக்கும் மையப்படுத்தப்பட்ட தனிஆதிக்கங்களுக்கு மாற்றாக",
+ "nav-whitepaper-description": "2014-இல் அசல் எத்தேரியம் யாதாஸ்துவை விட்டாலிக் புட்டரின் எழுதினார்",
+ "nav-zkp-description": "அறிக்கையை வெளிப்படுத்தாமல் ஒரு அறிக்கையின் செல்லுபடியை நிரூபிக்க ஒரு வழி",
+ "nft-page": "NFTs - மாற்ற முடியாத டோக்கன்கள்",
"nfts": "NFTs",
"no": "இல்லை",
"on-this-page": "இந்தப் பக்கத்தில்",
@@ -140,6 +246,7 @@
"page-developers-aria-label": "டெவலப்பர்களின் மெனு",
"page-index-meta-title": "முகப்பு",
"page-last-updated": "பக்கம் கடைசியாக மாற்றப்பட்டது",
+ "participate-menu": "பங்கேற்பாளர் மெனு",
"pbs": "பல பிரிக்கப்பட்ட சரிபார்ப்பு",
"pools": "பூல்டு ஸ்டேக்கிங்",
"privacy-policy": "தனியுரிமைக் கொள்கை",
@@ -150,9 +257,10 @@
"refresh": "இந்தப் பக்கத்தை ரெஃபிரெஷ் செய்யவும்.",
"return-home": "முகப்புக்குச் செல்",
"roadmap": "எத்தீரியம் திட்டப்படம்",
+ "research": "ஆராய்ச்சி",
+ "research-menu": "ஆராய்ச்சி மெனு",
"resources": "மொழிபெயர்ப்பு ஆதாரங்கள்",
- "regenerative-finance": "Regenerative finance (ReFi)",
- "run-a-node": "முனையை இயக்கு",
+ "run-a-node": "ஒரு கணுவை இயக்கவும்",
"rollup-component-website": "வலைத்தளம்",
"rollup-component-developer-docs": "உருவாக்குநர்களின் ஆவணங்கள்",
"rollup-component-technology-and-risk-summary": "தொழில்நுட்பம் மற்றும் இடர் மதிப்பீட்டு சுருக்கம்",
@@ -164,23 +272,23 @@
"search-box-blank-state-text": "தேடுங்கள்!",
"search-eth-address": "இது எத்தேரியம் முகவரிபோல் தெரிகிறது. முகவரிகளுக்கு ஏற்ப, குறிப்பிட்ட தரவுகளை நாங்கள் வழங்குவதில்லை. இது போன்ற ஒரு பிளாக் உலாவியில் அதைத் தேட முயற்சி செய்க",
"search-no-results": "உங்கள் தேடலுக்கான முடிவுகள் எதுவும் இல்லை",
+ "security": "பாதுகாப்பு",
"single-slot-finality": "ஒருமுறைமாற்றல்",
"statelessness": "நாடற்ற தன்மை",
"see-contributors": "பங்களிப்பாளர்களைக் காட்டு",
- "set-up-local-env": "உட்பணிச் சூழலை உருவாக்கு",
+ "set-up-local-env": "உட்பணிச் சூழல் உருவாக்கு",
"sharding": "ஷார்டிங்",
"show-all": "அனைத்தையும் காட்டு",
"show-less": "குறைவாகக் காட்டு",
"site-description": "எத்தேரியம் என்பது பணம் மற்றும் புதிய வகை செயலிகளுக்கான பன்முனைப்படுத்தப்பட்ட உலகளாவிய தளமாகும். எத்தேரியமில், நீங்கள் பணத்தைக் கட்டுப்படுத்துவதற்கான குறியீட்டை எழுதலாம், உலகின் அனைத்துப் பகுதிகளில் இருந்தும் அணுகக்கூடிய செயலிகளை உருவாக்கலாம்.",
- "site-title": "ethereum.org",
"skip-to-main-content": "பிரதான உள்ளடக்கத்திற்குச் செல்",
"smart-contracts": "ஸ்மார்ட் ஒப்பந்தங்கள்",
- "stablecoins": "ஸ்டேபிள்காயின்ஸ்",
+ "stablecoins": "நிலைத்தக் காசுகள்",
"stake-eth": "எத்தீரியத்தில் பங்குவை",
"staking": "ஸ்டேக்கிங்",
"start-here": "இங்கே இருக்கவும்",
- "style-guide": "Style guide",
"solo": "சோலோ ஸ்டேக்கிங்",
+ "support": "ஆதரவு",
"terms-of-use": "பயன்பாட்டு விதிமுறைகள்",
"translation-banner-body-new": "இவ்விணையப் பக்கம் இன்னும் மொழிபெயர்க்கப்படாததால், இதனை நீங்கள் ஆங்கிலத்தில் காண்கிறீர்கள். இதனை மொழிபெயர்க்க உதவுங்கள்.",
"translation-banner-body-update": "தற்போது இப்பக்கத்திற்கான புதிய பதிப்பு ஆங்கிலத்தில் மட்டுமே உள்ளது. சமீபத்திய பதிப்பினை மொழிபெயர்க்க உதவுங்கள்.",
@@ -191,20 +299,21 @@
"translation-banner-no-bugs-title": "இதில் நிரற்பிழை இல்லை!",
"translation-banner-no-bugs-content": "இன்னும் இந்தப் பக்கம் மொழிபெயர்க்கப்படவில்லை. இந்தப் பக்கத்தை நாங்கள் ஆங்கிலத்திலேயே வைத்திருக்கக் காரணமுள்ளது.",
"translation-banner-no-bugs-dont-show-again": "மீண்டும் காட்ட வேண்டாம்",
+ "translation-program": "மொழிபெயர்ப்புத் திட்டம்",
"try-using-search": "உங்களுக்கு வேண்டியதைக் கண்டறிய தேடல் பட்டனைப் பயன்படுத்தவும் அல்லது",
"tutorials": "பயிற்சிகள்",
"up": "மேலே",
+ "use": "பயன்படுத்த",
"use-ethereum": "எத்தேரியமைப் பயன்படுத்துதல்",
"use-ethereum-menu": "எத்தேரியமைப் பயன்படுத்துதல் மெனு",
- "user-experience": "User experience",
+ "use-menu": "மெனுவை பயன்படுத்துக",
"verkle-trees": "வெர்க்கில் மரங்கள்",
"wallets": "பணப்பைகள்",
"we-couldnt-find-that-page": "அந்தப் பக்கத்தைக் கண்டறிய முடியவில்லை",
"web3": "Web3 என்றால் என்ன?",
- "web3-title": "Web3",
"website-last-updated": "வலைத்தளம் கடைசியாக மாற்றப்பட்டது",
"what-is-ether": "ஈதர் (ETH) என்றால் என்ன?",
- "what-is-ethereum": "எத்தேரியும் என்றால் என்ன?",
+ "what-is-ethereum": "ஈதெரியம் என்றால் என்ன?",
"withdrawals": "ஸ்டேக்கிங் பின்வாங்கல்",
"yes": "ஆம்",
"zero-knowledge-proofs": "ஜீரோ-நிரூபன சான்றுகள்"
diff --git a/src/intl/ta/page-languages.json b/src/intl/ta/page-languages.json
index 50f24fb4783..12357b9d70c 100644
--- a/src/intl/ta/page-languages.json
+++ b/src/intl/ta/page-languages.json
@@ -1,26 +1,29 @@
{
- "page-languages-h1": "ஆதரிக்கப்பட்ட மொழி",
+ "page-languages-h1": "ஆதரிக்கப்படும் மொழி",
"page-languages-interested": "பங்களிக்க ஆர்வமா?",
"page-languages-learn-more": "எங்கள் மொழிபெயர்ப்புத் திட்டத்தைப் பற்றி மேலும் அறிக",
"page-languages-meta-desc": "எத்தீரியம்.ஓஆர்ஜி இன் அனைத்து ஆதரிக்கப்படும் மொழிகளுக்கான ஆதாரங்கள் மற்றும் மொழிபெயர்ப்பாளராக ஈடுபடுவதற்கான வழிகள்.",
"page-languages-meta-title": "எத்தீரியம்.ஓஆர்ஜி மொழி மொழிபெயர்ப்புகள்",
- "page-languages-p1": "எத்தீரியம் என்பது உலகளாவிய திட்டமாகும், மேலும் எத்தீரியம்.ஓஆர்ஜி என்பது அவர்களின் தேசியம் அல்லது மொழியைப் பொருட்படுத்தாமல் அனைவருக்கும் அணுகக்கூடியது. இந்த பார்வையை நனவாக்க எங்கள் சமூகம் கடுமையாக உழைத்து வருகிறது.",
+ "page-languages-p1": "எத்தீரியம் என்பது உலகளாவிய திட்டமாகும், மேலும் எத்தீரியம்.ஓஆர்ஜி என்பது அவர்களின் தேசியம் அல்லது மொழியைப் பொருட்படுத்தாமல் அனைவருக்கும் அணுகக்கூடியது. இந்தப் பார்வையை நனவாக்க எங்கள் சமூகம் கடுமையாக உழைத்து வருகிறது.",
"page-languages-translations-available": "எத்தீரியம்.ஓஆர்ஜி பின்வரும் மொழிகளில் கிடைக்கிறது",
- "page-languages-resources-paragraph": "எத்தீரியம்.ஓஆர்ஜி உள்ளடக்கத்தை மொழிபெயர்ப்பதுடன், நாங்கள் பராமரிக்கிறோம் a",
+ "page-languages-resources-paragraph": "எத்தீரியம்.ஓஆர்ஜி உள்ளடக்கத்தை மொழிபெயர்ப்பதுடன், நாங்கள் பராமரிக்கிறோம் ",
"page-languages-resources-link": "பல மொழிகளில் எத்தீரியம் வளங்களின் தொகுக்கப்பட்ட பட்டியல்",
"page-languages-want-more-header": "எத்தீரியம்.ஓஆர்ஜி ஐ வேறு மொழியில் பார்க்க வேண்டுமா?",
"page-languages-want-more-link": "மொழிபெயர்ப்புத் திட்டம்",
- "page-languages-want-more-paragraph": "எத்தீரியம்.ஓஆர்ஜி மொழிபெயர்ப்பாளர்கள் எப்போதும் முடிந்தவரை பல மொழிகளில் பக்கங்களை மொழிபெயர்த்து வருகின்றனர். அவர்கள் இப்போது என்ன வேலை செய்கிறார்கள் என்பதைப் பார்க்க அல்லது அவர்களுடன் சேர பதிவுபெற, எங்களைப் பற்றி படிக்கவும்",
+ "page-languages-want-more-paragraph": "எத்தீரியம்.ஓஆர்ஜி மொழிபெயர்ப்பாளர்கள் எப்போதும் முடிந்தவரை பல மொழிகளில் பக்கங்களை மொழிபெயர்த்து வருகின்றனர். அவர்கள் இப்போது என்ன வேலை செய்கிறார்கள் என்பதைப் பார்க்க அல்லது அவர்களுடன் சேர பதிவுபெற, எங்களைப் பற்றிப் படிக்கவும்",
"page-languages-filter-label": "வடிகட்டிப் பட்டியல்",
"page-languages-filter-placeholder": "வடிகட்டத் தட்டச்சு செய்க",
"page-languages-browser-default": "இயல்புநிலை உலாவி",
"page-languages-translated": "மொழிபெயர்க்கப்பட்டது",
"page-languages-words": "சொற்கள்",
"page-languages-recruit-community": "Ethereum.org-ஐ மொழிபெயர்க்க எங்களுக்கு உதவிடுங்கள்.",
- "language-ar": "அரபு",
+ "langauge-am": "அம்ஹாரிக்",
+ "language-ar": "அரபிக்",
"language-az": "அஜர்பைஜானி",
+ "langauge-be": "பெலாரூசியன்",
"language-bg": "பல்கேரியன்",
"language-bn": "பெங்காலி",
+ "language-bs": "போஸ்னியன்",
"language-ca": "காத்தலான்",
"language-cs": "செக்",
"language-da": "டேனிஷ்",
@@ -30,13 +33,14 @@
"language-es": "ஸ்பானிஷ்",
"language-fa": "பார்சி",
"language-fi": "ஃபின்னிஷ்",
- "language-fr": "ஃபிரெஞ்சு",
+ "language-fr": "French",
"language-gl": "கலீசியன்",
"language-gu": "குஜராத்தி",
"language-he": "ஹீப்ரு",
"language-hi": "இந்தி",
"language-hr": "க்ரொயேஷியன்",
"language-hu": "ஹங்கேரியன்",
+ "language-hy-am": "அர்மீனியன்",
"language-id": "இந்தோனேஷியன்",
"language-ig": "இக்போ",
"language-it": "இத்தாலியன்",
@@ -44,12 +48,14 @@
"language-ka": "ஜார்ஜியன்",
"language-kk": "கசாக்",
"language-km": "கெமெர்",
+ "language-kn": "கன்னடம்",
"language-ko": "கொரியன்",
"language-lt": "லிதுவேனியன்",
"language-ml": "மலையாளம்",
"language-mr": "மராத்தி",
"language-ms": "மலாய்",
"language-nb": "நார்வீஜியன்",
+ "language-ne-np": "நேபாளி",
"language-nl": "டச்சு",
"language-pcm": "நைஜீரிய பிட்ஜின்",
"language-fil": "ஃபிலிப்பினோ",
@@ -65,6 +71,7 @@
"language-sw": "ஸ்வாஹிலி",
"language-ta": "தமிழ்",
"language-th": "தாய்",
+ "language-tk": "டர்க்மென்",
"language-tr": "துருக்கி",
"language-uk": "உக்ரேனியன்",
"language-ur": "உருது",
diff --git a/src/intl/th/common.json b/src/intl/th/common.json
index 65ea4470ce0..02921370935 100644
--- a/src/intl/th/common.json
+++ b/src/intl/th/common.json
@@ -1,17 +1,29 @@
{
- "account-abstraction": "บัญชีนามธรรม",
"about-ethereum-org": "เกี่ยวกับ ethereum.org",
"about-us": "เกี่ยวกับเรา",
+ "adding-desci-projects": "เพิ่มโครงการ Desci",
+ "adding-developer-tools": "เพิ่มเครื่องมือของผู้พัฒนา",
+ "adding-exchanges": "เพิ่มการแลกเปลี่ยน",
+ "adding-glossary-terms": "เพิ่มคำศัพท์อภิธานศัพท์",
+ "adding-staking-products": "เพิ่มแสต็กของผลิตภัณฑ์",
+ "adding-wallets": "เพิ่มกระเป๋าเงิน",
+ "account-abstraction": "บัญชีนามธรรม",
+ "acknowledgements": "กิตติกรรมประกาศ",
"aria-toggle-search-button": "ปุ่มเปิด-ปิดการค้นหา",
"aria-toggle-menu-button": "ปุ่มเปิด-ปิดเมนู",
"beacon-chain": "Beacon Chain",
"bridges": "สะพาน Blockchain",
+ "bug-bounty": "โปรแกรมตามล่าหาบั๊ก",
+ "build": "สร้าง",
+ "build-menu": "เมนูสร้าง",
"clear": "ลบ",
"close": "ปิด",
"community": "ชุมชน",
"community-hub": "ศูนย์กลางชุมชน",
"community-menu": "เมนูชุมชน",
"contact": "ติดต่อ",
+ "content-buckets": "ที่เก็บข้อมูลเนื้อหา",
+ "content-resources": "แหล่งข้อมูลเนื้อหา",
"content-standardization": "การกำหนดมาตรฐานเนื้อหา",
"contributing": "การมีส่วนร่วม",
"contributors": "ผู้มีส่วนร่วม",
@@ -20,14 +32,17 @@
"copied": "คัดลอกแล้ว",
"copy": "คัดลอก",
"danksharding": "Danksharding",
- "dao-page": "การบริหารองค์กรอัตโนมัติด้วยระบบ Decentralized (DAOs)",
+ "dao-page": "DAOs - การบริหารองค์กรอัตโนมัติด้วยระบบ Decentralized",
"dark-mode": "โหมดมืด",
"data-provided-by": "แหล่งข้อมูล:",
- "decentralized-applications-dapps": "แอปพลิเคชันไร้ศูนย์กลาง (dApp)",
+ "decentralized-applications-dapps": "DApp - แอปพลิเคชันไร้ศูนย์กลาง",
"decentralized-identity": "ตัวตนแบบกระจายศูนย์",
"decentralized-social-networks": "เครือข่ายสังคมแบบกระจายศูนย์",
- "decentralized-science": "วิทยาศาสตร์แบบ Decentralized (DeSci)",
- "defi-page": "ระบบการเงินแบบ Decentralized (DeFi)",
+ "decentralized-science": "DeSci - วิทยาศาสตร์แบบ Decentralized",
+ "description": "คำอธิบายรายการนำทาง",
+ "defi-page": "DeFi - ระบบการเงินแบบ Decentralized",
+ "design": "ออกแบบ",
+ "design-principles": "หลักการออกแบบ",
"devcon": "Devcon",
"developers": "นักพัฒนา",
"developers-home": "หน้าแรกของนักพัฒนา",
@@ -71,7 +86,7 @@
"ethereum-glossary": "อภิธานศัพท์อีเธอเรียม",
"ethereum-governance": "การกำกับดูแลอีเธอเรียม",
"ethereum-logo": "โลโก้อีเธอเรียม",
- "ethereum-roadmap": "เส้นทาง Ethereum",
+ "ethereum-roadmap": "แผนงานอีเธอเรียม",
"ethereum-protocol": "โปรโตคอลของอีเธอเรียม",
"ethereum-security": "ความปลอดภัยในอีเธอเรียมและการป้องกันการหลอกลวง",
"ethereum-support": "การสนับสนุนเกี่ยวกับอีเธอเรียม",
@@ -83,10 +98,10 @@
"feedback-card-prompt-tutorial": "ได้ประโยชน์จากบทสอนใช้งานนี้หรือไม่",
"feedback-widget-thank-you-title": "ขอขอบคุณสำหรับความคิดเห็น!",
"feedback-widget-thank-you-subtitle": "ช่วยปรับปรุงหน้านี้โดยการตอบคำถาม",
- "feedback-widget-thank-you-subtitle-ext": "หากต้องการความช่วยเหลือ โปรดติดต่อชุมชนของเราทาง Discord",
+ "feedback-widget-thank-you-subtitle-ext": "หากคุณต้องการความช่วยเหลือ โปรดติดต่อที่ชุมชนใน Discord ของเรา",
"feedback-widget-thank-you-timing": "2-3 นาที",
"feedback-widget-thank-you-cta": "เปิดแบบสำรวจอย่างย่อ",
- "find-wallet": "ค้นหาวอลเล็ท",
+ "find-wallet": "ค้นหากระเป๋าสตางค์",
"future-proofing": "รองรับอนาคต",
"get-eth": "รับ ETH",
"get-involved": "เข้าร่วมกับเรา",
@@ -94,11 +109,10 @@
"grants": "ทุน",
"grant-programs": "โครงการสนับสนุนระบบนิเวศ",
"guides": "คู่มือ",
- "guides-hub": "ฮับคู่มือ",
+ "guides-hub": "คู่มือการใช้",
"history-of-ethereum": "ประวัติของอีเธอเรียม",
"home": "หน้าหลัก",
"how-ethereum-works": "อีเธอเรียมทำงานอย่างไร",
- "how-to-register-an-ethereum-account": "วิธี \"ลงทะเบียน\" บัญชีอีเธอเรียม",
"how-to-revoke-token-access": "วิธียกเลิกการเข้าถึงสินทรัพย์คริปโตของคุณจากสัญญาอัจฉริยะ",
"how-to-swap-tokens": "วิธีแลกเปลี่ยนเหรียญโทเค็น",
"how-to-use-a-bridge": "วิธีเชื่อมเหรียญโทเค็นกับเลเยอร์ 2",
@@ -128,11 +142,107 @@
"loading-error-try-again-later": "ไม่สามารถโหลดข้อมูล ลองอีกครั้งในภายหลัง",
"logo": "โลโก้",
"mainnet-ethereum": "Mainnet Ethereum",
+ "merge": "ผสาน",
"more": "เพิ่มเติม",
- "nav-developers": "นักพัฒนา",
+ "nav-about-description": "โครงการโอเพ่นซอร์สสาธารณะสำหรับชุมชนอีเธอเรียม",
+ "nav-advanced-description": "เรียนรู้หัวข้อที่ซับซ้อนมากขึ้น",
+ "nav-advanced-label": "ขั้นสูง",
+ "nav-basics-description": "ทำความเข้าใจปัจจัยพื้นฐานของอีเธอเรียม",
+ "nav-basics-label": "พื้นฐาน",
+ "nav-bridges-description": "Web3 ได้พัฒนาไปสู่ระบบนิเวศของบล็อกเชน L1 หลักและโซลูชันการปรับขนาด L2",
+ "nav-builders-home-description": "คู่มือผู้สร้างสำหรับอีเธอเรียม—โดยผู้สร้าง สำหรับผู้สร้าง",
+ "nav-builders-home-label": "หน้าหลักของผู้สร้าง",
+ "nav-contribute-description": "หากคุณต้องการความช่วยเหลือ นี่จะแนะนำคุณ",
+ "nav-contribute-label": "การมีส่วนร่วมใน ethereum.org",
+ "nav-dao-description": "ชุมชนที่สมาชิกเป็นเจ้าของโดยไม่มีอำนาจจากส่วนกลาง",
+ "nav-dapps-description": "สำรวจระบบนิเวศที่มั่นคงของแอปที่ใช้อีเธอเรียม",
+ "nav-defi-description": "ทางเลือกที่เปิดกว้างระดับโลกสำหรับตลาดการเงินแบบดั้งเดิม",
+ "nav-desci-description": "ทางเลือกที่เปิดกว้างระดับโลกสำหรับระบบวิทยาศาสตร์ในปัจจุบัน",
+ "nav-desoc-description": "แพลตฟอร์มที่ใช้บล็อกเชนสำหรับการโต้ตอบทางสังคมและการสร้างเนื้อหา",
"nav-developers-docs": "เอกสารสำหรับนักพัฒนา",
+ "nav-developers": "นักพัฒนา",
+ "nav-did-description": "ออกและเป็นเจ้าของตัวระบุแบบกระจายศูนยที่ไม่เหมือนใครของคุณ",
+ "nav-docs-description": "เอกสารที่ช่วยให้คุณเข้าใจและสร้างขึ้นด้วยอีเธอเรียม",
+ "nav-docs-design-description": "คำอธิบายของความท้าทายในการออกแบบ web3 ที่ไม่เหมือนใคร แนวปฏิบัติที่ดีที่สุด และข้อมูลเชิงลึกในการวิจัยผู้ใช้งาน",
+ "nav-docs-design-label": "พื้นฐานการออกแบบ UX/UI",
+ "nav-docs-foundation-description": "ปัจจัยพื้นฐานหลักในการพัฒนาบนอีเธอเรียม",
+ "nav-docs-foundation-label": "หัวข้อพื้นฐาน",
+ "nav-docs-overview-description": "หน้าหลักของคุณสำหรับเอกสารของผู้พัฒนา",
+ "nav-docs-stack-description": "ทำความเข้าใจรายละเอียดทั้งหมดของสแต็กของอีเธอเรียม",
+ "nav-docs-stack-label": "Ethereum stack",
+ "nav-eip-description": "มาตรฐานที่ระบุคุณสมบัติหรือกระบวนการใหม่",
+ "nav-eip-label": "EIP - ข้อเสนอการปรับปรุงอีเธอเรียม",
+ "nav-emerging-description": "ทำความรู้จักกรณีการใช้งานใหม่อื่นๆ สำหรับอีเธอเรียม",
+ "nav-enterprise-description": "แอปพลิเคชันธุรกิจสำหรับอีเธอเรียม",
+ "nav-ethereum-org-description": "เว็บไซต์นี้ขับเคลื่อนโดยชุมชน—เข้าร่วมกับเราและมีส่วนร่วมกัน",
+ "nav-ethereum-wallets-description": "แอปสำหรับโต้ตอบกับบัญชีอีเธอเรียมของคุณ",
+ "nav-events-description": "การกระจายศูนย์และเสรีภาพในการเข้าร่วมสำหรับทุกคน",
+ "nav-events-irl-description": "ทุกเดือนจะมีกิจกรรมอีเธอเรียมที่สำคัญทั้งแบบตัวต่อตัวและออนไลน์",
+ "nav-events-label": "ชุมชนและกิจกรรมต่างๆ",
+ "nav-events-online-description": "ผู้ชื่นชอบอีเธอเรียมหลายแสนคนเป็นผู้ก่อตั้งชุมชนออนไลน์เหล่านี้",
+ "nav-find-wallet-description": "กระเป๋าเงินช่วยให้คุณใช้คริปโตได้",
+ "nav-find-wallet-label": "เลือกวอลเล็ทของคุณ",
+ "nav-gas-fees-description": "ค่าธรรมเนียมการทำธุรกรรม ETH คำนวณอย่างไร",
+ "nav-gas-fees-label": "Gas fees",
+ "nav-get-eth-description": "คุณต้องมีอีเธอร์ (ETH) เพื่อใช้แอปพลิเคชันอีเธอเรียม",
+ "nav-get-started-description": "ขั้นตอนแรกในการใช้งานอีเธอเรียม",
+ "nav-governance-description": "กระบวนการที่เกี่ยวข้องกับการอัปเกรดโปรโตคอลอีเธอเรียม",
+ "nav-governance-label": "การกำกับดูแล",
+ "nav-grants-description": "รายชื่อที่รวบรวมโดยชุมชนของเราเกี่ยวกับโครงการที่จัดให้มีโครงการให้ทุนสนับสนุน",
+ "nav-guide-create-account-description": "ทุกคนสามารถสร้างบัญชีอีเธอเรียมได้ฟรีตลอดเวลาด้วยแอปวอลเล็ท",
+ "nav-guide-revoke-access-description": "ใช้งานอย่างปลอดภัยเมื่อโต้ตอบกับสัญญาอัจฉริยะและแอปพลิเคชันในระบบนิเวศอีเธอเรียม",
+ "nav-guide-revoke-access-label": "วิธีเพิกถอนการเข้าถึงสัญญาอัจฉริยะ",
+ "nav-guide-use-wallet-description": "เรียนรู้วิธีใช้งานฟังก์ชันพื้นฐานทั้งหมดของวอลเล็ท",
+ "nav-guide-use-wallet-label": "วิธีใช้วอลเล็ท",
+ "nav-guides-description": "คำแนะนำการปฏิบัติทีละขั้นตอนเพื่อช่วยคุณในการเริ่มต้นใช้งาน",
+ "nav-guides-label": "วิธีการแนะนำ",
+ "nav-history-description": "ไทม์ไลน์ของฟอร์กและการอัปเดตที่สำคัญทั้งหมด",
+ "nav-history-label": "ประวัติทางเทคนิคของอีเธอเรียม",
+ "nav-layer-2-description": "การทำธุรกรรมสำหรับอีเธอเรียมที่ราคาถูกกว่าและเร็วกว่า",
+ "nav-learn-by-coding-description": "เครื่องมือที่ช่วยให้คุณทดลองกับอีเธอเรียมได้",
+ "nav-local-env-description": "เลือกและตั้งค่าสแต็กการพัฒนาอีเธอเรียมของคุณ",
+ "nav-mainnet-description": "สามารถสร้างแอปพลิเคชันบล็อกเชนระดับองค์กรขึ้นบนเครือข่ายหลักของอีเธอเรียมสาธารณะได้",
+ "nav-nft-description": "วิธีการนำเสนอสิ่งที่เป็นเอกลักษณ์ในฐานะสินทรัพย์ที่ใช้อีเธอเรียม",
+ "nav-open-research-description": "จุดแข็งที่สำคัญประการหนึ่งของอีเธอเรียม คือชุมชนการวิจัยที่กระตือรือร้น",
+ "nav-open-research-label": "เปิดงานวิจัย",
+ "nav-overview-description": "ทุกสิ่งเกี่ยวกับการศึกษาอีเธอเรียม",
+ "nav-participate-overview-description": "ภาพรวมเกี่ยวกับวิธีการเข้าร่วม",
"nav-primary": "หลัก",
- "nft-page": "Non-fungible tokens (NFTs)",
+ "nav-quizzes-description": "ค้นหาว่าคุณเข้าใจอีเธอเรียมและสกุลเงินดิจิทัลได้ดีเพียงใด",
+ "nav-quizzes-label": "ทดสอบความรู้ของคุณ",
+ "nav-refi-description": "ระบบเศรษฐกิจทางเลือกที่สร้างจากหลักการปฏิรูป",
+ "nav-research-description": "กระบวนการที่ใช้ในการปรับปรุงอีเธอเรียม",
+ "nav-research-label": "การวิจัยและพัฒนา",
+ "nav-roadmap-description": "เส้นทางสู่ความสามารถในการปรับขนาด การรักษาความปลอดภัย และความยั่งยืนมากขึ้นสำหรับอีเธอเรียม",
+ "nav-roadmap-future-description": "ทำให้อีเธอเรียมมั่นคงยิ่งขึ้นในฐานะเครือข่ายที่แข็งแกร่งและกระจายศูนย์",
+ "nav-roadmap-future-label": "รองรับอนาคต",
+ "nav-roadmap-label": "แผนงาน",
+ "nav-roadmap-scaling-description": "การอัปเดตเครือข่ายเพื่อลดต้นทุนและความเร็วในการทำธุรกรรมเพิ่มเติม",
+ "nav-roadmap-security-description": "ทำให้มั่นใจว่าอีเธอเรียมยังมีความยืดหยุ่นต่อการโจมตีทุกประเภทในอนาคต",
+ "nav-roadmap-security-label": "ความปลอดภัยที่ปรับปรุงให้ดีขึ้น",
+ "nav-roadmap-ux-description": "การใช้งานอีเธอเรียมจำเป็นต้องทำให้ง่ายขึ้น",
+ "nav-run-a-node-description": "มีเสถียรภาพอย่างเต็มที่ในขณะที่ช่วยรักษาความปลอดภัยให้เครือข่าย",
+ "nav-security-description": "เรียนรู้แนวปฏิบัติที่ดีที่สุดเมื่อใช้คริปโตเคอร์เรนซี",
+ "nav-smart-contracts-description": "โครงสร้างพื้นฐานของระบบนิเวศอีเธอเรียม",
+ "nav-stablecoins-description": "สเตเบิลคอยน์คือโทเค็นอีเธอเรียมที่ออกแบบมาให้มีมูลค่าคงที่",
+ "nav-stake-description": "รับรางวัลสำหรับการรักษาความปลอดภัยอีเธอเรียม",
+ "nav-stake-label": "สเตก",
+ "nav-staking-home-description": "ภาพรวมของตัวเลือกต่างๆ สำหรับการสเตก",
+ "nav-staking-pool-description": "สเตกและรับรางวัลด้วย ETH จำนวนเท่าใดก็ได้โดยการเข้าร่วมกับผู้อื่น",
+ "nav-staking-pool-label": "การ Stake แบบกองรวม",
+ "nav-staking-saas-label": "การสเตกด้วยบริการ",
+ "nav-staking-solo-label": "การ Stake แบบกองเดี่ยว",
+ "nav-start-building-description": "ข้อมูลที่มีประโยชน์สำหรับผู้เริ่มต้นใหม่",
+ "nav-translation-program-description": "ความพยายามร่วมกันในการแปล ethereum.org เป็นภาษาอื่นๆ ทั้งหมด",
+ "nav-tutorials-description": "รายการบทช่วยสอนของชุมชนที่รวบรวมไว้",
+ "nav-use-cases-description": "ค้นพบแนวคิดที่แตกต่างกันในการใช้งานอีเธอเรียม",
+ "nav-what-is-ether-description": "สกุลเงินของแอปอีเธอเรียม",
+ "nav-what-is-ethereum-description": "ทำความเข้าใจว่าอะไรที่ทำให้อีเธอเรียมพิเศษ",
+ "nav-what-is-web3-label": "Web3 คืออะไร",
+ "nav-what-is-web3-description": "ทางเลือกอื่นนอกเหนือจากการผูกขาดแบบรวมศูนย์ซึ่งกำหนดกฎเกณฑ์",
+ "nav-whitepaper-description": "เอกสารไวท์เปเปอร์ต้นฉบับของอีเธอเรียมเขียนโดยวิทาลิก บูเทอรินในปี 2014",
+ "nav-zkp-description": "วิธีการพิสูจน์ความถูกต้องของข้อความโดยไม่ต้องเปิดเผยข้อความนั้น",
+ "nft-page": "NFTs - Non-fungible tokens",
"nfts": "NFT",
"no": "ไม่",
"on-this-page": "ในหน้านี้",
@@ -140,6 +250,7 @@
"page-developers-aria-label": "เมนูสำหรับผู้พัฒนา",
"page-index-meta-title": "หน้าหลัก",
"page-last-updated": "หน้าปรับปรุงล่าสุด",
+ "participate-menu": "เมนูการมีส่วนร่วม",
"pbs": "การแยกผู้เสนอและผู้พัฒนา",
"pools": "การ Stake แบบกองรวม",
"privacy-policy": "นโยบายความเป็นส่วนตัว",
@@ -150,8 +261,10 @@
"refresh": "โปรดรีเฟรชหน้า",
"return-home": "กลับไปหน้าแรก",
"roadmap": "แผนงานอีเธอเรียม",
+ "research": "การวิจัย",
+ "research-menu": "เมนูการวิจัย",
"resources": "แหล่งข้อมูลการแปล",
- "regenerative-finance": "ระบบการเงินแบบเกิดใหม่ (ReFi)",
+ "regenerative-finance": "ReFi - ระบบการเงินแบบเกิดใหม่",
"run-a-node": "รันโหนด",
"rollup-component-website": "เว็บไซต์",
"rollup-component-developer-docs": "เอกสารสำหรับนักพัฒนา",
@@ -164,6 +277,7 @@
"search-box-blank-state-text": "ค้นหา",
"search-eth-address": "ดูเหมือนคำต้นจะเป็นที่อยู่ของอีเธอเรียม เราไม่ได้ให้ข้อมูลเจาะจงสำหรับที่อยู่ ลองค้นหาใน block explorer ดู",
"search-no-results": "ไม่พบผลการค้นหาที่คุณต้องการ",
+ "security": "ความปลอดภัย",
"single-slot-finality": "Single-slot finality",
"statelessness": "การไร้ซึ่งสถานะ",
"see-contributors": "ดูผู้มีส่วนร่วม",
@@ -181,6 +295,7 @@
"start-here": "เริ่มต้นที่นี่",
"style-guide": "คู่มือการออกแบบ",
"solo": "การ Stake แบบกองเดี่ยว",
+ "support": "ฝ่ายสนับสนุน",
"terms-of-use": "ข้อกำหนดการใช้งาน",
"translation-banner-body-new": "คุณกำลังดูหน้านี้เป็นภาษาอังกฤษเพราะเรายังไม่ได้แปล ช่วยเราแปลเนื้อหานี้",
"translation-banner-body-update": "มีเวอร์ชันใหม่ของหน้านี้ แต่ตอนนี้เป็นภาษาอังกฤษเท่านั้น ช่วยเราแปลเวอร์ชันล่าสุด",
@@ -191,11 +306,14 @@
"translation-banner-no-bugs-title": "ตรงนี้ไม่มีบั๊ก!",
"translation-banner-no-bugs-content": "ยังไม่มีการแปลหน้านี้เพราะเราตั้งใจเก็บหน้านี้ไว้เป็นภาษาอังกฤษ ณ ตอนนี้",
"translation-banner-no-bugs-dont-show-again": "ไม่ต้องแสดงอีก",
+ "translation-program": "โปรแกรมแปลภาษา",
"try-using-search": "ลองใช้การค้นหาเพื่อค้นหาสิ่งที่คุณกำลังมองหาหรือ",
"tutorials": "บทช่วยสอน",
"up": "ขึ้น",
+ "use": "การใช้งาน",
"use-ethereum": "ใช้อีเธอเรียม",
"use-ethereum-menu": "เมนูใช้อีเธอเรียม",
+ "use-menu": "ใช้เมนู",
"user-experience": "ประสบการณ์ผู้ใช้งาน",
"verkle-trees": "ต้นไม้เวอร์เคิล",
"wallets": "วอลเล็ท",
diff --git a/src/intl/th/page-languages.json b/src/intl/th/page-languages.json
index d5cb3ca3ccb..526c1721dfe 100644
--- a/src/intl/th/page-languages.json
+++ b/src/intl/th/page-languages.json
@@ -1,26 +1,29 @@
{
"page-languages-h1": "การสนับสนุนด้านภาษา",
- "page-languages-interested": "สนใจร่วมสนับสนุน?",
- "page-languages-learn-more": "ศึกษาเพิ่มเติมเกี่ยวกับโปรแกรมแปลภาษาของเรา",
+ "page-languages-interested": "สนใจร่วมสนับสนุนหรือไม่",
+ "page-languages-learn-more": "เรียนรู้เพิ่มเติมเกี่ยวกับโปรแกรมแปลภาษาของเรา",
"page-languages-meta-desc": "แหล่งข้อมูลสำหรับภาษาทั้งหมดที่รองรับ ethereum.org และวิธีการเข้าร่วมเป็นนักแปล",
- "page-languages-meta-title": "แปลภาษา ethereum.org",
- "page-languages-p1": "Ethereum ถือเป็นโปรเจคระดับโลก และ ethereum.org จำเป็นที่จะต้องเข้าถึงได้สำหรับทุกคน ไม่ว่าพวกเขาจะมาจากที่ไหนหรือพูดภาษาใด ชุมชนของเราได้พยายามอย่างเต็มที่เพื่อจะทำให้สิ่งนี้เป็นจริง",
+ "page-languages-meta-title": "การแปลภาษา ethereum.org",
+ "page-languages-p1": "อีเธอเรียมถือเป็นโครงการระดับโลก และ ethereum.org จำเป็นที่จะต้องเข้าถึงได้สำหรับทุกคน ไม่ว่าพวกเขาจะมีสัญชาติใดหรือพูดภาษาใด ชุมชนของเราได้พยายามอย่างเต็มที่เพื่อจะทำให้ภาพนี้เป็นจริง",
"page-languages-translations-available": "ขณะนี้ ethereum.org รองรับภาษาดังต่อไปนี้",
"page-languages-resources-paragraph": "นอกเหนือจากการแปลเนื้อหาบน ethereum.org เรายังมี",
- "page-languages-resources-link": "แหล่งรวมรายละเอียดของอีเธอเรียมในภาษาอื่นๆด้วย",
- "page-languages-want-more-header": "อยากให้ ethereum.org แปลภาษาอื่น?",
+ "page-languages-resources-link": "แหล่งรวมรายละเอียดของอีเธอเรียมในภาษาต่างๆ มากมาย",
+ "page-languages-want-more-header": "อยากจะดู ethereum.org แปลเป็นภาษาอื่นหรือไม่",
"page-languages-want-more-link": "โปรแกรมแปลภาษา",
- "page-languages-want-more-paragraph": "ชุมชนนักแปล ethereum.org มุ่งมั่นที่จะแปลเนื้อหาให้ได้หลายภาษามากที่สุดเท่าที่จะทำได้ หากคุณต้องการดูโปรเจคที่กำลังแปลอยู่หรือสนใจช่วยแปล โปรดอ่านรายละเอียดจาก",
+ "page-languages-want-more-paragraph": "ชุมชนนักแปล ethereum.org มุ่งมั่นที่จะแปลเนื้อหาให้ได้หลายภาษามากที่สุดเท่าที่จะทำได้ หากต้องการดูโครงการที่กำลังแปลอยู่หรือต้องการลงทะเบียนเข้าร่วม โปรดอ่านรายละเอียด",
"page-languages-filter-label": "รายการตัวกรอง",
"page-languages-filter-placeholder": "พิมพ์เพื่อกรอง",
"page-languages-browser-default": "ค่าเริ่มต้นเบราว์เซอร์",
"page-languages-translated": "แปลแล้ว",
"page-languages-words": "คำ",
"page-languages-recruit-community": "ช่วยฉันแปล ethereum.org",
+ "langauge-am": "อาหรับ",
"language-ar": "อาหรับ",
"language-az": "อาเซอร์ไบจาน",
+ "langauge-be": "เบลารุส",
"language-bg": "บัลแกเรีย",
"language-bn": "เบงกอล",
+ "language-bs": "บอสเนีย",
"language-ca": "คาตาลัน",
"language-cs": "เช็ก",
"language-da": "เดนมาร์ก",
@@ -32,24 +35,27 @@
"language-fi": "ฟินแลนด์",
"language-fr": "ฝรั่งเศส",
"language-gl": "กาลิเชียน",
- "language-gu": "ภาษาคุชราต",
+ "language-gu": "คุชราต",
"language-he": "ฮีบรู",
"language-hi": "ฮินดี",
"language-hr": "โครเอเชีย",
"language-hu": "ฮังการี",
+ "language-hy-am": "อาร์เมเนีย",
"language-id": "อินโดนีเซีย",
"language-ig": "อิกโบ",
"language-it": "อิตาลี",
"language-ja": "ญี่ปุ่น",
- "language-ka": "จอร์เจียน",
+ "language-ka": "จอร์เจีย",
"language-kk": "คาซัก",
"language-km": "เขมร",
+ "language-kn": "กันนาดา",
"language-ko": "เกาหลี",
"language-lt": "ลิทัวเนีย",
"language-ml": "มลยาฬัม",
"language-mr": "มราฐี",
"language-ms": "มลายู",
"language-nb": "นอร์เวย์",
+ "language-ne-np": "เนปาล",
"language-nl": "ดัตช์",
"language-pcm": "พิดจินไนจีเรีย",
"language-fil": "ฟิลิปปินส์",
@@ -63,8 +69,9 @@
"language-sl": "สโลวีเนีย",
"language-sr": "เซอร์เบีย",
"language-sw": "สวาฮีลี",
- "language-ta": "ภาษาทมิฬ",
+ "language-ta": "ทมิฬ",
"language-th": "ไทย",
+ "language-tk": "เติร์กเมนิสถาน",
"language-tr": "ตุรกี",
"language-uk": "ยูเครน",
"language-ur": "อูรดู",
diff --git a/src/intl/th/page-wallets-find-wallet.json b/src/intl/th/page-wallets-find-wallet.json
index d5a8a610463..4ade33a1cad 100644
--- a/src/intl/th/page-wallets-find-wallet.json
+++ b/src/intl/th/page-wallets-find-wallet.json
@@ -7,7 +7,6 @@
"page-find-wallet-meta-title": "ค้นหาวอลเล็ทบนอีเธอเรียม",
"page-find-wallet-title": "ค้นหาวอลเล็ท",
"page-find-wallet-try-removing": "ลองลบหนึ่งหรือสองคุณสมบัติออกจากรายการ",
- "page-find-wallet-choose-to-compare": "เลือกเพื่อเปรียบเทียบ",
"page-stake-eth": "Stake ETH",
"page-find-wallet-open-source": "Open source",
"page-find-wallet-open-source-desc": "ใคร ๆ ก็ตรวจสอบความมั่นคงและความปลอดภัยของซอฟต์แวร์โอเพ่นซอร์สได้",
@@ -16,8 +15,6 @@
"page-find-wallet-non-custodial-desc": "วอลเล็ทที่ไม่ได้ควบคุมกุญแจลับส่วนตัวของคุณ",
"page-find-wallet-hardware-wallet-support": "ใช้งานกับเครื่องวอลเล็ทได้",
"page-find-wallet-hardware-wallet-support-desc": "วอลเล็ทที่สามารถเชื่อมต่อกับเครื่องวอลเล็ทเพื่อความปลอดภัยที่ดีขึ้น",
- "page-find-wallet-walletconnect": "WalletConnect",
- "page-find-wallet-walletconnect-desc": "วอลเล็ทที่สามารถใช้ WalletConnect เพื่อที่จะเชื่อมต่อกับแอปพลิเคชันไร้ศูนย์กลาง (dapps)",
"page-find-wallet-rpc-importing": "การนำเข้า RPC",
"page-find-wallet-rpc-importing-desc": "วอลเล็ทที่สามารถใช้ปลายทาง RPC ที่กำหนดเองเพื่อเชื่อมต่อกับโหนดหรือเครือข่ายต่างๆ",
"page-find-wallet-nft-support": "ใช้งานกับ NFT ได้",
@@ -36,8 +33,6 @@
"page-find-wallet-ens-support-desc": "วอลเล็ทที่สามารถใช้บริการชื่ออีเธอเรียม (ENS)",
"page-find-wallet-token-importing": "การนำเข้าโทเค็น",
"page-find-wallet-token-importing-desc": "นำเข้าโทเค็น ERC-20 ที่จะใช้ในวอลเล็ท",
- "page-find-wallet-fee-optimization": "เพิ่มประสิทธิภาพค่าธรรมเนียม",
- "page-find-wallet-fee-optimization-desc": "สามารถทำธุรกรรมประเภท 2 สำหรับค่าธรรมเนียมแก๊สที่เหมาะสมและคืนค่าธรรมเนียมแก๊สที่ไม่ได้ใช้",
"page-find-wallet-buy-crypto": "ซื้อเงินดิจิทัล",
"page-find-wallet-buy-crypto-desc": "ซื้อเงินดิจิทัลด้วยเงินตราโดยตรงในวอลเล็ท \n *หมายเหตุ: ความสามารถซื้อเงินดิจิทัลอาจจะขึ้นอยู่กับภูมิภาค",
"page-find-wallet-sell-for-fiat": "ขายเพื่อเงินตรา",
@@ -46,7 +41,6 @@
"page-find-wallet-multisig-desc": "วอลเล็ทที่เรียกร้องหลายลายเซ็นเพื่ออนุมัติการทำธุรกรรม",
"page-find-wallet-social-recovery": "การกู้คืนข้อมูลด้วยผู้ใช้หลายคน (Social recovery)",
"page-find-wallet-social-recovery-desc": "วอลเล็ทที่ให้ผู้ปกครองเปลี่ยนคีย์เซ็นชื่อวอลเล็ทสัญญาอัจฉริยะ",
- "page-find-wallet-token-support": "ใช้งานกับโทเค็นได้",
"page-find-wallet-features": "คุุณสมบัติ",
"page-find-wallet-security": "ความปลอดภัย",
"page-find-wallet-smart-contract": "Smart contract",
@@ -63,7 +57,6 @@
"page-find-wallet-chromium": "Chromium",
"page-find-wallet-firefox": "Firefox",
"page-find-wallet-hardware": "ฮาร์ดแวร์",
- "page-find-wallet-hardware-desc": "เครื่องวอลเล็ท",
"page-find-wallet-new-to-crypto-title": "ยังไม่ชำนาญเงินดิจิทัล",
"page-find-wallet-new-to-crypto-desc": "คุณเป็นผู้ใช้งานครั้งแรกที่กำลังมองหาวอลเล็ทใบแรก",
"page-find-wallet-nfts-title": "NFT",
@@ -74,21 +67,13 @@
"page-find-wallet-finance-desc": "คุณเป็นคนที่ใช้ระบบการเงินแบบไม่รวมศูนย์ (DeFi) และต้องการวอลเล็ทที่ใช้กับแอปพลิเคชัน DeFi ได้",
"page-find-wallet-developer-title": "ผู้พัฒนา",
"page-find-wallet-developer-desc": "คุณเป็นผู้พัฒนาและต้องการวอลเล็ทที่ช่วยพัฒนาและทดสอบแอปพลิเคชันไร้ศูนย์กลาง (dapps)",
- "page-find-wallet-persona-desc": "เลือกลักษณะที่ตรงกับประเภทผู้ใช้งานที่คุณเห็นด้วยและกรองรายการวอลเล็ท",
"page-find-wallet-filters": "กรอง",
"page-find-wallet-active": "ใช้งานอยู่",
- "page-find-wallet-profile-filters": "กรองลักษณะ",
- "page-find-wallet-feature-filters": "กรองคุณสมบัติ",
"page-find-wallet-footnote-1": "การรวมของวอลเล็ทในหน้านี้มิได้แสดงถึงการรับรองสนับสนุนอย่างเป็นทางการ และเป็นเพียงวัตถุประสงค์ในการให้ข้อมูลเท่านั้น",
"page-find-wallet-footnote-2": "คุณสมบัติของพวกวอลเล็ทจัดเตรียมให้โดยโครงการของวอลเล็ทนั้นเอง",
"page-find-wallet-footnote-3": "เราเพิ่มเติมผลิตภัณฑ์ในหน้านี้ตามเกณฑ์ในนโยบายการลงรายการของเรา หากคุณต้องการให้เราเติมวอลเล็ท กรุณาแจ้งปัญหาใน GitHub",
"page-find-wallet-mobile": "โทรศัพท์มือถือ",
- "page-find-wallet-mobile-desc": "วอลเล็ทที่มีแอปมือถือ",
"page-find-wallet-desktop": "เดสก์ทอป",
- "page-find-wallet-desktop-desc": "วอลเล็ทที่มีแอปคอมพิวเตอร์",
"page-find-wallet-browser": "บราวเซอร์",
- "page-find-wallet-browser-desc": "วอลเล็ทที่มีส่วนขยายบราวเซอร์",
- "page-find-wallet-device": "อุปกรณ์",
- "page-find-choose-to-compare": "เลือกเพื่อเปรียบเทียบ",
- "page-find-wallet-choose-features": "เลือกคุณสมบัติ"
+ "page-find-wallet-device": "อุปกรณ์"
}
diff --git a/src/intl/tk/common.json b/src/intl/tk/common.json
index d960e8b8e00..7c1a7bd5c9c 100644
--- a/src/intl/tk/common.json
+++ b/src/intl/tk/common.json
@@ -1,17 +1,28 @@
{
- "account-abstraction": "Hasap abstraksiýasy",
"about-ethereum-org": "Ethereum.org hakynda",
"about-us": "Biz hakda",
+ "adding-desci-projects": "“Desci” proýektlerini goşmak",
+ "adding-developer-tools": "Işläp taýýarlaýjynyň gurallaryny goşmak",
+ "adding-exchanges": "Birža goşmak",
+ "adding-glossary-terms": "Sözlük adalgalaryny goşmak",
+ "adding-staking-products": "Steýking önümlerini goşmak",
+ "adding-wallets": "Gapjyk goşmak",
+ "account-abstraction": "Hasap abstraksiýasy",
"aria-toggle-search-button": "Gözleg çalşyrgyç düwmesi",
"aria-toggle-menu-button": "Menýu çalşyrgyç düwmesi",
"beacon-chain": "Beacon Chain",
"bridges": "Blok zynjyry köprüleri",
+ "bug-bounty": "Bug bounty",
+ "build": "Gurnalyş",
+ "build-menu": "Gurnalyş menýusy",
"clear": "Arassalamak",
"close": "Ýapmak",
"community": "Jemgyýet",
"community-hub": "Jemgyýet merkezi",
"community-menu": "Jemgyýet menýusy",
"contact": "Habarlaşmak",
+ "content-buckets": "Mazmun Bedreleri",
+ "content-resources": "Mazmun resurslary",
"content-standardization": "Mazmuny standartlaşdyrmak",
"contributing": "Goşant goşmak",
"contributors": "Goşant goşanlar",
@@ -20,14 +31,17 @@
"copied": "Göçürildi",
"copy": "Göçürmek",
"danksharding": "Danksharding",
- "dao-page": "Merkezleşdirilmedik awtonom guramalar (DAO-lar)",
+ "dao-page": "DAO-lar - Merkezleşdirilmedik awtonom guramalar",
"dark-mode": "Gara",
"data-provided-by": "Maglumat çeşmesi:",
- "decentralized-applications-dapps": "Merkezleşdirilmedik programmalar(dapps)",
+ "decentralized-applications-dapps": "Dapps - Merkezleşdirilmedik programmalar",
"decentralized-identity": "Merkezleşdirilmedik şahsyýet",
"decentralized-social-networks": "Merkezleşdirilmedik sosial ulgamlar",
- "decentralized-science": "Merkezleşdirilmedik ylym (DeSci)",
- "defi-page": "Merkezleşdirilmedik maliýe (DeFi)",
+ "decentralized-science": "DeSci - Merkezleşdirilmedik ylym",
+ "description": "Nawigasiýa elementiniň beýany",
+ "defi-page": "DeFi - Merkezleşdirilmedik maliýe",
+ "design": "Dizaýn",
+ "design-principles": "Dizaýn ýörelgeleri",
"devcon": "Devcon",
"developers": "Işläp düzüjiler",
"developers-home": "Işläp düzüjileriň öýi",
@@ -59,11 +73,9 @@
"enterprise-menu": "Kärhana menýusy",
"esp": "Ekoulgamy goldamak maksatnamasy",
"eth-current-price": "Häzirki ETH bahasy (USD)",
- "ethereum-basics": "Ethereum basics",
"ethereum-bug-bounty": "Ethereum säwlikleri boýunça baýrak meýilnamasy",
"consensus-when-shipping": "Haçan iberilýär?",
"ethereum-upgrades": "Ethereum täzelenmeleri",
- "ethereum-brand-assets": "Ethereum brand assets",
"ethereum-online": "Onlaýn jemgyýetler",
"ethereum-events": "Ethereum wakalary",
"ethereum-foundation": "Ethereum gaznasy",
@@ -83,22 +95,20 @@
"feedback-card-prompt-tutorial": "Bu gollanma peýdaly boldumy?",
"feedback-widget-thank-you-title": "Pikirleriňiz üçin sag boluň!",
"feedback-widget-thank-you-subtitle": "Birnäçe soraga jogap bermek bilen bu sahypany has hem gowulaň.",
- "feedback-widget-thank-you-subtitle-ext": "Kömek gerek bolsa, Diskord-da jemgyýet bilen habarlaşyp bilersiňiz.",
+ "feedback-widget-thank-you-subtitle-ext": "Kömek gerek bolsa, Discord sahypamyzda jemgyýet bilen habarlaşyp bilersiňiz.",
"feedback-widget-thank-you-timing": "2–3 minut ",
"feedback-widget-thank-you-cta": "Gysga sowalnamany açmak",
- "find-wallet": "Find wallet",
"future-proofing": "Geljege taýýarlyk",
- "get-eth": "ETH alyň",
+ "get-eth": "ETH edinmek",
"get-involved": "Gatnaşmak",
"get-started": "Başlamak üçin",
"grants": "Grantlar",
"grant-programs": "Ekoulgamyň grant maksatnamalary",
"guides": "Gollanmalar",
- "guides-hub": "Gollanmalar merkezi",
+ "guides-hub": "Nädip etmelidigini öwredýän gollanmalar",
"history-of-ethereum": "Ethereum taryhy",
"home": "Baş sahypa",
"how-ethereum-works": "Ethereum nähili işleýär",
- "how-to-register-an-ethereum-account": "Ethereum hasabyny nädip \"bellige aldyrmaly\"",
"how-to-revoke-token-access": "Akylly şertnamanyň kripto serişdeleriňize girişini nädip ýatyrmaly",
"how-to-swap-tokens": "Tokenleri nädip çalyşmaly",
"how-to-use-a-bridge": "Tokenleri 2-nji gatlaga nädip köpri etmeli",
@@ -115,11 +125,9 @@
"last-edit": "Soňky redaktirleme",
"layer-2": "2-nji gatlak",
"learn": "Öwrenmek",
- "learn-by-coding": "Learn by coding",
"learn-hub": "Öwrenme merkezi",
"learn-menu": "Öwrenmek menýusy",
"learn-more": "Goşmaça maglumat",
- "less": "Less",
"light-mode": "Ýagty",
"listing-policy-disclaimer": "Bu sahypada görkezilen önümleriň hemmesi resmi tassyklama däl we diňe maglumat maksatly berilýär. Önüm goşmak ýa-da syýasat barada seslenme goýmak isleseňiz, GitHub-da bir mesele gozgaň.",
"loading": "Ýüklenýär...",
@@ -128,11 +136,102 @@
"loading-error-try-again-later": "Maglumatlary ýükläp bolmaýar. Soňrak täzeden synanyşyň.",
"logo": "logotip",
"mainnet-ethereum": "Esasy ulgam Ethereum",
- "more": "More",
- "nav-developers": "Döredijiler",
+ "merge": "Birleşdirmek",
+ "nav-about-description": "Ethereum jemgyýeti üçin jemgyýetçilik, açyk çeşme kodly taslama",
+ "nav-advanced-description": "Has çylşyrymly mowzuklary öwreniň",
+ "nav-basics-description": "Ethereum-yň esaslaryna düşüniň",
+ "nav-basics-label": "Esasy maglumatlar",
+ "nav-bridges-description": "Web3 başlangyç L1 blokçeýnleriň we L2 masştabirleme çözgütleriniň ekosistemasyna öwrüldi",
+ "nav-builders-home-description": "Ethereum üçin gurluşykçy gollanmasy—gurluşykçylar tarapyndan, gurluşykçylar üçin",
+ "nav-builders-home-label": "Gurluşykçynyň öýi",
+ "nav-contribute-description": "Kömek etmek isleseňiz, bu size ýol görkezer",
+ "nav-contribute-label": "Ethereuma.org websaýtyna goşant goşmak",
+ "nav-dao-description": "Merkezleşdirilen hökümeti bolmadyk, agzalara degişli jemgyýetler",
+ "nav-dapps-description": "Ethereum ulanyp, programmalaryň baý ekosistemasyny öwreniň",
+ "nav-defi-description": "Adaty maliýe bazarynyň ornuny tutýan global, açyk alternatiwa",
+ "nav-desci-description": "Häzirki ylmy ulgama global, açyk alternatiwa",
+ "nav-desoc-description": "Sosial gatnaşyklar we mazmun döretmek üçin blokçeýn esasly platformalar",
"nav-developers-docs": "Işläp düzüji resminamalary",
+ "nav-developers": "Işläp düzüjiler",
+ "nav-did-description": "Özboluşly merkezleşdirilmedik kesgitleýjileriňizi beriň we olara eýeçilik ediň",
+ "nav-docs-description": "Ethereum bilen düşünmäge we gurmaga kömek edýän resminamalar",
+ "nav-docs-design-description": "Özboluşly web3 dizaýn kynçylyklarynyň beýany, iň oňat tejribe we ulanyjy gözleg düşünjeleri",
+ "nav-docs-design-label": "UX/UI dizaýn esaslary",
+ "nav-docs-foundation-description": "Ethereum-da ösmek üçin esasy esaslar",
+ "nav-docs-overview-description": "Işläp taýýarlaýjy resminamalary üçin öýüňiz",
+ "nav-docs-stack-description": "Ethereum steginiň ähli jikme-jikliklerine düşüniň",
+ "nav-eip-description": "Täze aýratynlyklary ýa-da prosesleri kesgitleýän standartlar",
+ "nav-eip-label": "EGBT - Ethereum-y gowulandyrmak barada teklipler",
+ "nav-emerging-description": "Ethereum-a degişli has täze ulanylyş ýagdaýlary barada öwreniň",
+ "nav-enterprise-description": "Ethereum üçin işewürlik programmalary",
+ "nav-ethereum-org-description": "Bu web sahypasy jemgyýet tarapyndan dolandyrylýar - siz hem bize goşulyň we goşant goşuň",
+ "nav-ethereum-wallets-description": "Ethereum hasabyňyz bilen täsirleşmek üçin programma",
+ "nav-events-description": "Merkezi bolmadyk dolandyryş we her kim üçin gatnaşmak azatlygy",
+ "nav-events-irl-description": "Her aý fiziki görnüşde we onlaýn geçirilýän uly Ethereum çäreleri bolýar",
+ "nav-events-label": "Jemgyýetler we çäreler",
+ "nav-events-online-description": "Bu onlaýn jemgyýetlerde ýüz müňlerçe Ethereum höwesjeňler atalyk edýär",
+ "nav-find-wallet-description": "Gapjyklar kripto ulanmaga mümkinçilik berýär",
+ "nav-find-wallet-label": "Gapjygyňyzy saýlaň",
+ "nav-gas-fees-description": "ETH amal tölegleri nähili hasaplanýar",
+ "nav-get-eth-description": "Ethereum programmalaryny ulanmagyňyz üçin size efir (ETH) gerek",
+ "nav-get-started-description": "Ethereum-y ulanmak üçin ilkinji ädimleriňiz",
+ "nav-governance-description": "Ethereum protokolyny täzelemek bilen baglanyşykly proses",
+ "nav-governance-label": "Dolandyryş",
+ "nav-grants-description": "Grant maliýeleşdiriş maksatnamalaryny hödürleýän taslamalar boýunça jemgyýetimiz tarapyndan düzülen sanaw",
+ "nav-guide-create-account-description": "Islendik adam islendik wagt gapjyk programmasy bilen mugt Ethereum hasabyny döredip biler",
+ "nav-guide-revoke-access-description": "Iş salyşan wagtyňyz Ethereum ekosistemasyndaky akylly şertnamalar we programmalar arkaly howpsuz boluň",
+ "nav-guide-revoke-access-label": "Akylly şertnama giriş hukugyny nädip ýatyrmaly",
+ "nav-guide-use-wallet-description": "Gapjykdaky esasy funksiýalaryň ählisini nädip işletmelidigini öwreniň",
+ "nav-guide-use-wallet-label": "Gapjygy nädip ulanmaly",
+ "nav-guides-description": "Siziň başlamagyňyza kömek etmek üçin amaly ädimler",
+ "nav-guides-label": "Nädip etmelidigini öwredýän gollanmalar",
+ "nav-history-description": "Ähli esasy forklaryň we täzelenmeleriň wagtlarynyň rejesi",
+ "nav-history-label": "Ethereumyň tehniki taryhy",
+ "nav-layer-2-description": "Ethereum üçin arzanrak we has çalt amallar",
+ "nav-learn-by-coding-description": "Ethereum bilen synag geçirmäge kömek edýän gurallar",
+ "nav-local-env-description": "Ethereum işläp taýýarlaýyş stegiňizi we guruň",
+ "nav-mainnet-description": "Kärhana blokçeýn programmalary köpçülige açyk Ethereum esasy torunda gurlup bilner",
+ "nav-nft-description": "Üýtgeşik bir zady Ethereum esasly aktiw hökmünde görkezmegiň usuly",
+ "nav-open-research-description": "Ethereum-yň esasy güýçlerinden biri onuň işjeň gözleg jemgyýetidir",
+ "nav-open-research-label": "Açyk gözleg",
+ "nav-overview-description": "Hemme zat barada Ethereum okuwy",
+ "nav-participate-overview-description": "Nädip gatnaşmalydygy barada gysgaça maglumat",
"nav-primary": "Esasy",
- "nft-page": "Özara çalşylmaýan tokenler (NFT-lar)",
+ "nav-quizzes-description": "Ethereum we kriptowalýuta nä derejede düşünýändigiňizi biliň",
+ "nav-quizzes-label": "Bilimleriňizi barlaň",
+ "nav-refi-description": "Täzeden dikeldiş ýörelgelerine esaslanýan alternatiw ykdysady ulgam",
+ "nav-research-description": "Ethereum-y gowulandyrmak üçin ulanylýan prosesler",
+ "nav-research-label": "Gözleg we ösüş",
+ "nav-roadmap-description": "Ethereum üçin has giňelişe, howpsuzlyga we durnuklylyga barýan ýol",
+ "nav-roadmap-future-description": "Ethereumy berk we merkezleşdirilmedik ulgam hökmünde berkitmek",
+ "nav-roadmap-future-label": "Geljege taýýarlyk",
+ "nav-roadmap-label": "Hereketleriň meýilnamasy",
+ "nav-roadmap-scaling-description": "Geleşik çykdajylaryny we tizligini has hem azaltmak üçin tor täzelenmeleri",
+ "nav-roadmap-security-description": "Ethereumyň geljekde her dürli hüjümlere çydamlydygyna göz ýetirmek",
+ "nav-roadmap-security-label": "Kämilleşdirilen howpsuzlyk",
+ "nav-roadmap-ux-description": "Ethereum-y ulanmak aňsatlaşdyrylmaly",
+ "nav-run-a-node-description": "Toruň howpsuzlygyny üpjün etmekde doly özygtyýarly boluň",
+ "nav-security-description": "Kriptowalýuta ulanylanda iň oňat tejribeleri öwreniň",
+ "nav-smart-contracts-description": "Ethereum ekosistemasynyň esasy gurluş bölekleri",
+ "nav-stablecoins-description": "Steýblkoýnlar kesgitlenen bahada galmak üçin döredilen Ethereum tokenleridir",
+ "nav-stake-description": "Ethereum-yň howpsuzlygyny üpjün edýändigiňiz üçin baýrak gazanyň",
+ "nav-stake-label": "Stawka",
+ "nav-staking-home-description": "Stawkalaryň dürli wariantlaryna syn",
+ "nav-staking-pool-description": "Başgalar bilen birleşip, islendik mukdardaky ETH stawka ediň we baýrak alyň",
+ "nav-staking-pool-label": "Üýşürilen steýking",
+ "nav-staking-saas-label": "Hyzmat bilen steýking",
+ "nav-staking-solo-label": "Ýeke steýking",
+ "nav-start-building-description": "Täze gelenler üçin peýdaly maglumatlar",
+ "nav-translation-program-description": "Ethereum.org websaýtyny ähli dillere terjime etmek üçin bilelikdäki tagalla",
+ "nav-tutorials-description": "Jemgyýetçilik okuw sapaklarynyň halypalyk sanawy",
+ "nav-use-cases-description": "Ethereum ulanmak üçin dürli pikirleri tapyň",
+ "nav-what-is-ether-description": "Ethereum programmalarynyň walýutasy",
+ "nav-what-is-ethereum-description": "Ethereum-y nämäniň aýratyn edýändigine düşüniň",
+ "nav-what-is-web3-label": "Web3 näme?",
+ "nav-what-is-web3-description": "Düzgünleri görkezýän merkezleşdirilen monopoliýalaryň ornuny tutýan alternatiwa",
+ "nav-whitepaper-description": "Witalik Buterin tarapyndan 2014-nji ýylda ýazylan asyl Ethereum tehniki resminamasy",
+ "nav-zkp-description": "Beýannamanyň özüni äşgär etmezden, beýannamanyň dogrudygyny subut etmegiň usuly",
+ "nft-page": "NFT-lar - Özara çalşylmaýan tokenler",
"nfts": "NFT-lar",
"no": "Ýok",
"on-this-page": "Bu sahypada",
@@ -140,6 +239,7 @@
"page-developers-aria-label": "Işläp düzüji menýusy",
"page-index-meta-title": "Baş sahypa",
"page-last-updated": "Sahypa soňky gezek täzelendi",
+ "participate-menu": "Gatnaşmak menýusy",
"pbs": "Teklipçiniň bilen gurujynyň tapawudy",
"pools": "Üýşürilen steýking",
"privacy-policy": "Gizlinlik syýasaty",
@@ -150,13 +250,13 @@
"refresh": "Sahypany täzeden ýükläň.",
"return-home": "baş sahypa dolanmak",
"roadmap": "Ethereum ýol kartasy",
+ "research": "Gözleg",
+ "research-menu": "Gözleg menýusy",
"resources": "Terjime gorlary",
- "regenerative-finance": "Regenerative finance (ReFi)",
"run-a-node": "Düwün işlediň",
"rollup-component-website": "Website",
"rollup-component-developer-docs": "Işläp düzüji resminamalary",
"rollup-component-technology-and-risk-summary": "Tehnologiýa we töwekgelçilik barada gysgaça mazmun",
- "scaling": "Scaling",
"saas": "Hyzmat hökmünde steýking",
"search": "Gözleg",
"search-ethereum-org": "ethereum.org-da gözlemek",
@@ -164,6 +264,7 @@
"search-box-blank-state-text": "Gözläň!",
"search-eth-address": "Bu Ethereum salgysyna meňzeýär. Salgylara mahsus maglumatlary bermeýäris. Şunuň ýaly blok agtaryjyda ony gözläp görüň",
"search-no-results": "Gözlegiňiz boýunça netije ýok",
+ "security": "Howpsuzlyk",
"single-slot-finality": "Ýeke slot gutarnyklylygy",
"statelessness": "Raýatlygy ýokluk",
"see-contributors": "Goşant goşýanlary görmek",
@@ -172,14 +273,12 @@
"show-all": "Hemmesini görkez",
"show-less": "Az görkez",
"site-description": "Ethereum pul we täze görnüşli programmalar üçin global, merkezleşdirilmedik platformadyr. Ethereum-da pullara gözegçilik edýän kod ýazyp, dünýäniň islendik ýerinden girip bolýan programmalary gurup bilersiňiz.",
- "site-title": "ethereum.org",
"skip-to-main-content": "Esasy mazmuna geçmek",
"smart-contracts": "Akylly şertnamalar",
"stablecoins": "Stablecoins\n",
"stake-eth": "ETH goýmak",
"staking": "Steýking",
"start-here": "Şu ýerden başlaň",
- "style-guide": "Style guide",
"solo": "Ýeke steýking",
"terms-of-use": "Ulanyş şertleri",
"translation-banner-body-new": "Bu sahypany iňlis dilinde görýärsiňiz, sebäbi ony entek terjime etmedik. Bu mazmuny terjime etmäge kömek ediň.",
@@ -191,17 +290,18 @@
"translation-banner-no-bugs-title": "Bu ýerde ýalňyşlyk ýok!",
"translation-banner-no-bugs-content": "Bu sahypa terjime edilmeýär. Bu sahypany häzirlikçe bilgeşlin iňlis dilinde goýduk.",
"translation-banner-no-bugs-dont-show-again": "Indi görkezme",
+ "translation-program": "Terjime Maksatnamasy",
"try-using-search": "Gözleýän zadyňyzy tapmak üçin gözlegi ulanyp görüň ýa-da",
"tutorials": "Okuw gollanmalary",
"up": "Ýokary",
+ "use": "Ulanyş",
"use-ethereum": "Ethereum ulanmak",
"use-ethereum-menu": "Ethereum menýusyny ulanmak",
- "user-experience": "User experience",
+ "use-menu": "Menýuny ulanmak",
"verkle-trees": "Verkle agaçlary",
"wallets": "Gapjyklar",
"we-couldnt-find-that-page": "Şol sahypany tapyp bilmedik",
"web3": "Web3 näme?",
- "web3-title": "Web3",
"website-last-updated": "Websaýtyň soňky täzelenmesi",
"what-is-ether": "Ether (ETH) näme?",
"what-is-ethereum": "Ethereum näme?",
diff --git a/src/intl/tk/page-languages.json b/src/intl/tk/page-languages.json
index 45638394a43..31820a0e782 100644
--- a/src/intl/tk/page-languages.json
+++ b/src/intl/tk/page-languages.json
@@ -1,8 +1,79 @@
{
+ "page-languages-h1": "Dil goldawy",
+ "page-languages-interested": "Goşant goşmak isleýärsiňizmi?",
+ "page-languages-learn-more": "Terjime Maksatnamamyz hakynda has giňişleýin öwreniň",
+ "page-languages-meta-desc": "Ethereum.org-yň ähli goldanýan dillerine çeşmeler we terjimeçi hökmünde gatnaşmagyň ýollary.",
+ "page-languages-meta-title": "ethereum.org Dil terjimeleri",
+ "page-languages-p1": "Ethereum global taslama bolup, ethereum.org-yň milletine ýa-da diline garamazdan her kim üçin elýeterli bolmagy möhümdir. Jemgyýetimiz bu görüşi amala aşyrmak üçin köp işleýär.",
+ "page-languages-translations-available": "ethereum.org aşakdaky dillerde elýeterlidir",
+ "page-languages-resources-paragraph": "Ethereum.org websaýtynyň mazmunyny terjime etmekden başga-da,",
+ "page-languages-resources-link": "köp dillerde Ethereum çeşmeleriniň ünsli saýlanyp alynan sanawyny saklaýarys",
+ "page-languages-want-more-header": "Ethereum.org-y başga dilde görmek isleýärsiňizmi?",
+ "page-languages-want-more-link": "Terjime Maksatnamasy",
+ "page-languages-want-more-paragraph": "ethereum.org websaýtynyň terjimeçileri sahypalary mümkin boldugyça köp dilde terjime edýärler. Olaryň häzirki wagtda nämäniň üstünde işleýändiklerini görmek ýa-da olara goşulmak üçin ýazylmak üçin şularymyzy okaň",
"page-languages-filter-label": "Süzgüç sanawy",
"page-languages-filter-placeholder": "Süzgüçden geçirmek üçin ýazyň",
"page-languages-browser-default": "Brauzer deslapdan sazlanan",
"page-languages-translated": "terjime edilen",
"page-languages-words": "sözler",
- "page-languages-recruit-community": "Ethereum.org websaýtyny terjime etmäge kömek ediň."
+ "page-languages-recruit-community": "Ethereum.org websaýtyny terjime etmäge kömek ediň.",
+ "langauge-am": "Amharça",
+ "language-ar": "Arapça",
+ "language-az": "Azerbaýjan dili",
+ "langauge-be": "Belorus dili",
+ "language-bg": "Bolgar",
+ "language-bn": "Bengali",
+ "language-bs": "Bosniýa dili",
+ "language-ca": "Katalan",
+ "language-cs": "Çeh",
+ "language-da": "Daniýalylaryň dili",
+ "language-de": "Nemes",
+ "language-el": "Grek dili",
+ "language-en": "Iňlisçe",
+ "language-es": "Ispan",
+ "language-fa": "Farsi",
+ "language-fi": "Fin",
+ "language-fr": "Fransuz",
+ "language-gl": "Galisiýa",
+ "language-gu": "Gujarat dili",
+ "language-he": "Iwrit",
+ "language-hi": "Hindi",
+ "language-hr": "Horwatiýa",
+ "language-hu": "Wengerçe",
+ "language-hy-am": "Ermeni dili",
+ "language-id": "Indoneziýa dili",
+ "language-ig": "Igbo",
+ "language-it": "Italýança",
+ "language-ja": "Ýaponça",
+ "language-ka": "Gruzin dili",
+ "language-kk": "Gazakça",
+ "language-km": "Hmer dili",
+ "language-kn": "Kannada dili",
+ "language-ko": "Koreýçe",
+ "language-lt": "Litwança",
+ "language-ml": "Malaýalamça",
+ "language-mr": "Marati dili",
+ "language-ms": "Malaýça",
+ "language-nb": "Norwegçe",
+ "language-ne-np": "Nepalça",
+ "language-nl": "Gollandça",
+ "language-pcm": "Nigeriýaly Pidgin",
+ "language-fil": "Fillipinçe",
+ "language-pl": "Polýakça",
+ "language-pt": "Portugalça",
+ "language-pt-br": "Portugaliýa (Braziliýa)",
+ "language-ro": "Rumyn",
+ "language-se": "Şwesiýa",
+ "language-sk": "Slowakiýa",
+ "language-sl": "Sloweniýa",
+ "language-sr": "Serb dili",
+ "language-sw": "Suwaýili",
+ "language-ta": "Tamil dili",
+ "language-th": "Taý dili",
+ "language-tk": "Türkmen",
+ "language-uk": "Ukrain",
+ "language-ur": "Urdu",
+ "language-uz": "Özbek",
+ "language-zh": "Hytaý ýönekeýleşdirilen",
+ "language-zh-tw": "Hytaý adaty"
}
diff --git a/src/intl/tk/page-wallets-find-wallet.json b/src/intl/tk/page-wallets-find-wallet.json
index 03903819a27..e544faba0e6 100644
--- a/src/intl/tk/page-wallets-find-wallet.json
+++ b/src/intl/tk/page-wallets-find-wallet.json
@@ -7,7 +7,6 @@
"page-find-wallet-meta-title": "Ethereum gapjygyny tapmak",
"page-find-wallet-title": "Gapjyk tapmak",
"page-find-wallet-try-removing": "Bir ýa-da iki aýratynlygy aýyrmaga synanyşyň",
- "page-find-wallet-choose-to-compare": "Deňeşdirmek üçin saýlaň",
"page-stake-eth": "ETH goýmak",
"page-find-wallet-open-source": "Open source",
"page-find-wallet-open-source-desc": "Açyk çeşme programma üpjünçiligi islendik adama programmanyň bitewiligini we howpsuzlygyny barlamaga mümkinçilik berýär",
@@ -16,8 +15,6 @@
"page-find-wallet-non-custodial-desc": "Hususy açarlaryňyzy dolandyrmaýan gapjyklar",
"page-find-wallet-hardware-wallet-support": "Enjamdaky gapjyk goldawy",
"page-find-wallet-hardware-wallet-support-desc": "Has gowy howpsuzlyk üçin enjamdaky gapjyga birigip bilýän gapjyklar",
- "page-find-wallet-walletconnect": "WalletConnect",
- "page-find-wallet-walletconnect-desc": "Merkezleşdirilmedik programmalara birikmek üçin WalletConnect goldaýan gapjyklar",
"page-find-wallet-rpc-importing": "RPC içeri geçirmek",
"page-find-wallet-rpc-importing-desc": "Dürli düwünlere ýa-da torlara birikmek üçin ýörite RPC ahyrky nokatlaryny goldaýan gapjyklar",
"page-find-wallet-nft-support": "NFT goldawy",
@@ -36,8 +33,6 @@
"page-find-wallet-ens-support-desc": "Ethereum Name Service (ENS) goldaýan gapjyklar",
"page-find-wallet-token-importing": "Token içeri geçirmek",
"page-find-wallet-token-importing-desc": "Gapjykda ulanmak üçin islendik ERC-20 tokenini içeri geçiriň",
- "page-find-wallet-fee-optimization": "Töleg optimizasiýasy",
- "page-find-wallet-fee-optimization-desc": "Optimallaşdyrylan gaz tölegleri we ulanylmadyk gazyň töleglerini yzyna gaýtarmak üçin 2-nji görnüşli geleşikler goldanýar",
"page-find-wallet-buy-crypto": "Kripto satyn almak",
"page-find-wallet-buy-crypto-desc": "Hakyky pul bilen gönümel gapjykda kripto satyn alyň \n *Bellik: kripto satyn almak sebite mahsus bolup biler",
"page-find-wallet-sell-for-fiat": "Hakyky pula satmak",
@@ -46,7 +41,6 @@
"page-find-wallet-multisig-desc": "Geleşige rugsat bermek üçin birnäçe gol talap edýän gapjyklar",
"page-find-wallet-social-recovery": "Sosial dikeldiş",
"page-find-wallet-social-recovery-desc": "Hossarlara akylly şertnama gapjyklarynyň gol açaryny üýtgetmäge mümkinçilik berýän gapjyklar",
- "page-find-wallet-token-support": "Token goldawy",
"page-find-wallet-features": "Features",
"page-find-wallet-security": "Howpsuzlyk",
"page-find-wallet-smart-contract": "Smart contract",
@@ -63,7 +57,6 @@
"page-find-wallet-chromium": "Chromium",
"page-find-wallet-firefox": "Firefox",
"page-find-wallet-hardware": "Hardware",
- "page-find-wallet-hardware-desc": "Enjamdaky gapjyklar",
"page-find-wallet-new-to-crypto-title": "Kriptoda öwrenje",
"page-find-wallet-new-to-crypto-desc": "Siz ilkinji gapjygyny gözleýän birinji gezek ulanýan ulanyjy",
"page-find-wallet-nfts-title": "NFT-lar",
@@ -74,21 +67,13 @@
"page-find-wallet-finance-desc": "Siz DeFi ulanýan we DeFi programmalaryna birikmäge mümkinçilik berýän gapjyk edinmek isleýän biri",
"page-find-wallet-developer-title": "Işläp düzüji",
"page-find-wallet-developer-desc": "Siz işläp düzüji we size merkezleşdirilmedik programmalary işläp düzmekde we synagdan geçirmekde kömegi degjek gapjyk gerek",
- "page-find-wallet-persona-desc": "Ulanyjy görnüşiňize laýyk gelýän profili saýlaň we gapjyklaryň sanawyny süzüň",
"page-find-wallet-filters": "Süzgüçler",
"page-find-wallet-active": "aktiw",
- "page-find-wallet-profile-filters": "Profil süzgüçleri",
- "page-find-wallet-feature-filters": "Aýratynlyk süzgüçleri",
"page-find-wallet-footnote-1": "Bu sahypada görkezilen gapjyklar resmi tassyklama däl we diňe maglumat maksatly görkezilýär.",
"page-find-wallet-footnote-2": "Olaryň beýany gapjyk taslamalarynyň özleri tarapyndan üpjün edildi.",
"page-find-wallet-footnote-3": "Sanaw goşmak boýunça syýasatymyzdaky talaplara laýyklykda bu sahypa önümleri goşýarys. Gapjyk goşmagymyzy isleseňiz, GitHub-da bir mesele gozgaň.",
"page-find-wallet-mobile": "Mobil",
- "page-find-wallet-mobile-desc": "Mobil programmalary bolan gapjyklar",
"page-find-wallet-desktop": "Iş stoly",
- "page-find-wallet-desktop-desc": "Iş stoly programmalary bolan gapjyklar",
"page-find-wallet-browser": "Brauzer",
- "page-find-wallet-browser-desc": "Brauzer giňeltmeleri bolan gapjyklar",
- "page-find-wallet-device": "Enjam",
- "page-find-choose-to-compare": "Deňeşdirmek üçin saýlaň",
- "page-find-wallet-choose-features": "Aýratynlyklary saýlaň"
+ "page-find-wallet-device": "Enjam"
}
diff --git a/src/intl/tr/common.json b/src/intl/tr/common.json
index aac93513867..2f16785dc51 100644
--- a/src/intl/tr/common.json
+++ b/src/intl/tr/common.json
@@ -15,6 +15,9 @@
"aria-toggle-menu-button": "Menü düğmesini aç/kapat",
"beacon-chain": "İşaret Zinciri",
"bridges": "Blok zinciri köprüleri",
+ "bug-bounty": "Hata ödülü",
+ "build": "Geliştirme",
+ "build-menu": "Geliştirme menüsü",
"clear": "Temizle",
"close": "Kapat",
"community": "Topluluk",
@@ -31,14 +34,15 @@
"copied": "Kopyalandı",
"copy": "Kopyala",
"danksharding": "Danksharding",
- "dao-page": "Merkezi olmayan özerk kuruluşlar (DAO'lar)",
+ "dao-page": "DAO'lar - Merkezi olmayan özerk kuruluşlar",
"dark-mode": "Koyu",
"data-provided-by": "Veri kaynağı:",
- "decentralized-applications-dapps": "Merkezi olmayan uygulamalar (dapps)",
+ "decentralized-applications-dapps": "Dapps - Merkezi olmayan uygulamalar",
"decentralized-identity": "Merkezî olmayan kimlik",
"decentralized-social-networks": "Merkezî olmayan sosyal ağlar",
- "decentralized-science": "Merkeziyetsiz bilim (DeSci)",
- "defi-page": "Merkezi Olmayan Finans (DeFi)",
+ "decentralized-science": "DeSci - Merkeziyetsiz bilim",
+ "description": "Gezinme öğesi açıklaması",
+ "defi-page": "DeFi - Merkezi Olmayan Finans",
"design": "Tasarım",
"design-principles": "Tasarım İlkeleri",
"devcon": "Devcon",
@@ -76,7 +80,7 @@
"ethereum-bug-bounty": "Ethereum hata yakalama prim programı",
"consensus-when-shipping": "Ne zaman gönderiliyor?",
"ethereum-upgrades": "Ethereum yükseltmeleri",
- "ethereum-brand-assets": "Ethereum Marka Varlıkları",
+ "ethereum-brand-assets": "Ethereum marka varlıkları",
"ethereum-online": "Çevrimiçi topluluklar",
"ethereum-events": "Ethereum etkinlikleri",
"ethereum-foundation": "Ethereum'un Geleceği",
@@ -88,7 +92,7 @@
"ethereum-protocol": "Ethereum protokolü",
"ethereum-security": "Ethereum güvenliği ve dolandırıcılık önleme",
"ethereum-support": "Ethereum destek",
- "ethereum-wallets": "Ethereum Cüzdanlar",
+ "ethereum-wallets": "Ethereum cüzdanları",
"ethereum-whitepaper": "Ethereum Teknik Raporu",
"feedback-widget-prompt": "Bu sayfa yardımcı oldu mu?",
"feedback-card-prompt-page": "Bu sayfa yararlı oldu mu?",
@@ -96,12 +100,12 @@
"feedback-card-prompt-tutorial": "Bu rehber yararlı oldu mu?",
"feedback-widget-thank-you-title": "Geri bildiriminiz için teşekkürler!",
"feedback-widget-thank-you-subtitle": "Birkaç soru yanıtlayarak bu sayfanın daha iyi hâle gelmesine yardımcı olun.",
- "feedback-widget-thank-you-subtitle-ext": "Yardıma ihtiyacınız varsa Discord sunucumuzdan topluluğa ulaşabilirsiniz.",
+ "feedback-widget-thank-you-subtitle-ext": "Yardıma ihtiyacınız olursa Discord sunucumuzda topluluğa ulaşabilirsiniz.",
"feedback-widget-thank-you-timing": "2–3 dakika",
"feedback-widget-thank-you-cta": "Kısa anketi aç",
"find-wallet": "Cüzdan bul",
"future-proofing": "Geleceği garantileme",
- "get-eth": "ETH edin",
+ "get-eth": "ETH edinin",
"get-involved": "Dahil olun",
"get-started": "Başlayın",
"grants": "Yardımlar",
@@ -128,7 +132,7 @@
"last-edit": "Son düzenleme",
"layer-2": "Katman 2",
"learn": "Öğren",
- "learn-by-coding": "Kodlayarak öğren",
+ "learn-by-coding": "Kodlayarak öğrenin",
"learn-hub": "Bilgi Merkezi",
"learn-menu": "Öğren menüsü",
"learn-more": "Daha fazla bilgi edinin",
@@ -142,11 +146,116 @@
"logo": "logo",
"mainnet-ethereum": "Mainnet Ethereum",
"merge": "Birleşme",
- "more": "Daha fazlası",
- "nav-developers": "Geliştiriciler",
+ "more": "Daha fazla",
+ "nav-about-description": "Ethereum topluluğu için halka açık, açık kaynaklı bir proje",
+ "nav-advanced-description": "Daha karmaşık konular hakkında bilgi edinin",
+ "nav-advanced-label": "Gelişmiş",
+ "nav-basics-description": "Ethereum'un temellerini anlamak",
+ "nav-basics-label": "Temel Bilgiler",
+ "nav-bridges-description": "Web3, birincil L1 blok zincirleri ve L2 ölçeklendirme çözümlerinden oluşan bir ekosisteme dönüştü",
+ "nav-builders-home-description": "Ethereum için geliştirici kılavuzu—geliştirenler tarafından geliştiriciler için",
+ "nav-builders-home-label": "Geliştirici evi",
+ "nav-contribute-description": "Yardım etmek istiyorsanız bu size yol gösterecektir",
+ "nav-contribute-label": "Ethereum.org'a katkıda bulunma",
+ "nav-dao-description": "Merkezi yetkiye sahip olmayan üyelere ait topluluklar",
+ "nav-dapps-description": "Ethereum'u kullanarak zengin uygulama ekosistemini keşfedin",
+ "nav-defi-description": "Geleneksel finans piyasasına küresel ve açık bir alternatif",
+ "nav-desci-description": "Mevcut bilimsel sisteme küresel ve açık bir alternatif",
+ "nav-desoc-description": "Sosyal etkileşim ve içerik oluşturma için blok zincir tabanlı platformlar",
"nav-developers-docs": "Geliştirici dokümanları",
+ "nav-developers": "Geliştiriciler",
+ "nav-did-description": "Benzersiz merkezi olmayan tanımlayıcılarınızı yayınlayın ve bunlara sahip olun",
+ "nav-docs-description": "Ethereum'u anlamanıza ve geliştirmenize yardımcı olacak belgeler",
+ "nav-docs-design-description": "Benzersiz web3 tasarımı zorluklarının, en iyi uygulamaların ve kullanıcı araştırma bilgilerinin açıklaması",
+ "nav-docs-design-label": "UX/UI tasarım temelleri",
+ "nav-docs-foundation-description": "Ethereum'da geliştirilecek önemli temeller",
+ "nav-docs-foundation-label": "Temel konular",
+ "nav-docs-overview-description": "Geliştirici belgeleri için adresiniz",
+ "nav-docs-stack-description": "Ethereum yığınının tüm ayrıntılarını anlamak",
+ "nav-docs-stack-label": "Ethereum yığını",
+ "nav-eip-description": "Yeni özellikleri veya süreçleri belirleyen standartlar",
+ "nav-eip-label": "EIP'ler - Ethereum iyileştirme önerileri",
+ "nav-emerging-description": "Ethereum'un diğer yeni kullanım örnekleri hakkında bilgi edinin",
+ "nav-emerging-label": "Yeni ortaya çıkan kullanım alanları",
+ "nav-enterprise-description": "Ethereum için iş uygulamaları",
+ "nav-ethereum-org-description": "Bu web sitesi topluluk odaklıdır-bize katılarak siz de katkıda bulunun",
+ "nav-ethereum-wallets-description": "Ethereum hesabınızla etkileşime girecek bir uygulama",
+ "nav-events-description": "Merkezi olmayan yönetim ve herkese katılma özgürlüğü",
+ "nav-events-irl-description": "Her ay şahsen ve çevrimiçi olarak sunulan önemli Ethereum etkinlikleri düzenleniyor",
+ "nav-events-label": "Topluluklar ve etkinlikler",
+ "nav-events-online-description": "Yüzbinlerce Ethereum tutkunu bu çevrimiçi topluluklarda bir araya geliyor",
+ "nav-find-wallet-description": "Cüzdanlar kripto kullanmanıza olanak sağlar",
+ "nav-find-wallet-label": "Cüzdanınızı seçin",
+ "nav-gas-fees-description": "ETH işlem ücretleri nasıl hesaplanıyor",
+ "nav-gas-fees-label": "Gaz ücretleri",
+ "nav-get-eth-description": "Ethereum uygulamalarını kullanmak için ether'e (ETH) ihtiyacınız var",
+ "nav-get-started-description": "Ethereum'u kullanmak için ilk adımlarınız",
+ "nav-governance-description": "Ethereum protokolünü yükseltme süreci",
+ "nav-governance-label": "Yönetim",
+ "nav-grants-description": "Hibe finansmanı programları sağlayan projeler hakkında topluluğumuzun hazırladığı bir liste",
+ "nav-guide-create-account-description": "Cüzdan uygulamasını kullanan herkes herhangi bir zamanda ücretsiz şekilde bir Ethereum hesabı oluşturabilir",
+ "nav-guide-create-account-label": "Bir Ethereum hesabı nasıl oluşturulur",
+ "nav-guide-revoke-access-description": "Ethereum ekosistemindeki akıllı sözleşmeler ve uygulamalarla etkileşimde bulunurken güvenliğinizi sağlayın",
+ "nav-guide-revoke-access-label": "Akıllı sözleşme erişimi nasıl iptal edilir",
+ "nav-guide-use-wallet-description": "Bir cüzdanın temel fonksiyonlarının nasıl kullanılacağını öğrenin",
+ "nav-guide-use-wallet-label": "Cüzdan nasıl kullanılır?",
+ "nav-guides-description": "Başlamanıza yardımcı olacak pratik adım adım kılavuzlar",
+ "nav-guides-label": "Nasıl yapılır kılavuzları",
+ "nav-history-description": "Tüm önemli çatallanmaların ve güncellemelerin zaman çizelgesi",
+ "nav-history-label": "Ethereum'un teknik tarihi",
+ "nav-layer-2-description": "Ethereum için daha ucuz ve daha hızlı işlemler",
+ "nav-learn-by-coding-description": "Ethereum'u denemenize yardımcı olacak araçlar",
+ "nav-local-env-description": "Ethereum geliştirme yığınınızı seçin ve oluşturun",
+ "nav-mainnet-description": "Halka açık Ethereum Ana Ağı üzerinde işletme blok zinciri uygulamaları oluşturulabilir",
+ "nav-nft-description": "Benzersiz bir şeyi Ethereum tabanlı bir varlık olarak göstermenin yolu",
+ "nav-open-research-description": "Ethereum'un başlıca avantajlarından biri sahip olduğu aktif araştırma topluluğudur",
+ "nav-open-research-label": "Açık araştırma",
+ "nav-overview-description": "Ethereum eğitimiyle ilgili her şey",
+ "nav-overview-label": "Genel Bakış",
+ "nav-participate-overview-description": "Nasıl katılınacağına ilişkin genel bakış",
"nav-primary": "Birincil",
- "nft-page": "Değiştirilemeyen tokenler (NFT'ler)",
+ "nav-private-description": "Özel işletmeler için Ethereum geliştirici kaynakları",
+ "nav-quizzes-description": "Ethereum ve kripto paraları ne kadar iyi anladığınızı öğrenin",
+ "nav-quizzes-label": "Bilginizi sınayın",
+ "nav-refi-description": "Yenileyici ilkeler üzerine inşa edilen alternatif bir ekonomik sistem",
+ "nav-research-description": "Ethereum'u geliştirmek için kullanılan süreçler",
+ "nav-research-label": "Araştırma ve geliştirme",
+ "nav-roadmap-description": "Ethereum için daha ölçeklenebilir, güvenli ve sürdürülebilir olmanın yolu",
+ "nav-roadmap-future-description": "Ethereum'u sağlam ve merkezi olmayan bir ağ olarak güçlendirmek",
+ "nav-roadmap-future-label": "Geleceği garantileme",
+ "nav-roadmap-label": "Yol haritası",
+ "nav-roadmap-scaling-description": "İşlem maliyetlerini ve hızını azaltmaya yardımcı olan ağ güncellemeleri",
+ "nav-roadmap-scaling-label": "Daha ucuz işlemler",
+ "nav-roadmap-security-description": "Ethereum'un gelecekteki her türlü saldırıya karşı dayanıklı kalmasını sağlamak",
+ "nav-roadmap-security-label": "Gelişmiş güvenlik",
+ "nav-roadmap-ux-description": "Ethereum'un kullanımı basitleştirilmeli",
+ "nav-roadmap-ux-label": "Daha iyi kullanıcı deneyimi",
+ "nav-run-a-node-description": "Ağın güvenliğini sağlamaya yardımcı olurken tamamen hakim olun",
+ "nav-security-description": "Kripto paralarını kullanırken en iyi uygulamaları öğrenin",
+ "nav-smart-contracts-description": "Ethereum ekosisteminin temel yapı blokları",
+ "nav-stablecoins-description": "Stabil coin'ler sabit bir değerde kalacak şekilde tasarlanmış Ethereum token'larıdır",
+ "nav-stake-description": "Ethereum'u güvence altına alırken ödüller kazanın",
+ "nav-stake-label": "Kilit",
+ "nav-staking-home-description": "Farklı hisseleme seçeneklerine genel bakış",
+ "nav-staking-home-label": "Staking Ana Sayfa",
+ "nav-staking-pool-description": "Elinizdeki ETH miktarı farketmeksizin istediğiniz hisselemeye katılın ve ödüller kazanın",
+ "nav-staking-pool-label": "Havuzlanmış Staking",
+ "nav-staking-saas-description": "Üçüncü taraf düğüm operatörleri, doğrulayıcı istemcinizin çalışmasını yönetir",
+ "nav-staking-saas-label": "Bir hizmet ile hisseleme",
+ "nav-staking-solo-description": "Ev donanımını çalıştırın ve Ethereum ağının güvenliğine ve merkezsizleştirilmesine kişisel olarak katkıda bulunun",
+ "nav-staking-solo-label": "Tekli staking",
+ "nav-start-building-description": "Yeni başlayanlar için faydalı bilgiler",
+ "nav-translation-program-description": "Ethereum.org'u tüm dillere çevirmeyi amaçlayan ortak bir çalışma",
+ "nav-tutorials-description": "Topluluk eğitimleri için özel olarak hazırlanmış liste",
+ "nav-use-cases-description": "Ethereum kullanımına uygun farklı fikirleri keşfedin",
+ "nav-use-cases-label": "Kullanım alanları",
+ "nav-what-is-ether-description": "Ethereum uygulamalarının para birimi",
+ "nav-what-is-ethereum-description": "Ethereum'u özel kılan şeyin ne olduğunu öğrenmek",
+ "nav-what-is-web3-label": "Web3 nedir?",
+ "nav-what-is-web3-description": "Kuralları belirleyen merkezi tekellere bir alternatif",
+ "nav-whitepaper-description": "2014 yılında Vitalik Buterin tarafından yazılan orijinal Ethereum tanıtım belgesi",
+ "nav-zkp-description": "İfadenin kendisini açığa çıkarmadan bir ifadenin geçerliliğini kanıtlamanın bir yolu",
+ "nft-page": "NFT'ler - Değiştirilemeyen tokenler",
"nfts": "NFT'ler",
"no": "Hayır",
"on-this-page": "Bu sayfada",
@@ -154,6 +263,8 @@
"page-developers-aria-label": "Geliştirici Menüsü",
"page-index-meta-title": "Ana sayfa",
"page-last-updated": "Sayfanın son güncellenmesi",
+ "participate": "Katılın",
+ "participate-menu": "Katılım menüsü",
"pbs": "Teklifi yapan-oluşturucu ayrımı",
"pools": "Havuzlanmış Staking",
"privacy-policy": "Gizlilik politikası",
@@ -164,8 +275,10 @@
"refresh": "Lütfen sayfayı yenileyiniz.",
"return-home": "ana sayfaya dön",
"roadmap": "Ethereum yol haritası",
+ "research": "Araştırma",
+ "research-menu": "Araştırma menüsü",
"resources": "Çeviri kaynakları",
- "regenerative-finance": "Sürdürülebilir finans (SüFi)",
+ "regenerative-finance": "SüFi - Sürdürülebilir finans",
"run-a-node": "Bir düğüm çalıştırın",
"rollup-component-website": "Web sitesi",
"rollup-component-developer-docs": "Geliştirici dokümanları",
@@ -182,22 +295,21 @@
"single-slot-finality": "Tek yuva kesinliği",
"statelessness": "Durumsuzluk",
"see-contributors": "Katkıda bulunanları göster",
- "set-up-local-env": "Yerel ortamı kur",
+ "set-up-local-env": "Yerel ortamı ayarla",
"sharding": "Parçalama",
"show-all": "Tümünü göster",
"show-less": "Daha az göster",
"site-description": "Ethereum, bir para ve yeni tür uygulamalar için evrensel, merkezi olmayan bir platformdur. Ethereum'da parayı kontrol eden kod yazabilir ve dünyanın her yerinden erişilebilir uygulamalar oluşturabilirsiniz.",
- "site-title": "ethereum.org",
"skip-to-main-content": "Ana içeriğe geç",
"smart-contracts": "Akıllı sözleşmeler",
- "stablecoins": "Sabit coinler",
+ "stablecoins": "Sabit paralar",
"stake-eth": "ETH stake etme",
"staking": "Stake etme",
"start-here": "Başlamak için",
"style-guide": "Stil rehberi",
"solo": "Tekli staking",
"support": "Destek",
- "terms-of-use": "Kullanım Koşulları",
+ "terms-of-use": "Kullanım koşulları",
"translation-banner-body-new": "Henüz çevirmediğimiz için bu sayfayı İngilizce olarak görüntülüyorsunuz. Bu içeriği çevirmemize yardım edin.",
"translation-banner-body-update": "Bu sayfanın yeni bir sürümü vardır ancak şu anda yalnızca İngilizce'dir. Son sürümü çevirmemize yardımcı ol.",
"translation-banner-button-see-english": "İngilizce'yi gör",
@@ -211,8 +323,10 @@
"try-using-search": "Aradığınızı bulmak için arama işlevini kullanmayı deneyin veya",
"tutorials": "Sunumlar",
"up": "Yukarı",
+ "use": "Kullanım",
"use-ethereum": "Ethereum'u Kullan",
"use-ethereum-menu": "Ethereum menüsünü kullanın",
+ "use-menu": "Menüyü kullan",
"user-experience": "Kullanıcı deneyimi",
"verkle-trees": "Verkle ağaçları",
"wallets": "Cüzdanlar",
diff --git a/src/intl/tr/page-wallets-find-wallet.json b/src/intl/tr/page-wallets-find-wallet.json
index d7b282715b9..c00951cd1a1 100644
--- a/src/intl/tr/page-wallets-find-wallet.json
+++ b/src/intl/tr/page-wallets-find-wallet.json
@@ -7,7 +7,6 @@
"page-find-wallet-meta-title": "Bir Ethereum cüzdanı bulun",
"page-find-wallet-title": "Cüzdan bul",
"page-find-wallet-try-removing": "Bir veya iki özelliği kaldırmayı deneyin",
- "page-find-wallet-choose-to-compare": "Karşılaştırmak için seç",
"page-stake-eth": "ETH stake etme",
"page-find-wallet-open-source": "Açık kaynak",
"page-find-wallet-open-source-desc": "Açık kaynaklı yazılım, herkesin uygulamanın bütünlüğünü ve güvenliğini denetlemesine olanak tanır",
@@ -16,8 +15,6 @@
"page-find-wallet-non-custodial-desc": "Cüzdanlar sizin özel anahtarlarınızı kontrol etmez",
"page-find-wallet-hardware-wallet-support": "Donanımsal cüzdan desteği",
"page-find-wallet-hardware-wallet-support-desc": "Daha iyi güvenlik için donanım cüzdanına bağlanabilen cüzdanlar",
- "page-find-wallet-walletconnect": "WalletConnect",
- "page-find-wallet-walletconnect-desc": "Merkezi olmayan uygulamalara bağlanmak için WalletConnect'i destekleyen cüzdanlar",
"page-find-wallet-rpc-importing": "RPC içe aktarma",
"page-find-wallet-rpc-importing-desc": "Farklı düğümlere veya ağlara bağlanmak için özel RPC uç noktalarını destekleyen cüzdanlar",
"page-find-wallet-nft-support": "NFT desteği",
@@ -36,8 +33,6 @@
"page-find-wallet-ens-support-desc": "Ethereum İsim Servisi'ni (ENS) destekleyen cüzdanlar",
"page-find-wallet-token-importing": "Jeton içe aktarma",
"page-find-wallet-token-importing-desc": "Cüzdanda kullanmak için herhangi bir ERC-20 jetonunu içe aktarın",
- "page-find-wallet-fee-optimization": "Ücret optimizasyonu",
- "page-find-wallet-fee-optimization-desc": "Optimize edilmiş gaz ücretleri için destek tipi 2 işlemleri ve kullanılmayan gaz için ücret iadeleri",
"page-find-wallet-buy-crypto": "Kripto al",
"page-find-wallet-buy-crypto-desc": "Doğrudan cüzdandan emirle kripto para satın al \n *Not: Kripto para satın almak bölgeye özgü olabilir",
"page-find-wallet-sell-for-fiat": "Emir karşılığında sat",
@@ -46,7 +41,6 @@
"page-find-wallet-multisig-desc": "Bir işlemi yetkilendirmek için birden fazla imza gerektiren cüzdanlar",
"page-find-wallet-social-recovery": "Sosyal kurtarma",
"page-find-wallet-social-recovery-desc": "Vasilerin akıllı sözleşme cüzdanları için imzalama anahtarını değiştirmesine izin veren cüzdanlar",
- "page-find-wallet-token-support": "Jeton desteği",
"page-find-wallet-features": "Özellikler",
"page-find-wallet-security": "Güvenlik",
"page-find-wallet-smart-contract": "Akıllı sözleşme",
@@ -63,7 +57,6 @@
"page-find-wallet-chromium": "Chromium",
"page-find-wallet-firefox": "Firefox",
"page-find-wallet-hardware": "Donanım",
- "page-find-wallet-hardware-desc": "Donanım cüzdanları",
"page-find-wallet-new-to-crypto-title": "Kriptoda yeni",
"page-find-wallet-new-to-crypto-desc": "İlk cüzdanınızı arayan yeni bir kullanıcısınız",
"page-find-wallet-nfts-title": "NFT'ler",
@@ -74,21 +67,13 @@
"page-find-wallet-finance-desc": "DeFi kullanan ve DeFi uygulamalarına bağlanmanıza izin veren bir cüzdan isteyen birisiniz",
"page-find-wallet-developer-title": "Geliştirici",
"page-find-wallet-developer-desc": "Geliştiricisiniz ve DApp'leri geliştirmeye ve test etmeye yardımcı olacak bir cüzdana ihtiyacınız var",
- "page-find-wallet-persona-desc": "Kullanıcı türünüze uyan profili seçin ve cüzdan listesini filtreleyin",
"page-find-wallet-filters": "Filtreler",
"page-find-wallet-active": "aktif",
- "page-find-wallet-profile-filters": "Profil filtreleri",
- "page-find-wallet-feature-filters": "Özellik filtreleri",
"page-find-wallet-footnote-1": "Bu sayfada listelenen cüzdanlar resmi onaylı değildir ve yalnızca bilgilendirme amaçlıdır.",
"page-find-wallet-footnote-2": "Açıklamaları, cüzdan projelerinin kendileri tarafından sağlanmıştır.",
"page-find-wallet-footnote-3": "Bu sayfaya listeleme politikamıza göre ürün ekliyoruz. Bir cüzdan eklememizi isterseniz, GitHub ile iletişime geçin.",
"page-find-wallet-mobile": "Mobil",
- "page-find-wallet-mobile-desc": "Mobil uygulaması olan cüzdanlar",
"page-find-wallet-desktop": "Masaüstü",
- "page-find-wallet-desktop-desc": "Masaüstü uygulaması olan cüzdanlar",
"page-find-wallet-browser": "Tarayıcı",
- "page-find-wallet-browser-desc": "Tarayıcı uzantılı cüzdanlar",
- "page-find-wallet-device": "Cihaz",
- "page-find-choose-to-compare": "Karşılaştırmak için seç",
- "page-find-wallet-choose-features": "Özellikleri seçin"
+ "page-find-wallet-device": "Cihaz"
}
diff --git a/src/intl/uk/common.json b/src/intl/uk/common.json
index 438ea551078..d1436e5d865 100644
--- a/src/intl/uk/common.json
+++ b/src/intl/uk/common.json
@@ -1,17 +1,31 @@
{
- "account-abstraction": "Абстрагування облікового запису",
"about-ethereum-org": "Про ethereum.org",
"about-us": "Про нас",
+ "adding-desci-projects": "Додавання проєктів Desci",
+ "adding-developer-tools": "Додавання інструментів розробника",
+ "adding-exchanges": "Додавання обмінників",
+ "adding-glossary-terms": "Додавання словникових термінів",
+ "adding-layer-2s": "Додавання Шару 2s",
+ "adding-products": "Додавання товарів",
+ "adding-staking-products": "Додавання продуктів стейкінгу",
+ "adding-wallets": "Додавання гаманців",
+ "account-abstraction": "Абстрагування облікового запису",
+ "acknowledgements": "Подяки",
"aria-toggle-search-button": "Перемикання кнопки пошуку",
"aria-toggle-menu-button": "Перемикання кнопки меню",
"beacon-chain": "Beacon Chain",
"bridges": "Мости блокчейну",
+ "bug-bounty": "Винагороди за виявлення помилок",
+ "build": "Будувати",
+ "build-menu": "Меню будівництва",
"clear": "Очистити",
"close": "Закрити",
"community": "Спільнота",
"community-hub": "Центр спільноти",
"community-menu": "Меню «Спільнота»",
"contact": "Контакти",
+ "content-buckets": "Категорії вмісту",
+ "content-resources": "Ресурси вмісту",
"content-standardization": "Стандартизація контенту",
"contributing": "Участь у проекті",
"contributors": "Учасники проекту",
@@ -20,14 +34,17 @@
"copied": "Скопійовано",
"copy": "Копіювати",
"danksharding": "Данксегментування",
- "dao-page": "Децентралізовані автономні організації (DAO)",
+ "dao-page": "DAO - Децентралізовані автономні організації",
"dark-mode": "Темний",
"data-provided-by": "Джерело даних:",
- "decentralized-applications-dapps": "Децентралізовані програми (dapps)",
+ "decentralized-applications-dapps": "Dapps - Децентралізовані програми",
"decentralized-identity": "Децентралізована ідентичність",
"decentralized-social-networks": "Децентралізовані соціальні мережі",
- "decentralized-science": "Децентралізована наука (DeSci)",
- "defi-page": "Децентралізовані фінанси (DeFi)",
+ "decentralized-science": "DeSci - Децентралізована наука",
+ "description": "Опис елемента навігації",
+ "defi-page": "DeFi - Децентралізовані фінанси",
+ "design": "Оформлення",
+ "design-principles": "Принципи оформлення",
"devcon": "Devcon",
"developers": "Розробникам",
"developers-home": "Головна сторінка для розробників",
@@ -51,7 +68,7 @@
"documentation": "Документація",
"down": "Вниз",
"ecosystem": "Екосистема",
- "edit-page": "Змінити сторінку",
+ "edit-page": "Виправити сторінку",
"ef-blog": "Блог Ethereum Foundation",
"eips": "Пропозиції покращення Ethereum",
"energy-consumption": "Енергоспоживання Ethereum",
@@ -63,7 +80,7 @@
"ethereum-bug-bounty": "Програма винагород за пошук помилок Ethereum",
"consensus-when-shipping": "Коли відбудеться запуск?",
"ethereum-upgrades": "Оновлення Ethereum",
- "ethereum-brand-assets": "Елементи бренду Ethereum",
+ "ethereum-brand-assets": "Ресурси бренду Ethereum",
"ethereum-online": "Онлайн-спільноти",
"ethereum-events": "Події Ethereum",
"ethereum-foundation": "Ethereum Foundation",
@@ -83,22 +100,22 @@
"feedback-card-prompt-tutorial": "Чи була ця інструкція корисною?",
"feedback-widget-thank-you-title": "Дякуємо за ваш відгук!",
"feedback-widget-thank-you-subtitle": "Зробіть цю сторінку ще кращою, відповівши на кілька запитань.",
- "feedback-widget-thank-you-subtitle-ext": "Якщо вам потрібна допомога, ви можете звернутися до нашої спільноти в Discord.",
+ "feedback-widget-thank-you-subtitle-ext": "Якщо вам потрібна допомога, ви можете зв'язатися зі спільнотою на нашому Discord.",
"feedback-widget-thank-you-timing": "2-3 хв",
"feedback-widget-thank-you-cta": "Відкрийте коротке опитування",
"find-wallet": "Знайти гаманець",
"future-proofing": "Забезпечення майбутнього",
- "get-eth": "Як отримати ETH",
+ "get-eth": "Отримати ETH",
"get-involved": "Долучитися",
- "get-started": "Почати",
+ "get-started": "Початок роботи",
"grants": "Гранти",
"grant-programs": "Програми грантів екосистеми",
"guides": "Посібники",
- "guides-hub": "Центр посібників",
+ "guides-hub": "Інструкції",
"history-of-ethereum": "Історія Ethereum",
"home": "Головна",
"how-ethereum-works": "Як працює Ethereum",
- "how-to-register-an-ethereum-account": "Як зареєструвати обліковий запис Ethereum",
+ "how-to-create-an-ethereum-account": "Як «створити» обліковий запис Ethereum",
"how-to-revoke-token-access": "Як анулювати доступ смарт-контракту до ваших криптовалютних ресурсів",
"how-to-swap-tokens": "Як обміняти токени",
"how-to-use-a-bridge": "Як перевести токени у шар 2",
@@ -128,11 +145,117 @@
"loading-error-try-again-later": "Неможливо завантажити дані. Спробуйте пізніше.",
"logo": "логотип",
"mainnet-ethereum": "Основна мережа Ethereum",
+ "merge": "Злиття",
"more": "Більше",
- "nav-developers": "Розробники",
+ "nav-about-description": "Публічний проєкт із відкритим вихідним кодом для спільноти Ethereum",
+ "nav-advanced-description": "Вивчайте складніші теми",
+ "nav-advanced-label": "Для досвідчених розробників",
+ "nav-basics-description": "Про основи Ethereum",
+ "nav-basics-label": "Основне",
+ "nav-bridges-description": "Концепція Web3 перетворилася на екосистему первинних блокчейнів L1 і рішень для масштабування L2",
+ "nav-builders-home-description": "Посібник із програмування на Ethereum. Створено розробниками для розробників",
+ "nav-builders-home-label": "Головна сторінка розробника",
+ "nav-contribute-description": "Якщо ви хочете допомогти, тут ви дізнаєтеся, як це зробити",
+ "nav-contribute-label": "Сприяння розвитку ethereum.org",
+ "nav-dao-description": "Спільноти, що належать учасникам, без централізованого керування",
+ "nav-dapps-description": "Дослідіть багату екосистему програм, що використовують Ethereum",
+ "nav-defi-description": "Глобальна відкрита альтернатива традиційному фінансовому ринку",
+ "nav-desci-description": "Глобальна, відкрита альтернатива сучасній науковій системі",
+ "nav-desoc-description": "Платформи на основі блокчейну для соціальної взаємодії та створення контенту",
"nav-developers-docs": "Документація для розробників",
+ "nav-developers": "Розробникам",
+ "nav-did-description": "Випускайте децентралізовані ідентифікатори та володійте ними",
+ "nav-docs-description": "Документи, які допоможуть вам краще зрозуміти платформу Ethereum та будувати з її допомогою",
+ "nav-docs-design-description": "Опис унікальних викликів web3-дизайну, найкращих методик і результатів досліджень користувачів",
+ "nav-docs-design-label": "Основи UX/UI-дизайну",
+ "nav-docs-foundation-description": "Основні принципи розробки на Ethereum",
+ "nav-docs-foundation-label": "Основоположні теми",
+ "nav-docs-overview-description": "Ваша головна сторінка для документації розробника",
+ "nav-docs-stack-description": "Про всі деталі стека Ethereum",
+ "nav-docs-stack-label": "Стековий список Ethereum",
+ "nav-eip-description": "Стандарти, які визначають нові функції або процеси",
+ "nav-eip-label": "EIP - Пропозиції покращення Ethereum",
+ "nav-emerging-description": "Ознайомтеся з іншими новими варіантами використання Ethereum",
+ "nav-emerging-label": "Нові варіанти використання",
+ "nav-enterprise-description": "Бізнес-програми для Ethereum",
+ "nav-ethereum-org-description": "Цей сайт керується спільнотою — приєднуйтеся до нас і робіть свій внесок",
+ "nav-ethereum-wallets-description": "Програма для взаємодії з вашим обліковим записом Ethereum",
+ "nav-events-description": "Децентралізація та право участі для кожного",
+ "nav-events-irl-description": "Щомісяця відбуваються великі події, пов’язані з Ethereum, як очні, так і онлайн",
+ "nav-events-label": "Спільноти та події",
+ "nav-events-online-description": "Сотні тисяч ентузіастів Ethereum беруть участь у цих онлайн-спільнотах",
+ "nav-find-wallet-description": "Гаманці дають змогу використовувати криптовалюту",
+ "nav-find-wallet-label": "Виберіть свій гаманець",
+ "nav-gas-fees-description": "Як розраховується комісія за транзакції ETH",
+ "nav-gas-fees-label": "Плата за газ",
+ "nav-get-eth-description": "Щоб використовувати програми Ethereum, потрібен ether (ETH)",
+ "nav-get-started-description": "Перші кроки з використання Ethereum",
+ "nav-governance-description": "Процес оновлення протоколу Ethereum",
+ "nav-governance-label": "Керування",
+ "nav-grants-description": "Спеціальний список від нашої спільноти щодо проєктів, які надають програми грантового фінансування",
+ "nav-guide-create-account-description": "Будь-хто може безкоштовно створити обліковий запис Ethereum за допомогою програми-гаманця в будь-який час",
+ "nav-guide-create-account-label": "Як створити обліковий запис Ethereum",
+ "nav-guide-revoke-access-description": "Залишайтеся в безпеці під час взаємодії зі смартконтрактами та програмами в екосистемі Ethereum",
+ "nav-guide-revoke-access-label": "Як анулювати доступ смартконтракту",
+ "nav-guide-use-wallet-description": "Дізнайтеся, як працюють усі основні функції гаманця",
+ "nav-guide-use-wallet-label": "Як користуватися гаманцем",
+ "nav-guides-description": "Практичні покрокові інструкції, які допоможуть вам розпочати роботу",
+ "nav-guides-label": "Інструкції",
+ "nav-history-description": "Хронологія всіх основних форків і оновлень",
+ "nav-history-label": "Технічна історія Ethereum",
+ "nav-layer-2-description": "Дешевші та швидші транзакції для Ethereum",
+ "nav-learn-by-coding-description": "Інструменти, які допоможуть вам експериментувати з Ethereum",
+ "nav-local-env-description": "Виберіть і налаштуйте стек для розробки Ethereum",
+ "nav-mainnet-description": "Корпоративні блокчейн-програми можуть бути побудовані на загальнодоступній головній мережі Ethereum",
+ "nav-nft-description": "Спосіб представити що-небудь унікальне як актив на основі Ethereum",
+ "nav-open-research-description": "Однією з головних переваг Ethereum є його активна дослідницька спільнота",
+ "nav-open-research-label": "Відкрите дослідження",
+ "nav-overview-description": "Усе про освіту у сфері Ethereum",
+ "nav-overview-label": "Огляд",
+ "nav-participate-overview-description": "Огляд того, як узяти участь",
"nav-primary": "Головна",
- "nft-page": "Невзаємозамінні токени (NFT)",
+ "nav-private-description": "Ресурси для розробників для приватного підприємства Ethereum",
+ "nav-quizzes-description": "Дізнайтеся, наскільки добре ви розбираєтеся в Ethereum і криптовалютах",
+ "nav-quizzes-label": "Перевірте свої знання",
+ "nav-refi-description": "Альтернативна економічна система, побудована на регенеративних принципах",
+ "nav-research-description": "Процеси, що використовуються для покращення Ethereum",
+ "nav-research-label": "Дослідження та розробка",
+ "nav-roadmap-description": "Шлях до масштабованості, безпеки та сталого розвитку Ethereum",
+ "nav-roadmap-future-description": "Зміцнення Ethereum як надійної та децентралізованої мережі",
+ "nav-roadmap-future-label": "Забезпечення майбутнього",
+ "nav-roadmap-label": "План розвитку",
+ "nav-roadmap-scaling-description": "Оновлення мережі для подальшого зниження транзакційних витрат і збільшення швидкості виконання операцій",
+ "nav-roadmap-scaling-label": "Дешевші транзакції",
+ "nav-roadmap-security-description": "Забезпечення стійкості Ethereum до всіх видів атак у майбутньому",
+ "nav-roadmap-security-label": "Покращена безпека",
+ "nav-roadmap-ux-description": "Використання Ethereum потребує спрощення",
+ "nav-roadmap-ux-label": "Кращий користувацький досвід",
+ "nav-run-a-node-description": "Отримайте абсолютну самостійність, допомагаючи захистити мережу",
+ "nav-security-description": "Ознайомтеся з найкращими методиками використання криптовалюти",
+ "nav-smart-contracts-description": "Фундаментальні блоки екосистеми Ethereum",
+ "nav-stablecoins-description": "Стабільні монети — це токени Ethereum, створені, щоб зберігати фіксоване значення",
+ "nav-stake-description": "Заробляйте винагороди, захищаючи Ethereum",
+ "nav-stake-label": "Ставка",
+ "nav-staking-home-description": "Огляд різних можливостей для стейкінгу",
+ "nav-staking-home-label": "Стейкінг: головна сторінка",
+ "nav-staking-pool-description": "Вкладайте кошти й отримуйте винагороди з будь-якою кількістю ETH, об’єднуючи зусилля з іншими.",
+ "nav-staking-pool-label": "Стейкінг у пулі",
+ "nav-staking-saas-description": "Сторонні оператори вузлів керують роботою вашого клієнта перевірки.",
+ "nav-staking-saas-label": "Стейкінг як послуга",
+ "nav-staking-solo-description": "Запустіть домашнє обладнання та особисто додайте безпеку й децентралізацію мережі Ethereum.",
+ "nav-staking-solo-label": "Одиночний стейкінг",
+ "nav-start-building-description": "Корисна інформація для новачків",
+ "nav-translation-program-description": "Спільна робота над перекладом сайту ethereum.org на всі мови світу",
+ "nav-tutorials-description": "Спеціальний список посібників спільноти",
+ "nav-use-cases-description": "Відкрийте для себе різні ідеї щодо використання Ethereum",
+ "nav-use-cases-label": "Варіанти використання",
+ "nav-what-is-ether-description": "Валюта в програмах Ethereum",
+ "nav-what-is-ethereum-description": "Про те, що робить Ethereum особливим",
+ "nav-what-is-web3-label": "Що таке Web3?",
+ "nav-what-is-web3-description": "Альтернатива централізованим монополіям, що диктують правила",
+ "nav-whitepaper-description": "Початкова документація Ethereum, складена Віталіком Бутеріним у 2014 році",
+ "nav-zkp-description": "Спосіб довести правдивість твердження, не розкриваючи саме твердження",
+ "nft-page": "NFT - Невзаємозамінні токени",
"nfts": "NFT",
"no": "Ні",
"on-this-page": "На цій сторінці",
@@ -140,6 +263,8 @@
"page-developers-aria-label": "Меню розробника",
"page-index-meta-title": "Головна",
"page-last-updated": "Останнє оновлення сторінки",
+ "participate": "Візьміть участь",
+ "participate-menu": "Меню учасника",
"pbs": "Розрізнення автора пропозиції та розробника",
"pools": "Стейкінг у пулі",
"privacy-policy": "Політика конфіденційності",
@@ -150,10 +275,12 @@
"refresh": "Оновіть сторінку.",
"return-home": "поверніться на головну сторінку",
"roadmap": "План розвитку Ethereum",
+ "research": "Дослідження",
+ "research-menu": "Меню дослідника",
"resources": "Ресурси для перекладу",
- "regenerative-finance": "Регенеративні фінанси (ReFi)",
- "run-a-node": "Запуск вузла",
- "rollup-component-website": "Сайт",
+ "regenerative-finance": "ReFi - Регенеративні фінанси",
+ "run-a-node": "Запустити вузол",
+ "rollup-component-website": "Website",
"rollup-component-developer-docs": "Документація для розробників",
"rollup-component-technology-and-risk-summary": "Огляд технологій і ризиків",
"scaling": "Масштабування",
@@ -164,6 +291,7 @@
"search-box-blank-state-text": "Введіть пошуковий запит.",
"search-eth-address": "Схоже, це адреса Ethereum. Ми не надаємо дані про адреси. Спробуйте знайти їх у посібник із блоків, наприклад",
"search-no-results": "Пошук не дав результатів",
+ "security": "Security",
"single-slot-finality": "Завершення в одному слоті",
"statelessness": "Відсутність стану",
"see-contributors": "Переглянути учасників",
@@ -175,12 +303,13 @@
"site-title": "ethereum.org",
"skip-to-main-content": "Перейти до основного контенту",
"smart-contracts": "Смарт-контракти",
- "stablecoins": "Stablecoins",
+ "stablecoins": "Стабільні монети",
"stake-eth": "Частка ETH",
"staking": "Стейкінг",
"start-here": "Почніть тут",
"style-guide": "Керівництво по стилю",
"solo": "Одиночний стейкінг",
+ "support": "Підтримка",
"terms-of-use": "Умови використання",
"translation-banner-body-new": "Ця сторінка відображається англійською мовою, оскільки ми ще не переклали її. Допоможіть нам у цьому.",
"translation-banner-body-update": "Ми оновили контент на цій сторінці, але наразі нова версія доступна лише англійською мовою. Допоможіть нам її перекласти.",
@@ -191,11 +320,14 @@
"translation-banner-no-bugs-title": "Тут немає помилок!",
"translation-banner-no-bugs-content": "Ця сторінка не перекладається. Ми навмисно поки що залишили її англійською.",
"translation-banner-no-bugs-dont-show-again": "Не показувати знову",
+ "translation-program": "програму перекладів",
"try-using-search": "Спробуйте скористатися пошуком, щоб знайти те, що ви шукаєте, або",
"tutorials": "Навчальні посібники",
"up": "Вгору",
+ "use": "Використання",
"use-ethereum": "Використання Ethereum",
"use-ethereum-menu": "Використання меню Ethereum",
+ "use-menu": "Меню користувача",
"user-experience": "Взаємодія з користувачем",
"verkle-trees": "Дерева Веркла",
"wallets": "Гаманці",
diff --git a/src/intl/uk/page-languages.json b/src/intl/uk/page-languages.json
index 4c9a50228ea..ca82d59c0d1 100644
--- a/src/intl/uk/page-languages.json
+++ b/src/intl/uk/page-languages.json
@@ -55,6 +55,7 @@
"language-mr": "Маратхі",
"language-ms": "Малайзійська",
"language-nb": "Норвезька",
+ "language-ne-np": "Непальська",
"language-nl": "Нідерландська",
"language-pcm": "Нігерійський піджин",
"language-fil": "Філіппінська",
diff --git a/src/intl/uk/page-wallets-find-wallet.json b/src/intl/uk/page-wallets-find-wallet.json
index e134f19e192..af10340c938 100644
--- a/src/intl/uk/page-wallets-find-wallet.json
+++ b/src/intl/uk/page-wallets-find-wallet.json
@@ -7,7 +7,6 @@
"page-find-wallet-meta-title": "Як знайти гаманець Ethereum",
"page-find-wallet-title": "Знайти гаманець",
"page-find-wallet-try-removing": "Спробуйте вилучити одну або дві функції",
- "page-find-wallet-choose-to-compare": "Виберіть для порівняння",
"page-stake-eth": "Частка ETH",
"page-find-wallet-open-source": "Відкрите джерело коду",
"page-find-wallet-open-source-desc": "Програмне забезпечення з відкритим кодом дає змогу будь-кому перевіряти цілісність та безпеку програми.",
@@ -16,8 +15,6 @@
"page-find-wallet-non-custodial-desc": "Гаманці, які не контролюють ваші приватні ключі",
"page-find-wallet-hardware-wallet-support": "Підтримка апаратних гаманців",
"page-find-wallet-hardware-wallet-support-desc": "Гаманці, які можуть підключатися до апаратного гаманця для більшої безпеки",
- "page-find-wallet-walletconnect": "WalletConnect",
- "page-find-wallet-walletconnect-desc": "Гаманці з підтримкою WalletConnect для підключення до децентралізованих програм",
"page-find-wallet-rpc-importing": "Імпорт RPC",
"page-find-wallet-rpc-importing-desc": "Гаманці з підтримкою користувацьких кінцевих точок RPC для підключення до різних вузлів або мереж",
"page-find-wallet-nft-support": "Підтримка NFT",
@@ -36,8 +33,6 @@
"page-find-wallet-ens-support-desc": "Гаманці з підтримкою Ethereum Name Service (ENS)",
"page-find-wallet-token-importing": "Імпорт токенів",
"page-find-wallet-token-importing-desc": "Імпорт будь-яких токенів ERC-20 для використання в гаманці",
- "page-find-wallet-fee-optimization": "Оптимізація комісії",
- "page-find-wallet-fee-optimization-desc": "Підтримка транзакцій типу 2 для оптимізації комісії за газ і повернення комісії за невикористаний газ",
"page-find-wallet-buy-crypto": "Купити криптовалюту",
"page-find-wallet-buy-crypto-desc": "Купівля криптовалюти за фіатні кошти прямо в гаманці \n * Примітка. Можливість купити криптовалюту може залежати від регіону.",
"page-find-wallet-sell-for-fiat": "Продати за фіатні гроші",
@@ -46,7 +41,6 @@
"page-find-wallet-multisig-desc": "Гаманці, яким потрібно декілька підписів для авторизації транзакції",
"page-find-wallet-social-recovery": "Соціальне відновлення",
"page-find-wallet-social-recovery-desc": "Гаманці, що дозволяють опікунам змінювати ключ підпису для гаманців зі смарт-контрактами",
- "page-find-wallet-token-support": "Підтримка токенів",
"page-find-wallet-features": "Можливості",
"page-find-wallet-security": "Безпека",
"page-find-wallet-smart-contract": "Смарт-контракт",
@@ -63,7 +57,6 @@
"page-find-wallet-chromium": "Chromium",
"page-find-wallet-firefox": "Firefox",
"page-find-wallet-hardware": "Апаратне забезпечення",
- "page-find-wallet-hardware-desc": "Апаратні гаманці",
"page-find-wallet-new-to-crypto-title": "Новачок у криптовалюті",
"page-find-wallet-new-to-crypto-desc": "Ви новий користувач і шукаєте свій перший гаманець.",
"page-find-wallet-nfts-title": "NFTs",
@@ -74,21 +67,13 @@
"page-find-wallet-finance-desc": "Ви один з тих, хто використовує DeFi, і шукаєте гаманець, який дає змогу підключатись до програм DeFi.",
"page-find-wallet-developer-title": "Розробник",
"page-find-wallet-developer-desc": "Ви розробник, і вам потрібен гаманець для розробки та тестування децентралізованих програм.",
- "page-find-wallet-persona-desc": "Виберіть профіль, який відповідає вашому типу користувача, і відфільтруйте список гаманців.",
"page-find-wallet-filters": "Фільтри",
"page-find-wallet-active": "активний",
- "page-find-wallet-profile-filters": "Фільтри профілю",
- "page-find-wallet-feature-filters": "Фільтри функцій",
"page-find-wallet-footnote-1": "Гаманці, перераховані на цій сторінці, не є офіційно схваленими, і надаються тільки в інформаційних цілях.",
"page-find-wallet-footnote-2": "Їхні описи були надані самими проєктами гаманців.",
"page-find-wallet-footnote-3": "Ми додаємо продукти на цю сторінку згідно з критеріями нашої політики лістингу. Якщо ви хочете, щоб ми додали гаманець, створіть запит на GitHub.",
"page-find-wallet-mobile": "Мобільний пристрій",
- "page-find-wallet-mobile-desc": "Гаманці з мобільними програмами",
"page-find-wallet-desktop": "Настільний комп’ютер",
- "page-find-wallet-desktop-desc": "Гаманці з програмами для настільних комп’ютерів",
"page-find-wallet-browser": "Браузер",
- "page-find-wallet-browser-desc": "Гаманці з розширенням для браузера",
- "page-find-wallet-device": "Пристрій",
- "page-find-choose-to-compare": "Виберіть для порівняння",
- "page-find-wallet-choose-features": "Виберіть функції"
+ "page-find-wallet-device": "Пристрій"
}
diff --git a/src/intl/ur/common.json b/src/intl/ur/common.json
index fcf72b63e7d..9a333c3dfe9 100644
--- a/src/intl/ur/common.json
+++ b/src/intl/ur/common.json
@@ -1,30 +1,70 @@
{
"about-ethereum-org": "ethereum.org کے بارے میں",
"about-us": "ہمارے بارے میں",
+ "adding-desci-projects": "Desci پراجیکٹس کو شامل کرنا",
+ "adding-developer-tools": "ڈویلپر ٹولز شامل کرنا",
+ "adding-exchanges": "ایکسچینجز کو شامل کرنا",
+ "adding-glossary-terms": "لغت کی اصطلاحات شامل کرنا",
+ "adding-staking-products": "اسٹیکنگ پروڈکٹس کو شامل کرنا",
+ "adding-wallets": "والیٹ شامل کرنا",
+ "account-abstraction": "اکاؤنٹ کا خلاصہ",
+ "acknowledgements": "تسلیمات",
"aria-toggle-search-button": "تلاش کے بٹن کو ٹوگل کریں",
"aria-toggle-menu-button": "مینو بٹن ٹوگل کریں",
"beacon-chain": "بیکن چین",
"bridges": "بلاک چین بریجز",
+ "bug-bounty": "بگ باؤنٹی",
+ "build": "تعمیر کریں",
+ "build-menu": "تعمیر کریں کا مینو",
+ "clear": "صاف کریں",
"close": "بند کریں",
"community": "کمیونٹی",
"community-hub": "کمیونٹی کا مرکز",
"community-menu": "کمیونٹی مینو",
"contact": "رابطہ",
+ "content-buckets": "مواد کی بالٹیاں",
+ "content-resources": "مواد کے وسائل",
+ "content-standardization": "مواد کی معیارکاری",
"contributing": "شراکت داری کرنا",
"contributors": "شراکت دار",
"contributors-thanks": "ان تمام لوگوں کا شکریہ - جنہوں نے اس صفحہ کیلئے شراکت کی!",
"cookie-policy": "کوکی پالیسی",
"copied": "کاپی کیا گیا",
"copy": "کاپی کریں",
+ "danksharding": "ڈینک شرڈنگ",
+ "dao-page": "DAOs - غیر مرکزی خودمختار تنظیمیں",
"dark-mode": "گہرا",
"data-provided-by": "ڈیٹا کا ذریعہ:",
- "decentralized-applications-dapps": "غیر مرکزی ایپلیکیشنز (dapps)",
- "decentralized-science": "غیر مرکزی سائنس (DeSci)",
+ "decentralized-applications-dapps": "Dapps - غیر مرکزی ایپلیکیشنز",
+ "decentralized-identity": "غیر مرکزی شناخت",
+ "decentralized-social-networks": "غیر مرکزی سوشل نیٹ ورکس",
+ "decentralized-science": "DeSci - غیر مرکزی سائنس",
+ "description": "نیویگیشن آئٹم کی تفصیل",
+ "defi-page": "DeFi - غیر مرکزی مالیات",
+ "design": "ڈیزائن",
+ "design-principles": "ڈیزائن کے اصول",
"devcon": "ڈیوکون",
"developers": "ڈویلپرز",
"developers-home": "ڈویلپرز کا ہوم",
"docs": "دستاویز",
+ "docsearch-to-select": "منتخب کرنا",
+ "docsearch-to-navigate": "نیویگیٹ کرنا",
+ "docsearch-to-close": "بند کرنا",
+ "docsearch-search-by": "تلاش کریں بلحاظ",
+ "docsearch-start-recent-searches-title": "حالیہ",
+ "docsearch-start-no-recent-searches": "کوئی حالیہ تلاش نہیں",
+ "docsearch-start-save-recent-search": "اس تلاش کو محفوظ کریں",
+ "docsearch-start-remove-recent-search": "اس تلاش کو ہسٹری سے ہٹا دیں",
+ "docsearch-start-favorite-searches": "پسندیدہ",
+ "docsearch-start-remove-favorite-search": "اس تلاش کو پسندیدہ سے ہٹا دیں",
+ "docsearch-no-results-text": "کے لیے کوئی نتائج نہیں ہیں",
+ "docsearch-no-results-suggested-query": "تلاش کرنے کی کوشش کریں",
+ "docsearch-no-results-missing": "یقین ہے کہ اس سوال کے جواب ملیں گے؟",
+ "docsearch-no-results-missing-link": "ہمیں بتائیں۔",
+ "docsearch-error-title": "نتائج حاصل کرنے سے قاصر",
+ "docsearch-error-help": "ہو سکتا ہے آپ اپنا نیٹ ورک کنکشن چیک کرنا چاہیں۔",
"documentation": "دستاویز کاری",
+ "down": "نیچے",
"ecosystem": "ایکو سسٹم",
"edit-page": "صفحے میں ترمیم کریں",
"ef-blog": "Ethereum فاؤنڈیشن بلاگ",
@@ -45,6 +85,8 @@
"ethereum-glossary": "Ethereum لغت",
"ethereum-governance": "Ethereum گورننس",
"ethereum-logo": "Ethereum لوگو",
+ "ethereum-roadmap": "ایتھریم روڈ میپ",
+ "ethereum-protocol": "ایتھریم پروٹوکول",
"ethereum-security": "Ethereum سیکورٹی اور جعل سازی کی روک تھام",
"ethereum-support": "Ethereum سپورٹ",
"ethereum-wallets": "Ethereum والیٹس",
@@ -55,22 +97,21 @@
"feedback-card-prompt-tutorial": "کیا یہ ٹیوٹوریل کارآمد تھا؟",
"feedback-widget-thank-you-title": "آپ کے فیڈبیک کے لیے شکریہ!",
"feedback-widget-thank-you-subtitle": "چند سوالوں کے جواب دے کر اس صفحے کو مزید بہتر بنائیں۔",
- "feedback-widget-thank-you-subtitle-ext": "اگر آپ کو مدد کی ضرورت ہے، تو آپ ہمارے Discord پر کمیونٹی سے رابطہ کر سکتے ہیں۔",
+ "feedback-widget-thank-you-subtitle-ext": "اگر آپ کو مدد کی ضرورت ہو تو آپ ہمارے Discord پر کمیونٹی سے رابطہ کر سکتے ہیں۔",
"feedback-widget-thank-you-timing": "2–3 منٹ",
"feedback-widget-thank-you-cta": "مختصر سروے کھولیں",
"find-wallet": "والیٹ تلاش کریں",
+ "future-proofing": "مستقبل کا ثبوت",
"get-eth": "ETH حاصل کریں",
"get-involved": "شامل ہوں",
- "get-started": "شروع کریں",
+ "get-started": "شروع کرے",
"grants": "گرانٹس",
"grant-programs": "ایکو سسٹم گرانٹ پروگرامز",
- "guides-and-resources": "کمیونٹی کے اصول اور ذرائع",
"guides": "اصول",
- "guides-hub": "اصولوں کا مرکز",
+ "guides-hub": "طریقہ کار کی رہنمائیاں",
"history-of-ethereum": "Ethereum کی ہسٹری",
"home": "ہوم",
"how-ethereum-works": "Ethereum کیسے کام کرتا ہے",
- "how-to-create-an-ethereum-account": "Ethereum اکاؤنٹ کو کیسے \"رجسٹر\" کریں",
"how-to-revoke-token-access": "اسمارٹ کانٹریکٹ کی اپنے کرپٹو فنڈز تک رسائی کیسے منسوخ کریں",
"how-to-swap-tokens": "ٹوکنز کو کیسے سواپ کریں",
"how-to-use-a-bridge": "ٹوکنز کو تہہ نمبر 2 تک کیسے بریج کریں",
@@ -88,6 +129,7 @@
"layer-2": "تہہ نمبر 2",
"learn": "سیکھیں",
"learn-by-coding": "کوڈنگ سے سیکھیں",
+ "learn-hub": "سیکھنے کا مرکز",
"learn-menu": "مینو جانیں",
"learn-more": "مزید جانیں",
"less": "کم",
@@ -96,44 +138,154 @@
"loading": "لوڈ ہو رہا ہے...",
"loading-error": "لوڈ ہونے میں نقص۔",
"loading-error-refresh": "نقص، براہ کرم ریفریش کریں۔",
+ "loading-error-try-again-later": "ڈیٹا لوڈ کرنے میں ناکام۔ بعد میں دوبارہ کوشش کریں۔",
"logo": "لوگو",
"mainnet-ethereum": "مین نیٹ Ethereum",
+ "merge": "ضم کریں",
"more": "مزید",
- "nav-developers": "ڈویلپرز",
+ "nav-about-description": "ایتھریئم کمیونٹی کے لیے ایک عوامی، اوپن سورس پراجیکٹ",
+ "nav-advanced-description": "مزید پیچیدہ موضوعات کے بارے میں جانیں",
+ "nav-basics-description": "ایتھریئم کے بنیادی اصولوں کو سمجھیں",
+ "nav-basics-label": "بنیادی چیزیں",
+ "nav-bridges-description": "Web3 نے ترقی کرتے ہوئے بنیادی L1 بلاک چینز اور L2 توسیع پذیر حلوں کے ایک ایکو سسٹم کی صورت اختیار کر لی ہے",
+ "nav-builders-home-description": "ایتھریئم کے لیے ایک بلڈر کا رہنما کتابچہ—بلڈرز کی جانب سے، بلڈرز کے لیے تیار کردہ",
+ "nav-builders-home-label": "بلڈر کا ہوم",
+ "nav-contribute-description": "اگر آپ مدد کرنا چاہتے ہیں، تو یہ آپ کی رہنمائی کرے گا",
+ "nav-contribute-label": "ethereum.org میں اپنا حصہ ڈالنا",
+ "nav-dao-description": "کسی مرکزی اتھارٹی کے بغیر اراکین کے زیر ملکیت کمیونٹیز",
+ "nav-dapps-description": "ایتھریئم استعمال کرتے ہوئے ایپس کے ایک وسیع ایکو سسٹم کو دریافت کریں",
+ "nav-defi-description": "روایتی مالیاتی مارکیٹ کا ایک عالمگیر، شفاف متبادل",
+ "nav-desci-description": "موجودہ سائنسی سسٹم کا ایک عالمگیر، شفاف متبادل",
+ "nav-desoc-description": "سماجی تعامل اور مواد کی تخلیق کاری کے لیے بلاک چین پر مبنی پلیٹ فارمز",
"nav-developers-docs": "ڈویلپرز دستاویزات",
+ "nav-developers": "ڈویلپرز",
+ "nav-did-description": "اپنی منفرد غیر مرکزی شناختوں کا اجراء کریں اور ان کے مالک بنیں",
+ "nav-docs-description": "ایتھریئم کے ساتھ تعمیر کرنے اور اسے سمجھنے میں آپ کی مدد کے لیے دستاویزات",
+ "nav-docs-design-description": "web3 ڈیزائن کے منفرد مسائل، بہترین حکمت عملیوں اور صارفی تحقیق سے متعلقہ بصیرتوں کی تفصیل",
+ "nav-docs-design-label": "UX/UI ڈیزائن کے بنیادی اصول",
+ "nav-docs-foundation-description": "ایتھریئم پر چیزیں بنانے کے بنیادی اصول",
+ "nav-docs-overview-description": "ڈویلپر کی دستاویزات کے لیے آپ کا ہوم",
+ "nav-docs-stack-description": "ایتھریئم اسٹیک کی تمام تفصیلات کو سمجھیں",
+ "nav-eip-description": "وہ معیارات جو نئی خصوصیات یا عوامل کی وضاحت کرتے ہیں",
+ "nav-eip-label": "EIPs - ایتھریئم کی بہتری کی تجاویز",
+ "nav-emerging-description": "ایتھریئم کے لیے دیگر نئی استعمال کی صورتوں کی معلومات حاصل کریں",
+ "nav-enterprise-description": "ایتھریئم کے لیے کاروباری ایپلی کیشنز",
+ "nav-ethereum-org-description": "یہ ویب سائٹ کمیونٹی کے زیر انتظام ہے—ہمارے ساتھ شامل ہوں اور اپنا حصہ بھی ڈالیں",
+ "nav-ethereum-wallets-description": "اپنے ایتھریئم اکاؤنٹ کے ساتھ تعامل کرنے کی ایپ",
+ "nav-events-description": "غیر مرکزیت اور ہر شخص کو اپنا کردار ادا کرنے کی آزادی",
+ "nav-events-irl-description": "ہر مہینے ایتھریئم کے بڑے بالمشافہ اور آن لائن ایونٹس منعقد ہوتے ہیں",
+ "nav-events-label": "کمیونٹیز اور ایونٹس",
+ "nav-events-online-description": "ایتھریئم کمیونٹیز کے پرجوش صارفین کی کثیر تعداد ان آن لائن کمیونٹیز میں اکٹھی ہوتی ہے",
+ "nav-find-wallet-description": "والیٹس آپ کو کرپٹو استعمال کرنے کی اجازت دیتے ہیں",
+ "nav-find-wallet-label": "اپنا والیٹ منتخب کریں",
+ "nav-gas-fees-description": "ETH کی ٹرانزیکشن فیس کا حساب کیسے لگایا جاتا ہے",
+ "nav-get-eth-description": "ایتھریئم ایپلی کیشنز استعمال کرنے کے لیے آپ کو ایتھر (ETH) کی ضرورت ہوتی ہے",
+ "nav-get-started-description": "ایتھریئم استعمال کرنے کے لیے آپ کے ابتدائی مراحل",
+ "nav-governance-description": "ایتھریئم پروٹوکول کو اپ گریڈ کرنے پر مشتمل عمل",
+ "nav-governance-label": "گورننس",
+ "nav-grants-description": "ہماری کمیونٹی کے ایسے پراجیکٹس کی ایک منتخب شدہ فہرست جو گرانٹ فنڈنگ کے پروگرامز فراہم کرتے ہیں",
+ "nav-guide-create-account-description": "والیٹ ایپ کے ساتھ، کوئی بھی شخص کسی بھی وقت ایتھریئم اکاؤنٹ مفت تخلیق کر سکتا ہے",
+ "nav-guide-revoke-access-description": "ایتھریئم ایکو سسٹم میں اسمارٹ معاہدوں اور ایپلی کیشنز کے ساتھ تعامل کرتے وقت محفوظ رہیں",
+ "nav-guide-revoke-access-label": "اسمارٹ معاہدے تک رسائی کو کیسے منسوخ کریں",
+ "nav-guide-use-wallet-description": "والیٹ کے تمام بنیادی فنکشنز کو آپریٹ کرنے کا طریقہ کار جانیں",
+ "nav-guide-use-wallet-label": "والیٹ کا استعمال کیسے کریں",
+ "nav-guides-description": "آغاز کرنے میں آپ کی مدد کے لیے مرحلہ وار عملی رہنمائیاں",
+ "nav-guides-label": "طریقہ کار کی رہنمائیاں",
+ "nav-history-description": "تمام بڑی فورکس اور اپ ڈیٹس کی ٹائم لائن",
+ "nav-history-label": "ایتھریئم کی تکنیکی ہسٹری",
+ "nav-layer-2-description": "ایتھریئم کے لیے سستی اور تیز تر ٹرانزیکشنز",
+ "nav-learn-by-coding-description": "ایتھریئم کا تجربہ حاصل کرنے میں آپ کی مدد کے لیے ٹولز",
+ "nav-local-env-description": "اپنا ایتھریئم ڈویلپمنٹ اسٹیک منتخب کریں اور اسے سیٹ اپ کریں",
+ "nav-mainnet-description": "ایتھریئم کے عوامی مین نیٹ پر انٹرپرائز بلاک چین کی ایپلی کیشنز تیار کی جا سکتی ہیں",
+ "nav-nft-description": "ایک ایتھریئم پر مبنی اثاثے کی حیثیت سے کسی بھی منفرد چیز کی نمائندگی کرنے کا ایک طریقہ",
+ "nav-open-research-description": "ایتھریئم کی بنیادی خوبیوں میں سے ایک چیز اس کی فعال محقق کمیونٹی ہے",
+ "nav-open-research-label": "ریسرچ کھولیں",
+ "nav-overview-description": "ایتھریئم کی تعلیم سے متعلق تمام چیزیں",
+ "nav-participate-overview-description": "شرکت کرنے کے طریقہ کار کا جائزہ",
"nav-primary": "بنیادی",
+ "nav-quizzes-description": "جانیں کہ آپ ایتھریئم اور کرپٹو کرنسیز کو کتنے بہتر انداز میں سمجھتے ہیں",
+ "nav-quizzes-label": "اپنے علم کی جانچ کریں",
+ "nav-refi-description": "ایک متبادل معاشی نظام جو تخلیق نو کے اصولوں پر قائم کیا گیا ہے",
+ "nav-research-description": "ایتھریئم کی بہتری میں استعمال ہونے والے طریقے",
+ "nav-research-label": "تحقیق اور ترقی",
+ "nav-roadmap-description": "ایک ایسا راستہ جو ایتھریئم کے لیے زیادہ توسیع پذیری، سکیورٹی اور پائیداری کو فروغ دیتا ہے",
+ "nav-roadmap-future-description": "ایتھریئم کو ایک مضبوط اور غیر مرکزی نیٹ ورک کی حیثیت سے مستحکم بنانا",
+ "nav-roadmap-future-label": "مستقبل کا ثبوت",
+ "nav-roadmap-label": "روڈ میپ",
+ "nav-roadmap-scaling-description": "ٹرانزیکشن کے اخراجات اور رفتار کو مزید کم کرنے کے لیے نیٹ ورک کی اپ ڈیٹس",
+ "nav-roadmap-security-description": "اس بات کو یقینی بنانا کہ ایتھریئم مستقبل میں ہر قسم کے حملوں کے خلاف مزاحم رہے",
+ "nav-roadmap-security-label": "بہتر کردہ سکیورٹی",
+ "nav-roadmap-ux-description": "ایتھریئم کے استعمال کو آسان بنانے کی ضرورت ہے",
+ "nav-run-a-node-description": "نیٹ ورک کو محفوظ بنانے میں مدد کرتے ہوئے مکمل طور پر خود مختار بنیں",
+ "nav-security-description": "کرپٹو کرنسی استعمال کرتے وقت بہترین حکمت عملیاں سیکھیں",
+ "nav-smart-contracts-description": "ایتھریئم ایکو سسٹم کے بنیادی بلڈنگ بلاکس",
+ "nav-stablecoins-description": "اسٹیبل کوائنز وہ ایتھریئم ٹوکنز ہیں جنہیں ایک مقررہ قیمت پر برقرار رکھنے کے لیے ڈیزائن کیا جاتا ہے",
+ "nav-stake-description": "ایتھریئم کو محفوظ بنانے کے عوض انعامات حاصل کریں",
+ "nav-stake-label": "اسٹیک کرنا",
+ "nav-staking-home-description": "اسٹیکنگ کے مختلف اختیارات کا ایک جائزہ",
+ "nav-staking-pool-description": "دوسروں کے ساتھ شامل ہوتے ہوئے ETH کی کسی بھی رقم کے ساتھ اسٹیک کریں اور انعامات حاصل کریں",
+ "nav-staking-pool-label": "پُولڈ اسٹیکنگ",
+ "nav-staking-saas-label": "سروس کے ساتھ اسٹیکنگ",
+ "nav-staking-solo-label": "سولواسٹیکنگ",
+ "nav-start-building-description": "نوآموز افراد کے لیے مفید معلومات",
+ "nav-translation-program-description": "تمام زبانوں میں ethereum.org کا ترجمہ کرنے کی ایک اجتماعی کاوش",
+ "nav-tutorials-description": "کمیونٹی ٹیوٹوریلز کی ایک منتخب شدہ فہرست",
+ "nav-use-cases-description": "ایتھریئم کے استعمال کے مختلف تصورات دریافت کریں",
+ "nav-what-is-ether-description": "ایتھریئم ایپس کی کرنسی",
+ "nav-what-is-ethereum-description": "جانیں کہ ایتھریئم کی انفرادیت کا کیا راز ہے",
+ "nav-what-is-web3-label": "Web3 کیا ہے؟",
+ "nav-what-is-web3-description": "قوانین کا تعین کرنے والی مرکزی اجارہ داریوں کا متبادل",
+ "nav-whitepaper-description": "ایتھریئم کا اصل وائٹ پیپر 2014 میں Vitalik Buterin نے لکھا تھا",
+ "nav-zkp-description": "ایک ایسا طریقہ جس سے کسی بیان کو ازخود ظاہر کیے بغیر اس بیان کی درستگی کی توثیق کی جا سکتی ہے",
+ "nft-page": "NFTs - نان فنجیبل ٹوکنز",
"nfts": "NFTs",
"no": "نہیں",
"on-this-page": "اس صفحے پر",
"open-research": "ریسرچ کھولیں",
+ "page-developers-aria-label": "ڈویلپرز کا مینو",
+ "page-index-meta-title": "ہوم",
"page-last-updated": "صفحہ آخری بار اپ ڈیٹ کیا گیا",
+ "participate-menu": "حصہ لینے کا مینو",
+ "pbs": "تجویز کنندہ بلڈر کی علیحدگی",
+ "pools": "پُولڈ اسٹیکنگ",
"privacy-policy": "رازداری کی پالیسی",
"private-ethereum": "پرائیویٹ Ethereum",
+ "product-disclaimer": "مصنوعات اور خدمات ایتھریم کمیونٹی کے لیے ایک سہولت کے طور پر درج ہیں۔ کسی پروڈکٹ یا سروس کی شمولیت ethereum.org ویب سائٹ ٹیم، یا Ethereum Foundation کی طرف سے تصدیق کی نمائندگی نہیں کرتی ہے۔",
+ "quizzes-title": "کوئز ہب",
+ "quizzes": "کوئزز",
"refresh": "براہ کرم صفحہ ریفریش کریں۔",
"return-home": "ہوم پر واپس جائیں",
+ "roadmap": "ایتھریم روڈ میپ",
+ "research": "تحقیق",
+ "research-menu": "تحقیق کا مینو",
+ "resources": "ترجمے کے ذرائع",
"run-a-node": "نوڈ چلائیں",
"rollup-component-website": "ویب سائٹ",
"rollup-component-developer-docs": "ڈویلپر دستاویزات",
"rollup-component-technology-and-risk-summary": "ٹیکنالوجی اور خطرے کا خلاصہ",
+ "saas": "بطور سروس اسٹیکنگ",
"search": "تلاش کریں",
+ "search-ethereum-org": "ethereum.org تلاش کریں",
+ "secret-leader-election": "خفیہ لیڈر الیکشن",
"search-box-blank-state-text": "تلاش کریں!",
"search-eth-address": "یہ Ethereum ایڈریس کی طرح لگتا ہے۔ ہم ایڈریسز کا مخصوص ڈیٹا فراہم نہیں کرتے ہیں۔ بلاک ایکسپلورر پر اسے تلاش کرنے کی کوشش کریں، جیسے",
"search-no-results": "آپ کی تلاش کا کوئی نتیجہ نہیں",
+ "security": "سیکورٹی",
+ "single-slot-finality": "واحد-سلاٹ فنیلٹی",
+ "statelessness": "غیر حیثیتی",
"see-contributors": "شراکت داران دیکھیں",
"set-up-local-env": "مقامی ماحول قائم کریں",
"sharding": "شارڈنگ",
"show-all": "سب دکھائیں",
"show-less": "کم دکھائیں",
"site-description": "Ethereum پیسوں اور نئی قسم کی ایپلیکیشنز کے لیے ایک غیر مرکزی عالمی پلیٹ فارم ہے۔ Ethereum پر، آپ پیسے کو کنٹرول کرنے والا کوڈ لکھ سکتے، اور دنیا بھر میں کہیں سے بھی قابل رسائی ایپلیکیشنز بنا سکتے ہیں۔",
- "site-title": "ethereum.org",
"skip-to-main-content": "اہم مواد پر جائیں",
"smart-contracts": "اسمارٹ معاہدات",
"stablecoins": "اسٹیبل کوائنز",
"staking": "اسٹیکنگ",
+ "start-here": "یہاں شروع کریں",
"solo": "سولواسٹیکنگ",
- "saas": "بطور سروس اسٹیکنگ",
- "pools": "پُولڈ اسٹیکنگ",
- "withdrawals": "اسٹیکنگ نکلوانا",
+ "support": "معاونت",
"terms-of-use": "استعمال کی شرائط",
"translation-banner-body-new": "آپ یہ صفحہ انگریزی میں دیکھ رہے ہیں کیونکہ ہم نے ابھی تک اس کا ترجمہ نہیں کیا۔ اس مواد کا ترجمہ کرنے میں ہماری مدد کریں۔",
"translation-banner-body-update": "اس صفحہ کا ایک نیا ورژن ہے لیکن یہ ابھی صرف انگریزی میں ہے۔ تازہ ترین ورژن کا ترجمہ کرنے میں ہماری مدد کریں۔",
@@ -144,23 +296,23 @@
"translation-banner-no-bugs-title": "یہاں کوئی نقائص نہیں!",
"translation-banner-no-bugs-content": "اس صفحے کا ترجمہ نہیں کیا جا رہا۔ ہم نے جان بوجھ کر اس صفحے کو ابھی انگریزی میں چھوڑ دیا ہے۔",
"translation-banner-no-bugs-dont-show-again": "دوبارہ نہ دکھائیں",
+ "translation-program": "ترجمے کا پروگرام",
"try-using-search": "مطلوبہ چیز پانے کے لیے تلاش کرنے کی کوشش کریں یا",
"tutorials": "ٹیوٹوریلز",
+ "up": "اوپر",
+ "use": "استعمال",
"use-ethereum": "Ethereum استعمال کریں",
"use-ethereum-menu": "Ethereum مینو استعمال کریں",
+ "use-menu": "استعمال کا مینو",
+ "verkle-trees": "ورکل ٹریز",
"wallets": "والیٹس",
"we-couldnt-find-that-page": "ہم وہ صفحہ تلاش نہیں کر سکے",
"web3": "Web3 کیا ہے؟",
"web3-title": "Web3",
"website-last-updated": "ویب سائٹ آخری بار اپ ڈیٹ کی گئی",
"what-is-ether": "ایتھر (ETH) کیا ہے؟",
- "what-is-ethereum": "Ethereum کیا ہے؟",
- "defi-page": "غیر مرکزی مالیات (DeFi)",
- "dao-page": "غیر مرکزی خودمختار تنظیمیں (DAOs)",
- "nft-page": "نان فنجیبل ٹوکنز (NFTs)",
- "decentralized-social-networks": "غیر مرکزی سوشل نیٹ ورکس",
- "decentralized-identity": "غیر مرکزی شناخت",
+ "what-is-ethereum": "What is Ethereum?",
+ "withdrawals": "اسٹیکنگ نکلوانا",
"yes": "جی ہاں",
- "zero-knowledge-proofs": "بغیر معلومات کے ثبوت",
- "page-index-meta-title": "ہوم"
+ "zero-knowledge-proofs": "بغیر معلومات کے ثبوت"
}
diff --git a/src/intl/ur/page-languages.json b/src/intl/ur/page-languages.json
index 2c9ae70869f..606a30b9b3b 100644
--- a/src/intl/ur/page-languages.json
+++ b/src/intl/ur/page-languages.json
@@ -1,15 +1,29 @@
{
- "page-languages-want-more-link": "ترجمہ پروگرام",
+ "page-languages-h1": "زبان کی معاونت",
+ "page-languages-interested": "تعاون کرنے میں دلچسپی رکھتے ہیں؟",
+ "page-languages-learn-more": "ہمارے ترجمے کے پروگرام کے بارے میں مزید جانیں",
+ "page-languages-meta-desc": "ethereum.org کی تمام معاونت یافتہ زبانوں کے لیے وسائل اور بطور مترجم شامل ہونے کے طریقے۔",
+ "page-languages-meta-title": "ethereum.org زبان کے تراجم",
+ "page-languages-p1": "ایتھریم ایک عالمگیر پراجیکٹ ہے، اور یہ نہایت اہم ہے کہ قومیت اور زبان سے قطع نظر، ethereum.org ہر ایک کی رسائی میں ہو۔ ہماری کمیونٹی اس نظریے کو حقیقت بنانے میں جانفشانی سے کام کر رہی ہے۔",
+ "page-languages-translations-available": "ethereum.org مندرجہ ذیل زبانوں میں دستیاب ہے",
+ "page-languages-resources-paragraph": "ethereum.org کے مواد کے ترجمے کے علاوہ، ہم متعدد زبانوں میں",
+ "page-languages-resources-link": "ایتھریم کے وسال کی درست کردہ فہرست بھی بحال رکھتے ہیں",
+ "page-languages-want-more-header": "ethereum.org کو ایک مختلف زبان میں دیکھنا چاہتے ہیں؟",
+ "page-languages-want-more-link": "ترجمے کا پروگرام",
+ "page-languages-want-more-paragraph": "ethereum.org کے مترجمین ہمیشہ ممکنہ حد تک زیادہ سے زیادہ زبانوں میں صفحات کا ترجمہ کر رہے ہوتے ہیں۔ فی الوقت وہ کیا کام کر رہے ہیں یا ان میں شامل ہونے کی خاطر سائن اپ کرنے کے لیے، ہماری مندرجہ ذیل کے بارے میں پڑھیں",
"page-languages-filter-label": "فہرست کو فلٹر کریں",
"page-languages-filter-placeholder": "فلٹر کرنے کے لیے ٹائپ کریں",
"page-languages-browser-default": "براؤزر کا ڈیفالٹ",
"page-languages-translated": "ترجمہ شدہ",
"page-languages-words": "الفاظ",
"page-languages-recruit-community": "ethereum.org کا ترجمہ کرنے میں ہماری مدد کریں۔",
+ "langauge-am": "امہری",
"language-ar": "عربی",
"language-az": "آذربائیجانی",
+ "langauge-be": "بیلاروسی",
"language-bg": "بلغاریائی",
"language-bn": "بنگالی",
+ "language-bs": "بوسنیائی",
"language-ca": "کیٹالون",
"language-cs": "چیک",
"language-da": "ڈینِش",
@@ -18,13 +32,15 @@
"language-en": "انگریزی",
"language-es": "ہسپانوی",
"language-fa": "فارسی",
- "language-fi": "فینش",
+ "language-fi": "فنی",
"language-fr": "فرانسیسی",
"language-gl": "گالیشیائی",
"language-gu": "گجراتی",
+ "language-he": "عبرانی",
"language-hi": "ہندی",
"language-hr": "کروشیائی",
"language-hu": "ہںگرین",
+ "language-hy-am": "آرمینیائی",
"language-id": "انڈونیشیائی",
"language-ig": "اگبو",
"language-it": "اطالوی",
@@ -32,13 +48,16 @@
"language-ka": "جارجیائی",
"language-kk": "قازق",
"language-km": "خمیر",
+ "language-kn": "کنٹر",
"language-ko": "کوریائی",
"language-lt": "لیتھوانیائی",
"language-ml": "ملیالم",
"language-mr": "مراٹھی",
"language-ms": "مالے",
- "language-nb": "نارویجن",
- "language-nl": "ڈچ",
+ "language-nb": "نارویجئن",
+ "language-ne-np": "نیپالی",
+ "language-nl": "ولندیزی",
+ "language-pcm": "نائجیریائی پیجن",
"language-fil": "فلپائنی",
"language-pl": "پولش",
"language-pt": "پرتگالی",
@@ -50,10 +69,12 @@
"language-sl": "سلووینیائی",
"language-sr": "سربیائی",
"language-sw": "سواحلی",
- "language-th": "تھائی",
"language-ta": "تامل",
+ "language-th": "تھائی",
+ "language-tk": "ترکمائی",
"language-tr": "ترکش",
"language-uk": "یوکرینی",
+ "language-ur": "اردو",
"language-uz": "ازبک",
"language-vi": "ویتنامی",
"language-zh": "سادہ چینی",
diff --git a/src/intl/uz/common.json b/src/intl/uz/common.json
index 070b7be26b2..5744bf2d01b 100644
--- a/src/intl/uz/common.json
+++ b/src/intl/uz/common.json
@@ -1,30 +1,70 @@
{
"about-ethereum-org": "ethereum.org haqida",
"about-us": "Biz haqimizda",
+ "adding-desci-projects": "Desci loyihalarini qo'shish",
+ "adding-developer-tools": "Dasturchi vositalarini qo'shish",
+ "adding-exchanges": "Birjalarni qo'shish",
+ "adding-glossary-terms": "Glossariy atamalarni qo'shish",
+ "adding-staking-products": "Pul tikish mahsulotlarini qo'shish",
+ "adding-wallets": "Hamyonlarni qo'shish",
+ "account-abstraction": "Hisob abstraksiyasi",
+ "acknowledgements": "Minnatdorchilik",
"aria-toggle-search-button": "Qidiruv tugmasini almashtirish",
"aria-toggle-menu-button": "Menyu tugmasini almashtirish",
"beacon-chain": "Beacon Chain",
"bridges": "Blokcheyn ko'priklar",
+ "bug-bounty": "Xatolar mo'lligi",
+ "build": "Qurish",
+ "build-menu": "Qurish menyusi",
+ "clear": "Tozalash",
"close": "Yopish",
"community": "Hamjamiyat",
"community-hub": "Hamjamiyat markazi",
"community-menu": "Hamjamiyat menyusi",
"contact": "Aloqa",
+ "content-buckets": "Kontent Idishlari",
+ "content-resources": "Kontent resurslari",
+ "content-standardization": "Kontentni standartlashtirish",
"contributing": "Hissa qo‘shish",
"contributors": "Hissa qoʻshganlar",
"contributors-thanks": "Bu sahifada hissa qoʻshganlarning barchasiga rahmat!",
"cookie-policy": "Cookie siyosati",
"copied": "Nusxa olindi",
"copy": "Nusxa olish",
+ "danksharding": "Danksharding",
+ "dao-page": "DAO - Markazlashmagan avtonom tashkilotlar",
"dark-mode": "Tungi",
"data-provided-by": "Ma'lumotlar manbai:",
- "decentralized-applications-dapps": "Markazlashtirilmagan ilovalar (dapps)",
- "decentralized-science": "Decentralized science (DeSci)",
+ "decentralized-applications-dapps": "Dapps - Markazlashtirilmagan ilovalar",
+ "decentralized-identity": "Markazlashmagan identifikatsiya",
+ "decentralized-social-networks": "Markazlashmagan ijtimoiy tarmoqlar",
+ "decentralized-science": "DeSci - Markazlashmagan ilm",
+ "description": "Nav elementi uchun tavsif",
+ "defi-page": "DeFi - Markazlashmagan moliya",
+ "design": "Dizayn",
+ "design-principles": "Dizayn Tamoyillari",
"devcon": "Devcon",
"developers": "Ishlab chiquvchilar",
"developers-home": "Dasturchilar bosh sahifasi",
"docs": "Docs",
+ "docsearch-to-select": "Tanlash uchun",
+ "docsearch-to-navigate": "Kezish uchun",
+ "docsearch-to-close": "Yopish uchun",
+ "docsearch-search-by": "Qidiruv asosi",
+ "docsearch-start-recent-searches-title": "Oxirgi",
+ "docsearch-start-no-recent-searches": "Oxirgi qidiruvlar yoʻq",
+ "docsearch-start-save-recent-search": "Bu qidiruvni saqlash",
+ "docsearch-start-remove-recent-search": "Bu qidiruvni tarixdan olib tashlash",
+ "docsearch-start-favorite-searches": "Saralangan",
+ "docsearch-start-remove-favorite-search": "Bu qidiruvni saralanganlardan olib tashlash",
+ "docsearch-no-results-text": "Bunga natija topilmadi",
+ "docsearch-no-results-suggested-query": "Buni qidirishga urining",
+ "docsearch-no-results-missing": "Bu soʻrov natija berishiga ishonasizmi?",
+ "docsearch-no-results-missing-link": "Bizga xabar bering.",
+ "docsearch-error-title": "Natijalarni olish imkonsiz",
+ "docsearch-error-help": "Internetga ulanishni tekshirishingiz mumkin.",
"documentation": "Hujjatnoma",
+ "down": "Pastga",
"ecosystem": "Ekotizim",
"edit-page": "Sahifani tahrirlash",
"ef-blog": "Ethereum Foundation Blogi",
@@ -34,10 +74,11 @@
"enterprise-menu": "Korxona menyusi",
"esp": "Ekotizimni qo'llab-quvvatlash dasturi",
"eth-current-price": "Joriy ETH narxi (USD)",
+ "ethereum-basics": "Ethereum asoslari",
"ethereum-bug-bounty": "Ethereum xatolarini topishni dastaklash dasturi",
"consensus-when-shipping": "Qachon yuboriladi?",
"ethereum-upgrades": "Ethereum yangilanishlari",
- "ethereum-brand-assets": "Ethereum brendi aktivlari",
+ "ethereum-brand-assets": "Ethereum brendining resurslari",
"ethereum-online": "Onlayn hamjamiyatlar",
"ethereum-events": "Ethereum voqealari",
"ethereum-foundation": "Ethereum Foundation",
@@ -45,6 +86,8 @@
"ethereum-glossary": "Ethereum lug'ati",
"ethereum-governance": "Ethereum boshqaruvi",
"ethereum-logo": "Ethereum logotipi",
+ "ethereum-roadmap": "Ethereum yoʻl xaritasi",
+ "ethereum-protocol": "Etereum protokoli",
"ethereum-security": "Ethereum xavfsizligi va firibgarlikning oldini olish",
"ethereum-support": "Ethereum yordam xizmati",
"ethereum-wallets": "Ethereum Hamyonlar",
@@ -55,19 +98,26 @@
"feedback-card-prompt-tutorial": "Qoʻllanma foydali boʻldimi?",
"feedback-widget-thank-you-title": "Fikr-mulohazangiz uchun rahmat!",
"feedback-widget-thank-you-subtitle": "Bir qancha savollarga javob berib, bu sahifani yanada yaxshilang.",
- "feedback-widget-thank-you-subtitle-ext": "Sizga yordam kerak boʻlsa, Discord sahifamiz orqali hamjamiyatimiz bilan aloqaga chiqing.",
+ "feedback-widget-thank-you-subtitle-ext": "Agar sizga yordam kerak boʻlsa, bizning Discord orqali hamjamiyat bilan bogʻlanishingiz mumkin.",
"feedback-widget-thank-you-timing": "2–3 daq",
"feedback-widget-thank-you-cta": "Qisqa soʻrovnomani ochish",
"find-wallet": "Hamyonni topish",
+ "future-proofing": "Kelajakka tayyorlik",
"get-eth": "ETH olish",
"get-involved": "Ishtirok etish",
"get-started": "Boshlang",
"grants": "Grantlar",
"grant-programs": "Ekotizim grant dasturlari",
- "guides-and-resources": "Hamjamiyat qoʻllanmalari va resurslari",
+ "guides": "Qoʻllanmalar",
+ "guides-hub": "Qo'llanmalar",
"history-of-ethereum": "Ethereum tarixi",
"home": "Bosh sahifa",
"how-ethereum-works": "Ethereum qanday ishlaydi",
+ "how-to-create-an-ethereum-account": "Ethereum hisobini qanday \"yaratish\" mumkin",
+ "how-to-revoke-token-access": "Kripto mablagʻlaringizga aqlli shartnoma kirishini qanday bekor qilish mumkin",
+ "how-to-swap-tokens": "Tokenlarni qanday almashtirish mumkin",
+ "how-to-use-a-bridge": "Tokenlarni 2-qatlamga qanday ulash mumkin",
+ "how-to-use-a-wallet": "Hamyonni qanday ishlatish mumkin",
"image": "rasm",
"in-this-section": "Bu bo'limda",
"individuals": "Jismoniy shaxslar",
@@ -81,6 +131,7 @@
"layer-2": "Qatlam 2",
"learn": "O'rganish",
"learn-by-coding": "Kodlash orqali bilib oling",
+ "learn-hub": "Oʻrganish markazi",
"learn-menu": "Oʻrganish menyusi",
"learn-more": "Ko'proq ma'lumot olish",
"less": "Kamroq",
@@ -89,42 +140,160 @@
"loading": "Yuklanmoqda...",
"loading-error": "Yuklashda xatolik.",
"loading-error-refresh": "Xatolik yuz berdi, yangilang.",
+ "loading-error-try-again-later": "Ma'lumotlarni yuklash imkonsiz. Yana bir harakat qilib ko'ring.",
"logo": "logotip",
"mainnet-ethereum": "Mainnet Ethereum",
- "more": "Yana",
- "nav-developers": "Ishlab chiquvchilar",
+ "merge": "Birlashtirish",
+ "more": "Ko'proq",
+ "nav-about-description": "Ethereum jamiyati uchun ochiq kodli jamoatchilik loyihasi",
+ "nav-advanced-description": "Murakkabroq mavzularni oʻrganing",
+ "nav-advanced-label": "Kengaytirilgan",
+ "nav-basics-description": "Ethereum asoslarini tushuning",
+ "nav-basics-label": "Asoslar",
+ "nav-bridges-description": "Web3 asosiy L1 blokcheynlari va L2 masshtablash yechimlari ekotizimiga aylandi.",
+ "nav-builders-home-description": "Ethereum quruvchilarining qoʻllanmasi – quruvchilardan quruvchilar uchun",
+ "nav-builders-home-label": "Quruvchi bosh sahifasi",
+ "nav-contribute-description": "Agar yordam bermoqchi boʻlsangiz, sizga bu yoʻl koʻrsatadi",
+ "nav-contribute-label": "Ethereum.org saytiga hissa qoʻshing",
+ "nav-dao-description": "Markazlashgan idoraga ega boʻlmagan aʼzolarga tegishli jamoalar",
+ "nav-dapps-description": "Ethereum ishlatadigan ilovalarning boy ekotizimini kashf eting",
+ "nav-defi-description": "Anʼanaviy moliya bozoriga global, ochiq muqobil",
+ "nav-desci-description": "Hozirgi ilmiy tizimga global, ochiq muqobil",
+ "nav-desoc-description": "Ijtimoiy aloqa va kontent yaratish uchun blokcheynga asoslangan platformalar",
"nav-developers-docs": "Dasturchilar uchun hujjatlar",
+ "nav-developers": "Ishlab chiquvchilar",
+ "nav-did-description": "Noyob markazlashmagan identifikatorlaringizni chiqaring va ularga egalik qiling",
+ "nav-docs-description": "Ethereumni tushunish va qurishga yordam beradigan hujjatlar",
+ "nav-docs-design-description": "Noyob web3 dizayn muammolari, eng yaxshi amaliyotlar va foydalanuvchi tadqiqotlari tushunchalarining tavsifi",
+ "nav-docs-design-label": "UX/UI dizayn asoslari",
+ "nav-docs-foundation-description": "Ethereumda ishlab chiqish uchun asosiy asoslar",
+ "nav-docs-foundation-label": "Asosiy mavzular",
+ "nav-docs-overview-description": "Dasturchi hujjatlari uchun bosh sahifa",
+ "nav-docs-stack-description": "Ethereum stekining barcha tafsilotlarini tushuning",
+ "nav-docs-stack-label": "Ethereum stack",
+ "nav-eip-description": "Yangi xususiyatlar yoki jarayonlarni belgilaydigan standartlar",
+ "nav-eip-label": "EIP - Ethereumni yaxshilash takliflari",
+ "nav-emerging-description": "Ethereumdan boshqa sohalarda foydalanishni bilib oling",
+ "nav-enterprise-description": "Ethereum uchun biznes ilovalar",
+ "nav-ethereum-org-description": "Bu veb-sayt hamjamiyat tomonidan yaratilgan – bizga qoʻshiling va hissa qoʻshing",
+ "nav-ethereum-wallets-description": "Ethereum hisobingiz bilan ishlash uchun ilova",
+ "nav-events-description": "Markazsizlashtirish va har kim uchun ishtirok etish erkinligi",
+ "nav-events-irl-description": "Har oyda yuz beradigan katta Ethereum yuzma-yuz va onlayn tadbirlari",
+ "nav-events-label": "Jamoalar va tadbirlar",
+ "nav-events-online-description": "Bu onlayn hamjamiyatlarda yuz minglab Ethereum ishqibozlari jamlangan",
+ "nav-find-wallet-description": "Hamyonlar kripto ishlatish imkonini beradi",
+ "nav-find-wallet-label": "Hamyoningizni tanlang",
+ "nav-gas-fees-description": "ETH tranzaksiya toʻlovlari qanday hisoblanadi",
+ "nav-get-eth-description": "Ethereum ilovalaridan foydalanish uchun sizga efir (ETH) kerak",
+ "nav-get-started-description": "Ethereumdan foydalanish uchun birinchi qadamlaringiz",
+ "nav-governance-description": " Ethereum protokolini yangilash bilan bogʻliq jarayon",
+ "nav-governance-label": "Boshqaruv",
+ "nav-grants-description": "Hamjamiyatimiz tomonidan grant moliyalashtirish dasturlarini taqdim etuvchi loyihalar boʻyicha tuzilgan roʻyxat",
+ "nav-guide-create-account-description": "Har kim xohlagan vaqtda, hamyon ilovasi bilan bepul Ethereum hisobini yaratishi mumkin",
+ "nav-guide-create-account-label": "Ethereum hisobini qanday yaratish mumkin",
+ "nav-guide-revoke-access-description": "Ethereum ekotizimidagi smart shartnomalar va ilovalar bilan ishlashda xavfsiz qoling",
+ "nav-guide-revoke-access-label": "Qanday qilib smart shartnomaga kirish ruxsatini bekor qilish mumkin",
+ "nav-guide-use-wallet-description": "Hamyonning barcha asosiy funksiyalarini qanday boshqarishni bilib oling",
+ "nav-guide-use-wallet-label": "Hamyonni qanday ishlatish mumkin",
+ "nav-guides-description": "Ishni boshlashga yordam beradigan amaliy koʻrsatmalar",
+ "nav-guides-label": "Yoʻriqnomalar",
+ "nav-history-description": "Barcha asosiy yoʻnalishlar va yangilanishlar xronologiyasi",
+ "nav-history-label": "Ethereumning texnik tarixi",
+ "nav-layer-2-description": "Ethereum uchun arzonroq va tezroq bitimlar",
+ "nav-learn-by-coding-description": "Ethereum bilan tajriba qilishga yordam beradigan vositalar",
+ "nav-local-env-description": "Ethereum ishlab chiqish stekini tanlang va sozlang",
+ "nav-mainnet-description": "Enterprise blokcheyn ilovalari ommaviy Ethereum Mainnetʼda qurilishi mumkin",
+ "nav-nft-description": "Ethereumga asoslangan aktiv sifatida noyob narsalarni koʻrsatish usuli",
+ "nav-open-research-description": "Ethereumning asosiy kuchli tomonlaridan biri uning faol tadqiqot hamjamiyatidir",
+ "nav-open-research-label": "Ochiq tadqiqot",
+ "nav-overview-description": "Ethereum saboqlariga oid hamma narsa",
+ "nav-participate-overview-description": "Qanday ishtirok etish haqida axborot",
"nav-primary": "Asosiy",
+ "nav-quizzes-description": "Ethereum va kriptovalyutalarni qanchalik yaxshi tushunganingizni bilib oling",
+ "nav-quizzes-label": "Bilimingizni sinab koʻring",
+ "nav-refi-description": "Muqobil iqtisodiy tizim regenerativ tamoyillarga asoslanadi",
+ "nav-research-description": "Ethereumni yaxshilash uchun ishlatiladigan jarayonlar",
+ "nav-research-label": "Izlanish va rivojlanish",
+ "nav-roadmap-description": "Ethereum uchun koʻproq miqyoslilik, xavfsizlik va barqarorlikka yoʻl",
+ "nav-roadmap-future-description": "Ethereumni mustahkam va markazlashmagan tarmoq sifatida mustahkamlash",
+ "nav-roadmap-future-label": "Kelajakka tayyorlik",
+ "nav-roadmap-label": "Yoʻl xaritasi",
+ "nav-roadmap-scaling-description": "Tranzaksiya xarajatlari va tezligini yanada kamaytirish uchun tarmoq yangilanishi",
+ "nav-roadmap-security-description": "Ethereum kelajakdagi barcha turdagi hujumlarga chidamli boʻlishiga ishonch hosil qilish",
+ "nav-roadmap-security-label": "Takomillashgan xavfsizlik",
+ "nav-roadmap-ux-description": "Ethereumdan foydalanishni soddalashtirish kerak",
+ "nav-run-a-node-description": "Tarmoq xavfsizligini taʼminlashda toʻliq suveren boʻling",
+ "nav-security-description": "Kriptovalyutadan foydalanishning eng yaxshi amaliyotlarini bilib oling",
+ "nav-smart-contracts-description": "Ethereum ekotizimining asosiy qurilish bloklari",
+ "nav-stablecoins-description": "Stablecoins – bu belgilangan qiymatda qolish uchun moʻljallangan Ethereum tokenlari",
+ "nav-stake-description": "Ethereumni himoya qilganingiz uchun mukofot oling",
+ "nav-stake-label": "Manfaat",
+ "nav-staking-home-description": "Ishtirok etish uchun turli xil variantlarning umumiy koʻrinishi",
+ "nav-staking-pool-description": "Boshqalar bilan kuchlarni birlashtirib, istalgan miqdordagi ETH bilan stavka oling va mukofot oling",
+ "nav-staking-pool-label": "Birlashtirilgan steyking",
+ "nav-staking-saas-label": "Steyking xizmat sifatida",
+ "nav-staking-solo-label": "Yakka steyking",
+ "nav-start-building-description": "Yangi qoʻshilganlar uchun foydali maʼlumotlar",
+ "nav-translation-program-description": "Ethereum.org saytini barcha tillarga tarjima qilishda hamkorlik",
+ "nav-tutorials-description": "Hamjamiyat qoʻllanmalari tanlangan roʻyxati",
+ "nav-use-cases-description": "Ethereumdan foydalanish uchun turli gʻoyalarni kashf eting",
+ "nav-what-is-ether-description": "Ethereum ilovalarining valyutasi",
+ "nav-what-is-ethereum-description": "Ethereumni nima maxsus qilishini tushuning",
+ "nav-what-is-web3-label": "Web3 nima?",
+ "nav-what-is-web3-description": "Qoidalarni belgilovchi markazlashgan monopoliyalarga muqobil",
+ "nav-whitepaper-description": "Asl Ethereum bayonnomasi 2014-yilda Vitalik Buterin tomonidan yozilgan",
+ "nav-zkp-description": "Bayonotning oʻzini oshkor qilmasdan, uning toʻgʻriligini isbotlash usuli",
+ "nft-page": "NFT - Unikal tokenlar",
+ "nfts": "NFTlar",
"no": "Yo'q",
"on-this-page": "Bu sahifada",
"open-research": "Ochiq tadqiqot",
+ "page-developers-aria-label": "Dasturchilar menyusi",
+ "page-index-meta-title": "Bosh sahifa",
"page-last-updated": "Sahifa oxirgi marta yangilandi",
+ "participate-menu": "Ishtirok menyusi",
+ "pbs": "Maslahatchi-tuzuvchini ajratish",
+ "pools": "Birlashtirilgan steyking",
"privacy-policy": "Maxfiylik Siyosati",
"private-ethereum": "Xususiy Ethereum",
+ "product-disclaimer": "Mahsulotlar va xizmatlar Ethereum hamjamiyati uchun qulaylik maqsadida keltirilgan. Mahsulot yoki xizmatning kiritilishiethereum.org veb-sayti jamoasi yoki Ethereum Foundation tomonidan tasdiqlanishini bildirmaydi.",
+ "quizzes-title": "Viktorina markazi",
+ "quizzes": "Viktorinalar",
"refresh": "Sahifani yangilang.",
"return-home": "bosh sahifaga qaytish",
+ "roadmap": "Ethereum yoʻl xaritasi",
+ "research": "Tadqiqot",
+ "research-menu": "Tadqiqot menyusi",
+ "resources": "Tarjima resurslari",
"run-a-node": "Tugunni ishga tushiring",
"rollup-component-website": "Veb-sayt",
"rollup-component-developer-docs": "Dasturchilar uchun hujjatlar",
"rollup-component-technology-and-risk-summary": "Xatarlar xulosasi va texnologiyalar",
+ "scaling": "Scaling",
+ "saas": "Steyking xizmat sifatida",
"search": "Qidiruv",
+ "search-ethereum-org": "Ethereum.org qidirish",
+ "secret-leader-election": "Yashirin yetakchi saylovi",
"search-box-blank-state-text": "Qidiring!",
"search-eth-address": "Bu Ethereum manziliga o'xshaydi. Biz manzillarga xos ma'lumotlarni taqdim etmaymiz. Bu kabi blok explorerdan qidirib ko'ring",
"search-no-results": "Qidiruv natija bermadi",
+ "security": "Xavfsizlik",
+ "single-slot-finality": "Bir slotli yakun",
+ "statelessness": "Fuqarosizlik",
"see-contributors": "Hissadorlarni ko'ring",
- "set-up-local-env": "Mahalliy muhitni sozlash",
+ "set-up-local-env": "Mahalliy muhitni o'rnating",
"sharding": "Sharding",
"show-all": "Hammasi",
"show-less": "Kamroq",
"site-description": "Ethereum - bu pul va yangi turdagi dasturlar uchun global, markazlashmagan platforma. Ethereum-da siz pulni boshqaradigan kod yozishingiz va dunyoning istalgan nuqtasida mavjud bo'lgan dasturlarni yaratishingiz mumkin.",
- "site-title": "ethereum.org",
"skip-to-main-content": "Asosiy tarkibga o'tish",
"smart-contracts": "Aqlli shartnomalar",
"stablecoins": "Stablecoins",
+ "stake-eth": "ETH ulushi",
"staking": "Steyking",
+ "start-here": "Shu yerdan boshlang",
"solo": "Yakka steyking",
- "saas": "Steyking xizmat sifatida",
- "pools": "Birlashtirilgan steyking",
+ "support": "Qo'llab-quvvatlash",
"terms-of-use": "Foydalanish shartlari",
"translation-banner-body-new": "Sahifani ingliz tilida ko'rmoqdasiz, chunki hali tarjima qilmaganmiz. Bu kontentni tarjima qilishda yordam bering.",
"translation-banner-body-update": "Bu sahifaning yangi versiyasi mavjud, ammo hozirda faqat ingliz tilida. Oxirgi versiyasini tarjima qilishda yordam bering.",
@@ -135,22 +304,23 @@
"translation-banner-no-bugs-title": "Xatolar topilmadi!",
"translation-banner-no-bugs-content": "Bu sahifa hozir tarjima qilinmaydi. Hozircha bu sahifani inglizchada qoldiramiz.",
"translation-banner-no-bugs-dont-show-again": "Koʻrsatilmasin",
+ "translation-program": "Tarjima dasturi",
"try-using-search": "Izlayotganingizni topish uchun qidiruvdan foydalaning yoki",
"tutorials": "Darsliklar",
+ "up": "Tepaga",
+ "use": "Foydalanish",
"use-ethereum": "Ethereum-dan foydalaning",
"use-ethereum-menu": "Ethereum ishlatish menyusi",
+ "use-menu": "Foydalanish menyusi",
+ "user-experience": "Foydalanuvchi tajribasi",
+ "verkle-trees": "Verkle tarmoqlari",
"wallets": "Hamyonlar",
"we-couldnt-find-that-page": "Bu sahifa topilmadi",
"web3": "Web3 nima?",
"website-last-updated": "Sahifa oxirgi marta yangilandi",
- "what-is-ether": "Ether (ETH) nima?",
+ "what-is-ether": "Ether (ETH) bu nima?",
"what-is-ethereum": "Ethereum bu nima?",
- "defi-page": "Markazlashmagan moliya (DeFi)",
- "dao-page": "Markazlashmagan avtonom tashkilotlar (DAO)",
- "nft-page": "Unikal tokenlar (NFT)",
- "decentralized-social-networks": "Markazlashmagan ijtimoiy tarmoqlar",
- "decentralized-identity": "Markazlashmagan identifikatsiya",
+ "withdrawals": "Staking yechib olish",
"yes": "Ha",
- "zero-knowledge-proofs": "Zero-knowledge proofs",
- "page-index-meta-title": "Bosh sahifa"
+ "zero-knowledge-proofs": "Nol bilim bilan isbotlashlar"
}
diff --git a/src/intl/uz/page-languages.json b/src/intl/uz/page-languages.json
index c357125373a..164c03bcf6e 100644
--- a/src/intl/uz/page-languages.json
+++ b/src/intl/uz/page-languages.json
@@ -1,16 +1,29 @@
{
"page-languages-h1": "Til Yordami",
+ "page-languages-interested": "Hissa qo'shishga qiziqasizmi?",
+ "page-languages-learn-more": "Tarjima Dasturi haqida ko'proq ma'lumot oling",
+ "page-languages-meta-desc": "Ethereum.org saytining barcha qo'llab-quvvatlanadigan tillari uchun manbalar va tarjimon sifatida ishtirok etish usullari.",
+ "page-languages-meta-title": "ethereum.org til tarjimalari",
+ "page-languages-p1": "Ethereum global loyiha bo'lib, ethereum.org millati yoki tilidan qat'i nazar, hamma uchun ochiq bo'lishi juda muhimdir. Jamiyatimiz ushbu g‘oyani ro‘yobga chiqarish uchun ko‘p mehnat qilmoqda.",
+ "page-languages-translations-available": "ethereum.org quyidagi tillarda mavjud",
+ "page-languages-resources-paragraph": "Ethereum.org kontentini tarjima qilishdan tashqari, biz ",
+ "page-languages-resources-link": "biz koʻplab tillarda Ethereum resurslarining tanlangan roʻyxatini ham yuritamiz.",
+ "page-languages-want-more-header": "ethereum.org saytini boshqa tilda ko'rishni xohlaysizmi?",
"page-languages-want-more-link": "Tarjima dasturi",
+ "page-languages-want-more-paragraph": "ethereum.org tarjimonlari har doim sahifalarni iloji boricha ko'proq tillarga tarjima qilishadi. Ular hozir nima ustida ishlayotganini koʻrish yoki ularga qoʻshilish uchun yoki roʻyxatdan oʻtish uchun, quyidagilar haqida o'qing",
"page-languages-filter-label": "Filtr roʻyxati",
"page-languages-filter-placeholder": "Filtrlash uchun yozing",
"page-languages-browser-default": "Brauzer standarti",
"page-languages-translated": "tarjima qilingan",
"page-languages-words": "soʻzlar",
"page-languages-recruit-community": "Bizga ethereum.org tarjimasiga yordam bering.",
+ "langauge-am": "Aramey tili",
"language-ar": "Arab",
"language-az": "Ozarbayjon",
+ "langauge-be": "Belarus tili",
"language-bg": "Bolgar",
"language-bn": "Bengal",
+ "language-bs": "Bo'sniy tilida",
"language-ca": "Katalan",
"language-cs": "Chex",
"language-da": "Daniya",
@@ -22,23 +35,30 @@
"language-fi": "Fin",
"language-fr": "Fransuz",
"language-gl": "Galisiy",
+ "language-gu": "Gujarat tilida",
+ "language-he": "Ivrit tilida",
"language-hi": "Hind",
"language-hr": "Xorvat",
"language-hu": "Venger",
+ "language-hy-am": "Arman tilida",
"language-id": "Indonez",
"language-ig": "Igbo",
"language-it": "Italyan",
"language-ja": "Yapon",
"language-ka": "Gruzin",
- "language-kk": "Kazakh",
+ "language-kk": "Qozoq tilida",
+ "language-km": "Kxmer tilida",
+ "language-kn": "Kannada tilida",
"language-ko": "Koreys",
"language-lt": "Litva",
"language-ml": "Malayalam",
"language-mr": "Maratxi",
"language-ms": "Malay",
"language-nb": "Norveg",
+ "language-ne-np": "Nepal tilida",
"language-nl": "Golland",
- "language-fil": "Filipino",
+ "language-pcm": "Nigeriya pidjin tilida",
+ "language-fil": "Filippin tilida",
"language-pl": "Polyak",
"language-pt": "Portugal",
"language-pt-br": "Portugal (Braziliya)",
@@ -49,10 +69,14 @@
"language-sl": "Sloven",
"language-sr": "Serb",
"language-sw": "Suaxili",
+ "language-ta": "Tamilcha",
"language-th": "Tay",
+ "language-tk": "Turkman tilida",
"language-tr": "Turk",
"language-uk": "Ukrain",
+ "language-ur": "Urdu tilida",
+ "language-uz": "O‘zbek tilida",
"language-vi": "Vyetnam",
"language-zh": "Xitoy (soddalashtirilgan)",
- "language-zh-tw": "Xitoy an'anaviy"
+ "language-zh-tw": "Xitoy anʼanaviy"
}
diff --git a/src/intl/vi/common.json b/src/intl/vi/common.json
index 6aedca8c844..17f50efa5e3 100644
--- a/src/intl/vi/common.json
+++ b/src/intl/vi/common.json
@@ -1,17 +1,29 @@
{
- "account-abstraction": "Tóm tắt tài khoản",
"about-ethereum-org": "Giới thiệu về ethereum.org",
"about-us": "Giới thiệu về chúng tôi",
+ "adding-desci-projects": "Thêm dự án Desci",
+ "adding-developer-tools": "Thêm công cụ nhà phát triển",
+ "adding-exchanges": "Thêm sàn giao dịch",
+ "adding-glossary-terms": "Thêm thuật ngữ chú giải",
+ "adding-staking-products": "Thêm sản phẩm staking",
+ "adding-wallets": "Thêm ví",
+ "account-abstraction": "Tóm tắt tài khoản",
+ "acknowledgements": "Lời cảm ơn",
"aria-toggle-search-button": "Nút Kích hoạt tìm kiếm",
"aria-toggle-menu-button": "Điều hướng menu",
"beacon-chain": "Chuỗi Beacon",
"bridges": "Các cầu nối chuỗi khối",
+ "bug-bounty": "Tiền thưởng phát hiện lỗi",
+ "build": "Phát triển",
+ "build-menu": "Menu Phát triển",
"clear": "Xóa",
"close": "Đóng",
"community": "Cộng đồng",
"community-hub": "Diễn đàn cộng đồng",
"community-menu": "Menu Cộng đồng",
"contact": "Liên hệ",
+ "content-buckets": "Danh mục nội dung",
+ "content-resources": "Tài nguyên nội dung",
"content-standardization": "Chuẩn hóa nội dung",
"contributing": "Đang đóng góp",
"contributors": "Người đóng góp",
@@ -20,14 +32,17 @@
"copied": "Đã sao chép",
"copy": "Sao chép",
"danksharding": "Danksharding",
- "dao-page": "Tổ chức tự trị phi tập trung (DAO)",
+ "dao-page": "DAO - Tổ chức tự trị phi tập trung",
"dark-mode": "Chế độ tối",
"data-provided-by": "Nguồn dữ liệu:",
- "decentralized-applications-dapps": "Ứng dụng phi tập trung (dapps)",
+ "decentralized-applications-dapps": "Dapps - Ứng dụng phi tập trung",
"decentralized-identity": "Nhận dạng phi tập trung",
"decentralized-social-networks": "Mạng xã hội phi tập trung",
- "decentralized-science": "Ngành khoa học phi tập trung (DeSci)",
- "defi-page": "Tài chính phi tập trung (DeFi)",
+ "decentralized-science": "DeSci - Ngành khoa học phi tập trung",
+ "description": "Mô tả mục điều hướng",
+ "defi-page": "DeFi - Tài chính phi tập trung",
+ "design": "Thiết kế",
+ "design-principles": "Nguyên tắc thiết kế",
"devcon": "Hội nghị các nhà phát triển",
"developers": "Nhà phát triển",
"developers-home": "Trang chủ dành cho nhà phát triển",
@@ -51,7 +66,7 @@
"documentation": "Tài liệu tham khảo",
"down": "Xuống",
"ecosystem": "Hệ sinh thái",
- "edit-page": "Trang chỉnh sửa",
+ "edit-page": "Trang chỉnh sữa",
"ef-blog": "Blog về Nền tảng Ethereum",
"eips": "Đề xuất cải tiến Ethereum",
"energy-consumption": "Tiêu thụ năng lượng của Ethereum",
@@ -88,17 +103,16 @@
"feedback-widget-thank-you-cta": "Tạo khảo sát ngắn",
"find-wallet": "Tìm ví",
"future-proofing": "Đáp ứng nhu cầu trong tương lai",
- "get-eth": "Tải ETH",
+ "get-eth": "Nhận ETH",
"get-involved": "Tham gia",
"get-started": "Bắt đầu",
"grants": "Các khoản tài trợ",
"grant-programs": "Các chương trình tài trợ cho hệ sinh thái",
"guides": "Hướng dẫn",
- "guides-hub": "Trung tâm hướng dẫn",
+ "guides-hub": "Hướng dẫn sử dụng",
"history-of-ethereum": "Lịch sử Ethereum",
"home": "Trang chủ",
"how-ethereum-works": "Cách hoạt động của Ethereum",
- "how-to-register-an-ethereum-account": "Cách \"đăng kí\" một tài khoản Ethereum",
"how-to-revoke-token-access": "Cách thu hồi quyền đã kí từ các hợp đồng thông minh đối với tài sản crypto của bạn",
"how-to-swap-tokens": "Cách để hoán đổi token",
"how-to-use-a-bridge": "Cách để chuyển thể token sang lớp 2",
@@ -115,11 +129,11 @@
"last-edit": "Lần chỉnh sửa gần nhất",
"layer-2": "Lớp 2",
"learn": "Tìm hiểu",
- "learn-by-coding": "Học lập trình",
+ "learn-by-coding": "Tìm hiểu bằng cách mã hoá",
"learn-hub": "Trung tâm Học tập",
"learn-menu": "Menu Tìm hiểu",
"learn-more": "Tìm hiểu thêm",
- "less": "Ẩn bớt",
+ "less": "Ít hơn",
"light-mode": "Chế độ sáng",
"listing-policy-disclaimer": "Tất cả sản phẩm trên trang này đều không được thẩm định chính thức và chỉ được cung cấp vì mục đích thông tin. Nếu bạn muốn thêm sản phẩm hoặc phản hồi về chính sách, hãy tạo phiếu sự cố trên GitHub.",
"loading": "Đang tải...",
@@ -128,11 +142,113 @@
"loading-error-try-again-later": "Không thể tải dữ liệu. Hãy thử lại sau.",
"logo": "logo",
"mainnet-ethereum": "Ethereum Mạng chính",
- "more": "Xem thêm",
- "nav-developers": "Nhà phát triển",
+ "merge": "Gộp",
+ "more": "Thêm",
+ "nav-about-description": "Một dự án mã nguồn mở công khai dành cho cộng đồng Ethereum",
+ "nav-advanced-description": "Tìm hiểu các chủ đề phức tạp hơn",
+ "nav-advanced-label": "Nâng cao",
+ "nav-basics-description": "Tìm hiểu các nguyên tắc cơ bản của Ethereum",
+ "nav-basics-label": "Nguyên tắc cơ bản",
+ "nav-bridges-description": "Web3 đã phát triển thành một hệ sinh thái gồm các chuỗi khối L1 chính và các giải pháp mở rộng quy mô L2",
+ "nav-builders-home-description": "Sổ tay hướng dẫn dành cho nhà phát triển về Ethereum—bởi các nhà phát triển, dành cho các nhà phát triển",
+ "nav-builders-home-label": "Trang chủ của Nhà phát triển",
+ "nav-contribute-description": "Nếu bạn muốn giúp đỡ thì tài liệu này sẽ hướng dẫn cho bạn",
+ "nav-contribute-label": "Đóng góp cho ethereum.org",
+ "nav-dao-description": "Các cộng đồng được sở hữu bởi thành viên mà không cần sự lãnh đạo tập trung",
+ "nav-dapps-description": "Khám phá hệ sinh thái ứng dụng phong phú sử dụng Ethereum",
+ "nav-defi-description": "Một lựa chọn mở toàn cầu thay thế cho thị trường tài chính truyền thống",
+ "nav-desci-description": "Một lựa chọn mở toàn cầu thay thế cho hệ thống khoa học hiện tại",
+ "nav-desoc-description": "Các nền tảng dựa trên chuỗi khối cho việc tương tác xã hội và sáng tạo nội dung",
"nav-developers-docs": "Tài liệu dành cho nhà phát triển",
+ "nav-developers": "Nhà phát triển",
+ "nav-did-description": "Phát hành và sở hữu mã định danh phi tập trung của riêng bạn",
+ "nav-docs-description": "Tài liệu giúp bạn hiểu và phát triển với Ethereum",
+ "nav-docs-design-description": "Mô tả các thách thức thiết kế web3 riêng, các phương pháp hay nhất và thông tin chi tiết từ nghiên cứu người dùng",
+ "nav-docs-design-label": "Nguyên tắc cơ bản về thiết kế UX/UI",
+ "nav-docs-foundation-description": "Các nguyên tắc cơ bản cốt lõi để phát triển trên Ethereum",
+ "nav-docs-foundation-label": "Các chủ đề chính",
+ "nav-docs-overview-description": "Ngôi nhà dành cho tài liệu nhà phát triển của bạn",
+ "nav-docs-stack-description": "Tìm hiểu tất cả chi tiết của hệ thống Ethereum",
+ "nav-docs-stack-label": "Ethereum stack",
+ "nav-eip-description": "Các tiêu chuẩn xác định các tính năng hoặc quy trình mới",
+ "nav-eip-label": "EIP - Đề xuất cải tiến Ethereum",
+ "nav-emerging-description": "Tìm hiểu các trường hợp sử dụng Ethereum khác mới hơn",
+ "nav-enterprise-description": "Các ứng dụng kinh doanh cho Ethereum",
+ "nav-ethereum-org-description": "Trang web này hướng tới cộng đồng—hãy tham gia và đóng góp cùng chúng tôi",
+ "nav-ethereum-wallets-description": "Một ứng dụng để tương tác với tài khoản Ethereum của bạn",
+ "nav-events-description": "Phi tập trung và cho phép mọi người tự do tham gia",
+ "nav-events-irl-description": "Hằng tháng có các sự kiện Ethereum lớn trực tiếp và trực tuyến",
+ "nav-events-label": "Cộng đồng và sự kiện",
+ "nav-events-online-description": "Hàng trăm ngàn người đam mê Ethereum trong các cộng đồng trực tuyến này",
+ "nav-find-wallet-description": "Ví cho phép bạn sử dụng tiền điện tử",
+ "nav-find-wallet-label": "Chọn ví",
+ "nav-gas-fees-description": "Phí giao dịch ETH được tính như thế nào",
+ "nav-gas-fees-label": "Phí gas",
+ "nav-get-eth-description": "Bạn cần ether (ETH) để sử dụng các ứng dụng Ethereum",
+ "nav-get-started-description": "Những bước đầu tiên để sử dụng Ethereum",
+ "nav-governance-description": "Quy trình bao gồm việc nâng cấp giao thức Ethereum",
+ "nav-governance-label": "Quản trị",
+ "nav-grants-description": "Một danh sách được cộng đồng của chúng tôi lựa chọn về các dự án cung cấp các chương trình tài trợ",
+ "nav-guide-create-account-description": "Mọi người đều có thể tạo tài khoản Ethereum vào bất kỳ thời điểm nào, miễn phí thông qua một ứng dụng ví",
+ "nav-guide-create-account-label": "Cách tạo tài khoản Ethereum",
+ "nav-guide-revoke-access-description": "Giữ an toàn khi tương tác với các hợp đồng và ứng dụng thông minh trong hệ sinh thái Ethereum",
+ "nav-guide-revoke-access-label": "Cách thu hồi quyền truy cập hợp đồng thông minh",
+ "nav-guide-use-wallet-description": "Tìm hiểu cách vận hành tất cả các chức năng cơ bản của ví",
+ "nav-guide-use-wallet-label": "Cách để sử dụng ví",
+ "nav-guides-description": "Hướng dẫn từng bước thực tế để giúp bạn bắt đầu",
+ "nav-guides-label": "Hướng dẫn sử dụng",
+ "nav-history-description": "Dòng thời gian của tất cả thông tin và cập nhật chính",
+ "nav-history-label": "Lịch sử kỹ thuật của Ethereum",
+ "nav-layer-2-description": "Giao dịch Ethereum rẻ hơn và nhanh hơn",
+ "nav-learn-by-coding-description": "Các công cụ giúp bạn thử nghiệm Ethereum",
+ "nav-local-env-description": "Chọn và thiết lập hệ thống phát triển Ethereum của bạn",
+ "nav-mainnet-description": "Các ứng dụng chuỗi khối doanh nghiệp có thể được xây dựng trên Mạng chính Ethereum công cộng",
+ "nav-nft-description": "Một cách để đại diện cho bất kỳ thứ gì độc nhất dưới dạng tài sản dựa trên Ethereum",
+ "nav-open-research-description": "Một trong những thế mạnh chính của Ethereum là cộng đồng nghiên cứu tích cực",
+ "nav-open-research-label": "Nghiên cứu mở",
+ "nav-overview-description": "Tất cả thông tin về giáo dục Ethereum",
+ "nav-overview-label": "Tổng quan",
+ "nav-participate-overview-description": "Tổng quan về cách tham gia",
"nav-primary": "Chính",
- "nft-page": "Non-Fungible Token (NFT)",
+ "nav-private-description": "Tài nguyên dành cho nhà phát triển cho doanh nghiệp tư nhân Ethereum",
+ "nav-quizzes-description": "Tìm hiểu xem bạn hiểu rõ về Ethereum và tiền điện tử đến mức nào",
+ "nav-quizzes-label": "Kiểm tra kiến thức của bạn",
+ "nav-refi-description": "Một hệ thống kinh tế thay thế được xây dựng trên các nguyên tắc tái tạo",
+ "nav-research-description": "Quy trình được sử dụng để cải thiện Ethereum",
+ "nav-research-label": "Nghiên cứu và phát triển",
+ "nav-roadmap-description": "Lộ trình tăng cường khả năng mở rộng, bảo mật và bền vững hơn cho Ethereum",
+ "nav-roadmap-future-description": "Củng cố Ethereum như một mạng lưới mạnh mẽ và phi tập trung",
+ "nav-roadmap-future-label": "Đáp ứng nhu cầu trong tương lai",
+ "nav-roadmap-label": "Lộ trình",
+ "nav-roadmap-scaling-description": "Cập nhật mạng để giảm thêm chi phí và tốc độ giao dịch",
+ "nav-roadmap-security-description": "Đảm bảo Ethereum luôn bền bỉ trước mọi hình thức tấn công trong tương lai",
+ "nav-roadmap-security-label": "Cải thiện an ninh",
+ "nav-roadmap-ux-description": "Việc sử dụng Ethereum cần được đơn giản hóa",
+ "nav-run-a-node-description": "Trở nên hoàn toàn độc lập mà vẫn đảm bảo an ninh mạng",
+ "nav-security-description": "Tìm hiểu các phương pháp hay nhất khi sử dụng tiền mã hóa",
+ "nav-smart-contracts-description": "Các khối xây dựng cơ bản của hệ sinh thái Ethereum",
+ "nav-stablecoins-description": "Stablecoin là token Ethereum được thiết kế để duy trì ở một giá trị cố định",
+ "nav-stake-description": "Kiếm phần thưởng khi bảo mật Ethereum",
+ "nav-stake-label": "Đặt cược",
+ "nav-staking-home-description": "Tổng quan về các tùy chọn đặt cược khác nhau",
+ "nav-staking-home-label": "Trang chủ ký gửi",
+ "nav-staking-pool-description": "Đặt cược và nhận thưởng với số lượng ETH bất kỳ bằng cách tham gia cùng những người khác",
+ "nav-staking-pool-label": "Đặt cọc chung",
+ "nav-staking-saas-description": "Các nhà khai thác nút bên thứ ba xử lý hoạt động của ứng dụng khách trình xác thực của bạn",
+ "nav-staking-saas-label": "Đặt cược như một dịch vụ",
+ "nav-staking-solo-description": "Chạy phần cứng tại nhà và tự mình thêm vào tính bảo mật và phân quyền của mạng Ethereum",
+ "nav-staking-solo-label": "Đặt cọc riêng",
+ "nav-start-building-description": "Thông tin hữu ích cho người mới bắt đầu",
+ "nav-translation-program-description": "Một nỗ lực hợp tác để dịch ethereum.org sang tất cả các ngôn ngữ",
+ "nav-tutorials-description": "Danh sách các hướng dẫn cộng đồng được lựa chọn",
+ "nav-use-cases-description": "Khám phá những ý tưởng sử dụng Ethereum đa dạng",
+ "nav-what-is-ether-description": "Tiền tệ của ứng dụng Ethereum",
+ "nav-what-is-ethereum-description": "Tìm hiểu điều gì làm cho Ethereum trở nên đặc biệt",
+ "nav-what-is-web3-label": "Web3 là gì?",
+ "nav-what-is-web3-description": "Một giải pháp thay thế cho việc tập trung ủy quyền để đưa ra các quy tắc",
+ "nav-whitepaper-description": "Sách trắng Ethereum ban đầu được viết bởi Vitalik Buterin vào năm 2014",
+ "nav-zkp-description": "Một cách để chứng minh tính hợp lệ của một tuyên bố mà không tiết lộ chính tuyên bố đó",
+ "nft-page": "NFT - Non-Fungible Token",
"nfts": "Các NFT",
"no": "Không",
"on-this-page": "Trên trang này",
@@ -140,6 +256,8 @@
"page-developers-aria-label": "Menu của nhà phát triển",
"page-index-meta-title": "Trang chủ",
"page-last-updated": "Trang cập nhật mới nhất",
+ "participate": "Tham gia",
+ "participate-menu": "Menu Tham gia",
"pbs": "Phân tách Bên xây dựng-đề xuất",
"pools": "Đặt cọc chung",
"privacy-policy": "Chính sách quyền riêng tư",
@@ -150,8 +268,10 @@
"refresh": "Vui lòng tải lại trang.",
"return-home": "Trở về trang chủ",
"roadmap": "Lộ trình Ethereum",
+ "research": "Nghiên cứu",
+ "research-menu": "Menu Nghiên cứu",
"resources": "Tài nguyên dịch thuật",
- "regenerative-finance": "Tài chính tái tạo (ReFi)",
+ "regenerative-finance": "ReFi - Tài chính tái tạo",
"run-a-node": "Vận hành một nút",
"rollup-component-website": "Trang web",
"rollup-component-developer-docs": "Tài liệu dành cho nhà phát triển",
@@ -164,6 +284,7 @@
"search-box-blank-state-text": "Tìm kiếm nào!",
"search-eth-address": "Đây giống như một địa chỉ Ethereum. Chúng tôi không cung cấp dữ liệu cho những địa chỉ này. Thử tìm kiếm trên một trình duyệt khối như",
"search-no-results": "Không tìm thấy kết quả cho tìm kiếm của bạn",
+ "security": "Bảo mật",
"single-slot-finality": "Khối cuối ở vị trí đơn nhất",
"statelessness": "Phi trạng thái",
"see-contributors": "Xem những người đóng góp",
@@ -172,7 +293,6 @@
"show-all": "Hiện tất cả",
"show-less": "Ẩn bớt",
"site-description": "Ethereum là một nền tảng toàn cầu, phi tập trung dành cho các ứng dụng về tài chính và các loại ứng dụng mới. Trên Ethereum, bạn có thể viết mã kiểm soát tài chính và xây dựng các ứng dụng có thể truy cập được từ bất cứ đâu trên thế giới.",
- "site-title": "ethereum.org",
"skip-to-main-content": "Nhảy đến nội dung chính",
"smart-contracts": "Hợp đồng thông minh",
"stablecoins": "Stablecoin",
@@ -181,6 +301,7 @@
"start-here": "Bắt đầu ở đây",
"style-guide": "Mẫu thiết kế",
"solo": "Đặt cọc riêng",
+ "support": "Hỗ Trợ",
"terms-of-use": "Điều khoản sử dụng",
"translation-banner-body-new": "Bạn đang xem trang này bằng tiếng Anh vì chúng tôi chưa dịch trang này. Hãy giúp chúng tôi dịch nội dung này.",
"translation-banner-body-update": "Đã có phiên bản mới của trang này nhưng chỉ hiển thị tiếng Anh. Hãy giúp chúng tôi dịch phiên bản mới nhất.",
@@ -191,11 +312,14 @@
"translation-banner-no-bugs-title": "Không có con bọ nào ở đây!",
"translation-banner-no-bugs-content": "Trang này chưa được dịch. Hiện chúng tôi chủ đích cung cấp trang này bằng Tiếng Anh.",
"translation-banner-no-bugs-dont-show-again": "Không hiển thị lại",
+ "translation-program": "Chương trình dịch thuật",
"try-using-search": "Hãy sử dụng công cụ tìm kiếm để tìm những gì bạn cần",
"tutorials": "Hướng dẫn",
"up": "Lên",
+ "use": "Sử dụng",
"use-ethereum": "Sử dụng Ethereum",
"use-ethereum-menu": "Sử dụng menu Ethereum",
+ "use-menu": "Menu Sử dụng",
"user-experience": "Kinh nghiệm của người dùng",
"verkle-trees": "Cây Verkle",
"wallets": "Ví",
@@ -203,7 +327,7 @@
"web3": "Web3 là gì?",
"web3-title": "Web3",
"website-last-updated": "Trang cập nhật mới nhất",
- "what-is-ether": "Ether (ETH) là gì?",
+ "what-is-ether": "ether (ETH) là gì?",
"what-is-ethereum": "Ethereum là gì?",
"withdrawals": "Rút tài sản đặt cược",
"yes": "Có",
diff --git a/src/intl/vi/page-languages.json b/src/intl/vi/page-languages.json
index afd896b1683..bd34db4ad71 100644
--- a/src/intl/vi/page-languages.json
+++ b/src/intl/vi/page-languages.json
@@ -23,7 +23,7 @@
"langauge-be": "Tiếng Belarus",
"language-bg": "Tiếng Bulgary",
"language-bn": "Tiếng Bengal",
- "language-bs": "Tiếng Nam Tư",
+ "language-bs": "Tiếng Bosnia",
"language-ca": "Tiếng Catalan",
"language-cs": "Tiếng Séc",
"language-da": "Tiếng Đan Mạch",
@@ -48,12 +48,14 @@
"language-ka": "Tiếng Georgia",
"language-kk": "Tiếng Kazakhstan",
"language-km": "Tiếng Khmer",
+ "language-kn": "Tiếng Kannada",
"language-ko": "Tiếng Hàn",
"language-lt": "Tiếng Lithuania",
"language-ml": "Tiếng Malayalam",
"language-mr": "Tiếng Marathi",
"language-ms": "Tiếng Mã Lai",
"language-nb": "Tiếng Na Uy",
+ "language-ne-np": "Tiếng Nepal",
"language-nl": "Tiếng Hà Lan",
"language-pcm": "Tiếng Nigerian Pidgin",
"language-fil": "Tiếng Philipin",
@@ -69,7 +71,7 @@
"language-sw": "Tiếng Swahili",
"language-ta": "Tiếng Tamil",
"language-th": "Tiếng Thái",
- "language-tk": "Tiếng Tuôc-men",
+ "language-tk": "Tiếng Turkmen",
"language-tr": "Tiếng Thổ Nhĩ Kỳ",
"language-uk": "Tiếng Ukraina",
"language-ur": "Tiếng Urdu",
diff --git a/src/intl/vi/page-wallets-find-wallet.json b/src/intl/vi/page-wallets-find-wallet.json
index 79d99399225..9bb61a3183e 100644
--- a/src/intl/vi/page-wallets-find-wallet.json
+++ b/src/intl/vi/page-wallets-find-wallet.json
@@ -7,7 +7,6 @@
"page-find-wallet-meta-title": "Tìm một ví Ethereum",
"page-find-wallet-title": "Tìm một ví",
"page-find-wallet-try-removing": "Thử xóa một hoặc hai tính năng",
- "page-find-wallet-choose-to-compare": "Chọn để so sánh",
"page-stake-eth": "Ký gửi ETH",
"page-find-wallet-open-source": "Mã nguồn mở",
"page-find-wallet-open-source-desc": "Phần mềm nguồn mở cho phép mọi người kiểm tra tính toàn vẹn và bảo mật của ứng dụng",
@@ -16,8 +15,6 @@
"page-find-wallet-non-custodial-desc": "Ví không có tính năng kiểm soát khoá riêng tư",
"page-find-wallet-hardware-wallet-support": "Trợ hoá ví lạnh",
"page-find-wallet-hardware-wallet-support-desc": "Ví có tính năng kết nối đến ví lạnh để có bảo mật tốt hơn",
- "page-find-wallet-walletconnect": "WalletConnect",
- "page-find-wallet-walletconnect-desc": "Ví hỗ trợ WalletConnect kết nối đến dapps",
"page-find-wallet-rpc-importing": "Nhập RPC",
"page-find-wallet-rpc-importing-desc": "Ví hỗ trợ endpoint RPC để kết nối đến các node hoặc mạng lưới khác nhau",
"page-find-wallet-nft-support": "Trợ hoá miền NFT",
@@ -36,8 +33,6 @@
"page-find-wallet-ens-support-desc": "Ví hỗ trợ Dịch vụ Định danh Ethereum (ENS)",
"page-find-wallet-token-importing": "Nhập token",
"page-find-wallet-token-importing-desc": "Nhập được bất kì token ERC-20 nào để sử dụng trong ví",
- "page-find-wallet-fee-optimization": "Tối ưu hóa chi phí",
- "page-find-wallet-fee-optimization-desc": "Hỗ trợ cơ chế giao thức loại 2 để tối ưu hóa phí gas và phí hoàn trả cho gas bị thừa khi giao dịch",
"page-find-wallet-buy-crypto": "Mua tiền điện tử",
"page-find-wallet-buy-crypto-desc": "Hỗ trợ mua tiền điện tử trực tiếp bằng tiền pháp định trong ví \n *Lưu ý: việc mua bán tiền điện tử phụ thuộc vào chế tài pháp lý từng khu vực cụ thể",
"page-find-wallet-sell-for-fiat": "Bán được sang tài sản pháp định",
@@ -46,7 +41,6 @@
"page-find-wallet-multisig-desc": "Ví yêu cầu đa chữ kí để ủy quyền giao dịch",
"page-find-wallet-social-recovery": "Phi ký khóa (Social recovery)",
"page-find-wallet-social-recovery-desc": "Ví cho phép giám hộ viên thay đổi ký khóa cho ví chứa hợp đồng thông minh",
- "page-find-wallet-token-support": "Trợ hoá token",
"page-find-wallet-features": "Tính năng",
"page-find-wallet-security": "Bảo mật",
"page-find-wallet-smart-contract": "Hợp đồng Thông minh",
@@ -63,7 +57,6 @@
"page-find-wallet-chromium": "Chromium",
"page-find-wallet-firefox": "Firefox",
"page-find-wallet-hardware": "Ví lạnh",
- "page-find-wallet-hardware-desc": "Ví lạnh",
"page-find-wallet-new-to-crypto-title": "Mới làm quen với tiền điện tử",
"page-find-wallet-new-to-crypto-desc": "Bạn là người dùng lần đầu tìm kiếm chiếc ví đầu tiên của mình",
"page-find-wallet-nfts-title": "Các NFT",
@@ -74,21 +67,13 @@
"page-find-wallet-finance-desc": "Bạn là người sử dụng DeFi và muốn có một chiếc ví cho phép bạn kết nối với các ứng dụng DeFi",
"page-find-wallet-developer-title": "Nhà phát triển",
"page-find-wallet-developer-desc": "Bạn là nhà phát triển và cần một chiếc ví để phát triển và thử nghiệm dapp",
- "page-find-wallet-persona-desc": "Chọn hình thức hồ sơ phù hợp với tính cách của bạn và sử dụng bộ lọc danh sách ví",
"page-find-wallet-filters": "Bộ lọc",
"page-find-wallet-active": "hoạt động",
- "page-find-wallet-profile-filters": "Lọc theo hồ sơ",
- "page-find-wallet-feature-filters": "Lọc theo tính năng",
"page-find-wallet-footnote-1": "Ví được liệt kê trên trang này chỉ là giả dụ và chỉ được cung cấp cho mục đích thông tin.",
"page-find-wallet-footnote-2": "Những tiêu chí trên đã được cung cấp bởi chính các chủ của dự án ví.",
"page-find-wallet-footnote-3": "Chúng tôi thêm sản phẩm vào trang này dựa trên các tiêu chí trong chính sách niêm yết của chúng tôi. Nếu bạn muốn chúng tôi thống kê thêm, hãy báo cáo trong GitHub.",
"page-find-wallet-mobile": "Di động",
- "page-find-wallet-mobile-desc": "Ví có trên di động",
"page-find-wallet-desktop": "Máy tính để bàn",
- "page-find-wallet-desktop-desc": "Ví mà có trên ứng dụng cho máy tính để bàn",
"page-find-wallet-browser": "Trình duyệt",
- "page-find-wallet-browser-desc": "Ví với các tiện ích trình duyệt",
- "page-find-wallet-device": "Thiết bị",
- "page-find-choose-to-compare": "Chọn để so sánh",
- "page-find-wallet-choose-features": "Chọn một tính năng"
+ "page-find-wallet-device": "Thiết bị"
}
diff --git a/src/intl/zh-tw/common.json b/src/intl/zh-tw/common.json
index feaa654e801..9a675fbb6eb 100644
--- a/src/intl/zh-tw/common.json
+++ b/src/intl/zh-tw/common.json
@@ -15,6 +15,9 @@
"aria-toggle-menu-button": "切換選單按鈕",
"beacon-chain": "信標鏈",
"bridges": "區塊鏈橋",
+ "bug-bounty": "漏洞懸賞",
+ "build": "建造",
+ "build-menu": "建造選單",
"clear": "清除",
"close": "關閉",
"community": "社群",
@@ -31,14 +34,15 @@
"copied": "已複製",
"copy": "複製",
"danksharding": "Danksharding",
- "dao-page": "去中心化自治組織 (DAO)",
+ "dao-page": "DAO - 去中心化自治組織",
"dark-mode": "深色模式",
"data-provided-by": "資料來源:",
- "decentralized-applications-dapps": "去中心化應用程式 (dapp)",
+ "decentralized-applications-dapps": "Dapp - 去中心化應用程式",
"decentralized-identity": "去中心化身分",
"decentralized-social-networks": "去中心化社群網路",
- "decentralized-science": "去中心化科研 (DeSci)",
- "defi-page": "去中心化金融 (DeFi)",
+ "decentralized-science": "DeSci - 去中心化科研",
+ "description": "導覽項目說明",
+ "defi-page": "DeFi - 去中心化金融",
"design": "設計",
"design-principles": "設計理念",
"devcon": "Devcon",
@@ -84,7 +88,7 @@
"ethereum-glossary": "以太坊詞彙表",
"ethereum-governance": "以太坊管理體系",
"ethereum-logo": "以太坊標誌",
- "ethereum-roadmap": "以太坊路線圖",
+ "ethereum-roadmap": "以太坊開發藍圖",
"ethereum-protocol": "以太坊協議",
"ethereum-security": "以太坊安全及詐騙預防",
"ethereum-support": "以太坊支援",
@@ -128,7 +132,7 @@
"last-edit": "最後編輯",
"layer-2": "第二層",
"learn": "學習",
- "learn-by-coding": "透過編碼學習",
+ "learn-by-coding": "透過編寫程式學習",
"learn-hub": "學習中心",
"learn-menu": "學習選單",
"learn-more": "了解更多",
@@ -143,10 +147,115 @@
"mainnet-ethereum": "以太坊主網路",
"merge": "合併",
"more": "更多",
- "nav-developers": "開發者",
+ "nav-about-description": "適用以太坊社群的公性開放原始碼專案",
+ "nav-advanced-description": "深入瞭解更複雜的主題",
+ "nav-advanced-label": "進階",
+ "nav-basics-description": "瞭解以太坊的基本知識",
+ "nav-basics-label": "基本資料",
+ "nav-bridges-description": "Web3 已經演變成 L1 區塊鏈和 L2 擴容解決方案的生態系統",
+ "nav-builders-home-description": "由建置者製作且供建置者使用的建置者以太坊手冊",
+ "nav-builders-home-label": "建置者的首頁",
+ "nav-contribute-description": "如果你想要提供協助,這個手冊可引導你",
+ "nav-contribute-label": "對 ethereum.org 網站作出貢獻",
+ "nav-dao-description": "由成員所擁有且無集中式控制的社群",
+ "nav-dapps-description": "使用以太坊探索豐富的應用程式生態系統",
+ "nav-defi-description": "傳統金融市場的全球開放性替代方案",
+ "nav-desci-description": "當前科學系統的全球開放性替代方案。",
+ "nav-desoc-description": "基於區塊鏈的平台,用於社交互動、内容建立。",
"nav-developers-docs": "開發者文件",
+ "nav-developers": "開發者",
+ "nav-did-description": "發佈並擁有你獨特的去中心化身分識別",
+ "nav-docs-description": "幫助你瞭解並使用以太坊來建造的文件",
+ "nav-docs-design-description": "獨特的 Web3 設計挑戰、最佳案例和使用研究洞見的說明",
+ "nav-docs-design-label": "UX/UI 設計基礎",
+ "nav-docs-foundation-description": "在以太坊上開發的核心基礎",
+ "nav-docs-foundation-label": "基礎主題",
+ "nav-docs-overview-description": "你的開發者文件首頁",
+ "nav-docs-stack-description": "瞭解所有關於以太坊技術堆棧的細節",
+ "nav-docs-stack-label": "以太坊技術堆棧",
+ "nav-eip-description": "規範新功能或流程的標準",
+ "nav-eip-label": "EIP - 以太坊改進提案",
+ "nav-emerging-description": "瞭解其他比較新的以太坊使用案例",
+ "nav-emerging-label": "新興使用案例",
+ "nav-enterprise-description": "以太坊的商業應用程式",
+ "nav-ethereum-org-description": "本網站由社群共同推動—請加入我們,一同作出貢獻",
+ "nav-ethereum-wallets-description": "與你的以太坊帳戶互動的應用程式",
+ "nav-events-description": "擁有去集中化及自由度,任何人皆可參與",
+ "nav-events-irl-description": "每月皆有可以親自參與及線上參與的主要以太坊事件",
+ "nav-events-label": "社群與事件",
+ "nav-events-online-description": "數以萬計的以太坊愛好者維護這些線上社群",
+ "nav-find-wallet-description": "錢包允許你使用加密貨幣",
+ "nav-find-wallet-label": "選擇你的錢包",
+ "nav-gas-fees-description": "ETH 交易費用的計算方式",
+ "nav-gas-fees-label": "燃料費",
+ "nav-get-eth-description": "你需要 Ether (ETH) 來使用以太坊應用程式",
+ "nav-get-started-description": "使用以太坊的前幾個步驟",
+ "nav-governance-description": "本流程會牽涉以太坊協定的升級",
+ "nav-governance-label": "治理",
+ "nav-grants-description": "我們的社群所提供的精選清單,其中列出提供撥款募資計畫的專案",
+ "nav-guide-create-account-description": "任何人都可以在任何時間,以錢包應用程式免費地建立以太坊帳戶",
+ "nav-guide-create-account-label": "如何建立一個以太坊帳戶",
+ "nav-guide-revoke-access-description": "在以太坊生態系統中,安全地與智能合約和應用程式互動",
+ "nav-guide-revoke-access-label": "如何撤銷智能合約的使用",
+ "nav-guide-use-wallet-description": "瞭解如何操作錢包所有的基本功能",
+ "nav-guide-use-wallet-label": "如何使用錢包",
+ "nav-guides-description": "實用的逐步指南可協助你開始使用",
+ "nav-guides-label": "使用指南",
+ "nav-history-description": "所有主要分叉與升級的時間表",
+ "nav-history-label": "以太坊的技術歷史沿革",
+ "nav-layer-2-description": "適用以太坊的更便宜且更快速的交易",
+ "nav-learn-by-coding-description": "協助你用以太坊進行實驗的工具",
+ "nav-local-env-description": "選擇並設定你的以太坊開發堆棧",
+ "nav-mainnet-description": "可以將企業區塊鏈應用程式建造於公開的以太坊主網",
+ "nav-nft-description": "一種用以太坊資產來呈現任何獨特事物的方式",
+ "nav-open-research-description": "以太坊的主要優勢之一是其活躍的研究社群",
+ "nav-open-research-label": "開放研究",
+ "nav-overview-description": "以太坊教育的一切",
+ "nav-overview-label": "概觀",
+ "nav-participate-overview-description": "參與方式概覽",
"nav-primary": "主要導覽",
- "nft-page": "非同質化代幣 (NFT)",
+ "nav-private-description": "私有企業用以太坊開發者資源",
+ "nav-quizzes-description": "瞭解你對以太坊和加密貨幣的理解有多少",
+ "nav-quizzes-label": "測試你的知識",
+ "nav-refi-description": "建立在再生原則上的替代性經濟體系",
+ "nav-research-description": "用來改進以太坊的流程",
+ "nav-research-label": "研究與開發",
+ "nav-roadmap-description": "以太坊實現更高可擴容性、安全性和永續性的路徑",
+ "nav-roadmap-future-description": "強化以太坊成為一個穩健且去集中式的網路",
+ "nav-roadmap-future-label": "防過時",
+ "nav-roadmap-label": "開發藍圖",
+ "nav-roadmap-scaling-description": "更新網路以進一步降低交易成本並加快速度",
+ "nav-roadmap-scaling-label": "更便宜的交易",
+ "nav-roadmap-security-description": "確保以太坊對未來所有類型的攻擊都能隨時靈活應變",
+ "nav-roadmap-security-label": "提高安全性",
+ "nav-roadmap-ux-description": "以太坊的使用必須簡化",
+ "nav-roadmap-ux-label": "更好的使用者體驗",
+ "nav-run-a-node-description": "掌握完全主權,同時協助網路安全",
+ "nav-security-description": "瞭解使用加密貨幣的最佳案例",
+ "nav-smart-contracts-description": "以太坊生態系統的基礎建立區塊",
+ "nav-stablecoins-description": "穩定幣是專為保持在固定價值的以太坊代幣",
+ "nav-stake-description": "保護以太坊的同時賺取酬勞",
+ "nav-stake-label": "質押",
+ "nav-staking-home-description": "質押的不同選項概覽",
+ "nav-staking-home-label": "質押首頁",
+ "nav-staking-pool-description": "與其他人一起質押任意數量的以太幣並獲得酬勞",
+ "nav-staking-pool-label": "聯合質押",
+ "nav-staking-saas-description": "第三方節點營運商負責處理你的驗證者用戶端的運作",
+ "nav-staking-saas-label": "以服務質押",
+ "nav-staking-solo-description": "執行家用硬體,親自貢獻於以太坊網路的安全和去中心化",
+ "nav-staking-solo-label": "單獨質押",
+ "nav-start-building-description": "新手的實用資訊",
+ "nav-translation-program-description": "將 ethereum.org 網站翻譯成所有語言的協同合作",
+ "nav-tutorials-description": "社群使用教學的精選清單",
+ "nav-use-cases-description": "發現使用以太坊的不同想法",
+ "nav-use-cases-label": "使用案例",
+ "nav-what-is-ether-description": "以太坊應用程式貨幣",
+ "nav-what-is-ethereum-description": "瞭解以太坊的特別之處",
+ "nav-what-is-web3-label": "什麼是 Web3?",
+ "nav-what-is-web3-description": "支配遊戲規則的集中式壟斷替代方案",
+ "nav-whitepaper-description": "Vitalik Buterin 於 2014 年撰寫的以太坊白皮書原版",
+ "nav-zkp-description": "能證明陳述有效、卻又無需揭示陳述本身的方式",
+ "nft-page": "NFT - 非同質化代幣",
"nfts": "非同質化代幣",
"no": "否",
"on-this-page": "在本頁面",
@@ -154,6 +263,8 @@
"page-developers-aria-label": "開發者選單",
"page-index-meta-title": "首頁",
"page-last-updated": "頁面上次更新",
+ "participate": "參與方式",
+ "participate-menu": "參與選單",
"pbs": "提交者-建置者分離",
"pools": "聯合質押",
"privacy-policy": "隱私條款",
@@ -164,13 +275,15 @@
"refresh": "請重新整理此頁面。",
"return-home": "返回首頁",
"roadmap": "以太坊開發藍圖",
+ "research": "研究",
+ "research-menu": "研究選單",
"resources": "翻譯資源",
- "regenerative-finance": "再生金融 (ReFi)",
- "run-a-node": "執行節點",
- "rollup-component-website": "網站",
+ "regenerative-finance": "ReFi - 再生金融",
+ "run-a-node": "運行節點",
+ "rollup-component-website": "官網",
"rollup-component-developer-docs": "開發者文件",
"rollup-component-technology-and-risk-summary": "技術和風險概要",
- "scaling": "擴張",
+ "scaling": "縮放",
"saas": "質押即服務",
"search": "搜尋",
"search-ethereum-org": "搜尋 ethereum.org",
@@ -187,7 +300,6 @@
"show-all": "顯示全部",
"show-less": "收起",
"site-description": "以太坊是一個全球化、去中心化平台,提供營利商機和新型應用程式。你可以在以太坊撰寫程式碼控制資金,並建立可從全球各地存取的應用程式。",
- "site-title": "ethereum.org",
"skip-to-main-content": "跳至主要内容",
"smart-contracts": "智慧型合約",
"stablecoins": "穩定幣",
@@ -211,9 +323,11 @@
"try-using-search": "請嘗試使用搜尋功能來尋找你要的資訊,或",
"tutorials": "教學",
"up": "上移",
+ "use": "使用",
"use-ethereum": "使用以太坊",
"use-ethereum-menu": "使用以太坊選單",
- "user-experience": "用戶體驗",
+ "use-menu": "使用選單",
+ "user-experience": "使用者體驗",
"verkle-trees": "沃克爾樹",
"wallets": "錢包",
"we-couldnt-find-that-page": "找不到該頁面",
diff --git a/src/intl/zh-tw/page-languages.json b/src/intl/zh-tw/page-languages.json
index d0f9cc61808..d43af4377e0 100644
--- a/src/intl/zh-tw/page-languages.json
+++ b/src/intl/zh-tw/page-languages.json
@@ -11,7 +11,12 @@
"page-languages-want-more-header": "想查看 ethereum.org 其他語言版本嗎?",
"page-languages-want-more-link": "翻譯計畫",
"page-languages-want-more-paragraph": "ethereum.org 的譯者不斷地翻譯盡可能多種的語言頁面。想要查看他們目前的工作計畫或註冊成為他們的一員,請閱讀我們的",
- "page-languages-filter-placeholder": "篩選條件",
+ "page-languages-filter-label": "篩選條件清單",
+ "page-languages-filter-placeholder": "輸入以進行篩選",
+ "page-languages-browser-default": "預設瀏覽器",
+ "page-languages-translated": "已翻譯",
+ "page-languages-words": "字數",
+ "page-languages-recruit-community": "幫助我們翻譯 ethereum.org 網站。",
"langauge-am": "阿姆哈拉文",
"language-ar": "阿拉伯文",
"language-az": "亞塞拜然文",
diff --git a/src/intl/zh-tw/page-wallets-find-wallet.json b/src/intl/zh-tw/page-wallets-find-wallet.json
index 7053fc26db7..7ffbbcf1c4a 100644
--- a/src/intl/zh-tw/page-wallets-find-wallet.json
+++ b/src/intl/zh-tw/page-wallets-find-wallet.json
@@ -7,7 +7,6 @@
"page-find-wallet-meta-title": "尋找以太坊錢包",
"page-find-wallet-title": "尋找錢包",
"page-find-wallet-try-removing": "嘗試移除一兩項功能",
- "page-find-wallet-choose-to-compare": "選擇比較對象",
"page-stake-eth": "質押以太幣",
"page-find-wallet-open-source": "開放原始碼",
"page-find-wallet-open-source-desc": "讓任何人都可以稽核應用程式的完整性和安全性的開源軟體",
@@ -16,8 +15,6 @@
"page-find-wallet-non-custodial-desc": "不控制使用者私密金鑰的錢包",
"page-find-wallet-hardware-wallet-support": "支援硬體錢包",
"page-find-wallet-hardware-wallet-support-desc": "可連結至硬體錢包以增強安全性的錢包",
- "page-find-wallet-walletconnect": "WalletConnect",
- "page-find-wallet-walletconnect-desc": "支援 WalletConnect 以連結至去中心化應用程式的錢包",
"page-find-wallet-rpc-importing": "遠端程序呼叫協定匯入",
"page-find-wallet-rpc-importing-desc": "支援自訂遠端程序呼叫協定端點,以連結至不同節點或網路的錢包",
"page-find-wallet-nft-support": "支援非同質化代幣",
@@ -36,8 +33,6 @@
"page-find-wallet-ens-support-desc": "支援以太坊名稱服務 (ENS) 的錢包",
"page-find-wallet-token-importing": "代幣匯入",
"page-find-wallet-token-importing-desc": "匯入任何 ERC-20 代幣以便於錢包內使用",
- "page-find-wallet-fee-optimization": "費用最佳化",
- "page-find-wallet-fee-optimization-desc": "支持第二類交易使燃料費用最佳化並退還未使用之燃料費用",
"page-find-wallet-buy-crypto": "購買加密貨幣",
"page-find-wallet-buy-crypto-desc": "在錢包中直接使用法定貨幣購買加密貨幣\n*備注:購買加密貨幣可能因地區而異",
"page-find-wallet-sell-for-fiat": "出售換取法定貨幣",
@@ -46,7 +41,6 @@
"page-find-wallet-multisig-desc": "需要多重簽名來授權交易的錢包",
"page-find-wallet-social-recovery": "社交恢復",
"page-find-wallet-social-recovery-desc": "允許監護人變更智慧型合約錢包簽署金鑰的錢包",
- "page-find-wallet-token-support": "支援代幣",
"page-find-wallet-features": "功能",
"page-find-wallet-security": "安全性",
"page-find-wallet-smart-contract": "智慧型合約",
@@ -63,7 +57,6 @@
"page-find-wallet-chromium": "Chromium",
"page-find-wallet-firefox": "Firefox",
"page-find-wallet-hardware": "硬體",
- "page-find-wallet-hardware-desc": "硬體錢包",
"page-find-wallet-new-to-crypto-title": "加密貨幣新手",
"page-find-wallet-new-to-crypto-desc": "你是一名新手,在尋找你的第一個錢包",
"page-find-wallet-nfts-title": "NFTs (分同質化代幣)",
@@ -74,22 +67,14 @@
"page-find-wallet-finance-desc": "你在使用去中心化金融,想要一種可以連結至去中心化金融應用程式的錢包",
"page-find-wallet-developer-title": "開發者",
"page-find-wallet-developer-desc": "你是一位開發者,需要一種可幫助你開發與測試去中心化應用程式的錢包",
- "page-find-wallet-persona-desc": "選擇與你的使用者類型相吻合的設定檔並篩選錢包清單",
"page-find-wallet-filters": "篩選條件",
"page-find-wallet-active": "使用中",
- "page-find-wallet-profile-filters": "設定檔篩選條件",
- "page-find-wallet-feature-filters": "功能篩選條件",
"page-find-wallet-footnote-1": "本頁面所列錢包並非官方認可,僅供用於參考用途。",
"page-find-wallet-footnote-2": "錢包說明由錢包專案本身提供。",
"page-find-wallet-footnote-3": "我們根據上市政策中的標準將產品新增到本頁面。如果你希望我們新增錢包,請在 GitHub 中提出問題。",
"page-find-wallet-mobile": "行動裝置",
- "page-find-wallet-mobile-desc": "有行動裝置應用程式的錢包",
"page-find-wallet-desktop": "桌上型電腦",
- "page-find-wallet-desktop-desc": "有桌面應用程式的錢包",
"page-find-wallet-browser": "瀏覽器",
- "page-find-wallet-browser-desc": "有瀏覽器擴充功能的錢包",
"page-find-wallet-device": "裝置",
- "page-find-choose-to-compare": "選擇比較對象",
- "page-find-wallet-choose-features": "選擇功能",
"page-find-wallet-reset-filters": "重置篩選器"
}
diff --git a/src/intl/zh/common.json b/src/intl/zh/common.json
index 530670b16e7..589a6f67750 100644
--- a/src/intl/zh/common.json
+++ b/src/intl/zh/common.json
@@ -11,10 +11,13 @@
"adding-wallets": "添加钱包",
"account-abstraction": "帐户抽象",
"acknowledgements": "致谢",
- "aria-toggle-search-button": "切换搜索按钮",
- "aria-toggle-menu-button": "切换菜单按钮",
+ "aria-toggle-search-button": "切换搜索键",
+ "aria-toggle-menu-button": "切换菜单键",
"beacon-chain": "信标链",
"bridges": "区块链桥",
+ "bug-bounty": "漏洞悬赏",
+ "build": "构建",
+ "build-menu": "“构建”菜单",
"clear": "明确",
"close": "关闭",
"community": "社区",
@@ -26,25 +29,26 @@
"content-standardization": "内容标准化",
"contributing": "参与贡献",
"contributors": "贡献者",
- "contributors-thanks": "所有对本页有贡献的人- 谢谢!",
- "cookie-policy": "Cookie 政策",
+ "contributors-thanks": "感谢对本页做出贡献的每一个人!",
+ "cookie-policy": "缓存政策",
"copied": "已复制",
"copy": "复制",
"danksharding": "Danksharding",
- "dao-page": "去中心化自治组织 (DAO)",
+ "dao-page": "DAO - 去中心化自治组织",
"dark-mode": "深色模式",
"data-provided-by": "数据来源:",
- "decentralized-applications-dapps": "去中心化应用程序 (dapps)",
+ "decentralized-applications-dapps": "Dapps - 去中心化应用",
"decentralized-identity": "去中心化身份",
"decentralized-social-networks": "去中心化社交网络",
- "decentralized-science": "去中心化科学 (DeSci)",
- "defi-page": "去中心化金融 (DeFi)",
+ "decentralized-science": "DeSci - 去中心化科学",
+ "description": "导航项说明",
+ "defi-page": "DeFi - 去中心化金融",
"design": "设计",
"design-principles": "设计原则",
"devcon": "Devcon",
"developers": "开发者",
"developers-home": "开发者主页",
- "docs": "相关文档",
+ "docs": "文档",
"docsearch-to-select": "选择",
"docsearch-to-navigate": "导航",
"docsearch-to-close": "关闭",
@@ -65,8 +69,8 @@
"down": "向下",
"ecosystem": "生态系统",
"edit-page": "编辑页面",
- "ef-blog": "以太坊基金会博客",
- "eips": "以太坊改进提案",
+ "ef-blog": "以太坊基金会的博客",
+ "eips": "以太坊改进提案 (Eip)",
"energy-consumption": "以太坊能源消耗",
"enterprise": "企业级应用",
"enterprise-menu": "企业菜单",
@@ -125,7 +129,7 @@
"language-support": "语言支持",
"languages": "语言",
"last-24-hrs": "最近24小时",
- "last-edit": "上次编辑",
+ "last-edit": "上次修改时间",
"layer-2": "二层网络",
"learn": "学习",
"learn-by-coding": "通过编码来学习",
@@ -134,7 +138,7 @@
"learn-more": "了解更多",
"less": "更少",
"light-mode": "明亮模式",
- "listing-policy-disclaimer": "本页所列产品并非官方认可,仅供参考。如果你想添加产品或对策略提供反馈,请在GitHub中提出问题。",
+ "listing-policy-disclaimer": "本页所列产品并非官方认可,仅供参考。如果您想添加产品或对策略提供反馈,请在GitHub中提出问题。",
"loading": "加载中...",
"loading-error": "加载错误。",
"loading-error-refresh": "错误,请刷新。",
@@ -143,10 +147,115 @@
"mainnet-ethereum": "主网以太坊",
"merge": "合并",
"more": "更多",
- "nav-developers": "开发者",
+ "nav-about-description": "以太坊社区的公开、开源项目",
+ "nav-advanced-description": "了解更高深的主题",
+ "nav-advanced-label": "高级",
+ "nav-basics-description": "了解以太坊基础知识",
+ "nav-basics-label": "基础知识",
+ "nav-bridges-description": "Web3 已发展成主要由一层网络区块链和二层网络扩容解决方案组成的生态系统",
+ "nav-builders-home-description": "以太坊构建者手册 — 由构建者编写,为构建者所用",
+ "nav-builders-home-label": "构建者首页",
+ "nav-contribute-description": "如需帮助,这里为您提供指南",
+ "nav-contribute-label": "为 ethereum.org 做贡献",
+ "nav-dao-description": "成员共同拥有的社区,不存在集中管理机构",
+ "nav-dapps-description": "借助以太坊,探索丰富多姿的应用程序生态系统",
+ "nav-defi-description": "传统金融市场的全球化、开放性替代方案",
+ "nav-desci-description": "当前科学体系的全球化、开放性替代方案",
+ "nav-desoc-description": "基于区块链的社交互动与内容创作平台",
"nav-developers-docs": "开发者文档",
+ "nav-developers": "开发者",
+ "nav-did-description": "发布并掌控自己独有的去中心化身份标识",
+ "nav-docs-description": "帮助你了解以太坊并在其上进行构建的文档",
+ "nav-docs-design-description": "别具一格的 Web3 设计挑战相关说明、最佳做法及用户研究洞察",
+ "nav-docs-design-label": "用户体验/用户界面设计基础",
+ "nav-docs-foundation-description": "以太坊开发核心基础知识",
+ "nav-docs-foundation-label": "基础主题",
+ "nav-docs-overview-description": "开发者文档首页",
+ "nav-docs-stack-description": "了解以太坊堆栈全部细节",
+ "nav-docs-stack-label": "以太坊堆栈",
+ "nav-eip-description": "详细规定新功能或新流程的标准",
+ "nav-eip-label": "EIP - 以太坊改进提案",
+ "nav-emerging-description": "学习其他以太坊新用例",
+ "nav-emerging-label": "新出现的用例",
+ "nav-enterprise-description": "以太坊的商业应用程序",
+ "nav-ethereum-org-description": "本网站由社区驱动 — 加入我们,做出贡献",
+ "nav-ethereum-wallets-description": "与以太坊帐户进行互动的应用程序",
+ "nav-events-description": "去中心化并且人人都可以自由参与",
+ "nav-events-irl-description": "每个月,以太坊都举办重大现场活动和线上活动",
+ "nav-events-label": "社区与活动",
+ "nav-events-online-description": "成千上万的以太坊爱好者是这些在线社区的缔造者",
+ "nav-find-wallet-description": "钱包让你得以使用加密货币",
+ "nav-find-wallet-label": "选择钱包",
+ "nav-gas-fees-description": "以太币交易费如何计算",
+ "nav-gas-fees-label": "燃料费",
+ "nav-get-eth-description": "要使用以太坊应用程序,需要使用以太币 (ETH)",
+ "nav-get-started-description": "使用以太坊的第一步",
+ "nav-governance-description": "该流程涉及升级以太坊协议",
+ "nav-governance-label": "治理",
+ "nav-grants-description": "社区提供的精选项目清单,这些项目提供了资助计划",
+ "nav-guide-create-account-description": "任何人都可以使用钱包应用程序,随时免费创建以太坊帐户",
+ "nav-guide-create-account-label": "如何创建以太坊帐户",
+ "nav-guide-revoke-access-description": "在以太坊生态系统中,与智能合约及应用程序互动时保障安全",
+ "nav-guide-revoke-access-label": "如何撤销智能合约的访问权限",
+ "nav-guide-use-wallet-description": "了解如何执行钱包的所有基础功能",
+ "nav-guide-use-wallet-label": "如何使用钱包",
+ "nav-guides-description": "可帮助初学者入门的实用分步指南",
+ "nav-guides-label": "操作方法指南",
+ "nav-history-description": "所有重大分叉和更新的时间线",
+ "nav-history-label": "以太坊技术史",
+ "nav-layer-2-description": "以太坊上的交易更经济、更快捷",
+ "nav-learn-by-coding-description": "可帮助用户尝试以太坊的工具",
+ "nav-local-env-description": "选择并设置以太坊开发栈",
+ "nav-mainnet-description": "企业级区块链应用程序可以在公共以太坊主网上构建",
+ "nav-nft-description": "一种用以太坊资产表示任何独特事物的方法",
+ "nav-open-research-description": "以太坊的一项主要优势就是它有一个活跃的研究社区",
+ "nav-open-research-label": "开放研究",
+ "nav-overview-description": "以太坊教育大全",
+ "nav-overview-label": "概述",
+ "nav-participate-overview-description": "参与方法概述",
"nav-primary": "主导航",
- "nft-page": "非同质化代币 (NFT)",
+ "nav-private-description": "企业级私有以太坊开发者资源",
+ "nav-quizzes-description": "了解你对以太坊和加密货币的了解程度",
+ "nav-quizzes-label": "检验掌握的知识",
+ "nav-refi-description": "一种基于再生原理的替代经济体系",
+ "nav-research-description": "以太坊改进流程",
+ "nav-research-label": "研究与开发",
+ "nav-roadmap-description": "提高以太坊可扩展性、安全性和可持续性的途径",
+ "nav-roadmap-future-description": "强化以太坊,使之成为一个稳固、去中心化的网络",
+ "nav-roadmap-future-label": "面向未来",
+ "nav-roadmap-label": "路线图",
+ "nav-roadmap-scaling-description": "网络更新,可进一步降低交易费并提升交易速度",
+ "nav-roadmap-scaling-label": "交易费用更低",
+ "nav-roadmap-security-description": "确保以太坊具备复原能力,能够抵御未来的各类攻击",
+ "nav-roadmap-security-label": "安全性增强",
+ "nav-roadmap-ux-description": "以太坊的用法需要简化",
+ "nav-roadmap-ux-label": "改善用户体验",
+ "nav-run-a-node-description": "实现完全自主权,同时帮助保护网络安全",
+ "nav-security-description": "了解加密货币使用方面的最佳做法",
+ "nav-smart-contracts-description": "以太坊生态系统之基石",
+ "nav-stablecoins-description": "稳定币是价值固定不变的以太坊代币",
+ "nav-stake-description": "保护以太坊安全同时赚取奖励",
+ "nav-stake-label": "质押",
+ "nav-staking-home-description": "各种质押方案概述",
+ "nav-staking-home-label": "质押首页",
+ "nav-staking-pool-description": "通过联合其他人质押任意数量的以太币并获得奖励",
+ "nav-staking-pool-label": "联合质押",
+ "nav-staking-saas-description": "第三方节点运营商负责你的验证者客户端的操作",
+ "nav-staking-saas-label": "通过服务质押",
+ "nav-staking-solo-description": "运行家用硬件并自行加入以太坊网络的安全和去中心化",
+ "nav-staking-solo-label": "单独质押",
+ "nav-start-building-description": "新手实用信息",
+ "nav-translation-program-description": "一项将以太坊翻译成所有语言的协作计划",
+ "nav-tutorials-description": "社区教程精选清单",
+ "nav-use-cases-description": "发现和以太坊使用方法相关的各种理念",
+ "nav-use-cases-label": "用例",
+ "nav-what-is-ether-description": "以太坊应用程序中的货币",
+ "nav-what-is-ethereum-description": "理解以太坊的独特之处",
+ "nav-what-is-web3-label": "什么是 Web3?",
+ "nav-what-is-web3-description": "一种制定规则的集中垄断机构的替代机制",
+ "nav-whitepaper-description": "最初的以太坊白皮书由 Vitalik Buterin 在 2014 年撰写",
+ "nav-zkp-description": "在不披露声明本身的情况下,证明声明有效性的一种方法",
+ "nft-page": "NFT - 非同质化代币",
"nfts": "非同质化代币",
"no": "否",
"on-this-page": "在本页面",
@@ -154,16 +263,20 @@
"page-developers-aria-label": "开发者菜单",
"page-index-meta-title": "首页",
"page-last-updated": "页面最后更新",
+ "participate": "参与",
+ "participate-menu": "“参与”菜单",
"pbs": "提议者-构建者分离",
"pools": "联合质押",
"privacy-policy": "隐私政策",
- "private-ethereum": "私人以太坊",
+ "private-ethereum": "私密以太坊",
"product-disclaimer": "列举产品和服务是为了方便以太坊社区。但列举任何产品或服务并不表示 ethereum.org 网站团队或以太坊基金会认可它们。",
"quizzes-title": "测试中心",
"quizzes": "测试",
"refresh": "请刷新页面。",
"return-home": "返回首页",
"roadmap": "以太坊路线图",
+ "research": "研究",
+ "research-menu": "“研究”菜单",
"resources": "翻译资源",
"regenerative-finance": "再生金融(ReFi)",
"run-a-node": "运行节点",
@@ -211,8 +324,10 @@
"try-using-search": "请尝试使用搜索来查找相关内容,或者",
"tutorials": "教程",
"up": "向上",
+ "use": "用法",
"use-ethereum": "使用以太坊",
"use-ethereum-menu": "使用以太坊菜单",
+ "use-menu": "“用法”菜单",
"user-experience": "用户体验",
"verkle-trees": "沃克尔树",
"wallets": "钱包",
diff --git a/src/intl/zh/page-wallets-find-wallet.json b/src/intl/zh/page-wallets-find-wallet.json
index 3b19f5acbe6..a745aabc5b0 100644
--- a/src/intl/zh/page-wallets-find-wallet.json
+++ b/src/intl/zh/page-wallets-find-wallet.json
@@ -7,7 +7,6 @@
"page-find-wallet-meta-title": "找到一个以太坊钱包",
"page-find-wallet-title": "获取一个钱包",
"page-find-wallet-try-removing": "尝试删除一两个特性",
- "page-find-wallet-choose-to-compare": "选择要比较的钱包",
"page-stake-eth": "质押ETH",
"page-find-wallet-open-source": "开源",
"page-find-wallet-open-source-desc": "开源软件让任何人都可以审计应用程序的完整性和安全性",
@@ -16,8 +15,6 @@
"page-find-wallet-non-custodial-desc": "不控制私钥的钱包",
"page-find-wallet-hardware-wallet-support": "硬件钱包支持",
"page-find-wallet-hardware-wallet-support-desc": "可以连接到硬件钱包以提高安全性的钱包",
- "page-find-wallet-walletconnect": "WalletConnect",
- "page-find-wallet-walletconnect-desc": "支持使用 WalletConnect 连接到去中心化应用程序的钱包",
"page-find-wallet-rpc-importing": "远程过程调用导入",
"page-find-wallet-rpc-importing-desc": "支持通过自定义远程过程调用端点连接到不同节点或网络的钱包",
"page-find-wallet-nft-support": "支持非同质化代币",
@@ -36,8 +33,6 @@
"page-find-wallet-ens-support-desc": "支持以太坊域名服务 (ENS) 的钱包",
"page-find-wallet-token-importing": "导入代币",
"page-find-wallet-token-importing-desc": "导入任何 ERC-20 代币,以便在钱包中使用",
- "page-find-wallet-fee-optimization": "费用优化",
- "page-find-wallet-fee-optimization-desc": "支持第 2 类交易,以优化燃料费和并退还未使用燃料的费用",
"page-find-wallet-buy-crypto": "购买加密货币",
"page-find-wallet-buy-crypto-desc": "直接在钱包中使用法币购买加密货币\n *注意:购买加密货币可能因地区而异",
"page-find-wallet-sell-for-fiat": "出售换取法币",
@@ -46,7 +41,6 @@
"page-find-wallet-multisig-desc": "需要多重签名来授权交易的钱包",
"page-find-wallet-social-recovery": "社交恢复",
"page-find-wallet-social-recovery-desc": "允许监护人更改智能合约钱包签名密钥的钱包",
- "page-find-wallet-token-support": "支持代币",
"page-find-wallet-features": "功能",
"page-find-wallet-security": "安全性",
"page-find-wallet-smart-contract": "智能合约",
@@ -63,7 +57,6 @@
"page-find-wallet-chromium": "Chromium",
"page-find-wallet-firefox": "Firefox",
"page-find-wallet-hardware": "硬件",
- "page-find-wallet-hardware-desc": "硬件钱包",
"page-find-wallet-new-to-crypto-title": "加密货币新手?",
"page-find-wallet-new-to-crypto-desc": "你是一位初次用户,在寻找自己的第一个钱包",
"page-find-wallet-nfts-title": "非同质化代币",
@@ -74,22 +67,14 @@
"page-find-wallet-finance-desc": "你是一位使用去中心化金融的用户,想要使用可让你连接到去中心化金融应用程序的钱包",
"page-find-wallet-developer-title": "开发者",
"page-find-wallet-developer-desc": "你是一位开发者,需要一种钱包帮助你开发和测试去中心化应用程序",
- "page-find-wallet-persona-desc": "选择与你的用户类型相符的配置文件并筛选钱包列表",
"page-find-wallet-filters": "筛选",
"page-find-wallet-active": "活跃",
- "page-find-wallet-profile-filters": "配置文件筛选",
- "page-find-wallet-feature-filters": "功能筛选",
"page-find-wallet-footnote-1": "本页所列钱包并非官方认可,仅供参考。",
"page-find-wallet-footnote-2": "钱包描述由钱包项目自行提供。",
"page-find-wallet-footnote-3": "我们根据我们上架政策中的标准将产品添加到本页面。如果你希望我们添加钱包,请在 GitHub 中提出问题。",
"page-find-wallet-mobile": "移动版",
- "page-find-wallet-mobile-desc": "带有移动应用程序的钱包",
"page-find-wallet-desktop": "桌面",
- "page-find-wallet-desktop-desc": "带有桌面应用程序的钱包",
"page-find-wallet-browser": "浏览器版",
- "page-find-wallet-browser-desc": "带有浏览器扩展程序的钱包",
"page-find-wallet-device": "设备",
- "page-find-choose-to-compare": "选择要比较的钱包",
- "page-find-wallet-choose-features": "选择功能",
"page-find-wallet-reset-filters": "重置筛选器"
}
diff --git a/src/layouts/Docs.tsx b/src/layouts/Docs.tsx
index 48ac8401be5..98c457222d2 100644
--- a/src/layouts/Docs.tsx
+++ b/src/layouts/Docs.tsx
@@ -139,7 +139,7 @@ const OrderedList = (props: ListProps) => (
)
const ListItem = (props: ListItemProps) => (
-
+
)
// Apply styles for classes within markdown here
@@ -150,7 +150,7 @@ const Content = (props: ChildOnlyProp) => {
,
- ChildOnlyProp {
- frontmatter: DocsFrontmatter
-}
+type DocsLayoutProps = Pick<
+ MdPageContent,
+ | "slug"
+ | "tocItems"
+ | "lastUpdatedDate"
+ | "crowdinContributors"
+ | "contentNotTranslated"
+> &
+ Required> &
+ ChildOnlyProp & {
+ frontmatter: DocsFrontmatter
+ }
export const DocsLayout = ({
children,
@@ -233,7 +233,8 @@ export const DocsLayout = ({
const absoluteEditPath = getEditPath(relativePath)
const gitHubLastEdit = useClientSideGitHubLastEdit(relativePath)
- const intlLastEdit = "data" in gitHubLastEdit ? gitHubLastEdit.data! : ""
+ const intlLastEdit =
+ "data" in gitHubLastEdit ? gitHubLastEdit.data : lastUpdatedDate
const useGitHubContributors =
frontmatter.lang === DEFAULT_LOCALE || crowdinContributors.length === 0
@@ -252,7 +253,7 @@ export const DocsLayout = ({
{useGitHubContributors ? (
) : (
-
+
(
// Static layout components
export const staticComponents = {
- a: Link,
h1: Heading1,
h2: Heading2,
h3: Heading3,
@@ -119,13 +118,15 @@ export const StaticLayout = ({
) : (
<>
-
- :{" "}
- {getLocaleTimestamp(locale as Lang, lastUpdatedDate!)}
-
+ {lastUpdatedDate && (
+
+ :{" "}
+ {getLocaleTimestamp(locale as Lang, lastUpdatedDate)}
+
+ )}
>
)}
diff --git a/src/layouts/Tutorial.tsx b/src/layouts/Tutorial.tsx
index a5f80575128..8c2cfdc92ac 100644
--- a/src/layouts/Tutorial.tsx
+++ b/src/layouts/Tutorial.tsx
@@ -35,9 +35,9 @@ import {
Heading3 as MdHeading3,
Heading4 as MdHeading4,
} from "@/components/MdComponents"
-import MdLink from "@/components/MdLink"
import { mdxTableComponents } from "@/components/Table"
import TableOfContents from "@/components/TableOfContents"
+import TooltipLink from "@/components/TooltipLink"
import TutorialMetadata from "@/components/TutorialMetadata"
import YouTube from "@/components/YouTube"
@@ -144,7 +144,7 @@ const KBD = (props) => {
}
export const tutorialsComponents = {
- a: MdLink,
+ a: TooltipLink,
h1: Heading1,
h2: Heading2,
h3: Heading3,
@@ -165,18 +165,15 @@ export const tutorialsComponents = {
StyledDivider,
YouTube,
}
-interface TutorialLayoutProps
- extends ChildOnlyProp,
- Pick<
- MdPageContent,
- | "tocItems"
- | "lastUpdatedDate"
- | "crowdinContributors"
- | "contentNotTranslated"
- > {
- frontmatter: TutorialFrontmatter
- timeToRead: number
-}
+type TutorialLayoutProps = ChildOnlyProp &
+ Pick<
+ MdPageContent,
+ "tocItems" | "crowdinContributors" | "contentNotTranslated"
+ > &
+ Required> & {
+ frontmatter: TutorialFrontmatter
+ timeToRead: number
+ }
export const TutorialLayout = ({
children,
@@ -194,7 +191,8 @@ export const TutorialLayout = ({
const postMergeBannerTranslationString =
frontmatter.postMergeBannerTranslation as TranslationKey | null
const gitHubLastEdit = useClientSideGitHubLastEdit(relativePath)
- const intlLastEdit = "data" in gitHubLastEdit ? gitHubLastEdit.data! : ""
+ const intlLastEdit =
+ "data" in gitHubLastEdit ? gitHubLastEdit.data! : lastUpdatedDate
const useGitHubContributors =
frontmatter.lang === DEFAULT_LOCALE || crowdinContributors.length === 0
@@ -226,7 +224,7 @@ export const TutorialLayout = ({
{useGitHubContributors ? (
) : (
-
- {t("common:page-last-updated")}:{" "}
- {getLocaleTimestamp(locale as Lang, lastUpdatedDate!)}
-
+ {lastUpdatedDate && (
+
+ {t("common:page-last-updated")}:{" "}
+ {getLocaleTimestamp(locale as Lang, lastUpdatedDate)}
+
+ )}
{frontmatter.image && (
+ | []
+ }>
+}
+
+export interface WalletPersonas {
+ title: string
+ description: string
+ presetFilters: {
+ android: boolean
+ ios: boolean
+ linux: boolean
+ windows: boolean
+ macOS: boolean
+ firefox: boolean
+ chromium: boolean
+ hardware: boolean
+ open_source: boolean
+ non_custodial: boolean
+ hardware_support: boolean
+ rpc_importing: boolean
+ nft_support: boolean
+ connect_to_dapps: boolean
+ staking: boolean
+ swaps: boolean
+ layer_2: boolean
+ gas_fee_customization: boolean
+ ens_support: boolean
+ erc_20_support: boolean
+ buy_crypto: boolean
+ withdraw_crypto: boolean
+ multisig: boolean
+ social_recovery: boolean
+ new_to_crypto?: boolean
+ }
+}
+
+export interface DropdownOption {
+ label: string
+ value: string
+ filterKey: string
+ category: string
+}
+
+export type WalletSupportedLanguageContextType = {
+ supportedLanguage: string
+ setSupportedLanguage: (language: string) => void
+}
+
+// Historical upgrades
+type NetworkUpgradeDetails = {
+ blockNumber?: number
+ epochNumber?: number
+ slotNumber?: number
+} & (
+ | {
+ isPending: true
+ dateTimeAsString?: string
+ ethPriceInUSD?: never
+ waybackLink?: never
+ }
+ | {
+ ethPriceInUSD: number
+ waybackLink: string
+ dateTimeAsString: string
+ isPending?: never
+ }
+)
+
+export type NetworkUpgradeData = Record
+
+// Footer
+export type FooterLink = {
+ to: string
+ text: TranslationKey
+ isPartiallyActive?: boolean
+}
+
+export type FooterLinkSection = {
+ title: TranslationKey
+ links: FooterLink[]
}
diff --git a/src/lib/utils/intl.ts b/src/lib/utils/intl.ts
new file mode 100644
index 00000000000..6ca6c11cd64
--- /dev/null
+++ b/src/lib/utils/intl.ts
@@ -0,0 +1,9 @@
+import { capitalize } from "./string"
+
+export const getLanguageCodeName = (languageCode: string, locale: string) => {
+ return capitalize(
+ new Intl.DisplayNames([locale], {
+ type: "language",
+ }).of(languageCode) as string
+ )
+}
diff --git a/src/lib/utils/md.ts b/src/lib/utils/md.ts
index 2f28356ea84..a257eba4167 100644
--- a/src/lib/utils/md.ts
+++ b/src/lib/utils/md.ts
@@ -68,9 +68,9 @@ const getPostSlugs = (dir: string, files: string[] = []) => {
"/developers/docs/consensus-mechanisms/pos/weak-subjectivity",
"/developers/docs/consensus-mechanisms/pow/",
"/developers/docs/consensus-mechanisms/pow/mining",
- "/developers/docs/consensus-mechanisms/pow/mining-algorithms",
- "/developers/docs/consensus-mechanisms/pow/mining-algorithms/dagger-hashimoto",
- "/developers/docs/consensus-mechanisms/pow/mining-algorithms/ethash",
+ "/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms",
+ "/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/dagger-hashimoto",
+ "/developers/docs/consensus-mechanisms/pow/mining/mining-algorithms/ethash",
"/developers/docs/dapps",
"/developers/docs/data-and-analytics",
"/developers/docs/data-and-analytics/block-explorers",
@@ -197,6 +197,7 @@ const getPostSlugs = (dir: string, files: string[] = []) => {
"/developers/tutorials/waffle-say-hello-world-with-hardhat-and-ethers",
"/developers/tutorials/waffle-test-simple-smart-contract",
"/developers/tutorials/yellow-paper-evm",
+ "/developers/tutorials/creating-a-wagmi-ui-for-your-contract",
// Static (68/68) ✅
"/about",
"/bridges",
@@ -252,6 +253,7 @@ const getPostSlugs = (dir: string, files: string[] = []) => {
"/privacy-policy",
"/roadmap/account-abstraction",
"/roadmap/danksharding",
+ "/roadmap/dencun",
"/roadmap/merge/issuance",
"/roadmap/pbs",
"/roadmap/secret-leader-election",
diff --git a/src/lib/utils/metadata.ts b/src/lib/utils/metadata.ts
new file mode 100644
index 00000000000..9b9463817c7
--- /dev/null
+++ b/src/lib/utils/metadata.ts
@@ -0,0 +1,27 @@
+import { DEFAULT_OG_IMAGE } from "@/lib/constants"
+
+/**
+ * List of default og images for different sections
+ */
+const imageForSlug = [
+ { section: "developers", image: "/heroes/developers-hub-hero.jpg" },
+ { section: "roadmap", image: "/heroes/roadmap-hub-hero.jpg" },
+ { section: "guides", image: "/heroes/guides-hub-hero.jpg" },
+ { section: "community", image: "/heroes/community-hero.png" },
+ { section: "staking", image: "/upgrades/upgrade_rhino.png" },
+] as const
+
+/**
+ * Get the default OG image for a page based on the slug
+ * @param slug - the slug of the page
+ * @returns relative path of image
+ */
+export const getOgImage = (slug: string[]): string => {
+ let result = DEFAULT_OG_IMAGE
+ for (const item of imageForSlug) {
+ if (slug.includes(item.section)) {
+ result = item.image
+ }
+ }
+ return result
+}
diff --git a/src/lib/utils/string.ts b/src/lib/utils/string.ts
new file mode 100644
index 00000000000..e212fcb23f5
--- /dev/null
+++ b/src/lib/utils/string.ts
@@ -0,0 +1,3 @@
+export const capitalize = (str: string) => {
+ return str.charAt(0).toUpperCase() + str.slice(1)
+}
diff --git a/src/lib/utils/time.ts b/src/lib/utils/time.ts
index ebf8adcf066..0eadcd13ad6 100644
--- a/src/lib/utils/time.ts
+++ b/src/lib/utils/time.ts
@@ -1,20 +1,23 @@
-// TODO: we are using `luxon` package just for this util, should consider rewrite using native JS Date API
-import { DateTime } from "luxon"
-
import { Lang } from "../types"
-export const INVALID_DATETIME = "Invalid DateTime"
+export const getLocaleTimestamp = (
+ locale: Lang,
+ timestamp: string,
+ options?: Intl.DateTimeFormatOptions
+) => {
+ const opts =
+ options ||
+ ({
+ year: "numeric",
+ month: "long",
+ day: "numeric",
+ } as Intl.DateTimeFormatOptions)
+ const date = new Date(timestamp)
+ return new Intl.DateTimeFormat(locale, opts).format(date)
+}
-export const getLocaleTimestamp = (locale: Lang, timestamp: string) => {
- let localeTimestamp = DateTime.fromSQL(timestamp)
- .setLocale(locale)
- .toLocaleString(DateTime.DATE_FULL)
+export const getLocaleFormattedDate = (locale: Lang, date: string) => {
+ const walletLastUpdatedDate = new Date(date)
- // Fallback to ISO
- if (localeTimestamp === INVALID_DATETIME) {
- localeTimestamp = DateTime.fromISO(timestamp)
- .setLocale(locale)
- .toLocaleString(DateTime.DATE_FULL)
- }
- return localeTimestamp
+ return new Intl.DateTimeFormat(locale).format(walletLastUpdatedDate)
}
diff --git a/src/lib/utils/translations.ts b/src/lib/utils/translations.ts
index 3e0e194e969..6c5beb7c659 100644
--- a/src/lib/utils/translations.ts
+++ b/src/lib/utils/translations.ts
@@ -6,7 +6,7 @@ import { DEFAULT_LOCALE, FAKE_LOCALE } from "@/lib/constants"
import i18nConfig from "../../../i18n.config.json"
-// same data as in the `config.json` but indexed by language code
+// Same data as in the `config.json` but indexed by language code
export const languages: Languages = i18nConfig.reduce((result, config) => {
return { ...result, [config.code]: config }
}, {} as Languages)
@@ -89,7 +89,7 @@ const getRequiredNamespacesForPath = (relativePath: string) => {
primaryNamespace = "page-eth"
}
- if (path.startsWith("/glossary/") || path.startsWith("/dapps/")) {
+ if (path.startsWith("/glossary/")) {
requiredNamespaces = [...requiredNamespaces, "glossary"]
}
@@ -159,12 +159,11 @@ const getRequiredNamespacesForPath = (relativePath: string) => {
primaryNamespace = "page-run-a-node"
}
- if (path.startsWith("/wallets/")) {
+ if (path.endsWith("/wallets/")) {
primaryNamespace = "page-wallets"
- requiredNamespaces = [...requiredNamespaces, "glossary"]
}
- if (path.startsWith("/wallets/find-wallet/")) {
+ if (path.endsWith("/wallets/find-wallet/")) {
primaryNamespace = "page-wallets-find-wallet"
requiredNamespaces = [...requiredNamespaces, "page-wallets"]
}
@@ -173,6 +172,22 @@ const getRequiredNamespacesForPath = (relativePath: string) => {
primaryNamespace = "page-layer-2"
}
+ // Glossary tooltips
+ if (
+ path.startsWith("/dapps/") ||
+ path.startsWith("/layer-2/") ||
+ path.startsWith("/get-eth/") ||
+ path.startsWith("/stablecoins/") ||
+ path.startsWith("/staking/") ||
+ path.startsWith("/run-a-node/") ||
+ path.startsWith("/what-is-ethereum/") ||
+ path.startsWith("/eth/") ||
+ path.startsWith("/wallets/") ||
+ path.startsWith("/gas/")
+ ) {
+ requiredNamespaces = [...requiredNamespaces, "glossary-tooltip"]
+ }
+
// Quizzes
// Note: Add any URL paths that have quizzes here
if (
@@ -203,7 +218,7 @@ const getRequiredNamespacesForLayout = (layout?: string) => {
// namespaces required for all layouts
if (layout) {
- requiredNamespaces = [...requiredNamespaces, "glossary"]
+ requiredNamespaces = [...requiredNamespaces, "glossary-tooltip"]
}
if (layout === "docs") {
diff --git a/src/lib/utils/url.ts b/src/lib/utils/url.ts
index efd052d1967..201a06aca2f 100644
--- a/src/lib/utils/url.ts
+++ b/src/lib/utils/url.ts
@@ -1,6 +1,11 @@
-import path from "path"
+import { join } from "path"
-import { DISCORD_PATH, MAIN_CONTENT_ID } from "@/lib/constants"
+import {
+ DEFAULT_LOCALE,
+ DISCORD_PATH,
+ MAIN_CONTENT_ID,
+ SITE_URL,
+} from "@/lib/constants"
export const isDiscordInvite = (href: string): boolean =>
href.includes(DISCORD_PATH) && !href.includes("http")
@@ -31,7 +36,13 @@ export const isHrefActive = (
export const isHash = (href: string): boolean => href.startsWith("#")
+// remove any query params or hashes from the path
+export const cleanPath = (path: string): string => path.replace(/[$#].+$/, "")
+
export const addSlashes = (href: string): string => {
if (isExternal(href)) return href
- return path.join("/", href, "/")
+ return join("/", href, "/")
}
+
+export const getFullUrl = (locale: string | undefined, path: string) =>
+ addSlashes(new URL(join(locale || DEFAULT_LOCALE, path), SITE_URL).href)
diff --git a/src/lib/utils/wallets.ts b/src/lib/utils/wallets.ts
new file mode 100644
index 00000000000..f01c5a3f60f
--- /dev/null
+++ b/src/lib/utils/wallets.ts
@@ -0,0 +1,191 @@
+import { shuffle, union } from "lodash"
+
+import { getLanguageCodeName } from "@/lib/utils/intl"
+import { capitalize } from "@/lib/utils/string"
+
+import walletsData from "@/data/wallets/wallet-data"
+
+import {
+ DEVELOPER_FEATURES,
+ FINANCE_FEATURES,
+ LONG_TERM_FEATURES,
+ NEW_TO_CRYPTO_FEATURES,
+ NFTS_FEATURES,
+} from "../constants"
+import { WalletData, WalletFilter } from "../types"
+
+export const getSupportedLocaleWallets = (locale: string) =>
+ shuffle(
+ walletsData.filter((wallet) => wallet.languages_supported.includes(locale))
+ )
+
+export const getNonSupportedLocaleWallets = (locale: string) =>
+ shuffle(
+ walletsData.filter((wallet) => !wallet.languages_supported.includes(locale))
+ )
+
+// Get a list of a wallet supported Personas (new to crypto, nfts, long term, finance, developer)
+export const getWalletPersonas = (wallet: WalletData) => {
+ const walletPersonas: string[] = []
+
+ const isNewToCryptoPersona = NEW_TO_CRYPTO_FEATURES.every(
+ (feature) => wallet[feature]
+ )
+ const isNFTPersona = NFTS_FEATURES.every((feature) => wallet[feature])
+ const isLongTermPersona = LONG_TERM_FEATURES.every(
+ (feature) => wallet[feature]
+ )
+ const isFinancePersona = FINANCE_FEATURES.every((feature) => wallet[feature])
+ const isDeveloperPersona = DEVELOPER_FEATURES.every(
+ (feature) => wallet[feature]
+ )
+
+ if (isNewToCryptoPersona) {
+ walletPersonas.push("page-find-wallet-new-to-crypto-title")
+ }
+
+ if (isNFTPersona) {
+ walletPersonas.push("page-find-wallet-nfts-title")
+ }
+
+ if (isLongTermPersona) {
+ walletPersonas.push("page-find-wallet-hodler-title")
+ }
+
+ if (isFinancePersona) {
+ walletPersonas.push("page-find-wallet-finance-title")
+ }
+
+ if (isDeveloperPersona) {
+ walletPersonas.push("page-find-wallet-developer-title")
+ }
+
+ return walletPersonas
+}
+
+// Get a list of wallet supported languages with native title
+export const getSupportedLanguages = (
+ walletSupportedLanguages: string[],
+ locale: string
+) => {
+ const supportedLanguages = [] as string[]
+
+ // current locale should appear first on the list, this manipulates the array to move it to the top if needed
+ const supportsCurrentLocale = (current) => current === locale
+ const localeIndex = walletSupportedLanguages.findIndex(supportsCurrentLocale)
+
+ if (localeIndex >= 0) {
+ walletSupportedLanguages.splice(localeIndex, 1)
+ walletSupportedLanguages.unshift(locale)
+ }
+
+ walletSupportedLanguages.forEach((supportedLanguage) => {
+ // Get supported language name
+ const supportedLanguageName = getLanguageCodeName(supportedLanguage, locale)
+ // Capitalize supported language name
+ supportedLanguages.push(capitalize(supportedLanguageName!))
+ })
+
+ return supportedLanguages
+}
+
+// Format languages list to be displayed on UI label
+export const formatSupportedLanguages = (
+ supportedLanguages: string[],
+ sliceSize?: number
+) => {
+ return sliceSize
+ ? supportedLanguages.slice(0, sliceSize).join(", ")
+ : supportedLanguages.join(", ")
+}
+
+// Get border custom color for Persona filter
+export const getPersonaBorderColor = (selectedPersona: number, idx: number) => {
+ return selectedPersona === idx ? "primary.base" : "transparent"
+}
+
+// Get total count of wallets that support a language
+const getLanguageTotalCount = (languageCode: string) => {
+ return walletsData.reduce(
+ (total, currentWallet) =>
+ currentWallet.languages_supported.includes(languageCode)
+ ? (total = total + 1)
+ : total,
+ 0
+ )
+}
+
+// Get a list of all wallets languages, without duplicates
+export const getAllWalletsLanguages = (locale: string) => {
+ const compareFn = (
+ a: { langCode: string; langName: string },
+ b: { langCode: string; langName: string }
+ ) => {
+ if (a.langName > b.langName) {
+ return 1
+ }
+ if (a.langName < b.langName) {
+ return -1
+ }
+ return 0
+ }
+
+ return (
+ walletsData
+ .reduce(
+ (allLanguagesList, current) =>
+ // `union` lodash method merges all arrays removing duplicates
+ union(allLanguagesList, current.languages_supported),
+ [] as string[]
+ )
+ .map((languageCode) => {
+ // Get supported language name
+ const supportedLanguageName = getLanguageCodeName(languageCode, locale)
+ // Get a list of {langCode, langName}
+ return {
+ langCode: languageCode,
+ langName: `${capitalize(
+ supportedLanguageName!
+ )} (${getLanguageTotalCount(languageCode)})`,
+ }
+ })
+ // Sort list alphabetically by langName
+ .sort(compareFn)
+ )
+}
+
+// Get a list of top n wallets languages
+export const getWalletsTopLanguages = (n: number, locale: string) => {
+ const compareFn = (a: string, b: string) => {
+ return getLanguageTotalCount(b) - getLanguageTotalCount(a)
+ }
+
+ return walletsData
+ .reduce(
+ (allLanguagesList, current) =>
+ // `union` lodash method merges all arrays removing duplicates
+ union(allLanguagesList, current.languages_supported),
+ [] as string[]
+ )
+ .sort(compareFn)
+ .map((languageCode) => {
+ // Get supported language name
+ const supportedLanguageName = getLanguageCodeName(languageCode, locale)
+ // Return {code, capitalized language name}
+ return {
+ code: languageCode,
+ langName: `${capitalize(
+ supportedLanguageName!
+ )} (${getLanguageTotalCount(languageCode)})`,
+ }
+ })
+ .slice(0, n)
+}
+
+// Get wallets listing count after applying filters
+export const walletsListingCount = (filters: WalletFilter) => {
+ return Object.values(filters).reduce(
+ (acc, filter) => (filter ? acc + 1 : acc),
+ 0
+ )
+}
diff --git a/src/middleware.ts b/src/middleware.ts
index 655802b3fb2..f306a07b483 100644
--- a/src/middleware.ts
+++ b/src/middleware.ts
@@ -33,14 +33,18 @@ export async function middleware(req: NextRequest) {
}
if (req.nextUrl.locale === FAKE_LOCALE) {
- // Apparently `localeDetection` does not work when using the faked locale
- // hack. So, detect the locale manually
+ // Apparently, the built-in `localeDetection`from Next does not work when
+ // using the faked locale hack. So, we need to detect the locale manually
const localeDetected = detectLocale(req.headers.get("accept-language"))
const locale = localeDetected || DEFAULT_LOCALE
- return NextResponse.redirect(
- new URL(`/${locale}${req.nextUrl.pathname}`, req.url),
- { status: 301 }
- )
+ const redirectUrl = new URL(`/${locale}${req.nextUrl.pathname}`, req.url)
+
+ // Add trailing slash if it's not present
+ if (!redirectUrl.pathname.endsWith("/")) {
+ redirectUrl.pathname = redirectUrl.pathname + "/"
+ }
+
+ return NextResponse.redirect(redirectUrl, { status: 301 })
}
}
diff --git a/src/pages/_app.tsx b/src/pages/_app.tsx
index 9bb27739478..b261e60ebd3 100644
--- a/src/pages/_app.tsx
+++ b/src/pages/_app.tsx
@@ -11,7 +11,7 @@ import customTheme from "@/@chakra-ui/theme"
import { AppPropsWithLayout } from "@/lib/types"
import { useLocaleDirection } from "@/hooks/useLocaleDirection"
-import { RootLayout } from "@/layouts"
+import { RootLayout } from "@/layouts/RootLayout"
import { inter, mono } from "@/lib/fonts"
const App = ({ Component, pageProps }: AppPropsWithLayout) => {
diff --git a/src/pages/assets.tsx b/src/pages/assets.tsx
index 85f713fe9bb..73ad3524aaa 100644
--- a/src/pages/assets.tsx
+++ b/src/pages/assets.tsx
@@ -160,17 +160,17 @@ const AssetsPage = () => {