Add Traditional Chinese localization. (#201)

* i18n: better formatted yaml for newline matter

* i18n: add zh-tw.yaml


Former-commit-id: e9acae3ae0606e998f49580c747d825d6cee2d3b [formerly 636069d89a37f774b715cbbb4a7989dc23d44feb] [formerly 851dccd385f04b15a9add0b0bab94c6b14d78710 [formerly b35dddc8b5823afccba513040bc99bf5ed12e284]]
Former-commit-id: 1a48d307e3d81ce78d71ea0983b68e080a56bd0d [formerly a1bc2290c3578a770593baa95dd5e399d8b6b862]
Former-commit-id: 41eb7b7fdb4bb1a446012e1e35b35e664c371e78
This commit is contained in:
Equim
2017-08-12 23:25:53 +08:00
committed by Henrique Dias
parent 4c8b118848
commit 89a8360c4c
7 changed files with 259 additions and 54 deletions

View File

@@ -4,6 +4,7 @@ import en from './en.yaml'
import pt from './pt.yaml'
import ja from './ja.yaml'
import zhCN from './zh-cn.yaml'
import zhTW from './zh-tw.yaml'
Vue.use(VueI18n)
@@ -15,6 +16,7 @@ const i18n = new VueI18n({
'pt': pt,
'ja': ja,
'zh-cn': zhCN
'zh-tw': zhTW
}
})