i18n(vi): add vietnamese translation (#17)
This commit is contained in:
parent
44808f6a80
commit
831cc30568
13
locales/vi.json
Normal file
13
locales/vi.json
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
{
|
||||||
|
"button": {
|
||||||
|
"back": "Quay lại",
|
||||||
|
"go": "Đi"
|
||||||
|
},
|
||||||
|
"intro": {
|
||||||
|
"desc": "Ý kiến cá nhân Vite Template để bắt đầu",
|
||||||
|
"dynamic-route": "Bản giới thiệu về dynamic route",
|
||||||
|
"hi": "Hi, {name}!",
|
||||||
|
"whats-your-name": "Tên bạn là gì?"
|
||||||
|
},
|
||||||
|
"not-found": "Không tìm thấy"
|
||||||
|
}
|
@ -2,12 +2,14 @@ import en from '../locales/en.json'
|
|||||||
import zhCN from '../locales/zh-CN.json'
|
import zhCN from '../locales/zh-CN.json'
|
||||||
import fr from '../locales/fr.json'
|
import fr from '../locales/fr.json'
|
||||||
import es from '../locales/es.json'
|
import es from '../locales/es.json'
|
||||||
|
import vi from '../locales/vi.json'
|
||||||
|
|
||||||
export const messages = {
|
export const messages = {
|
||||||
en,
|
en,
|
||||||
'zh-CN': zhCN,
|
'zh-CN': zhCN,
|
||||||
fr,
|
fr,
|
||||||
es,
|
es,
|
||||||
|
vi,
|
||||||
}
|
}
|
||||||
|
|
||||||
export const locales = Object.keys(messages)
|
export const locales = Object.keys(messages)
|
||||||
|
Loading…
Reference in New Issue
Block a user