Merge branch 'master' into master

This commit is contained in:
Sara Steiert 2017-10-18 14:16:05 +02:00 committed by GitHub
commit 1c32679449
5 changed files with 20 additions and 3 deletions

View File

@ -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>

View File

@ -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",

11
src/lang/ja.js Normal file
View File

@ -0,0 +1,11 @@
/* eslint-disable */
const cn = {
headings: {
contact: '連絡先',
experience: '職務経歴',
education: '学歴',
skills: 'スキル',
about: '自己紹介'
}
};
export default cn;

View File

@ -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
};

View File

@ -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
};