MERGE #81 korean lang

This commit is contained in:
salomonelli 2017-10-21 19:40:32 +02:00
parent dfa537d48a
commit 4ef7f05aa1
3 changed files with 14 additions and 2 deletions

View File

@ -65,6 +65,6 @@ contact:
city: New York
website: johndoe.com
github: johnyD
# en, de, fr, pt, ca, cn, it, es, th, pt-br, ru, sv, id, hu, pl, ja, nl, he, zh-tw, lt
# en, de, fr, pt, ca, cn, it, es, th, pt-br, ru, sv, id, hu, pl, ja, nl, he, zh-tw, lt, ko
lang: en
`

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

@ -0,0 +1,11 @@
/* eslint-disable */
const ko = {
headings: {
contact: "연락처",
experience: "경력",
education: "학력",
skills: "보유스킬",
about: "자기소개"
}
};
export default ko;

View File

@ -19,7 +19,8 @@ import zhtw from './lang/zh-tw';
import nl from './lang/nl';
import lt from './lang/lt';
import tr from './lang/tr';
import ko from './lang/ko';
export const terms = {
en, de, fr, pt, ca, cn, it, es, th, 'pt-br': ptbr, ru, sv, id, hu, pl, ja, nl, he, 'zh-tw': zhtw, lt, tr
en, de, fr, pt, ca, cn, it, es, th, 'pt-br': ptbr, ru, sv, id, hu, pl, ja, nl, he, 'zh-tw': zhtw, lt, tr, ko
};