Merge pull request #87 from hatai/master

Add Japanese language
This commit is contained in:
Daniel M 2017-10-17 10:24:03 +02:00 committed by GitHub
commit 2aef05f36f
3 changed files with 14 additions and 2 deletions

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', website: 'johndoe.com',
github: 'johnyD' 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
}; };

View File

@ -12,7 +12,8 @@ import ru from './lang/ru';
import ptbr from './lang/pt-br'; import ptbr from './lang/pt-br';
import hu from './lang/hu'; import hu from './lang/hu';
import pl from './lang/pl'; import pl from './lang/pl';
import ja from './lang/ja';
export const terms = { 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
}; };