Merge pull request #90 from MBakirci/master

Add Dutch (nl) Language
This commit is contained in:
Sara Steiert 2017-10-18 14:16:17 +02:00 committed by GitHub
commit d8b8fcdd8c
3 changed files with 14 additions and 2 deletions

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

@ -0,0 +1,11 @@
/* eslint-disable */
const nl = {
headings: {
contact: 'Contact',
experience: 'Ervaringen',
education: 'Opleidingen',
skills: 'Skills',
about: 'Over mij'
}
};
export default nl;

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

View File

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