Merge pull request #116 from lennondtps/greek_language_support

added greek language support
This commit is contained in:
Sara Steiert 2017-10-25 10:12:24 +02:00 committed by GitHub
commit f908980282
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, ko
# en, de, fr, pt, ca, cn, it, es, th, pt-br, ru, sv, id, hu, pl, ja, nl, he, zh-tw, lt, ko, el
lang: en
`

11
src/lang/el.js Executable file
View File

@ -0,0 +1,11 @@
/* eslint-disable */
const el = {
headings: {
contact: 'Επικοινωνία',
experience: 'Επαγγελματική εμπειρία',
education: 'Εκπαίδευση',
skills: 'Δεξιότητες',
about: 'Σχετικά με εμένα'
}
};
export default el;

View File

@ -20,7 +20,8 @@ import nl from './lang/nl';
import lt from './lang/lt';
import tr from './lang/tr';
import ko from './lang/ko';
import el from './lang/el';
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, ko
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, el
};