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/lang/nl.js b/src/lang/nl.js
new file mode 100644
index 0000000..95a3c87
--- /dev/null
+++ b/src/lang/nl.js
@@ -0,0 +1,11 @@
+/* eslint-disable */
+const nl = {
+ headings: {
+ contact: 'Contact',
+ experience: 'Ervaringen',
+ education: 'Opleidingen',
+ skills: 'Skills',
+ about: 'Over mij'
+ }
+ };
+ export default nl;
\ No newline at end of file
diff --git a/src/person.js b/src/person.js
index 3f2619c..c8a6f75 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, he
+ lang: 'en' // en, de, fr, pt, cn, it, es, th, pt-br, ru, sv, id, hu, pl, ja, nl, he
};
diff --git a/src/resumes/left-right.vue b/src/resumes/left-right.vue
index 9d9b694..f073ba5 100755
--- a/src/resumes/left-right.vue
+++ b/src/resumes/left-right.vue
@@ -14,7 +14,7 @@