Merge branch 'master' of https://github.com/salomonelli/best-resume-ever into left-right-rtl

added upstream changes.
This commit is contained in:
Liel Fridman 2017-10-21 21:27:32 +03:00
commit 449a7726ed
4 changed files with 26 additions and 2 deletions

View File

@ -65,6 +65,6 @@ contact:
city: New York
website: johndoe.com
github: johnyD
# en, de, fr, pt, 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/ca.js Normal file
View File

@ -0,0 +1,11 @@
/* eslint-disable */
const ca = {
headings: {
contact: 'Contacte',
experience: 'Experiència',
education: 'Educació',
skills: 'Habilitats',
about: 'Sobre mi'
}
};
export default ca;

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

@ -2,6 +2,7 @@ import en from './lang/en';
import de from './lang/de';
import fr from './lang/fr';
import pt from './lang/pt';
import ca from './lang/ca';
import cn from './lang/cn';
import it from './lang/it';
import es from './lang/es';
@ -18,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, 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
};