feat(i18n): add Korean (ko-KR) localization

- Add complete Korean locale across all 7 i18n namespaces
- All translation keys match the English baseline 1:1
- Register ko-KR in SUPPORTED_LOCALES and i18n-check validation

Refs siddharthvaddem/openscreen#406
This commit is contained in:
kwakseongjae
2026-04-10 16:00:25 +09:00
parent e7d5f51740
commit d512f59826
9 changed files with 427 additions and 2 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ import path from "node:path";
const LOCALES_DIR = path.resolve("src/i18n/locales");
const BASE_LOCALE = "en";
const COMPARE_LOCALES = ["zh-CN", "es", "tr"];
const COMPARE_LOCALES = ["zh-CN", "es", "tr", "ko-KR"];
function getKeys(obj, prefix = "") {
const keys = [];