diff --git a/app/[locale]/developers/learning-tools/_components/learning-tools.tsx b/app/[locale]/developers/learning-tools/_components/learning-tools.tsx deleted file mode 100644 index 1c097390f6e..00000000000 --- a/app/[locale]/developers/learning-tools/_components/learning-tools.tsx +++ /dev/null @@ -1,468 +0,0 @@ -"use client" - -import { BaseHTMLAttributes } from "react" -import { shuffle } from "lodash" - -import { LearningTool } from "@/lib/types" - -import CalloutBanner from "@/components/CalloutBanner" -import FeedbackCard from "@/components/FeedbackCard" -import LearningToolsCardGrid from "@/components/LearningToolsCardGrid" -import MainArticle from "@/components/MainArticle" -import Translation from "@/components/Translation" -import { Alert, AlertEmoji } from "@/components/ui/alert" -import { ButtonLink } from "@/components/ui/buttons/Button" - -import { cn } from "@/lib/utils/cn" - -import { useTranslation } from "@/hooks/useTranslation" -import AlchemyUniversityImage from "@/public/images/dev-tools/alchemyuniversity.png" -import AtlasImage from "@/public/images/dev-tools/atlas.png" -import BloomTechImage from "@/public/images/dev-tools/bloomtech.png" -import CaptureTheEtherImage from "@/public/images/dev-tools/capturetheether.png" -import ChainIDEImage from "@/public/images/dev-tools/chainIDE.png" -import ConsensysImage from "@/public/images/dev-tools/consensys.png" -import CryptoZombieImage from "@/public/images/dev-tools/crypto-zombie.png" -import CyfrinUpdraftImage from "@/public/images/dev-tools/cyfrin-updraft.png" -import DappWorldImage from "@/public/images/dev-tools/dapp-world.png" -import EthDotBuildImage from "@/public/images/dev-tools/eth-dot-build.png" -import LearnWeb3Image from "@/public/images/dev-tools/learnweb3.png" -import MetaschoolImage from "@/public/images/dev-tools/metaschool.png" -import NodeGuardiansImage from "@/public/images/dev-tools/node-guardians.jpg" -import EthernautImage from "@/public/images/dev-tools/oz.png" -import QuestbookImage from "@/public/images/dev-tools/questbook.png" -import RemixImage from "@/public/images/dev-tools/remix.png" -import ReplitImage from "@/public/images/dev-tools/replit.png" -import SpeedRunEthereumImage from "@/public/images/dev-tools/speed-run-ethereum.png" -import TenderlyImage from "@/public/images/dev-tools/tenderly.png" -import EnterpriseEth from "@/public/images/enterprise-eth.png" - -const Page = ({ className, ...props }: BaseHTMLAttributes) => ( -
-) - -const Header = ({ className, ...props }: BaseHTMLAttributes) => ( -
-) - -const H1 = ({ - className, - ...props -}: BaseHTMLAttributes) => ( -

-) - -const Subtitle = ({ - className, - ...props -}: BaseHTMLAttributes) => ( -

-) - -const SubtitleTwo = ({ - className, - ...props -}: BaseHTMLAttributes) => ( - -) - -const ContentBox = ({ - className, - ...props -}: BaseHTMLAttributes) => ( -
-) - -const StackContainer = ({ - className, - ...props -}: BaseHTMLAttributes) => ( -
-) - -const LearningToolsPage = () => { - const { t } = useTranslation(["page-developers-learning-tools"]) - - const randomizedSandboxes: Array = shuffle([ - { - name: "Remix", - description: t( - "page-developers-learning-tools:page-learning-tools-remix-description" - ), - url: "https://remix.ethereum.org", - image: RemixImage, - alt: t( - "page-developers-learning-tools:page-learning-tools-remix-logo-alt" - ), - background: "#5098d6", - subjects: ["Solidity", "Vyper"], - }, - { - name: "Eth.build", - description: t( - "page-developers-learning-tools:page-learning-tools-eth-dot-build-description" - ), - url: "https://eth.build/", - image: EthDotBuildImage, - alt: t( - "page-developers-learning-tools:page-learning-tools-eth-dot-build-logo-alt" - ), - background: "#000000", - subjects: ["web3"], - }, - { - name: "Replit", - description: t( - "page-developers-learning-tools:page-learning-tools-replit-description" - ), - url: "https://replit.com/@replit/Solidity-starter-beta", - image: ReplitImage, - alt: t( - "page-developers-learning-tools:page-learning-tools-replit-logo-alt" - ), - background: "#0f1524", - subjects: ["Solidity", "web3"], - }, - { - name: "ChainIDE", - description: t( - "page-developers-learning-tools:page-learning-tools-chainIDE-description" - ), - url: "https://chainide.com/", - image: ChainIDEImage, - alt: t( - "page-developers-learning-tools:page-learning-tools-chainIDE-logo-alt" - ), - background: "#2C60A3", - subjects: ["Solidity", "web3"], - }, - { - name: "Tenderly", - description: t( - "page-developers-learning-tools:page-learning-tools-tenderly-description" - ), - url: "https://sandbox.tenderly.co", - image: TenderlyImage, - alt: t( - "page-developers-learning-tools:page-learning-tools-tenderly-logo-alt" - ), - background: "#0f1524", - subjects: ["Solidity", "Vyper", "web3"], - }, - { - name: "Atlas", - description: t( - "page-developers-learning-tools:page-learning-tools-atlas-description" - ), - url: "https://www.atlaszk.com", - image: AtlasImage, - alt: t( - "page-developers-learning-tools:page-learning-tools-atlas-logo-alt" - ), - background: "#000000", - subjects: ["Solidity"], - }, - { - name: "DApp World", - description: t( - "page-developers-learning-tools:page-learning-tools-dapp-world-description" - ), - url: "https://dapp-world.com", - image: DappWorldImage, - alt: t( - "page-developers-learning-tools:page-learning-tools-dapp-world-logo-alt" - ), - background: "#e5e7eb", - subjects: ["Solidity", "web3"], - }, - ]) - - const games: Array = [ - { - name: "CryptoZombies", - description: t( - "page-developers-learning-tools:page-learning-tools-cryptozombies-description" - ), - url: "https://cryptozombies.io/", - image: CryptoZombieImage, - alt: t( - "page-developers-learning-tools:page-learning-tools-cryptozombies-logo-alt" - ), - background: "#2b2f48", - subjects: ["Solidity"], - }, - { - name: "Ethernauts", - description: t( - "page-developers-learning-tools:page-learning-tools-ethernauts-description" - ), - url: "https://ethernaut.openzeppelin.com/", - image: EthernautImage, - alt: t( - "page-developers-learning-tools:page-learning-tools-ethernauts-logo-alt" - ), - background: "#4f62dc", - subjects: ["Solidity"], - }, - { - name: "Capture The Ether", - description: t( - "page-developers-learning-tools:page-learning-tools-capture-the-ether-description" - ), - url: "https://capturetheether.com/", - image: CaptureTheEtherImage, - alt: t( - "page-developers-learning-tools:page-learning-tools-capture-the-ether-logo-alt" - ), - background: "#1b9aaa", - subjects: ["Solidity"], - }, - { - name: "Node Guardians", - description: t( - "page-developers-learning-tools:page-learning-tools-node-guardians-description" - ), - url: "https://nodeguardians.io/", - image: NodeGuardiansImage, - alt: t( - "page-developers-learning-tools:page-learning-tools-node-guardians-logo-alt" - ), - background: "#000", - subjects: ["Solidity", "web3"], - }, - ] - - const bootcamps: Array = [ - { - name: "ConsenSys Academy", - description: t( - "page-developers-learning-tools:page-learning-tools-consensys-academy-description" - ), - url: "https://consensys.net/academy/bootcamp/", - image: ConsensysImage, - alt: t( - "page-developers-learning-tools:page-learning-tools-consensys-academy-logo-alt" - ), - background: "#f6f7f9", - subjects: ["Solidity", "web3"], - priceType: t( - "page-developers-learning-tools:page-learning-tools-price-paid" - ), - }, - { - name: "BloomTech", - description: t( - "page-developers-learning-tools:page-learning-tools-bloomtech-description" - ), - url: "https://www.bloomtech.com/courses/web3", - image: BloomTechImage, - alt: t( - "page-developers-learning-tools:page-learning-tools-bloomtech-logo-alt" - ), - background: "#ffffff", - subjects: ["Solidity", "web3"], - priceType: t( - "page-developers-learning-tools:page-learning-tools-price-paid" - ), - }, - { - name: "Questbook", - description: t( - "page-developers-learning-tools:page-learning-tools-questbook-description" - ), - url: "https://learn.questbook.xyz/", - image: QuestbookImage, - alt: t( - "page-developers-learning-tools:page-learning-tools-questbook-logo-alt" - ), - background: "#141236", - subjects: ["Solidity", "web3"], - priceType: t( - "page-developers-learning-tools:page-learning-tools-price-free" - ), - }, - { - name: "Metaschool", - description: t( - "page-developers-learning-tools:page-learning-tools-metaschool-description" - ), - url: "https://metaschool.so", - image: MetaschoolImage, - alt: t( - "page-developers-learning-tools:page-learning-tools-metaschool-logo-alt" - ), - background: "#f6f7f9", - subjects: ["Solidity", "web3"], - priceType: t( - "page-developers-learning-tools:page-learning-tools-price-free" - ), - }, - { - name: "Speed Run Ethereum", - description: t( - "page-developers-learning-tools:page-learning-tools-speed-run-ethereum-description" - ), - url: "https://speedrunethereum.com/", - image: SpeedRunEthereumImage, - alt: t( - "page-developers-learning-tools:page-learning-tools-speed-run-ethereum-logo-alt" - ), - background: "#ffffff", - subjects: ["Solidity", "web3"], - priceType: t( - "page-developers-learning-tools:page-learning-tools-price-free" - ), - }, - { - name: "Alchemy University", - description: t( - "page-developers-learning-tools:page-learning-tools-alchemy-university-description" - ), - url: "https://university.alchemy.com/", - image: AlchemyUniversityImage, - alt: t( - "page-developers-learning-tools:page-learning-tools-alchemy-university-logo-alt" - ), - background: "#ffffff", - subjects: ["Solidity", "web3"], - priceType: t( - "page-developers-learning-tools:page-learning-tools-price-free" - ), - }, - { - name: "LearnWeb3", - description: t( - "page-developers-learning-tools:page-learning-tools-learnweb3-description" - ), - url: "https://www.learnweb3.io/", - image: LearnWeb3Image, - alt: t( - "page-developers-learning-tools:page-learning-tools-learnweb3-logo-alt" - ), - background: "#ffffff", - subjects: ["Solidity", "web3"], - priceType: t( - "page-developers-learning-tools:page-learning-tools-price-free" - ), - }, - { - name: "Cyfrin Updraft", - description: t( - "page-developers-learning-tools:page-learning-tools-cyfrin-updraft-description" - ), - url: "https://updraft.cyfrin.io/", - image: CyfrinUpdraftImage, - alt: t( - "page-developers-learning-tools:page-learning-tools-cyfrin-updraft-logo-alt" - ), - background: "#000000", - subjects: ["Solidity", "web3"], - priceType: t( - "page-developers-learning-tools:page-learning-tools-price-free" - ), - }, - ] - - return ( - - -
-
-

- -

- - - -
-
- - - - -

- -

- - - - - -
- - - - -

- -

- -
- - - - -

- -

- -
- - -
- - - -
-
-
- - - - -
-
- ) -} - -export default LearningToolsPage diff --git a/app/[locale]/developers/learning-tools/page-jsonld.tsx b/app/[locale]/developers/learning-tools/page-jsonld.tsx deleted file mode 100644 index 2a345f62c05..00000000000 --- a/app/[locale]/developers/learning-tools/page-jsonld.tsx +++ /dev/null @@ -1,80 +0,0 @@ -import { getTranslations } from "next-intl/server" - -import { FileContributor } from "@/lib/types" - -import PageJsonLD from "@/components/PageJsonLD" - -import { - ethereumCommunityOrganization, - ethereumFoundationOrganization, -} from "@/lib/utils/jsonld" -import { normalizeUrlForJsonLd } from "@/lib/utils/url" - -export default async function LearningToolsJsonLD({ - locale, - contributors, -}: { - locale: string - contributors: FileContributor[] -}) { - const t = await getTranslations({ - namespace: "page-developers-learning-tools", - }) - - const url = normalizeUrlForJsonLd(locale, `/developers/learning-tools/`) - - const contributorList = contributors.map((contributor) => ({ - "@type": "Person", - name: contributor.login, - url: contributor.html_url, - })) - - const jsonLd = { - "@context": "https://schema.org", - "@graph": [ - { - "@type": "WebPage", - "@id": url, - name: t("page-learning-tools-meta-title"), - description: t("page-learning-tools-meta-desc"), - url: url, - inLanguage: locale, - contributor: contributorList, - author: [ethereumCommunityOrganization], - isPartOf: { - "@type": "WebSite", - "@id": "https://ethereum.org/#website", - name: "ethereum.org", - url: "https://ethereum.org", - }, - breadcrumb: { - "@type": "BreadcrumbList", - itemListElement: [ - { - "@type": "ListItem", - position: 1, - name: "Home", - item: normalizeUrlForJsonLd(locale, "/"), - }, - { - "@type": "ListItem", - position: 2, - name: "Developers", - item: normalizeUrlForJsonLd(locale, "/developers/"), - }, - { - "@type": "ListItem", - position: 3, - name: t("page-learning-tools-meta-title"), - item: url, - }, - ], - }, - publisher: ethereumFoundationOrganization, - reviewedBy: ethereumFoundationOrganization, - }, - ], - } - - return -} diff --git a/app/[locale]/developers/learning-tools/page.tsx b/app/[locale]/developers/learning-tools/page.tsx deleted file mode 100644 index 49c6e6a2059..00000000000 --- a/app/[locale]/developers/learning-tools/page.tsx +++ /dev/null @@ -1,69 +0,0 @@ -import { pick } from "lodash" -import { - getMessages, - getTranslations, - setRequestLocale, -} from "next-intl/server" - -import type { CommitHistory, Lang, PageParams } from "@/lib/types" - -import I18nProvider from "@/components/I18nProvider" - -import { getAppPageContributorInfo } from "@/lib/utils/contributors" -import { getMetadata } from "@/lib/utils/metadata" -import { getRequiredNamespacesForPage } from "@/lib/utils/translations" - -import LearningTools from "./_components/learning-tools" -import LearningToolsJsonLD from "./page-jsonld" - -const Page = async ({ params }: { params: PageParams }) => { - const { locale } = params - - setRequestLocale(locale) - - // Get i18n messages - const allMessages = await getMessages({ locale }) - const requiredNamespaces = getRequiredNamespacesForPage( - "/developers/learning-tools" - ) - const messages = pick(allMessages, requiredNamespaces) - - const commitHistoryCache: CommitHistory = {} - const { contributors } = await getAppPageContributorInfo( - "developers/learning-tools", - locale as Lang, - commitHistoryCache - ) - - return ( - <> - - - - - - - ) -} - -export async function generateMetadata({ - params, -}: { - params: { locale: string } -}) { - const { locale } = params - - const t = await getTranslations({ - locale, - namespace: "page-developers-learning-tools", - }) - - return await getMetadata({ - locale, - slug: ["developers", "learning-tools"], - title: t("page-learning-tools-meta-title"), - description: t("page-learning-tools-meta-desc"), - }) -} - -export default Page diff --git a/app/[locale]/developers/local-environment/_components/local-environment.tsx b/app/[locale]/developers/local-environment/_components/local-environment.tsx deleted file mode 100644 index beb970aa98a..00000000000 --- a/app/[locale]/developers/local-environment/_components/local-environment.tsx +++ /dev/null @@ -1,120 +0,0 @@ -"use client" - -import { HTMLAttributes } from "react" - -import { ChildOnlyProp } from "@/lib/types" -import { Framework } from "@/lib/interfaces" - -import FeedbackCard from "@/components/FeedbackCard" -import { Image } from "@/components/Image" -import MainArticle from "@/components/MainArticle" -import ProductCard from "@/components/ProductCard" -import Translation from "@/components/Translation" -import { Flex, VStack } from "@/components/ui/flex" -import { ListItem, UnorderedList } from "@/components/ui/list" - -import { cn } from "@/lib/utils/cn" - -import { useTranslation } from "@/hooks/useTranslation" -import EthBlocksImage from "@/public/images/developers-eth-blocks.png" - -const Content = ({ children }: ChildOnlyProp) => { - return {children} -} - -const Column = ({ children }: ChildOnlyProp) => { - return ( -
- {children} -
- ) -} - -const Text = ({ className, ...props }: HTMLAttributes) => ( -

-) - -type Props = { - frameworksList: Framework[] -} - -const LocalEnvironmentPage = ({ frameworksList }: Props) => { - const { t } = useTranslation("page-developers-local-environment") - - return ( - -

-

- -

- - -
- -
-
- - - -

- -

- - - - - - - - - - - - - - - - - - - - - - - -
- - {t("page-developers-index:alt-eth-blocks")} - -
-
- {frameworksList.map((framework, idx) => ( - - {t(framework.description)} - - ))} -
-
- - - - - ) -} - -export default LocalEnvironmentPage diff --git a/app/[locale]/developers/local-environment/page-jsonld.tsx b/app/[locale]/developers/local-environment/page-jsonld.tsx deleted file mode 100644 index 3728c0a78d7..00000000000 --- a/app/[locale]/developers/local-environment/page-jsonld.tsx +++ /dev/null @@ -1,112 +0,0 @@ -import { getTranslations } from "next-intl/server" - -import { FileContributor } from "@/lib/types" -import { Framework } from "@/lib/interfaces" - -import PageJsonLD from "@/components/PageJsonLD" - -import { - ethereumCommunityOrganization, - ethereumFoundationOrganization, -} from "@/lib/utils/jsonld" -import { normalizeUrlForJsonLd } from "@/lib/utils/url" - -export default async function LocalEnvironmentJsonLD({ - locale, - frameworksListData, - contributors, -}: { - locale: string - frameworksListData: Framework[] - contributors: FileContributor[] -}) { - const t = await getTranslations({ - namespace: "page-developers-local-environment", - }) - - const url = normalizeUrlForJsonLd(locale, `/developers/local-environment/`) - - const contributorList = contributors.map((contributor) => ({ - "@type": "Person", - name: contributor.login, - url: contributor.html_url, - })) - - const jsonLd = { - "@context": "https://schema.org", - "@graph": [ - { - "@type": "WebPage", - "@id": url, - name: t("page-local-environment-setup-meta-title"), - description: t("page-local-environment-setup-meta-desc"), - url: url, - inLanguage: locale, - contributor: contributorList, - author: [ethereumCommunityOrganization], - isPartOf: { - "@type": "WebSite", - "@id": "https://ethereum.org/#website", - name: "ethereum.org", - url: "https://ethereum.org", - }, - breadcrumb: { - "@type": "BreadcrumbList", - itemListElement: [ - { - "@type": "ListItem", - position: 1, - name: "Home", - item: normalizeUrlForJsonLd(locale, "/"), - }, - { - "@type": "ListItem", - position: 2, - name: "Developers", - item: normalizeUrlForJsonLd(locale, "/developers/"), - }, - { - "@type": "ListItem", - position: 3, - name: t("page-local-environment-setup-meta-title"), - item: url, - }, - ], - }, - publisher: ethereumFoundationOrganization, - reviewedBy: ethereumFoundationOrganization, - mainEntity: { "@id": `${url}#local-environment` }, - }, - { - "@type": "ItemList", - "@id": `${url}#local-environment`, - name: "Ethereum Development Frameworks", - description: - "Tools and frameworks for setting up local Ethereum development environments", - url: url, - numberOfItems: frameworksListData.length, - itemListElement: frameworksListData.map((framework, index) => ({ - "@type": "SoftwareApplication", - position: index + 1, - name: framework.name, - description: framework.description, - url: framework.url, - applicationCategory: "DeveloperApplication", - operatingSystem: ["Windows", "macOS", "Linux"], - author: [ - { - "@type": "Organization", - name: framework.githubUrl || "Community", - }, - ], - downloadUrl: framework.url, - sameAs: framework.githubUrl, - })), - publisher: ethereumFoundationOrganization, - reviewedBy: ethereumFoundationOrganization, - }, - ], - } - - return -} diff --git a/app/[locale]/developers/local-environment/page.tsx b/app/[locale]/developers/local-environment/page.tsx deleted file mode 100644 index 5633ffed495..00000000000 --- a/app/[locale]/developers/local-environment/page.tsx +++ /dev/null @@ -1,96 +0,0 @@ -import { pick } from "lodash" -import { - getMessages, - getTranslations, - setRequestLocale, -} from "next-intl/server" - -import type { CommitHistory, Lang, PageParams } from "@/lib/types" -import type { Framework } from "@/lib/interfaces" - -import I18nProvider from "@/components/I18nProvider" - -import { getAppPageContributorInfo } from "@/lib/utils/contributors" -import { getMetadata } from "@/lib/utils/metadata" -import { getRequiredNamespacesForPage } from "@/lib/utils/translations" - -import { frameworksList } from "@/data/frameworks" - -import LocalEnvironmentPage from "./_components/local-environment" -import LocalEnvironmentJsonLD from "./page-jsonld" - -import { getGithubRepoData } from "@/lib/data" - -const Page = async ({ params }: { params: PageParams }) => { - const { locale } = params - - setRequestLocale(locale) - - // Fetch GitHub repo data using the new data-layer function (already cached) - const githubRepoData = await getGithubRepoData() - - // Handle null case - throw error if required data is missing - if (!githubRepoData) { - throw new Error("Failed to fetch GitHub repo data") - } - - // Merge static framework data with GitHub repo data - const frameworksListData: Framework[] = frameworksList.map((framework) => { - const repoData = githubRepoData[framework.githubUrl] - return { - ...framework, - starCount: repoData?.starCount, - languages: repoData?.languages?.slice(0, 2), // Limit to first 2 languages - } - }) - - // Get i18n messages - const allMessages = await getMessages({ locale }) - const requiredNamespaces = getRequiredNamespacesForPage( - "/developers/local-environment" - ) - const messages = pick(allMessages, requiredNamespaces) - - const commitHistoryCache: CommitHistory = {} - const { contributors } = await getAppPageContributorInfo( - "developers/local-environment", - locale as Lang, - commitHistoryCache - ) - - return ( - <> - - - - - - - ) -} - -export async function generateMetadata({ - params, -}: { - params: { locale: string } -}) { - const { locale } = params - - const t = await getTranslations({ - locale, - namespace: "page-developers-local-environment", - }) - - return await getMetadata({ - locale, - slug: ["developers", "local-environment"], - title: t("page-local-environment-setup-meta-title"), - description: t("page-local-environment-setup-meta-desc"), - }) -} - -export default Page diff --git a/public/images/dev-tools/alchemyuniversity.png b/public/images/dev-tools/alchemyuniversity.png deleted file mode 100644 index f48fd08b80f..00000000000 Binary files a/public/images/dev-tools/alchemyuniversity.png and /dev/null differ diff --git a/public/images/dev-tools/atlas.png b/public/images/dev-tools/atlas.png deleted file mode 100644 index 7ab520169c1..00000000000 Binary files a/public/images/dev-tools/atlas.png and /dev/null differ diff --git a/public/images/dev-tools/bloomtech.png b/public/images/dev-tools/bloomtech.png deleted file mode 100644 index 826c7990f26..00000000000 Binary files a/public/images/dev-tools/bloomtech.png and /dev/null differ diff --git a/public/images/dev-tools/capturetheether.png b/public/images/dev-tools/capturetheether.png deleted file mode 100644 index 4b2044a787f..00000000000 Binary files a/public/images/dev-tools/capturetheether.png and /dev/null differ diff --git a/public/images/dev-tools/chainIDE.png b/public/images/dev-tools/chainIDE.png deleted file mode 100644 index 7a85fd0abdb..00000000000 Binary files a/public/images/dev-tools/chainIDE.png and /dev/null differ diff --git a/public/images/dev-tools/consensys.png b/public/images/dev-tools/consensys.png deleted file mode 100644 index 97e69c8b9b0..00000000000 Binary files a/public/images/dev-tools/consensys.png and /dev/null differ diff --git a/public/images/dev-tools/crypto-zombie.png b/public/images/dev-tools/crypto-zombie.png deleted file mode 100644 index 6653c424a26..00000000000 Binary files a/public/images/dev-tools/crypto-zombie.png and /dev/null differ diff --git a/public/images/dev-tools/cyfrin-updraft.png b/public/images/dev-tools/cyfrin-updraft.png deleted file mode 100644 index 1f6fd7dba7f..00000000000 Binary files a/public/images/dev-tools/cyfrin-updraft.png and /dev/null differ diff --git a/public/images/dev-tools/dapp-world.png b/public/images/dev-tools/dapp-world.png deleted file mode 100644 index 4a86d1c766f..00000000000 Binary files a/public/images/dev-tools/dapp-world.png and /dev/null differ diff --git a/public/images/dev-tools/eth-dot-build.png b/public/images/dev-tools/eth-dot-build.png deleted file mode 100644 index 971ca61a4b0..00000000000 Binary files a/public/images/dev-tools/eth-dot-build.png and /dev/null differ diff --git a/public/images/dev-tools/learnweb3.png b/public/images/dev-tools/learnweb3.png deleted file mode 100644 index 8ea36e12f1d..00000000000 Binary files a/public/images/dev-tools/learnweb3.png and /dev/null differ diff --git a/public/images/dev-tools/metaschool.png b/public/images/dev-tools/metaschool.png deleted file mode 100644 index 9ad489cce84..00000000000 Binary files a/public/images/dev-tools/metaschool.png and /dev/null differ diff --git a/public/images/dev-tools/node-guardians.jpg b/public/images/dev-tools/node-guardians.jpg deleted file mode 100644 index 39432377c70..00000000000 Binary files a/public/images/dev-tools/node-guardians.jpg and /dev/null differ diff --git a/public/images/dev-tools/oz.png b/public/images/dev-tools/oz.png deleted file mode 100644 index c5fcc574058..00000000000 Binary files a/public/images/dev-tools/oz.png and /dev/null differ diff --git a/public/images/dev-tools/questbook.png b/public/images/dev-tools/questbook.png deleted file mode 100644 index 0a2dd6ffc7d..00000000000 Binary files a/public/images/dev-tools/questbook.png and /dev/null differ diff --git a/public/images/dev-tools/remix.png b/public/images/dev-tools/remix.png deleted file mode 100644 index 279655d0e94..00000000000 Binary files a/public/images/dev-tools/remix.png and /dev/null differ diff --git a/public/images/dev-tools/replit.png b/public/images/dev-tools/replit.png deleted file mode 100644 index c47bf3d1493..00000000000 Binary files a/public/images/dev-tools/replit.png and /dev/null differ diff --git a/public/images/dev-tools/tenderly.png b/public/images/dev-tools/tenderly.png deleted file mode 100644 index 58d990ce253..00000000000 Binary files a/public/images/dev-tools/tenderly.png and /dev/null differ diff --git a/redirects.config.js b/redirects.config.js index 3ba68d14f53..d570f04a287 100644 --- a/redirects.config.js +++ b/redirects.config.js @@ -36,7 +36,9 @@ module.exports = [ "/developers/docs/consensus-mechanisms/pow/mining/", ], ["/beginners", "/what-is-ethereum/"], - ["/build", "/developers/learning-tools/"], + ["/build", "/developers/apps/education/"], + ["/developers/learning-tools", "/developers/apps/education/"], + ["/developers/local-environment", "/developers/apps/"], ["/eth2/beacon-chain", "/roadmap/beacon-chain/"], ["/eth2/the-beacon-chain", "/roadmap/beacon-chain/"], ["/upgrades/the-beacon-chain", "/roadmap/beacon-chain/"], diff --git a/src/components/LearningToolsCardGrid.tsx b/src/components/LearningToolsCardGrid.tsx deleted file mode 100644 index cfecd3ea24e..00000000000 --- a/src/components/LearningToolsCardGrid.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import { LearningToolsCardGridProps } from "@/lib/types" - -import ProductCard from "./ProductCard" - -const LearningToolsCardGrid = ({ products }: LearningToolsCardGridProps) => ( -
- {products - .sort(({ locales }) => (locales?.length ? -1 : 0)) - .map(({ description, ...product }) => ( - - {description} - - ))} -
-) - -export default LearningToolsCardGrid diff --git a/src/components/ProductCard.tsx b/src/components/ProductCard.tsx deleted file mode 100644 index 1f6a99a3180..00000000000 --- a/src/components/ProductCard.tsx +++ /dev/null @@ -1,142 +0,0 @@ -import type { ImageProps } from "next/image" -import type { ReactNode } from "react" - -import { cn } from "@/lib/utils/cn" - -import { ButtonLink } from "./ui/buttons/Button" -import { Center, Flex, HStack } from "./ui/flex" -import { Tag } from "./ui/tag" -import GitStars from "./GitStars" -import { Image } from "./Image" - -import { useTranslation } from "@/hooks/useTranslation" - -type SubjectBadgeProps = { - subject: string - children: ReactNode -} - -const SubjectBadge = ({ subject, children }: SubjectBadgeProps) => { - const backgroundProp = () => { - switch (subject) { - case "Solidity": - return "warning" - case "Vyper": - return "tag" - case "web3": - return "success" - case "JavaScript": - return "error" - case "TypeScript": - return "tag" - case "Go": - return "tag" - case "Python": - return "error" - case "Rust": - return "warning" - case "C#": - return "tag" - case "Java": - return "error" - default: - return "normal" - } - } - return {children} -} - -export type ProductCardProps = { - children?: ReactNode - url: string - background: string - image: ImageProps["src"] - name: string - description?: ReactNode - note?: string - alt?: string - githubUrl?: string - subjects?: Array - githubRepoStars?: number - githubRepoLanguages?: Array - hideStars?: boolean - priceType?: string -} - -const ProductCard = ({ - url, - background: bgProp, - image, - name, - description, - note = "", - alt = "", - children, - githubUrl = "", - subjects, - githubRepoStars = 0, - githubRepoLanguages = [], - hideStars = false, - priceType, -}: ProductCardProps) => { - const { t } = useTranslation("common") - - return ( - -
- {alt} -
- - {githubRepoStars > 0 && ( - - )} -

0 ? "mt-8" : "mt-12" - )} - > - {name} -

- {description && ( -

{description}

- )} - {note.length > 0 && ( -

Note: {note}

- )} - {children &&
{children}
} -
- - {subjects && - subjects.map((subject, idx) => ( - - {subject} - - ))} - {priceType && ( - {priceType} - )} - {githubRepoLanguages.length > 0 && - githubRepoLanguages.map((name, idx: number) => ( - - {name.toUpperCase()} - - ))} - - - {t("open")} {name} - -
- ) -} - -export default ProductCard diff --git a/src/data/frameworks.ts b/src/data/frameworks.ts deleted file mode 100644 index a49e6407df7..00000000000 --- a/src/data/frameworks.ts +++ /dev/null @@ -1,87 +0,0 @@ -import type { Framework } from "@/lib/interfaces" - -import EthDiamondBlackImage from "@/public/images/assets/eth-diamond-black.png" -import FoundryImage from "@/public/images/dev-tools/foundry.png" -import HardhatImage from "@/public/images/dev-tools/hardhat.png" -import KurtosisImage from "@/public/images/dev-tools/kurtosis.png" -import ScaffoldEthImage from "@/public/images/dev-tools/scaffoldeth.png" - -export const frameworksList: Array = [ - { - id: "Kurtosis Ethereum Package", - url: "https://github.com/kurtosis-tech/ethereum-package", - githubUrl: "https://github.com/kurtosis-tech/ethereum-package", - background: "#000000", - name: "Kurtosis Ethereum Package", - description: - "page-developers-local-environment:page-local-environment-kurtosis-desc", - alt: "page-developers-local-environment:page-local-environment-kurtosis-logo-alt", - image: KurtosisImage, - }, - { - id: "hardhat", - url: "https://hardhat.org/", - githubUrl: "https://github.com/nomiclabs/hardhat", - background: "#faf8fb", - name: "Hardhat", - description: - "page-developers-local-environment:page-local-environment-hardhat-desc", - alt: "page-developers-local-environment:page-local-environment-hardhat-logo-alt", - image: HardhatImage, - }, - { - id: "brownie", - url: "https://github.com/eth-brownie/brownie", - githubUrl: "https://github.com/eth-brownie/brownie", - background: "#ffffff", - name: "Brownie", - description: - "page-developers-local-environment:page-local-environment-brownie-desc", - alt: "page-developers-local-environment:page-local-environment-brownie-logo-alt", - image: EthDiamondBlackImage, - }, - { - id: "createethapp", - url: "https://github.com/PaulRBerg/create-eth-app", - githubUrl: "https://github.com/PaulRBerg/create-eth-app", - background: "#ffffff", - name: "Create Eth App", - description: - "page-developers-local-environment:page-local-environment-eth-app-desc", - alt: "page-developers-local-environment:page-local-environment-eth-app-logo-alt", - image: EthDiamondBlackImage, - }, - { - id: "scaffoldeth", - url: "https://scaffoldeth.io/", - githubUrl: "https://github.com/scaffold-eth/scaffold-eth-2", - background: "#ffffff", - name: "Scaffold-ETH-2", - description: - "page-developers-local-environment:page-local-environment-scaffold-eth-desc", - alt: "page-local-environment-scaffold-eth-logo-alt", - image: ScaffoldEthImage, - }, - { - id: "soliditytemplate", - url: "https://github.com/paulrberg/solidity-template", - githubUrl: "https://github.com/paulrberg/solidity-template", - background: "#ffffff", - name: "Solidity template", - description: - "page-developers-local-environment:page-local-environment-solidity-template-desc", - alt: "page-developers-local-environment:page-local-environment-solidity-template-logo-alt", - image: EthDiamondBlackImage, - }, - { - id: "foundry", - url: "https://getfoundry.sh/", - githubUrl: "https://github.com/foundry-rs/foundry", - background: "#ffffff", - name: "Foundry", - description: - "page-developers-local-environment:page-local-environment-foundry-desc", - alt: "page-developers-local-environment:page-local-environment-foundry-logo-alt", - image: FoundryImage, - }, -] diff --git a/src/intl/ar/page-developers-learning-tools.json b/src/intl/ar/page-developers-learning-tools.json deleted file mode 100644 index 337920e89c2..00000000000 --- a/src/intl/ar/page-developers-learning-tools.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "page-learning-tools-bloomtech-description": "دورة BloomTech Web3 سوف تعلمك المهارات التي يبحث عنها أرباب العمل لدى المهندسين.", - "page-learning-tools-bloomtech-logo-alt": "شعار BlommTech", - "page-learning-tools-bootcamps": "معسكرات تدريب المبرمجين", - "page-learning-tools-bootcamps-desc": "دورات مدفوعة عبر الإنترنت لتحصل على أحدث التطورات بسرعة.", - "page-learning-tools-browse-docs": "تصفح المستندات", - "page-learning-tools-capture-the-ether-description": "Capture the Ether (احصل على عملات الإثير) هي لعبة تقوم فيها باختراق عقود إثيريوم الذكية للتعرف على الأمان.", - "page-learning-tools-capture-the-ether-logo-alt": "شعار Capture the Ether", - "page-learning-tools-coding": "تعلم عن طريق البرمجة", - "page-learning-tools-coding-subtitle": "هذه الأدوات ستساعدك على تجربة إيثيريوم إذا كنت تفضل تجربة تعلم أكثر تفاعلية.", - "page-learning-tools-consensys-academy-description": "معسكر تدريبي لمبرمجي إثيريوم على الإنترنت.", - "page-learning-tools-consensys-academy-logo-alt": "شعار ConsenSys Academy", - "page-learning-tools-cryptozombies-description": "تعلم لغة Solidity من خلال بناء لعبة زومبي خاصة بك.", - "page-learning-tools-cryptozombies-logo-alt": "شعار CryptoZombies", - "page-learning-tools-documentation": "تعلم بالتوثيق", - "page-learning-tools-documentation-desc": "هل ترغب في معرفة المزيد؟ انتقل إلى توثيقاتنا للعثور على التفسيرات التي تحتاج إليها.", - "page-learning-tools-eth-dot-build-description": "بيئة اختبار معزولة تعليمية لشبكة web3، بما في ذلك برمجة السحب والإفلات وكتل البناء مفتوحة المصدر.", - "page-learning-tools-eth-dot-build-logo-alt": "شعار Eth.build", - "page-learning-tools-ethernauts-description": "أتم المستويات بقرصنة عقود ذكية.", - "page-learning-tools-ethernauts-logo-alt": "شعار Ethernauts", - "page-learning-tools-metaschool-description": "أصبح مبرمجًا للإصدار الثالث من الويب من خلال إنشاء التطبيقات اللامركزية وشحنها.", - "page-learning-tools-metaschool-logo-alt": "شعار metaschool", - "page-learning-tools-game-tutorials": "تعليمات استخدام الألعاب التفاعلية", - "page-learning-tools-game-tutorials-desc": "تعلم وأنت تلعب. هده التعليمات البرمجية تمكنك من الحصول على الأساسيات باستخدام اللعب.", - "page-learning-tools-meta-desc": "أدوات البرمجة القائمة على الويب وتجارب التعلم التفاعلي لمساعدتك على تجربة تطوير إثيريوم.", - "page-learning-tools-meta-title": "أدوات تعلم المبرمج", - "page-learning-tools-questbook-description": "تعليمات استخدام ذاتية تحديد السرعة لتعلم Web 3.0 من خلال الإنشاء", - "page-learning-tools-questbook-logo-alt": "شعار Questbook", - "page-learning-tools-remix-description": "طوّر العقود الذكية في اثيريوم وانشرها وأدرها. اتبع تعليمات الاستخدام مع ملحق LearnEth.", - "page-learning-tools-remix-description-2": "Remix وReplit وChainIDE ليست مجرد بيئات اختبار معزولة — العديد من المبرمجين يكتبون ويجمعون وينشرون عقودهم الذكية باستخدامها.", - "page-learning-tools-replit-description": "بيئة تطوير قابلة للتخصيص لإثيريوم، مع فعالية التحميل، والتحقق من الأخطاء، ودعم قوي لشبكات التجريب.", - "page-learning-tools-chainIDE-description": "ابدأ رحلتك إلى Web3 بكتابة العقود الذكية لإثيريوم باستخدام ChainIDE. استخدم القوالب المدمجة للتعلّم وتوفير الوقت.", - "page-learning-tools-chainIDE-logo-alt": "شعار ChainIDE", - "page-learning-tools-tenderly-description": "Tenderly Sandbox هي بيئة نموذجية حيث يمكنك كتابة العقود الذكية وتنفيذها وتصحيحها في المتصفح باستخدام سوليديتي وجافا سكريبت.", - "page-learning-tools-tenderly-logo-alt": "شعار Tenderly", - "page-learning-tools-replit-logo-alt": "شعار Replit", - "page-learning-tools-remix-logo-alt": "شعار Remix", - "page-learning-tools-sandbox": "إنشاء النص البرمجي لبيئات الاختبار المعزولة", - "page-learning-tools-sandbox-desc": "إن بيئات الاختبار المعزولة هذه ستعطيك مجالاً للتجريب وكتابة العقود الذكية وفهم إثيريوم.", - "page-learning-tools-speed-run-ethereum-description": "Speed Run Ethereum هي مجموعة من التحديات لاختبار معرفتك بلغة سوليديتي باستخدام Scaffold-ETH", - "page-learning-tools-speed-run-ethereum-logo-alt": "شعار Speed Run Ethereum", - "page-learning-tools-studio-description": "بيئة تطوير متكامل قائمة على المتصفح حيث يمكنك تتبع تعليمات الاستخدام لبناء واختبار العقود الذكية، وبناء الواجهة الأمامية لها.", - "page-learning-tools-vyperfun-description": "تعلم بناء Vyper وأنت تبني لعبة البوكيمون الخاصة بك.", - "page-learning-tools-vyperfun-logo-alt": "شعار Vyper.fun", - "page-learning-tools-nftschool-description": "استكشف ما يحدث مع الرموز غير القابلة للاستبدال أو NFT من الجانب الفني.", - "page-learning-tools-nftschool-logo-alt": "شعار مدرسة NFT", - "page-learning-tools-platzi-description": "تعلّم كيفية إنشاء تطبيقات لامركزية على Web3 وأتقن جميع المهارات اللازمة لتكون مبرمج سلسلة الكتل.", - "page-learning-tools-platzi-logo-alt": "شعار Platzi", - "page-learning-tools-alchemy-university-description": "طوِّر حياتك المهنية في Web3 من خلال الدورات التدريبية والمشاريع والتعليمات البرمجية.", - "page-learning-tools-alchemy-university-logo-alt": "شعار Alchemy University", - "alt-eth-blocks": "صورة توضيحية لكتل منظمة على شكل شعار ETH" -} \ No newline at end of file diff --git a/src/intl/ar/page-developers-local-environment.json b/src/intl/ar/page-developers-local-environment.json deleted file mode 100644 index 439b2c32988..00000000000 --- a/src/intl/ar/page-developers-local-environment.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "page-local-environment-brownie-desc": "إطار عمل للتطوير والاختبار قائم على Python للعقود الذكية التي تستهدف جهاز إثيريوم الظاهري.", - "page-local-environment-brownie-logo-alt": "شعار Brownie", - "page-local-environment-kurtosis-desc": "مجموعة أدوات قائمة على الحاوية لسهولة تكوين شبكة تجريب اثيريوم متعددة العملاء وتثبيتها لتطوير التطبيقات اللامركزية المحلية ونمذجتها الأولية وتجربتها.", - "page-local-environment-kurtosis-logo-alt": "شعار Kurtosis", - "page-local-environment-epirus-desc": "منصة لتطوير تطبيقات سلسلة الكتل ونشرها ومراقبتها على جهاز جافا الظاهري.", - "page-local-environment-epirus-logo-alt": "شعار\tEpirus", - "page-local-environment-eth-app-desc": "إنشاء تطبيقات تعمل بتشغيل إثيريوم بأمر واحد. يأتي مع عرض واسع لأطر واجهة المستخدم وقوالب DeFi للاختيار منها.", - "page-local-environment-eth-app-logo-alt": "إنشاء شعار تطبيق إثير", - "page-local-environment-foundry-desc": "مجموعة أدوات فائقة السرعة ومحمولة ونموذجية لتطوير تطبيقات إثيريوم مكتوبة بلغة رست.", - "page-local-environment-foundry-logo-alt": "شعار Foundry", - "page-local-environment-framework-feature-1": "الميزات لتدوير مثيل سلسلة كتل محلي.", - "page-local-environment-framework-feature-2": "أدوات مساندة لتجميع واختبار العقود الذكية الخاصة بك.", - "page-local-environment-framework-feature-3": "إضافات وتطوير العميل لإنشاء تطبيق موجه للمستخدم الخاص بك داخل نفس المشروع/المستودع.", - "page-local-environment-framework-feature-4": "التكوين للاتصال بشبكات إثيريوم ونشر العقود، سواء كان ذلك على سبيل التشغيل المحلي، أو على إحدى الشبكات العامة في إثيريوم.", - "page-local-environment-framework-feature-5": "توزيع التطبيق اللامركزي - التكامل مع خيارات التخزين مثل IPFS.", - "page-local-environment-framework-features": "وتأتي هذه الأطر مع الكثير من الوظائف غير المألوفة، مثل:", - "page-local-environment-frameworks-desc": " نوصي باختيار إطار عمل، خاصة إذا كنت فقط قد بدأت. بناء تطبيق كامل يتطلب قطع مختلفة من التكنولوجيا. تتضمن أطر العمل العديد من الميزات المطلوبة أو توفر أنظمة إضافات سهلة لاختيار الأدوات التي تريدها.", - "page-local-environment-frameworks-title": "أطر وحزم مصنوعة مسبقًا", - "page-local-environment-hardhat-desc": "Hardhat هو بيئة تطوير إثيريوم للمهنيين.", - "page-local-environment-hardhat-logo-alt": "شعار Hardhat", - "page-local-environment-openZeppelin-desc": "توفير ساعات من وقت التطوير عن طريق تجميع وترقية ونشر وتفاعل مع العقود الذكية مع CLI لدينا.", - "page-local-environment-openZeppelin-logo-alt": "شعار OpenZeppelin", - "page-local-environment-scaffold-eth-desc": "Ethers + Hardhat + React: كل ما تحتاج إليه للبدء في إنشاء التطبيقات اللامركزية التي يتم تشغيلها بواسطة العقود الذكية.", - "page-local-environment-scaffold-eth-logo-alt": "شعار scaffold-eth", - "page-local-environment-setup-meta-desc": "دليل حول كيفية اختيار مجموعة البرامج الخاصة بك لتطوير إثيريوم.", - "page-local-environment-setup-meta-title": "إعداد التطوير المحلي لإثيريوم", - "page-local-environment-setup-subtitle": "إذا كنت على استعداد لبدء البناء، فقد حان الوقت لاختيار الحزمة الخاصة بك.", - "page-local-environment-setup-subtitle-2": "إليك الأدوات وأطر العمل التي يمكنك استخدامها لمساعدتك في بناء تطبيق إثيريوم الخاص بك.", - "page-local-environment-setup-title": "إعداد بيئة التنمية المحلية الخاصة بك", - "page-local-environment-solidity-template-desc": "قالب GitHub للإعداد المسبق البناء للعقود الذكية للغة Solidity الخاصة بك. يشمل شبكة Hardhat المحلية، ووافل للاختبارات، وعملات إثير لتنفيذ المحفظة، وأكثر من ذلك.", - "page-local-environment-solidity-template-logo-alt": "شعار قالب Solidity" -} \ No newline at end of file diff --git a/src/intl/bn/page-developers-learning-tools.json b/src/intl/bn/page-developers-learning-tools.json deleted file mode 100644 index 3c210936d39..00000000000 --- a/src/intl/bn/page-developers-learning-tools.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "page-learning-tools-bloomtech-description": "BloomTech Web3 কোর্সটি আপনাকে শেখাবে যে দক্ষতা নিয়োগকারীরা ইঞ্জিনিয়ারদের জন্য খোঁজেন।", - "page-learning-tools-bloomtech-logo-alt": "BloomTech লোগো", - "page-learning-tools-bootcamps": "ডেভেলপার বুটক্যাম্প সমূহ", - "page-learning-tools-bootcamps-desc": "আপনাকে দ্রুত নিয়ে যেতে পেইড অনলাইন কোর্স।", - "page-learning-tools-browse-docs": "নথিসমূহ ব্রাউজ করুন", - "page-learning-tools-capture-the-ether-description": "ক্যাপচার দ্য ইথার এমন একটি গেম যেখানে আপনি নিরাপত্তা সম্পর্কে জানতে ইথেরিয়াম স্মার্ট কন্ট্র্যাক্ট হ্যাক করেন।", - "page-learning-tools-capture-the-ether-logo-alt": "ক্যাপচার দ্য ইথার লোগো", - "page-learning-tools-coding": "কোডিং-এর সাহায্যে শিখুন", - "page-learning-tools-coding-subtitle": "আপনি যদি আরও ইন্টারেক্টিভ শেখার অভিজ্ঞতা পছন্দ করেন তবে এই টুলগুলি আপনাকে ইথেরিয়াম নিয়ে পরীক্ষা করতে সহায়তা করবে।", - "page-learning-tools-consensys-academy-description": "অনলাইন ইথেরিয়াম ডেভেলপার বুটক্যাম্প.", - "page-learning-tools-consensys-academy-logo-alt": "ConsenSys Academy লোগো", - "page-learning-tools-cryptozombies-description": "আপনার নিজস্ব জম্বি গেম তৈরি করে সলিডিটি শিখুন.", - "page-learning-tools-cryptozombies-logo-alt": "CryptoZombies লোগো", - "page-learning-tools-documentation": "নথিপত্রের মাধ্যমে শিখুন", - "page-learning-tools-documentation-desc": "আরো জানতে চান? আপনার প্রয়োজনীয় ব্যাখ্যাগুলি খুঁজতে আমাদের নথিপত্রে যান।", - "page-learning-tools-eth-dot-build-description": "ড্র্যাগ-এন্ড-ড্রপ প্রোগ্রামিং এবং ওপেন-সোর্স বিল্ডিং ব্লক সহ web3-এর জন্য একটি শিক্ষামূলক স্যান্ডবক্স।", - "page-learning-tools-eth-dot-build-logo-alt": "Eth.build লোগো", - "page-learning-tools-ethernauts-description": "স্মার্ট কন্ট্র্যাক্ট হ্যাক করে স্তরগুলি সম্পূর্ণ করুন।", - "page-learning-tools-ethernauts-logo-alt": "Ethernauts লোগো", - "page-learning-tools-metaschool-description": "dApps তৈরি এবং শিপিং করে একজন Web3 ডেভেলপার হয়ে উঠুন।", - "page-learning-tools-metaschool-logo-alt": "_metaschool লোগো", - "page-learning-tools-game-tutorials": "ইন্টারেক্টিভ গেমের টিউটোরিয়াল সমূহ", - "page-learning-tools-game-tutorials-desc": "খেলার সময় শিখুন। এই টিউটোরিয়ালগুলি আপনাকে গেমপ্লে ব্যবহার করে মৌলিক বিষয়গুলির মধ্যে দিয়ে যায়।", - "page-learning-tools-meta-desc": "ওয়েব-ভিত্তিক কোডিং টুলস এবং ইন্টারেক্টিভ শেখার অভিজ্ঞতা আপনাকে ইথেরিয়াম ডেভেলপমেন্ট নিয়ে পরীক্ষা করতে সাহায্য করে।", - "page-learning-tools-meta-title": "ডেভেলপার শিক্ষার টুলস", - "page-learning-tools-questbook-description": "তৈরি করার মাধ্যমে ওয়েব 3.0 শেখার জন্য স্ব গতিসম্পন্ন টিউটোরিয়াল", - "page-learning-tools-questbook-logo-alt": "Questbook লোগো", - "page-learning-tools-remix-description": "ইথেরিয়ামের জন্য স্মার্ট কন্ট্র্যাক্টগুলি ডেভেলপ, স্থাপন এবং পরিচালনা করুন। LearnEth প্লাগইন সহ টিউটোরিয়াল অনুসরণ করুন।", - "page-learning-tools-remix-description-2": "Remix, Replit এবং ChainIDE শুধু স্যান্ডবক্স নয়—ডেভেলপাররা সেগুলো ব্যবহার করে তাদের স্মার্ট কনট্র্যাক্ট লিখতে, কম্পাইল করতে এবং স্থাপন করতে পারে।", - "page-learning-tools-replit-description": "হট রিলোডিং, ত্রুটি পরীক্ষা এবং প্রথম-শ্রেণীর টেস্টনেট সমর্থন সহ ইথেরিয়ামের জন্য একটি কাস্টমাইজযোগ্য উন্নয়ন পরিবেশ।", - "page-learning-tools-chainIDE-description": "ChainIDE-এর মাধ্যমে ইথেরিয়ামের জন্য স্মার্ট কন্ট্র্যাক্ট লিখে Web3-এ আপনার যাত্রা শুরু করুন। শিখতে এবং সময় বাঁচাতে বিল্ট-ইন টেমপ্লেট ব্যবহার করুন।", - "page-learning-tools-chainIDE-logo-alt": "ChainIDE লোগো", - "page-learning-tools-tenderly-description": "Tenderly Sandbox হল একটি প্রোটোটাইপিং পরিবেশ যেখানে আপনি সলিডিটি এবং JavaScript ব্যবহার করে ব্রাউজারে স্মার্ট কনট্র্যাক্ট লিখতে, সম্পাদন করতে এবং ডিবাগ করতে পারেন।", - "page-learning-tools-tenderly-logo-alt": "Tenderly লোগো", - "page-learning-tools-replit-logo-alt": "Replit লোগো", - "page-learning-tools-remix-logo-alt": "Remix লোগো", - "page-learning-tools-sandbox": "কোড স্যান্ডবক্স সমূহ", - "page-learning-tools-sandbox-desc": "এই স্যান্ডবক্সগুলি আপনাকে স্মার্ট কন্ট্র্যাক্ট লিখতে এবং ইথেরিয়াম বোঝার সাথে পরীক্ষা করার জন্য একটি স্থান দিবে।", - "page-learning-tools-speed-run-ethereum-description": "Speed Run ইথেরিয়াম হলো Scaffold-ETH ব্যবহার করে আপনার সলিডিটি জ্ঞান পরীক্ষা করার জন্য চ্যালেঞ্জের একটি সেট", - "page-learning-tools-speed-run-ethereum-logo-alt": "Speed Run ইথেরিয়াম লোগো", - "page-learning-tools-studio-description": "একটি ওয়েব-ভিত্তিক IDE যেখানে আপনি স্মার্ট কন্ট্র্যাক্ট গুলি তৈরি এবং পরীক্ষা করতে এবং তাদের জন্য একটি ফ্রন্টএন্ড তৈরি করতে টিউটোরিয়ালগুলি অনুসরণ করতে পারেন।", - "page-learning-tools-vyperfun-description": "আপনার নিজস্ব Pokémon গেম তৈরি করতে করতে Vyper শিখুন।", - "page-learning-tools-vyperfun-logo-alt": "Vyper.fun লোগো", - "page-learning-tools-nftschool-description": "প্রযুক্তিগত দিক থেকে নন-ফাঞ্জিবল টোকেন বা NFT গুলির সাথে কী ঘটছে তা অন্বেষণ করুন।", - "page-learning-tools-nftschool-logo-alt": "NFT school লোগো", - "page-learning-tools-platzi-description": "Web3-এ কীভাবে dapps তৈরি করতে হয় এবং ব্লকচেইন ডেভেলপার হওয়ার জন্য প্রয়োজনীয় সমস্ত দক্ষতা অর্জন করতে হয় তা শিখুন।", - "page-learning-tools-platzi-logo-alt": "Platzi লোগো", - "page-learning-tools-alchemy-university-description": "কোর্স, প্রজেক্ট এবং কোডের মাধ্যমে আপনার web3 ক্যারিয়ার ডেভেলপ করুন।", - "page-learning-tools-alchemy-university-logo-alt": "Alchemy University লোগো", - "alt-eth-blocks": "একটি ETH প্রতীকের মতো সংগঠিত ব্লকের চিত্র" -} \ No newline at end of file diff --git a/src/intl/bn/page-developers-local-environment.json b/src/intl/bn/page-developers-local-environment.json deleted file mode 100644 index 716a29e3709..00000000000 --- a/src/intl/bn/page-developers-local-environment.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "page-local-environment-brownie-desc": "ইথেরিয়াম ভার্চুয়াল মেশিনকে লক্ষ্য করে স্মার্ট কন্ট্র্যাক্ট একটি পাইথন-ভিত্তিক ডেভেলপমেন্ট এবং পরীক্ষার কাঠামো।", - "page-local-environment-brownie-logo-alt": "Brownie লোগো", - "page-local-environment-kurtosis-desc": "দ্রুত স্থানীয় dApp ডেভেলপমেন্ট, প্রোটোটাইপিং এবং পরীক্ষার জন্য একটি মাল্টি-ক্লায়েন্ট ইথেরিয়াম টেস্টনেট সহজেই কনফিগার এবং স্পিন করার জন্য একটি ধারক-ভিত্তিক টুলকিট।", - "page-local-environment-kurtosis-logo-alt": "Kurtosis লোগো", - "page-local-environment-epirus-desc": "জাভা ভার্চুয়াল মেশিনে ব্লকচেইন অ্যাপ্লিকেশনগুলি ডেভেলপ, স্থাপন এবং পর্যবেক্ষণের জন্য একটি প্ল্যাটফর্ম।", - "page-local-environment-epirus-logo-alt": "Epirus লোগো", - "page-local-environment-eth-app-desc": "একটি কমান্ড দিয়ে ইথেরিয়াম-চালিত অ্যাপ তৈরি করুন। বেছে নেওয়ার জন্য UI ফ্রেমওয়ার্ক এবং DeFi টেমপ্লেটের বিস্তৃত অফার সহ আসে।", - "page-local-environment-eth-app-logo-alt": "Eth অ্যাপ লোগো তৈরি করুন", - "page-local-environment-foundry-desc": "রাস্ট-এ লেখা ইথেরিয়াম অ্যাপ্লিকেশন ডেভেলপমেন্টের জন্য একটি জ্বলন্ত দ্রুত, বহনযোগ্য এবং মডুলার টুলকিট।", - "page-local-environment-foundry-logo-alt": "Foundry লোগো", - "page-local-environment-framework-feature-1": "একটি স্থানীয় ব্লকচেইন মুহুর্তে স্পিন আপ করার ফিচারসমূহ।", - "page-local-environment-framework-feature-2": "আপনার স্মার্ট কন্ট্র্যাক্ট গুলি কম্পাইল এবং পরীক্ষা করার ইউটিলিটি সমূহ।", - "page-local-environment-framework-feature-3": "একই প্রকল্প/রিপোজেটরি -র মধ্যে আপনার ব্যবহারকারী-মুখী অ্যাপ্লিকেশন তৈরি করতে ক্লায়েন্ট ডেভেলপমেন্ট অ্যাড-অন।", - "page-local-environment-framework-feature-4": "ইথেরিয়াম নেটওয়ার্কের সাথে সংযোগ এবং কনট্র্যাক্টসমূহ স্থাপন করতে কনফিগারেশন, স্থানীয়ভাবে চলমান অবস্থায় বা ইথেরিয়াম-এর পাবলিক নেটওয়ার্কগুলির একটিতে।", - "page-local-environment-framework-feature-5": "বিকেন্দ্রীভূত অ্যাপ বিতরণ - IPFS এর মতো স্টোরেজ বিকল্পগুলির সাথে সমন্বয়।", - "page-local-environment-framework-features": "এই ফ্রেমওয়ার্কগুলি অনেকগুলি আউট-অফ-দ্য-বক্স কার্যকারিতার সাথে আসে, যেমন:", - "page-local-environment-frameworks-desc": "আমরা একটি ফ্রেমওয়ার্ক বাছাই করার পরামর্শ দিই, বিশেষ করে যদি আপনি সবেমাত্র শুরু করে থাকেন। একটি পূর্ণাঙ্গ dapp তৈরি করতে বিভিন্ন প্রযুক্তির প্রয়োজন হয়। ফ্রেমওয়ার্কগুলিতে প্রয়োজনীয় অনেকগুলি বৈশিষ্ট্য অন্তর্ভুক্ত থাকে বা আপনার ইচ্ছামত টুলস বেছে নেওয়ার জন্য সহজ প্লাগইন সিস্টেম প্রদান করে।", - "page-local-environment-frameworks-title": "ফ্রেমওয়ার্কগুলো এবং পূর্ব-তৈরিকৃত স্ট্যাক সমূহ", - "page-local-environment-hardhat-desc": "Hardhat পেশাদারদের জন্য একটি ইথেরিয়াম উন্নয়ন পরিবেশ।", - "page-local-environment-hardhat-logo-alt": "Hardhat লোগো", - "page-local-environment-openZeppelin-desc": "আমাদের CLI এর সাথে স্মার্ট কন্ট্রাক্ট কম্পাইল, আপগ্রেড, ডিপ্লোয়িং এবং ইন্টারঅ্যাক্ট করে কয়েক ঘন্টা ডেভেলপমেন্টের সময় বাঁচান।", - "page-local-environment-openZeppelin-logo-alt": "OpenZeppelin লোগো", - "page-local-environment-scaffold-eth-desc": "ইথার + হার্ডহ্যাট + রিয়্যাক্ট: স্মার্ট কনট্র্যাক্ট দ্বারা চালিত বিকেন্দ্রীভূত অ্যাপ্লিকেশনগুলি তৈরি করা শুরু করতে আপনার যা প্রয়োজন।", - "page-local-environment-scaffold-eth-logo-alt": "scaffold-eth লোগো", - "page-local-environment-setup-meta-desc": "ইথেরিয়াম ডেভেলপের জন্য আপনার সফ্টওয়্যার স্ট্যাক কীভাবে বাছাই করবেন তার নির্দেশিকা।", - "page-local-environment-setup-meta-title": "ইথেরিয়াম স্থানীয় উন্নয়ন সেটআপ", - "page-local-environment-setup-subtitle": "আপনি যদি বিল্ডিং শুরু করতে প্রস্তুত হন, তাহলে আপনার স্ট্যাক বেছে নেওয়ার সময় এসেছে।", - "page-local-environment-setup-subtitle-2": "আপনার ইথেরিয়াম অ্যাপ্লিকেশন তৈরি করতে সাহায্য করার জন্য আপনি যে টুলস এবং ফ্রেমওয়ার্ক ব্যবহার করতে পারেন তা এখানে রয়েছে।", - "page-local-environment-setup-title": "আপনার স্থানীয় উন্নয়ন পরিবেশ সেট আপ করুন", - "page-local-environment-solidity-template-desc": "আপনার সলিডিটি স্মার্ট কনট্র্যাক্টের একটি পূর্ব-নির্মিত সেটআপের জন্য একটি GitHub টেমপ্লেট। একটি Hardhat স্থানীয় নেটওয়ার্ক, পরীক্ষার জন্য Waffle, ওয়ালেট বাস্তবায়নের জন্য Ethers এবং আরও অনেক কিছু অন্তর্ভুক্ত।", - "page-local-environment-solidity-template-logo-alt": "Solidity template লোগো" -} \ No newline at end of file diff --git a/src/intl/cs/page-developers-learning-tools.json b/src/intl/cs/page-developers-learning-tools.json deleted file mode 100644 index 413c23d42f7..00000000000 --- a/src/intl/cs/page-developers-learning-tools.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "page-learning-tools-bloomtech-description": "Kurz BloomTech Web3 vás naučí dovednostem, které zaměstnavatelé u inženýrů hledají.", - "page-learning-tools-bloomtech-logo-alt": "Logo BloomTech", - "page-learning-tools-bootcamps": "Vývojářské bootcampy", - "page-learning-tools-bootcamps-desc": "Placené online kurzy, které vás rychle uvedou do obrazu.", - "page-learning-tools-browse-docs": "Procházet dokumentaci", - "page-learning-tools-capture-the-ether-description": "Capture the Ether je hra, ve které se učíte o zabezpečení Etherea hackováním chytrých kontraktů.", - "page-learning-tools-capture-the-ether-logo-alt": "Logo Capture the Ether", - "page-learning-tools-node-guardians-description": "Node Guardians je gamifikovaná vzdělávací platforma, kde se web3 vývojáři setkají s úkoly s fantasy tématikou, které jim pomohou ovládnout programování v jazycích Solidity, Cairo, Noir a Huff.", - "page-learning-tools-node-guardians-logo-alt": "Logo Node Guardians", - "page-learning-tools-coding": "Učte se psaním kódu", - "page-learning-tools-coding-subtitle": "Tyto nástroje vám pomohou experimentovat s Ethereem, pokud dáváte přednost interaktivnějšímu vzdělávání.", - "page-learning-tools-consensys-academy-description": "On-line bootcamp pro vývojáře Etherea.", - "page-learning-tools-consensys-academy-logo-alt": "Logo ConsenSys Academy", - "page-learning-tools-cryptozombies-description": "Naučte se Solidity při vytváření vlastní zombie hry.", - "page-learning-tools-cryptozombies-logo-alt": "Logo CryptoZombies", - "page-learning-tools-dapp-world-description": "Ekosystém pro zvyšování kvalifikace blockchainu, včetně kurzů, kvízů, praktických cvičení a týdenních soutěží.", - "page-learning-tools-dapp-world-logo-alt": "Logo Dapp World", - "page-learning-tools-documentation": "Učte se pomocí dokumentace", - "page-learning-tools-documentation-desc": "Chcete se dozvědět více? Přejděte do naší dokumentace a najděte si vysvětlení, která potřebujete.", - "page-learning-tools-eth-dot-build-description": "Vzdělávací sandbox pro web3, včetně drag-and-drop programování a open-source stavebních bloků.", - "page-learning-tools-eth-dot-build-logo-alt": "Logo Eth.build", - "page-learning-tools-ethernauts-description": "Dokončete úrovně hackováním chytrých kontraktů.", - "page-learning-tools-ethernauts-logo-alt": "Logo Ethernauts", - "page-learning-tools-metaschool-description": "Staňte se vývojářem Web3 tím, že budete vytvářet a dodávat dappky.", - "page-learning-tools-metaschool-logo-alt": "_metaschool logo", - "page-learning-tools-game-tutorials": "Interaktivní vzdělávání hrou", - "page-learning-tools-game-tutorials-desc": "Učte se hrou. Tyto výukové kurzy vás provedou začátky, zatímco si budete hrát.", - "page-learning-tools-meta-desc": "Webové programovací nástroje a interaktivní získávání zkušeností, které vám pomohou experimentovat s vývojem na platformě Ethereum.", - "page-learning-tools-meta-title": "Vzdělávací nástroje pro vývojáře", - "page-learning-tools-atlas-logo-alt": "Logo Atlas", - "page-learning-tools-atlas-description": "Pište, testujte a publikujte chytré kontrakty během několika minut pomocí Atlas IDE.", - "page-learning-tools-questbook-description": "Tutoriály k Webu 3.0, kde vytváříte projekty vlastním tempem.", - "page-learning-tools-questbook-logo-alt": "Logo Questbook", - "page-learning-tools-remix-description": "Vyvíjejte, spouštějte a spravujte chytré kontrakty na Ethereu. Sledujte výukové kurzy s pluginem LearnEth.", - "page-learning-tools-remix-description-2": "Remix, Replit, ChainIDE a Atlas nejsou jen sandboxy – vývojáři v nich mohou psát, kompilovat a publikovat své chytré kontrakty.", - "page-learning-tools-replit-description": "Přizpůsobitelné vývojové prostředí pro Ethereum s okamžitým znovunačtením, kontrolou chyb a prvotřídní podporou testovací sítě.", - "page-learning-tools-chainIDE-description": "Začněte svou cestu na Web3 psaním chytrých kontraktů pro Ethereum pomocí ChainIDE. Používejte vestavěné šablony, díky kterým se naučíte a ušetříte čas.", - "page-learning-tools-chainIDE-logo-alt": "Logo ChainIDE", - "page-learning-tools-tenderly-description": "Tenderly Sandbox je prototypové prostředí, kde můžete psát, spouštět a ladit chytré kontrakty v prohlížeči pomocí programovacího jazyka Solidity a JavaScriptu.", - "page-learning-tools-tenderly-logo-alt": "Logo Tenderly", - "page-learning-tools-replit-logo-alt": "Logo Replit", - "page-learning-tools-remix-logo-alt": "Logo Remix", - "page-learning-tools-sandbox": "Kódové sandboxy", - "page-learning-tools-sandbox-desc": "Tyto sandboxy vám dají prostor k experimentování s psaním chytrých kontraktů a porozumění Ethereu.", - "page-learning-tools-speed-run-ethereum-description": "Speed Run Ethereum je sada výzev, které otestují vaše znalosti programovacího jazyka Solidity pomocí Scaffold-ETH", - "page-learning-tools-speed-run-ethereum-logo-alt": "Logo Speed Run Ethereum", - "page-learning-tools-studio-description": "Webové IDE, kde můžete sledovat návody k vytvoření a otestování chytrých kontraktů a vytvořit pro ně web.", - "page-learning-tools-vyperfun-description": "Naučte se Vyper tím, že vytvoříte vlastní hru s Pokémony.", - "page-learning-tools-vyperfun-logo-alt": "Logo Vyper.fun", - "page-learning-tools-nftschool-description": "Zjistěte, jak fungují NFT (nezaměnitelné tokeny) z technického hlediska.", - "page-learning-tools-nftschool-logo-alt": "Logo NFT school", - "page-learning-tools-platzi-description": "Naučte se vytvářet Web3 dappky a osvojte si všechny dovednosti potřebné pro blockchain vývojáře.", - "page-learning-tools-platzi-logo-alt": "Logo Platzi", - "page-learning-tools-alchemy-university-description": "Rozvíjejte svou kariéru v oblasti web3 prostřednictvím kurzů, projektů a kódu.", - "page-learning-tools-alchemy-university-logo-alt": "Logo Alchemy University", - "page-learning-tools-learnweb3-description": "LearnWeb3 je bezplatná, vysoce kvalitní vzdělávací platforma, která vám umožní stát se expertem v oblasti vývoje web3.", - "page-learning-tools-learnweb3-logo-alt": "Logo LearnWeb3", - "page-learning-tools-cyfrin-updraft-description": "Naučte se vyvíjet chytré kontrakty pro všechny dovednostní úrovně a bezpečnostní audity.", - "page-learning-tools-cyfrin-updraft-logo-alt": "Logo Cyfrin Updraft", - "alt-eth-blocks": "Obrázek bloků sestavených jako symbol ETH" -} diff --git a/src/intl/cs/page-developers-local-environment.json b/src/intl/cs/page-developers-local-environment.json deleted file mode 100644 index 57dd8c1e5d0..00000000000 --- a/src/intl/cs/page-developers-local-environment.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "page-local-environment-brownie-desc": "Vývoj a testovací rámec pro vývoj chytrých kontraktů pro Virtuální stroj Etherea v Pythonu.", - "page-local-environment-brownie-logo-alt": "Logo Brownie", - "page-local-environment-kurtosis-desc": "Kontejnerová sada nástrojů pro snadnou konfiguraci a vytvoření testovací sítě Ethereum pro více klientů pro rychlý lokální vývoj, prototypování a testování dappky.", - "page-local-environment-kurtosis-logo-alt": "Logo Kurtosis", - "page-local-environment-epirus-desc": "Platforma k vyvíjení, nasazení a monitorování aplikací pro blockchain v Java Virtual Machine.", - "page-local-environment-epirus-logo-alt": "Logo Espirus", - "page-local-environment-eth-app-desc": "Vytvořte aplikace pro Ethereum jedním příkazem. Můžete si vybrat ze široké nabídky UI frameworků a DeFi šablon.", - "page-local-environment-eth-app-logo-alt": "Logo Create Eth App", - "page-local-environment-foundry-desc": "Rychlá, přenosná a modulární sada nástrojů pro vývoj aplikací pro Ethereum napsaná v jazyce Rust.", - "page-local-environment-foundry-logo-alt": "Logo Foundry", - "page-local-environment-framework-feature-1": "Funkce ke spuštění vlastního lokálního blockchainu.", - "page-local-environment-framework-feature-2": "Nástroje pro kompilaci a testování chytrých kontraktů.", - "page-local-environment-framework-feature-3": "Vývojové doplňky klienta, které vytvoří vaši uživatelskou aplikaci ve stejném projektu nebo repozitáři.", - "page-local-environment-framework-feature-4": "Konfigurace pro připojení k sítím Ethereum a nasazení kontraktů, ať už na místně běžící instanci, nebo v jedné z veřejných sítí Etherea.", - "page-local-environment-framework-feature-5": "Decentralizovaná distribuce aplikací. Integrace s možnostmi úložiště jako IPFS.", - "page-local-environment-framework-features": "Tyto rámce přicházejí s mnoha funkcemi mimo provoz, jako:", - "page-local-environment-frameworks-desc": " Doporučujeme vybrat rámec, zejména pokud teprve začínáte. Vytvoření plnohodnotné dappky vyžaduje několik různých technologií. Rámce zahrnují mnoho těchto potřebných funkcí nebo poskytují jednoduché plugin systémy, abyste si mohli vybrat nástroje, které chcete.", - "page-local-environment-frameworks-title": "Rámce a předpřipravené sady", - "page-local-environment-hardhat-desc": "Hardhat je prostředí pro vývoj Etherea pro profesionály.", - "page-local-environment-hardhat-logo-alt": "Logo Hardhat", - "page-local-environment-openZeppelin-desc": "Ušetřete hodiny času vývoje kompilací, vylepšením, nasazením a interakcí s chytrými kontrakty díky systému CLI.", - "page-local-environment-openZeppelin-logo-alt": "Logo OpenZeppelin", - "page-local-environment-scaffold-eth-desc": "Ethers + Hardhat + React: vše, co potřebujete, abyste mohli začít vytvářet decentralizované aplikace využívající chytré kontrakty.", - "page-local-environment-scaffold-eth-logo-alt": "Logo scaffold-eth", - "page-local-environment-setup-meta-desc": "Průvodce, jak si vybrat software pro vývoj Etherea.", - "page-local-environment-setup-meta-title": "Nastavení místního vývoje Etherea", - "page-local-environment-setup-subtitle": "Pokud jste připraveni začít stavět, je čas vybrat si stack (zásobník).", - "page-local-environment-setup-subtitle-2": " Tady jsou nástroje a rámce, které můžete použít k budování Vaší Ethereum aplikace.", - "page-local-environment-setup-title": "Nastavení vlastního místního vývojářského prostředí", - "page-local-environment-solidity-template-desc": "GitHub šablona pro předem vytvořené nastavení chytrých kontraktů Solidity. Zahrnuje místní síť Hardhat, Waffle pro testy, Ethery pro implementaci peněženky a další.", - "page-local-environment-solidity-template-logo-alt": "Logo Solidity template" -} \ No newline at end of file diff --git a/src/intl/de/page-developers-learning-tools.json b/src/intl/de/page-developers-learning-tools.json deleted file mode 100644 index a0d54d1a5ac..00000000000 --- a/src/intl/de/page-developers-learning-tools.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "page-learning-tools-bloomtech-description": "Der BloomTech Web3-Kurs vermittelt Ihnen die Fähigkeiten, die Arbeitgeber bei Ingenieuren suchen.", - "page-learning-tools-bloomtech-logo-alt": "BloomTech-Logo", - "page-learning-tools-bootcamps": "Entwickler-Bootcamps", - "page-learning-tools-bootcamps-desc": "Bezahlte Online-Kurse, um sich schnell auf den aktuellen Stand zu bringen.", - "page-learning-tools-browse-docs": "Dokumente durchsuchen", - "page-learning-tools-capture-the-ether-description": "Capture the Ether ist ein Spiel, in dem Sie Smart Contracts auf Ethereum hacken, um mehr über Sicherheit zu lernen.", - "page-learning-tools-capture-the-ether-logo-alt": "Erobern Sie das Ether-Logo", - "page-learning-tools-node-guardians-description": "Node Guardians ist eine Gamification-Bildungsplattform, mit der Web3-Entwickler anhand von Immersion in Quests im Fantasy-Stil lernen, Solidity-, Cairo-, Noir- und Huff-Programmierung zu beherrschen.", - "page-learning-tools-node-guardians-logo-alt": "Node Guardians-Logo", - "page-learning-tools-coding": "Lernen durch Programmieren", - "page-learning-tools-coding-subtitle": "Diese Tools werden Ihnen helfen, mit Ethereum zu experimentieren, wenn Sie ein eher interaktives Lernerlebnis bevorzugen.", - "page-learning-tools-consensys-academy-description": "Online Ethereum Entwickler-Bootcamp.", - "page-learning-tools-consensys-academy-logo-alt": "ConsenSys-Academy-Logo", - "page-learning-tools-cryptozombies-description": "Lerne Solidity bei der Erstellung Ihres eigenen Zombie-Spiels.", - "page-learning-tools-cryptozombies-logo-alt": "KryptoZombies-Logo", - "page-learning-tools-dapp-world-description": "Ein Blockchain-Upskilling-Ökosystem, das Kurse, Tests, praktischen Übungen und wöchentlichen Wettbewerbe umfasst.", - "page-learning-tools-dapp-world-logo-alt": "DApp-World-Logo", - "page-learning-tools-documentation": "Lernen mit Dokumentation", - "page-learning-tools-documentation-desc": "Sie möchten mehr lernen? Gehen Sie auf unsere Dokumentation, um die Anleitung zu erhalten, die Sie benötigen.", - "page-learning-tools-eth-dot-build-description": "Ein Lern-Sandkasten für web3, inklusive Drag-and-Drop-Programmierung und Open-Source-Bausteinen.", - "page-learning-tools-eth-dot-build-logo-alt": "Eth.build-Logo", - "page-learning-tools-ethernauts-description": "Beende Level durch das Hacken von Smart Contracts.", - "page-learning-tools-ethernauts-logo-alt": "Ethernauts-Logo", - "page-learning-tools-metaschool-description": "Werden Sie Web3-Entwickler durch das Erstellen und Liefern von dApps.", - "page-learning-tools-metaschool-logo-alt": "_Metaschool Logo", - "page-learning-tools-game-tutorials": "Interaktive Spielanleitungen", - "page-learning-tools-game-tutorials-desc": "Lernen Sie, während Sie spielen. Diese Tutorials leiten Sie mit Gameplay durch die Grundlagen.", - "page-learning-tools-meta-desc": "Webbasierte Programmierwerkzeuge und ein interaktives Lernerlebnis helfen Ihnen, mit der Entwicklung von Ethereum zu experimentieren.", - "page-learning-tools-meta-title": "Lernwerkzeuge für Entwickler", - "page-learning-tools-atlas-logo-alt": "Atlas-Logo", - "page-learning-tools-atlas-description": "Schreiben und testen Sie Smart Contracts und stellen Sie sie bereit – alles in wenigen Minuten mit Atlas IDE.", - "page-learning-tools-questbook-description": "Selbstbeschleunigte Tutorials zum Lernen von Web 3.0 durch die eigene Erstellung", - "page-learning-tools-questbook-logo-alt": "Questbook-Logo", - "page-learning-tools-remix-description": "Entwickeln, implementieren und verwalten Sie Smart Contracts für Ethereum. Folgen Sie Tutorials mit dem LearnEth-Plugin.", - "page-learning-tools-remix-description-2": "Remix, Replit, ChainIDE und Atlas sind nicht nur Sandboxes — Entwickler können mit ihnen ihre Smart Contracts schreiben, kompilieren und bereitstellen.", - "page-learning-tools-replit-description": "Eine anpassbare Entwicklungsumgebung für Ethereum mit Hot-Reload, Fehlerüberprüfung und erstklassigem Testnet-Support.", - "page-learning-tools-chainIDE-description": "Beginnen Sie mit dem Web3, indem Sie mit der ChainIDE Smart Contracts für Ethereum schreiben. Lernen Sie mit den integrierten Vorlagen mehr und sparen Sie Zeit.", - "page-learning-tools-chainIDE-logo-alt": "ChainIDE-Logo", - "page-learning-tools-tenderly-description": "Tenderly Sandbox ist eine Prototypen-Umgebung, in der Sie Smart Contracts im Browser mit Solidity und JavaScript schreiben, ausführen und Fehler in den Verträgen beheben können.", - "page-learning-tools-tenderly-logo-alt": "Tenderly-Logo", - "page-learning-tools-replit-logo-alt": "Replit-Logo", - "page-learning-tools-remix-logo-alt": "Remix-Logo", - "page-learning-tools-sandbox": "Code-Sandkästen", - "page-learning-tools-sandbox-desc": "Diese Sandkästen werden Ihnen den Raum geben, um mit dem Schreiben von Smart Contracts zu experimentieren und Ethereum zu verstehen.", - "page-learning-tools-speed-run-ethereum-description": "\"Speed Run Ethereum\" ist eine Serie an Herausforderungen zum Testen Ihrer Solidity-Kenntnisse mit Scaffold-ETH", - "page-learning-tools-speed-run-ethereum-logo-alt": "Speed Run Ethereum-Logo", - "page-learning-tools-studio-description": "Eine webbasierte IDE, wo Sie Tutorials verfolgen können, die zeigen, wie Smart Contracts erstellt und getestet werden und wie ein Frontend für diese erstellt wird.", - "page-learning-tools-vyperfun-description": "Lerne Vyper, indem Sie Ihr eigenes Pokémon-Spiel erstellen.", - "page-learning-tools-vyperfun-logo-alt": "Vyper.fun-Logo", - "page-learning-tools-nftschool-description": "Erkunde, was mit nicht fungiblen Token oder NFT von der technischen Seite aus geschieht.", - "page-learning-tools-nftschool-logo-alt": "NFT-school-Logo", - "page-learning-tools-platzi-description": "Erfahren Sie, wie Sie dApps auf Web3 erstellen, und erlernen Sie alle Fähigkeiten, die ein Blockchain-Entwickler benötigt.", - "page-learning-tools-platzi-logo-alt": "Platzi-Logo", - "page-learning-tools-alchemy-university-description": "Arbeiten Sie über Kurse, Projekte und Code an Ihrer Web3-Karriere.", - "page-learning-tools-alchemy-university-logo-alt": "Alchemy University-Logo", - "page-learning-tools-learnweb3-description": "LearnWeb3 ist eine kostenlose, hochwertige Bildungsplattform, um vom Anfänger zum Experten in der Web3-Entwicklung zu werden.", - "page-learning-tools-learnweb3-logo-alt": "LearnWeb3-Logo", - "page-learning-tools-cyfrin-updraft-description": "Erlernen Sie die Entwicklung von Smart Contracts für alle Fähigkeitsstufen sowie Sicherheitsüberprüfungen.", - "page-learning-tools-cyfrin-updraft-logo-alt": "Cyfrin Updraft-Logo", - "alt-eth-blocks": "Illustration von Blöcken, die wie ein ETH-Symbol angeordnet sind" -} diff --git a/src/intl/de/page-developers-local-environment.json b/src/intl/de/page-developers-local-environment.json deleted file mode 100644 index 0db4e66fbe9..00000000000 --- a/src/intl/de/page-developers-local-environment.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "page-local-environment-brownie-desc": "Ein auf Python basierendes Entwicklungs- und Test-Framework für Smart Contracts, die auf die Ethereum Virtual Machine abzielen.", - "page-local-environment-brownie-logo-alt": "Brownie-Logo", - "page-local-environment-kurtosis-desc": "Ein Container-basiertes Toolkit zur einfachen Konfiguration und Einrichtung eines mehrmandantenfähigen Ethereum-Testnetzes für die schnelle lokale dApp-Entwicklung, das Erstellen von Prototypen und Tests.", - "page-local-environment-kurtosis-logo-alt": "Kurtosis-Logo", - "page-local-environment-epirus-desc": "Eine Plattform zum Entwickeln, Bereitstellen und Überwachen von Blockchain-Anwendungen auf der Java Virtual Machine.", - "page-local-environment-epirus-logo-alt": "Epirus-Logo", - "page-local-environment-eth-app-desc": "Erstelle Ethereum-basierte Apps mit einem Befehl. Begleitet von einem breiten Angebot von UI-Frameworks und DeFi-Vorlagen, aus denen Sie auswählen können.", - "page-local-environment-eth-app-logo-alt": "Erstellen Sie ein Eth-App-Logo", - "page-local-environment-foundry-desc": "Ein schnelles, portierbares und modulares Toolkit für die Entwicklung von Ethereum-Anwendungen in der Programmiersprache Rust.", - "page-local-environment-foundry-logo-alt": "Foundry-Logo", - "page-local-environment-framework-feature-1": "Funktionen zum Aufsetzen einer lokalen Blockchain-Instanz.", - "page-local-environment-framework-feature-2": "Dienste zum Kompilieren und Testen von Smart Contracts.", - "page-local-environment-framework-feature-3": "Client-Entwicklungs-Add-ons zur Erstellung deiner anwenderorientierten Anwendung im selben Projekt/Projektarchiv.", - "page-local-environment-framework-feature-4": "Konfiguration für die Verbindung zu Ethereum-Netzwerken und dem Einsatz von Verträgen, sei es zu einer lokal laufenden Instanz oder zu einem öffentlichen Netzwerk von Ethereum.", - "page-local-environment-framework-feature-5": "Dezentralisierte App-Verteilung – Integration mit Speicheroptionen wie IPFS.", - "page-local-environment-framework-features": "Diese Frameworks verfügen über eine Vielzahl von Funktionen, wie zum Beispiel:", - "page-local-environment-frameworks-desc": "Wir empfehlen, ein Framework auszuwählen, besonders wenn Sie gerade erst anfangen. Das Aufbauen einer vollwertigen dApp erfordert unterschiedliche Technologien. Frameworks enthalten viele der benötigten Funktionen oder bieten einfache Plugin-Systeme, um die gewünschten Werkzeuge auszuwählen.", - "page-local-environment-frameworks-title": "Frameworks und vorgefertigte Stacks", - "page-local-environment-hardhat-desc": "Hardhat ist eine Ethereum-Entwicklungsumgebung für Profi-Anwender.", - "page-local-environment-hardhat-logo-alt": "Hardhat-Logo", - "page-local-environment-openZeppelin-desc": "Sparen Stunden an Entwicklungszeit, indem Sie über unsere CLI kompilieren, upgraden, veröffentlichen und mit Smart Contracts interagieren.", - "page-local-environment-openZeppelin-logo-alt": "OpenZeppelin-Logo", - "page-local-environment-scaffold-eth-desc": "Ether + Hardhat + React: Alles, was Sie brauchen, um mit der Entwicklung dezentraler Anwendungen auf Basis von Smart Contracts zu beginnen.", - "page-local-environment-scaffold-eth-logo-alt": "scaffold-eth-Logo", - "page-local-environment-setup-meta-desc": "Anleitung, wie Sie Ihren Software-Stack für die Ethereum-Entwicklung auswählen.", - "page-local-environment-setup-meta-title": "Ethereum – lokale Entwicklereinrichtung", - "page-local-environment-setup-subtitle": "Wenn Sie bereit sind, mit der Entwicklung zu beginnen, ist es Zeit, Ihren Stack auszuwählen.", - "page-local-environment-setup-subtitle-2": "Hier sind die Werkzeuge und Frameworks, die Sie zum Aufbau Deiner Ethereum-Anwendung verwenden können.", - "page-local-environment-setup-title": "Richten Sie Ihre lokale Entwicklungsumgebung ein", - "page-local-environment-solidity-template-desc": "Eine GitHub-Vorlage für eine vorgefertigte Einrichtung für Ihre Solidity-Smart-Contracts. Enthält ein lokales Hardhat-Netzwerk, Ethers für die Wallet-Implementierung und mehr.", - "page-local-environment-solidity-template-logo-alt": "Solidity-Vorlagen-Logo" -} diff --git a/src/intl/en/page-developers-learning-tools.json b/src/intl/en/page-developers-learning-tools.json deleted file mode 100644 index 9cbeac6fcdb..00000000000 --- a/src/intl/en/page-developers-learning-tools.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "page-learning-tools-bloomtech-description": "The BloomTech Web3 course will teach you the skills employers look for in engineers.", - "page-learning-tools-bloomtech-logo-alt": "BloomTech logo", - "page-learning-tools-bootcamps": "Developer bootcamps", - "page-learning-tools-bootcamps-desc": "Free or paid online courses to get you up to speed, fast.", - "page-learning-tools-browse-docs": "Browse docs", - "page-learning-tools-capture-the-ether-description": "Capture the Ether is a game in which you hack Ethereum smart contracts to learn about security.", - "page-learning-tools-capture-the-ether-logo-alt": "Capture the Ether logo", - "page-learning-tools-node-guardians-description": "Node Guardians is a gamified educational platform that immerses web3 developers in fantasy-themed quests to master Solidity, Cairo, Noir, and Huff programming.", - "page-learning-tools-node-guardians-logo-alt": "Node Guardians logo", - "page-learning-tools-coding": "Learn by coding", - "page-learning-tools-coding-subtitle": "These tools will help you experiment with Ethereum if you prefer a more interactive learning experience.", - "page-learning-tools-consensys-academy-description": "Online Ethereum developer bootcamp.", - "page-learning-tools-consensys-academy-logo-alt": "ConsenSys Academy logo", - "page-learning-tools-cryptozombies-description": "Learn Solidity building your own Zombie game.", - "page-learning-tools-cryptozombies-logo-alt": "CryptoZombies logo", - "page-learning-tools-dapp-world-description": "A blockchain upskilling ecosystem, including courses, quizzes, hands-on practice, and weekly contests.", - "page-learning-tools-dapp-world-logo-alt": "Dapp World logo", - "page-learning-tools-documentation": "Learn with documentation", - "page-learning-tools-documentation-desc": "Want to learn more? Go to our documentation to find the explanations you need.", - "page-learning-tools-eth-dot-build-description": "An educational sandbox for web3, including drag-and-drop programming and open-source building blocks.", - "page-learning-tools-eth-dot-build-logo-alt": "Eth.build logo", - "page-learning-tools-ethernauts-description": "Complete levels by hacking smart contracts.", - "page-learning-tools-ethernauts-logo-alt": "Ethernauts logo", - "page-learning-tools-metaschool-description": "Become a Web3 Developer by building & shipping dApps.", - "page-learning-tools-metaschool-logo-alt": "_metaschool logo", - "page-learning-tools-game-tutorials": "Interactive game tutorials", - "page-learning-tools-game-tutorials-desc": "Learn while you play. These tutorials get you through the basics using gameplay.", - "page-learning-tools-meta-desc": "Web-based coding tools and interactive learning experiences to help you experiment with Ethereum development.", - "page-learning-tools-meta-title": "Developer learning tools", - "page-learning-tools-atlas-logo-alt": "Atlas logo", - "page-learning-tools-atlas-description": "Write, test, and deploy smart contracts in minutes with the Atlas IDE.", - "page-learning-tools-questbook-description": "Self paced tutorials to learn Web 3.0 by building", - "page-learning-tools-questbook-logo-alt": "Questbook logo", - "page-learning-tools-remix-description": "Develop, deploy and administer smart contracts for Ethereum. Follow tutorials with the LearnEth plugin.", - "page-learning-tools-remix-description-2": "Remix, Replit, ChainIDE, and Atlas aren't just sandboxes—developers can write, compile and deploy their smart contracts using them.", - "page-learning-tools-replit-description": "A customizable development environment for Ethereum with hot reloading, error checking, and first-class testnet support.", - "page-learning-tools-chainIDE-description": "Get started on your journey to Web3 by writing smart contracts for Ethereum with ChainIDE. Use the built-in templates to learn and save time.", - "page-learning-tools-chainIDE-logo-alt": "ChainIDE logo", - "page-learning-tools-tenderly-description": "Tenderly Sandbox is a prototyping environment where you can write, execute, and debug smart contracts in the browser using Solidity and JavaScript.", - "page-learning-tools-tenderly-logo-alt": "Tenderly logo", - "page-learning-tools-replit-logo-alt": "Replit logo", - "page-learning-tools-remix-logo-alt": "Remix logo", - "page-learning-tools-sandbox": "Code sandboxes", - "page-learning-tools-sandbox-desc": "These sandboxes will give you a space to experiment with writing smart contracts and understanding Ethereum.", - "page-learning-tools-speed-run-ethereum-description": "Speed Run Ethereum is a set of challenges to test your Solidity knowledge using Scaffold-ETH", - "page-learning-tools-speed-run-ethereum-logo-alt": "Speed Run Ethereum logo", - "page-learning-tools-studio-description": "A web-based IDE where you can follow tutorials to create and test smart contracts, and build a frontend for them.", - "page-learning-tools-vyperfun-description": "Learn Vyper building your own Pokémon game.", - "page-learning-tools-vyperfun-logo-alt": "Vyper.fun logo", - "page-learning-tools-nftschool-description": "Explore what's going on with non-fungible tokens, or NFTs from the technical side.", - "page-learning-tools-nftschool-logo-alt": "NFT school logo", - "page-learning-tools-platzi-description": "Learn how to build dapps on Web3 and master all the skills needed to be a blockchain developer.", - "page-learning-tools-platzi-logo-alt": "Platzi logo", - "page-learning-tools-alchemy-university-description": "Develop your web3 career through courses, projects and code.", - "page-learning-tools-alchemy-university-logo-alt": "Alchemy University logo", - "page-learning-tools-learnweb3-description": "LearnWeb3 is a free, high quality education platform to go from zero to hero in web3 development.", - "page-learning-tools-learnweb3-logo-alt": "LearnWeb3 logo", - "page-learning-tools-cyfrin-updraft-description": "Learn smart contract development for all skill levels and security audits.", - "page-learning-tools-cyfrin-updraft-logo-alt": "Cyfrin Updraft logo", - "page-learning-tools-price-free": "Free", - "page-learning-tools-price-paid": "Paid", - "alt-eth-blocks": "Illustration of blocks being organized like an ETH symbol" -} diff --git a/src/intl/en/page-developers-local-environment.json b/src/intl/en/page-developers-local-environment.json deleted file mode 100644 index f7632b9338d..00000000000 --- a/src/intl/en/page-developers-local-environment.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "page-local-environment-brownie-desc": "A Python-based development and testing framework for smart contracts targeting the Ethereum Virtual Machine.", - "page-local-environment-brownie-logo-alt": "Brownie logo", - "page-local-environment-kurtosis-desc": "A container-based toolkit for easily configuring and spinning up a multi-client Ethereum testnet for rapid local dApp development, prototyping, and testing.", - "page-local-environment-kurtosis-logo-alt": "Kurtosis logo", - "page-local-environment-epirus-desc": "A platform for developing, deploying and monitoring blockchain applications on the Java Virtual Machine.", - "page-local-environment-epirus-logo-alt": "Epirus logo", - "page-local-environment-eth-app-desc": "Create Ethereum-powered apps with one command. Comes with a wide offerring of UI frameworks and DeFi templates to choose from.", - "page-local-environment-eth-app-logo-alt": "Create Eth App logo", - "page-local-environment-foundry-desc": "A blazing fast, portable and modular toolkit for Ethereum application development written in Rust.", - "page-local-environment-foundry-logo-alt": "Foundry logo", - "page-local-environment-framework-feature-1": "Features to spin up a local blockchain instance.", - "page-local-environment-framework-feature-2": "Utilities to compile and test your smart contracts.", - "page-local-environment-framework-feature-3": "Client development add-ons to build your user-facing application within the same project/repository.", - "page-local-environment-framework-feature-4": "Configuration to connect to Ethereum networks and deploy contracts, whether to a locally running instance, or one of Ethereum's public networks.", - "page-local-environment-framework-feature-5": "Decentralized app distribution - integrations with storage options like IPFS.", - "page-local-environment-framework-features": "These frameworks come with a lot of out-of-the-box functionality, like:", - "page-local-environment-frameworks-desc": "We recommend picking a framework, particularly if you're just getting started. Building a full-fledged dapp requires different pieces of technology. Frameworks include many of the needed features or provide easy plugin systems to pick the tools you desire.", - "page-local-environment-frameworks-title": "Frameworks and pre-made stacks", - "page-local-environment-hardhat-desc": "Hardhat is an Ethereum development environment for professionals.", - "page-local-environment-hardhat-logo-alt": "Hardhat logo", - "page-local-environment-openZeppelin-desc": "Save hours of development time by compiling, upgrading, deploying, and interacting with smart contracts with our CLI.", - "page-local-environment-openZeppelin-logo-alt": "OpenZeppelin logo", - "page-local-environment-scaffold-eth-desc": "Ethers + Hardhat + React: everything you need to get started building decentralized applications powered by smart contracts.", - "page-local-environment-scaffold-eth-logo-alt": "scaffold-eth logo", - "page-local-environment-setup-meta-desc": "Guide on how to choose your software stack for Ethereum development.", - "page-local-environment-setup-meta-title": "Ethereum local development setup", - "page-local-environment-setup-subtitle": "If you're ready to start building, it's time to choose your stack.", - "page-local-environment-setup-subtitle-2": "Here are the tools and frameworks you can use to help you build your Ethereum application.", - "page-local-environment-setup-title": "Set up your local development environment", - "page-local-environment-solidity-template-desc": "A GitHub template for a pre-built setup for your Solidity smart contracts. Includes a Hardhat local network, Ethers for wallet implementation, and more.", - "page-local-environment-solidity-template-logo-alt": "Solidity template logo" -} diff --git a/src/intl/es/page-developers-learning-tools.json b/src/intl/es/page-developers-learning-tools.json deleted file mode 100644 index fceb82f8fc8..00000000000 --- a/src/intl/es/page-developers-learning-tools.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "page-learning-tools-bloomtech-description": "El curso BloomTech Web3 te enseñará las habilidades que los empleadores buscan en los ingenieros.", - "page-learning-tools-bloomtech-logo-alt": "Logo de BloomTech", - "page-learning-tools-bootcamps": "Cursos intensivos para desarrolladores", - "page-learning-tools-bootcamps-desc": "Cursos en línea gratuitos o de pago para que aprenda rápidamente.", - "page-learning-tools-browse-docs": "Examinar documentos", - "page-learning-tools-capture-the-ether-description": "Capture the Ether es un juego en el que puede hackear contratos inteligentes de Ethereum para aprender sobre seguridad.", - "page-learning-tools-capture-the-ether-logo-alt": "Logo de Capture the Ether", - "page-learning-tools-node-guardians-description": "Node Guardians es una plataforma educativa gamificada que sumerge a los desarrolladores de web3 en misiones de fantasía para dominar la programación de Solidity, Cairo, Noir y Huff.", - "page-learning-tools-node-guardians-logo-alt": "Logo de Node Guardians", - "page-learning-tools-coding": "Aprender mediante codificación", - "page-learning-tools-coding-subtitle": "Estas herramientas le ayudarán a experimentar con Ethereum si prefiere una experiencia de aprendizaje más interactiva.", - "page-learning-tools-consensys-academy-description": "Curso online intensivo para desarrolladores de Ethereum.", - "page-learning-tools-consensys-academy-logo-alt": "Logo de ConsenSys Academy", - "page-learning-tools-cryptozombies-description": "Desarrolle su propio juego de zombies para aprender Solidity.", - "page-learning-tools-cryptozombies-logo-alt": "Logo de CryptoZombies", - "page-learning-tools-dapp-world-description": "Un ecosistema de mejora de habilidades en cadena de bloques que incluye cursos, cuestionarios, prácticas y concursos semanales.", - "page-learning-tools-dapp-world-logo-alt": "Logo Dapp World", - "page-learning-tools-documentation": "Aprender con documentación", - "page-learning-tools-documentation-desc": "¿Quier obtener más información? Consulte nuestra documentación para encontrar las explicaciones que necesita.", - "page-learning-tools-eth-dot-build-description": "Un entorno aislado educativo para Web 3.0, que incluye programación «arrastrar y soltar» y bloques de construcción de código abierto.", - "page-learning-tools-eth-dot-build-logo-alt": "Logo de Eth.build", - "page-learning-tools-ethernauts-description": "Hackee contratos inteligentes para pasar de nivel.", - "page-learning-tools-ethernauts-logo-alt": "Logo de Ethernauts", - "page-learning-tools-metaschool-description": "Conviértase en un desarrollador Web3 construyendo y montando DApps.", - "page-learning-tools-metaschool-logo-alt": "Logo de _metaschool", - "page-learning-tools-game-tutorials": "Tutoriales de juegos interactivos", - "page-learning-tools-game-tutorials-desc": "Aprenda mientras juega. Estos tutoriales le ayudarán a comprender los conceptos a través del juego.", - "page-learning-tools-meta-desc": "Las herramientas de codificación basadas en la Web y las experiencias de aprendizaje interactivo le ayudarán a experimentar con el desarrollo de Ethereum.", - "page-learning-tools-meta-title": "Herramientas de aprendizaje para desarrolladores", - "page-learning-tools-atlas-logo-alt": "Logo de Atlas", - "page-learning-tools-atlas-description": "Escriba, realice pruebas e implemente contratos inteligentes en minutos con Atlas IDE.", - "page-learning-tools-questbook-description": "Tutoriales para aprender sobre Web 3.0 construyendo", - "page-learning-tools-questbook-logo-alt": "Logotipo de Questbook", - "page-learning-tools-remix-description": "Desarrolle, implemente y administre contratos inteligentes para Ethereum. Siga los tutoriales con el plugin (o complemento) de LearnEth.", - "page-learning-tools-remix-description-2": "Remix, Replit, ChainIDE y Atlas no son solo sandboxes; los desarrolladores pueden escribir, compilar e implementar contratos inteligentes utilizándolos.", - "page-learning-tools-replit-description": "Un entorno de desarrollo personalizable para Ethereum con recarga en caliente, verificación de errores y soporte para red de pruebas de primera clase.", - "page-learning-tools-chainIDE-description": "Empiece su recorrido por Web 3 escribiendo contratos inteligentes para Ethereum con ChainIDE. Use las plantillas incorporadas para aprender y ahorrar tiempo.", - "page-learning-tools-chainIDE-logo-alt": "Logo de ChainIDE", - "page-learning-tools-tenderly-description": "Tenderly Sandbox es un entorno de prototipo donde se puede escribir, ejecutar y depurar contratos inteligentes en el navegador usando Solidity y JavaScript.", - "page-learning-tools-tenderly-logo-alt": "Logo de Tenderly", - "page-learning-tools-replit-logo-alt": "Logo de Replit", - "page-learning-tools-remix-logo-alt": "Logo de Remix", - "page-learning-tools-sandbox": "Procesos aislados de código", - "page-learning-tools-sandbox-desc": "Estos procesos aislados le darán un espacio para experimentar con contratos inteligentes escritos y entender Ethereum.", - "page-learning-tools-speed-run-ethereum-description": "Speed Run Ethereum es un conjunto de desafíos para probar tu conocimiento de Solidity usando Scaffold-ETH", - "page-learning-tools-speed-run-ethereum-logo-alt": "Logo de Speed Run Ethereum", - "page-learning-tools-studio-description": "Un entorno de desarrollo integrado (IDE) basado en la Web donde puede encontrar tutoriales para crear y probar contratos inteligentes, y construir para ellos una interfaz gráfica (front-end).", - "page-learning-tools-vyperfun-description": "Conozca Vyper mediante la creación de su propio juego de Pokémon.", - "page-learning-tools-vyperfun-logo-alt": "Logo de Vyper.fun", - "page-learning-tools-nftschool-description": "Explore lo que está sucediendo con los tókenes no fungibles o NFT desde el punto de vista técnico.", - "page-learning-tools-nftschool-logo-alt": "Logotipo de NFT School", - "page-learning-tools-platzi-description": "Aprenda cómo construir DApps en Web3 y domine todas las habilidades necesarias para ser un desarrollador de la cadena de bloques.", - "page-learning-tools-platzi-logo-alt": "Logo de Platzi", - "page-learning-tools-alchemy-university-description": "Desarrolle su trayectoria en la Web3 a través de cursos, proyectos y códigos.", - "page-learning-tools-alchemy-university-logo-alt": "Logo de Alchemy University", - "page-learning-tools-learnweb3-description": "LearnWeb3 es una plataforma gratuita de gran calidad para pasar de cero a nivel experto en desarrollo de Web3.", - "page-learning-tools-learnweb3-logo-alt": "Logo de LearnWeb3", - "page-learning-tools-cyfrin-updraft-description": "Aprenda sobre desarrollo de contratos inteligentes en todos los niveles de capacitación y auditorías de seguridad.", - "page-learning-tools-cyfrin-updraft-logo-alt": "Logo de Cyfrin Updraft", - "page-learning-tools-price-free": "Gratis", - "page-learning-tools-price-paid": "De pago", - "alt-eth-blocks": "Ilustración de bloques organizados como un símbolo ETH" -} diff --git a/src/intl/es/page-developers-local-environment.json b/src/intl/es/page-developers-local-environment.json deleted file mode 100644 index a526adba645..00000000000 --- a/src/intl/es/page-developers-local-environment.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "page-local-environment-brownie-desc": "Un marco de desarrollo y pruebas basado en Python para contratos inteligentes dirigidos a la máquina virtual de Ethereum.", - "page-local-environment-brownie-logo-alt": "Logo de Brownie", - "page-local-environment-kurtosis-desc": "Un conjunto de herramientas basado en contenedores para configurar y activar fácilmente un multicliente en la red de pruebas Ethereum y así desarrollar, sacar un prototipo y probar rápidamente su DApp localmente.", - "page-local-environment-kurtosis-logo-alt": "Logo de Kurtosis", - "page-local-environment-epirus-desc": "Una plataforma para desarrollar, implementar y supervisar aplicaciones de cadenas de bloques sobre la máquina virtual de Java.", - "page-local-environment-epirus-logo-alt": "Logo de Epirus", - "page-local-environment-eth-app-desc": "Crear aplicaciones equipadas con Ethereum con un comando. Viene con un amplio despliegue de marcos de interfaz de usuario y plantillas DeFi para elegir.", - "page-local-environment-eth-app-logo-alt": "Crear logo de app Eth", - "page-local-environment-foundry-desc": "Un kit de herramientas modular, ultrarrápido y portátil para el desarrollo de aplicaciones de Ethereum escrito en Rust.", - "page-local-environment-foundry-logo-alt": "Logo de Foundry", - "page-local-environment-framework-feature-1": "Características para activar una instancia local de cadena de bloques.", - "page-local-environment-framework-feature-2": "Funciones de utilidad para compilar y probar sus contratos inteligentes.", - "page-local-environment-framework-feature-3": "Complementos de desarrollo para clientes para construir aplicaciones orientadas al usuario dentro del mismo proyecto/repositorio.", - "page-local-environment-framework-feature-4": "Configuración para conectarse a redes Ethereum e implementar contratos, ya sea en una instancia que se ejecuta de forma local o en una red pública de Ethereum.", - "page-local-environment-framework-feature-5": "Distribución descentralizada de aplicaciones, integraciones con opciones de almacenamiento como IPFS.", - "page-local-environment-framework-features": "Estos marcos vienen con una gran cantidad de funciones listas para usar, como:", - "page-local-environment-frameworks-desc": "Recomendamos elegir un marco, especialmente si está empezando. Construir una DApp completa requiere diferentes tecnologías. Las estructuras incluyen muchas de las características necesarias o proporcionan sistemas de complementos sencillos para que elija las herramientas que quiera.", - "page-local-environment-frameworks-title": "Marcos y pilas prediseñadas", - "page-local-environment-hardhat-desc": "Hardhat es un entorno de desarrollo de Ethereum para profesionales.", - "page-local-environment-hardhat-logo-alt": "Logo de Hardhat", - "page-local-environment-openZeppelin-desc": "Ahorre horas de tiempo de desarrollo al compilar, actualizar, implementar e interactuar con contratos inteligentes con nuestra interfaz de línea de comandos.", - "page-local-environment-openZeppelin-logo-alt": "Logo de OpenZeppelin", - "page-local-environment-scaffold-eth-desc": "Ethers + Hardhat + React: todo lo que necesita para comenzar a construir aplicaciones descentralizadas con contratos inteligentes.", - "page-local-environment-scaffold-eth-logo-alt": "Logo de scaffold-eth", - "page-local-environment-setup-meta-desc": "Guía sobre cómo elegir la pila de software para el desarrollo de Ethereum.", - "page-local-environment-setup-meta-title": "Configuración de desarrollo local de Ethereum", - "page-local-environment-setup-subtitle": "Si está listo para empezar a desarrollar, es hora de elegir su pila.", - "page-local-environment-setup-subtitle-2": "Aquí están las herramientas y marcos que puede usar para crear su aplicación Ethereum.", - "page-local-environment-setup-title": "Configure su entorno de desarrollo local", - "page-local-environment-solidity-template-desc": "Una plantilla de GitHub con una configuración predefinida para sus contratos inteligentes en Solidity. Incluye una red local de Hardhat y Ethers para la implementación de carteras, entre otras funciones.", - "page-local-environment-solidity-template-logo-alt": "Logo de plantilla Solidity" -} diff --git a/src/intl/fr/page-developers-learning-tools.json b/src/intl/fr/page-developers-learning-tools.json deleted file mode 100644 index 7643fedb222..00000000000 --- a/src/intl/fr/page-developers-learning-tools.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "page-learning-tools-bloomtech-description": "Le cours sur Web3 de BloomTech vous enseignera les compétences que les employeurs recherchent chez les ingénieurs.", - "page-learning-tools-bloomtech-logo-alt": "Logo BloomTech", - "page-learning-tools-bootcamps": "Camps de démarrage des développeurs", - "page-learning-tools-bootcamps-desc": "Des cours en ligne payants pour vous permettre de gagner en vitesse, rapidement.", - "page-learning-tools-browse-docs": "Parcourir la documentation", - "page-learning-tools-capture-the-ether-description": "Capture l'Ether est un jeu dans lequel vous piratez les contrats intelligents Ethereum pour en apprendre plus sur la sécurité.", - "page-learning-tools-capture-the-ether-logo-alt": "Logo capture l'Ether", - "page-learning-tools-node-guardians-description": "Node Guardians est une plateforme éducative et ludique qui plonge les développeurs web3 dans des quêtes prenant place dans un univers fantastique pour apprendre à maîtriser des langages de programmation tels que Solidity, Cairo, Noir et Huff.", - "page-learning-tools-node-guardians-logo-alt": "Logo de Node Guardians", - "page-learning-tools-coding": "Apprendre en codant", - "page-learning-tools-coding-subtitle": "Ces outils vous aideront à vous familiariser avec Ethereum si vous préférez une expérience d'apprentissage plus interactive.", - "page-learning-tools-consensys-academy-description": "Camp de démarrage des développeurs Ethereum en ligne.", - "page-learning-tools-consensys-academy-logo-alt": "Logo ConsenSys Academy", - "page-learning-tools-cryptozombies-description": "Apprenez le langage Solidity en construisant votre propre jeu de zombie.", - "page-learning-tools-cryptozombies-logo-alt": "Logo CryptoZombies", - "page-learning-tools-dapp-world-description": "Un écosystème de perfectionnement de la blockchain, comprenant des cours, des quiz, des exercices pratiques et des concours hebdomadaires.", - "page-learning-tools-dapp-world-logo-alt": "Logo de Dapp World", - "page-learning-tools-documentation": "Apprendre avec la documentation", - "page-learning-tools-documentation-desc": "Vous voulez en savoir plus ? Explorez notre documentation pour trouver l'explication dont vous avez besoin.", - "page-learning-tools-eth-dot-build-description": "Un espace de test éducatif pour Web3, incluant la programmation par glisser-déposer et les blocs de construction open source.", - "page-learning-tools-eth-dot-build-logo-alt": "Logo Eth.build", - "page-learning-tools-ethernauts-description": "Terminez les niveaux en piratant des contrats intelligents.", - "page-learning-tools-ethernauts-logo-alt": "Logo Ethereum", - "page-learning-tools-metaschool-description": "Devenez développeur Web3 en construisant et expédiant des dApps.", - "page-learning-tools-metaschool-logo-alt": "Logo _metaschool", - "page-learning-tools-game-tutorials": "Tutoriels interactifs", - "page-learning-tools-game-tutorials-desc": "Apprenez en jouant. Ces tutoriels vous permettent de parcourir les bases de façon ludique.", - "page-learning-tools-meta-desc": "Outils de codage en ligne et expériences d'apprentissage interactif pour vous aider à faire des expériences avec le développement d'Ethereum.", - "page-learning-tools-meta-title": "Outils d'apprentissage pour les développeurs", - "page-learning-tools-atlas-logo-alt": "Logo d'Atlas", - "page-learning-tools-atlas-description": "Écrivez, testez et déployez des contrats intelligents en quelques minutes avec l'IDE Atlas.", - "page-learning-tools-questbook-description": "Tutoriels auto-initiés pour apprendre Web 3.0 en construisant", - "page-learning-tools-questbook-logo-alt": "Logo du Questbook", - "page-learning-tools-remix-description": "Développez, déployez et administrez des contrats intelligents pour Ethereum. Suivez des tutoriels avec le plugin LearnEth.", - "page-learning-tools-remix-description-2": "Remix, Replit, ChainIDE et Atlas ne sont pas seulement des bacs à sable : ils permettent aux développeurs d'écrire, de compiler et de déployer leurs contrats intelligents.", - "page-learning-tools-replit-description": "Un environnement de développement personnalisable dédiée à Ethereum avec le rechargement à chaud, une vérification des erreurs et un support testnet de première qualité.", - "page-learning-tools-chainIDE-description": "Commencez votre voyage Web3 en écrivant des contrats intelligents pour Ethereum avec ChainIDE. Utilisez les modèles intégrés pour apprendre et gagner du temps.", - "page-learning-tools-chainIDE-logo-alt": "Logo ChainIDE", - "page-learning-tools-tenderly-description": "Le bac à sable Tenderly est un environnement de prototypage où vous pouvez écrire, exécuter, et déboguer les contrats intelligents dans le navigateur en utilisant Solidity et JavaScript.", - "page-learning-tools-tenderly-logo-alt": "Logo de Tenderly", - "page-learning-tools-replit-logo-alt": "Logo Replit", - "page-learning-tools-remix-logo-alt": "Logo Remix", - "page-learning-tools-sandbox": "Boîtes à sable de code", - "page-learning-tools-sandbox-desc": "Ces espaces de test vous permettront de faire des expériences avec la rédaction de contrats intelligents et de mieux comprendre d'Ethereum.", - "page-learning-tools-speed-run-ethereum-description": "Speed Run Ethereum est un ensemble de défis pour tester vos connaissances en Solidity en utilisant Scaffold-ETH", - "page-learning-tools-speed-run-ethereum-logo-alt": "Logo de Speed Run Ethereum", - "page-learning-tools-studio-description": "Un IDE basé sur le Web où vous pouvez suivre des tutoriels pour créer et tester des contrats intelligents, et construire un frontend pour eux.", - "page-learning-tools-vyperfun-description": "Apprenez à développer avec Vyper en construisant votre propre jeu de Pokémon.", - "page-learning-tools-vyperfun-logo-alt": "Logo Vyper.fun", - "page-learning-tools-nftschool-description": "Explorez le côté technique des jetons non fongibles, ou NFT.", - "page-learning-tools-nftschool-logo-alt": "Jetons non fongibles du logo de l'école", - "page-learning-tools-platzi-description": "Apprenez à construire des DApps sur Web3 et maîtrisez toutes les compétences nécessaires pour être un développeur blockchain.", - "page-learning-tools-platzi-logo-alt": "Logo de Platzi", - "page-learning-tools-alchemy-university-description": "Boostez votre carrière Web3 grâce à des cours, projets et du code.", - "page-learning-tools-alchemy-university-logo-alt": "Logo d'Alchemy University", - "page-learning-tools-learnweb3-description": "LearnWeb3 est une plateforme éducative gratuite et de haute qualité pour passer de débutant à expert en développement web3.", - "page-learning-tools-learnweb3-logo-alt": "Logo de LearnWeb3", - "page-learning-tools-cyfrin-updraft-description": "Apprenez le développement de contrats intelligents pour tous les niveaux de compétence et les audits de sécurité.", - "page-learning-tools-cyfrin-updraft-logo-alt": "Logo de Cyfrin Updraft", - "alt-eth-blocks": "Illustration de blocs organisés comme un symbole ETH" -} diff --git a/src/intl/fr/page-developers-local-environment.json b/src/intl/fr/page-developers-local-environment.json deleted file mode 100644 index c9de602899e..00000000000 --- a/src/intl/fr/page-developers-local-environment.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "page-local-environment-brownie-desc": "Une structure de développement et de test basée sur Python pour les contrats intelligents ciblant la machine virtuelle Ethereum.", - "page-local-environment-brownie-logo-alt": "Logo Brownie", - "page-local-environment-kurtosis-desc": "Une boite à outils basée sur des conteneurs permettant de configurer et de lancer facilement des réseaux de test Ethereum multi-client en vue de développer rapidement des dApps en local, de prototyper, et de tester.", - "page-local-environment-kurtosis-logo-alt": "Logo de Kurtosis", - "page-local-environment-epirus-desc": "Une plateforme pour développer, déployer et surveiller des applications pour la blockchain sur la machine virtuelle Java.", - "page-local-environment-epirus-logo-alt": "Logo Epirus", - "page-local-environment-eth-app-desc": "Créez des applications sur Ethereum avec une seule commande, qui fournit une offre diversifiée de frameworks d'interface utilisateur et de modèles de finance décentralisée (DeFi).", - "page-local-environment-eth-app-logo-alt": "Logo Créer une application Eth", - "page-local-environment-foundry-desc": "Une boîte à outils rapide, portable et modulaire pour le développement d'applications Ethereum écrite en Rust.", - "page-local-environment-foundry-logo-alt": "Logo de la fonderie", - "page-local-environment-framework-feature-1": "Fonctionnalités pour faire tourner une instance locale de la blockchain.", - "page-local-environment-framework-feature-2": "Des utilitaires pour compiler et tester vos contrats intelligents.", - "page-local-environment-framework-feature-3": "Des modules de développement client pour construire votre application orientée utilisateur au sein du même projet / référentiel.", - "page-local-environment-framework-feature-4": "Configuration pour se connecter aux réseaux Ethereum et déployer des contrats, que ce soit sur une instance exécutée localement ou sur l'un des réseaux publics d'Ethereum.", - "page-local-environment-framework-feature-5": "Distribution d'applications décentralisée - intégrations avec des options de stockage comme IPFS.", - "page-local-environment-framework-features": "Ces frameworks sont livrés avec de nombreuses fonctionnalités prêtes à l'emploi, telles que :", - "page-local-environment-frameworks-desc": " Nous vous recommandons de choisir un framework, en particulier si vous êtes encore débutant. Construire une DApp à part entière nécessite différentes technologies. Les frameworks incluent de nombreuses fonctionnalités nécessaires ou fournissent des systèmes de plugins faciles pour choisir les outils que vous désirez.", - "page-local-environment-frameworks-title": "Framework et piles préfabriquées", - "page-local-environment-hardhat-desc": "Hardhat est un environnement de développement Ethereum pour les professionnels.", - "page-local-environment-hardhat-logo-alt": "Logo Hardhat", - "page-local-environment-openZeppelin-desc": "Épargnez-vous de longues heures de développement en compilant, en mettant à niveau, en déployant et en interagissant avec des contrats intelligents par le biais de notre Interface de ligne de commande.", - "page-local-environment-openZeppelin-logo-alt": "Logo OpenZeppelin", - "page-local-environment-scaffold-eth-desc": "Ethers + Hardhat + React : tout ce dont vous avez besoin pour commencer à créer des applications décentralisées, alimentées par des contrats intelligents.", - "page-local-environment-scaffold-eth-logo-alt": "logo scaffold-eth", - "page-local-environment-setup-meta-desc": "Guide sur comment choisir votre pile logicielle pour le développement Ethereum.", - "page-local-environment-setup-meta-title": "Configuration du développement local Ethereum", - "page-local-environment-setup-subtitle": "Si vous êtes prêt à commencer à construire, il est temps de choisir votre pile.", - "page-local-environment-setup-subtitle-2": " Voici les outils et les frameworks que vous pouvez utiliser pour vous aider à créer votre application Ethereum.", - "page-local-environment-setup-title": "Configurez votre environnement de développement local", - "page-local-environment-solidity-template-desc": "Un modèle GitHub pour une configuration pré-intégrée de vos contrats intelligents Solidity. Comprend un réseau local Hardhat, des Ethers pour la mise en œuvre du portefeuille, et plus encore.", - "page-local-environment-solidity-template-logo-alt": "Logo de modèle Solidity" -} \ No newline at end of file diff --git a/src/intl/hi/page-developers-learning-tools.json b/src/intl/hi/page-developers-learning-tools.json deleted file mode 100644 index 488ccacd397..00000000000 --- a/src/intl/hi/page-developers-learning-tools.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "page-learning-tools-bloomtech-description": "BloomTech Web3 पाठ्यक्रम आपको वह कौशल सिखाएगा जो नियोक्ता इंजीनियरों में तलाश करते हैं।", - "page-learning-tools-bloomtech-logo-alt": "BloomTech लोगो", - "page-learning-tools-bootcamps": "डेवलपर बूटकैंप्स", - "page-learning-tools-bootcamps-desc": "आपको गति देने, तेज़ करने के लिए सशुल्क ऑनलाइन पाठ्यक्रम।", - "page-learning-tools-browse-docs": "दस्तावेज़ ब्राउज़ करें", - "page-learning-tools-capture-the-ether-description": "Capture the Ether एक ऐसा गेम है जिसमें आप सुरक्षा के बारे में जानने के लिए इथेरियम स्मार्ट अनुबंध को हैक करते हैं।", - "page-learning-tools-capture-the-ether-logo-alt": "Capture the Ether लोगो", - "page-learning-tools-coding": "कोडिंग द्वारा सीखें", - "page-learning-tools-coding-subtitle": "यदि आप सीखने के अधिक संवादात्मक अनुभव को पसंद करते हैं, तो ये उपकरण आपको इथेरियम के साथ प्रयोग करने में मदद करेंगे।", - "page-learning-tools-consensys-academy-description": "ऑनलाइन इथेरियम डेवलपर बूटकैंप.", - "page-learning-tools-consensys-academy-logo-alt": "ConsenSys Academy का लोगो", - "page-learning-tools-cryptozombies-description": "अपना खुद का ज़ोंबी गेम बनाने के लिए Solidity सीखें।", - "page-learning-tools-cryptozombies-logo-alt": "CryptoZombies का लोगो", - "page-learning-tools-documentation": "प्रलेखन के साथ जानें", - "page-learning-tools-documentation-desc": "और सीखना चाहते हैं? आपके लिए आवश्यक स्पष्टीकरणों को खोजने के लिए हमारे दस्तावेज़ पर जाएँ।", - "page-learning-tools-eth-dot-build-description": "Web3 के लिए एक शैक्षिक सैंडबॉक्स, जिसमें ड्रैग-एंड-ड्रॉप प्रोग्रामिंग और ओपन-सोर्स बिल्डिंग ब्लॉक शामिल हैं।", - "page-learning-tools-eth-dot-build-logo-alt": "Eth.build का लोगो", - "page-learning-tools-ethernauts-description": "स्मार्ट अनुबंध को हैक करके स्तर पूरा करें.", - "page-learning-tools-ethernauts-logo-alt": "Ethernauts का लोगो", - "page-learning-tools-metaschool-description": "dApps के निर्माण और शिपिंग द्वारा एक Web3 डेवलपर बनें।", - "page-learning-tools-metaschool-logo-alt": "_metaschool लोगो", - "page-learning-tools-game-tutorials": "इंटरैक्टिव गेम ट्यूटोरियल", - "page-learning-tools-game-tutorials-desc": "खेलते समय सीखें। ये ट्यूटोरियल आपको गेमप्ले का उपयोग करके बुनियादी बातों की जानकारी प्रदान करता है", - "page-learning-tools-meta-desc": "वेब आधारित कोडिंग टूल और इंटरैक्टिव लर्निंग एक्सपीरियंस आपको इथेरियम विकास के साथ प्रयोग करने में मदद करते हैं।", - "page-learning-tools-meta-title": "डेवलपर के सीखने के उपकरण", - "page-learning-tools-questbook-description": "निर्माण द्वारा Web 3.0 सीखने के लिए स्व-गति वाले ट्यूटोरियल", - "page-learning-tools-questbook-logo-alt": "Questbook लोगो", - "page-learning-tools-remix-description": "इथेरियम के लिए स्मार्ट अनुबंध का विकास, परिनियोजन और प्रशासन। LearnEth प्लगइन के साथ ट्यूटोरियल का पालन करें।", - "page-learning-tools-remix-description-2": "Remix, Replit और ChainIDE सिर्फ सैंडबॉक्स नहीं हैं—डेवलपर्स उनका उपयोग करके अपने स्मार्ट अनुबंधों को लिख, संकलित और तैनात कर सकते हैं।", - "page-learning-tools-replit-description": "हॉट रिलोडिंग त्रुटि जाँच और प्रथम श्रेणि टेस्टनेट समर्थन के साथ इथेरियम के लिए एक अनुकूलन योग्य विकास वातावरण।", - "page-learning-tools-chainIDE-description": "ChainIDE के साथ इथेरियम के लिए स्मार्ट अनुबंध लिखकर Web3 की अपनी यात्रा शुरू करें। सीखने और समय बचाने के लिए अंतर्निहित टेम्पलेट्स का उपयोग करें।", - "page-learning-tools-chainIDE-logo-alt": "ChainIDE लोगो", - "page-learning-tools-tenderly-description": "Tenderly सैंडबॉक्स एक प्रोटोटाइप वातावरण है जहां आप Solidity और JavaScript का उपयोग करके ब्राउज़र में स्मार्ट अनुबंधों को लिख, निष्पादित और डीबग कर सकते हैं।", - "page-learning-tools-tenderly-logo-alt": "Tenderly लोगो", - "page-learning-tools-replit-logo-alt": "Replit लोगो", - "page-learning-tools-remix-logo-alt": "Remix का लोगो", - "page-learning-tools-sandbox": "कोड सैंडबॉक्स", - "page-learning-tools-sandbox-desc": "ये सैंडबॉक्स आपको स्मार्ट अनुबंध लिखने और इथेरियम को समझने के साथ प्रयोग करने के लिए एक स्थान देंगे।", - "page-learning-tools-speed-run-ethereum-description": "Speed Run Ethereum, Scaffold-ETH का उपयोग करके अपने Solidity ज्ञान का परीक्षण करने के लिए चुनौतियों का एक सेट है", - "page-learning-tools-speed-run-ethereum-logo-alt": "Speed Run Ethereum लोगो", - "page-learning-tools-studio-description": "एक वेब-आधारित IDE, जहां पर आप स्मार्ट अनुबंध बनाने और परीक्षण करने के लिए ट्यूटोरियल का अनुसरण कर सकते हैं, और उनके लिए एक फ़्रंटएंड का निर्माण कर सकते हैं।", - "page-learning-tools-vyperfun-description": "अपना खुद का Pokémon गेम बनाने के लिए Vyper के बारे में जानें।", - "page-learning-tools-vyperfun-logo-alt": "Vyper.fun का लोगो", - "page-learning-tools-nftschool-description": "तकनीकी पक्ष से जानें कि अपूरणीय टोकन या NFT के साथ क्या हो रहा है।", - "page-learning-tools-nftschool-logo-alt": "NFT school लोगो", - "page-learning-tools-platzi-description": "Web3 पर dapps बनाना सीखें और ब्लॉकचेन डेवलपर बनने के लिए आवश्यक सभी कौशलों में महारत हासिल करें।", - "page-learning-tools-platzi-logo-alt": "Platzi लोगो", - "page-learning-tools-alchemy-university-description": "पाठ्यक्रम, परियोजनाओं और कोड के माध्यम से अपने web3 कैरियर का विकास करें।", - "page-learning-tools-alchemy-university-logo-alt": "Alchemy University लोगो", - "alt-eth-blocks": "ETH प्रतीक की तरह व्यवस्थित किए जा रहे ब्लॉकों का चित्रण" -} \ No newline at end of file diff --git a/src/intl/hi/page-developers-local-environment.json b/src/intl/hi/page-developers-local-environment.json deleted file mode 100644 index 989bd7d2e6b..00000000000 --- a/src/intl/hi/page-developers-local-environment.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "page-local-environment-brownie-desc": "इथेरियम वर्चुअल मशीन को लक्षित करने वाले स्मार्ट अनुबंधों के लिए Python-आधारित डेवलपमेंट और परीक्षण संरचना।", - "page-local-environment-brownie-logo-alt": "Brownie का लोगो", - "page-local-environment-kurtosis-desc": "तेजी से स्थानीय dApp विकास, प्रोटोटाइपिंग और परीक्षण के लिए मल्टी-क्लाइंट इथेरियम टेस्टनेट को आसानी से कॉन्फ़िगर और चालू करने के लिए एक कंटेनर-आधारित टूलकिट।", - "page-local-environment-kurtosis-logo-alt": "Kurtosis लोगो", - "page-local-environment-epirus-desc": "Java वर्चुअल मशीन पर ब्लॉकचेन एप्लिकेशन को डेवलप करने, परिनियोजित करने और मॉनिटर करने के लिए एक प्लेटफ़ॉर्म।", - "page-local-environment-epirus-logo-alt": "Epirus का लोगो", - "page-local-environment-eth-app-desc": "एक आदेश के साथ इथेरियम संचालित ऐप बनाएं। चुनने के लिए UI फ्रेमवर्क और DeFi टेम्पलेट की एक विस्तृत पेशकश के साथ आता है।", - "page-local-environment-eth-app-logo-alt": "Eth ऐप का लोगो बनाएं", - "page-local-environment-foundry-desc": "इथेरियम एप्लिकेशन डेवलपमेंट के लिए रस्ट प्रोग्रामिंग भाषा में लिखा गया एक बहुत तेज़, पोर्टेबल और मॉड्यूलर टूलकिट।", - "page-local-environment-foundry-logo-alt": "Foundry लोगो", - "page-local-environment-framework-feature-1": "एक स्थानीय ब्लॉकचेन उदाहरण को स्पिन करने के लिए विशेष रूप से प्रदर्शित होता है।", - "page-local-environment-framework-feature-2": "आपके स्मार्ट अनुबंध को संकलित करने और परीक्षण करने के लिए उपयोगिताएँ।", - "page-local-environment-framework-feature-3": "एक ही प्रोजेक्ट/रिपॉजिटरी के भीतर आपके उपयोगकर्ता-उन्मुख एप्लिकेशन के निर्माण के लिए क्लाइंट डेवलपमेंट ऐड-ऑन।", - "page-local-environment-framework-feature-4": "इथेरियम नेटवर्क से कनेक्ट होने और अनुबंधों को परिनियोजित करने के लिए कॉन्फ़िगरेशन, चाहे वह स्थानीय रूप से चल रहे इंस्टेंस के लिए हों या इथेरियम के सार्वजनिक नेटवर्कों में से एक हो।", - "page-local-environment-framework-feature-5": "विकेंद्रीकृत ऐप वितरण - IPFS जैसे भंडारण विकल्पों के साथ एकीकरण।", - "page-local-environment-framework-features": "ये संरचनाएं बहुत सारी अलग कार्यक्षमता के साथ आती हैं, जैसे:", - "page-local-environment-frameworks-desc": " हम एक संरचना चुनने की सलाह देते हैं, खासकर यदि आप अभी शुरू कर रहे हैं। पूर्ण विकसित डेप के निर्माण के लिए विभिन्न प्रौद्योगिकी की आवश्यकता होती है। संरचना में कई आवश्यक सुविधाएँ शामिल होती हैं या आपके इच्छित उपकरण को लेने के लिए आसान प्लगइन सिस्टम प्रदान करती हैं।", - "page-local-environment-frameworks-title": "संरचनाएं और पूर्व-निर्मित स्टैक", - "page-local-environment-hardhat-desc": "Hardhat पेशेवरों के लिए एक इथेरियम डेवलपमेंट परिवेश है।", - "page-local-environment-hardhat-logo-alt": "Hardhat का लोगो", - "page-local-environment-openZeppelin-desc": "हमारे CLI के साथ स्मार्ट अनुबंधों के साथ संकलन, अपग्रेड, परिनियोजन और सहभागिता करके डेवलपमेंट के समय की बचत करें।", - "page-local-environment-openZeppelin-logo-alt": "OpenZeppelin का लोगो", - "page-local-environment-scaffold-eth-desc": "इथर + हार्डहैट + रिएक्ट: स्मार्ट अनुबंधों द्वारा संचालित विकेंद्रीकृत अनुप्रयोगों का निर्माण शुरू करने के लिए आपको जो कुछ भी चाहिए वह सब कुछ।", - "page-local-environment-scaffold-eth-logo-alt": "scaffold-eth का लोगो", - "page-local-environment-setup-meta-desc": "इथेरियम डेवलपमेंट के लिए आपके सॉफ़्टवेयर स्टैक को चुनने के तरीके के बारे में मार्गदर्शिका।", - "page-local-environment-setup-meta-title": "इथेरियम स्थानीय डेवलपमेंट सेटअप", - "page-local-environment-setup-subtitle": "यदि आप निर्माण शुरू करने के लिए तैयार हैं, तो आपके स्टैक को चुनने का समय आ गया है।", - "page-local-environment-setup-subtitle-2": " यहां पर वे उपकरण और संरचनाएं मौजूद हैं, जिनका उपयोग आप अपने इथेरियम एप्लिकेशन को बनाने में मदद करने के लिए कर सकते हैं।", - "page-local-environment-setup-title": "अपना स्थानीय डेवलपमेंट परिवेश स्थापित करें", - "page-local-environment-solidity-template-desc": "आपके Solidity स्मार्ट अनुबंधों के लिए प्री-बिल्ट सेटअप के लिए GitHub टेम्पलेट। एक Hardhat स्थानीय नेटवर्क, परीक्षण के लिए Waffle, वॉलेट कार्यान्वयन के लिए Ethers, और भी बहुत कुछ शामिल है।", - "page-local-environment-solidity-template-logo-alt": "Solidity टेम्पलेट का लोगो" -} \ No newline at end of file diff --git a/src/intl/id/page-developers-learning-tools.json b/src/intl/id/page-developers-learning-tools.json deleted file mode 100644 index e951a79ea3f..00000000000 --- a/src/intl/id/page-developers-learning-tools.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "page-learning-tools-bloomtech-description": "Kursus Web3 BloomTech akan mengajarkan tentang keterampilan yang dicari para pemberi kerja dalam bidang insinyur.", - "page-learning-tools-bloomtech-logo-alt": "Logo BloomTech", - "page-learning-tools-bootcamps": "Kamp pelatihan pengembang", - "page-learning-tools-bootcamps-desc": "Kursus online berbayar agar Anda mendapatkan informasi terbaru dengan cepat.", - "page-learning-tools-browse-docs": "Jelajahi dokumen", - "page-learning-tools-capture-the-ether-description": "Capture the Ether adalah sebuah game di mana Anda meretas kontrak pintar Ethereum untuk belajar tentang keamanan.", - "page-learning-tools-capture-the-ether-logo-alt": "Logo Capture the Ether", - "page-learning-tools-node-guardians-description": "Simpul Guardian adalah platform edukasi gamifikasi yang membenamkan para pengembang web3 dalam petualangan bertema fantasi untuk menguasai pemrograman Solidity, Kairo, Noir, dan Hurf.", - "page-learning-tools-node-guardians-logo-alt": "Logo Simpul Guardians", - "page-learning-tools-coding": "Belajar melalui pengodean", - "page-learning-tools-coding-subtitle": "Peralatan ini akan membantu Anda bereksperimen dengan Ethereum jika Anda lebih suka pengalaman belajar yang lebih interaktif.", - "page-learning-tools-consensys-academy-description": "Kamp pelatihan pengembang Ethereum online.", - "page-learning-tools-consensys-academy-logo-alt": "Logo Akademi ConsenSys", - "page-learning-tools-cryptozombies-description": "Pelajari Solidity yang membuat game Zombie karya Anda.", - "page-learning-tools-cryptozombies-logo-alt": "Logo CryptoZombies", - "page-learning-tools-dapp-world-description": "Ekosistem peningkatan keterampilan rantai blok, termasuk kursus, kuis, praktik langsung, dan kontes mingguan.", - "page-learning-tools-dapp-world-logo-alt": "Logo Dapp World", - "page-learning-tools-documentation": "Belajar dengan dokumentasi", - "page-learning-tools-documentation-desc": "Ingin mempelajari lebih lanjut? Buka dokumentasi kami untuk menemukan penjelasan yang Anda butuhkan.", - "page-learning-tools-eth-dot-build-description": "Sandbox pendidikan untuk web3, termasuk pemrograman seret dan lepas dan blok penyusun sumber terbuka.", - "page-learning-tools-eth-dot-build-logo-alt": "Logo Eth.build", - "page-learning-tools-ethernauts-description": "Selesaikan level dengan meretas kontrak pintar.", - "page-learning-tools-ethernauts-logo-alt": "Logo Ethernauts", - "page-learning-tools-metaschool-description": "Menjadi Pengembang Web3 dengan membangun & mengirimkan dApps.", - "page-learning-tools-metaschool-logo-alt": "Logo _metaschool", - "page-learning-tools-game-tutorials": "Tutorial game interaktif", - "page-learning-tools-game-tutorials-desc": "Belajar sambil bermain. Tutorial ini membantu Anda memahami dasar-dasar menggunakan gameplay.", - "page-learning-tools-meta-desc": "Peralatan pengodean berbasis web dan pengalaman belajar interaktif untuk membantu Anda bereksperimen dengan pengembangan Ethereum.", - "page-learning-tools-meta-title": "Alat pembelajaran pengembang", - "page-learning-tools-atlas-logo-alt": "Logo Atlas", - "page-learning-tools-atlas-description": "Menulis, menguji, dan menerapkan kontrak pintar dalam hitungan menit dengan Atlas IDE.", - "page-learning-tools-questbook-description": "Tutorial mandiri untuk belajar tentang Web 3.0 dengan membangunnya", - "page-learning-tools-questbook-logo-alt": "Logo Questbook", - "page-learning-tools-remix-description": "Mengembangkan, menyebarkan dan mengelola kontrak pintar untuk Ethereum. Ikuti langkah-langkahnya dengan plugin LearnEth.", - "page-learning-tools-remix-description-2": "Remix, Replit, ChainIDE, dan Atlas bukan hanya sekadar kotak pasir—pengembang dapat menulis, menyusun, dan menerapkan kontrak pintar mereka dengan menggunakannya.", - "page-learning-tools-replit-description": "Lingkungan pengembangan yang dapat disesuaikan untuk Ethereum menggunakan hot reloading, error checking, dan dukungan first-class testnet.", - "page-learning-tools-chainIDE-description": "Mulailah perjalanan Anda ke Web3 dengan menulis kontrak pintar untuk Ethereum dengan ChainIDE. Gunakan templat bawaan untuk mempelajari dan menghemat waktu.", - "page-learning-tools-chainIDE-logo-alt": "Logo ChainIDE", - "page-learning-tools-tenderly-description": "Tenderly Sandbox adalah lingkungan prototipe di mana Anda dapat menulis, melaksanakan, dan men-debug kontrak pintar di browser menggunakan Solidity dan JavaScript.", - "page-learning-tools-tenderly-logo-alt": "Logo Tenderly", - "page-learning-tools-replit-logo-alt": "Logo Replit", - "page-learning-tools-remix-logo-alt": "Logo Remix", - "page-learning-tools-sandbox": "Sandbox kode", - "page-learning-tools-sandbox-desc": "Sandbox ini akan memberi Anda ruang untuk bereksperimen dengan menulis kontrak pintar dan memahami Ethereum.", - "page-learning-tools-speed-run-ethereum-description": "Speed Run Ethereum adalah set tantangan untuk menguji pengetahuan Solidity Anda menggunakan Scaffold-ETH", - "page-learning-tools-speed-run-ethereum-logo-alt": "Logo Speed Run Ethereum", - "page-learning-tools-studio-description": "IDE berbasis web di mana Anda dapat mengikuti tutorial untuk membuat dan menguji kontrak pintar, dan membangun frontend untuk mereka.", - "page-learning-tools-vyperfun-description": "Pelajari Vyper yang membuat game Pokémon karya Anda.", - "page-learning-tools-vyperfun-logo-alt": "Logo Vyper.fun", - "page-learning-tools-nftschool-description": "Jelajahi apa yang sedang terjadi dengan token yang tidak dapat dipertukarkan, atau NFT dari sisi teknisnya.", - "page-learning-tools-nftschool-logo-alt": "Logo sekolah NFT", - "page-learning-tools-platzi-description": "Pelajari cara membuat dapps (aplikasi terdesentralisasi) di Web3 dan kuasai semua keterampilan yang dibutuhkan untuk menjadi pengembang rantai blok.", - "page-learning-tools-platzi-logo-alt": "Logo Platzi", - "page-learning-tools-alchemy-university-description": "Kembangkan karier web3 Anda melalui kursus, proyek, dan kode.", - "page-learning-tools-alchemy-university-logo-alt": "Logo Universitas Alchemy", - "page-learning-tools-learnweb3-description": "LearnWeb3 adalah platform gratis dan berkualitas untuk belajar mengembangkan web3 dari nol.", - "page-learning-tools-learnweb3-logo-alt": "Logo LearnWeb3", - "page-learning-tools-cyfrin-updraft-description": "Belajar mengembangkan kontrak pintar untuk semua tingkat keahlian dan audit keamanan.", - "page-learning-tools-cyfrin-updraft-logo-alt": "Logo Cyfrin Updraft", - "alt-eth-blocks": "Ilustrasi blok yang diorganisir seperti simbol ETH" -} diff --git a/src/intl/id/page-developers-local-environment.json b/src/intl/id/page-developers-local-environment.json deleted file mode 100644 index 42ac021fb78..00000000000 --- a/src/intl/id/page-developers-local-environment.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "page-local-environment-brownie-desc": "Kerangka kerja pengembangan dan pengujian berbasis Python untuk kontrak pintar yang menargetkan Mesin Virtual Ethereum.", - "page-local-environment-brownie-logo-alt": "Logo Brownie", - "page-local-environment-kurtosis-desc": "Seperangkat alat berbasis kontainer yang memudahkan mengatur dan mengaktifkan jaringan percobaan Ethereum multi-klien untuk pengembangan, pembuatan prototipe, dan pengujian dApp lokal secara cepat.", - "page-local-environment-kurtosis-logo-alt": "Logo Kurtosis", - "page-local-environment-epirus-desc": "Platform untuk mengembangkan, menggunakan, dan memantau aplikasi rantai blok pada Java Virtual Machine.", - "page-local-environment-epirus-logo-alt": "Logo Epirus", - "page-local-environment-eth-app-desc": "Buat aplikasi yang didukung Ethereum dengan satu perintah. Hadir dengan berbagai penawaran kerangka kerja UI dan templat DeFi yang bisa dipilih.", - "page-local-environment-eth-app-logo-alt": "Buat logo Applikasi Eth", - "page-local-environment-foundry-desc": "Sebuah alat pengembangan aplikasi Ethereum yang sangat cepat, portabel, dan modular yang ditulis dalam bahasa Rust.", - "page-local-environment-foundry-logo-alt": "Logo Foundry", - "page-local-environment-framework-feature-1": "Fitur untuk memutar instance blockchain lokal.", - "page-local-environment-framework-feature-2": "Utilitas untuk mengompilasi dan menguji kontrak pintar Anda.", - "page-local-environment-framework-feature-3": "Add-on pengembangan klien untuk membangun aplikasi sisi pengguna dalam proyek/repositori yang sama.", - "page-local-environment-framework-feature-4": "Konfigurasi untuk menghubungkan ke jaringan Ethereum dan menggunakan kontrak, baik ke instance yang berjalan secara lokal, atau salah satu jaringan publik Ethereum.", - "page-local-environment-framework-feature-5": "Pendistribusian aplikasi terdesentralisasi - integrasi dengan opsi penyimpanan seperti IPFS.", - "page-local-environment-framework-features": "Kerangka kerja ini hadir dengan banyak fungsi yang tidak biasa, seperti:", - "page-local-environment-frameworks-desc": "Kami sarankan memilih sebuah kerangka kerja, terutama jika Anda baru mulai. Membangun sebuah dapp yang lengkap membutuhkan berbagai teknologi. Kerangka kerja mencakup banyak fitur yang diperlukan atau menyediakan sistem plugin yang mudah untuk memilih alat yang Anda inginkan.", - "page-local-environment-frameworks-title": "Kerangka kerja dan tumpukan yang sudah jadi", - "page-local-environment-hardhat-desc": "Hardhat adalah sebuah lingkungan pengembangan Ethereum untuk para profesional.", - "page-local-environment-hardhat-logo-alt": "Logo Hardhat", - "page-local-environment-openZeppelin-desc": "Hemat waktu pengembangan dengan menggabungkan, meningkatkan, menggunakan, dan berinteraksi dengan kontrak pintar dengan CLI kami.", - "page-local-environment-openZeppelin-logo-alt": "Logo OpenZeppelin", - "page-local-environment-scaffold-eth-desc": "Ethers + Hardhat + React: semua yang Anda butuhkan untuk mulai membangun aplikasi terdesentralisasi yang didukung oleh kontrak pintar.", - "page-local-environment-scaffold-eth-logo-alt": "Logo scaffold-eth", - "page-local-environment-setup-meta-desc": "Panduan mengenai cara memilih tumpukan perangkat lunak Anda untuk pengembangan Ethereum.", - "page-local-environment-setup-meta-title": "Pengaturan pengembangan lokal Ethereum", - "page-local-environment-setup-subtitle": "Jika Anda sudah siap untuk mulai membangun, inilah waktunya untuk memilih tumpukan.", - "page-local-environment-setup-subtitle-2": "Berikut adalah peralatan dan kerangka kerja yang bisa digunakan untuk membantu membangun aplikasi Ethereum Anda.", - "page-local-environment-setup-title": "Siapkan lingkungan pengembangan lokal Anda", - "page-local-environment-solidity-template-desc": "Sebuah templat GitHub untuk pengaturan bawaan kontrak pintar Solidity Anda. Sudah termasuk sebuah jaringan lokal Hardhat, Waffle untuk pengujian, Ethers untuk implementasi dompet, dan banyak lagi.", - "page-local-environment-solidity-template-logo-alt": "Logo template Solidity" -} \ No newline at end of file diff --git a/src/intl/it/page-developers-learning-tools.json b/src/intl/it/page-developers-learning-tools.json deleted file mode 100644 index 94e814ac86d..00000000000 --- a/src/intl/it/page-developers-learning-tools.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "page-learning-tools-bloomtech-description": "Il corso di Web3 di BloomTech ti insegnerà le abilità che i datori di lavoro cercano negli ingegneri.", - "page-learning-tools-bloomtech-logo-alt": "Logo di BloomTech", - "page-learning-tools-bootcamps": "Bootcamp per sviluppatori", - "page-learning-tools-bootcamps-desc": "Corsi online a pagamento per mettersi in pari velocemente.", - "page-learning-tools-browse-docs": "Sfoglia le documentazioni", - "page-learning-tools-capture-the-ether-description": "\"Capture the Ether\" è un gioco in cui violi i contratti intelligenti di Ethereum per imparare sulla sicurezza.", - "page-learning-tools-capture-the-ether-logo-alt": "Logo di Capture the Ether", - "page-learning-tools-node-guardians-description": "Node Guardians è una piattaforma educativa gamificata che immerge gli sviluppatori web3 in missioni a tema fantasy per padroneggiare la programmazione in Solidity, Cairo, Noir e Huff.", - "page-learning-tools-node-guardians-logo-alt": "Logo di Node Guardians", - "page-learning-tools-coding": "Impara scrivendo codice", - "page-learning-tools-coding-subtitle": "Questi strumenti ti aiuteranno a sperimentare con Ethereum se preferisci un'esperienza d'apprendimento più interattiva.", - "page-learning-tools-consensys-academy-description": "Bootcamp online per sviluppatori di Ethereum.", - "page-learning-tools-consensys-academy-logo-alt": "Logo di ConsenSys Academy", - "page-learning-tools-cryptozombies-description": "Impara Solidity creando il tuo gioco di Zombie.", - "page-learning-tools-cryptozombies-logo-alt": "Logo di CryptoZombies", - "page-learning-tools-dapp-world-description": "Un ecosistema di valorizzazione delle competenze sulla blockchain, che include corsi, quiz, esperienze pratiche e contest settimanali.", - "page-learning-tools-dapp-world-logo-alt": "Logo di Dapp World", - "page-learning-tools-documentation": "Impara con la documentazione", - "page-learning-tools-documentation-desc": "Vuoi imparare di più? Vai alla nostra documentazione per trovare le spiegazioni di cui hai bisogno.", - "page-learning-tools-eth-dot-build-description": "Un sandbox educativo per web3, che include la programmazione trascina e rilascia e i blocchi di costruzione open source.", - "page-learning-tools-eth-dot-build-logo-alt": "Logo di Eth.build", - "page-learning-tools-ethernauts-description": "Completa i livelli violando i contratti intelligenti.", - "page-learning-tools-ethernauts-logo-alt": "Logo di Ethernauts", - "page-learning-tools-metaschool-description": "Diventa uno sviluppatore Web3 creando e lanciando dApps.", - "page-learning-tools-metaschool-logo-alt": "Logo _metaschool", - "page-learning-tools-game-tutorials": "Tutorial di gioco interattivi", - "page-learning-tools-game-tutorials-desc": "Impara giocando. Questi tutorial ti insegneranno le basi usando il gioco.", - "page-learning-tools-meta-desc": "Strumenti di programmazione basati sul web ed esperienze d'apprendimento interattive per aiutarti a sperimentare con lo sviluppo di Ethereum.", - "page-learning-tools-meta-title": "Strumenti d'apprendimento per sviluppatori", - "page-learning-tools-atlas-logo-alt": "Logo di Atlas", - "page-learning-tools-atlas-description": "Scrivi, testa e distribuisci contratti intelligenti in pochi minuti con l'IDE di Atlas.", - "page-learning-tools-questbook-description": "Tutorial per autodidatti per imparare il Web 3.0 sviluppando", - "page-learning-tools-questbook-logo-alt": "Logo di Questbook", - "page-learning-tools-remix-description": "Sviluppa, distribuisci e amministra i contratti intelligenti per Ethereum. Segui i tutorial con il plugin di LearnEth.", - "page-learning-tools-remix-description-2": "Remix, Replit, ChainIDE e Atlas non sono semplici sandbox: utilizzandoli, gli sviluppatori possono scrivere, compilare e distribuire i propri contratti intelligenti.", - "page-learning-tools-replit-description": "Un ambiente di sviluppo personalizzabile per Ethereum con ricarica immediata, controllo degli errori e supporto della rete di prova di prima classe.", - "page-learning-tools-chainIDE-description": "Inizia il tuo viaggio verso il Web3 scrivendo contratti intelligenti per Ethereum con ChainIDE. Utilizza i modelli integrati per imparare e risparmiare tempo.", - "page-learning-tools-chainIDE-logo-alt": "Logo di ChainIDE", - "page-learning-tools-tenderly-description": "Tenderly Sandbox è un ambiente di prototipazione in cui è possibile scrivere, eseguire ed portare a termine il debug di contratti intelligenti nel browser utilizzando Solidity e JavaScript.", - "page-learning-tools-tenderly-logo-alt": "Logo di Tenderly", - "page-learning-tools-replit-logo-alt": "Logo di Replit", - "page-learning-tools-remix-logo-alt": "Logo di Remix", - "page-learning-tools-sandbox": "Sandbox del codice", - "page-learning-tools-sandbox-desc": "Questi sandbox ti offriranno uno spazio per sperimentare con la scrittura dei contratti intelligenti e la comprensione di Ethereum.", - "page-learning-tools-speed-run-ethereum-description": "Speed Run Ethereum è una serie di sfide per testare la tua conoscenza di Solidity utilizzando Scaffold-ETH", - "page-learning-tools-speed-run-ethereum-logo-alt": "Logo di Speed Run Ethereum", - "page-learning-tools-studio-description": "Un IDE basato sul web in cui puoi seguire i tutorial per creare e testare i contratti intelligenti, nonché crearne un frontend.", - "page-learning-tools-vyperfun-description": "Impara a usare Vyper creando il tuo gioco Pokémon.", - "page-learning-tools-vyperfun-logo-alt": "Logo di Vyper.fun", - "page-learning-tools-nftschool-description": "Esplora cosa succede coi token non fungibili, o NFT, dal punto di vista tecnico.", - "page-learning-tools-nftschool-logo-alt": "Logo della scuola di NFT", - "page-learning-tools-platzi-description": "Scopri come creare le dapp su Web3 e padroneggiare tutte le abilità necessarie per essere uno sviluppatore della blockchain.", - "page-learning-tools-platzi-logo-alt": "Logo di Platzi", - "page-learning-tools-alchemy-university-description": "Sviluppa la tua carriera in web3 con corsi, progetti e programmazione.", - "page-learning-tools-alchemy-university-logo-alt": "Logo di Alchemy University", - "page-learning-tools-learnweb3-description": "LearnWeb3 è una piattaforma educativa gratuita e d'alta qualità per diventare un asso nello sviluppo in Web3.", - "page-learning-tools-learnweb3-logo-alt": "Logo di LearnWeb3", - "page-learning-tools-cyfrin-updraft-description": "Impara lo sviluppo dei contratti intelligenti per tutti i livelli di abilità e i controlli di sicurezza.", - "page-learning-tools-cyfrin-updraft-logo-alt": "Logo di Cyfrin Updraft", - "alt-eth-blocks": "Figura di blocchi organizzati come simbolo ETH" -} diff --git a/src/intl/it/page-developers-local-environment.json b/src/intl/it/page-developers-local-environment.json deleted file mode 100644 index 213fcfa55c6..00000000000 --- a/src/intl/it/page-developers-local-environment.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "page-local-environment-brownie-desc": "Un framework di test e sviluppo basato su Python per i contratti intelligenti destinati alla Macchina Virtuale di Ethereum.", - "page-local-environment-brownie-logo-alt": "Logo di Brownie", - "page-local-environment-kurtosis-desc": "Un kit di strumenti basato sul contenitore per configurare e avviare facilmente una rete di prova Ethereum multi-client che consenta un rapido sviluppo, prototipazione e test di dApp locali.", - "page-local-environment-kurtosis-logo-alt": "Logo di Kurtosis", - "page-local-environment-epirus-desc": "Una piattaforma per lo sviluppo, la distribuzione e il monitoraggio delle applicazioni blockchain sulla macchina virtuale di Java.", - "page-local-environment-epirus-logo-alt": "Logo di Epirus", - "page-local-environment-eth-app-desc": "Crea app basate su Ethereum con un comando. Viene fornito con un'ampia offerta di framework di interfaccia utente e modelli DeFi tra cui scegliere.", - "page-local-environment-eth-app-logo-alt": "Crea il logo dell'app Eth", - "page-local-environment-foundry-desc": "Un kit di strumenti incredibilmente veloce, portatile e modulare per lo sviluppo di applicazioni di Ethereum scritto in Rust.", - "page-local-environment-foundry-logo-alt": "Logo di Foundry", - "page-local-environment-framework-feature-1": "Funzionalità per avviare un'istanza blockchain locale.", - "page-local-environment-framework-feature-2": "Utilità per compilare e testare i tuoi contratti intelligenti.", - "page-local-environment-framework-feature-3": "Componenti aggiuntivi per lo sviluppo su client per creare un'applicazione per gli utenti all'interno dello stesso progetto/repository.", - "page-local-environment-framework-feature-4": "Configurazione per connettersi alle reti di Ethereum e distribuire i contratti, che sia a un'istanza operata localmente o una delle reti pubbliche di Ethereum.", - "page-local-environment-framework-feature-5": "Distribuzione decentralizzata delle app. Integrazioni con opzioni di storage come IPFS.", - "page-local-environment-framework-features": "Questi framework sono dotati di molte funzionalità disponibili subito, come:", - "page-local-environment-frameworks-desc": " Ti consigliamo di scegliere un framework, soprattutto se hai appena iniziato. Costruire una dapp completa richiede diversi componenti della tecnologia. I framework includono molte delle funzionalità necessarie o forniscono semplici sistemi plug-in per scegliere gli strumenti desiderati.", - "page-local-environment-frameworks-title": "Framework e stack preimpostati", - "page-local-environment-hardhat-desc": "Hardhat è un ambiente di sviluppo Ethereum per professionisti.", - "page-local-environment-hardhat-logo-alt": "Logo di Hardhat", - "page-local-environment-openZeppelin-desc": "Risparmia ore di sviluppo compilando, aggiornando, distribuendo e interagendo con i contratti intelligenti, con la nostra CLI.", - "page-local-environment-openZeppelin-logo-alt": "Logo di OpenZeppelin", - "page-local-environment-scaffold-eth-desc": "Ether + Hardhat + React: tutto ciò di cui hai bisogno per iniziare a creare applicazioni decentralizzate basate sui contratti intelligenti.", - "page-local-environment-scaffold-eth-logo-alt": "logo scaffold-eth", - "page-local-environment-setup-meta-desc": "Guida su come scegliere uno stack software per lo sviluppo Ethereum.", - "page-local-environment-setup-meta-title": "Configurazione di sviluppo locale Ethereum", - "page-local-environment-setup-subtitle": "Prima di iniziare a creare, è necessario scegliere uno stack.", - "page-local-environment-setup-subtitle-2": " Ecco gli strumenti e i framework che puoi utilizzare per creare un'applicazione Ethereum.", - "page-local-environment-setup-title": "Configura il tuo ambiente di sviluppo locale", - "page-local-environment-solidity-template-desc": "Un modello di GitHub per una configurazione predefinita per i tuoi contratti intelligenti in Solidity. Include una rete locale Hardhat, Waffle per i test, Ether per l'implementazione del portafoglio, e molto altro.", - "page-local-environment-solidity-template-logo-alt": "Logo del modello Solidity" -} \ No newline at end of file diff --git a/src/intl/ja/page-developers-learning-tools.json b/src/intl/ja/page-developers-learning-tools.json deleted file mode 100644 index 0926aad6ba9..00000000000 --- a/src/intl/ja/page-developers-learning-tools.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "page-learning-tools-bloomtech-description": "BloomTech Web3コースでは、エンジニアに求められるスキルを学ぶことができます。", - "page-learning-tools-bloomtech-logo-alt": "BloomTechロゴ", - "page-learning-tools-bootcamps": "デベロッパーブートキャンプ", - "page-learning-tools-bootcamps-desc": "有料のオンラインコースを利用して、効率的に学習しましょう。", - "page-learning-tools-browse-docs": "ドキュメントを参照", - "page-learning-tools-capture-the-ether-description": "Capture the Etherは、イーサリアムのスマートコントラクトをハッキングして、セキュリティについて学ぶゲームです。", - "page-learning-tools-capture-the-ether-logo-alt": "イーサロゴをキャプチャ", - "page-learning-tools-node-guardians-description": "Node Guardiansは、web3デベロッパーがファンタジーテーマのクエストに没頭しながら、Solidity、Cairo、Noir、Huffのプログラミングをゲーム感覚でマスターできる教育プラットフォームです。", - "page-learning-tools-node-guardians-logo-alt": "Node Guardiansのロゴ", - "page-learning-tools-coding": "コーディングで学ぶ", - "page-learning-tools-coding-subtitle": "よりインタラクティブな学習体験を希望される場合、これらのツールはイーサリアムの実験に役立ちます。", - "page-learning-tools-consensys-academy-description": "オンラインのイーサリアムデベロッパーブートキャンプ", - "page-learning-tools-consensys-academy-logo-alt": "ConsenSys Academy ロゴ", - "page-learning-tools-cryptozombies-description": "Solidityを学んであなた自身のゾンビゲームを開発しましょう。", - "page-learning-tools-cryptozombies-logo-alt": "CryptoZombies ロゴ", - "page-learning-tools-dapp-world-description": "ブロックチェーンに関するスキルアップのエコシステムです。さまざまなコース、クイズ、ハンズオンによる実践、ウィークリーコンテストがあります。", - "page-learning-tools-dapp-world-logo-alt": "Dapp Worldのロゴ", - "page-learning-tools-documentation": "ドキュメントで学ぶ", - "page-learning-tools-documentation-desc": "詳細については、こちらのドキュメントを参照してください。", - "page-learning-tools-eth-dot-build-description": "ドラッグ&ドロップ式のプログラミングやオープンソースのビルディングブロック等の、web3用の教育用サンドボックス", - "page-learning-tools-eth-dot-build-logo-alt": "Eth.build ロゴ", - "page-learning-tools-ethernauts-description": "スマートコントラクトをハッキングして全てのレベルをクリアしましょう。", - "page-learning-tools-ethernauts-logo-alt": "Ethernauts ロゴ", - "page-learning-tools-metaschool-description": "分散型アプリ(dApps)を構築、出荷して、Web3開発者になりましょう。", - "page-learning-tools-metaschool-logo-alt": "_metaschoolロゴ", - "page-learning-tools-game-tutorials": "インタラクティブなゲームチュートリアル", - "page-learning-tools-game-tutorials-desc": "遊びながら学びましょう。これらのチュートリアルでは、ゲームをプレイしながら基本的な知識を身につけることができます。", - "page-learning-tools-meta-desc": "Webベースのコーディングツールとインタラクティブな学習体験により、イーサリアムの開発を実験することができます。", - "page-learning-tools-meta-title": "デベロッパー向けの学習ツール", - "page-learning-tools-atlas-logo-alt": "Atlasのロゴ", - "page-learning-tools-atlas-description": "Atlas IDEでスマートコントラクトの作成、テスト、デプロイを数分で行えます。", - "page-learning-tools-questbook-description": "構築しながらWeb 3.0をマイペースで学ぶチュートリアル", - "page-learning-tools-questbook-logo-alt": "Questbookロゴ", - "page-learning-tools-remix-description": "イーサリアム用のスマートコントラクトを開発、デプロイ、管理します。LearnEthプラグインを使用してチュートリアルに従ってください。", - "page-learning-tools-remix-description-2": "Remix、Replit、ChainIDE、Atlasは、単なるサンドボックスではありません。デベロッパーはこれらを使用して、独自のスマートコントラクトを作成、コンパイル、デプロイすることができます。", - "page-learning-tools-replit-description": "ホットリロード、エラーチェック、最高級のテストネットサポートを備えたカスタマイズ可能なイーサリアム開発環境。", - "page-learning-tools-chainIDE-description": "ChainIDEでイーサリアム用のスマートコントラクトを作成して、Web3への道を歩み始めましょう。ビルトインのテンプレートは学習の参考になるだけでなく、時間の節約にもなります。", - "page-learning-tools-chainIDE-logo-alt": "ChainIDEロゴ", - "page-learning-tools-tenderly-description": "Tenderly Sandboxとは、SolidityとJavaScriptを使用してブラウザでスマートコントラクトを記述、実行、デバッグするためのプロトタイピング環境です。", - "page-learning-tools-tenderly-logo-alt": "Tenderlyロゴ", - "page-learning-tools-replit-logo-alt": "Replitロゴ", - "page-learning-tools-remix-logo-alt": "Remix ロゴ", - "page-learning-tools-sandbox": "コードサンドボックス", - "page-learning-tools-sandbox-desc": "これらのサンドボックスは、スマートコントラクトを書いたり、イーサリアムを理解したりするための実験の場となります。", - "page-learning-tools-speed-run-ethereum-description": "Speed Run Ethereumには、Solidityの知識をScaffold-ETHを使ってテストできる演習問題があります。", - "page-learning-tools-speed-run-ethereum-logo-alt": "Speed Run Ethereumロゴ", - "page-learning-tools-studio-description": "WebベースのIDEでは、チュートリアルに従ってスマートコントラクトを作成してテストし、それらのフロントエンドを構築することができます。", - "page-learning-tools-vyperfun-description": "Vyperを学んでご自身のポケモンゲームを作りましょう。", - "page-learning-tools-vyperfun-logo-alt": "Vyper.fun ロゴ", - "page-learning-tools-nftschool-description": "非代替性トークン(NFT)について、技術的な側面から見てみましょう。", - "page-learning-tools-nftschool-logo-alt": "NFT schoolロゴ", - "page-learning-tools-platzi-description": "Web3で分散型アプリ(Dapp)を構築する方法を学び、ブロックチェーンデベロッパーに必要なすべてのスキルを習得しましょう。", - "page-learning-tools-platzi-logo-alt": "Platziロゴ", - "page-learning-tools-alchemy-university-description": "コース、プロジェクト、コードを通じて、Web3でのキャリアを築いてください。", - "page-learning-tools-alchemy-university-logo-alt": "Alchemy Universityロゴ", - "page-learning-tools-learnweb3-description": "LearnWeb3は、ゼロからWeb3開発のプロを目指せる、無料で高品質な教育プラットフォームです。", - "page-learning-tools-learnweb3-logo-alt": "LearnWeb3ロゴ", - "page-learning-tools-cyfrin-updraft-description": "スキルレベルに応じたスマートコントラクト開発やセキュリティ監査を学びましょう。", - "page-learning-tools-cyfrin-updraft-logo-alt": "Cyfrin Updraftロゴ", - "alt-eth-blocks": "ETHのシンボルのように構成されたブロックの図" -} diff --git a/src/intl/ja/page-developers-local-environment.json b/src/intl/ja/page-developers-local-environment.json deleted file mode 100644 index deef2fbff5b..00000000000 --- a/src/intl/ja/page-developers-local-environment.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "page-local-environment-brownie-desc": "イーサリアム仮想マシンをターゲットとしたスマートコントラクトのためのPythonベースの開発とテストフレームワーク。", - "page-local-environment-brownie-logo-alt": "Brownie ロゴ", - "page-local-environment-kurtosis-desc": "ローカルdAppの開発、プロトタイピング、テストを迅速に行うための、マルチクライアント型イーサリアムテストネットの構成とスピンアップを簡素化するコンテナベースのツールキット。", - "page-local-environment-kurtosis-logo-alt": "Kurtosisロゴ", - "page-local-environment-epirus-desc": "Java仮想マシン上でブロックチェーンアプリケーションを開発、デプロイ、監視するためのプラットフォーム。", - "page-local-environment-epirus-logo-alt": "Epirus ロゴ", - "page-local-environment-eth-app-desc": "1つのコマンドでEthereumを搭載したアプリを作成します。UIフレームワークとDeFiテンプレートから選択できます。", - "page-local-environment-eth-app-logo-alt": "Ethアプリのロゴを作成", - "page-local-environment-foundry-desc": "Rustで書かれた、イーサリアムアプリケーション開発のための、高速でポータブルなモジュール式ツールキット。", - "page-local-environment-foundry-logo-alt": "Foundryロゴ", - "page-local-environment-framework-feature-1": "ローカルのブロックチェーンインスタンスを起動する機能。", - "page-local-environment-framework-feature-2": "スマートコントラクトをコンパイルしてテストするユーティリティ。", - "page-local-environment-framework-feature-3": "クライアント開発アドオンは、同じプロジェクト/リポジトリ内でユーザーが利用するアプリケーションを構築します。", - "page-local-environment-framework-feature-4": "Ethereumネットワークに接続し、ローカルで実行されているインスタンス、またはEthereumのパブリックネットワークのいずれかにかかわらず、コントラクトを展開するための設定。", - "page-local-environment-framework-feature-5": "分散型アプリ配信 - IPFSのようなストレージオプションとの統合。", - "page-local-environment-framework-features": "これらのフレームワークには、すぐに使える機能がたくさんあります。", - "page-local-environment-frameworks-desc": " 使用を開始したばかりの場合は特に、フレームワークを選択することをお勧めします。 本格的なdappを構築するには、さまざまな技術が必要です。フレームワークには、必要な機能の多くが含まれているか、ユーザーが望むツールを選択するための簡単なプラグインシステムが提供されています。", - "page-local-environment-frameworks-title": "フレームワークと事前作成されたスタック", - "page-local-environment-hardhat-desc": "Hardhatは、プロのためのイーサリアム開発環境です。", - "page-local-environment-hardhat-logo-alt": "Hardhatロゴ", - "page-local-environment-openZeppelin-desc": "CLIとのスマートコントラクトをコンパイル、アップグレード、デプロイ、および相互作用することで、開発時間を短縮できます。", - "page-local-environment-openZeppelin-logo-alt": "OpenZeppelinロゴ", - "page-local-environment-scaffold-eth-desc": "Ethers + Hardhat + React: スマートコントラクトで実行する分散型アプリケーションの構築を始めるために必要なものすべて", - "page-local-environment-scaffold-eth-logo-alt": "scaffold-eth ロゴ", - "page-local-environment-setup-meta-desc": "イーサリアム開発用のソフトウェアスタックを選択する方法についてのガイド。", - "page-local-environment-setup-meta-title": "イーサリアムのローカル開発のセットアップ", - "page-local-environment-setup-subtitle": "構築を開始する準備ができたら、スタックを選択する時間です。", - "page-local-environment-setup-subtitle-2": " ここでは、Ethereumアプリケーションの構築に役立つツールとフレームワークを紹介します。", - "page-local-environment-setup-title": "ローカル開発環境をセットアップする", - "page-local-environment-solidity-template-desc": "Solidityスマートコントラクト用の事前構築されたセットアップのためのGitHubテンプレート。Hardhatローカルネットワーク、ウォレット実装のためのEthersなどが含まれています。", - "page-local-environment-solidity-template-logo-alt": "Solidityテンプレートのロゴ" -} diff --git a/src/intl/ko/page-developers-learning-tools.json b/src/intl/ko/page-developers-learning-tools.json deleted file mode 100644 index 18c080e9d73..00000000000 --- a/src/intl/ko/page-developers-learning-tools.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "page-learning-tools-bloomtech-description": "BloomTech Web3 강의로 고용주들이 바라는 엔지니어 기술에 대해 알아볼 수 있습니다.", - "page-learning-tools-bloomtech-logo-alt": "BloomTech 로고", - "page-learning-tools-bootcamps": "개발자 부트캠프", - "page-learning-tools-bootcamps-desc": "최신 정보를 빠르게 제공하기 위한 유료 온라인 강의", - "page-learning-tools-browse-docs": "문서 찾아보기", - "page-learning-tools-capture-the-ether-description": "이더를 잡아라(Capture the Ether)는 이더리움 스마트 계약을 해킹함으로써 보안에 대해 배울 수 있는 게임입니다.", - "page-learning-tools-capture-the-ether-logo-alt": "Capture the Ether 로고", - "page-learning-tools-coding": "코딩으로 학습", - "page-learning-tools-coding-subtitle": "양방향 학습 환경을 선호하는 경우, 해당 도구를 이용해 이더리움을 경험해 볼 수 있습니다.", - "page-learning-tools-consensys-academy-description": "온라인 이더리움 개발자 부트캠프.", - "page-learning-tools-consensys-academy-logo-alt": "ConsenSys Academy 로고", - "page-learning-tools-cryptozombies-description": "나만의 좀비 게임을 만드는 솔리디티(Solidity) 배워보기.", - "page-learning-tools-cryptozombies-logo-alt": "CryptoZombies 로고", - "page-learning-tools-documentation": "문서를 통한 학습", - "page-learning-tools-documentation-desc": "더 자세한 학습을 원하신다면 저희가 작성한 문서에서 필요한 자료를 찾아보세요.", - "page-learning-tools-eth-dot-build-description": "드래그 앤 드롭 프로그래밍 방식과 오픈소스 빌딩 블록을 이용한 웹3에 대한 교육용 샌드박스.", - "page-learning-tools-eth-dot-build-logo-alt": "Eth.build 로고", - "page-learning-tools-ethernauts-description": "스마트 계약 해킹을 통한 레벨 완료.", - "page-learning-tools-ethernauts-logo-alt": "Ethernauts 로고", - "page-learning-tools-metaschool-description": "디앱을 구축하고 개발하여 웹3 개발자가 되어보세요.", - "page-learning-tools-metaschool-logo-alt": "_metaschool 로고", - "page-learning-tools-game-tutorials": "양방향 게임 튜토리얼", - "page-learning-tools-game-tutorials-desc": "놀면서 자연스럽게 배워보세요. 이 튜토리얼에서는 게임하면서 기본 사항을 배울 수 있습니다.", - "page-learning-tools-meta-desc": "웹 기반 코딩 도구와 양방향 학습 환경을 통해 이더리움 개발을 실험하는 데 도움을 줍니다.", - "page-learning-tools-meta-title": "개발자 학습 도구", - "page-learning-tools-questbook-description": "직접 빌드하면서 Web 3.0를 학습하는 튜토리얼", - "page-learning-tools-questbook-logo-alt": "Questbook 로고", - "page-learning-tools-remix-description": "이더리움을 위한 스마트 계약을 개발, 배포 및 관리할 수 있습니다. LearnEth 플러그인으로 튜토리얼을 확인해 보세요.", - "page-learning-tools-remix-description-2": "Remix, Replit, ChainIDE는 단순한 샌드박스가 아닙니다. 개발자는 이를 사용하여 스마트 계약을 작성하고 컴파일하거나 배포할 수 있습니다.", - "page-learning-tools-replit-description": "핫 리로드, 오류 확인 및 1등급 테스트넷 지원으로 맞춤화할 수 있는 이더리움의 개발 환경입니다.", - "page-learning-tools-chainIDE-description": "ChainIDE를 사용하여 이더리움의 스마트 계약을 작성함으로써 웹3를 향한 여정을 시작해 보세요. 내장된 템플릿을 사용해 시간을 절약하면서 학습해 볼 수 있습니다.", - "page-learning-tools-chainIDE-logo-alt": "ChainIDE 로고", - "page-learning-tools-tenderly-description": "Tenderly Sandbox는 브라우저에서 Solidity와 JavaScript를 사용하여 스마트 계약을 작성, 실행 및 디버그할 수 있는 프로토타이핑 환경입니다.", - "page-learning-tools-tenderly-logo-alt": "Tenderly 로고", - "page-learning-tools-replit-logo-alt": "Replit 로고", - "page-learning-tools-remix-logo-alt": "Remix 로고", - "page-learning-tools-sandbox": "코드 샌드박스", - "page-learning-tools-sandbox-desc": "다음 샌드박스는 스마트 계약을 작성하고 이더리움을 이해하도록 실험할 수 있는 공간을 제공합니다.", - "page-learning-tools-speed-run-ethereum-description": "스피드런 이더리움은 Scaffold-ETH를 이용하여 솔리디티 지식을 테스트할 수 있는 일련의 과제입니다.", - "page-learning-tools-speed-run-ethereum-logo-alt": "Speed Run Ethereum 로고", - "page-learning-tools-studio-description": "웹 기반의 IDE에서는 튜토리얼을 따라 스마트 계약을 만들고 테스트하며, 프런트엔드를 구축할 수 있습니다.", - "page-learning-tools-vyperfun-description": "자신만의 포켓몬 게임을 만들며 Vyper를 배워보기.", - "page-learning-tools-vyperfun-logo-alt": "Vyper.fun 로고", - "page-learning-tools-nftschool-description": "대체 불가 토큰(NFT)의 기술적인 측면에서 발생하는 내용 살펴보기.", - "page-learning-tools-nftschool-logo-alt": "NFT 스쿨 로고", - "page-learning-tools-platzi-description": "웹3에서 디앱을 개발하는 방법을 알아보고 블록체인 개발자가 되기 위해 필요한 기술을 완벽하게 습득하기.", - "page-learning-tools-platzi-logo-alt": "Platzi 로고", - "page-learning-tools-alchemy-university-description": "교육 과정, 프로젝트 및 코드를 통해 웹3 경력 발전하기.", - "page-learning-tools-alchemy-university-logo-alt": "Alchemy University 로고", - "alt-eth-blocks": "ETH 기호처럼 구성되고 있는 블록의 그림" -} \ No newline at end of file diff --git a/src/intl/ko/page-developers-local-environment.json b/src/intl/ko/page-developers-local-environment.json deleted file mode 100644 index 3aba2001d17..00000000000 --- a/src/intl/ko/page-developers-local-environment.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "page-local-environment-brownie-desc": "Python 기반 개발 및 이더리움 가상 머신을 대상으로 하는 스마트 계약을 위한 테스팅 프레임워크입니다.", - "page-local-environment-brownie-logo-alt": "Brownie 로고", - "page-local-environment-kurtosis-desc": "신속한 로컬 디앱 개발, 프로토타이핑 및 테스트를 위해 멀티 클라이언트 이더리움 테스트넷을 간편하게 구성하고 스핀업할 수 있는 컨테이너 기반 툴킷입니다.", - "page-local-environment-kurtosis-logo-alt": "Kurtosis 로고", - "page-local-environment-epirus-desc": "Java 가상 머신에서 블록체인 애플리케이션을 개발, 배포하고, 모니터링하기 위한 플랫폼입니다.", - "page-local-environment-epirus-logo-alt": "Epirus 로고", - "page-local-environment-eth-app-desc": "한 개의 명령어로 이더리움 제공 앱을 만듭니다. 선택할 수 있는 다양한 UI 프레임워크와 DeFi 템플릿도 제공됩니다.", - "page-local-environment-eth-app-logo-alt": "이더 앱 만들기 로고", - "page-local-environment-foundry-desc": "Rust 언어로 작성된 매우 신속하고 이식 가능한 모듈식 이더리움 애플리케이션 개발용 툴킷입니다.", - "page-local-environment-foundry-logo-alt": "Foundry 로고", - "page-local-environment-framework-feature-1": "로컬 블록체인 인스턴스를 스핀업하기 위한 기능.", - "page-local-environment-framework-feature-2": "스마트 계약을 컴파일하고 테스트하기 위한 유틸리티.", - "page-local-environment-framework-feature-3": "동일한 프로젝트/리포지토리 내에서 사용자용 애플리케이션을 빌드하기 위한 클라이언트 개발 추가 기능.", - "page-local-environment-framework-feature-4": "이더리움 네트워크에 연결하고 로컬로 실행 중인 인스턴스나 이더리움 공공 네트워크 중 하나에 계약을 배포할 수 있는 환경 구성.", - "page-local-environment-framework-feature-5": "탈중앙화 앱 분배 - IPFS와 같은 저장 공간 옵션에 통합.", - "page-local-environment-framework-features": "해당 프레임워크는 다음과 같은 창의적인 기능과 함께 제공됩니다.", - "page-local-environment-frameworks-desc": "프레임워크를 선택할 것을 권장합니다. 특히 처음 시작하는 사용자에게는 중요합니다. 완전한 디앱을 빌드하려면 다른 기술이 필요합니다. 프레임워크에는 다양한 필수 기능이 포함되거나, 원하는 도구를 고르기 위해 쉬운 플러그인 시스템을 제공합니다.", - "page-local-environment-frameworks-title": "프레임워크 및 미리 제작된 스택", - "page-local-environment-hardhat-desc": "Hardhat은 전문가를 위한 이더리움 개발 환경입니다.", - "page-local-environment-hardhat-logo-alt": "Hardhat 로고", - "page-local-environment-openZeppelin-desc": "저희 CLI를 사용하여 스마트 계약을 컴파일, 업그레이드, 배포하고, 상호작용하여 개발 시간을 절약하세요.", - "page-local-environment-openZeppelin-logo-alt": "OpenZeppelin 로고", - "page-local-environment-scaffold-eth-desc": "Ethers + Hardhat + React: 스마트 계약에서 제공하는 탈중앙화 애플리케이션 구축을 시작하는 데에 필요한 모든 것", - "page-local-environment-scaffold-eth-logo-alt": "scaffold-eth 로고", - "page-local-environment-setup-meta-desc": "이더리움 개발을 위한 소프트웨어 스택을 선택하는 방법에 대한 안내서", - "page-local-environment-setup-meta-title": "이더리움 로컬 개발 설정", - "page-local-environment-setup-subtitle": "빌드할 준비가 되셨다면 스택을 선택할 차례입니다.", - "page-local-environment-setup-subtitle-2": "이더리움 애플리케이션을 만들기 위해 사용할 수 있는 도구와 프레임워크는 다음과 같습니다.", - "page-local-environment-setup-title": "로컬 개발 환경을 설정하기", - "page-local-environment-solidity-template-desc": "Solidity 스마트 계약을 위해 미리 빌드된 설정의 GitHub 템플릿입니다. 여기에는 Hardhat 로컬 네트워크, 테스트용 Waffle, 지갑 실행용 Ethers 등이 포함됩니다.", - "page-local-environment-solidity-template-logo-alt": "Solidity 템플릿 로고" -} \ No newline at end of file diff --git a/src/intl/mr/page-developers-learning-tools.json b/src/intl/mr/page-developers-learning-tools.json deleted file mode 100644 index f51b435f989..00000000000 --- a/src/intl/mr/page-developers-learning-tools.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "page-learning-tools-bloomtech-description": "BloomTech Web3 कोर्स तुम्हाला नियोक्ते अभियंत्यांमध्ये कोणती कौशल्ये शोधतात ते शिकवेल.", - "page-learning-tools-bloomtech-logo-alt": "BloomTech लोगो", - "page-learning-tools-bootcamps": "विकसक बूटकॅम्प", - "page-learning-tools-bootcamps-desc": "तुम्‍हाला वेगवान, जलद मिळवून देण्‍यासाठी सशुल्‍क ऑनलाइन कोर्स.", - "page-learning-tools-browse-docs": "दस्तऐवज ब्राउझ करा", - "page-learning-tools-capture-the-ether-description": "कॅप्चर द इथर हा एक गेम आहे ज्यामध्ये तुम्ही सुरक्षिततेबद्दल जाणून घेण्यासाठी Ethereum स्मार्ट कॉन्ट्रॅक्ट हॅक करता.", - "page-learning-tools-capture-the-ether-logo-alt": "इथर लोगो कॅप्चर करा", - "page-learning-tools-coding": "कोडिंग करून शिका", - "page-learning-tools-coding-subtitle": "तुम्ही अधिक परस्परसंवादी शिक्षण अनुभवाला प्राधान्य दिल्यास ही साधने तुम्हाला Ethereum सह प्रयोग करण्यात मदत करतील.", - "page-learning-tools-consensys-academy-description": "ऑनलाइन Ethereum विकसक बूटकॅम्प.", - "page-learning-tools-consensys-academy-logo-alt": "ConsenSys अकादमी लोगो", - "page-learning-tools-cryptozombies-description": "तुमचा स्वतःचा झोम्बी गेम तयार करण्यासाठी Solidity शिका.", - "page-learning-tools-cryptozombies-logo-alt": "CryptoZombies लोगो", - "page-learning-tools-documentation": "कागदपत्रांसह शिका", - "page-learning-tools-documentation-desc": "अधिक जाणून घेऊ इच्छिता? तुम्हाला आवश्यक असलेले स्पष्टीकरण शोधण्यासाठी आमच्या दस्तऐवजावर जा.", - "page-learning-tools-eth-dot-build-description": "web3 साठी शैक्षणिक सँडबॉक्स, ड्रॅग-अँड-ड्रॉप प्रोग्रामिंग आणि ओपन-सोर्स बिल्डिंग ब्लॉक्ससह.", - "page-learning-tools-eth-dot-build-logo-alt": "Eth.build लोगो", - "page-learning-tools-ethernauts-description": "स्मार्ट कॉन्ट्रॅक्ट हॅक करून स्तर पूर्ण करा.", - "page-learning-tools-ethernauts-logo-alt": "Ethernauts लोगो", - "page-learning-tools-metaschool-description": "dApps बनवून आणि पाठवून Web3 विकसक बना.", - "page-learning-tools-metaschool-logo-alt": "_metaschool लोगो", - "page-learning-tools-game-tutorials": "परस्परसंवादी गेम ट्यूटोरियल", - "page-learning-tools-game-tutorials-desc": "खेळताना शिका. हे ट्यूटोरियल तुम्हाला गेमप्ले वापरून मूलभूत गोष्टींबद्दल माहिती देतात.", - "page-learning-tools-meta-desc": "वेब-आधारित कोडिंग साधने आणि परस्परसंवादी शिक्षण अनुभव तुम्हाला Ethereum विकासासह प्रयोग करण्यात मदत करतात.", - "page-learning-tools-meta-title": "विकसक शिक्षण साधने", - "page-learning-tools-questbook-description": "तयार करून वेब 3.0 शिकण्यासाठी स्वयं-गती शिकवण्या", - "page-learning-tools-questbook-logo-alt": "Questbook लोगो", - "page-learning-tools-remix-description": "Ethereum साठी स्मार्ट कॉन्ट्रॅक्ट विकसित करा, तैनात करा आणि प्रशासित करा. LearnEth प्लगइनसह ट्यूटोरियल फॉलो करा.", - "page-learning-tools-remix-description-2": "Remix, Replit आणि ChainIDE हे फक्त सँडबॉक्स नाहीत—विकासक त्यांचा वापर करून त्यांचे स्मार्ट करार लिहू, संकलित करू आणि उपयोजित करू शकतात.", - "page-learning-tools-replit-description": "हॉट रीलोडिंग, एरर चेकिंग आणि फर्स्ट-क्लास टेस्टनेट सपोर्टसह Ethereum साठी सानुकूल विकास वातावरण.", - "page-learning-tools-chainIDE-description": "ChainIDE सह Ethereum साठी स्मार्ट कॉन्ट्रॅक्ट लिहून Web3 वर तुमचा प्रवास सुरू करा. शिकण्यासाठी आणि वेळ वाचवण्यासाठी अंगभूत टेम्पलेट वापरा.", - "page-learning-tools-chainIDE-logo-alt": "ChainIDE लोगो", - "page-learning-tools-tenderly-description": "Tenderly Sandbox हे एक प्रोटोटाइपिंग वातावरण आहे जिथे तुम्ही Solidity आणि JavaScript वापरून ब्राउझरमध्ये स्मार्ट कॉन्ट्रॅक्ट लिहू, अंमलात आणू आणि डीबग करू शकता.", - "page-learning-tools-tenderly-logo-alt": "Tenderly लोगो", - "page-learning-tools-replit-logo-alt": "Replit लोगो", - "page-learning-tools-remix-logo-alt": "Remix लोगो", - "page-learning-tools-sandbox": "कोड सँडबॉक्सेस", - "page-learning-tools-sandbox-desc": "हे सँडबॉक्स तुम्हाला स्मार्ट कॉन्ट्रॅक्ट लिहिण्यासाठी आणि Ethereum समजून घेऊन प्रयोग करण्यासाठी जागा देतील.", - "page-learning-tools-speed-run-ethereum-description": "स्पीड रन Ethereum हे Scaffold-ETH वापरून तुमच्या Solidity ज्ञानाची चाचणी घेण्यासाठी आव्हानांचा एक संच आहे", - "page-learning-tools-speed-run-ethereum-logo-alt": "स्पीड रन Ethereum लोगो", - "page-learning-tools-studio-description": "एक वेब-आधारित IDE जेथे तुम्ही स्मार्ट कॉन्ट्रॅक्ट्स तयार करण्यासाठी आणि चाचणी करण्यासाठी शिकवण्या फॉलो करू शकता आणि त्यांच्यासाठी फ्रंटएंड तयार करू शकता.", - "page-learning-tools-vyperfun-description": "तुमचा स्वतःचा Pokémon गेम तयार करण्यासाठी व्हायपर जाणून घ्या.", - "page-learning-tools-vyperfun-logo-alt": "Vyper.fun लोगो", - "page-learning-tools-nftschool-description": "तांत्रिक बाजूने नॉन-फंजिबल टोकन किंवा NFT सह काय चालले आहे ते एक्सप्लोर करा.", - "page-learning-tools-nftschool-logo-alt": "NFT शाळेचा लोगो", - "page-learning-tools-platzi-description": "Web3 वर dapps कसे तयार करायचे ते जाणून घ्या आणि ब्लॉकचेन डेव्हलपर होण्यासाठी आवश्यक असलेल्या सर्व कौशल्यांमध्ये प्रभुत्व मिळवा.", - "page-learning-tools-platzi-logo-alt": "Platzi लोगो", - "page-learning-tools-alchemy-university-description": "अभ्यासक्रम, प्रकल्प आणि कोडद्वारे तुमचे web3\n करिअर विकसित करा.", - "page-learning-tools-alchemy-university-logo-alt": "Alchemy University लोगो", - "alt-eth-blocks": "ETH चिन्हाप्रमाणे आयोजित केले जात असलेल्या ठोकळ्यांचे स्पष्टीकरणात्मक चित्र" -} \ No newline at end of file diff --git a/src/intl/mr/page-developers-local-environment.json b/src/intl/mr/page-developers-local-environment.json deleted file mode 100644 index fd6e05697c7..00000000000 --- a/src/intl/mr/page-developers-local-environment.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "page-local-environment-brownie-desc": "Ethereum व्हर्च्युअल मशीनला लक्ष्य करणार्‍या स्मार्ट कॉन्ट्रॅक्टसाठी Python-आधारित विकास आणि चाचणी फ्रेमवर्क.", - "page-local-environment-brownie-logo-alt": "Brownie लोगो", - "page-local-environment-kurtosis-desc": "जलद स्थानिक dApp विकास, प्रोटोटाइपिंग आणि चाचणीसाठी मल्टी-क्लायंट Ethereum टेस्टनेट सहजपणे कॉन्फिगर आणि स्पिनिंगसाठी कंटेनर-आधारित टूलकिट.", - "page-local-environment-kurtosis-logo-alt": "Kurtosis लोगो", - "page-local-environment-epirus-desc": "Java व्हर्च्युअल मशीनवर ब्लॉकचेन ऍप्लिकेशन्स विकसित करणे, तैनात करणे आणि त्यांचे परीक्षण करणे यासाठी एक व्यासपीठ.", - "page-local-environment-epirus-logo-alt": "Epirus लोगो", - "page-local-environment-eth-app-desc": "एका आदेशाने Ethereum-चालित अॅप्स तयार करा. निवडण्यासाठी UI फ्रेमवर्क आणि DeFi टेम्पलेट्सच्या विस्तृत ऑफरिंगसह येते.", - "page-local-environment-eth-app-logo-alt": "Eth अॅप लोगो तयार करा", - "page-local-environment-foundry-desc": "रस्टमध्ये लिहिलेले Ethereum ऍप्लिकेशन डेव्हलपमेंटसाठी एक झगमगाट, पोर्टेबल आणि मॉड्यूलर टूलकिट.", - "page-local-environment-foundry-logo-alt": "Foundry लोगो", - "page-local-environment-framework-feature-1": "स्थानिक ब्लॉकचेन उदाहरण स्पिन अप करण्यासाठी वैशिष्ट्ये.", - "page-local-environment-framework-feature-2": "तुमचे स्मार्ट कॉन्ट्रॅक्ट संकलित करण्यासाठी आणि चाचणी करण्यासाठी उपयुक्तता.", - "page-local-environment-framework-feature-3": "त्याच प्रोजेक्ट/रेपॉजिटरीमध्ये तुमचा वापरकर्ता-फेसिंग अॅप्लिकेशन तयार करण्यासाठी क्लायंट डेव्हलपमेंट अॅड-ऑन.", - "page-local-environment-framework-feature-4": "Ethereum नेटवर्कशी कनेक्ट करण्यासाठी कॉन्फिगरेशन आणि कॉन्ट्रॅक्ट उपयोजित करा, मग ते स्थानिक पातळीवर चालू असलेल्या उदाहरणासाठी, किंवा Ethereum च्या सार्वजनिक नेटवर्कपैकी एक.", - "page-local-environment-framework-feature-5": "विकेंद्रित अॅप वितरण - IPFS सारख्या स्टोरेज पर्यायांसह एकत्रीकरण.", - "page-local-environment-framework-features": "हे फ्रेमवर्क बर्‍याच आउट-ऑफ-द-बॉक्स कार्यक्षमतेसह येतात, जसे की:", - "page-local-environment-frameworks-desc": "आम्‍ही एक फ्रेमवर्क निवडण्‍याची शिफारस करतो, विशेषत: तुम्‍ही नुकतीच सुरुवात करत असल्‍यास. पूर्ण विकसित dapp तयार करण्यासाठी विविध तंत्रज्ञानाची आवश्यकता असते. फ्रेमवर्कमध्ये अनेक आवश्यक वैशिष्ट्ये समाविष्ट आहेत किंवा तुम्हाला हवी असलेली साधने निवडण्यासाठी सुलभ प्लगइन सिस्टीम प्रदान करतात.", - "page-local-environment-frameworks-title": "फ्रेमवर्क आणि प्री-मेड स्टॅक", - "page-local-environment-hardhat-desc": "Hardhat व्यावसायिकांसाठी Ethereum विकास वातावरण आहे.", - "page-local-environment-hardhat-logo-alt": "Hardhat लोगो", - "page-local-environment-openZeppelin-desc": "आमच्या CLI सह स्मार्ट कॉन्ट्रॅक्ट संकलित करून, श्रेणीसुधारित करून, उपयोजित करून आणि परस्परसंवाद करून विकासाचा वेळ वाचवा.", - "page-local-environment-openZeppelin-logo-alt": "OpenZeppelin लोगो", - "page-local-environment-scaffold-eth-desc": "Ethers + Hardhat + React: स्मार्ट कॉन्ट्रॅक्ट्सद्वारे समर्थित विकेंद्रित ऍप्लिकेशन तयार करण्यास प्रारंभ करण्यासाठी आपल्याला आवश्यक असलेली प्रत्येक गोष्ट.", - "page-local-environment-scaffold-eth-logo-alt": "scaffold-eth लोगो", - "page-local-environment-setup-meta-desc": "Ethereum डेव्हलपमेंटसाठी तुमचा सॉफ्टवेअर स्टॅक कसा निवडायचा याचे मार्गदर्शन.", - "page-local-environment-setup-meta-title": "Ethereum स्थानिक विकास सेटअप", - "page-local-environment-setup-subtitle": "तुम्ही बांधकाम सुरू करण्यास तयार असल्यास, तुमचा स्टॅक निवडण्याची वेळ आली आहे.", - "page-local-environment-setup-subtitle-2": "तुमचा Ethereum अनुप्रयोग तयार करण्यात मदत करण्यासाठी तुम्ही वापरू शकता अशी साधने आणि फ्रेमवर्क येथे आहेत.", - "page-local-environment-setup-title": "आपले स्थानिक विकास वातावरण सेट करा", - "page-local-environment-solidity-template-desc": "तुमच्या Solidity स्मार्ट कॉन्ट्रॅक्ट्ससाठी पूर्व-निर्मित सेटअपसाठी एक GitHub टेम्पलेट. Hardhat स्थानिक नेटवर्क, चाचण्यांसाठी Waffle, वॉलेट अंमलबजावणीसाठी इथर्स आणि बरेच काही समाविष्ट आहे.", - "page-local-environment-solidity-template-logo-alt": "Solidity टेम्पलेट लोगो" -} \ No newline at end of file diff --git a/src/intl/pl/page-developers-learning-tools.json b/src/intl/pl/page-developers-learning-tools.json deleted file mode 100644 index 057952f7abf..00000000000 --- a/src/intl/pl/page-developers-learning-tools.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "page-learning-tools-bloomtech-description": "Kurs BloomTech Web3 nauczy cię umiejętności, których pracodawcy szukają u inżynierów.", - "page-learning-tools-bloomtech-logo-alt": "Logo BloomTech", - "page-learning-tools-bootcamps": "Szkolenia dla deweloperów", - "page-learning-tools-bootcamps-desc": "Płatne kursy online, dzięki którym szybko będziesz na bieżąco.", - "page-learning-tools-browse-docs": "Przeglądaj dokumenty", - "page-learning-tools-capture-the-ether-description": "Capture the Ether jest grą, w której hakujesz smart kontrakty Ethereum, aby nauczyć się o ich bezpieczeństwie.", - "page-learning-tools-capture-the-ether-logo-alt": "Logo Capture the Ether", - "page-learning-tools-coding": "Nauka przez kodowanie", - "page-learning-tools-coding-subtitle": "Jeżeli wolisz naukę poprzez interakcję, te narzędzia pomogą ci w eksperymentowaniu z Ethereum.", - "page-learning-tools-consensys-academy-description": "Szkolenia deweloperskie z Ethereum online.", - "page-learning-tools-consensys-academy-logo-alt": "Logo ConsenSys Academy", - "page-learning-tools-cryptozombies-description": "Naucz się Solidity tworząc własną grę o Zombie.", - "page-learning-tools-cryptozombies-logo-alt": "Logo CryptoZombies", - "page-learning-tools-documentation": "Dowiedz się więcej dzięki dokumentacji", - "page-learning-tools-documentation-desc": "Chcesz dowiedzieć się więcej? Przejdź do dokumentacji, żeby znaleźć potrzebne informacje.", - "page-learning-tools-eth-dot-build-description": "Edukacyjna piaskownica dla web3, zawierająca programowanie metodą „przeciągnij i upuść” oraz bloki konstrukcyjne open-source.", - "page-learning-tools-eth-dot-build-logo-alt": "Logo Eth.build", - "page-learning-tools-ethernauts-description": "Zaliczaj poziomy, hakując inteligentne kontrakty.", - "page-learning-tools-ethernauts-logo-alt": "Logo Ethernauts", - "page-learning-tools-metaschool-description": "Zostań Web3 Developerem poprzez budowanie i wysyłanie dAppsów.", - "page-learning-tools-metaschool-logo-alt": "Logo _metaschool", - "page-learning-tools-game-tutorials": "Interaktywne samouczki do gier", - "page-learning-tools-game-tutorials-desc": "Ucz się, grając. Dzięki tym samouczkom nauczysz się podstaw podczas rozgrywki.", - "page-learning-tools-meta-desc": "Narzędzia internetowe do kodowania i interaktywne środowiska edukacyjne, które pomogą Ci eksperymentować z rozwojem Ethereum.", - "page-learning-tools-meta-title": "Narzędzia edukacyjne dla deweloperów", - "page-learning-tools-questbook-description": "Samouczki pozwalające na naukę Web 3.0 we własnym tempie poprzez budowanie", - "page-learning-tools-questbook-logo-alt": "Logotyp Questbook", - "page-learning-tools-remix-description": "Twórz, wdrażaj i zarządzaj inteligentnymi kontraktami dla Ethereum. Korzystaj z samouczków za pomocą wtyczki LearnEth.", - "page-learning-tools-remix-description-2": "Remix, Replit i ChainIDE to nie tylko piaskownice — deweloperzy mogą za ich pomocą pisać, kompilować i wdrażać swoje inteligentne kontrakty.", - "page-learning-tools-replit-description": "Dostosowywane środowisko programistyczne dla Ethereum z funkcją hot reloading, sprawdzaniem błędów i najwyższej klasy obsługą sieci testowych.", - "page-learning-tools-chainIDE-description": "Rozpocznij swoją podróż do Web3, pisząc inteligentne kontrakty dla Ethereum za pomocą narzędzia ChainIDE. Użyj wbudowanych szablonów, aby się nauczyć i zaoszczędzić czas.", - "page-learning-tools-chainIDE-logo-alt": "Logo ChainIDE", - "page-learning-tools-tenderly-description": "Tenderly Sandbox to środowisko do tworzenia prototypów, w którym można pisać, wykonywać i debugować inteligentne kontrakty w przeglądarce używając Solidity i JavaScript.", - "page-learning-tools-tenderly-logo-alt": "Logo Tenderly", - "page-learning-tools-replit-logo-alt": "Logo Replit", - "page-learning-tools-remix-logo-alt": "Logo Remix", - "page-learning-tools-sandbox": "Piaskownice kodu", - "page-learning-tools-sandbox-desc": "Te piaskownice dadzą Ci przestrzeń do eksperymentowania z pisaniem inteligentnych kontraktów i zrozumieniem Ethereum.", - "page-learning-tools-speed-run-ethereum-description": "Speed Run Ethereum jest zestawem wyzwań, które przetestują twoją wiedzę o Solidity przy użyciu Scaffold-ETH.", - "page-learning-tools-speed-run-ethereum-logo-alt": "Logotyp SpeedRun Ethereum", - "page-learning-tools-studio-description": "Oparte na Internecie IDE, w którym możesz korzystać z samouczków do tworzenia i testowania inteligentnych kontraktów, a także budować dla nich frontend.", - "page-learning-tools-vyperfun-description": "Naucz się Vyper, tworząc własną grę w Pokémony.", - "page-learning-tools-vyperfun-logo-alt": "Logo Vyper.fun", - "page-learning-tools-nftschool-description": "Odkryj, co się dzieje z niewymienialnymi tokenami lub NFT od technicznej strony.", - "page-learning-tools-nftschool-logo-alt": "Logotyp NFT School", - "page-learning-tools-platzi-description": "Naucz się jak budować dAppsy w Web3 i opanuj wszystkie umiejętności, aby być blockchain developerem.", - "page-learning-tools-platzi-logo-alt": "Logo Platzi", - "page-learning-tools-alchemy-university-description": "Rozwijaj swoją karierę w Web3 poprzez kursy, projekty i pisanie kodu.", - "page-learning-tools-alchemy-university-logo-alt": "Logo Alchemy University", - "alt-eth-blocks": "Ilustracja bloków zorganizowanych jak symbol ETH" -} \ No newline at end of file diff --git a/src/intl/pl/page-developers-local-environment.json b/src/intl/pl/page-developers-local-environment.json deleted file mode 100644 index 3dfd0461e11..00000000000 --- a/src/intl/pl/page-developers-local-environment.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "page-local-environment-brownie-desc": "Oparta na języku Python platforma programistyczna i testowa dla inteligentnych kontraktów ukierunkowana na maszynę wirtualną Ethereum.", - "page-local-environment-brownie-logo-alt": "Logo Brownie", - "page-local-environment-kurtosis-desc": "Zestaw narzędzi opartych na kontenerach, które ułatwiają konfigurację i aktywację sieci testowej Ethereum z wieloma klientami w celu szybkiego lokalnego rozwoju, tworzenia prototypów i testowania zdecentralizowanych aplikacji.", - "page-local-environment-kurtosis-logo-alt": "Logo Kurtosis", - "page-local-environment-epirus-desc": "Platforma do tworzenia, wdrażania i monitorowania aplikacji blockchain w maszynie wirtualnej Java.", - "page-local-environment-epirus-logo-alt": "Logo Epirus", - "page-local-environment-eth-app-desc": "Twórz za pomocą jednego polecenia aplikacje działające w oparciu o Ethereum. Zawiera szeroką ofertę platform UI i szablonów DeFi do wyboru.", - "page-local-environment-eth-app-logo-alt": "Utwórz logo aplikacji Eth", - "page-local-environment-foundry-desc": "Błyskawiczny szybki, przenośny i modułowy zestaw narzędzi do opracowywania aplikacji Ethereum napisany w Rust.", - "page-local-environment-foundry-logo-alt": "Logo odlewni", - "page-local-environment-framework-feature-1": "Funkcje do uruchomienia lokalnej instancji blockchain.", - "page-local-environment-framework-feature-2": "Narzędzia do kompilacji i testowania Twoich inteligentnych kontraktów.", - "page-local-environment-framework-feature-3": "Dodatki programistyczne do tworzenia aplikacji użytkownika w ramach tego samego projektu/repozytorium.", - "page-local-environment-framework-feature-4": "Konfiguracja do łączenia się z sieciami Ethereum i wdrażania kontraktów, zarówno do lokalnie działającej instancji, jak i do jednej z publicznych sieci Ethereum.", - "page-local-environment-framework-feature-5": "Zdecentralizowana dystrybucja aplikacji -- integracja z opcjami przechowywania, takimi jak IPFS.", - "page-local-environment-framework-features": "Te frameworki mają wiele gotowych funkcji, takich jak:", - "page-local-environment-frameworks-desc": " Zalecamy wybranie frameworka, szczególnie jeśli dopiero zaczynasz. Zbudowanie pełnoprawnej zdecentralizowanej aplikacji (dapp) wymaga różnych elementów technologii. Frameworki zawierają wiele potrzebnych funkcji lub zapewniają łatwe systemy wtyczek do wyboru pożądanych narzędzi.", - "page-local-environment-frameworks-title": "Frameworki i wcześniej przygotowane stosy", - "page-local-environment-hardhat-desc": "Hardhat to rozwojowe środowisko programistyczne Ethereum dla profesjonalistów.", - "page-local-environment-hardhat-logo-alt": "Logo Hardhat", - "page-local-environment-openZeppelin-desc": "Zaoszczędź godziny pracy programistycznej, kompilując, aktualizując, wdrażając i wchodząc w interakcję z inteligentnymi umowami za pomocą naszego CLI.", - "page-local-environment-openZeppelin-logo-alt": "Logo OpenZeppelin", - "page-local-environment-scaffold-eth-desc": "Ethers + Hardhat + React: wszystko, czego potrzebujesz, aby rozpocząć tworzenie zdecentralizowanych aplikacji opartych na inteligentnych kontraktach.", - "page-local-environment-scaffold-eth-logo-alt": "logo scaffold-eth", - "page-local-environment-setup-meta-desc": "Wskazówki dotyczące wyboru stosu oprogramowania dla rozwoju Ethereum.", - "page-local-environment-setup-meta-title": "Konfiguracja lokalnego rozwoju Ethereum", - "page-local-environment-setup-subtitle": "Jeśli jesteś gotowy do rozpoczęcia budowy, nadszedł czas, aby wybrać swój stos.", - "page-local-environment-setup-subtitle-2": " Oto narzędzia i frameworki, których możesz użyć, aby łatwiej zbudować swoją aplikację Ethereum.", - "page-local-environment-setup-title": "Skonfiguruj swoje lokalne środowisko programistyczne", - "page-local-environment-solidity-template-desc": "Szablon GitHub gotowej konfiguracji inteligentnych kontraktów Solidity. Zawiera sieć lokalną Hardhat, Waffle do testów, etery do implementacji portfela i wiele innych.", - "page-local-environment-solidity-template-logo-alt": "Logo Solidity template" -} \ No newline at end of file diff --git a/src/intl/pt-br/page-developers-learning-tools.json b/src/intl/pt-br/page-developers-learning-tools.json deleted file mode 100644 index 5abb929ee59..00000000000 --- a/src/intl/pt-br/page-developers-learning-tools.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "page-learning-tools-bloomtech-description": "O curso BloomTech Web3 ensinará as habilidades que as empresas buscam nos engenheiros.", - "page-learning-tools-bloomtech-logo-alt": "Logotipo da BloomTech", - "page-learning-tools-bootcamps": "Bootcamps para desenvolvedores", - "page-learning-tools-bootcamps-desc": "Cursos on-line pagos para ajudá-lo a alcançar seus objetivos, rápido.", - "page-learning-tools-browse-docs": "Navegar pela documentação", - "page-learning-tools-capture-the-ether-description": "Capture the Ether é um jogo em que você codifica os contratos inteligentes do Ethereum para aprender sobre segurança.", - "page-learning-tools-capture-the-ether-logo-alt": "Logotipo do jogo Capture the Ether", - "page-learning-tools-node-guardians-description": "Node Guardians é uma plataforma educacional gamificada que envolve desenvolvedores web3 em missões com temas de fantasia para dominar a programação Solidity, Cairo, Noir e Huff.", - "page-learning-tools-node-guardians-logo-alt": "Logotipo do Node Guardians", - "page-learning-tools-chainshot-description": "Treinamento remoto inicial para desenvolvedores Ethereum e cursos adicionais.", - "page-learning-tools-chainshot-logo-alt": "Logotipo da ChainShot", - "page-learning-tools-coding": "Aprenda programando", - "page-learning-tools-coding-subtitle": "Essas ferramentas vão ajudá-lo a experimentar com Ethereum, se você preferir uma jornada de aprendizado mais interativa.", - "page-learning-tools-consensys-academy-description": "Bootcamp on-line para desenvolvedores Ethereum.", - "page-learning-tools-consensys-academy-logo-alt": "Logotipo para ConsenSys Academy", - "page-learning-tools-cryptozombies-description": "Aprenda Solidity desenvolvendo seu próprio jogo de zumbis.", - "page-learning-tools-cryptozombies-logo-alt": "Logotipo para CryptoZombies", - "page-learning-tools-dapp-world-description": "Um ecossistema de qualificação da blockchain, incluindo cursos, questionários, exercícios práticos e concursos semanais.", - "page-learning-tools-dapp-world-logo-alt": "Logotipo do Dapp World", - "page-learning-tools-documentation": "Aprenda com documentação", - "page-learning-tools-documentation-desc": "Quer aprender mais? Acesse nossa documentação e encontre as explicações de que você precisa.", - "page-learning-tools-eth-dot-build-description": "Um ambiente educacional e protegido para web3, incluindo interface de programação do tipo \"arrastar e soltar\" e fundamentos sobre código aberto.", - "page-learning-tools-eth-dot-build-logo-alt": "Logotipo para Eth.build", - "page-learning-tools-ethernauts-description": "Complete níveis hackeando contratos inteligentes.", - "page-learning-tools-ethernauts-logo-alt": "Logotipo para Ethernauts", - "page-learning-tools-metaschool-description": "Torne-se um Desenvolvedor Web3 construindo e entregando dApps.", - "page-learning-tools-metaschool-logo-alt": "Logotipo da Metaschool", - "page-learning-tools-game-tutorials": "Tutoriais interativos de jogos", - "page-learning-tools-game-tutorials-desc": "Aprenda enquanto joga. Esses tutoriais vão acompanhá-lo pelos aspectos básicos através do jogo.", - "page-learning-tools-meta-desc": "Ferramentas de programação na web e experiência interativa de aprendizado para ajudá-lo a experimentar com desenvolvimento no Ethereum.", - "page-learning-tools-meta-title": "Ferramentas de aprendizagem para desenvolvedores", - "page-learning-tools-atlas-logo-alt": "Logotipo do Atlas", - "page-learning-tools-atlas-description": "Escreva, teste e implante contratos inteligentes em minutos com o IDE Atlas.", - "page-learning-tools-questbook-description": "Tutorial passo a passo para aprender criando com Web 3.0", - "page-learning-tools-questbook-logo-alt": "Logotipo da Questbook", - "page-learning-tools-remix-description": "Desenvolva, implante e administre contratos inteligentes para Ethereum. Siga os tutoriais com o plugin Learneth.", - "page-learning-tools-remix-description-2": "Remix, Replit, ChainIDE e Atlas não são somente sandboxes. Os desenvolvedores podem escrever, compilar e implantar contratos inteligentes com eles.", - "page-learning-tools-replit-description": "Um ambiente de desenvolvimento personalizável para Ethereum com recarregamento a quente, verificação de erros e suporte de rede de teste (testnet) de primeira classe.", - "page-learning-tools-chainIDE-description": "Comece sua jornada até a Web3 escrevendo contratos inteligentes para Ethereum com ChainIDE. Use os modelos nativos para aprender e economizar tempo.", - "page-learning-tools-chainIDE-logo-alt": "Logotipo da ChainIDE", - "page-learning-tools-tenderly-description": "Tenderly Sandbox é um ambiente de prototipagem onde é possível utilizar Solidity e JavaScript para escrever, executar e depurar contratos inteligentes no navegador.", - "page-learning-tools-tenderly-logo-alt": "Logotipo da Tenderly", - "page-learning-tools-replit-logo-alt": "Logotipo da Replit", - "page-learning-tools-remix-logo-alt": "Logotipo Remix", - "page-learning-tools-sandbox": "Ambientes educacionais para programação", - "page-learning-tools-sandbox-desc": "Esses ambientes educacionais vão proporcionar a você um espaço para experimentar escrevendo contratos inteligentes e compreendendo Ethereum.", - "page-learning-tools-speed-run-ethereum-description": "SpeedRunEthereum é um conjunto de desafios para testar seu conhecimento em Solidity usando Scaffold-ETH", - "page-learning-tools-speed-run-ethereum-logo-alt": "Logotipo da Speed Run Ethereum", - "page-learning-tools-studio-description": "Uma IDE com base na Web onde você pode seguir tutoriais para criar e testar contratos inteligentes, além de desenvolver um front-end para eles.", - "page-learning-tools-vyperfun-description": "Aprenda Vyper desenvolvendo o seu próprio jogo de Pokémon.", - "page-learning-tools-vyperfun-logo-alt": "Logotipo Vyper.fun", - "page-learning-tools-nftschool-description": "Veja o que está acontecendo com tokens não fungíveis, ou NFT, de uma perspectiva técnica.", - "page-learning-tools-nftschool-logo-alt": "NFT school logotipo", - "page-learning-tools-pointer-description": "Aprenda habilidades de desenvolvimento da web3 com tutoriais divertidos e interativos. Ganhe criptomoedas como recompensas ao longo do caminho", - "page-learning-tools-pointer-logo-alt": "Logotipo do ponteiro", - "page-learning-tools-platzi-description": "Aprenda a construir dapps na Web3 e domine todas as habilidades necessárias para ser um desenvolvedor de blockchain.", - "page-learning-tools-platzi-logo-alt": "Logo da Platzi", - "page-learning-tools-alchemy-university-description": "Desenvolva sua carreira Web3 por meio de cursos, projetos e código.", - "page-learning-tools-alchemy-university-logo-alt": "Logotipo da Alchemy University", - "alt-eth-blocks": "Ilustração de blocos sendo organizados como um símbolo ETH" -} diff --git a/src/intl/pt-br/page-developers-local-environment.json b/src/intl/pt-br/page-developers-local-environment.json deleted file mode 100644 index 35681f8b96a..00000000000 --- a/src/intl/pt-br/page-developers-local-environment.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "page-local-environment-brownie-desc": "Um framework baseado em Python para desenvolvimento e testes de contratos inteligentes direcionado à Ethereum Virtual Machine.", - "page-local-environment-brownie-logo-alt": "Logotipo da Brownie", - "page-local-environment-kurtosis-desc": "Um kit de ferramentas baseado em contêiner para configurar e ativar facilmente uma rede de testes Ethereum multi-cliente para desenvolvimento, prototipagem e testes rápidos locais de dApp.", - "page-local-environment-kurtosis-logo-alt": "Logotipo da Kurtosis", - "page-local-environment-epirus-desc": "Uma plataforma para desenvolvimento, implementação e monitoramento de aplicativos blockchain na Java Virtual Machine.", - "page-local-environment-epirus-logo-alt": "Logotipo da Epirus", - "page-local-environment-eth-app-desc": "Crie aplicativos com tecnologia Ethereum com um comando. Inclui uma grande quantidade de frameworks de IU e modelos DeFi para escolher.", - "page-local-environment-eth-app-logo-alt": "Logotipo de Create Eth App", - "page-local-environment-foundry-desc": "Um kit de ferramentas extremamente rápido, portátil e modular para desenvolvimento de aplicativos Ethereum escrito em Rust.", - "page-local-environment-foundry-logo-alt": "Logotipo do Foundry", - "page-local-environment-framework-feature-1": "Recursos para ativar uma instância local de blockchain.", - "page-local-environment-framework-feature-2": "Utilitários para compilar e testar seus contratos inteligentes.", - "page-local-environment-framework-feature-3": "Complementos de desenvolvimento de cliente para criar seu aplicativo voltado para o usuário dentro do mesmo projeto/repositório.", - "page-local-environment-framework-feature-4": "Configuração para se conectar a redes Ethereum e implantar contratos, seja para uma instância em execução local, seja para uma das redes públicas da Ethereum.", - "page-local-environment-framework-feature-5": "Distribuição descentralizada de aplicativos: integrações com opções de armazenamento como o IPFS.", - "page-local-environment-framework-features": "Esses frameworks vêm com muitas funcionalidades prontas para usar, como:", - "page-local-environment-frameworks-desc": "Recomendamos escolher um framework, principalmente se você estiver apenas começando. Criar um dapp completo requer diferentes componentes de tecnologia. Os frameworks incluem muitos dos recursos necessários ou fornecem sistemas de plug-ins fáceis para escolher as ferramentas que você deseja.", - "page-local-environment-frameworks-title": "Frameworks e pilhas pré-criadas", - "page-local-environment-hardhat-desc": "Hardhat é um ambiente de desenvolvimento da Ethereum para profissionais.", - "page-local-environment-hardhat-logo-alt": "Logotipo Hardhat", - "page-local-environment-openZeppelin-desc": "Economize horas de desenvolvimento compilando, atualizando, implantando e interagindo com contratos inteligentes com nossa CLI.", - "page-local-environment-openZeppelin-logo-alt": "Logotipo OpenZeppelin", - "page-local-environment-scaffold-eth-desc": "Ethers + Hardhat + React: tudo o que você precisa para começar a desenvolver aplicativos descentralizados sustentadas por contratos inteligentes.", - "page-local-environment-scaffold-eth-logo-alt": "Logotipo scaffold-eth", - "page-local-environment-setup-meta-desc": "Guia sobre como escolher sua pilha de software para desenvolvimento Ethereum.", - "page-local-environment-setup-meta-title": "Configuração de desenvolvimento local Ethereum", - "page-local-environment-setup-subtitle": "Se você estiver pronto para começar a criar, é hora de escolher sua pilha.", - "page-local-environment-setup-subtitle-2": "Estas são as ferramentas e frameworks que você pode usar para desenvolver seu aplicativo Ethereum.", - "page-local-environment-setup-title": "Configure seu ambiente de desenvolvimento local", - "page-local-environment-solidity-template-desc": "Um modelo GitHub para uma configuração predefinida para seus contratos inteligentes Solidity. Inclui uma rede local de Hardhat, Waffle para testes, Ethers para implementação de carteira e muito mais.", - "page-local-environment-solidity-template-logo-alt": "Logotipo de modelo Solidity" -} \ No newline at end of file diff --git a/src/intl/ru/page-developers-learning-tools.json b/src/intl/ru/page-developers-learning-tools.json deleted file mode 100644 index b37b27a954b..00000000000 --- a/src/intl/ru/page-developers-learning-tools.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "page-learning-tools-bloomtech-description": "Курс BloomTech Web3 научит вас навыкам, которые работодатели ценят у инженеров.", - "page-learning-tools-bloomtech-logo-alt": "Логотип BloomTech", - "page-learning-tools-bootcamps": "Интенсивы для разработчиков", - "page-learning-tools-bootcamps-desc": "Платные онлайн-курсы для быстрой прокачки навыков.", - "page-learning-tools-browse-docs": "Просмотр документов", - "page-learning-tools-capture-the-ether-description": "Capture the Ether — это игра, в которой вы взламываете умные контракты Ethereum, чтобы узнать больше об их защите.", - "page-learning-tools-capture-the-ether-logo-alt": "Логотип Capture the Ether", - "page-learning-tools-node-guardians-description": "Node Guardians — это игровая образовательная платформа, которая погружает разработчиков Web3 в фентезийные квесты, помогая им освоить программирование на Solidity, Cairo, Noir и Huff.", - "page-learning-tools-node-guardians-logo-alt": "Логотип Node Guardians", - "page-learning-tools-coding": "Учитесь на программировании", - "page-learning-tools-coding-subtitle": "Эти инструменты позволят вам поэкспериментировать с Ethereum, если вы предпочитаете более интерактивное обучение.", - "page-learning-tools-consensys-academy-description": "Онлайн-лагерь для разработчиков Ethereum.", - "page-learning-tools-consensys-academy-logo-alt": "Логотип ConsenSys Academy", - "page-learning-tools-cryptozombies-description": "Обучение Solidity на примере создания игры про зомби.", - "page-learning-tools-cryptozombies-logo-alt": "Логотип CryptoZombies", - "page-learning-tools-dapp-world-description": "Экосистема для повышения квалификации по блокчейну, включающая курсы, викторины, практические упражнения и еженедельные состязания.", - "page-learning-tools-dapp-world-logo-alt": "Логотип Dapp World", - "page-learning-tools-documentation": "Учитесь с документацией", - "page-learning-tools-documentation-desc": "Хотите узнать больше? Прочтите документацию, чтобы найти интересующую вас информацию.", - "page-learning-tools-eth-dot-build-description": "Обучающая песочница для web3, включающая программирование drag-and-drop и строительные блоки с открытым исходным кодом.", - "page-learning-tools-eth-dot-build-logo-alt": "Логотип Eth.build", - "page-learning-tools-ethernauts-description": "Проходите уровни, взламывая смарт-контракты.", - "page-learning-tools-ethernauts-logo-alt": "Логотип Ethernauts", - "page-learning-tools-metaschool-description": "Станьте разработчиком Web3, создавая и предоставляя децентрализованные приложения.", - "page-learning-tools-metaschool-logo-alt": "Логотип Metaschool", - "page-learning-tools-game-tutorials": "Интерактивные игровые руководства", - "page-learning-tools-game-tutorials-desc": "Учитесь, играя. Эти руководства проведут вас через основы, используя игры.", - "page-learning-tools-meta-desc": "Онлайн-инструменты программирования и интерактивное обучение, чтобы помочь вам в экспериментах с разработками на Ethereum.", - "page-learning-tools-meta-title": "Инструменты обучения разработчика", - "page-learning-tools-atlas-logo-alt": "Логотип Atlas", - "page-learning-tools-atlas-description": "Пишите, тестируйте и развертывайте смарт-контракты за считаные минуты в интегрированной среде разработки Atlas.", - "page-learning-tools-questbook-description": "Самостоятельные уроки по разработке в Web 3.0", - "page-learning-tools-questbook-logo-alt": "Логотип Questbook", - "page-learning-tools-remix-description": "Управляйте смарт-контрактами на Ethereum, разрабатывайте и публикуйте их. Воспользуйтесь руководствами с помощью плагина LearnEth.", - "page-learning-tools-remix-description-2": "Remix, Replit, ChainIDE и Atlas — это не просто песочницы. С их помощью разработчики могут писать, компилировать и развертывать свои смарт-контракты.", - "page-learning-tools-replit-description": "Настраиваемая среда разработки для Ethereum с горячей перезагрузкой, проверкой ошибок и первоклассной поддержкой тестовой сети.", - "page-learning-tools-chainIDE-description": "Начните свое путешествие в Web3 с написания умных контрактов для Ethereum с помощью ChainIDE. Используйте встроенные шаблоны, чтобы учиться и экономить время.", - "page-learning-tools-chainIDE-logo-alt": "Логотип ChainIDE", - "page-learning-tools-tenderly-description": "Tenderly Sandbox — это среда прототипирования, в которой можно прямо в браузере писать смарт-контракты, исполнять их и устранять ошибки с помощью Solidity и JavaScript.", - "page-learning-tools-tenderly-logo-alt": "Логотип Tenderly", - "page-learning-tools-replit-logo-alt": "Логотип Replit", - "page-learning-tools-remix-logo-alt": "Логотип Remix", - "page-learning-tools-sandbox": "Песочницы для кода", - "page-learning-tools-sandbox-desc": "Эти песочницы дадут вам пространство для экспериментов с написанием смарт-контрактов и пониманием Ethereum.", - "page-learning-tools-speed-run-ethereum-description": "Speed Run Ethereum — это набор задач для проверки ваших знаний Solidity с использованием Scaffold-ETH", - "page-learning-tools-speed-run-ethereum-logo-alt": "Логотип Speed Run Ethereum", - "page-learning-tools-studio-description": "Интегрированная онлайн-среда разработки, в которой вы можете следовать учебникам для создания и тестирования смарт-контрактов и построить внешний интерфейс для них.", - "page-learning-tools-vyperfun-description": "Изучите Vyper, построив свою собственную игру Pokémon.", - "page-learning-tools-vyperfun-logo-alt": "Логотип Vyper.fun", - "page-learning-tools-nftschool-description": "Узнайте, что происходит с невзаимозаменяемыми токенами (или NFT) с технической точки зрения.", - "page-learning-tools-nftschool-logo-alt": "Логотип школы NFT", - "page-learning-tools-platzi-description": "Узнайте, как создавать децентрализованные приложения на Web3, и овладейте всеми навыками, необходимыми для разработчика блокчейна.", - "page-learning-tools-platzi-logo-alt": "Логотип Platzi", - "page-learning-tools-alchemy-university-description": "Развивайте свою карьеру в web3 с помощью курсов, проектов и кода.", - "page-learning-tools-alchemy-university-logo-alt": "Логотип Alchemy University", - "page-learning-tools-learnweb3-description": "LearnWeb3 — это бесплатная образовательная платформа, которая поможет вам пройти путь от начинающего до мастера в разработке Web3.", - "page-learning-tools-learnweb3-logo-alt": "Логотип LearnWeb3", - "page-learning-tools-cyfrin-updraft-description": "Курсы по разработке смарт-контрактов и аудиту безопасности для всех уровней подготовки.", - "page-learning-tools-cyfrin-updraft-logo-alt": "Логотип Cyfrin Updraft", - "alt-eth-blocks": "Иллюстрация блоков организуется как символ ETH" -} diff --git a/src/intl/ru/page-developers-local-environment.json b/src/intl/ru/page-developers-local-environment.json deleted file mode 100644 index 567163d29bf..00000000000 --- a/src/intl/ru/page-developers-local-environment.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "page-local-environment-brownie-desc": "Основанная на Python платформа для разработки и тестирования смарт-контрактов, нацеленных на Ethereum Virtual Machine.", - "page-local-environment-brownie-logo-alt": "Логотип Brownie", - "page-local-environment-kurtosis-desc": "Инструментарий на основе контейнера для простой настройки и запуска тестовой сети Ethereum с большим количеством клиентов, в которой можно быстро разрабатывать локальные децентрализованные приложения, прототипировать и тестировать их.", - "page-local-environment-kurtosis-logo-alt": "Логотип Kurtosis", - "page-local-environment-epirus-desc": "Платформа для разработки, развертывания и мониторинга блокчейн-приложений на виртуальной машине Java.", - "page-local-environment-epirus-logo-alt": "Логотип Epirus", - "page-local-environment-eth-app-desc": "Создавайте приложения на базе Ethereum одной командой. Сопровождается широким выбором фреймворков пользовательского интерфейса и шаблонов DeFi.", - "page-local-environment-eth-app-logo-alt": "Создать логотип Eth App", - "page-local-environment-foundry-desc": "Молниеносный, портативный и модульный инструментарий для разработки приложений Ethereum, написанный на языке Rust.", - "page-local-environment-foundry-logo-alt": "Логотип Foundry", - "page-local-environment-framework-feature-1": "Функции для запуска локального экземпляра блокчейна.", - "page-local-environment-framework-feature-2": "Утилиты для составления и тестирования ваших смарт-контрактов.", - "page-local-environment-framework-feature-3": "Клиентские разработки дополнений для создания вашего пользовательского приложения в рамках одного проекта/репозитория.", - "page-local-environment-framework-feature-4": "Конфигурация для подключения к сетям Ethereum и создания контрактов, будь то локальный запуск или одна из публичных сетей Ethereum.", - "page-local-environment-framework-feature-5": "Децентрализованное распределение приложений - интеграция с различными способами хранения данных, такими как IPFS.", - "page-local-environment-framework-features": "Эти фреймворки идут совместно с большим количеством нестандартного функционала, например:", - "page-local-environment-frameworks-desc": " Мы рекомендуем выбрать фреймворк, особенно если вы только начинаете работу. Создание полноценного приложения требует различных технологий. Фреймворк включает в себя множество необходимых функций или предоставляет простые системы плагинов для выбора нужных вам инструментов.", - "page-local-environment-frameworks-title": "Фреймворки и готовые стеки", - "page-local-environment-hardhat-desc": "Hardhat - это среда разработки Ethereum для профессионалов.", - "page-local-environment-hardhat-logo-alt": "Логотип Hardhat", - "page-local-environment-openZeppelin-desc": "Сократите время разработки, составляя, совершенствуя и взаимодействуя со смарт-контрактами с нашим CLI.", - "page-local-environment-openZeppelin-logo-alt": "Логотип OpenZeppelin", - "page-local-environment-scaffold-eth-desc": "Ethers + Hardhat + React — все, что вам нужно, чтобы начать создавать децентрализованные приложения на основе умных контрактов.", - "page-local-environment-scaffold-eth-logo-alt": "логотип scaffold-eth", - "page-local-environment-setup-meta-desc": "Руководство по выбору стека ПО для разработки на Ethereum.", - "page-local-environment-setup-meta-title": "Настройка локальной разработки на Ethereum", - "page-local-environment-setup-subtitle": "Если вы готовы приступить к созданию приложения, пришло время выбрать стек.", - "page-local-environment-setup-subtitle-2": " Вот инструменты и фреймворки, которые вы можете использовать, чтобы создать приложение Ethereum.", - "page-local-environment-setup-title": "Настройте локальную среду разработки", - "page-local-environment-solidity-template-desc": "Шаблон GitHub для предварительной установки ваших смарт-контрактов Solidity. Включает в себя локальную сеть Hardhat, Waffle для тестирования, Ethers для применения кошелька и многое другое.", - "page-local-environment-solidity-template-logo-alt": "Логотип шаблона Solidity" -} \ No newline at end of file diff --git a/src/intl/sw/page-developers-learning-tools.json b/src/intl/sw/page-developers-learning-tools.json deleted file mode 100644 index 6ec27aab46f..00000000000 --- a/src/intl/sw/page-developers-learning-tools.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "page-learning-tools-bloomtech-description": "Kozi ya BloomTech Web3 itakufundisha ujuzi wanaotafuta waajiri kutoka kwa wahandisi.", - "page-learning-tools-bloomtech-logo-alt": "Nembo ya BloomTech", - "page-learning-tools-bootcamps": "Mafunzo kwa wasanidi programu", - "page-learning-tools-bootcamps-desc": "Kozi za mtandaoni zilizolipiwa zitakuwezesha haraka.", - "page-learning-tools-browse-docs": "Vinjari nyaraka", - "page-learning-tools-capture-the-ether-description": "Kamata Ether ni mchezo ambao utadukua mikataba erevu ya Ethereum ili kujifunza kuhusu usalama.", - "page-learning-tools-capture-the-ether-logo-alt": "Kamata nembo ya Ether", - "page-learning-tools-coding": "Jifunze kwa usimbuaji", - "page-learning-tools-coding-subtitle": "Vifaa hivi vitakusaidia kufanya majaribio ya Ethereum kama ungependa maingiliano zaidi wakati wa kujifunza.", - "page-learning-tools-consensys-academy-description": "Kamabi ya kujifunzia ya usanidi programu za Ethereum mtandaoni.", - "page-learning-tools-consensys-academy-logo-alt": "Nembo ya ConsenSys Academy", - "page-learning-tools-cryptozombies-description": "Jifunze Solidity kwa kujenga mchezo wa watu wa kutisha.", - "page-learning-tools-cryptozombies-logo-alt": "Nembo ya CryptoZombies", - "page-learning-tools-documentation": "Jifunze na nyaraka", - "page-learning-tools-documentation-desc": "Unataka kujifunza zaidi? Nenda kwenye nyaraka zetu kupata maelezo unayohitaji.", - "page-learning-tools-eth-dot-build-description": "Sanduku la kuelimisha kuhusu web3, ikijumuisha mtindo wa kuprogramu kwa kuvuta-na-kudondosha na ni vifaa vya kujengea vilivyo huria.", - "page-learning-tools-eth-dot-build-logo-alt": "Nembo ya Eth.build", - "page-learning-tools-ethernauts-description": "Maliza viwango vyote kwa kudukua mikataba erevu.", - "page-learning-tools-ethernauts-logo-alt": "Nembo ya Ethernauts", - "page-learning-tools-game-tutorials": "Mafunzo kwa njia ya mchezo wa mwingiliano", - "page-learning-tools-game-tutorials-desc": "Jifunze huku unacheza. Mafunzo haya yatakufundisha vitu vyote vya msingi kwa kutumia gameplay.", - "page-learning-tools-meta-desc": "Zana za usimbuaji za wavuti na kujifunza kwa kuingiliana utakusaidia kujaribu uundaji wa Ethereum.", - "page-learning-tools-meta-title": "Zana za msanidi programu", - "page-learning-tools-questbook-description": "Madunzo ya kasi binafsi lujifunza Web 3.0 kwa kujenga", - "page-learning-tools-questbook-logo-alt": "Nembo ya Questbook", - "page-learning-tools-remix-description": "Unda, tuma na simamia mikataba erevu ya Ethereum. Pata mafunzo na programu-jalizi ya Learneth.", - "page-learning-tools-remix-description-2": "Remix na Replit ni zaidi ya eneo la majaribio, wasanidi programu wanaweza kuandika, kukusanya na kupeleka mikataba erevu mtandaoni kwa kuzitumia.", - "page-learning-tools-replit-description": "Mazingira yanayoweza kubalishwa kulingana na mahitaji ya Ethereum yenye kasi ya upakiaji, kukagua makosa, na misaada ya ukaguzu wa mtandao ya kiwango cha juu.", - "page-learning-tools-replit-logo-alt": "Nembo ya Replit", - "page-learning-tools-remix-logo-alt": "Nembo ya Remix", - "page-learning-tools-sandbox": "Visanduku vya msimbo", - "page-learning-tools-sandbox-desc": "Hivi visanduku vitakupa nafasi ya kufanya majaribio ya uandishi wa mikataba erevu na kuielewa Ethereum.", - "page-learning-tools-studio-description": "Mfunzo ya wavuti yenye mazingira jumuishi ya uundaji katika ujenzi na majaribio ya mikataba erevu, na kujenga mfumo wa mbele kwa ajili yao.", - "page-learning-tools-vyperfun-description": "Jifunze Vyper kwa kuunda mchezo wa Pokémon.", - "page-learning-tools-vyperfun-logo-alt": "Nembo ya Vyper.fun", - "page-learning-tools-nftschool-description": "Chunguza nini kinaendelea na ishara-zisizokuvu, au NFT kutoka kwa mafundi.", - "page-learning-tools-nftschool-logo-alt": "Nembo ya shule ya NFT", - "alt-eth-blocks": "Kielelezo cha matofali yaliopangwa kama nembo ya ETH" -} \ No newline at end of file diff --git a/src/intl/sw/page-developers-local-environment.json b/src/intl/sw/page-developers-local-environment.json deleted file mode 100644 index 8d8ee9f373e..00000000000 --- a/src/intl/sw/page-developers-local-environment.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "page-local-environment-brownie-desc": "Uundaji ulio na misingi ya Python na mfumo wa kufanyia majaribio ya mikataba erervu inayolenga Mashine ya Mtandaoni ya Ethereum.", - "page-local-environment-brownie-logo-alt": "Nembo ya Brownie", - "page-local-environment-epirus-desc": "Jukwaa la kukuza, kupeleka na kufuatilia programu za blockchain kwenye Mashine ya Mtandaoni ya Java", - "page-local-environment-epirus-logo-alt": "Nembo ya Epirus", - "page-local-environment-eth-app-desc": "Unda programu zinazoendeshwa na Ethereum kwa amri moja. Inakuja na matoleo mengi ya mifumo ya UI na violezo vya DeFi kuchagua.", - "page-local-environment-eth-app-logo-alt": "Tengeneza nembo ya programu ya Eth", - "page-local-environment-framework-feature-1": "Vipengele vya kuunda mfano wa mnyororo wa bloku.", - "page-local-environment-framework-feature-2": "Huduma za kukusanya na kujaribu mikataba yako mahiri.", - "page-local-environment-framework-feature-3": "Viongezi vya ukuzaji wa mteja ili kuunda programu yako inayomkabili mtumiaji ndani ya mradi/hazina sawa.", - "page-local-environment-framework-feature-4": "Mipangilio ya kuunganisha kwenye mitandao ya Ethereum na kupeleka kandarasi, iwe kwa mfano unaoendeshwa ndani ya nchi, au mojawapo ya mitandao ya umma ya Ethereum.", - "page-local-environment-framework-feature-5": "Usambazaji wa programu uliogatuliwa - miunganisho na chaguo za hifadhi kama vile IPFS.", - "page-local-environment-framework-features": "Miundo hii inakuja na utendaji mwingi wa nje ya sanduku, kama:", - "page-local-environment-frameworks-desc": "Tunapendekeza uchague mfumo, haswa ikiwa ndio kwanza unaanza. Kuunda dapp kamili kunahitaji vipande tofauti vya teknolojia. Mifumo inajumuisha vipengele vingi vinavyohitajika au kutoa mifumo rahisi ya programu-jalizi ili kuchagua zana unazotaka.", - "page-local-environment-frameworks-title": "Miundo na safu zilizotengenezwa mapema", - "page-local-environment-hardhat-desc": "Hardhat ni mazingira ya maendeleo ya Ethereum kwa wataalamu.", - "page-local-environment-hardhat-logo-alt": "Nembo ya Hardhat", - "page-local-environment-openZeppelin-desc": "Punguza muda wa kufabya kazi kwa kuandaa, kusasisha, kuzindua na kuingiliana na mikataba erevu kwa kutumia kiolesura cha mstari wa amri tuliotengeneza.", - "page-local-environment-openZeppelin-logo-alt": "Nembo ya OpenZappelin", - "page-local-environment-scaffold-eth-desc": "Ethers + hardhat + React: Ni kila kitu unachohitaji ili kuanza kujenga programu zilizogatuliwa zinazopewa nguvu na mikataba erevu", - "page-local-environment-scaffold-eth-logo-alt": "nembo ya scaffold-eth", - "page-local-environment-setup-meta-desc": "Muongozo wa kufuata katika kuchagua msururu utakaotumia kufanya uundaji kwenye Ethereum.", - "page-local-environment-setup-meta-title": "Uanzishaji rafiki wa eneo la uundaji wa Ethereum", - "page-local-environment-setup-subtitle": "Kama uko tayari kuanza kujenga, ni muda wa kuchagua msururu sasa.", - "page-local-environment-setup-subtitle-2": "Vifaa na mifumo inayoweza kukusaidia kujenga programu za Ethereum ziko hapa.", - "page-local-environment-setup-title": "Anzisha eneo lako rafiki kwaajili ya uundaji", - "page-local-environment-solidity-template-desc": "Kiolezo cha GitHub kilichojengwa tayari kwa ajili ya mikataba erevu ya Solidity utakayojenga. Inajumuisha mtandao wa Hardhat, Waffle kwa ajili ya kufanya majaribio, Ethers kwa ajili ya utekelezaji wa pochi, na mengine mengi.", - "page-local-environment-solidity-template-logo-alt": "Nembo kiolezo cha Solidity" -} \ No newline at end of file diff --git a/src/intl/ta/page-developers-learning-tools.json b/src/intl/ta/page-developers-learning-tools.json deleted file mode 100644 index e9bfee88339..00000000000 --- a/src/intl/ta/page-developers-learning-tools.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "alt-eth-blocks": "பிளாக்குகள் ETH சின்னம்போல் அடுக்கப்பட்டிருப்பதைக் காட்டும் படம்" -} diff --git a/src/intl/tr/page-developers-learning-tools.json b/src/intl/tr/page-developers-learning-tools.json deleted file mode 100644 index 5a8ec55a1b5..00000000000 --- a/src/intl/tr/page-developers-learning-tools.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "page-learning-tools-bloomtech-description": "BloomTech Web3 kursu size işverenlerin mühendislerde aradıkları becerileri öğretecek.", - "page-learning-tools-bloomtech-logo-alt": "BloomTech logosu", - "page-learning-tools-bootcamps": "Geliştirici bootcampleri", - "page-learning-tools-bootcamps-desc": "Öğreniminizi hızlandırmak için ücretli kurslar alın.", - "page-learning-tools-browse-docs": "Dokümanlara göz atın", - "page-learning-tools-capture-the-ether-description": "Capture the Ether, güvenlik hakkında bilgi edinmek için Ethereum akıllı sözleşmelerini hacklediğiniz bir oyundur.", - "page-learning-tools-capture-the-ether-logo-alt": "Capture the Ether logosu", - "page-learning-tools-node-guardians-description": "Node Guardians, web3 geliştiricilerinin Solidity, Cairo, Noir ve Huff programlamasında uzmanlaşabilmeleri için fantezi temalı görevler sunan oyunlaştırılmış bir eğitim platformudur.", - "page-learning-tools-node-guardians-logo-alt": "Node Guardians logosu", - "page-learning-tools-chainshot-description": "Uzaktan, eğitmen liderliğindeki Ethereum geliştirici eğitim kampı ve ek kurslar.", - "page-learning-tools-chainshot-logo-alt": "ChainShot logo", - "page-learning-tools-coding": "Kodlayarak öğrenin", - "page-learning-tools-coding-subtitle": "Etkileşimli bir öğrenim modelini tercih ediyorsanız, bu araçlar Ethereum' u denemenizde yardımcı olacaktır.", - "page-learning-tools-consensys-academy-description": "Online Ethereum geliştirici eğitim programı.", - "page-learning-tools-consensys-academy-logo-alt": "ConsenSys Academy logosu", - "page-learning-tools-cryptozombies-description": "Kendi Zombi oyunununuzu inşa ederek Solidity öğrenin.", - "page-learning-tools-cryptozombies-logo-alt": "CryptoZombies logosu", - "page-learning-tools-dapp-world-description": "Kurslar, sınavlar, uygulamalı alıştırmalar ve haftalık yarışmalar içeren bir blokzincir yetenek geliştirme platformu.", - "page-learning-tools-dapp-world-logo-alt": "Dapp World logosu", - "page-learning-tools-documentation": "Dokümantasyon ile öğrenin", - "page-learning-tools-documentation-desc": "Daha fazla bilgi edinmek ister misiniz? İhtiyacınız olan açıklamaları bulmak için dokümantasyona göz atın.", - "page-learning-tools-eth-dot-build-description": "Sürükle ve bırak programlama ve açık kaynaklı yapı taşları da dahil olmak üzere web3 için bir sandbox.", - "page-learning-tools-eth-dot-build-logo-alt": "Eth.build logosu", - "page-learning-tools-ethernauts-description": "Akıllı kontratları hackleyerek bölümleri tamamlayın.", - "page-learning-tools-ethernauts-logo-alt": "Ethernauts logosu", - "page-learning-tools-metaschool-description": "Merkeziyetsiz uygulamalar oluşturarak ve bunların alışverişini yaparak bir Web3 Geliştirici olun.", - "page-learning-tools-metaschool-logo-alt": "_metaschool logosu", - "page-learning-tools-game-tutorials": "İnteraktif oyun öğreticiler", - "page-learning-tools-game-tutorials-desc": "Oynarken öğrenin. Bu öğreticiler, oyunun temellerini anlamanıza yardımcı olacaktır.", - "page-learning-tools-meta-desc": "Ethereum ile denemeler ve geliştirmeler yapmanıza yardımcı olmak için Web tabanlı kodlama araçları ve etkileşimli öğrenme deneyimleri.", - "page-learning-tools-meta-title": "Geliştirici öğrenme araçları", - "page-learning-tools-atlas-logo-alt": "Atlas logosu", - "page-learning-tools-atlas-description": "Atlas IDE ile akıllı sözleşmeler yazın, test edin ve dağıtın.", - "page-learning-tools-questbook-description": "Web 3.0 oluşturarak kendi kendinize öğrenin", - "page-learning-tools-questbook-logo-alt": "Questbook Logosu", - "page-learning-tools-remix-description": "Ethereum'a akıllı sözleşmeler geliştir, dağıt ve yönet. LearnEth eklentisiyle öğreticileri takip et.", - "page-learning-tools-remix-description-2": "Remix, Replit, ChainIDE ve Atlas sadece sanal alan değildir; geliştiriciler, bunları kullanarak akıllı sözleşmeler yazabilir, derleyebilir ve dağıtabilir.", - "page-learning-tools-replit-description": "Çalışırken yeniden yükleme, hata denetimi ve birinci sınıf test ağı desteği ile Ethereum için özelleştirilebilir bir geliştirme ortamı.", - "page-learning-tools-chainIDE-description": "ChainIDE ile Ethereum için akıllı sözleşmeler yazarak Web3 yolculuğunuza başlayın. Öğrenmek ve zaman kazanmak için yerleşik şablonları kullanın.", - "page-learning-tools-chainIDE-logo-alt": "ChainİDE logosu", - "page-learning-tools-tenderly-description": "Tenderly Sandbox, Solidity ve JavaScript kullanarak tarayıcı üzerinde akıllı sözleşmeler yazabileceğiniz, çalıştırabileceğiniz ve hatalarını ayıklayabileceğiniz bir prototipleme ortamıdır.", - "page-learning-tools-tenderly-logo-alt": "Tenderly logosu", - "page-learning-tools-replit-logo-alt": "Replit logosu", - "page-learning-tools-remix-logo-alt": "Remix logosu", - "page-learning-tools-sandbox": "Sandboxların kodu", - "page-learning-tools-sandbox-desc": "Bu sandboxlar, akıllı sözleşmeler yazmayı ve Ethereum'u anlamayı denemek için size bir alan sağlayacaktır.", - "page-learning-tools-speed-run-ethereum-description": "Speed Run Ethereum, Solidity bilginizi Scaffold-ETH kullanarak test etmenizi sağlayan bir sınama setidir", - "page-learning-tools-speed-run-ethereum-logo-alt": "Speed Run Ethereum logosu", - "page-learning-tools-studio-description": "Akıllı sözleşmeler oluşturmak ve test etmek, onlar için bir ön uç oluşturmak için öğreticileri takip edebileceğiniz web tabanlı bir IDE.", - "page-learning-tools-vyperfun-description": "Kendi Pokémon oyununuzu oluşturarak Vyper öğrenin.", - "page-learning-tools-vyperfun-logo-alt": "Vyper.fun logosu", - "page-learning-tools-nftschool-description": "Değiştirilemez tokenler veya NFT'ler ile teknik açıdan neler olup bittiğini keşfedin.", - "page-learning-tools-nftschool-logo-alt": "NFT school logosu", - "page-learning-tools-pointer-description": "Eğlenceli olan etkileşimli öğreticilerle web3 geliştirme becerilerini öğrenin. Bu sırada kripto ödülleri kazanın", - "page-learning-tools-pointer-logo-alt": "İşaretçi Logosu", - "page-learning-tools-platzi-description": "Web3 üzerinde merkeziyetsiz uygulamalar oluşturmayı öğrenin ve bir blok zincir geliştiricisi olmak için gereken tüm becerilerde ustalaşın.", - "page-learning-tools-platzi-logo-alt": "Platzi logosu", - "page-learning-tools-alchemy-university-description": "Web3 kariyerinizi kurslar, projeler ve kodlarla geliştirin.", - "page-learning-tools-alchemy-university-logo-alt": "Alchemy Üniversitesi logosu", - "alt-eth-blocks": "Bir ETH sembolü gibi düzenlenmiş bloklar görseli" -} diff --git a/src/intl/tr/page-developers-local-environment.json b/src/intl/tr/page-developers-local-environment.json deleted file mode 100644 index 3a4621c41e5..00000000000 --- a/src/intl/tr/page-developers-local-environment.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "page-local-environment-brownie-desc": "Ethereum Sanal Makinesi'ni hedefleyen akıllı sözleşmeler için Python bazlı bir geliştirme ve yazılım iskeleti.", - "page-local-environment-brownie-logo-alt": "Brownie logosu", - "page-local-environment-kurtosis-desc": "Kolay yapılandırılabilen ve hızlı yerel dApp geliştirebilme, prototipleme ve testi için, çoklu istemci Ethereum test ağı oluşturabilen konteyner tabanlı bir araç seti.", - "page-local-environment-kurtosis-logo-alt": "Kurtosis logosu", - "page-local-environment-epirus-desc": "Java Sanal Makinesinde blokzincir uygulamalarını geliştirmek, dağıtmak ve izlemek için bir platform.", - "page-local-environment-epirus-logo-alt": "Epirus logosu", - "page-local-environment-eth-app-desc": "Tek bir komutla Ethereum destekli uygulamalar oluşturun. Seçebileceğiniz birbirinden farklı arayüz yapıları ve DeFi şablonları da bulunur.", - "page-local-environment-eth-app-logo-alt": "Create Eth App logosu", - "page-local-environment-foundry-desc": "Rust ile yazılmış, Ethereum uygulama geliştirme için son derece hızlı, taşınabilir ve modüler bir araç takımı.", - "page-local-environment-foundry-logo-alt": "Foundry logosu", - "page-local-environment-framework-feature-1": "Yerel bir blok-zincir örneğini döndürmek için özellikler.", - "page-local-environment-framework-feature-2": "Akıllı sözleşmelerinizi derlemek ve test etmek için yardımcı programlar.", - "page-local-environment-framework-feature-3": "Kullanıcı odaklı uygulamanızı aynı projede/depoda oluşturmak için istemci geliştirme eklentileri.", - "page-local-environment-framework-feature-4": "Yerel olarak çalışan bir örneğe veya Ethereum' un genel ağlarından birine olsun, Ethereum ağlarına bağlanmak ve sözleşmeleri dağıtmak için yapılandırma.", - "page-local-environment-framework-feature-5": "Merkezi olmayan uygulama dağıtımı için IPFS gibi depolama seçenekleriyle entegrasyonlar.", - "page-local-environment-framework-features": "Bu frameworkler, bir sürü kutu dışı işlevsellik ile birlikte gelir:", - "page-local-environment-frameworks-desc": "Özellikle yeni başlıyorsanız, bir framework seçmenizi öneririz. Tam teşekküllü bir uygulama oluşturmak, farklı teknoloji parçaları gerektirir. Frameworkler, gerekli özelliklerin çoğunu içerir veya istediğiniz araçları seçmek için basit eklenti sistemleri sağlar.", - "page-local-environment-frameworks-title": "Framework'ler ve önceden yapılmış yığınlar", - "page-local-environment-hardhat-desc": "Hardhat, profesyoneller için bir Ethereum geliştirme ortamıdır.", - "page-local-environment-hardhat-logo-alt": "Hardhat logosu", - "page-local-environment-openZeppelin-desc": "CLI ile akıllı sözleşmeleri derleyerek, yükselterek, dağıtarak ve etkileşime girerek geliştirme süresinden saatlerce tasarruf edin.", - "page-local-environment-openZeppelin-logo-alt": "OpenZeppelin logosu", - "page-local-environment-scaffold-eth-desc": "Ethers + Hardhat + React: Akıllı sözleşmelerle desteklenen merkeziyetsu=iz uygulamalar oluşturmaya başlamak için ihtiyacınız olan her şey.", - "page-local-environment-scaffold-eth-logo-alt": "scaffold-eth logosu", - "page-local-environment-setup-meta-desc": "Ethereum geliştirmek için yazılım yığınınızı nasıl seçeceğinize dair bir rehber.", - "page-local-environment-setup-meta-title": "Ethereum yerel geliştirme kurulumu", - "page-local-environment-setup-subtitle": "İnşa etmeye hazırsanız, yığınınızı seçmenin zamanı geldi.", - "page-local-environment-setup-subtitle-2": " Ethereum uygulamanızı oluşturmanıza yardımcı olmak için kullanabileceğiniz araçlar ve framework'ler.", - "page-local-environment-setup-title": "Sanal geliştirme ortamınızı oluşturun", - "page-local-environment-solidity-template-desc": "Solidity akıllı sözleşmeleriniz için önceden oluşturulmuş bir GitHub şablonu. Hardhat yerel ağı, testler için Waffle, cüzdan uygulaması için Etherler ve daha fazlasını içerir.", - "page-local-environment-solidity-template-logo-alt": "Solidity template logosu" -} \ No newline at end of file diff --git a/src/intl/uk/page-developers-learning-tools.json b/src/intl/uk/page-developers-learning-tools.json deleted file mode 100644 index c9f6de23a62..00000000000 --- a/src/intl/uk/page-developers-learning-tools.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "page-learning-tools-bloomtech-description": "Курс Web3 від BloomTech навчить вас навичок, які роботодавці шукають в інженерах.", - "page-learning-tools-bloomtech-logo-alt": "Логотип BloomTech", - "page-learning-tools-bootcamps": "Посібники для розробників", - "page-learning-tools-bootcamps-desc": "Платні онлайн-курси, які швидко підготують вас до роботи.", - "page-learning-tools-browse-docs": "Переглянути документи", - "page-learning-tools-capture-the-ether-description": "Capture the Ether — це гра, у якій ви зламуєте смартконтракти Ethereum для вивчення принципів безпеки.", - "page-learning-tools-capture-the-ether-logo-alt": "Захоплення логотипу Ether", - "page-learning-tools-coding": "Кодуй і навчайся", - "page-learning-tools-coding-subtitle": "Ці інструменти дадуть змогу експериментувати з мережею Ethereum, якщо ви віддаєте перевагу більш інтерактивному навчанню.", - "page-learning-tools-consensys-academy-description": "Онлайн-посібник для розробників Ethereum.", - "page-learning-tools-consensys-academy-logo-alt": "ConsenSys Academy logo", - "page-learning-tools-cryptozombies-description": "Вивчайте Solidity на прикладі створення гри про зомбі.", - "page-learning-tools-cryptozombies-logo-alt": "CryptoZombies logo", - "page-learning-tools-documentation": "Навчайтеся за допомогою документів", - "page-learning-tools-documentation-desc": "Хочете дізнатися більше? Перегляньте наші документи, щоб знайти потрібні пояснення.", - "page-learning-tools-eth-dot-build-description": "Навчальна пісочниця для Web3, що включає програмування перетягуванням і блоки з відкритим кодом.", - "page-learning-tools-eth-dot-build-logo-alt": "Eth.build logo", - "page-learning-tools-ethernauts-description": "Проходьте рівні, зламуючи розумні контракти.", - "page-learning-tools-ethernauts-logo-alt": "Ethernauts logo", - "page-learning-tools-metaschool-description": "Станьте розробником Web3, створюючи й надаючи децентралізовані програми.", - "page-learning-tools-metaschool-logo-alt": "Логотип Metaschool", - "page-learning-tools-game-tutorials": "Інтерактивні ігрові посібники", - "page-learning-tools-game-tutorials-desc": "Грайте й навчайтеся. Ці посібники допоможуть вам зрозуміти основи під час гри.", - "page-learning-tools-meta-desc": "Веб-інструменти кодування та інтерактивне навчання, які допоможуть вам експериментувати з розробкою мережі Ethereum.", - "page-learning-tools-meta-title": "Навчальні інструменти для розробників", - "page-learning-tools-questbook-description": "Навчальні матеріали щодо Web 3.0 для самостійного опрацювання", - "page-learning-tools-questbook-logo-alt": "Логотип Questbook", - "page-learning-tools-remix-description": "Розробляйте й упроваджуйте смартконтракти для мережі Ethereum, а також керуйте ними. Скористайтеся посібниками за допомогою плагіну LearnEth.", - "page-learning-tools-remix-description-2": "Remix, Replit і ChainIDE — це не просто пісочниці. За їх допомогою розробники можуть писати, компілювати й розгортати смартконтракти.", - "page-learning-tools-replit-description": "Настроюване середовище розробки для Ethereum із гарячим перезавантаженням, перевіркою помилок і першокласною підтримкою тестової мережі.", - "page-learning-tools-chainIDE-description": "Розпочніть свою подорож до Web3, пишучи смартконтракти для Ethereum за допомогою ChainIDE. Використовуйте вбудовані шаблони, щоб навчатися й заощаджувати час.", - "page-learning-tools-chainIDE-logo-alt": "Логотип ChainIDE", - "page-learning-tools-tenderly-description": "Tenderly Sandbox — це середовище прототипування, де ви можете писати, виконувати та налагоджувати смартконтракти в браузері за допомогою Solidity та JavaScript.", - "page-learning-tools-tenderly-logo-alt": "Логотип Tenderly", - "page-learning-tools-replit-logo-alt": "Логотип Replit", - "page-learning-tools-remix-logo-alt": "Remix logo", - "page-learning-tools-sandbox": "Пісочниці для кодування", - "page-learning-tools-sandbox-desc": "Ці пісочниці дозволять вам експериментувати з написанням розумних контрактів і розумінням мережі Ethereum.", - "page-learning-tools-speed-run-ethereum-description": "Speed ​​Run Ethereum — це набір завдань для перевірки ваших знань Solidity за допомогою Scaffold-ETH", - "page-learning-tools-speed-run-ethereum-logo-alt": "Логотип Speed Run Ethereum", - "page-learning-tools-studio-description": "Інтегроване веб-середовище розробки, де можна знайти посібники зі створення та тестування розумних контрактів, а також створити для користувацький інтерфейс.", - "page-learning-tools-vyperfun-description": "Вивчайте Vyper на прикладі створення власної гри Pokémon.", - "page-learning-tools-vyperfun-logo-alt": "Vyper.fun logo", - "page-learning-tools-nftschool-description": "Досліджуйте, що відбувається з невзаємозамінними токенами, або NFT, з технічного боку.", - "page-learning-tools-nftschool-logo-alt": "Логотип NFT school", - "page-learning-tools-platzi-description": "Навчіться створювати додатки на Web3 та опануйте всі навички, необхідні для роботи розробника блокчейну.", - "page-learning-tools-platzi-logo-alt": "Логотип Platzi", - "page-learning-tools-alchemy-university-description": "Розвивайте свою кар’єру у Web3 за допомогою курсів, проєктів і коду.", - "page-learning-tools-alchemy-university-logo-alt": "Логотип університету Alchemy", - "alt-eth-blocks": "Ілюстрація з блоками, зібраними в символ ETH" -} \ No newline at end of file diff --git a/src/intl/uk/page-developers-local-environment.json b/src/intl/uk/page-developers-local-environment.json deleted file mode 100644 index ea6fa30a56e..00000000000 --- a/src/intl/uk/page-developers-local-environment.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "page-local-environment-brownie-desc": "Фреймворк для розробки й тестування на основі Python для розумних контрактів, націлених на Віртуальну машину Ethereum.", - "page-local-environment-brownie-logo-alt": "Логотип Brownie", - "page-local-environment-kurtosis-desc": "Інструментарій на основі контейнерів для легкого налаштування та розкручування тестової мережі з великою кількістю клієнтів Ethereum, у якій можна швидко розробляти локальні децентралізовані програми (dApp), прототипувати й тестувати їх.", - "page-local-environment-kurtosis-logo-alt": "Логотип Kurtosis", - "page-local-environment-epirus-desc": "Платформа для розробки, впровадження та відстеження блокчейн-програм на віртуальній машині Java.", - "page-local-environment-epirus-logo-alt": "Epirus logo", - "page-local-environment-eth-app-desc": "Створюйте програми на основі Ethereum за допомогою однієї команди. Містить велику кількість фреймворків інтерфейсу та шаблонів DeFi.", - "page-local-environment-eth-app-logo-alt": "Create Eth App logo", - "page-local-environment-foundry-desc": "Надзвичайно швидкий, портативний і модульний набір інструментів для розробки програм Ethereum, написаний на Rust.", - "page-local-environment-foundry-logo-alt": "Логотип Foundry", - "page-local-environment-framework-feature-1": "Функції для створення локальної системи блокчейнів.", - "page-local-environment-framework-feature-2": "Утиліти для компіляції і тестування розумних контрактів.", - "page-local-environment-framework-feature-3": "Додатки до розробки клієнта для створення користувацьких програм у межах одного проекту/репозиторію.", - "page-local-environment-framework-feature-4": "Конфігурація для підключення до мереж Ethereum і впровадження контрактів для локально запущеного блокчейну або для загальнодоступних мереж Ethereum.", - "page-local-environment-framework-feature-5": "Розподіл децентралізованих програм – інтеграція з параметрами сховища, такими як IPFS.", - "page-local-environment-framework-features": "Ці фреймворки мають багато незвичайних функцій (приклади наведено нижче).", - "page-local-environment-frameworks-desc": " Радимо обрати фреймворк, особливо якщо ви тільки починаєте. Створення повноцінної децентралізованої програми потребує різних технологій. Фреймворки містять багато корисних функцій або надають прості системи плагінів, де можна вибрати потрібні інструменти.", - "page-local-environment-frameworks-title": "Фреймворки й заготовлені стеки", - "page-local-environment-hardhat-desc": "Hardhat – це середовище розробки Ethereum для професіоналів.", - "page-local-environment-hardhat-logo-alt": "Hardhat logo", - "page-local-environment-openZeppelin-desc": "Заощаджуйте час, який витрачається на розробку, шляхом компіляції, оновлення та впровадження розумних контрактів, а також взаємодії з ними за допомогою CLI.", - "page-local-environment-openZeppelin-logo-alt": "OpenZeppelin logo", - "page-local-environment-scaffold-eth-desc": "Ethers + Hardhat + React — це все, що вам потрібно, щоб почати створювати децентралізовані програми, які працюють на основі смартконтрактів.", - "page-local-environment-scaffold-eth-logo-alt": "scaffold-eth logo", - "page-local-environment-setup-meta-desc": "Дізнайтесь, як обрати програмний стек для розробки Ethereum.", - "page-local-environment-setup-meta-title": "Налаштування локальної розробки Ethereum", - "page-local-environment-setup-subtitle": "Якщо ви готові почати, оберіть стек.", - "page-local-environment-setup-subtitle-2": " Ось інструменти та фреймворки, які ви можете використовувати для створення власної програми в мережі Ethereum.", - "page-local-environment-setup-title": "Налаштування локального середовища розробки", - "page-local-environment-solidity-template-desc": "Шаблон GitHub для попередньо вбудованих налаштувань розумних контрактів мовою Solidity. Включає локальну мережу Hardhat, Waffle для тестування, Ether для запуску гаманця тощо.", - "page-local-environment-solidity-template-logo-alt": "Solidity template logo" -} \ No newline at end of file diff --git a/src/intl/ur/page-developers-learning-tools.json b/src/intl/ur/page-developers-learning-tools.json deleted file mode 100644 index e5e10bf165d..00000000000 --- a/src/intl/ur/page-developers-learning-tools.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "alt-eth-blocks": "ETH کی علامت کی طرح ترتیب دیے جانے والے بلاکس کی تصویر" -} diff --git a/src/intl/vi/page-developers-learning-tools.json b/src/intl/vi/page-developers-learning-tools.json deleted file mode 100644 index 149b3173259..00000000000 --- a/src/intl/vi/page-developers-learning-tools.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "page-learning-tools-bloomtech-description": "Khóa học BloomTech Web3 sẽ chỉ cho bạn những kỹ năng mà nhà tuyển dụng mong muốn ở các kỹ sư.", - "page-learning-tools-bloomtech-logo-alt": "Logo của BloomTech", - "page-learning-tools-bootcamps": "Chương trình đào tạo cho nhà phát triển", - "page-learning-tools-bootcamps-desc": "Các khóa học trực tuyến trả phí sẽ giúp bạn nhanh chóng bắt kịp tốc độ.", - "page-learning-tools-browse-docs": "Duyệt tài liệu", - "page-learning-tools-capture-the-ether-description": "Capture the Ether là một trò chơi trong đó, người chơi tìm hiểu về bảo mật bằng cách xâm nhập các hợp đồng thông minh Ethereum.", - "page-learning-tools-capture-the-ether-logo-alt": "Logo của Capture the Ether", - "page-learning-tools-coding": "Tìm hiểu bằng cách mã hoá", - "page-learning-tools-coding-subtitle": "Nếu bạn muốn có một môi trường học tập giàu tính tương tác hơn, thì những công cụ này sẽ giúp bạn trải nghiệm với Ethereum.", - "page-learning-tools-consensys-academy-description": "Developer bootcamp trực tuyến về Ethereum.", - "page-learning-tools-consensys-academy-logo-alt": "Logo của học viện ConsenSys", - "page-learning-tools-cryptozombies-description": "Tìm hiểu Solidity bằng cách phát triển game Zombie của riêng bạn.", - "page-learning-tools-cryptozombies-logo-alt": "Logo của CryptoZombies", - "page-learning-tools-documentation": "Tìm hiểu với tài liệu tham khảo", - "page-learning-tools-documentation-desc": "Bạn muốn tìm hiểu thêm? Truy cập tài liệu tham khảo của chúng tôi để tìm lời giải đáp cho thắc mắc của bạn.", - "page-learning-tools-eth-dot-build-description": "Hộp cát để học cho web3 có tính năng lập trình kéo và thả và các khối xây dựng mã nguồn mở.", - "page-learning-tools-eth-dot-build-logo-alt": "Logo của Eth.build", - "page-learning-tools-ethernauts-description": "Hoàn thành các cấp độ bằng cách xâm nhập hợp đồng thông minh.", - "page-learning-tools-ethernauts-logo-alt": "Logo của Ethernauts", - "page-learning-tools-metaschool-description": "Trở thành Nhà phát triển Web3 bằng cách xây dựng và chuyển giao các ứng dụng phi tập trung.", - "page-learning-tools-metaschool-logo-alt": "Logo của _metaschool", - "page-learning-tools-game-tutorials": "Hướng dẫn về game tương tác", - "page-learning-tools-game-tutorials-desc": "Tìm hiểu thêm trong khi chơi. Hướng dẫn này giúp bạn tìm hiểu những kiến thức cơ bản thông qua trò chơi.", - "page-learning-tools-meta-desc": "Bạn có thể khám phá quá trình phát triển của Ethereum bằng cách sử dụng các công cụ mã hóa trực tuyến và trải nghiệm học tập tương tác.", - "page-learning-tools-meta-title": "Công cụ học tập dành cho nhà phát triển", - "page-learning-tools-questbook-description": "Hướng dẫn tự học về Web 3.0 bằng cách xây dựng", - "page-learning-tools-questbook-logo-alt": "Logo của Questbook", - "page-learning-tools-remix-description": "Phát triển, triển khai và quản lý hợp đồng thông minh cho Ethereum. Làm theo hướng dẫn với plugin LearnEth.", - "page-learning-tools-remix-description-2": "Remix, Replit, và ChanIDE không chỉ là hộp cát—các nhà phát triển có thể viết, biên dịch và triển khai các hợp đồng thông minh của họ bằng cách sử dụng chúng.", - "page-learning-tools-replit-description": "Một môi trường phát triển Ethereum có thể định cấu hình với khả năng tải lại nóng, kiểm tra lỗi và hỗ trợ mạng thử nghiệm ở cấp độ cao nhất.", - "page-learning-tools-chainIDE-description": "Bắt đầu hành trình Web3 của bạn bằng cách tạo các hợp đồng thông minh Ethereum với ChainIDE. Sử dụng các mẫu có sẵn để học và tiết kiệm thời gian.", - "page-learning-tools-chainIDE-logo-alt": "Logo của ChainIDE", - "page-learning-tools-tenderly-description": "Tenderly Sandbox là một môi trường tạo nguyên mẫu mà bạn có thể viết, thực thi, và gỡ lỗi hợp đồng thông minh trong trình duyệt bằng Solidity và JavaScript.", - "page-learning-tools-tenderly-logo-alt": "Logo của Tenderly", - "page-learning-tools-replit-logo-alt": "Logo của Replit", - "page-learning-tools-remix-logo-alt": "Logo của Remix", - "page-learning-tools-sandbox": "Hộp cát mã", - "page-learning-tools-sandbox-desc": "Các môi trường thử nghiệm này cho bạn không gian để thực hành tạo các hợp đồng thông minh và hiểu biết thêm về Ethereum.", - "page-learning-tools-speed-run-ethereum-description": "Speed Run Ethereum là một bộ thử thách để kiểm tra kiến thức Solidity của bạn bằng cách sử dụng Scaffold-ETH", - "page-learning-tools-speed-run-ethereum-logo-alt": "Logo của Speed Run Ethereum", - "page-learning-tools-studio-description": "IDE (Môi trường phát triển tích hợp) dựa trên web, nơi bạn có thể làm theo hướng dẫn để xây dựng và kiểm tra hợp đồng thông minh cũng như xây dựng giao diện người dùng cho chúng.", - "page-learning-tools-vyperfun-description": "Tìm hiểu về Vyper bằng cách xây dựng game Pokémon của riêng bạn.", - "page-learning-tools-vyperfun-logo-alt": "Logo của Vyper.fun", - "page-learning-tools-nftschool-description": "Khám phá về mặt kỹ thuật những gì đang xảy ra với token không thể thay thế hoặc NFT (tài sản không thể thay thế).", - "page-learning-tools-nftschool-logo-alt": "Logo của NFT school (tài sản không thể thay thế)", - "page-learning-tools-platzi-description": "Học cách xây dựng các ứng dụng phi tập trung (dapp) trên Web3 và làm chủ các kỹ năng cần có để trở thành nhà phát triển chuỗi khối.", - "page-learning-tools-platzi-logo-alt": "Logo của Platzi", - "page-learning-tools-alchemy-university-description": "Phát triển sự nghiệp web3 của bạn thông qua các khóa học, dự án và viết mã.", - "page-learning-tools-alchemy-university-logo-alt": "Logo của Alchemy University", - "alt-eth-blocks": "Hình minh họa các khối được sắp xếp thành một biểu tượng ETH" -} \ No newline at end of file diff --git a/src/intl/vi/page-developers-local-environment.json b/src/intl/vi/page-developers-local-environment.json deleted file mode 100644 index 105f7ac7c58..00000000000 --- a/src/intl/vi/page-developers-local-environment.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "page-local-environment-brownie-desc": "Khung thử nghiệm và phát triển dựa trên Python cho các hợp đồng thông minh nhắm mục tiêu đến máy ảo Ethereum.", - "page-local-environment-brownie-logo-alt": "Logo của Brownie", - "page-local-environment-kurtosis-desc": "Một bộ công cụ dựa vào vùng chứa để dễ cấu hình và tạo ra một mạng thử nghiệm nhiều ứng dụng khách của Ethereum, để triển khai ứng dụng phi tập trung cục bộ nhanh, tạo nguyên mẫu và thử nghiệm.", - "page-local-environment-kurtosis-logo-alt": "Logo của Kurtosis", - "page-local-environment-epirus-desc": "Nền tảng phát triển, triển khai và giám sát các ứng dụng chuỗi khối trên Máy ảo Java.", - "page-local-environment-epirus-logo-alt": "Logo của Epirus", - "page-local-environment-eth-app-desc": "Tạo ứng dụng được hỗ trợ bởi Ethereum chỉ với một lệnh duy nhất. Đi kèm với nhiều lựa chọn về khung giao diện người dùng (UI) và các mẫu nền tài chính phi tập trung (DeFi).", - "page-local-environment-eth-app-logo-alt": "Tạo logo của ứng dụng Eth", - "page-local-environment-foundry-desc": "Bộ công cụ nhanh, di động và mô-đun hóa để phát triển ứng dụng Ethereum được viết bằng Rust.", - "page-local-environment-foundry-logo-alt": "Logo của Foundry", - "page-local-environment-framework-feature-1": "Các tính năng để tạo ra một phiên bản blockchain cục bộ.", - "page-local-environment-framework-feature-2": "Các tiện ích để biên dịch và kiểm tra hợp đồng thông minh của bạn.", - "page-local-environment-framework-feature-3": "Tiện ích bổ sung để phát triển ứng dụng khách cho phép bạn xây dựng ứng dụng hướng tới người dùng trong cùng một dự án/kho lưu trữ.", - "page-local-environment-framework-feature-4": "Cấu hình để kết nối với mạng Ethereum và triển khai hợp đồng, cho dù với một phiên bản đang chạy cục bộ hay một trong các mạng công cộng của Ethereum.", - "page-local-environment-framework-feature-5": "Phân phối ứng dụng phi tập trung - tích hợp với các tùy chọn lưu trữ như IPFS (hệ thống tập tin phân tán mạng ngang hàng).", - "page-local-environment-framework-features": "Những framework này bao gồm nhiều chức năng có sẵn như:", - "page-local-environment-frameworks-desc": "Chúng tôi khuyên bạn nên lựa chọn một khung, đặc biệt nếu bạn mới bắt đầu. Việc phát triển một ứng dụng phi tập trung (dapp) chính thức đòi hỏi nhiều thành phần công nghệ khác nhau. Khung bao gồm nhiều tính năng cần thiết hoặc cung cấp các hệ thống plugin đơn giản để lựa chọn các công cụ mong muốn.", - "page-local-environment-frameworks-title": "Khung và stack tạo sẵn", - "page-local-environment-hardhat-desc": "Hardhat là một môi trường phát triển Ethereum chuyên nghiệp.", - "page-local-environment-hardhat-logo-alt": "Logo của Hardhat", - "page-local-environment-openZeppelin-desc": "Sử dụng CLI (giao diện dòng lệnh) của chúng tôi để biên dịch, nâng cấp, triển khai và tương tác với hợp đồng thông minh sẽ giúp bạn tiết kiệm hàng giờ phát triển.", - "page-local-environment-openZeppelin-logo-alt": "Logo của OpenZeppelin", - "page-local-environment-scaffold-eth-desc": "Ethers + Hardhat + React: mọi thứ bạn cần để bắt đầu xây dựng các ứng dụng phi tập trung dựa trên hợp đồng thông minh.", - "page-local-environment-scaffold-eth-logo-alt": "Logo của scaffold-eth", - "page-local-environment-setup-meta-desc": "Hướng dẫn về cách chọn stack phần mềm thích hợp để phát triển Ethereum.", - "page-local-environment-setup-meta-title": "Thiết lập để phát triển cục bộ Ethereum", - "page-local-environment-setup-subtitle": "Nếu bạn đã sẵn sàng để bắt đầu xây dựng, thì đây là lúc để chọn ngăn xếp của mình.", - "page-local-environment-setup-subtitle-2": "Dưới đây là các công cụ và khung mà bạn có thể sử dụng để xây dựng ứng dụng Ethereum.", - "page-local-environment-setup-title": "Thiết lập môi trường phát triển cục bộ của bạn", - "page-local-environment-solidity-template-desc": "Mẫu GitHub cho cấu hình hợp đồng thông minh Solidity được tạo sẵn. Chứa mạng cục bộ Hardhat, Waffle để thử nghiệm, Ethers để triển khai ví và các thành phần khác.", - "page-local-environment-solidity-template-logo-alt": "Logo của mẫu Solidity" -} \ No newline at end of file diff --git a/src/intl/zh-tw/page-developers-learning-tools.json b/src/intl/zh-tw/page-developers-learning-tools.json deleted file mode 100644 index ef8ae060dcd..00000000000 --- a/src/intl/zh-tw/page-developers-learning-tools.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "page-learning-tools-bloomtech-description": "在 BloomTech Web3 課程中,將會教導你雇主想要從工程師身上看到的技能。", - "page-learning-tools-bloomtech-logo-alt": "BloomTech 標誌", - "page-learning-tools-bootcamps": "開發者訓練營", - "page-learning-tools-bootcamps-desc": "線上付費課程幫助你快速上手。", - "page-learning-tools-browse-docs": "瀏覽文件", - "page-learning-tools-capture-the-ether-description": "「捕捉以太」這個遊戲可以讓你破解以太坊智慧型合約,藉此學習安全議題。", - "page-learning-tools-capture-the-ether-logo-alt": "捕捉以太標誌", - "page-learning-tools-node-guardians-description": "Node Guardians 是一個遊戲化的教育平台,讓 Web3 開發者透過奇幻主題任務沉浸其中,以掌握 Solidity、Cairo、Noir 和 Huff 的程式設計。", - "page-learning-tools-node-guardians-logo-alt": "Node Guardians 標誌", - "page-learning-tools-coding": "透過編寫程式學習", - "page-learning-tools-coding-subtitle": "如果你偏好互動性高的學習體驗,這些工具會幫助你試用以太坊功能。", - "page-learning-tools-consensys-academy-description": "線上以太坊開發者訓練營。", - "page-learning-tools-consensys-academy-logo-alt": "ConsenSys Academy 標誌", - "page-learning-tools-cryptozombies-description": "學習 Solidity,打造自己的殭屍遊戲。", - "page-learning-tools-cryptozombies-logo-alt": "CryptoZombies 標誌", - "page-learning-tools-dapp-world-description": "包括課程、測驗、實作練習和每週競賽的區塊鏈技能提升生態系統。", - "page-learning-tools-dapp-world-logo-alt": "Dapp World 標誌", - "page-learning-tools-documentation": "閱讀文件學習", - "page-learning-tools-documentation-desc": "想了解更多嗎?請前往我們的文件,尋找需要的解釋。", - "page-learning-tools-eth-dot-build-description": "一個教育性的 Web3 沙箱,包括拖放式的程式設計和開源的建構區塊。", - "page-learning-tools-eth-dot-build-logo-alt": "Eth.build 標誌", - "page-learning-tools-ethernauts-description": "破解智慧型合約,完成關卡。", - "page-learning-tools-ethernauts-logo-alt": "Ethernauts 標誌", - "page-learning-tools-metaschool-description": "透過建置並送出去中心化應用程式成為 Web3 開發者。", - "page-learning-tools-metaschool-logo-alt": "_metaschool 標誌", - "page-learning-tools-game-tutorials": "互動式遊戲教學", - "page-learning-tools-game-tutorials-desc": "邊玩邊學。這些教學在遊戲中解釋基礎知識。", - "page-learning-tools-meta-desc": "網頁版程式設計工具和互動式學習經驗讓你試驗以太坊的開發環境。", - "page-learning-tools-meta-title": "開發者學習工具", - "page-learning-tools-atlas-logo-alt": "Atlas 標誌", - "page-learning-tools-atlas-description": "使用 Atlas 整合開發環境在幾分鐘內編寫、測試和部署智慧型合約。", - "page-learning-tools-questbook-description": "以自己的步調進行,透過建構了解 Web3.0 的教學", - "page-learning-tools-questbook-logo-alt": "Questbook 標誌", - "page-learning-tools-remix-description": "開發、部屬及管理以太坊智慧型合約,可按照 Learneth 插件的使用教學操作。", - "page-learning-tools-remix-description-2": "Remix、Replit、ChainIDE 和 Atlas 不僅僅是沙箱 — 開發者可以使用它們編寫、編譯和部署智慧型合約。", - "page-learning-tools-replit-description": "一個可以自訂的以太坊開發環境,具備即時重新載入、錯誤檢查及絕佳的測試網支援。", - "page-learning-tools-chainIDE-description": "透過 ChainIDE 編寫以太坊智慧型合約,開始你的 Web3 旅程。利用內建模板學習可以節省時間。", - "page-learning-tools-chainIDE-logo-alt": "ChainIDE 標誌", - "page-learning-tools-tenderly-description": "Tenderly Sandbox 是一個原型設計的環境,你可在瀏覽器中使用 Solidity 及 JavaScript 編寫、執行智慧型合約,並為其除錯。", - "page-learning-tools-tenderly-logo-alt": "Tenderly 標誌", - "page-learning-tools-replit-logo-alt": "Replit 標誌", - "page-learning-tools-remix-logo-alt": "Remix 標誌", - "page-learning-tools-sandbox": "程式碼沙箱", - "page-learning-tools-sandbox-desc": "這些沙箱給你編寫智慧型合約及學習以太坊的空間。", - "page-learning-tools-speed-run-ethereum-description": "「加速執行以太坊」是一系列使用 Scaffold-ETH 來測試 Solidity 知識的挑戰。", - "page-learning-tools-speed-run-ethereum-logo-alt": "「加速執行以太坊」標誌", - "page-learning-tools-studio-description": "一個網路整合開發環境讓你跟從教學指示,打造及測試智慧型合約,並為其建立前端。", - "page-learning-tools-vyperfun-description": "學習使用 Vyper 打造你自己的 Pokémon 遊戲。", - "page-learning-tools-vyperfun-logo-alt": "Vyper.fun 標誌", - "page-learning-tools-nftschool-description": "從技術層面探索非同質性代幣的進展。", - "page-learning-tools-nftschool-logo-alt": "非同質性代幣學校標誌", - "page-learning-tools-platzi-description": "學習如何在 Web3 建立去中心化應用程式並精通所有成為區塊鏈開發者所需的技能。", - "page-learning-tools-platzi-logo-alt": "Platzi 標誌", - "page-learning-tools-alchemy-university-description": "透過課程、專案、和程式碼發展你的 Web3 職涯。", - "page-learning-tools-alchemy-university-logo-alt": "Alchemy 大學標誌", - "page-learning-tools-learnweb3-description": "LearbWeb3 是一個免費、高質量的教育平台,助益從零開始學習 Web3 開發。", - "page-learning-tools-learnweb3-logo-alt": "LearnWeb3 標誌", - "page-learning-tools-cyfrin-updraft-description": "學習適合所有技能水平和安全審核的智慧型合約開發。", - "page-learning-tools-cyfrin-updraft-logo-alt": "Cyfrin Updraft 標誌", - "alt-eth-blocks": "插圖:由積木組成的以太幣符號" -} diff --git a/src/intl/zh-tw/page-developers-local-environment.json b/src/intl/zh-tw/page-developers-local-environment.json deleted file mode 100644 index c6d9ca2c0bf..00000000000 --- a/src/intl/zh-tw/page-developers-local-environment.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "page-local-environment-brownie-desc": "在以太坊虛擬機上,以 Python 為基礎架構的智慧型合約開發、測試架構。", - "page-local-environment-brownie-logo-alt": "Brownie 標誌", - "page-local-environment-kurtosis-desc": "基於容器的工具包,可輕鬆設定與運行多用戶端以太坊測試網,快速進行本地端去中心化應用程式開發、原型設計及測試。", - "page-local-environment-kurtosis-logo-alt": "Kurtosis 標誌", - "page-local-environment-epirus-desc": "於 Java 虛擬機開發、部署及監測區塊鏈應用程式的平台。", - "page-local-environment-epirus-logo-alt": "Epirus 標誌", - "page-local-environment-eth-app-desc": "使用單一命令建立以太坊為基礎的應用程式,附帶多種使用者介面架構及去中心化金融模板任你選擇。", - "page-local-environment-eth-app-logo-alt": "Create Eth App 標誌", - "page-local-environment-foundry-desc": "一個用 Rust 編寫的用於以太坊應用程序開發的快速、可移植和模組化的工具包。", - "page-local-environment-foundry-logo-alt": "Foundry 標誌", - "page-local-environment-framework-feature-1": "運行本機區塊鏈實例功能。", - "page-local-environment-framework-feature-2": "編譯和測試智慧型合約工具。", - "page-local-environment-framework-feature-3": "用戶端開發附加組件可以在相同計畫/存放庫建立你的使用者導向應用程式。", - "page-local-environment-framework-feature-4": "連結到以太坊網路並部署合約的配置,不管是本機運行實例,或是在其中一個以太坊的公共網路。", - "page-local-environment-framework-feature-5": "去中心化應用程式分布 -- 整合如星際檔案系統等儲存選項。", - "page-local-environment-framework-features": "這些架構具備多種立即可用的功能,例如:", - "page-local-environment-frameworks-desc": "我們推薦先選擇架構,特別如果你是初學者。建造完整去中心化應用程式需要多種技術。架構包括許多必備功能,或提供簡易外掛程式系統以選擇你想要的工具。", - "page-local-environment-frameworks-title": "架構及預先完成的堆疊", - "page-local-environment-hardhat-desc": "Hardhat 是專業人士使用的以太坊開發環境。", - "page-local-environment-hardhat-logo-alt": "Hardhat 標誌", - "page-local-environment-openZeppelin-desc": "透過編輯、升級、部署及與智慧型合約互動,使用我們的命令列介面來節省許多開發時間。", - "page-local-environment-openZeppelin-logo-alt": "OpenZeppelin 標誌", - "page-local-environment-scaffold-eth-desc": "Ethers + Hardhat + React:開始建立智慧型合約驅動的去中心化應用程式所需的一切。", - "page-local-environment-scaffold-eth-logo-alt": "scaffold-eth 標誌", - "page-local-environment-setup-meta-desc": "以太坊開發軟體堆疊選擇指南。", - "page-local-environment-setup-meta-title": "以太坊本機開發設定", - "page-local-environment-setup-subtitle": "如果你想開始著手打造,請先選擇你的堆疊。", - "page-local-environment-setup-subtitle-2": "你可以使用這些工具及架構幫助開發以太坊應用程式。", - "page-local-environment-setup-title": "設定你的本機開發環境", - "page-local-environment-solidity-template-desc": "預先設置的 Solidity 智慧型合約 GitHub 模板。包括 Hardhat 本機網路、Waffle 測試、Ethers 錢包實作以及更多。", - "page-local-environment-solidity-template-logo-alt": "Solidity 模板標誌" -} \ No newline at end of file diff --git a/src/intl/zh/page-developers-learning-tools.json b/src/intl/zh/page-developers-learning-tools.json deleted file mode 100644 index e7896e27436..00000000000 --- a/src/intl/zh/page-developers-learning-tools.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "page-learning-tools-bloomtech-description": "BloomTech Web3 课程将向你传授符合雇佣要求的工程师技能。", - "page-learning-tools-bloomtech-logo-alt": "BloomTech 标识", - "page-learning-tools-bootcamps": "开发者训练营", - "page-learning-tools-bootcamps-desc": "免费或付费在线课程,助您快速上手。", - "page-learning-tools-browse-docs": "浏览文档", - "page-learning-tools-capture-the-ether-description": "Capture the Ether 是一款在破解智能合约的过程中学习其安全性的游戏。", - "page-learning-tools-capture-the-ether-logo-alt": "Capture the Ether 徽标", - "page-learning-tools-node-guardians-description": "Node Guardians 是一个游戏化教育平台,以沉浸式的奇幻主题探索助力 Web3 开发者掌握 Solidity、Cairo、Noir 和 Huff 编程。", - "page-learning-tools-node-guardians-logo-alt": "Node Guardians 徽标", - "page-learning-tools-coding": "通过编码来学习", - "page-learning-tools-coding-subtitle": "如果你更喜欢在互动中学习,这些工具会帮你实践理解以太坊。", - "page-learning-tools-consensys-academy-description": "线上以太坊开发者训练营。", - "page-learning-tools-consensys-academy-logo-alt": "ConsenSys Academy徽标", - "page-learning-tools-cryptozombies-description": "学习Solidity,开发你自己的僵尸游戏。", - "page-learning-tools-cryptozombies-logo-alt": "CryptoZombies徽标", - "page-learning-tools-dapp-world-description": "一个提升区块链技能的生态系统,包含了课程、测验、实践操作和每周竞赛。", - "page-learning-tools-dapp-world-logo-alt": "Dapp World 徽标", - "page-learning-tools-documentation": "通过文档学习", - "page-learning-tools-documentation-desc": "想了解更多?请查阅我们的文档,找到你需要的解释。", - "page-learning-tools-eth-dot-build-description": "一个web3的教育沙箱,包括拖放编程和开源构建块。", - "page-learning-tools-eth-dot-build-logo-alt": "Eth.build徽标", - "page-learning-tools-ethernauts-description": "通过破解智能合约来闯关。", - "page-learning-tools-ethernauts-logo-alt": "Ethernauts徽标", - "page-learning-tools-metaschool-description": "通过构建和发布去中心化应用程序成为 Web3 开发者。", - "page-learning-tools-metaschool-logo-alt": "_metschool 标志", - "page-learning-tools-game-tutorials": "游戏式的互动教程", - "page-learning-tools-game-tutorials-desc": "边玩边学。这些教程会让你通过玩游戏来了解基本知识。", - "page-learning-tools-meta-desc": "基于网络的编码工具和交互式学习体验,帮助你体验以太坊的开发。", - "page-learning-tools-meta-title": "开发者学习工具", - "page-learning-tools-atlas-logo-alt": "Atlas 徽标", - "page-learning-tools-atlas-description": "使用 Atlas IDE 在几分钟内编写、测试并部署智能合约。", - "page-learning-tools-questbook-description": "构建以下内容,通过自定义进度的教程来学习 Web 3.0", - "page-learning-tools-questbook-logo-alt": "Questbook 徽标", - "page-learning-tools-remix-description": "开发、部署和管理以太坊智能合约。安装 LearnEth 插件,参考其中的教程。", - "page-learning-tools-remix-description-2": "Remix、Replit、ChainIDE 和 Atlas 不仅仅是沙盒环境 — 开发者还能够使用这些工具来编写、编译和部署智能合约。", - "page-learning-tools-replit-description": "一个可定制的以太坊开发环境,具有热重载、错误检查和一流的测试网支持。", - "page-learning-tools-chainIDE-description": "借助 ChainIDE 为以太坊编写智能合约,开始你的 Web3 之旅。使用内置模板学习并节省时间。", - "page-learning-tools-chainIDE-logo-alt": "ChainIDE 徽标", - "page-learning-tools-tenderly-description": "Tenderly Sandbox 是一个原型构建环境,让你可以使用 Solidity 和 JavaScript 在浏览器中编写、执行并调试智能合约。", - "page-learning-tools-tenderly-logo-alt": "Tenderly 标志", - "page-learning-tools-replit-logo-alt": "Replit 徽标", - "page-learning-tools-remix-logo-alt": "Remix徽标", - "page-learning-tools-sandbox": "代码沙箱", - "page-learning-tools-sandbox-desc": "代码沙箱提供你一个尝试写智能合约和理解以太坊的空间。", - "page-learning-tools-speed-run-ethereum-description": "Speed Run Ethereum 提供一系列挑战,通过使用 Scaffold-ETH 测试你的 Solidity 知识", - "page-learning-tools-speed-run-ethereum-logo-alt": "Speed Run 以太坊徽标", - "page-learning-tools-studio-description": "一个基于网络的集成开发环境,你可以在这里关注教程来创建和测试智能合约,并为它们建立一个前端。", - "page-learning-tools-vyperfun-description": "通过学习 Vyper 来构建你自己的 Pokémon 游戏。", - "page-learning-tools-vyperfun-logo-alt": "Vyper.fun徽标", - "page-learning-tools-nftschool-description": "从技术层面探索非同质化代币(NFT)的进展。", - "page-learning-tools-nftschool-logo-alt": "NFT school 徽标", - "page-learning-tools-platzi-description": "了解如何在 Web3 上构建去中心化应用程序,掌握成为区块链开发者所需的所有技能。", - "page-learning-tools-platzi-logo-alt": "Platzi 徽标", - "page-learning-tools-alchemy-university-description": "学习课程、项目和代码,发展你的 Web3 职业生涯。", - "page-learning-tools-alchemy-university-logo-alt": "Alchemy University 徽标", - "page-learning-tools-learnweb3-description": "LearnWeb3 是一个免费优质教育平台,帮助你在 Web3 开发领域从零起步走向精通。", - "page-learning-tools-learnweb3-logo-alt": "LearnWeb3 徽标", - "page-learning-tools-cyfrin-updraft-description": "学习所有技能水平的智能合约开发和安全审计。", - "page-learning-tools-cyfrin-updraft-logo-alt": "Cyfrin Updraft 徽标", - "page-learning-tools-price-free": "免费", - "page-learning-tools-price-paid": "付费", - "alt-eth-blocks": "积木被搭建成以太坊符号的图示" -} diff --git a/src/intl/zh/page-developers-local-environment.json b/src/intl/zh/page-developers-local-environment.json deleted file mode 100644 index f8fdc0b5edd..00000000000 --- a/src/intl/zh/page-developers-local-environment.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "page-local-environment-brownie-desc": "基于Python的智能合约开发和测试框架,针对以太坊虚拟机为目标。", - "page-local-environment-brownie-logo-alt": "Brownie徽标", - "page-local-environment-kurtosis-desc": "这是一个基于容器的工具包,用于轻松配置和启动多客户端以太坊测试网,以便快速进行本地去中心化应用程序(dApp)的开发、原型构建和测试。", - "page-local-environment-kurtosis-logo-alt": "Kurtosis 标志", - "page-local-environment-epirus-desc": "用于在 Java 虚拟机上开发、部署和监测区块链应用的平台。", - "page-local-environment-epirus-logo-alt": "Epirus徽标", - "page-local-environment-eth-app-desc": "使用一个命令创建由以太坊提供支持的应用。使用广泛的UI框架和DeFi模板来选择。", - "page-local-environment-eth-app-logo-alt": "创建以太币应用徽标", - "page-local-environment-foundry-desc": "一个用 Rust 编写的用于以太坊应用开发的工具包,具有速度快、可移植和模块化的特点。", - "page-local-environment-foundry-logo-alt": "Foundry 徽标", - "page-local-environment-framework-feature-1": "编写一个本地区块链程序的功能。", - "page-local-environment-framework-feature-2": "编译和测试智能合约的工具。", - "page-local-environment-framework-feature-3": "客户端开发附加组件,以在同一项目/仓库中构建你的面向用户的应用。", - "page-local-environment-framework-feature-4": "无论是在本地运行的实例,还是在以太坊的公共网络之一,可以连接到以太网并且部署合约的配置。", - "page-local-environment-framework-feature-5": "去中心化的应用分发 - 与诸如 IPFS 之类的存储选项集成。", - "page-local-environment-framework-features": "这些框架带有许多开箱即用功能,比如:", - "page-local-environment-frameworks-desc": "我们建议选择一个框架,特别是如果你刚刚开始使用。建立一个完整的去中心化应用程序需要不同的技术。框架包括许多所需的功能或提供简单的插件系统来选择你想要的工具。", - "page-local-environment-frameworks-title": "框架和预先制作的堆栈", - "page-local-environment-hardhat-desc": "“安全帽”是针对专业人员的以太坊开发环境。", - "page-local-environment-hardhat-logo-alt": "安全帽徽标", - "page-local-environment-openZeppelin-desc": "通过编译、升级、部署和与我们的CLI智能合同互动来节省开发时间。", - "page-local-environment-openZeppelin-logo-alt": "OpenZeppelin 徽标", - "page-local-environment-scaffold-eth-desc": "ETH + Hardhat + React:这些是开始构建由智能合约驱动的去中心化应用程序所需的一切。", - "page-local-environment-scaffold-eth-logo-alt": "scaffold-eth徽标", - "page-local-environment-setup-meta-desc": "关于如何选择你的软件堆栈用于以太坊开发的指南。", - "page-local-environment-setup-meta-title": "以太坊本地开发设置", - "page-local-environment-setup-subtitle": "如果你准备好开始建造,就选择你的堆栈。", - "page-local-environment-setup-subtitle-2": "这里是你可以用来帮助你构建你的以太坊应用的工具和框架。", - "page-local-environment-setup-title": "设置你的本地开发环境", - "page-local-environment-solidity-template-desc": "一个 GitHub 模板,用于为 Solidity 智能合约预构建设置。包括一个 Hardhat 本地网络,用于钱包实现的以太币等等。", - "page-local-environment-solidity-template-logo-alt": "Solidity template徽标" -} diff --git a/src/lib/interfaces.ts b/src/lib/interfaces.ts index a908816c7cb..9a86796368c 100644 --- a/src/lib/interfaces.ts +++ b/src/lib/interfaces.ts @@ -109,20 +109,6 @@ export interface MdPageContent { contributors: FileContributor[] } -// Local environment framework -export interface Framework { - id: string - url: string - githubUrl: string - background: string - name: string - description: string - alt: string - image: StaticImageData - starCount?: number - languages?: string[] -} - /** * Community events */