Merge pull request #84 from tlareg/master

Add Polish language file
This commit is contained in:
Daniel M 2017-10-11 15:38:25 +02:00 committed by GitHub
commit a0c6652338
3 changed files with 14 additions and 2 deletions

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

@ -0,0 +1,11 @@
/* eslint-disable */
const pl = {
headings: {
contact: 'Kontakt',
experience: 'Doświadczenie',
education: 'Wykształcenie',
skills: 'Umiejętności',
about: 'O mnie'
}
};
export default pl;

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, pl
};

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 pl from './lang/pl';
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, pl
};