Merge pull request #99 from SlimDogs/master

ADD Lithuanian language support
This commit is contained in:
Sara Steiert 2017-10-19 09:30:43 +02:00 committed by GitHub
commit 9347fa3ce5
3 changed files with 14 additions and 2 deletions

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

@ -0,0 +1,11 @@
/* eslint-disable */
const lt = {
headings: {
contact: 'Kontaktai',
experience: 'Patirtis',
education: 'Išsilavinimas',
skills: 'Įgūdžiai',
about: 'Apie mane'
}
};
export default lt;

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, ja, nl, he, zh-tw lang: 'en' // en, de, fr, pt, cn, it, es, th, pt-br, ru, sv, id, hu, pl, ja, nl, he, zh-tw, lt
}; };

View File

@ -16,7 +16,8 @@ import he from './lang/he';
import ja from './lang/ja'; import ja from './lang/ja';
import zhtw from './lang/zh-tw'; import zhtw from './lang/zh-tw';
import nl from './lang/nl'; import nl from './lang/nl';
import lt from './lang/lt';
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 en, de, fr, pt, cn, it, es, th, 'pt-br': ptbr, ru, sv, id, hu, pl, ja, nl, he, 'zh-tw': zhtw, lt
}; };