From f5f46a6a58d39a0a262c0989bda6c867a1fcf697 Mon Sep 17 00:00:00 2001 From: hatai Date: Fri, 13 Oct 2017 17:03:09 +0900 Subject: [PATCH 1/6] Create ja.js Create Japanese --- src/lang/ja.js | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/lang/ja.js diff --git a/src/lang/ja.js b/src/lang/ja.js new file mode 100644 index 0000000..9da6c78 --- /dev/null +++ b/src/lang/ja.js @@ -0,0 +1,11 @@ +/* eslint-disable */ +const cn = { + headings: { + contact: '連絡方法', + experience: '職務経歴', + education: '学歴', + skills: 'スキル', + about: '自己紹介' + } +}; +export default cn; From 241060c40a762880da71ae8efde8fd714041f193 Mon Sep 17 00:00:00 2001 From: hatai Date: Fri, 13 Oct 2017 17:04:13 +0900 Subject: [PATCH 2/6] Update terms.js --- src/terms.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/terms.js b/src/terms.js index d122972..ea9bfcc 100755 --- a/src/terms.js +++ b/src/terms.js @@ -12,7 +12,8 @@ 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'; export const terms = { - en, de, fr, pt, cn, it, es, th, 'pt-br': ptbr, ru, sv, id, hu, pl + en, de, fr, pt, cn, it, es, th, 'pt-br': ptbr, ru, sv, id, hu, pl, ja }; From f84c06f07e080ad52383c69a98c48d848bf4f512 Mon Sep 17 00:00:00 2001 From: hatai Date: Fri, 13 Oct 2017 17:31:21 +0900 Subject: [PATCH 3/6] Update ja.js --- src/lang/ja.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lang/ja.js b/src/lang/ja.js index 9da6c78..368f7c8 100644 --- a/src/lang/ja.js +++ b/src/lang/ja.js @@ -1,7 +1,7 @@ /* eslint-disable */ const cn = { headings: { - contact: '連絡方法', + contact: '連絡先', experience: '職務経歴', education: '学歴', skills: 'スキル', From 238f87b5dc999ad17f7b144d1ae6994342ecb39a Mon Sep 17 00:00:00 2001 From: hatai Date: Fri, 13 Oct 2017 17:32:02 +0900 Subject: [PATCH 4/6] Update person.js --- src/person.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/person.js b/src/person.js index f75cbb3..9be867f 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 + lang: 'en' // en, de, fr, pt, cn, it, es, th, pt-br, ru, sv, id, hu, pl, ja }; From cf66cca7aecc656cb1f11dd34d66e6f9ef87234c Mon Sep 17 00:00:00 2001 From: Brian Flatt Date: Tue, 17 Oct 2017 00:14:00 -0400 Subject: [PATCH 5/6] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.
From d42421946ff990163f7861a77c3b48a739117e87 Mon Sep 17 00:00:00 2001 From: Maxence POUTORD Date: Tue, 17 Oct 2017 21:44:24 +0100 Subject: [PATCH 6/6] Fix npm warnings (#28) --- package.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/package.json b/package.json index 5447b2d..64bbdfc 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", "start": "node build/dev-server.js",