Merge branch 'master' into side-bar-rtl
This commit is contained in:
commit
1102214765
@ -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
11
src/lang/pl.js
Normal 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;
|
||||
@ -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
|
||||
};
|
||||
|
||||
@ -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
|
||||
};
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user