Merge pull request #97 from jk195417/master

Add Chinese traditional language file
This commit is contained in:
Sara Steiert 2017-10-18 15:31:07 +02:00 committed by GitHub
commit 9b067fe7a2
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, nl, he
lang: 'en' // en, de, fr, pt, cn, it, es, th, pt-br, ru, sv, id, hu, pl, ja, nl, he, zh-tw
};

View File

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