diff --git a/app/[lang]/programs/index.tsx b/app/[lang]/programs/index.tsx index 2a482459..d589a3aa 100644 --- a/app/[lang]/programs/index.tsx +++ b/app/[lang]/programs/index.tsx @@ -3,7 +3,7 @@ import { useCallback, useEffect, useRef, useState } from "react" import Image from "next/image" import Link from "next/link" -import { acceleratorProgramFaq } from "@/data/programs/acceleratorProgramFaq" +import { accelerationProgramFaq } from "@/data/programs/accelerationProgramFaq" import { coreProgramFaq } from "@/data/programs/coreProgramFaq" import { ReactNode } from "react-markdown/lib/ast-to-react" import { twMerge } from "tailwind-merge" @@ -92,7 +92,7 @@ const ProgramDetail = ({ ) } -const ProgramSections = ["coreProgram", "acceleratorProgram"] as const +const ProgramSections = ["coreProgram", "accelerationProgram"] as const export const ProgramPageContent = ({ lang }: any) => { const { t } = useTranslation(lang, "programs-page") @@ -111,8 +111,8 @@ export const ProgramPageContent = ({ lang }: any) => { t("coreProgram.description", { returnObjects: true, }) || [] - const acceleratorProgramDescription: any[] = - t("acceleratorProgram.description", { + const accelerationProgramDescription: any[] = + t("accelerationProgram.description", { returnObjects: true, }) ?? [] @@ -347,12 +347,12 @@ export const ProgramPageContent = ({ lang }: any) => {
- + { />
- {acceleratorProgramDescription?.map((description, index) => { + {accelerationProgramDescription?.map((description, index) => { return ( { { return { label: ( diff --git a/app/i18n/locales/en/programs-page.json b/app/i18n/locales/en/programs-page.json index 5ac3d14d..cda56cce 100644 --- a/app/i18n/locales/en/programs-page.json +++ b/app/i18n/locales/en/programs-page.json @@ -65,10 +65,10 @@ "By the end of the program, you will gain comprehensive knowledge about Zero Knowledge Proofs (ZKP), Fully Homomorphic Encryption (FHE), and Multiparty Computation (MPC). You will also bolster your GitHub portfolio, and potentially receive grants for further research and contributions!" ] }, - "acceleratorProgram": { - "title": "Accelerator Program", + "accelerationProgram": { + "title": "Acceleration program", "description": [ - "The Accelerator Program supports alumni of our entry level programs (e.g. Core Program, ZK Summer, ZK Playground) to deepen explorations of ZKP, FHE, MPC, and related technologies through grants and mentorship. This program operates on a round-based application system, focusing on specific open tasks for each round." + "Acceleration program supports alumni of our entry level programs (e.g. Core Program, ZK Summer, ZK Playground) to deepen explorations of ZKP, FHE, MPC, and related technologies through grants and mentorship. This program operates on a round-based application system, focusing on specific open tasks for each round." ] }, "howToApply": { @@ -88,4 +88,4 @@ ] } } -} \ No newline at end of file +} diff --git a/app/i18n/locales/ja/programs-page.json b/app/i18n/locales/ja/programs-page.json index 20fecd0c..e75dd932 100644 --- a/app/i18n/locales/ja/programs-page.json +++ b/app/i18n/locales/ja/programs-page.json @@ -65,7 +65,7 @@ "プログラムの終了までに、ゼロ知識証明 (ZKP)、完全準同型暗号 (FHE)、およびマルチパーティ計算 (MPC) に関する包括的な知識を習得できます。また、GitHubのポートフォリオを強化し、さらなる研究や貢献のための助成金を受け取る可能性もあります。 " ] }, - "acceleratorProgram": { + "accelerationProgram": { "title": "アクセラレータプログラム", "description": [ "アクセラレーター・プログラムは、ZKP、FHE、MPC、および関連技術の探求を深めるためのエントリー・レベル・プログラム(コア・プログラム、ZKサマー、ZKプレイグラウンドなど)の修了生を、助成金やメンターシップを通じて支援するものです。このプログラムは、ラウンド・ベースの応募システムで運営され、各ラウンドの特定のオープン・タスクに焦点を当てます。" @@ -88,4 +88,4 @@ ] } } -} \ No newline at end of file +} diff --git a/config/site.ts b/config/site.ts index 22f41f2d..c06ab5c7 100644 --- a/config/site.ts +++ b/config/site.ts @@ -22,7 +22,7 @@ export const siteConfig = { firstGoodIssue: "https://gfi.pse.dev/", discordAnnouncementChannel: "https://discord.com/channels/943612659163602974/969614451089227876", - acceleratorProgram: + accelerationProgram: "https://github.com/privacy-scaling-explorations/acceleration-program", coreProgram: "https://docs.google.com/forms/d/e/1FAIpQLSendzYY0z_z7fZ37g3jmydvzS9I7OWKbY2JrqAnyNqeaBHvMQ/viewform", diff --git a/data/programs/acceleratorProgramFaq.tsx b/data/programs/accelerationProgramFaq.tsx similarity index 87% rename from data/programs/acceleratorProgramFaq.tsx rename to data/programs/accelerationProgramFaq.tsx index c739d29c..73971920 100644 --- a/data/programs/acceleratorProgramFaq.tsx +++ b/data/programs/accelerationProgramFaq.tsx @@ -1,10 +1,10 @@ import { Faq } from "@/lib/types" -export const acceleratorProgramFaq: Faq[] = [ +export const accelerationProgramFaq: Faq[] = [ { question: "Who can apply?", answer: - "The Accelerator program is open to alumni of our entry level programs (e.g. Launch Program, ZK Playground) and other applicants at beginner to intermediate levels with programmable cryptography.", + "The Acceleration program is open to alumni of our entry level programs (e.g. Launch Program, ZK Playground) and other applicants at beginner to intermediate levels with programmable cryptography.", }, { question: "What platform does the program use?",