fix(i18n): fill missing locale translations (#100)

* fix(i18n): fill missing locale translations

* fix(i18n): keep interpolation keys
This commit is contained in:
Nexmoe
2026-01-14 20:25:39 +08:00
committed by GitHub
parent e7957d09ec
commit aed6842319
15 changed files with 2374 additions and 1362 deletions

View File

@@ -6,7 +6,8 @@
"author": "VidBee",
"homepage": "https://github.com/nexmoe/vidbee",
"scripts": {
"check": "biome check --write . && pnpm run typecheck",
"check": "pnpm run check:i18n && biome check --write . && pnpm run typecheck",
"check:i18n": "node scripts/check-locales.js",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "tsc --noEmit -p tsconfig.web.json --composite false",
"typecheck": "pnpm run typecheck:node && pnpm run typecheck:web",