Merge pull request #67 from pguyson/master

Add Thai language file.
This commit is contained in:
Sara Steiert 2017-09-22 08:24:06 +02:00 committed by GitHub
commit de4832168a
3 changed files with 14 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,5 @@ export const PERSON = {
website: 'johndoe.com',
github: 'johnyD'
},
lang: 'en' // en, de, fr, pt, cn, it, es
lang: 'en' // en, de, fr, pt, cn, it, es, th
};

View File

@ -5,7 +5,8 @@ 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';
export const terms = {
en, de, fr, pt, cn, it, es
en, de, fr, pt, cn, it, es, th
};