feat: Add Traditional Chinese (zh-HK) i18n Support (#1988)

* feat:add translation for zh-hk

* fix formatting issues
This commit is contained in:
Rayyamhk
2025-06-27 02:25:02 -04:00
committed by GitHub
parent 6c52301a64
commit 76b8818a33
3 changed files with 244 additions and 0 deletions
+2
View File
@@ -2,6 +2,7 @@ import en from './locales/en.json';
import uk from './locales/uk.json';
import fr from './locales/fr.json';
import de from './locales/de.json';
import zhhk from './locales/zh-HK.json';
export default defineI18nConfig(() => ({
legacy: false,
@@ -11,5 +12,6 @@ export default defineI18nConfig(() => ({
uk,
fr,
de,
'zh-HK': zhhk,
},
}));