ADD french language file

This commit is contained in:
salomonelli 2017-09-14 22:39:39 +02:00
parent 90e7dc868a
commit de4f56ef03
3 changed files with 13 additions and 2 deletions

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

@ -0,0 +1,10 @@
/* eslint-disable */
const fr = {
headings: {
contact: 'Contact',
experience: 'Expériences professionelles',
education: 'Formation',
skills: 'Compétences'
}
};
export default fr;

View File

@ -83,5 +83,5 @@ export const PERSON = {
website: 'johndoe.com',
github: 'johnyD'
},
lang: "en"
lang: 'en'
};

View File

@ -1,6 +1,7 @@
import en from './lang/en';
import de from './lang/de';
import fr from './lang/fr';
export const terms = {
en, de
en, de, fr
};