Merge branch 'master' into side-bar-rtl

This commit is contained in:
Yoav Maman 2017-10-13 16:02:23 +03:00 committed by GitHub
commit 1102214765
4 changed files with 18 additions and 4 deletions

View File

@ -37,9 +37,11 @@ best-resume-ever requires at least node v.8.5.
3. Edit your personal data in `src/person.js`.
4. Preview resumes with `npm run dev`.
4. Replace your profile-picture in `src/assets/person.jpg`.
5. Export with `npm run export`.
5. Preview resumes with `npm run dev`.
6. Export with `npm run export`.
All resumes will be exported to `/pdf`.

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

View File

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