Add Chinese traditional language file

This commit is contained in:
楊竑昕 2017-10-18 10:30:53 +08:00
parent 2aef05f36f
commit 2d5c5a5e3b
3 changed files with 14 additions and 2 deletions

11
src/lang/zh-tw.js Normal file
View File

@ -0,0 +1,11 @@
/* eslint-disable */
const zhtw = {
headings: {
contact: '聯絡方式',
experience: '經歷',
education: '學歷',
skills: '技能專長',
about: '自我介紹'
}
};
export default zhtw;

View File

@ -84,5 +84,5 @@ export const PERSON = {
website: 'johndoe.com',
github: 'johnyD'
},
lang: 'en' // en, de, fr, pt, cn, it, es, th, pt-br, ru, sv, id, hu, pl, ja
lang: 'zh-tw' // en, de, fr, pt, cn, it, es, th, pt-br, ru, sv, id, hu, pl, ja, zh-tw
};

View File

@ -13,7 +13,8 @@ import ptbr from './lang/pt-br';
import hu from './lang/hu';
import pl from './lang/pl';
import ja from './lang/ja';
import zhtw from './lang/zh-tw';
export const terms = {
en, de, fr, pt, cn, it, es, th, 'pt-br': ptbr, ru, sv, id, hu, pl, ja
en, de, fr, pt, cn, it, es, th, 'pt-br': ptbr, ru, sv, id, hu, pl, ja, 'zh-tw': zhtw
};