Add theme i18n component

This commit is contained in:
2022-02-24 15:21:32 +08:00
parent 0eb0b6f7f5
commit 6ee85aff1b
14 changed files with 1375 additions and 863 deletions
+5
View File
@@ -0,0 +1,5 @@
const EN_US = {
"EN_US": "English (US)",
"ZH_CN": "Chinese (Simplified)"
}
export default EN_US;
+5
View File
@@ -0,0 +1,5 @@
const ZH_CN = {
"EN_US": "英语 (美国)",
"ZH_CN": "中文 (简体)"
}
export default ZH_CN;
View File
View File