Merge branch 'master' into master
This commit is contained in:
commit
b94090f4a7
11
src/lang/pt-br.js
Normal file
11
src/lang/pt-br.js
Normal 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
13
src/lang/ru.js
Normal 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
11
src/lang/sv.js
Normal file
@ -0,0 +1,11 @@
|
||||
/* eslint-disable */
|
||||
const sv = {
|
||||
headings: {
|
||||
contact: 'Kontakt',
|
||||
experience: 'Arbetslivserfarenhet',
|
||||
education: 'Utbildning',
|
||||
skills: 'Kunskaper',
|
||||
about: 'Om mig'
|
||||
}
|
||||
};
|
||||
export default sv;
|
||||
@ -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
|
||||
};
|
||||
|
||||
@ -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
|
||||
};
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user