diff --git a/README.md b/README.md index a0f21e1..afdf5b6 100755 --- a/README.md +++ b/README.md @@ -57,7 +57,7 @@ Please read the developer docs 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.
diff --git a/package.json b/package.json index 6014f56..4295623 100755 --- a/package.json +++ b/package.json @@ -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", diff --git a/src/lang/ja.js b/src/lang/ja.js new file mode 100644 index 0000000..368f7c8 --- /dev/null +++ b/src/lang/ja.js @@ -0,0 +1,11 @@ +/* eslint-disable */ +const cn = { + headings: { + contact: '連絡先', + experience: '職務経歴', + education: '学歴', + skills: 'スキル', + about: '自己紹介' + } +}; +export default cn; diff --git a/src/person.js b/src/person.js index 4aee4e5..e397594 100755 --- a/src/person.js +++ b/src/person.js @@ -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 }; diff --git a/src/terms.js b/src/terms.js index 7cf3ba6..bc542c6 100755 --- a/src/terms.js +++ b/src/terms.js @@ -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 };