feat(i18n): add Vietnamese translation (#950)

This commit is contained in:
HakuGuen
2024-02-29 16:14:20 -08:00
committed by GitHub
parent f200a0be22
commit 1c42b6365c
2 changed files with 85 additions and 0 deletions

View File

@ -12,6 +12,7 @@ import uk from "./locales/uk-UA"
import ru from "./locales/ru-RU"
import ko from "./locales/ko-KR"
import zh from "./locales/zh-CN"
import vi from "./locales/vi-VN"
export const TRANSLATIONS = {
"en-US": en,
@ -48,6 +49,7 @@ export const TRANSLATIONS = {
"ru-RU": ru,
"ko-KR": ko,
"zh-CN": zh,
"vi-VN": vi,
} as const
export const defaultTranslation = "en-US"