Merge branch 'master' into master

This commit is contained in:
Sara Steiert 2017-09-25 20:58:54 +02:00 committed by GitHub
commit b94090f4a7
5 changed files with 40 additions and 2 deletions

11
src/lang/pt-br.js Normal file
View File

@ -0,0 +1,11 @@
/* eslint-disable */
const ptbr = {
headings: {
contact: 'Contato',
experience: 'Experiência Profissional',
education: 'Educação',
skills: 'Competências',
about: 'Sobre'
}
};
export default ptbr;

13
src/lang/ru.js Normal file
View File

@ -0,0 +1,13 @@
/* eslint-disable */
const ru = {
headings: {
contact: "Контакты",
experience: "Опыт",
education: "Обучение",
skills: "Навыки",
about: "Обо мне"
}
};
export default ru;

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

@ -0,0 +1,11 @@
/* eslint-disable */
const sv = {
headings: {
contact: 'Kontakt',
experience: 'Arbetslivserfarenhet',
education: 'Utbildning',
skills: 'Kunskaper',
about: 'Om mig'
}
};
export default sv;

View File

@ -84,5 +84,5 @@ export const PERSON = {
website: 'johndoe.com',
github: 'johnyD'
},
lang: 'en' // en, de, fr, pt, cn, it, es, th, id
lang: 'en' // en, de, fr, pt, cn, it, es, th, pt-br, ru, sv, id
};

View File

@ -7,7 +7,10 @@ import it from './lang/it';
import es from './lang/es';
import th from './lang/th';
import id from './lang/id';
import sv from './lang/sv';
import ru from './lang/ru';
import ptbr from './lang/pt-br';
export const terms = {
en, de, fr, pt, cn, it, es, th, id
en, de, fr, pt, cn, it, es, th, 'pt-br': ptbr, ru, sv, id
};