feat: Added Vietnamese translation (#834)

This commit is contained in:
Nguyen Quang Huy
2025-08-07 18:01:01 +07:00
committed by GitHub
parent 89b34eddc1
commit e83bbf3121
2 changed files with 487 additions and 0 deletions

View File

@@ -22,6 +22,7 @@ import sv from "./translations/sv.json";
import tlh from "./translations/tlh.json";
import tr from "./translations/tr.json";
import uk from "./translations/uk.json";
import vi from "./translations/vi.json";
import zhCN from "./translations/zh-CN.json";
import zhTW from "./translations/zh-TW.json";
@@ -49,6 +50,7 @@ export const APP_LANGUAGES = [
{ label: "Українська", value: "uk" },
{ label: "简体中文", value: "zh-CN" },
{ label: "繁體中文", value: "zh-TW" },
{ label: "Tiếng Việt", value: "vi" },
];
i18n.use(initReactI18next).init({
@@ -75,6 +77,7 @@ i18n.use(initReactI18next).init({
tr: { translation: tr },
tlh: { translation: tlh },
uk: { translation: uk },
vi: { translation: vi },
"zh-CN": { translation: zhCN },
"zh-TW": { translation: zhTW },
},