Skip to content

Commit

Permalink
feat: improve norwegian translations (#1042)
Browse files Browse the repository at this point in the history
  • Loading branch information
Johannes-Andersen committed Jun 9, 2022
1 parent c5ac124 commit e071c78
Show file tree
Hide file tree
Showing 12 changed files with 910 additions and 0 deletions.
19 changes: 19 additions & 0 deletions src/locales/nb_NO/color/human.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
export default [
'beige',
'grønn',
'grå',
'gul',
'hvit',
'indigo',
'karmin',
'blå',
'lilla',
'limegrønn',
'magenta',
'oransje',
'rosa',
'rød',
'smaragdgrønn',
'svart',
'turkis',
];
12 changes: 12 additions & 0 deletions src/locales/nb_NO/color/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
/*
* This file is automatically generated.
* Run 'pnpm run generate:locales' to update.
*/
import type { ColorDefinitions } from '../../..';
import human from './human';

const color: ColorDefinitions = {
human,
};

export default color;
20 changes: 20 additions & 0 deletions src/locales/nb_NO/commerce/department.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
export default [
'Barn',
'Bøker',
'Dagligvarer',
'Datamaskiner',
'Elektronikk',
'Filmer',
'Hage og utemiljø',
'Helse',
'Hjem',
'Klær',
'Leker',
'Musikk',
'Sko',
'Skjønnhet',
'Spill',
'Smykker',
'Sport',
'Verktøy',
];
12 changes: 12 additions & 0 deletions src/locales/nb_NO/commerce/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
/*
* This file is automatically generated.
* Run 'pnpm run generate:locales' to update.
*/
import type { CommerceDefinitions } from '../../..';
import department from './department';

const commerce: CommerceDefinitions = {
department,
};

export default commerce;
8 changes: 8 additions & 0 deletions src/locales/nb_NO/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,26 @@
*/
import type { LocaleDefinition } from '../..';
import address from './address';
import color from './color';
import commerce from './commerce';
import company from './company';
import internet from './internet';
import name_ from './name';
import phone_number from './phone_number';
import science from './science';
import word from './word';

const nb_NO: LocaleDefinition = {
title: 'Norwegian',
address,
color,
commerce,
company,
internet,
name: name_,
phone_number,
science,
word,
};

export default nb_NO;
Loading

0 comments on commit e071c78

Please sign in to comment.