Skip to content

Commit

Permalink
Merge branch 'master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
salomonelli committed Oct 18, 2017
2 parents d2bddae + 938fba0 commit 1c32679
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Please read the <a href="DEVELOPER.md">developer docs</a> on how to create or up

## Contribute

Feel free to add your own templates, language supports, fix bugs or improve the docs. Any kind of help is appreciated! If you any kind of changes to an existing template, please commit them as new templates.
Feel free to add your own templates, language supports, fix bugs or improve the docs. Any kind of help is appreciated! If you make any kind of changes to an existing template, please commit them as new templates.

<br>

Expand Down
5 changes: 5 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
"version": "1.0.0",
"description": "Build fast and easy multiple beautiful resumes and create your best CV ever! ",
"author": "salomonelli",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/salomonelli/best-resume-ever.git"
},
"scripts": {
"dev": "node build/dev-server.js",
"build": "node build/build.js",
Expand Down
11 changes: 11 additions & 0 deletions src/lang/ja.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
/* eslint-disable */
const cn = {
headings: {
contact: '連絡先',
experience: '職務経歴',
education: '学歴',
skills: 'スキル',
about: '自己紹介'
}
};
export default cn;
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, hu, pl, nl
lang: 'en' // en, de, fr, pt, cn, it, es, th, pt-br, ru, sv, id, hu, pl, ja, nl
};
3 changes: 2 additions & 1 deletion src/terms.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@ import ru from './lang/ru';
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, nl
en, de, fr, pt, cn, it, es, th, 'pt-br': ptbr, ru, sv, id, hu, pl, ja, nl
};

0 comments on commit 1c32679

Please sign in to comment.