Merge pull request #56 from sirLisko/master

Added Italian localisation
This commit is contained in:
Sara Steiert 2017-09-19 18:40:41 +02:00 committed by GitHub
commit 7196a71b7b
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
};