diff --git a/src/lang/cn.js b/src/lang/cn.js index 0eaf2f0..230b93c 100644 --- a/src/lang/cn.js +++ b/src/lang/cn.js @@ -5,7 +5,7 @@ const cn = { experience: '工作经历', education: '教育经历', skills: '技能专长', - about: 'About me' // Translation needed! + about: '自我介绍' } }; export default cn; diff --git a/src/lang/es.js b/src/lang/es.js new file mode 100644 index 0000000..308a167 --- /dev/null +++ b/src/lang/es.js @@ -0,0 +1,11 @@ +/* eslint-disable */ +const es = { + headings: { + contact: 'Contacto', + experience: 'Experiencia', + education: 'Educación', + skills: 'Habilidades', + about: 'Sobre mi' + } +}; +export default es; diff --git a/src/lang/fr.js b/src/lang/fr.js index 81963c1..8b2ec0f 100644 --- a/src/lang/fr.js +++ b/src/lang/fr.js @@ -2,10 +2,10 @@ const fr = { headings: { contact: 'Contact', - experience: 'Expériences professionelles', + experience: 'Expérience professionelle', education: 'Formation', skills: 'Compétences', - about: 'C\'est moi' + about: 'À propos de moi' } }; export default fr; diff --git a/src/lang/it.js b/src/lang/it.js index 8176d06..d8fa490 100644 --- a/src/lang/it.js +++ b/src/lang/it.js @@ -5,7 +5,7 @@ const it = { experience: 'Esperienza professionale', education: 'Formazione', skills: 'Competenze', - about: 'About me' // Translation needed! + about: 'Su di me' } }; export default it; diff --git a/src/lang/pt.js b/src/lang/pt.js index 6bc20cb..bf87f02 100644 --- a/src/lang/pt.js +++ b/src/lang/pt.js @@ -5,7 +5,7 @@ const pt = { experience: 'Experiência Profissional', education: 'Educação', skills: 'Competências', - about: 'About me' // Translation needed! + about: 'Sobre mim' } }; export default pt; diff --git a/src/lang/th.js b/src/lang/th.js new file mode 100644 index 0000000..1f4aca5 --- /dev/null +++ b/src/lang/th.js @@ -0,0 +1,11 @@ +/* eslint-disable */ +const th = { + headings: { + contact: 'ข้อมูลติดต่อ', + experience: 'ประสบการณ์ทำงาน', + education: 'ประวัติการศึกษา', + skills: 'ทักษะและความสามารถ', + about: 'ข้อมูลส่วนตัว' + } +}; +export default th; diff --git a/src/person.js b/src/person.js index 8634b00..50baa6d 100755 --- a/src/person.js +++ b/src/person.js @@ -84,5 +84,5 @@ export const PERSON = { website: 'johndoe.com', github: 'johnyD' }, - lang: 'en' // en, de, fr, pt, cn, it, pt-br + lang: 'en' // en, de, fr, pt, cn, it, es, th, pt-br }; diff --git a/src/terms.js b/src/terms.js index d49ed60..0b518dc 100755 --- a/src/terms.js +++ b/src/terms.js @@ -4,8 +4,10 @@ import fr from './lang/fr'; 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 ptbr from './lang/pt-br'; export const terms = { - en, de, fr, pt, cn, it, 'pt-br': ptbr + en, de, fr, pt, cn, it, es, th, 'pt-br': ptbr };