feat(i18n): add French locale (#1438)

* feat(i18n): add French locale

* chore(i18n): include French in audit script
This commit is contained in:
Pascal André
2026-04-13 19:34:25 +02:00
committed by GitHub
parent 9d7b8027a5
commit 2ffdf5db59
4 changed files with 2090 additions and 4 deletions

View File

@@ -25,7 +25,7 @@ const REPO_ROOT = resolve(__dirname, "..");
const LOCALES_DIR = join(REPO_ROOT, "apps/app/src/i18n/locales");
const APP_SRC = join(REPO_ROOT, "apps/app/src");
const LOCALES = ["ja", "zh", "vi", "pt-BR", "th"];
const LOCALES = ["ja", "zh", "vi", "pt-BR", "th", "fr"];
const EN_FILE = join(LOCALES_DIR, "en.ts");
const mode = process.argv[2] ?? "--all";