Skip to content

feat: improve norwegian translations #1042

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 9, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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