Skip to content

Commit e071c78

Browse files
feat: improve norwegian translations (#1042)
1 parent c5ac124 commit e071c78

12 files changed

Lines changed: 910 additions & 0 deletions

File tree

src/locales/nb_NO/color/human.ts

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
export default [
2+
'beige',
3+
'grønn',
4+
'grå',
5+
'gul',
6+
'hvit',
7+
'indigo',
8+
'karmin',
9+
'blå',
10+
'lilla',
11+
'limegrønn',
12+
'magenta',
13+
'oransje',
14+
'rosa',
15+
'rød',
16+
'smaragdgrønn',
17+
'svart',
18+
'turkis',
19+
];

src/locales/nb_NO/color/index.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
/*
2+
* This file is automatically generated.
3+
* Run 'pnpm run generate:locales' to update.
4+
*/
5+
import type { ColorDefinitions } from '../../..';
6+
import human from './human';
7+
8+
const color: ColorDefinitions = {
9+
human,
10+
};
11+
12+
export default color;
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
export default [
2+
'Barn',
3+
'Bøker',
4+
'Dagligvarer',
5+
'Datamaskiner',
6+
'Elektronikk',
7+
'Filmer',
8+
'Hage og utemiljø',
9+
'Helse',
10+
'Hjem',
11+
'Klær',
12+
'Leker',
13+
'Musikk',
14+
'Sko',
15+
'Skjønnhet',
16+
'Spill',
17+
'Smykker',
18+
'Sport',
19+
'Verktøy',
20+
];
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
/*
2+
* This file is automatically generated.
3+
* Run 'pnpm run generate:locales' to update.
4+
*/
5+
import type { CommerceDefinitions } from '../../..';
6+
import department from './department';
7+
8+
const commerce: CommerceDefinitions = {
9+
department,
10+
};
11+
12+
export default commerce;

src/locales/nb_NO/index.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,26 @@
44
*/
55
import type { LocaleDefinition } from '../..';
66
import address from './address';
7+
import color from './color';
8+
import commerce from './commerce';
79
import company from './company';
810
import internet from './internet';
911
import name_ from './name';
1012
import phone_number from './phone_number';
13+
import science from './science';
14+
import word from './word';
1115

1216
const nb_NO: LocaleDefinition = {
1317
title: 'Norwegian',
1418
address,
19+
color,
20+
commerce,
1521
company,
1622
internet,
1723
name: name_,
1824
phone_number,
25+
science,
26+
word,
1927
};
2028

2129
export default nb_NO;

0 commit comments

Comments
 (0)