Adds norwegian language support

This commit is contained in:
kalle 2019-10-08 23:19:22 +02:00 committed by pubkey
parent f7547babe9
commit 5aa7cbeef1
3 changed files with 17 additions and 2 deletions

View File

@ -87,6 +87,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, ka, nl, he, zh-tw, lt, ko, el
# en, de, fr, pt, ca, cn, it, es, th, pt-br, ru, sv, id, hu, pl, ja, ka, nl, he, zh-tw, lt, ko, el, nb-no
lang: en
`

13
src/lang/nb-no.js Normal file
View File

@ -0,0 +1,13 @@
// Norwegian
const lang = {
contact: 'Kontakt',
born: 'Født',
bornIn: 'i',
experience: 'Arbeidserfaring',
education: 'Utdannelse',
skills: 'Ferdigheter',
projects: 'Prosjekter',
contributions: 'Bidrag',
about: 'Om meg'
};
export default lang;

View File

@ -21,6 +21,7 @@ import lt from './lang/lt';
import tr from './lang/tr';
import ko from './lang/ko';
import el from './lang/el';
import nbno from './lang/nb-no';
export const terms = {
en,
@ -45,5 +46,6 @@ export const terms = {
lt,
tr,
ko,
el
el,
'nb-no': nbno
};