diff --git a/frontend/src/locales/index.ts b/frontend/src/locales/index.ts index 20db62f..99e6c5f 100644 --- a/frontend/src/locales/index.ts +++ b/frontend/src/locales/index.ts @@ -1,6 +1,7 @@ import { createI18n } from 'vue-i18n' import en from './en' import fa from './fa' +import vi from './vi' import zhcn from './zhcn' import zhtw from './zhtw' @@ -11,6 +12,7 @@ export const i18n = createI18n({ messages: { en, fa, + vi, zhcn, zhtw }, @@ -19,6 +21,7 @@ export const i18n = createI18n({ export const languages = [ { title: 'English', value: 'en' }, { title: 'فارسی', value: 'fa' }, + { title: 'Tiếng Việt', value: 'vi' }, { title: '简体中文', value: 'zhcn' }, { title: '繁體中文', value: 'zhtw' }, ]