diff --git a/app/[locale]/roadmap/_components/ReleaseCarousel.tsx b/app/[locale]/roadmap/_components/ReleaseCarousel.tsx index c092d5eebe0..874543edfba 100644 --- a/app/[locale]/roadmap/_components/ReleaseCarousel.tsx +++ b/app/[locale]/roadmap/_components/ReleaseCarousel.tsx @@ -1,6 +1,9 @@ "use client" -import { useEffect, useState } from "react" +// TODO: Extract intl strings +// TODO: Fix RTL compatibility; currenly forced to LTR flow +import { useCallback, useEffect, useMemo, useState } from "react" +import { useLocale } from "next-intl" import { Image } from "@/components/Image" import { ButtonLink } from "@/components/ui/buttons/Button" @@ -16,45 +19,39 @@ import { import { cn } from "@/lib/utils/cn" import { formatDate } from "@/lib/utils/date" -import { releasesData } from "@/data/roadmap/releases" +import { Release, releasesData } from "@/data/roadmap/releases" -const findLatestReleaseIndex = () => { - const today = new Date() - const twoMonthsFromNow = new Date() - twoMonthsFromNow.setMonth(today.getMonth() + 2) +const ReleaseCarousel = () => { + const locale = useLocale() - // First try to find a release within the next 2 months - const upcomingReleaseIndex = releasesData.findIndex((release) => { - const releaseDate = new Date(release.releaseDate) - return releaseDate > today && releaseDate <= twoMonthsFromNow - }) + const [api1, setApi1] = useState() + const [api2, setApi2] = useState() - // If no upcoming release found, find the most recent release up to today - if (upcomingReleaseIndex === -1) { - const pastReleases = releasesData.filter( - (release) => new Date(release.releaseDate) <= today - ) - if (pastReleases.length > 0) { - const mostRecentRelease = pastReleases[pastReleases.length - 1] - return releasesData.findIndex( - (release) => release.releaseDate === mostRecentRelease.releaseDate - ) - } - } + const startIndex = useMemo(() => { + const now = new Date() - return upcomingReleaseIndex -} + // Production: has a releaseDate in the past + const productionReleases = releasesData.filter((release) => { + if (!("releaseDate" in release) || !release.releaseDate) return false + const releaseDate = new Date(release.releaseDate) + return releaseDate <= now + }) -const ReleaseCarousel = () => { - const todayDate = new Date() - const twoMonthsFromNow = new Date() - twoMonthsFromNow.setMonth(todayDate.getMonth() + 2) + // Upcoming: has a releaseDate, but is in the future + const upcomingReleases = releasesData.filter((release) => { + if (!("releaseDate" in release) || !release.releaseDate) return false + const releaseDate = new Date(release.releaseDate) + return releaseDate > now + }) - const [api1, setApi1] = useState() - const [api2, setApi2] = useState() - const [currentIndex, setCurrentIndex] = useState(() => - findLatestReleaseIndex() - ) + // If upcoming releases exist, start index after production releases + if (upcomingReleases.length > 0) return productionReleases.length + + // If no upcoming releases, start at the last production release + return productionReleases.length - 1 + }, []) + + const [currentIndex, setCurrentIndex] = useState(startIndex) useEffect(() => { if (!api1 || !api2) { @@ -72,8 +69,29 @@ const ReleaseCarousel = () => { }) }, [api1, api2]) + const getStatus = useCallback((release: Release) => { + if (!("releaseDate" in release) || !release.releaseDate) return "dev" + if (new Date(release.releaseDate) <= new Date()) return "prod" + return "soon" + }, []) + + const getDisplayDate = (release: Release): string => { + if (!("releaseDate" in release || "plannedReleaseYear" in release)) + return "" + + if ("plannedReleaseYear" in release && release.plannedReleaseYear) + return new Intl.DateTimeFormat(locale, { + year: "numeric", + }).format(new Date(Number(release.plannedReleaseYear), 0, 1)) + + if ("releaseDate" in release && release.releaseDate) + return formatDate(release.releaseDate) + + return "" + } + return ( -
+
@@ -84,22 +102,15 @@ const ReleaseCarousel = () => { opts={{ align: "center", containScroll: false, + direction: "ltr", loop: false, - startIndex: findLatestReleaseIndex(), + startIndex, }} > {releasesData.map((release, index) => { - const releaseDate = new Date(release.releaseDate) - const nextRelease = - releaseDate > todayDate && releaseDate <= twoMonthsFromNow - const labelType = - releaseDate < todayDate - ? 1 - : releaseDate < twoMonthsFromNow - ? 2 - : 3 - + const status = getStatus(release) + const displayDate = getDisplayDate(release) return ( { >
- {labelType === 1 && ( + {status === "prod" && (
{

In production

)} - {labelType === 2 && ( + {status === "soon" && (
{

)} - {labelType === 3 && ( + {status === "dev" && (
{
)}
+ {/* Line-circle-line decoration —•— */}
{
@@ -181,7 +193,7 @@ const ReleaseCarousel = () => { {release.releaseName}

- {formatDate(release.releaseDate)} + {displayDate}

@@ -202,8 +214,9 @@ const ReleaseCarousel = () => { opts={{ align: "center", containScroll: false, + direction: "ltr", loop: false, - startIndex: findLatestReleaseIndex(), + startIndex, }} > @@ -225,9 +238,7 @@ const ReleaseCarousel = () => {

{release.releaseName}

-

- {formatDate(release.releaseDate)} -

+

{getDisplayDate(release)}

diff --git a/public/content/community/grants/index.md b/public/content/community/grants/index.md index f0eacff034e..e1fa7bb9f4a 100644 --- a/public/content/community/grants/index.md +++ b/public/content/community/grants/index.md @@ -15,32 +15,61 @@ This list is curated by our community. If there's something missing or incorrect These programs support the broad Ethereum ecosystem by offering grants to a wide scope of projects. These include solutions for scalability, community building, security, privacy, and more. These grants are not specific to any one Ethereum platform and are a good place to start if you're unsure. - [EF Ecosystem Support Program](https://esp.ethereum.foundation) - _Funding open source projects that benefit Ethereum, with a particular focus on universal tools, infrastructure, research and public goods_ -- [Moloch DAO](https://www.molochdao.com/) - _Privacy, layer 2 scaling, client security, and more_ -- [DAO Grants](https://docs.google.com/spreadsheets/d/1XHc-p_MHNRdjacc8uOEjtPoWL86olP4GyxAJOFO0zxY/edit#gid=0) - _Google spreadsheet of organizations offering grants_ - [Academic Grants](https://esp.ethereum.foundation/academic-grants) - _Grants to support Ethereum-related academic work_ + +## Grant list aggregators and platforms {#grant-list-aggregators} + +These resources compile and organize various grant opportunities across the Ethereum ecosystem, making it easier to discover funding opportunities that match your project's needs. We've organized them by persona to help you get you started finding the most relevant resources based on your specific funding needs. + +### For all grant seekers: Comprehensive directories {#comprehensive-directories} + +These general platforms offer broad coverage of grants across the entire Web3 space and are useful starting points for anyone looking for funding: + - [Blockworks Grantfarm](https://blockworks.co/grants/programs) - _Blockworks has compiled a comprehensive directory of all grants, RFPs, and bug bounties._ +- [Find Blockchain Grants](https://findblockchaingrants.com/) - _Searchable database of blockchain grants_ +- [Grantr](https://grantr.app/) - _Platform for discovering and applying to Web3 grants_ +- [Blockchain Grants](https://www.blockchaingrants.org/) - _Directory of blockchain and crypto grants_ + +### For developers and builders {#for-developers-and-builders} + +- [Web3 Grants](https://www.notion.so/Web3-Grants-dae38f9b5f524d36a15aaee1b6fa3089) - _Notion database of Web3 grant opportunities_ +- [Grant Programs Viewer](https://airtable.com/shr86elKgWTSCP4AY) - _Public Airtable database of grant programs_ +- [Web3 Grants Spreadsheet](https://docs.google.com/spreadsheets/d/1c8koZCI-GLnD8MG-eFcXPOBCNu1v8-aXIfwAAvc7AMc/edit#gid=0) - _Google spreadsheet of Web3 grant opportunities_ + +### For DeFi projects and financial applications {#for-defi-projects} + +- [LlamaoGrants](https://wiki.defillama.com/wiki/LlamaoGrants) - _DeFi Llama's grant program directory_ +- [AlphaGrowth Grants](https://alphagrowth.io/crypto-web3-grants-list) - _Comprehensive list of crypto and Web3 grants_ + +### For DAO contributors and governance innovators {#for-dao-contributors} + +Resources for community-driven projects and governance experiments: + +- [DAO Grants](https://docs.google.com/spreadsheets/d/1XHc-p_MHNRdjacc8uOEjtPoWL86olP4GyxAJOFO0zxY/edit#gid=0) - _Google spreadsheet of organizations offering grants_ +- [MetaGov Database](https://docs.google.com/spreadsheets/d/1e5g-dlWWsK2DZoZGBgfxyfGNSddLk-V7sLEgfPjEhbA/edit#gid=780420708) - _Comprehensive Web3 grants map_ + +### For entrepreneurs and startups {#for-entrepreneurs-and-startups} + +Resources for those building products and seeking investment beyond just grants: -## Project specific {#project-specific} +- [Web3Native](https://www.web3native.co/) - _Directory of Web3 grants, investors, and accelerator programs_ +- [Cryptoneur Web3 Grants](https://www.cryptoneur.xyz/web3-grants) - _Platform for finding Web3 project funding_ +- [Pentacle Grants](https://pentacle.xyz/grants) - _Grant opportunities in the Web3 space_ -These projects have created their own grants for projects aimed at developing and experimenting with their own technology. +### Public goods and impact {#public-goods-and-impact} -- [Aave Grants Program](https://aavegrants.org/) – _[Aave](https://aave.com/) grants DAO_ -- [Balancer](https://grants.balancer.community/) – _[Balancer](https://balancer.fi/) ecosystem fund_ -- [Chainlink Grants Program](https://chain.link/community/grants) - _[Chainlink](https://chain.link/) community grants_ -- [Decentraland Grants Program](https://governance.decentraland.org/grants/) – _[Decentraland](https://decentraland.org/) DAO Metaverse_ -- [Lido Ecosystem Grants Organisation (LEGO)](https://lido.fi/lego) – _[Lido](https://lido.fi/) finance ecosystem_ -- [MetaMask Program](https://metamaskgrants.org/) - _[MetaMask](https://metamask.io/) employee-led grants DAO_ -- [SKALE Network Grants Program](https://skale.space/developers#grants) - _[SKALE Network](https://skale.space/) ecosystem_ -- [Swarm Foundation Grants Program](https://my.ethswarm.org/grants) - _[Swarm Foundation](https://www.ethswarm.org/) ecosystem_ -- [The Graph](https://thegraph.com/ecosystem/grants/) – _[The Graph](https://thegraph.com/) ecosystem_ -- [Uniswap Grants Program](https://www.uniswapfoundation.org/approach) – _[Uniswap](https://uniswap.org/) community_ +These programs focus on funding projects that benefit the broader community, public goods, and impact initiatives. These include grant providers, as well as donation platforms utilizing onchain funding allocation mechanisms including [quadratic funding](/defi/#quadratic-funding): -## Quadratic funding {#quadratic-funding} +- [Gitcoin](https://www.gitcoin.co/program) - _Gitcoin Grants utilizes multiple capital allocation mechanisms to fund open source projects and public goods in the Ethereum ecosystem_ +- [Octant](https://octant.app/home) - _Public goods funding ecosystem that balances the common good and individual financial empowerment_ +- [Giveth](https://giveth.io/) - _Crypto donation platform enabling direct donations from for-good projects with zero added fees_ +- [Artizen](https://artizen.fund/) - _Helping creators match fund new projects at the frontier of art, science, technology and culture_ +- [Quadratic Accelerator](https://qacc.giveth.io/) - _Start-up accelerator program that uses quadratic funding to support projects that benefit the public good_ -The open source roots of Ethereum have led to the growth of an interesting new fundraising model: quadratic funding. This has the potential to improve the way we fund all types of public goods in the future. Quadratic funding makes sure that the projects that receive the most funding are those with the most unique demand. In other words, projects that stand to improve the lives of the most people. [More on quadratic funding.](/defi/#quadratic-funding) +### Additional resources {#additional-resources} -- [Gitcoin](https://gitcoin.co/grants) -- [clr.fund](https://clr.fund/) +- [Web3 Summits Grants](https://www.web3summits.io/grants) - _Grant opportunities from Web3 Summits_ +- [Anke's Directory](https://docs.google.com/spreadsheets/d/1IdCCG-U7cGsih_nCNt7Yo4wXstZdCip1UKWbCK0qCZk/edit#gid=938115517) - _Web3 grant program directory_ ## Work in Ethereum {#work-in-ethereum} diff --git a/src/components/Homepage/useHome.ts b/src/components/Homepage/useHome.ts index a70d36f7bc4..8786d1bbc83 100644 --- a/src/components/Homepage/useHome.ts +++ b/src/components/Homepage/useHome.ts @@ -7,10 +7,10 @@ import type { CodeExample } from "@/lib/interfaces" import { useBentoBox } from "@/components/Homepage/useBentoBox" import BlockHeap from "@/components/icons/block-heap.svg" +import BuildAppsIcon from "@/components/icons/build-apps.svg" import EthGlyphIcon from "@/components/icons/eth-glyph.svg" import EthTokenIcon from "@/components/icons/eth-token.svg" import PickWalletIcon from "@/components/icons/eth-wallet.svg" -import ChooseNetworkIcon from "@/components/icons/network-layers.svg" import TryAppsIcon from "@/components/icons/phone-homescreen.svg" import RoadmapSign from "@/components/icons/roadmap-sign.svg" import Whitepaper from "@/components/icons/whitepaper.svg" @@ -103,14 +103,6 @@ export const useHome = () => { className: "text-accent-a hover:text-accent-a-hover", eventName: "get eth", }, - { - label: t("page-index:page-index-cta-networks-label"), - description: t("page-index:page-index-cta-networks-description"), - href: "/layer-2/", // TODO: Update with new networks page when ready - Svg: ChooseNetworkIcon, - className: "text-accent-b hover:text-accent-b-hover", - eventName: "L2", - }, { label: t("page-index:page-index-cta-dapps-label"), description: t("page-index:page-index-cta-dapps-description"), @@ -122,6 +114,14 @@ export const useHome = () => { ), eventName: "dapps", }, + { + label: t("page-index:page-index-cta-build-apps-label"), + description: t("page-index:page-index-cta-build-apps-description"), + href: "/developers/", + Svg: BuildAppsIcon, + className: "text-accent-b hover:text-accent-b-hover", + eventName: "build apps", + }, ] const popularTopics = [ diff --git a/src/components/icons/build-apps.svg b/src/components/icons/build-apps.svg new file mode 100644 index 00000000000..e81a4467227 --- /dev/null +++ b/src/components/icons/build-apps.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/src/components/ui/carousel.tsx b/src/components/ui/carousel.tsx index 32b67c80cfb..e305c16900b 100644 --- a/src/components/ui/carousel.tsx +++ b/src/components/ui/carousel.tsx @@ -1,9 +1,11 @@ +// TODO: Fix RTL compatibility + import * as React from "react" import useEmblaCarousel, { type UseEmblaCarouselType, } from "embla-carousel-react" +import { MdChevronLeft, MdChevronRight } from "react-icons/md" -import { ChevronNext, ChevronPrev } from "@/components/Chevron" import { Button } from "@/components/ui/buttons/Button" import { cn } from "@/lib/utils/cn" @@ -207,15 +209,15 @@ const CarouselPrevious = React.forwardRef< className={cn( "absolute h-8 w-8 rounded-full", orientation === "horizontal" - ? "left-5 top-1/2 -translate-y-1/2" - : "-top-12 left-1/2 -translate-x-1/2 rotate-90", + ? "start-5 top-1/2 -translate-y-1/2" + : "-top-12 start-1/2 -translate-x-1/2 rotate-90", className )} disabled={!canScrollPrev} onClick={scrollPrev} {...props} > - + Previous slide ) @@ -236,15 +238,15 @@ const CarouselNext = React.forwardRef< className={cn( "absolute h-8 w-8 rounded-full", orientation === "horizontal" - ? "right-5 top-1/2 -translate-y-1/2" - : "-bottom-12 left-1/2 -translate-x-1/2 rotate-90", + ? "end-5 top-1/2 -translate-y-1/2" + : "-bottom-12 start-1/2 -translate-x-1/2 rotate-90", className )} disabled={!canScrollNext} onClick={scrollNext} {...props} > - + Next slide ) diff --git a/src/data/roadmap/releases.tsx b/src/data/roadmap/releases.tsx index ca06fd300d1..70d57f6ffc5 100644 --- a/src/data/roadmap/releases.tsx +++ b/src/data/roadmap/releases.tsx @@ -6,14 +6,36 @@ import Layer2HubHeroImage from "@/public/images/heroes/layer-2-hub-hero.jpg" import QuizzesHubHeroImage from "@/public/images/heroes/quizzes-hub-hero.png" import FusakaImage from "@/public/images/roadmap/roadmap-fusaka.png" import PectraImage from "@/public/images/roadmap/roadmap-pectra.png" -interface Release { + +type DateString = + `2${number}${number}${number}-${number}${number}-${number}${number}` +type YearString = `2${number}${number}${number}` + +interface BaseRelease { image: StaticImageData releaseName: string - releaseDate: string content: React.ReactNode href: string } +interface ReleaseWithDate extends BaseRelease { + releaseDate: DateString + plannedReleaseYear?: never +} + +interface ReleaseWithYear extends BaseRelease { + releaseDate?: never + plannedReleaseYear: YearString +} + +interface ReleaseUnscheduled extends BaseRelease { + releaseDate?: never + plannedReleaseYear?: never +} + +// Release may have either a releaseDate or a plannedReleaseYear, but not both. +export type Release = ReleaseWithDate | ReleaseWithYear | ReleaseUnscheduled + export const releasesData: Release[] = [ { image: DevelopersHubHeroImage, @@ -144,7 +166,7 @@ export const releasesData: Release[] = [ { image: FusakaImage, releaseName: "Fusaka", - releaseDate: "2025", + plannedReleaseYear: "2025", content: (

@@ -172,7 +194,7 @@ export const releasesData: Release[] = [ { image: GuidesHubHeroImage, releaseName: "Glamsterdam", - releaseDate: "2026", + plannedReleaseYear: "2026", content: (

Discussed for Glamsterdam

diff --git a/src/intl/am/page-index.json b/src/intl/am/page-index.json index 2adaf073310..6b8f8565e96 100644 --- a/src/intl/am/page-index.json +++ b/src/intl/am/page-index.json @@ -36,11 +36,11 @@ "page-index-cta-dapps-label": "መተግበሪያዎችን ይሞክሩ", "page-index-cta-get-eth-description": "የ Ethereum መገበያያ", "page-index-cta-get-eth-label": "ETHን ያግኙ", - "page-index-cta-networks-description": "በአነስተኛ ክፍያዎች ይደሰቱ", - "page-index-cta-networks-label": "አውታረ መረብ ይምረጡ", "page-index-cta-wallet-description": "መለያ ይፍጠሩ እና ንብረቶችን ያስተዳድሩ", "page-index-cta-wallet-label": "ቦርሳ ይምረጡ", "page-index-description": "ለአዳዲስ መተግበሪያዎች እና የ blockchain አውታረ መረቦች መሪ መድረክ", + "page-index-cta-build-apps-description": "የመጀመሪያውን መተግበሪያዎት ይፍጠሩ", + "page-index-cta-build-apps-label": "ልማትን ይጀምሩ", "page-index-developers-code-example-description-0": "እርስዎ ፕሮግራም ባደረጉት ሎጂክ የሚሠራ ባንክ ይገንቡ", "page-index-developers-code-example-description-1": "ከመተግበሪያ ወደ መተግበሪያ ሊያስተላልፏቸው እና ጥቅም ላይ ሊያውሏቸው የምችሉትን ቶከኖች ይፍጠሩ።", "page-index-developers-code-example-description-2": "ከ Ethereum እና ከሌሎች መተግበሪያዎች ጋር ለመስተጋበር ነባር ቋንቋዎችን ይጠቀሙ።", diff --git a/src/intl/ar/page-index.json b/src/intl/ar/page-index.json index 842c3a91f8a..166534f9208 100644 --- a/src/intl/ar/page-index.json +++ b/src/intl/ar/page-index.json @@ -36,11 +36,11 @@ "page-index-cta-dapps-label": "جرب التطبيقات", "page-index-cta-get-eth-description": "عملة تطبيقات إيثريوم", "page-index-cta-get-eth-label": "احصل على عملات إثير", - "page-index-cta-networks-description": "استمتع مقابل رسوم بسيطة", - "page-index-cta-networks-label": "اختر شبكة", "page-index-cta-wallet-description": "إنشاء الحسابات وإدارة الأصول", "page-index-cta-wallet-label": "اختر محفظة", "page-index-description": "المنصة الرائدة للتطبيقات المبتكرة وشبكات البلوكتشين", + "page-index-cta-build-apps-description": "أنشئ أول تطبيق لك", + "page-index-cta-build-apps-label": "ابدأ التطوير", "page-index-developers-code-example-description-0": "بإمكانك بناء مصرف يدعمه المنطق الذي تقوم ببرمجته بنفسك", "page-index-developers-code-example-description-1": "يمكنك إنشاء رموز بحيث يمكنك نقلها واستخدامها عبر التطبيقات", "page-index-developers-code-example-description-2": "بإمكانك استخدام اللغات الموجودة للتفاعل مع إيثريوم والتطبيقات الأخرى", diff --git a/src/intl/az/page-index.json b/src/intl/az/page-index.json index 2760ddd4938..e36c2e93b00 100644 --- a/src/intl/az/page-index.json +++ b/src/intl/az/page-index.json @@ -36,11 +36,11 @@ "page-index-cta-dapps-label": "Tətbiqləri sınayın", "page-index-cta-get-eth-description": "Ethereum-un valyutası", "page-index-cta-get-eth-label": "ETH əldə et", - "page-index-cta-networks-description": "Ödənilən haqların minimal olmasından yararlanın", - "page-index-cta-networks-label": "Şəbəkə seçin", "page-index-cta-wallet-description": "Hesablar yaradın və aktivləri idarə edin", "page-index-cta-wallet-label": "Pul kisəsi seç", "page-index-description": "Yenilikçi tətbiqlər və blokçeyn şəbəkələri üçün qabaqcıl platforma", + "page-index-cta-build-apps-description": "İlk tətbiqinizi yaradın", + "page-index-cta-build-apps-label": "İnkişaf etməyə başlayın", "page-index-developers-code-example-description-0": "Proqramlaşdırdığınız məntiqlə işləyən bir bank qurun", "page-index-developers-code-example-description-1": "Tətbiqlər arasında köçürə və istifadə edə biləcəyiniz tokenlər yaradın", "page-index-developers-code-example-description-2": "Ethereum və digər tətbiqlərlə qarşılıqlı əlaqə yaratmaq üçün mövcud dillərdən istifadə edin", diff --git a/src/intl/be/page-index.json b/src/intl/be/page-index.json index f21c4bd168e..e5867d7ba6d 100644 --- a/src/intl/be/page-index.json +++ b/src/intl/be/page-index.json @@ -36,11 +36,11 @@ "page-index-cta-dapps-label": "Паспрабуйце выкарыстаць дадаткі", "page-index-cta-get-eth-description": "Валюта Ethereum", "page-index-cta-get-eth-label": "Атрымайце ETH", - "page-index-cta-networks-description": "Мінімальныя камісіі", - "page-index-cta-networks-label": "Выбар сеткі", "page-index-cta-wallet-description": "Стварэнне акаўнтаў і кіраванне актывамі", "page-index-cta-wallet-label": "Выберыце гаманец", "page-index-description": "Вядучая платформа для інавацыйных дадаткаў і блокчэйн-сетак", + "page-index-cta-build-apps-description": "Стварыце свой першы дадатак", + "page-index-cta-build-apps-label": "Пачніце распрацоўку", "page-index-developers-code-example-description-0": "Стварыце банк, які кіруецца запраграмаванай вамі логікай", "page-index-developers-code-example-description-1": "Стварайце токены, якія потым можна перадаваць і выкарыстоўваць у разнастайных дадатках", "page-index-developers-code-example-description-2": "Выкарыстоўвайце існуючыя мовы для ўзаемадзеяння з Ethereum і іншымі дадаткамі", diff --git a/src/intl/bg/page-index.json b/src/intl/bg/page-index.json index bc5921f398a..092ee0e7a2d 100644 --- a/src/intl/bg/page-index.json +++ b/src/intl/bg/page-index.json @@ -36,11 +36,11 @@ "page-index-cta-dapps-label": "Опитайте приложенията", "page-index-cta-get-eth-description": "Валутата на Eтереум", "page-index-cta-get-eth-label": "Вземете ETH", - "page-index-cta-networks-description": "Насладете се на минимални такси", - "page-index-cta-networks-label": "Изберете мрежа", "page-index-cta-wallet-description": "Създавайте акаунти и управлявайте активи", "page-index-cta-wallet-label": "Изберете портфейл", "page-index-description": "Водещата платформа за иновативни приложения и блокчейн мрежи", + "page-index-cta-build-apps-description": "Създайте своето първо приложение", + "page-index-cta-build-apps-label": "Започнете разработка", "page-index-developers-code-example-description-0": "Изградете банка, управлявана от програмирана от вас логика", "page-index-developers-code-example-description-1": "Създайте токени, които да прехвърляте и да използвате в различни приложения", "page-index-developers-code-example-description-2": "Използвайте съществуващите езици, за да взаимодействате с Етереум и други приложения", diff --git a/src/intl/bn/page-index.json b/src/intl/bn/page-index.json index 157d6ba1cd6..7b32f716e02 100644 --- a/src/intl/bn/page-index.json +++ b/src/intl/bn/page-index.json @@ -36,11 +36,11 @@ "page-index-cta-dapps-label": "অ্যাপগুলি ব্যাবহার করে দেখুন", "page-index-cta-get-eth-description": "ইথেরিয়ামের কারেন্সি", "page-index-cta-get-eth-label": "ETH নিন", - "page-index-cta-networks-description": "ন্যুনতম ফি উপভোগ করুন", - "page-index-cta-networks-label": "একটি নেটওয়ার্ক বেছে নিন", "page-index-cta-wallet-description": "অ্যাকাউন্ট তৈরি করুন এবং সম্পদ ব্যবস্থাপনা করুন", "page-index-cta-wallet-label": "একটি ওয়ালেট বেছে নিন", "page-index-description": "উদ্ভাবনী অ্যাপ এবং ব্লকচেইন নেটওয়ার্কগুলির জন্য অগ্রগণ্য প্ল্যাটফর্ম", + "page-index-cta-build-apps-description": "আপনার প্রথম অ্যাপ তৈরি করুন", + "page-index-cta-build-apps-label": "উন্নয়ন শুরু করুন", "page-index-developers-code-example-description-0": "আপনার তৈরি করা প্রোগ্রামের যুক্তি অনুযায়ী চালিত একটি ব্যাংক নির্মাণ করুন", "page-index-developers-code-example-description-1": "অ্যাপ্লিকেশনগুলি জুড়ে ট্রান্সফার এবং ব্যবহার করতে পারবেন এমন টোকেনগুলি তৈরি করুন", "page-index-developers-code-example-description-2": "ইথেরিয়াম এবং অন্যান্য অ্যাপ্লিকেশনগুলির সাথে পারস্পরিক যোগাযোগ করতে বিদ্যমান ভাষাগুলি ব্যবহার করুন", diff --git a/src/intl/bs/page-index.json b/src/intl/bs/page-index.json index 95024f781cd..1d16bfa829f 100644 --- a/src/intl/bs/page-index.json +++ b/src/intl/bs/page-index.json @@ -35,11 +35,11 @@ "page-index-cta-dapps-label": "Isprobajte aplikacije", "page-index-cta-get-eth-description": "Valuta Ethereuma", "page-index-cta-get-eth-label": "Nabavite ETH", - "page-index-cta-networks-description": "Uživajte u minimalnim naknadama", - "page-index-cta-networks-label": "Odaberite mrežu", "page-index-cta-wallet-description": "Kreirajte račune i upravljajte sredstvima", "page-index-cta-wallet-label": "Odaberite novčanik", "page-index-description": "Vodeća platforma za inovativne aplikacije i blockchain mreže", + "page-index-cta-build-apps-description": "Kreirajte svoju prvu aplikaciju", + "page-index-cta-build-apps-label": "Započnite razvoj", "page-index-developers-code-example-description-0": "Izgradite banku uz pomoć logike koju ste vi programirali", "page-index-developers-code-example-description-1": "Kreirajte tokene koje možete prenositi i koristiti u različitim aplikacijama", "page-index-developers-code-example-description-2": "Koristite postojeće jezike za interakciju s Ethereumom i drugim aplikacijama", diff --git a/src/intl/ca/page-index.json b/src/intl/ca/page-index.json index 140b18096f6..66c632d1d96 100644 --- a/src/intl/ca/page-index.json +++ b/src/intl/ca/page-index.json @@ -37,11 +37,11 @@ "page-index-cta-dapps-label": "Prova aplicacions", "page-index-cta-get-eth-description": "La moneda d'Ethereum", "page-index-cta-get-eth-label": "Aconsegueix ETH", - "page-index-cta-networks-description": "Gaudeix d'una comissió mínima", - "page-index-cta-networks-label": "Tria una xarxa", "page-index-cta-wallet-description": "Crea comptes i administra actius", "page-index-cta-wallet-label": "Selecciona una cartera", "page-index-description": "La plataforma líder per a aplicacions innovadores i xarxes de cadena de blocs", + "page-index-cta-build-apps-description": "Creï la seva primera aplicació", + "page-index-cta-build-apps-label": "Comenci a crear", "page-index-developers-code-example-description-0": "Crea un banc que funcioni amb la lògica que hagis programat", "page-index-developers-code-example-description-1": "Crea tokens per transferir i utilitzar en diverses aplicacions", "page-index-developers-code-example-description-2": "Utilitza els llenguatges existents per interactuar amb Ethereum i altres aplicacions", diff --git a/src/intl/cs/page-index.json b/src/intl/cs/page-index.json index ed7e8827f12..ae0d379b6f8 100644 --- a/src/intl/cs/page-index.json +++ b/src/intl/cs/page-index.json @@ -37,11 +37,11 @@ "page-index-cta-dapps-label": "Vyzkoušejte aplikace", "page-index-cta-get-eth-description": "Měna Ethereum", "page-index-cta-get-eth-label": "Získat ETH", - "page-index-cta-networks-description": "Minimální poplatky", - "page-index-cta-networks-label": "Zvolte síť", "page-index-cta-wallet-description": "Vytvořte účty a spravujte aktiva", "page-index-cta-wallet-label": "Vyberte si peněženku", "page-index-description": "Přední platforma pro inovativní aplikace a blockchainové sítě", + "page-index-cta-build-apps-description": "Vytvořte svou první aplikaci", + "page-index-cta-build-apps-label": "Začněte vyvíjet", "page-index-developers-code-example-description-0": "Vytvořte banku založenou na vámi naprogramované logice", "page-index-developers-code-example-description-1": "Vytvořte tokeny, které můžete přenášet a používat v různých aplikacích", "page-index-developers-code-example-description-2": "K interakci s Ethereem a ostatními aplikacemi používejte existující jazyky", diff --git a/src/intl/da/page-index.json b/src/intl/da/page-index.json index cbe92cb2638..742e984857c 100644 --- a/src/intl/da/page-index.json +++ b/src/intl/da/page-index.json @@ -36,11 +36,11 @@ "page-index-cta-dapps-label": "Prøv apps", "page-index-cta-get-eth-description": "Ethereum-valutaen", "page-index-cta-get-eth-label": "Få ETH", - "page-index-cta-networks-description": "Nyd godt af minimale gebyrer", - "page-index-cta-networks-label": "Vælg et netværk", "page-index-cta-wallet-description": "Opret konti og styr aktiver", "page-index-cta-wallet-label": "Vælg en wallet", "page-index-description": "Den førende platform for innovative apps og blockchain-netværk", + "page-index-cta-build-apps-description": "Opret Deres første app", + "page-index-cta-build-apps-label": "Start udviklingen", "page-index-developers-code-example-description-0": "Byg en bank drevet af logik, du har programmeret", "page-index-developers-code-example-description-1": "Opret tokens, som du kan overføre og bruge på tværs af applikationer", "page-index-developers-code-example-description-2": "Brug eksisterende sprog til at interagere med Ethereum og andre applikationer", diff --git a/src/intl/de/page-index.json b/src/intl/de/page-index.json index dbc4ed51838..2428939eb87 100644 --- a/src/intl/de/page-index.json +++ b/src/intl/de/page-index.json @@ -37,10 +37,10 @@ "page-index-cta-dapps-label": "Anwendungen ausprobieren", "page-index-cta-get-eth-description": "Die Währung von Ethereum", "page-index-cta-get-eth-label": "ETH erwerben", - "page-index-cta-networks-description": "Profitiere von minimalen Gebühren", - "page-index-cta-networks-label": "Wähle ein Netzwerk", "page-index-cta-wallet-description": "Erstelle Konten und verwalte Vermögenswerte", "page-index-cta-wallet-label": "Wähle eine Wallet", + "page-index-cta-build-apps-description": "Erstellen Sie Ihre erste App", + "page-index-cta-build-apps-label": "Jetzt entwickeln", "page-index-description": "Die führende Plattform für innovative Anwendungen und Blockchain-Netzwerke", "page-index-developers-code-example-description-0": "Schaffe eine Bank, die der Logik folgt, die du programmiert hast", "page-index-developers-code-example-description-1": "Erstelle Token, die du anwendungsübergreifend transferieren und verwenden kannst", diff --git a/src/intl/el/page-index.json b/src/intl/el/page-index.json index 3907aecb72a..39a6419492e 100644 --- a/src/intl/el/page-index.json +++ b/src/intl/el/page-index.json @@ -37,10 +37,10 @@ "page-index-cta-dapps-label": "Δοκιμή Εφαρμογών", "page-index-cta-get-eth-description": "Το νόμισμα του Ethereum", "page-index-cta-get-eth-label": "Αγορά ETH", - "page-index-cta-networks-description": "Επωφεληθείτε από τις ελάχιστες χρεώσεις", - "page-index-cta-networks-label": "Επιλογή Δικτύου", "page-index-cta-wallet-description": "Δημιουργία λογαριασμών & διαχείριση περιουσιακών στοιχείων", "page-index-cta-wallet-label": "Επιλογή Πορτοφολιού", + "page-index-cta-build-apps-description": "Δημιουργήστε την πρώτη σας εφαρμογή", + "page-index-cta-build-apps-label": "Ξεκινήστε την ανάπτυξη", "page-index-description": "Η ηγετική πλατφόρμα για καινοτόμες εφαρμογές και δίκτυα κρυπτοαλυσίδων", "page-index-developers-code-example-description-0": "Δημιουργήστε μια τράπεζα που λειτουργεί με λογική προγραμματισμένη από εσάς", "page-index-developers-code-example-description-1": "Δημιουργήστε κρυπτοπαραστατικά που μπορείτε να μεταφέρετε και να χρησιμοποιείτε μεταξύ των εφαρμογών", diff --git a/src/intl/en/page-index.json b/src/intl/en/page-index.json index b1207c423f4..3888609c1df 100644 --- a/src/intl/en/page-index.json +++ b/src/intl/en/page-index.json @@ -37,10 +37,10 @@ "page-index-cta-dapps-label": "Try apps", "page-index-cta-get-eth-description": "The currency of Ethereum", "page-index-cta-get-eth-label": "Get ETH", - "page-index-cta-networks-description": "Enjoy minimal fees", - "page-index-cta-networks-label": "Choose a network", "page-index-cta-wallet-description": "Create accounts & manage assets", "page-index-cta-wallet-label": "Pick a wallet", + "page-index-cta-build-apps-description": "Create your first app", + "page-index-cta-build-apps-label": "Start building", "page-index-description": "The leading platform for innovative apps and blockchain networks", "page-index-developers-code-example-description-0": "Build a bank powered by logic you've programmed", "page-index-developers-code-example-description-1": "Create tokens that you can transfer and use across applications", diff --git a/src/intl/es/page-index.json b/src/intl/es/page-index.json index 890fc921a6c..3b8a1934923 100644 --- a/src/intl/es/page-index.json +++ b/src/intl/es/page-index.json @@ -37,10 +37,10 @@ "page-index-cta-dapps-label": "Pruebe apps", "page-index-cta-get-eth-description": "La moneda de Ethereum", "page-index-cta-get-eth-label": "Consiga ETH", - "page-index-cta-networks-description": "Aproveche tarifas mínimas", - "page-index-cta-networks-label": "Elija una red", "page-index-cta-wallet-description": "Cree cuentas y administre activos", "page-index-cta-wallet-label": "Seleccione una billetera", + "page-index-cta-build-apps-description": "Cree su primera aplicación", + "page-index-cta-build-apps-label": "Empiece a desarrollar", "page-index-description": "La plataforma líder para aplicaciones innovadoras y redes de cadena de bloques", "page-index-developers-code-example-description-0": "Construya un banco impulsado por la lógica que programe", "page-index-developers-code-example-description-1": "Cree tókenes que pueda transferir y usar en distintas aplicaciones", diff --git a/src/intl/fa/page-index.json b/src/intl/fa/page-index.json index 2e5a5ae6a6a..fc790ff9827 100644 --- a/src/intl/fa/page-index.json +++ b/src/intl/fa/page-index.json @@ -37,10 +37,10 @@ "page-index-cta-dapps-label": "اپلیکیشن‌ها را امتحان کنید", "page-index-cta-get-eth-description": "واحد پول اتریوم", "page-index-cta-get-eth-label": "دریافت ETH", - "page-index-cta-networks-description": "از حداقل هزینه‌ها لذت ببرید", - "page-index-cta-networks-label": "یک شبکه را انتخاب کنید", "page-index-cta-wallet-description": "ایجاد حساب‌ها و مدیریت دارایی‌ها", "page-index-cta-wallet-label": "یک کیف پول را انتخاب کنید", + "page-index-cta-build-apps-description": "اولین اپ خود را بسازید", + "page-index-cta-build-apps-label": "توسعه را آغاز کنید", "page-index-description": "پلتفرم پیشرو برای برنامه‌های نوآورانه و شبکه‌های بلاکچین", "page-index-developers-code-example-description-0": "بانکی را بسازید که توسط منطقی که برنامه‌نویسی کرده‌اید، پشتیبانی می‌شود", "page-index-developers-code-example-description-1": "توکن‌هایی را ایجاد کنید که می‌توانید آن‌ها را انتقال دهید و در برنامه‌های مختلف استفاده کنید", diff --git a/src/intl/fi/page-index.json b/src/intl/fi/page-index.json index d74fc04acc0..d74042b3331 100644 --- a/src/intl/fi/page-index.json +++ b/src/intl/fi/page-index.json @@ -36,10 +36,10 @@ "page-index-cta-dapps-label": "Kokeile sovelluksia", "page-index-cta-get-eth-description": "Ethereumin valuutta", "page-index-cta-get-eth-label": "Hanki Ethereitä", - "page-index-cta-networks-description": "Nauti minimaalista kuluista", - "page-index-cta-networks-label": "Valitse verkko", "page-index-cta-wallet-description": "Luo tilejä ja hallitse resursseja", "page-index-cta-wallet-label": "Valitse lompakko", + "page-index-cta-build-apps-description": "Luokaa ensimmäinen sovelluksenne", + "page-index-cta-build-apps-label": "Aloittakaa kehittäminen", "page-index-description": "Innovatiivisten sovellusten ja lohkoketjuverkkojen johtava alusta", "page-index-developers-code-example-description-0": "Luo ohjelmoimasi logiikan mukainen pankki", "page-index-developers-code-example-description-1": "Voit luoda rahakkeita, joita voi siirtää ja käyttää eri sovellusten välillä", diff --git a/src/intl/fil/page-index.json b/src/intl/fil/page-index.json index 17f9b3ea449..1e9177fbc92 100644 --- a/src/intl/fil/page-index.json +++ b/src/intl/fil/page-index.json @@ -36,10 +36,10 @@ "page-index-cta-dapps-label": "Subukan ang mga app", "page-index-cta-get-eth-description": "Ang pera ng Ethereum", "page-index-cta-get-eth-label": "Kumuha ng ETH", - "page-index-cta-networks-description": "I-enjoy ang mabababang bayarin", - "page-index-cta-networks-label": "Pumili ng network", "page-index-cta-wallet-description": "Gumawa ng mga account at pamahalaan ang mga asset", "page-index-cta-wallet-label": "Pumili ng wallet", + "page-index-cta-build-apps-description": "Gumawa ng iyong unang app", + "page-index-cta-build-apps-label": "Simulan ang pagbuo", "page-index-description": "Ang nangungunang platform para sa mga makabagong app at network ng blockchain", "page-index-developers-code-example-description-0": "Bumuo ng bangko na pinapagana ng lohikang ikaw ang nagprograma", "page-index-developers-code-example-description-1": "Gumawa ng mga token na maaaring mailipat at magagamit sa iba't ibang application", diff --git a/src/intl/fr/page-index.json b/src/intl/fr/page-index.json index e54920ff520..925b197df43 100644 --- a/src/intl/fr/page-index.json +++ b/src/intl/fr/page-index.json @@ -37,10 +37,10 @@ "page-index-cta-dapps-label": "Essayer des applications", "page-index-cta-get-eth-description": "La devise d’Ethereum", "page-index-cta-get-eth-label": "Obtenir de l'ETH", - "page-index-cta-networks-description": "Bénéficiez de frais minimes", - "page-index-cta-networks-label": "Sélectionner un réseau", "page-index-cta-wallet-description": "Créer des comptes et gérer des actifs", "page-index-cta-wallet-label": "Choisissez un portefeuille", + "page-index-cta-build-apps-description": "Créez votre première application", + "page-index-cta-build-apps-label": "Commencez à développer", "page-index-description": "La principale plateforme pour les applications innovantes et les réseaux blockchain", "page-index-developers-code-example-description-0": "Construisez une banque alimentée par la logique que vous avez programmée", "page-index-developers-code-example-description-1": "Créez des jetons que vous pouvez transférer et utiliser dans différentes applications", diff --git a/src/intl/ga/page-index.json b/src/intl/ga/page-index.json index f75d6466914..aea619a35e0 100644 --- a/src/intl/ga/page-index.json +++ b/src/intl/ga/page-index.json @@ -37,10 +37,10 @@ "page-index-cta-dapps-label": "Bain triail as aipeanna", "page-index-cta-get-eth-description": "Airgeadra Ethereum", "page-index-cta-get-eth-label": "Faigh ETH", - "page-index-cta-networks-description": "Bain leas as táillí íosta", - "page-index-cta-networks-label": "Roghnaigh líonra", "page-index-cta-wallet-description": "Cruthaigh cuntais agus bainistigh sócmhainní", "page-index-cta-wallet-label": "Pioc sparán", + "page-index-cta-build-apps-description": "Cruthaigh do chéad aip", + "page-index-cta-build-apps-label": "Tosaígí ar fhorbairt", "page-index-description": "An t-ardán is mó le haghaidh aipeanna nuálacha agus líonraí blocshlabhra", "page-index-developers-code-example-description-0": "Tóg banc atá faoi thiomáint ag an loighic atá ríomhchláraithe agat féin", "page-index-developers-code-example-description-1": "Cruthaigh comharthaí gur féidir leat a aistriú agus a úsáid thar feidhmchláir", diff --git a/src/intl/gl/page-index.json b/src/intl/gl/page-index.json index b255745b43d..ecc6f850066 100644 --- a/src/intl/gl/page-index.json +++ b/src/intl/gl/page-index.json @@ -36,10 +36,10 @@ "page-index-cta-dapps-label": "Probar aplicacións", "page-index-cta-get-eth-description": "A divisa de Ethereum", "page-index-cta-get-eth-label": "Obter ETH", - "page-index-cta-networks-description": "Aproveita as tarifas mínimas", - "page-index-cta-networks-label": "Selecciona una rede", "page-index-cta-wallet-description": "Crear contas e xestionar activos", "page-index-cta-wallet-label": "Escolla unha carteira", + "page-index-cta-build-apps-description": "Cree a súa primeira aplicación", + "page-index-cta-build-apps-label": "Comece a crear", "page-index-description": "A plataforma líder das aplicacións innovadoras e as redes de blockchain", "page-index-developers-code-example-description-0": "Constrúe un banco impulsado pola lóxica que programaches", "page-index-developers-code-example-description-1": "Crea tokens que pode transferir e utilizar en todas as aplicacións", diff --git a/src/intl/gu/page-index.json b/src/intl/gu/page-index.json index 773a9b44383..87aef12942c 100644 --- a/src/intl/gu/page-index.json +++ b/src/intl/gu/page-index.json @@ -36,10 +36,10 @@ "page-index-cta-dapps-label": "ઍપ્સ અજમાવી જુઓ", "page-index-cta-get-eth-description": "Ethereumનું ચલણ", "page-index-cta-get-eth-label": "મેળવો ETH", - "page-index-cta-networks-description": "ન્યૂનતમ ફીનો આનંદ માણો", - "page-index-cta-networks-label": "નેટવર્ક પસંદ કરો", "page-index-cta-wallet-description": "એકાઉન્ટ્સ બનાવો અને સંપત્તિઓનું સંચાલન કરો", "page-index-cta-wallet-label": "વૉલેટ પસંદ કરો", + "page-index-cta-build-apps-description": "તમારી પ્રથમ એપ બનાવો", + "page-index-cta-build-apps-label": "ડેવલપમેન્ટ શરૂ કરો", "page-index-description": "નવીન ઍપ્સ અને બ્લોકચેન નેટવર્ક્સ માટેનું અગ્રણી પ્લેટફોર્મ", "page-index-developers-code-example-description-0": "તમે પ્રોગ્રામ કરેલા લૉજિક દ્વારા સંચાલિત બેંક બનાવો", "page-index-developers-code-example-description-1": "ટોકન્સ બનાવો કે જેને તમે ટ્રાન્સફર કરી શકો છો અને સમગ્ર ઍપ્લિકેશન્સમાં ઉપયોગ કરી શકો છો", diff --git a/src/intl/ha/page-index.json b/src/intl/ha/page-index.json index bd891a01dbf..5b5051b67c3 100644 --- a/src/intl/ha/page-index.json +++ b/src/intl/ha/page-index.json @@ -36,10 +36,10 @@ "page-index-cta-dapps-label": "Gwada amfani da manhajoji", "page-index-cta-get-eth-description": "Kuɗin Ethereum", "page-index-cta-get-eth-label": "Samun ETH", - "page-index-cta-networks-description": "Ci moriyar kuɗade kaɗan", - "page-index-cta-networks-label": "Zaɓi cibiyar sadarwa", "page-index-cta-wallet-description": "Ƙirƙiri asusu & gudanar da kadarori", "page-index-cta-wallet-label": "Zaɓi lalita", + "page-index-cta-build-apps-description": "Ƙirƙiri aikace-aikacenka na farko", + "page-index-cta-build-apps-label": "Fara haɓaka", "page-index-description": "Dandalin da ke jagorantar ƙirƙirarrun manhajoji da cibiyoyin bulokcen", "page-index-developers-code-example-description-0": "Samar da bankin da tunaninku ke ƙarfafa ma wa", "page-index-developers-code-example-description-1": "Ƙirƙiri kadarorin dijital waɗanda za ku iya yin tiransifa tare da amfani da su a dukkan manhajoji", diff --git a/src/intl/he/page-index.json b/src/intl/he/page-index.json index a9638c1ef77..cf39ef864a3 100644 --- a/src/intl/he/page-index.json +++ b/src/intl/he/page-index.json @@ -36,10 +36,10 @@ "page-index-cta-dapps-label": "נסה אפליקציות", "page-index-cta-get-eth-description": "המטבע של אתריום", "page-index-cta-get-eth-label": "קבל ETH", - "page-index-cta-networks-description": "תיהנה מעמלות מינימליות", - "page-index-cta-networks-label": "בחר רשת", "page-index-cta-wallet-description": "צור חשבונות ונהל נכסים", "page-index-cta-wallet-label": "בחרו ארנק", + "page-index-cta-build-apps-description": "צור את האפליקציה הראשונה שלך", + "page-index-cta-build-apps-label": "התחילו לפתח", "page-index-description": "הפלטפורמה המובילה לאפליקציות חדשניות ורשתות בלוקצ'יין", "page-index-developers-code-example-description-0": "בנה בנק המופעל על ידי לוגיקה שתכנתת", "page-index-developers-code-example-description-1": "צור טוקנים שתוכל להעביר ולהשתמש בהם בין אפליקציות", diff --git a/src/intl/hi/page-index.json b/src/intl/hi/page-index.json index a87decebd81..fdc23b8b480 100644 --- a/src/intl/hi/page-index.json +++ b/src/intl/hi/page-index.json @@ -36,10 +36,10 @@ "page-index-cta-dapps-label": "ऐप्स आज़माएं", "page-index-cta-get-eth-description": "एथेरियम की करेंसी", "page-index-cta-get-eth-label": "ETH प्राप्त करें", - "page-index-cta-networks-description": "न्यूनतम शुल्क का आनंद लें", - "page-index-cta-networks-label": "नेटवर्क चुनें", "page-index-cta-wallet-description": "खाते बनाएं और संपत्ति प्रबंधित करें", "page-index-cta-wallet-label": "एक वॉलेट चुनें", + "page-index-cta-build-apps-description": "अपना पहला ऐप बनाएं", + "page-index-cta-build-apps-label": "विकास शुरू करें", "page-index-description": "इनोवेटिव ऐप्स और ब्लॉकचेन नेटवर्क के लिए प्रमुख प्लेटफ़ॉर्म", "page-index-developers-code-example-description-0": "आपके द्वारा प्रोग्राम किए गए लॉजिक से संचालित बैंक बनाएं", "page-index-developers-code-example-description-1": "ऐसे टोकन बनाएं, जिन्हें आप ट्रांसफ़र कर सकते हैं और कई अलग-अलग एप्लिकेशन पर उपयोग कर सकते हैं", diff --git a/src/intl/hr/page-index.json b/src/intl/hr/page-index.json index 5220666d41a..aec3ec13511 100644 --- a/src/intl/hr/page-index.json +++ b/src/intl/hr/page-index.json @@ -36,10 +36,10 @@ "page-index-cta-dapps-label": "Isprobajte aplikacije", "page-index-cta-get-eth-description": "Ethereumova valuta", "page-index-cta-get-eth-label": "Nabavite ETH", - "page-index-cta-networks-description": "Uživajte u minimalnim naknadama", - "page-index-cta-networks-label": "Odaberite mrežu", "page-index-cta-wallet-description": "Izradite račune i upravljajte imovinom", "page-index-cta-wallet-label": "Odaberite novčanik", + "page-index-cta-build-apps-description": "Izradite svoju prvu aplikaciju", + "page-index-cta-build-apps-label": "Započnite razvoj", "page-index-description": "Vodeća platforma za inovativne aplikacije i mreže lanaca blokova", "page-index-developers-code-example-description-0": "Izradite banku upravljanu logikom koju ste sami programirali", "page-index-developers-code-example-description-1": "Izradite tokene koje možete prenositi i upotrebljavati u različitim aplikacijama", diff --git a/src/intl/hu/page-index.json b/src/intl/hu/page-index.json index ec9d62589f5..34b62b2ad2a 100644 --- a/src/intl/hu/page-index.json +++ b/src/intl/hu/page-index.json @@ -37,10 +37,10 @@ "page-index-cta-dapps-label": "Próbálja ki az alkalmazásokat", "page-index-cta-get-eth-description": "Ez Ethereum pénzneme", "page-index-cta-get-eth-label": "ETH beszerzése", - "page-index-cta-networks-description": "Élvezze a minimális díjakat", - "page-index-cta-networks-label": "Válasszon hálózatot", "page-index-cta-wallet-description": "Hozzon létre fiókokat és kezelje eszközeit", "page-index-cta-wallet-label": "Válasszon egy tárcát", + "page-index-cta-build-apps-description": "Hozza létre első alkalmazását", + "page-index-cta-build-apps-label": "Kezdje el a fejlesztést", "page-index-description": "Az innovatív alkalmazások és blokklánc-hálózatok vezető platformja", "page-index-developers-code-example-description-0": "Építsen bankot, amely az Ön által programozott logikára épül", "page-index-developers-code-example-description-1": "Hozzon létre tokeneket, amelyeket az alkalmazások között is átvihet és használhat", diff --git a/src/intl/hy-am/page-index.json b/src/intl/hy-am/page-index.json index 2ee8bbd0c71..5eb27991f33 100644 --- a/src/intl/hy-am/page-index.json +++ b/src/intl/hy-am/page-index.json @@ -36,10 +36,10 @@ "page-index-cta-dapps-label": "Փորձել հավելվածները", "page-index-cta-get-eth-description": "Էթերիումի արժույթը", "page-index-cta-get-eth-label": "Ստանալ ETH", - "page-index-cta-networks-description": "Վայելեք նվազագույն վճարները", - "page-index-cta-networks-label": "Ընտրեք ցանց", "page-index-cta-wallet-description": "Ստեղծեք հաշիվներ և կառավարեք ակտիվները", "page-index-cta-wallet-label": "Ընտրեք դրամապանակ", + "page-index-cta-build-apps-description": "Ստեղծեք ձեր առաջին հավելվածը", + "page-index-cta-build-apps-label": "Սկսեք զարգացնել", "page-index-description": "Առաջատար հարթակ նորարարական հավելվածների և բլոկչեյն ցանցերի համար", "page-index-developers-code-example-description-0": "Կառուցեք բանկ, որն աշխատում է ձեր ծրագրավորած տրամաբանությամբ", "page-index-developers-code-example-description-1": "Ստեղծեք token-ներ, որոնք կարող եք փոխանցել և օգտագործել տարբեր հավելվածներում", diff --git a/src/intl/id/page-index.json b/src/intl/id/page-index.json index 500c3570ffb..55cfec1a451 100644 --- a/src/intl/id/page-index.json +++ b/src/intl/id/page-index.json @@ -37,10 +37,10 @@ "page-index-cta-dapps-label": "Coba aplikasi", "page-index-cta-get-eth-description": "Mata uang Ethereum", "page-index-cta-get-eth-label": "Dapatkan ETH", - "page-index-cta-networks-description": "Nikmati biaya minimal", - "page-index-cta-networks-label": "Pilih jaringan", "page-index-cta-wallet-description": "Buat akun & kelola aset", "page-index-cta-wallet-label": "Tentukan dompet", + "page-index-cta-build-apps-description": "Buatlah aplikasi pertama Anda", + "page-index-cta-build-apps-label": "Mulai mengembangkan", "page-index-description": "Platform terkemuka untuk aplikasi yang inovatif dan jaringan rantai blok", "page-index-developers-code-example-description-0": "Bangun bank yang dijalankan dengan logika yang telah Anda programkan", "page-index-developers-code-example-description-1": "Buat token yang dapat Anda transfer dan gunakan di seluruh aplikasi", diff --git a/src/intl/ig/page-index.json b/src/intl/ig/page-index.json index 4589a396aee..dca543e3460 100644 --- a/src/intl/ig/page-index.json +++ b/src/intl/ig/page-index.json @@ -36,10 +36,10 @@ "page-index-cta-dapps-label": "Nwalee ngwa", "page-index-cta-get-eth-description": "Ego nke Ethereum", "page-index-cta-get-eth-label": "Nweta ETH", - "page-index-cta-networks-description": "Na-akwụ ụgwọ dị ala", - "page-index-cta-networks-label": "Họrọ otu netwọk", "page-index-cta-wallet-description": "Mepụta akaụntụ ma jikwaa akụ", "page-index-cta-wallet-label": "Họrọ akpaego", + "page-index-cta-build-apps-description": "Mepụta ngwa gị mbụ", + "page-index-cta-build-apps-label": "Bido mmepe", "page-index-description": "Ndi kachasi mma maka ngwa echeputara ohuru na netwọkụ blockchain", "page-index-developers-code-example-description-0": "Wulite ụlọ akụ nke ihe nghota imeputara na-akwado", "page-index-developers-code-example-description-1": "Mepụta akara ndị ị nwere ike ịnyefe ma jiri n'ofe ngwa", diff --git a/src/intl/it/page-index.json b/src/intl/it/page-index.json index 77099ebb028..6b0ceb53854 100644 --- a/src/intl/it/page-index.json +++ b/src/intl/it/page-index.json @@ -37,10 +37,10 @@ "page-index-cta-dapps-label": "Prova le app", "page-index-cta-get-eth-description": "La valuta di Ethereum", "page-index-cta-get-eth-label": "Ottieni ETH", - "page-index-cta-networks-description": "Commissioni minime", - "page-index-cta-networks-label": "Scegli una rete", "page-index-cta-wallet-description": "Crea conti e gestisci asset", "page-index-cta-wallet-label": "Scegli un portafoglio", + "page-index-cta-build-apps-description": "Crei la Sua prima applicazione", + "page-index-cta-build-apps-label": "Inizi a sviluppare", "page-index-description": "La piattaforma leader per le app innovative e le reti blockchain", "page-index-developers-code-example-description-0": "Crea una banca basata sulla logica da te programmata", "page-index-developers-code-example-description-1": "Crea token trasferibili e utilizzabili tra più applicazioni", diff --git a/src/intl/ja/page-index.json b/src/intl/ja/page-index.json index bf769694a61..ebf07dbef73 100644 --- a/src/intl/ja/page-index.json +++ b/src/intl/ja/page-index.json @@ -37,10 +37,10 @@ "page-index-cta-dapps-label": "アプリを試す", "page-index-cta-get-eth-description": "イーサリアムの通貨", "page-index-cta-get-eth-label": "ETHを入手", - "page-index-cta-networks-description": "手数料が最小限", - "page-index-cta-networks-label": "ネットワークを選択", "page-index-cta-wallet-description": "アカウントの作成と資産の管理", "page-index-cta-wallet-label": "ウォレットを選ぶ", + "page-index-cta-build-apps-description": "最初のアプリを作成してください", + "page-index-cta-build-apps-label": "開発を開始", "page-index-description": "革新的なアプリのための主要プラットフォーム、そしてブロックチェーンのネットワーク", "page-index-developers-code-example-description-0": "自分でプログラムしたロジックで動く銀行を構築する", "page-index-developers-code-example-description-1": "アプリ間で転送・利用できるトークンを作成する", diff --git a/src/intl/ka/page-index.json b/src/intl/ka/page-index.json index 07feef9453e..db0ba44aa93 100644 --- a/src/intl/ka/page-index.json +++ b/src/intl/ka/page-index.json @@ -36,10 +36,10 @@ "page-index-cta-dapps-label": "სცადეთ აპები", "page-index-cta-get-eth-description": "Ethereum-ის ვალუტა", "page-index-cta-get-eth-label": "მიიღე ETH", - "page-index-cta-networks-description": "ისიამოვნეთ მინიმალური გადასახადებით", - "page-index-cta-networks-label": "აირჩიეთ ქსელი", "page-index-cta-wallet-description": "შექმენით ანგარიშები და მართეთ აქტივები", "page-index-cta-wallet-label": "შეარჩიე საფულე", + "page-index-cta-build-apps-description": "შექმენით თქვენი პირველი აპლიკაცია", + "page-index-cta-build-apps-label": "დაიწყეთ შექმნა", "page-index-description": "ინოვაციური აპებისა და ბლოქჩეინ ქსელების წამყვანი პლატფორმა", "page-index-developers-code-example-description-0": "ააგეთ თქვენ მიერ პროგრამირებული ლოგიკით მართული ბანკი", "page-index-developers-code-example-description-1": "შექმენით ტოკენები, რომელთა გადაცემასა და გამოყენებასაც აპლიკაციებში შეძლებთ", diff --git a/src/intl/kk/page-index.json b/src/intl/kk/page-index.json index ebf1fc2ffb4..c0f7866e25e 100644 --- a/src/intl/kk/page-index.json +++ b/src/intl/kk/page-index.json @@ -36,10 +36,10 @@ "page-index-cta-dapps-label": "Қолданбаларды байқап көру", "page-index-cta-get-eth-description": "Ethereum валютасы", "page-index-cta-get-eth-label": "ETH алу", - "page-index-cta-networks-description": "Ең төмен комиссиялар", - "page-index-cta-networks-label": "Желіні таңдау", "page-index-cta-wallet-description": "Аккаунттар жасау және активтерді басқару", "page-index-cta-wallet-label": "Әмиянды таңдаңыз", + "page-index-cta-build-apps-description": "Алғашқы қосымшаңызды жасаңыз", + "page-index-cta-build-apps-label": "Құруды бастаңыз", "page-index-description": "Инновациялық қолданбалар мен блокчейн желілері үшін жетекші платформа", "page-index-developers-code-example-description-0": "Бағдарламалаған логикаңызбен басқарылатын банк жасаңыз", "page-index-developers-code-example-description-1": "Әр түрлі қолданбаларда тасымалдауға және пайдалануға болатын токен жасаңыз", diff --git a/src/intl/km/page-index.json b/src/intl/km/page-index.json index 8958b765607..f7fe1744e0b 100644 --- a/src/intl/km/page-index.json +++ b/src/intl/km/page-index.json @@ -36,10 +36,10 @@ "page-index-cta-dapps-label": "សាក់ល្បងប្រើកម្មវិធី", "page-index-cta-get-eth-description": "រូបិយប័ណ្ណរបស់ Ethereum", "page-index-cta-get-eth-label": "ទទួលយក ETH", - "page-index-cta-networks-description": "រីករាយជាមួយថ្លៃសេវាតិចតួច", - "page-index-cta-networks-label": "ជ្រើសរើសបណ្តាញមួយ", "page-index-cta-wallet-description": "បង្កើតគណនី និងគ្រប់គ្រងទ្រព្យ", "page-index-cta-wallet-label": "រើស​កាបូប", + "page-index-cta-build-apps-description": "បង្កើតកម្មវិធីដំបូងរបស់អ្នក", + "page-index-cta-build-apps-label": "ចាប់ផ្តើមអភិវឌ្ឍ", "page-index-description": "ជាថ្នាលឈានមុខគេសម្រាប់កម្មវិធី​នវានុវត្តន៍ និងបណ្តាញ blockchain", "page-index-developers-code-example-description-0": "បង្កើតធនាគារដែលដំណើរការដោយតក្កវិជ្ជាដែលអ្នកបានរៀបចំកម្មវិធី", "page-index-developers-code-example-description-1": "បង្កើតថូខិនដែលអ្នកអាចផ្ទេរ និងប្រើប្រាស់នៅលើកម្មវិធីនានា", diff --git a/src/intl/kn/page-index.json b/src/intl/kn/page-index.json index 2ca1529872f..95a5594627e 100644 --- a/src/intl/kn/page-index.json +++ b/src/intl/kn/page-index.json @@ -37,10 +37,10 @@ "page-index-cta-dapps-label": "ಅಪ್ಲಿಕೇಶನ್‌ಗಳನ್ನು ಪ್ರಯತ್ನಿಸಿ", "page-index-cta-get-eth-description": "Ethereum ನ ಕರೆನ್ಸಿ", "page-index-cta-get-eth-label": "ETH ಪಡೆಯಿರಿ", - "page-index-cta-networks-description": "ಕನಿಷ್ಠ ಶುಲ್ಕವನ್ನು ಆನಂದಿಸಿ", - "page-index-cta-networks-label": "ನೆಟ್ವರ್ಕ್ ಆಯ್ಕೆಮಾಡಿ", "page-index-cta-wallet-description": "ಖಾತೆಗಳನ್ನು ರಚಿಸಿ ಮತ್ತು ಸ್ವತ್ತುಗಳನ್ನು ನಿರ್ವಹಿಸಿ", "page-index-cta-wallet-label": "ವ್ಯಾಲೆಟ್ ಒಂದನ್ನು ಆರಿಸಿ", + "page-index-cta-build-apps-description": "ನಿಮ್ಮ ಮೊದಲ ಆಪ್ ರಚಿಸಿ", + "page-index-cta-build-apps-label": "ಅಭಿವೃದ್ಧಿ ಪ್ರಾರಂಭಿಸಿ", "page-index-description": "ನವೀನ ಅಪ್ಲಿಕೇಶನ್‌ಗಳು ಮತ್ತು ಬ್ಲಾಕ್‌ಚೈನ್ ನೆಟ್‌ವರ್ಕ್‌ಗಳಿಗೆ ಪ್ರಮುಖ ವೇದಿಕೆ", "page-index-developers-code-example-description-0": "ನೀವು ಪ್ರೋಗ್ರಾಮ್ ಮಾಡಿದ ತರ್ಕದಿಂದ ಚಾಲಿತ ಬ್ಯಾಂಕ್ ಅನ್ನು ನಿರ್ಮಿಸಿ", "page-index-developers-code-example-description-1": "ಅಪ್ಲಿಕೇಶನ್‌ಗಳಾದ್ಯಂತ ನೀವು ವರ್ಗಾಯಿಸಬಹುದಾದ ಮತ್ತು ಬಳಸಬಹುದಾದ ಟೋಕನ್‌ಗಳನ್ನು ರಚಿಸಿ", diff --git a/src/intl/ko/page-index.json b/src/intl/ko/page-index.json index 6f68c0ae9f7..25150556b63 100644 --- a/src/intl/ko/page-index.json +++ b/src/intl/ko/page-index.json @@ -36,10 +36,10 @@ "page-index-cta-dapps-label": "앱 사용하기", "page-index-cta-get-eth-description": "이더리움의 화폐", "page-index-cta-get-eth-label": "이더 구매하기", - "page-index-cta-networks-description": "최소 요금 지불", - "page-index-cta-networks-label": "네트워크 선택", "page-index-cta-wallet-description": "계정 만들기 및 자산 관리", "page-index-cta-wallet-label": "지갑 선택하기", + "page-index-cta-build-apps-description": "첫 앱을 만들어 보십시오", + "page-index-cta-build-apps-label": "개발을 시작하십시오", "page-index-description": "혁신적인 앱과 블록체인 네트워크의 선두 플랫폼", "page-index-developers-code-example-description-0": "직접 프로그래밍한 로직에 기반하여 은행을 빌드", "page-index-developers-code-example-description-1": "다양한 애플리케이션 간에 전송하고 사용할 수 있는 토큰 생성", diff --git a/src/intl/lt/page-index.json b/src/intl/lt/page-index.json index 1f09b8b352c..253fb6842ae 100644 --- a/src/intl/lt/page-index.json +++ b/src/intl/lt/page-index.json @@ -36,10 +36,10 @@ "page-index-cta-dapps-label": "Išbandykite programėles", "page-index-cta-get-eth-description": "Ethereum valiuta", "page-index-cta-get-eth-label": "Gauti ETH", - "page-index-cta-networks-description": "Mėgaukitės minimaliais mokesčiais", - "page-index-cta-networks-label": "Pasirinkite tinklą", "page-index-cta-wallet-description": "Sukurkite paskyras ir valdykite aktyvus", "page-index-cta-wallet-label": "Pasirinkite piniginę", + "page-index-cta-build-apps-description": "Sukurkite pirmąją programą", + "page-index-cta-build-apps-label": "Pradėkite kurti", "page-index-description": "Pirmaujanti inovatyvių programėlių ir blockchain tinklų platforma", "page-index-developers-code-example-description-0": "Sukurkite banką, veikiantį pagal jūsų suprogramuotą logiką", "page-index-developers-code-example-description-1": "Sukurkite žetonus, kuriuos galite perkelti ir naudoti įvairiose programose", diff --git a/src/intl/ml/page-index.json b/src/intl/ml/page-index.json index 77707c162dc..c8be2fecbb3 100644 --- a/src/intl/ml/page-index.json +++ b/src/intl/ml/page-index.json @@ -36,10 +36,10 @@ "page-index-cta-dapps-label": "ആപ്പുകൾ പരീക്ഷിക്കുക", "page-index-cta-get-eth-description": "Ethereum കറൻസി", "page-index-cta-get-eth-label": "ETH നേടൂ", - "page-index-cta-networks-description": "കുറഞ്ഞ ഫീസ് ആസ്വദിക്കൂ", - "page-index-cta-networks-label": "ഒരു നെറ്റ്‌വർക്ക് തിരഞ്ഞെടുക്കുക", "page-index-cta-wallet-description": "അക്കൗണ്ടുകൾ സൃഷ്ടിക്കുക, അസറ്റുകൾ മാനേജ് ചെയ്യുക", "page-index-cta-wallet-label": "ഒരു വാലറ്റ് എടുക്കുക", + "page-index-cta-build-apps-description": "നിങ്ങളുടെ ആദ്യ ആപ്പ് സൃഷ്ടിക്കുക", + "page-index-cta-build-apps-label": "വികസനം ആരംഭിക്കുക", "page-index-description": "നൂതന ആപ്പുകളുടെയും ബ്ലോക്ക്‌ചെയിൻ നെറ്റ്‌വർക്കുകളുടെയും മുൻനിര പ്ലാറ്റ്‌ഫോം", "page-index-developers-code-example-description-0": "നിങ്ങൾ പ്രോഗ്രാം ചെയ്ത ലോജിക് ഉപയോഗിച്ച് ഒരു ബാങ്ക് ഉണ്ടാക്കുക", "page-index-developers-code-example-description-1": "നിങ്ങൾക്ക് ആപ്ലിക്കേഷനുകളിൽ ഉടനീളം കൈമാറാനും ഉപയോഗിക്കാനും കഴിയുന്ന ടോക്കണുകൾ സൃഷ്ടിക്കുക", diff --git a/src/intl/mr/page-index.json b/src/intl/mr/page-index.json index 36abe0bd34b..8a64cdbffed 100644 --- a/src/intl/mr/page-index.json +++ b/src/intl/mr/page-index.json @@ -36,10 +36,10 @@ "page-index-cta-dapps-label": "अ‍ॅप्स वापरून पहा", "page-index-cta-get-eth-description": "अथेरमचे चलन", "page-index-cta-get-eth-label": "ETH मिळवा", - "page-index-cta-networks-description": "अगदी किमान शुल्काचा लाभ घ्‍या", - "page-index-cta-networks-label": "एक नेटवर्क निवडा", "page-index-cta-wallet-description": "खाती तयार करा आणि मालमत्ता व्यवस्थापित करा", "page-index-cta-wallet-label": "वॉलेट निवडा", + "page-index-cta-build-apps-description": "तुमचा पहिला अ‍ॅप तयार करा", + "page-index-cta-build-apps-label": "विकास सुरू करा", "page-index-description": "नावीन्यपूर्ण अ‍ॅप्ससाठी आणि ब्लॉकचेन नेटवर्कसाठी अग्रणी प्लॅटफॉर्म", "page-index-developers-code-example-description-0": "तुम्ही प्रोग्राम केलेल्या तर्काच्या सामर्थ्‍याने एक बॅंक तयार करा", "page-index-developers-code-example-description-1": "तुम्ही अ‍ॅप्लिकेशन्सवर हस्तांतरित करू शकता आणि वापरू शकता अशी टोकन्स तयार करा", diff --git a/src/intl/ms/page-index.json b/src/intl/ms/page-index.json index 25a46aaf800..93f7ed43536 100644 --- a/src/intl/ms/page-index.json +++ b/src/intl/ms/page-index.json @@ -36,10 +36,10 @@ "page-index-cta-dapps-label": "Cuba aplikasi", "page-index-cta-get-eth-description": "Mata wang Ethereum", "page-index-cta-get-eth-label": "Dapatkan ETH", - "page-index-cta-networks-description": "Nikmati yuran minimum", - "page-index-cta-networks-label": "Pilih rangkaian", "page-index-cta-wallet-description": "Cipta akaun & kendalikan aset", "page-index-cta-wallet-label": "Pilih dompet", + "page-index-cta-build-apps-description": "Cipta aplikasi pertama anda", + "page-index-cta-build-apps-label": "Mulakan pembangunan", "page-index-description": "Platform terbaik untuk aplikasi inovatif dan rangkaian blok rantai", "page-index-developers-code-example-description-0": "Bina bank yang dikuasakan oleh logik yang telah anda programkan", "page-index-developers-code-example-description-1": "Cipta token yang boleh anda pindahkan dan gunakan merentasi aplikasi", diff --git a/src/intl/nb/page-index.json b/src/intl/nb/page-index.json index 9a30727bfb3..dac5d78ece9 100644 --- a/src/intl/nb/page-index.json +++ b/src/intl/nb/page-index.json @@ -36,10 +36,10 @@ "page-index-cta-dapps-label": "Prøv apper", "page-index-cta-get-eth-description": "Valutaen til Ethereum", "page-index-cta-get-eth-label": "Hent ETH", - "page-index-cta-networks-description": "Dra nytte av minimale avgifter", - "page-index-cta-networks-label": "Velg et nettverk", "page-index-cta-wallet-description": "Opprett kontoer og administer aktiva", "page-index-cta-wallet-label": "Velg en lommebok", + "page-index-cta-build-apps-description": "Lag Deres første app", + "page-index-cta-build-apps-label": "Start utvikling", "page-index-description": "Den ledende plattformen for innovative apper og blokkjede-nettverk", "page-index-developers-code-example-description-0": "Bygg en bank drevet med logikk du har programmert", "page-index-developers-code-example-description-1": "Opprett tokener som du kan overføre og bruke i andre programmer", diff --git a/src/intl/ne-np/page-index.json b/src/intl/ne-np/page-index.json index 86a2b9c1efa..2a7f86731f4 100644 --- a/src/intl/ne-np/page-index.json +++ b/src/intl/ne-np/page-index.json @@ -34,10 +34,10 @@ "page-index-cta-dapps-label": "एप्पहरू प्रयास गर्नुहोस्", "page-index-cta-get-eth-description": "Ethereum को मुद्रा", "page-index-cta-get-eth-label": "ETH प्राप्त गर्नुहोस्", - "page-index-cta-networks-description": "न्यूनतम शुल्कको आनन्द लिनुहोस्", - "page-index-cta-networks-label": "नेटवर्क रोज्नुहोस्", "page-index-cta-wallet-description": "खाता सिर्जना गर्नुहोस् र सम्पत्ति व्यवस्थापन गर्नुहोस्", "page-index-cta-wallet-label": "एउटा वालेट छान्नुहोस", + "page-index-cta-build-apps-description": "तपाईंको पहिलो एप बनाउनुहोस्", + "page-index-cta-build-apps-label": "विकास सुरु गर्नुहोस्", "page-index-description": "अभिनव एप्पहरू र ब्लकचेन नेटवर्कहरूका लागि अग्रणी प्लेटफर्म", "page-index-developers-code-example-description-0": "तपाईंले प्रोग्राम गर्नुभएको तर्कद्वारा संचालित बैंक बनाउनुहोस्", "page-index-developers-code-example-description-1": "तपाईंले एप्पहरूमा स्थानान्तरण र प्रयोग गर्न सक्ने टोकनहरू सिर्जना गर्नुहोस्", diff --git a/src/intl/nl/page-index.json b/src/intl/nl/page-index.json index 37f77d6a001..4901cd4638d 100644 --- a/src/intl/nl/page-index.json +++ b/src/intl/nl/page-index.json @@ -36,10 +36,10 @@ "page-index-cta-dapps-label": "Probeer de apps", "page-index-cta-get-eth-description": "De valuta van Ethereum", "page-index-cta-get-eth-label": "Verkrijg ETH", - "page-index-cta-networks-description": "Profiteer van minimale kosten", - "page-index-cta-networks-label": "Kies een netwerk", "page-index-cta-wallet-description": "Maak accounts aan en beheer activa", "page-index-cta-wallet-label": "Kies een portemonnee", + "page-index-cta-build-apps-description": "Maak uw eerste app", + "page-index-cta-build-apps-label": "Begin met bouwen", "page-index-description": "Het toonaangevende platform voor innovatieve apps en blockchain-netwerken", "page-index-developers-code-example-description-0": "Bouw een bank aangedreven door logica die jij hebt geprogrammeerd", "page-index-developers-code-example-description-1": "Maak tokens aan die je kunt overzetten en gebruiken verspreid over applicaties", diff --git a/src/intl/pcm/page-index.json b/src/intl/pcm/page-index.json index 41d5a6c3041..dd61f60e36b 100644 --- a/src/intl/pcm/page-index.json +++ b/src/intl/pcm/page-index.json @@ -36,10 +36,10 @@ "page-index-cta-dapps-label": "Try apps", "page-index-cta-get-eth-description": "Di kurensy of Ethereum", "page-index-cta-get-eth-label": "Get ETH", - "page-index-cta-networks-description": "Enjoy minimal fees", - "page-index-cta-networks-label": "Shuse one netwok", "page-index-cta-wallet-description": "Kreate akants and manaj assets", "page-index-cta-wallet-label": "Make yu pick one wallet", + "page-index-cta-build-apps-description": "Make your first app", + "page-index-cta-build-apps-label": "Begin building", "page-index-description": "Di platfom wey dey lead for innovative apps and blockchain netwoks", "page-index-developers-code-example-description-0": "Build one bank wey dem pawa by logik wey yu don program", "page-index-developers-code-example-description-1": "Kreate tokens wey yu fit transfa and yus akross aplikashons", diff --git a/src/intl/pl/page-index.json b/src/intl/pl/page-index.json index d481e7f88c7..6066e5f3d53 100644 --- a/src/intl/pl/page-index.json +++ b/src/intl/pl/page-index.json @@ -37,10 +37,10 @@ "page-index-cta-dapps-label": "Wypróbuj aplikacje", "page-index-cta-get-eth-description": "Waluta sieci Ethereum", "page-index-cta-get-eth-label": "Zdobądź ETH", - "page-index-cta-networks-description": "Minimalne opłaty", - "page-index-cta-networks-label": "Wybierz sieć", "page-index-cta-wallet-description": "Twórz konta i zarządzaj aktywami", "page-index-cta-wallet-label": "Wybierz portfel", + "page-index-cta-build-apps-description": "Proszę stworzyć swoją pierwszą aplikację", + "page-index-cta-build-apps-label": "Rozpocznij tworzenie", "page-index-description": "Czołowa platforma dla innowacyjnych aplikacji i sieci blockchain", "page-index-developers-code-example-description-0": "Stwórz bank działający w oparciu o zaprogramowaną przez Ciebie logikę", "page-index-developers-code-example-description-1": "Twórz tokeny, które możesz przesyłać i wykorzystywać w różnych aplikacjach", diff --git a/src/intl/pt-br/page-index.json b/src/intl/pt-br/page-index.json index f4f257e470c..e12649d96ca 100644 --- a/src/intl/pt-br/page-index.json +++ b/src/intl/pt-br/page-index.json @@ -37,10 +37,10 @@ "page-index-cta-dapps-label": "Avaliar aplicativos", "page-index-cta-get-eth-description": "A moeda do Ethereum", "page-index-cta-get-eth-label": "Obtenha ETH", - "page-index-cta-networks-description": "Aproveite taxas mínimas", - "page-index-cta-networks-label": "Escola uma rede", "page-index-cta-wallet-description": "Crie contas e gerencie ativos", "page-index-cta-wallet-label": "Escolha uma carteira", + "page-index-cta-build-apps-description": "Crie o seu primeiro aplicativo", + "page-index-cta-build-apps-label": "Comece a desenvolver", "page-index-description": "A plataforma líder para aplicativos inovadores e redes de blockchain", "page-index-developers-code-example-description-0": "Crie um banco movido pela lógica que você programou", "page-index-developers-code-example-description-1": "Crie tokens que você pode transferir e usar entre aplicativos", diff --git a/src/intl/pt/page-index.json b/src/intl/pt/page-index.json index 94d1ad4eb30..a8a4b9636b7 100644 --- a/src/intl/pt/page-index.json +++ b/src/intl/pt/page-index.json @@ -37,10 +37,10 @@ "page-index-cta-dapps-label": "Experimente aplicações", "page-index-cta-get-eth-description": "A moeda da Ethereum", "page-index-cta-get-eth-label": "Obter ETH", - "page-index-cta-networks-description": "Desfrute de taxas mínimas", - "page-index-cta-networks-label": "Escolha uma rede", "page-index-cta-wallet-description": "Crie contas e faça a gestão de ativos", "page-index-cta-wallet-label": "Escolha uma carteira", + "page-index-cta-build-apps-description": "Crie a sua primeira aplicação", + "page-index-cta-build-apps-label": "Comece a desenvolver", "page-index-description": "A plataforma líder para aplicações inovadoras e redes de blockchain", "page-index-developers-code-example-description-0": "Crie um banco com a lógica que programou", "page-index-developers-code-example-description-1": "Crie tokens que pode transferir e utilizar entre aplicações", diff --git a/src/intl/ro/page-index.json b/src/intl/ro/page-index.json index 9ea7d32b45c..8249d4949ad 100644 --- a/src/intl/ro/page-index.json +++ b/src/intl/ro/page-index.json @@ -37,10 +37,10 @@ "page-index-cta-dapps-label": "Încercați aplicațiile", "page-index-cta-get-eth-description": "Moneda Ethereum", "page-index-cta-get-eth-label": "Obțineți ETH", - "page-index-cta-networks-description": "Bucurați-vă de comisioane minime", - "page-index-cta-networks-label": "Alegeți o rețea", "page-index-cta-wallet-description": "Creați conturi și gestionați active", "page-index-cta-wallet-label": "Alegeți un portofel", + "page-index-cta-build-apps-description": "Creați-vă prima aplicație", + "page-index-cta-build-apps-label": "Începeți să dezvoltați", "page-index-description": "Platforma de top pentru aplicații inovatoare și rețele blockchain", "page-index-developers-code-example-description-0": "Construiți o bancă gestionată de codul pe care l-ați programat", "page-index-developers-code-example-description-1": "Creați tokenuri pe care le puteți transfera și utiliza în mai multe aplicații", diff --git a/src/intl/ru/page-index.json b/src/intl/ru/page-index.json index 9a5172ed5f9..445bcd9c557 100644 --- a/src/intl/ru/page-index.json +++ b/src/intl/ru/page-index.json @@ -37,10 +37,10 @@ "page-index-cta-dapps-label": "Попробовать приложения", "page-index-cta-get-eth-description": "Валюта Ethereum", "page-index-cta-get-eth-label": "Получить ETH", - "page-index-cta-networks-description": "Самые низкие комиссии", - "page-index-cta-networks-label": "Выбор сети", "page-index-cta-wallet-description": "Создание аккаунтов и управление активами", "page-index-cta-wallet-label": "Выберите кошелек", + "page-index-cta-build-apps-description": "Создайте своё первое приложение", + "page-index-cta-build-apps-label": "Начните разработку", "page-index-description": "Ведущая платформа для инновационных приложений и блокчейн-сетей", "page-index-developers-code-example-description-0": "Создайте банк, управляемый запрограммированной вами логикой", "page-index-developers-code-example-description-1": "Создавайте токены, которые можно передавать и использовать в разных приложениях", diff --git a/src/intl/se/page-index.json b/src/intl/se/page-index.json index 21e5d1a9015..b4b9b84c0d0 100644 --- a/src/intl/se/page-index.json +++ b/src/intl/se/page-index.json @@ -36,10 +36,10 @@ "page-index-cta-dapps-label": "Prova appar", "page-index-cta-get-eth-description": "Ethereum-valutan", "page-index-cta-get-eth-label": "Skaffa ETH", - "page-index-cta-networks-description": "Dra fördel av minimala avgifter", - "page-index-cta-networks-label": "Välj ett nätverk", "page-index-cta-wallet-description": "Skapa konton och hantera tillgångar", "page-index-cta-wallet-label": "Välj en plånbok", + "page-index-cta-build-apps-description": "Skapa er första app", + "page-index-cta-build-apps-label": "Börja utveckla", "page-index-description": "Den ledande plattformen för innovativa appar och blockkedjenätverk", "page-index-developers-code-example-description-0": "Bygg en bank som drivs av logik du har programmerat", "page-index-developers-code-example-description-1": "Skapa tokens som du kan överföra och använda mellan olika applikationer", diff --git a/src/intl/sk/page-index.json b/src/intl/sk/page-index.json index 4077a56606a..e73f5961933 100644 --- a/src/intl/sk/page-index.json +++ b/src/intl/sk/page-index.json @@ -36,10 +36,10 @@ "page-index-cta-dapps-label": "Vyskúšajte aplikácie", "page-index-cta-get-eth-description": "Mena Ethereum", "page-index-cta-get-eth-label": "Získať ETH", - "page-index-cta-networks-description": "Užite si minimálne poplatky", - "page-index-cta-networks-label": "Vyberte si sieť", "page-index-cta-wallet-description": "Vytvoriť si učty a spravujte aktíva", "page-index-cta-wallet-label": "Vyberte si peňaženku", + "page-index-cta-build-apps-description": "Vytvorte svoju prvú aplikáciu", + "page-index-cta-build-apps-label": "Začnite vyvíjať", "page-index-description": "Popredná platforma pre inovatívne aplikácie a blockchainové siete", "page-index-developers-code-example-description-0": "Vybudujte banku poháňanú logikou, ktorú ste naprogramovali", "page-index-developers-code-example-description-1": "Vytvárajte tokeny, ktoré môžete prenášať a používať v rôznych aplikáciách", diff --git a/src/intl/sl/page-index.json b/src/intl/sl/page-index.json index f82acaa0589..9fe76487a92 100644 --- a/src/intl/sl/page-index.json +++ b/src/intl/sl/page-index.json @@ -36,10 +36,10 @@ "page-index-cta-dapps-label": "Preizkusi aplikacije", "page-index-cta-get-eth-description": "Valuta na Ethereum", "page-index-cta-get-eth-label": "Pridobite ETH", - "page-index-cta-networks-description": "Uživajte v minimalnih provizijah", - "page-index-cta-networks-label": "Izberite omrežje", "page-index-cta-wallet-description": "Ustvarite račune in upravljajte sredstva", "page-index-cta-wallet-label": "Izberite denarnico", + "page-index-cta-build-apps-description": "Ustvarite svojo prvo aplikacijo", + "page-index-cta-build-apps-label": "Začnite razvijati", "page-index-description": "Vodilna platforma za inovativne aplikacije in omrežja verige blokov", "page-index-developers-code-example-description-0": "Ustvarite banko, ki jo poganja logika, ki ste jo programirali sami", "page-index-developers-code-example-description-1": "Ustvarite žetone, ki jih lahko prenašate in uporabljate v različnih aplikacijah", diff --git a/src/intl/sn/page-index.json b/src/intl/sn/page-index.json index 0f6dd02f9b6..dcf151c466f 100644 --- a/src/intl/sn/page-index.json +++ b/src/intl/sn/page-index.json @@ -37,10 +37,10 @@ "page-index-cta-dapps-label": "Edza maapu", "page-index-cta-get-eth-description": "Mari yeEthereum", "page-index-cta-get-eth-label": "Tora ETH", - "page-index-cta-networks-description": "Nakidzwa muripo uri pasi-pasi", - "page-index-cta-networks-label": "Sarudza netiweki", "page-index-cta-wallet-description": "Gadzira maakaundi uye utarisire zvakanaka midziyo inokosha", "page-index-cta-wallet-label": "Sarudza chikwama", + "page-index-cta-build-apps-description": "Gadzira app yako yekutanga", + "page-index-cta-build-apps-label": "Tangai kugadzira", "page-index-description": "Puratifomu yemberi inowanikwa maapu ekuitisa hudobidobi uye ine manetiweki emakambani makuru", "page-index-developers-code-example-description-0": "Gadzira bhanga rinosundwa nepfungwa dzawakaruka wega", "page-index-developers-code-example-description-1": "Gadzira matokeni aunogona kutumira kumwe uye kushandisa pamaapu akawanda", diff --git a/src/intl/sr/page-index.json b/src/intl/sr/page-index.json index f4da4ec553b..3f35086b79b 100644 --- a/src/intl/sr/page-index.json +++ b/src/intl/sr/page-index.json @@ -36,10 +36,10 @@ "page-index-cta-dapps-label": "Isprobajte aplikacije", "page-index-cta-get-eth-description": "Valuta Ethereum-a", "page-index-cta-get-eth-label": "Uzmi ETH", - "page-index-cta-networks-description": "Uživajte u minimalnim provizijama", - "page-index-cta-networks-label": "Izaberite mrežu", "page-index-cta-wallet-description": "Kreirajte račune i upravljajte sredstvima", "page-index-cta-wallet-label": "Odaberi novčanik", + "page-index-cta-build-apps-description": "Kreirajte svoju prvu aplikaciju", + "page-index-cta-build-apps-label": "Počnite razvoj", "page-index-description": "Vodeća platforma za inovativne aplikacije i mreže lanca blokova", "page-index-developers-code-example-description-0": "Izgradite banku koju pokreće logika koju ste programirali", "page-index-developers-code-example-description-1": "Kreirajte tokene koje možete da prenosite i koristite u različitim aplikacijama", diff --git a/src/intl/sw/page-index.json b/src/intl/sw/page-index.json index 53edfb9caec..c74fed64c0f 100644 --- a/src/intl/sw/page-index.json +++ b/src/intl/sw/page-index.json @@ -37,10 +37,10 @@ "page-index-cta-dapps-label": "Jaribu programu", "page-index-cta-get-eth-description": "Sarafu ya Ethereum", "page-index-cta-get-eth-label": "Pata ETH", - "page-index-cta-networks-description": "Furahia ada za chini", - "page-index-cta-networks-label": "Chagua mtandao", "page-index-cta-wallet-description": "Tengeneza akaunti & uthibiti mali", "page-index-cta-wallet-label": "Chagua pochi", + "page-index-cta-build-apps-description": "Tengeneza app yako ya kwanza", + "page-index-cta-build-apps-label": "Anza kuendeleza", "page-index-description": "Jukwaa linaloongoza la programu bunifu na mitandao ya blockchain", "page-index-developers-code-example-description-0": "Unda benki inayoendeshwa na mantiki uliyopanga", "page-index-developers-code-example-description-1": "Unda tokeni ambazo unaweza kuhamisha na kutumia katika programu tofauti", diff --git a/src/intl/ta/page-index.json b/src/intl/ta/page-index.json index 0706bcc355b..84429f87fed 100644 --- a/src/intl/ta/page-index.json +++ b/src/intl/ta/page-index.json @@ -36,10 +36,10 @@ "page-index-cta-dapps-label": "செயலிகளை முயற்சிக்கவும்", "page-index-cta-get-eth-description": "Ethereum -இன் நாணயம்", "page-index-cta-get-eth-label": "ETH பெறுக", - "page-index-cta-networks-description": "குறைந்தபட்ச கட்டணத்தை மகிழ்ந்திடுங்கள்", - "page-index-cta-networks-label": "ஒரு பிணையத்தை தேர்ந்தெடுங்கள்", "page-index-cta-wallet-description": "கணக்குகளை உருவாக்கி, உடைமைகளை நிர்வகித்திடுங்கள்", "page-index-cta-wallet-label": "பணப்பையைத் தேர்வுசெய்க", + "page-index-cta-build-apps-description": "உங்கள் முதல் பயன்பாட்டை உருவாக்குங்கள்", + "page-index-cta-build-apps-label": "உருவாக்கத்தைத் தொடங்குங்கள்", "page-index-description": "புதுமையான செயலிகள் மற்றும் பிளாக்செயின் பிணையங்களுக்கான முன்னணி தளம்", "page-index-developers-code-example-description-0": "நீங்கள் புரோகிராம் செய்த லாஜிக் மூலம் இயங்கும் ஒரு வங்கியை உருவாக்கிடுங்கள்", "page-index-developers-code-example-description-1": "நாணயப் பரிமாற்றம் செய்து அனைத்துச் செயலிகளிலும் பயன்படுத்துவதற்கான டோக்கன்களை உருவாக்கிடுங்கள்", diff --git a/src/intl/te/page-index.json b/src/intl/te/page-index.json index 26d0d062a7a..98f29527ce1 100644 --- a/src/intl/te/page-index.json +++ b/src/intl/te/page-index.json @@ -37,10 +37,10 @@ "page-index-cta-dapps-label": "యాప్‌లను ప్రయత్నించండి", "page-index-cta-get-eth-description": "Ethereum యొక్క కరెన్సీ", "page-index-cta-get-eth-label": "ETHను పొందండి", - "page-index-cta-networks-description": "కనిష్ట రుసుములతో ఆనందించండి", - "page-index-cta-networks-label": "ఒక నెట్‌వర్క్‌ను ఎంచుకోండి", "page-index-cta-wallet-description": "ఖాతాలను సృష్టించండి & ఆస్తులను నిర్వహించండి", "page-index-cta-wallet-label": "వాలెట్‌ను ఎంచుకోండి", + "page-index-cta-build-apps-description": "మీ మొదటి యాప్‌ను సృష్టించండి", + "page-index-cta-build-apps-label": "అభివృద్ధిని ప్రారంభించండి", "page-index-description": "వినూత్న యాప్‌లు మరియు బ్లాక్‌చెయిన్ నెట్‌వర్క్‌ల కోసం ప్రముఖ ప్లాట్‌ఫారమ్", "page-index-developers-code-example-description-0": "మీరు ప్రోగ్రామ్ చేసిన లాజిక్‌తో నడిచే బ్యాంక్‌ను మీరు నిర్మించుకోవచ్చు", "page-index-developers-code-example-description-1": "మీరు అప్లికేషన్లలో బదిలీ చేయగల మరియు ఉపయోగించగల టోకెన్‌లను సృష్టించండి", diff --git a/src/intl/th/page-index.json b/src/intl/th/page-index.json index 991ce9a193e..7c8dca97e3e 100644 --- a/src/intl/th/page-index.json +++ b/src/intl/th/page-index.json @@ -37,10 +37,10 @@ "page-index-cta-dapps-label": "ลองใช้แอป", "page-index-cta-get-eth-description": "สกุลเงินของอีเธอเรียม", "page-index-cta-get-eth-label": "รับ ETH", - "page-index-cta-networks-description": "ใช้งานโดยมีค่าธรรมเนียมขั้นต่ำ", - "page-index-cta-networks-label": "เลือกเครือข่าย", "page-index-cta-wallet-description": "สร้างบัญชีและจัดการสินทรัพย์", "page-index-cta-wallet-label": "เลือกวอลเล็ท", + "page-index-cta-build-apps-description": "สร้างแอปแรกของคุณ", + "page-index-cta-build-apps-label": "เริ่มต้นการพัฒนา", "page-index-description": "แพลตฟอร์มชั้นนำสำหรับแอปที่เป็นนวัตกรรมและเครือข่าย blockchain", "page-index-developers-code-example-description-0": "สร้างธนาคารที่ทำงานด้วยตรรกะที่คุณเขียนโปรแกรมเอง", "page-index-developers-code-example-description-1": "สร้างโทเค็นที่สามารถถ่ายโอนและใช้ระหว่างแอปพลิเคชันต่าง ๆ ได้", diff --git a/src/intl/tk/page-index.json b/src/intl/tk/page-index.json index d9afbaa911d..886e5f4cc32 100644 --- a/src/intl/tk/page-index.json +++ b/src/intl/tk/page-index.json @@ -35,10 +35,10 @@ "page-index-cta-dapps-label": "Programmalary barlap görüň", "page-index-cta-get-eth-description": "Ethereumyň walýutasy", "page-index-cta-get-eth-label": "ETH edinmek", - "page-index-cta-networks-description": "Iň az töleglerden peýdalanyň", - "page-index-cta-networks-label": "Tor saýlaň", "page-index-cta-wallet-description": "Hasap dörediň we aktiwleri dolandyryň", "page-index-cta-wallet-label": "Gapjyk saýlaň", + "page-index-cta-build-apps-description": "Ilkinji apyňyzy dörediň", + "page-index-cta-build-apps-label": "Ösdürmegi başlaň", "page-index-description": "Innowasiýa programmalary we blokçeýn torlary üçin öňdebaryjy platforma", "page-index-developers-code-example-description-0": "Öz programmirlän logikaňyz bilen işleýän bank guruň", "page-index-developers-code-example-description-1": "Programmalaryň arasynda geçirip we ulanyp boljak tokenleri dörediň", diff --git a/src/intl/tl/page-index.json b/src/intl/tl/page-index.json index b982adac1c9..d995fb77113 100644 --- a/src/intl/tl/page-index.json +++ b/src/intl/tl/page-index.json @@ -36,10 +36,10 @@ "page-index-cta-dapps-label": "Subukan ang mga app", "page-index-cta-get-eth-description": "Ang currency ng Ethereum", "page-index-cta-get-eth-label": "Kumuha ng ETH", - "page-index-cta-networks-description": "I-enjoy ang mabababang bayarin", - "page-index-cta-networks-label": "Pumili ng network", "page-index-cta-wallet-description": "Gumawa ng mga account at pamahalaan ang mga asset", "page-index-cta-wallet-label": "Pumili ng wallet", + "page-index-cta-build-apps-description": "Lumikha ng iyong unang app", + "page-index-cta-build-apps-label": "Simulan ang pagbuo", "page-index-description": "Ang nangungunang platform para sa mga makabagong app at network ng blockchain", "page-index-developers-code-example-description-0": "Magtayo ng bangko na pinapagana ng lohikang ikaw ang nagprograma", "page-index-developers-code-example-description-1": "Gumawa ng mga token na maaaring mailipat at magagamit sa iba't ibang application", diff --git a/src/intl/tr/page-index.json b/src/intl/tr/page-index.json index 76783026d33..024492d97fc 100644 --- a/src/intl/tr/page-index.json +++ b/src/intl/tr/page-index.json @@ -37,10 +37,10 @@ "page-index-cta-dapps-label": "Uygulamaları deneyin", "page-index-cta-get-eth-description": "Ethereum para birimi", "page-index-cta-get-eth-label": "ETH edinin", - "page-index-cta-networks-description": "Düşük ücretlerden yararlanın", - "page-index-cta-networks-label": "Bir ağ seçin", "page-index-cta-wallet-description": "Hesaplar oluşturun ve varlıkları yönetin", "page-index-cta-wallet-label": "Bir cüzdan seçin", + "page-index-cta-build-apps-description": "İlk uygulamanızı oluşturun", + "page-index-cta-build-apps-label": "Geliştirmeye başlayın", "page-index-description": "Yenilikçi uygulamalar ve blok zinciri ağları için lider platform", "page-index-developers-code-example-description-0": "Programlamış olduğunuz mantıkla desteklenen bir banka kurun", "page-index-developers-code-example-description-1": "Uygulamalar arasında transfer edebileceğiniz ve kullanabileceğiniz jetonlar oluşturun", diff --git a/src/intl/tw/page-index.json b/src/intl/tw/page-index.json index 8936901ed6e..557a820c4e9 100644 --- a/src/intl/tw/page-index.json +++ b/src/intl/tw/page-index.json @@ -36,10 +36,10 @@ "page-index-cta-dapps-label": "So apps no hwe", "page-index-cta-get-eth-description": "Ethereum sika no", "page-index-cta-get-eth-label": "Nya ETH no bi", - "page-index-cta-networks-description": "Nya enigye fri ka ketewaa mu", - "page-index-cta-networks-label": "Fa netwek", "page-index-cta-wallet-description": "Ye akawnt na manegye agyapade", "page-index-cta-wallet-label": "Pɛ sika kotoku", + "page-index-cta-build-apps-description": "Yɛ wo app a edi kan", + "page-index-cta-build-apps-label": "Hyɛ ase yɛ adwuma", "page-index-description": "Beae aa edikan di ma apps afoforo ne blockchain netweks", "page-index-developers-code-example-description-0": "Fa logic aa waye no si bank", "page-index-developers-code-example-description-1": "Ye token aa wobetumi amena na wode edi dwuma wɔ aplikeshins ahorow nyinaa mu", diff --git a/src/intl/uk/page-index.json b/src/intl/uk/page-index.json index 775ed647df2..9377120349e 100644 --- a/src/intl/uk/page-index.json +++ b/src/intl/uk/page-index.json @@ -36,10 +36,10 @@ "page-index-cta-dapps-label": "Скористайтеся програмами", "page-index-cta-get-eth-description": "Валюта Ethereum", "page-index-cta-get-eth-label": "Отримати ETH", - "page-index-cta-networks-description": "Скористайтеся перевагами мінімальної комісії", - "page-index-cta-networks-label": "Оберіть мережу", "page-index-cta-wallet-description": "Створюйте облікові записи та керуйте активами", "page-index-cta-wallet-label": "Виберіть гаманець", + "page-index-cta-build-apps-description": "Створіть свій перший застосунок", + "page-index-cta-build-apps-label": "Почніть розробку", "page-index-description": "Провідна платформа інноваційних програм і блокчейн-мереж", "page-index-developers-code-example-description-0": "Створіть банк, який користається запрограмованою вами логікою", "page-index-developers-code-example-description-1": "Створюйте токени, які можна переносити в інші програми та використовувати в них", diff --git a/src/intl/ur/page-index.json b/src/intl/ur/page-index.json index 39c04606a8d..564dafcd3d2 100644 --- a/src/intl/ur/page-index.json +++ b/src/intl/ur/page-index.json @@ -36,10 +36,10 @@ "page-index-cta-dapps-label": "ایپس آزمائیں", "page-index-cta-get-eth-description": "Ethereum کی کرنسی", "page-index-cta-get-eth-label": "ETH حاصل کریں", - "page-index-cta-networks-description": "کم ترین فیس سے لطف اندوز ہوں", - "page-index-cta-networks-label": "ایک نیٹ ورک منتخب کریں", "page-index-cta-wallet-description": "اکاؤنٹس تخلیق کریں یا اثاثہ جات کا نظم کریں", "page-index-cta-wallet-label": "والیٹ منتخب کریں", + "page-index-cta-build-apps-description": "اپنی پہلی ایپ بنائیں", + "page-index-cta-build-apps-label": "ترقی شروع کریں", "page-index-description": "جدید ایپس اور بلاک چین نیٹ ورکس کے لیے ایک سرکردہ پلیٹ فارم", "page-index-developers-code-example-description-0": "اپنی پروگرام کردہ لاجک کے ذریعے تقویت یافتہ بینک بنائیں", "page-index-developers-code-example-description-1": "ایسے ٹوکنز تخلیق کریں جو آپ ٹرانسفر کر سکتے ہیں اور ایپلیکیشنز میں استعمال کر سکتے ہیں", diff --git a/src/intl/uz/page-index.json b/src/intl/uz/page-index.json index 1f9b527bd1c..cade4d136ec 100644 --- a/src/intl/uz/page-index.json +++ b/src/intl/uz/page-index.json @@ -36,10 +36,10 @@ "page-index-cta-dapps-label": "Ilovalarni sinash", "page-index-cta-get-eth-description": "Ethereum valyutasi", "page-index-cta-get-eth-label": "ETH olish", - "page-index-cta-networks-description": "Minimal toʻlovlardan zavqlaning", - "page-index-cta-networks-label": "Tarmoqni tanlang", "page-index-cta-wallet-description": "Hisoblar yaratish va aktivlarni boshqarish", "page-index-cta-wallet-label": "Hamyonni tanlang", + "page-index-cta-build-apps-description": "Birinchi ilovangizni yarating", + "page-index-cta-build-apps-label": "Rivojlantirishni boshlang", "page-index-description": "Innovatsion ilovalar va blokcheyn tarmoqlari boʻyicha yetakchi platforma", "page-index-developers-code-example-description-0": "Siz dasturlashtirgan mantiq bilan boshqariladigan bank yarating", "page-index-developers-code-example-description-1": "Ilovalar boʻylab uzatishingiz va ishlatishingiz mumkin boʻlgan tokenlarni yarating", diff --git a/src/intl/vi/page-index.json b/src/intl/vi/page-index.json index e2770054a5a..b30c6b9462e 100644 --- a/src/intl/vi/page-index.json +++ b/src/intl/vi/page-index.json @@ -37,10 +37,10 @@ "page-index-cta-dapps-label": "Dùng thử ứng dụng", "page-index-cta-get-eth-description": "Tiền tệ của Ethereum", "page-index-cta-get-eth-label": "Mua ETH", - "page-index-cta-networks-description": "Tận hưởng mức phí tối thiểu", - "page-index-cta-networks-label": "Chọn một mạng", "page-index-cta-wallet-description": "Tạo tài khoản & quản lý tài sản", "page-index-cta-wallet-label": "Chọn ví", + "page-index-cta-build-apps-description": "Hãy tạo ứng dụng đầu tiên của quý vị", + "page-index-cta-build-apps-label": "Bắt đầu phát triển", "page-index-description": "Nền tảng hàng đầu cho các ứng dụng sáng tạo và mạng chuỗi khối", "page-index-developers-code-example-description-0": "Xây dựng một ngân hàng được vận hành bằng logic mà bạn đã lập trình", "page-index-developers-code-example-description-1": "Tạo token mà bạn có thể chuyển và sử dụng trên nhiều ứng dụng", diff --git a/src/intl/yo/page-index.json b/src/intl/yo/page-index.json index 3867d36a505..f70089cb8b7 100644 --- a/src/intl/yo/page-index.json +++ b/src/intl/yo/page-index.json @@ -36,10 +36,10 @@ "page-index-cta-dapps-label": "Gbìyànjú àwọn ohun èlò ẹ̀rọ", "page-index-cta-get-eth-description": "Owó ti Ethereum", "page-index-cta-get-eth-label": "Gba ETH", - "page-index-cta-networks-description": "Jẹ ìgbádùn owó péréte", - "page-index-cta-networks-label": "Yan nẹ́tíwọọkì kan", "page-index-cta-wallet-description": "Ṣẹ̀dá àkántì àti ṣàkóso àwọn ohun-ìní", "page-index-cta-wallet-label": "Mú wọ́lẹ́ẹ́tì kan", + "page-index-cta-build-apps-description": "Ṣẹda app rẹ̀ àkọ́kọ́́", + "page-index-cta-build-apps-label": "Bẹrẹ idagbasoke", "page-index-description": "Pẹpẹ asíwájú fún àwọn ohun èlò tuntun àti àwọn nẹ́tíwọọkì blockchain", "page-index-developers-code-example-description-0": "Kọ́ bánkì kan tí ó ní agbára nípasẹ̀ ọgbọ́n tí o ti ṣètò", "page-index-developers-code-example-description-1": "Ṣẹ̀dá tọ́kẹ̀n tí o lè fi ránṣẹ́ tàbí lò lorí àwọn ohun èlò ẹ̀ro", diff --git a/src/intl/zh-tw/page-index.json b/src/intl/zh-tw/page-index.json index 9e5e14461ef..9bd6258e931 100644 --- a/src/intl/zh-tw/page-index.json +++ b/src/intl/zh-tw/page-index.json @@ -37,10 +37,10 @@ "page-index-cta-dapps-label": "嘗試應用程式", "page-index-cta-get-eth-description": "以太坊的貨幣", "page-index-cta-get-eth-label": "取得以太幣", - "page-index-cta-networks-description": "享用最低額度的費用", - "page-index-cta-networks-label": "選擇網路", "page-index-cta-wallet-description": "創建帳戶,管理資產", "page-index-cta-wallet-label": "選一個錢包", + "page-index-cta-build-apps-description": "建立你的第一個應用程式", + "page-index-cta-build-apps-label": "開始開發", "page-index-description": "區塊鏈網路與創新應用程式的頂尖平台", "page-index-developers-code-example-description-0": "建置由自已寫出來的邏輯所支援的銀行", "page-index-developers-code-example-description-1": "製作可跨應用程式轉移和使用的代幣", diff --git a/src/intl/zh/page-index.json b/src/intl/zh/page-index.json index 332692c1a45..1755afc5a99 100644 --- a/src/intl/zh/page-index.json +++ b/src/intl/zh/page-index.json @@ -37,10 +37,10 @@ "page-index-cta-dapps-label": "试用应用程序", "page-index-cta-get-eth-description": "以太坊的货币", "page-index-cta-get-eth-label": "获取以太币", - "page-index-cta-networks-description": "享受最低收费", - "page-index-cta-networks-label": "选择一个网络", "page-index-cta-wallet-description": "创建帐户和管理资产", "page-index-cta-wallet-label": "选择一个钱包", + "page-index-cta-build-apps-description": "创建你的第一个应用", + "page-index-cta-build-apps-label": "开始构建", "page-index-description": "创新应用程序和区块链网络的首要平台", "page-index-developers-code-example-description-0": "用你编写的逻辑构建银行", "page-index-developers-code-example-description-1": "创建可跨应用程序转账和使用的代币",