Added Italian localisation

This commit is contained in:
Luca Lischetti 2017-09-19 12:34:59 +01:00
parent 08d4832c5c
commit 3fcafa8910
3 changed files with 13 additions and 2 deletions

10
src/lang/it.js Normal file
View File

@ -0,0 +1,10 @@
/* eslint-disable */
const it = {
headings: {
contact: 'Contatti',
experience: 'Esperienza professionale',
education: 'Formazione',
skills: 'Competenze'
}
};
export default it;

View File

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

3
src/terms.js Normal file → Executable file
View File

@ -2,7 +2,8 @@ import en from './lang/en';
import de from './lang/de';
import fr from './lang/fr';
import pt from './lang/pt';
import it from './lang/it';
export const terms = {
en, de, fr, pt
en, de, fr, pt, it
};