Skip to content

Commit

Permalink
Merge pull request salomonelli#72 from hallos/master
Browse files Browse the repository at this point in the history
Added Swedish translation
  • Loading branch information
salomonelli authored Sep 25, 2017
2 parents 6288686 + e24e71f commit fcfb60a
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
11 changes: 11 additions & 0 deletions src/lang/sv.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
/* eslint-disable */
const sv = {
headings: {
contact: 'Kontakt',
experience: 'Arbetslivserfarenhet',
education: 'Utbildning',
skills: 'Kunskaper',
about: 'Om mig'
}
};
export default sv;
2 changes: 1 addition & 1 deletion src/person.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,5 +84,5 @@ export const PERSON = {
website: 'johndoe.com',
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
};
3 changes: 2 additions & 1 deletion src/terms.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@ import cn from './lang/cn';
import it from './lang/it';
import es from './lang/es';
import th from './lang/th';
import sv from './lang/sv';
import ru from './lang/ru';
import ptbr from './lang/pt-br';

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
};

0 comments on commit fcfb60a

Please sign in to comment.