Merge pull request #72 from hallos/master

Added Swedish translation
This commit is contained in:
Sara Steiert 2017-09-25 20:58:01 +02:00 committed by GitHub
commit fcfb60a8a6
3 changed files with 14 additions and 2 deletions

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

@ -0,0 +1,11 @@
/* eslint-disable */
const sv = {
headings: {
contact: 'Kontakt',
experience: 'Arbetslivserfarenhet',
education: 'Utbildning',
skills: 'Kunskaper',
about: 'Om mig'
}
};
export default sv;

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 lang: 'en' // en, de, fr, pt, cn, it, es, th, pt-br, ru, sv
}; };

View File

@ -6,9 +6,10 @@ 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';
import th from './lang/th'; import th from './lang/th';
import sv from './lang/sv';
import ru from './lang/ru'; import ru from './lang/ru';
import ptbr from './lang/pt-br'; import ptbr from './lang/pt-br';
export const terms = { export const terms = {
en, de, fr, pt, cn, it, es, th, 'pt-br': ptbr, ru en, de, fr, pt, cn, it, es, th, 'pt-br': ptbr, ru, sv
}; };