Merge branch 'master' into master

This commit is contained in:
Vitaliy Kanev 2017-09-22 19:03:21 +03:00 committed by GitHub
commit b9f856f527
3 changed files with 16 additions and 2 deletions

11
src/lang/th.js Normal file
View File

@ -0,0 +1,11 @@
/* eslint-disable */
const th = {
headings: {
contact: 'ข้อมูลติดต่อ',
experience: 'ประสบการณ์ทำงาน',
education: 'ประวัติการศึกษา',
skills: 'ทักษะและความสามารถ',
about: 'ข้อมูลส่วนตัว'
}
};
export default th;

View File

@ -84,5 +84,7 @@ export const PERSON = {
website: 'johndoe.com',
github: 'johnyD'
},
lang: 'en' // en, de, fr, pt, cn, it, es, ru
lang: 'en' // en, de, fr, pt, cn, it, es, th, ru
};

View File

@ -5,8 +5,9 @@ import pt from './lang/pt';
import cn from './lang/cn';
import it from './lang/it';
import es from './lang/es';
import th from './lang/th';
import ru from './lang/ru';
export const terms = {
en, de, fr, pt, cn, it, es, ru
en, de, fr, pt, cn, it, es, th, ru
};