Merge branch 'master' into master

This commit is contained in:
Gabriel Tibúrcio 2017-09-23 10:22:08 -03:00 committed by GitHub
commit 8432ce2452
8 changed files with 31 additions and 7 deletions

View File

@ -5,7 +5,7 @@ const cn = {
experience: '工作经历',
education: '教育经历',
skills: '技能专长',
about: 'About me' // Translation needed!
about: '自我介绍'
}
};
export default cn;

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

@ -0,0 +1,11 @@
/* eslint-disable */
const es = {
headings: {
contact: 'Contacto',
experience: 'Experiencia',
education: 'Educación',
skills: 'Habilidades',
about: 'Sobre mi'
}
};
export default es;

View File

@ -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;

View File

@ -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;

View File

@ -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;

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, pt-br
lang: 'en' // en, de, fr, pt, cn, it, es, th, pt-br
};

View File

@ -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
};