feat: catalan language added

This commit is contained in:
Josep V. Monjo 2017-10-21 17:28:13 +02:00
parent f90b7da6ed
commit 25c0facfb4
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, 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
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;

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';
@ -20,5 +21,5 @@ import lt from './lang/lt';
import tr from './lang/tr';
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
};