feat(i18n): add Catalan locale (#1450)

* feat(i18n): add Catalan locale

Give Catalan speakers full UI coverage while keeping locale parity with the English source and existing locale audits.

* fix(i18n): align Catalan product terminology

Use the requested in-product terms for workspace, paquet, and sandbox while keeping the Catalan locale consistent around runtime, host, and deep link wording.

* canvis de wording
This commit is contained in:
Jan Carbonell
2026-04-15 18:30:51 -07:00
committed by GitHub
parent c3938e0994
commit e232aba925
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", "fr", "es"];
const LOCALES = ["ja", "zh", "vi", "pt-BR", "th", "fr", "ca", "es"];
const EN_FILE = join(LOCALES_DIR, "en.ts");
const mode = process.argv[2] ?? "--all";