Add Hungarian language files

This commit is contained in:
Ferrhat 2017-09-26 22:06:12 +02:00
parent d96ad0bfbe
commit 70a3cd1da9
3 changed files with 14 additions and 2 deletions

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

@ -0,0 +1,11 @@
/* eslint-disable */
const hu = {
headings: {
contact: 'Kapcsolat',
experience: 'Munkatapasztalat',
education: 'Tanulmány',
skills: 'Készségek',
about: 'Rólam'
}
};
export default hu;

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
lang: 'en' // en, de, fr, pt, cn, it, es, th, pt-br, ru, sv, id, hu
};

View File

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