feat(i18n): add Simplified Chinese (#896)

This commit is contained in:
KylinDC
2024-02-20 02:31:09 +08:00
committed by GitHub
parent 3e09b05468
commit e85ea49000
2 changed files with 83 additions and 0 deletions

View File

@ -11,6 +11,7 @@ import ar from "./locales/ar-SA"
import uk from "./locales/uk-UA"
import ru from "./locales/ru-RU"
import ko from "./locales/ko-KR"
import zh from "./locales/zh-CN"
export const TRANSLATIONS = {
"en-US": en,
@ -46,6 +47,7 @@ export const TRANSLATIONS = {
"uk-UA": uk,
"ru-RU": ru,
"ko-KR": ko,
"zh-CN": zh,
} as const
export const defaultTranslation = "en-US"