Add Thai language file.

This commit is contained in:
Panu Guyson 2017-09-22 12:05:18 +07:00
parent 4fce7f2cea
commit 201fac6c81
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
};