Added support for brazilian portuguese localisation
This commit is contained in:
parent
6fe00399ed
commit
9b6a550b47
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;
|
||||
@ -84,5 +84,5 @@ export const PERSON = {
|
||||
website: 'johndoe.com',
|
||||
github: 'johnyD'
|
||||
},
|
||||
lang: 'en' // en, de, fr, pt, cn, it
|
||||
lang: 'en' // en, de, fr, pt, cn, it, pt-br
|
||||
};
|
||||
|
||||
@ -4,7 +4,8 @@ import fr from './lang/fr';
|
||||
import pt from './lang/pt';
|
||||
import cn from './lang/cn';
|
||||
import it from './lang/it';
|
||||
import ptbr from './lang/pt-br';
|
||||
|
||||
export const terms = {
|
||||
en, de, fr, pt, cn, it
|
||||
en, de, fr, pt, cn, it, 'pt-br': ptbr
|
||||
};
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user