Merge branch 'master' into master
This commit is contained in:
commit
8432ce2452
@ -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
11
src/lang/es.js
Normal 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;
|
||||
@ -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;
|
||||
|
||||
@ -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;
|
||||
|
||||
@ -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
11
src/lang/th.js
Normal file
@ -0,0 +1,11 @@
|
||||
/* eslint-disable */
|
||||
const th = {
|
||||
headings: {
|
||||
contact: 'ข้อมูลติดต่อ',
|
||||
experience: 'ประสบการณ์ทำงาน',
|
||||
education: 'ประวัติการศึกษา',
|
||||
skills: 'ทักษะและความสามารถ',
|
||||
about: 'ข้อมูลส่วนตัว'
|
||||
}
|
||||
};
|
||||
export default th;
|
||||
@ -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
|
||||
};
|
||||
|
||||
@ -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
|
||||
};
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user