13 lines
383 B
JavaScript
Executable File
13 lines
383 B
JavaScript
Executable File
// Portuguese
|
|
const lang = {
|
|
contact: 'Contato',
|
|
experience: 'Experiência Profissional',
|
|
/* You can choose, "Educação" or "Formação Acadêmica"! But the second one is more professional and is more used. */
|
|
education: 'Formação Acadêmica',
|
|
skills: 'Competências',
|
|
projects: 'Projetos',
|
|
contributions: 'Contribuições',
|
|
about: 'Sobre'
|
|
};
|
|
export default lang;
|