Skip to content

Commit f915d49

Browse files
authored
Merge branch 'next' into feat/locale-access-proxy
2 parents 783b7ba + 2675ec2 commit f915d49

File tree

3 files changed

+70
-0
lines changed

3 files changed

+70
-0
lines changed

src/locales/de/color/human.ts

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
export default [
2+
'Anthrazit',
3+
'Beige',
4+
'Blau',
5+
'Blutrot',
6+
'Bordeauxrot',
7+
'Braun',
8+
'Bronze',
9+
'Cyan',
10+
'Dunkelblau',
11+
'Dunkelbraun',
12+
'Dunkelgrau',
13+
'Dunkelgrün',
14+
'Dunkelrot',
15+
'Eisblau',
16+
'Feuerrot',
17+
'Gelb',
18+
'Giftgrün',
19+
'Gold',
20+
'Grau',
21+
'Grün',
22+
'Hellblau',
23+
'Hellbraun',
24+
'Hellgrün',
25+
'Hellrot',
26+
'Himmelblau',
27+
'Indigo',
28+
'Jadegrün',
29+
'Kastanienbraun',
30+
'Kupfer',
31+
'Königsblau',
32+
'Lila',
33+
'Magenta',
34+
'Mintgrün',
35+
'Nachtblau',
36+
'Neonblau',
37+
'Neongelb',
38+
'Neongrün',
39+
'Neonrot',
40+
'Ocker',
41+
'Orange',
42+
'Pink',
43+
'Rosa',
44+
'Rot',
45+
'Rubinrot',
46+
'Saphirblau',
47+
'Schneeweiß',
48+
'Schwarz',
49+
'Silber',
50+
'Smaragdgrün',
51+
'Türkis',
52+
'Violett',
53+
'Weinrot',
54+
'Weiß',
55+
'Zinnoberrot',
56+
];

src/locales/de/color/index.ts

+12
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;

src/locales/de/index.ts

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
*/
55
import type { LocaleDefinition } from '../..';
66
import cell_phone from './cell_phone';
7+
import color from './color';
78
import company from './company';
89
import date from './date';
910
import internet from './internet';
@@ -16,6 +17,7 @@ import word from './word';
1617

1718
const de: LocaleDefinition = {
1819
cell_phone,
20+
color,
1921
company,
2022
date,
2123
internet,

0 commit comments

Comments
 (0)