From 1a6f5a027f403b0131e1e456aa42989a1da44108 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Sat, 25 Oct 2025 18:21:52 +0300 Subject: [PATCH] chore(website/i18n): add English too --- apps/website/src/i18n.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/website/src/i18n.ts b/apps/website/src/i18n.ts index a3305a71c..0d50259fe 100644 --- a/apps/website/src/i18n.ts +++ b/apps/website/src/i18n.ts @@ -9,6 +9,7 @@ interface Locale { } export const LOCALES: Locale[] = [ + { id: "en", name: "English" }, { id: "ro", name: "Română" }, { id: "zh_TW", name: "繁體中文" }, { id: "fr", name: "Français" },