Merge pull request #61 from tibuurcio/master

Added support for brazilian portuguese localisation
This commit is contained in:
Sara Steiert 2017-09-25 20:55:33 +02:00 committed by GitHub
commit e761fbb657
3 changed files with 14 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;

View File

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

View File

@ -6,7 +6,8 @@ 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, es, th
en, de, fr, pt, cn, it, es, th, 'pt-br': ptbr
};