added hebrew language

This commit is contained in:
Yoav Maman 2017-10-05 22:25:47 +03:00
parent f0acb6e304
commit 5eb9ecd28e
3 changed files with 14 additions and 2 deletions

11
src/lang/he.js Normal file
View File

@ -0,0 +1,11 @@
/* eslint-disable */
const he = {
headings: {
contact: 'יצירת קשר',
experience: 'ניסיון',
education: 'השכלה',
skills: 'כישורים',
about: 'תמצית'
}
};
export default he;

View File

@ -84,5 +84,5 @@ export const PERSON = {
website: 'johndoe.com',
github: 'johnyD'
},
lang: 'en' // en, de, fr, pt, cn, it, es, th, pt-br, ru, sv, id, hu
lang: 'en' // en, de, fr, pt, cn, it, es, th, pt-br, ru, sv, id, hu, he
};

View File

@ -11,7 +11,8 @@ import sv from './lang/sv';
import ru from './lang/ru';
import ptbr from './lang/pt-br';
import hu from './lang/hu';
import he from './lang/he';
export const terms = {
en, de, fr, pt, cn, it, es, th, 'pt-br': ptbr, ru, sv, id, hu
en, de, fr, pt, cn, it, es, th, 'pt-br': ptbr, ru, sv, id, hu, he
};