MERGE cn lang

This commit is contained in:
salomonelli 2017-09-19 18:44:01 +02:00
commit 5660063c9f
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, cn
lang: 'en' // en, de, fr, pt, cn, it
};

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

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