Merge branch 'master' of https://github.com/salomonelli/best-resume-ever into left-right-rtl
added upstream changes.
This commit is contained in:
commit
449a7726ed
@ -65,6 +65,6 @@ contact:
|
|||||||
city: New York
|
city: New York
|
||||||
website: johndoe.com
|
website: johndoe.com
|
||||||
github: johnyD
|
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
|
lang: en
|
||||||
`
|
`
|
||||||
|
|||||||
11
src/lang/ca.js
Normal file
11
src/lang/ca.js
Normal 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
11
src/lang/ko.js
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
/* eslint-disable */
|
||||||
|
const ko = {
|
||||||
|
headings: {
|
||||||
|
contact: "연락처",
|
||||||
|
experience: "경력",
|
||||||
|
education: "학력",
|
||||||
|
skills: "보유스킬",
|
||||||
|
about: "자기소개"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
export default ko;
|
||||||
@ -2,6 +2,7 @@ import en from './lang/en';
|
|||||||
import de from './lang/de';
|
import de from './lang/de';
|
||||||
import fr from './lang/fr';
|
import fr from './lang/fr';
|
||||||
import pt from './lang/pt';
|
import pt from './lang/pt';
|
||||||
|
import ca from './lang/ca';
|
||||||
import cn from './lang/cn';
|
import cn from './lang/cn';
|
||||||
import it from './lang/it';
|
import it from './lang/it';
|
||||||
import es from './lang/es';
|
import es from './lang/es';
|
||||||
@ -18,7 +19,8 @@ import zhtw from './lang/zh-tw';
|
|||||||
import nl from './lang/nl';
|
import nl from './lang/nl';
|
||||||
import lt from './lang/lt';
|
import lt from './lang/lt';
|
||||||
import tr from './lang/tr';
|
import tr from './lang/tr';
|
||||||
|
import ko from './lang/ko';
|
||||||
|
|
||||||
export const terms = {
|
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
|
||||||
};
|
};
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user