Skip to content

Commit

Permalink
Add Hungarian language files
Browse files Browse the repository at this point in the history
  • Loading branch information
Ferrhat committed Sep 26, 2017
1 parent d96ad0b commit 70a3cd1
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
11 changes: 11 additions & 0 deletions src/lang/hu.js
Original file line number Diff line number Diff line change
@@ -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;
2 changes: 1 addition & 1 deletion src/person.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
};
3 changes: 2 additions & 1 deletion src/terms.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
};

0 comments on commit 70a3cd1

Please sign in to comment.