Skip to content

Commit 13538a7

Browse files
authored
add german animal types (#3334)
1 parent 5ec4a6c commit 13538a7

3 files changed

Lines changed: 60 additions & 0 deletions

File tree

src/locales/de/animal/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 { AnimalDefinition } from '../../..';
6+
import type_ from './type';
7+
8+
const animal: AnimalDefinition = {
9+
type: type_,
10+
};
11+
12+
export default animal;

src/locales/de/animal/type.ts

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
export default [
2+
'Adler',
3+
'Affe',
4+
'Biene',
5+
'Bär',
6+
'Delfin',
7+
'Eichhörnchen',
8+
'Eisbär',
9+
'Elefant',
10+
'Fisch',
11+
'Flamingo',
12+
'Fledermaus',
13+
'Frosch',
14+
'Fuchs',
15+
'Gecko',
16+
'Giraffe',
17+
'Gorilla',
18+
'Hai',
19+
'Hamster',
20+
'Hund',
21+
'Kaninchen',
22+
'Katze',
23+
'Koala',
24+
'Krokodil',
25+
'Kuh',
26+
'Känguru',
27+
'Löwe',
28+
'Nashorn',
29+
'Nilpferd',
30+
'Panda',
31+
'Papagei',
32+
'Pfau',
33+
'Pferd',
34+
'Pinguin',
35+
'Reh',
36+
'Schildkröte',
37+
'Schlange',
38+
'Schmetterling',
39+
'Seelöwe',
40+
'Strauß',
41+
'Tiger',
42+
'Vogel',
43+
'Wal',
44+
'Wolf',
45+
'Zebra',
46+
];

src/locales/de/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* Run 'pnpm run generate:locales' to update.
44
*/
55
import type { LocaleDefinition } from '../..';
6+
import animal from './animal';
67
import cell_phone from './cell_phone';
78
import color from './color';
89
import company from './company';
@@ -23,6 +24,7 @@ import word from './word';
2324
* - Endonym: Deutsch
2425
*/
2526
const de: LocaleDefinition = {
27+
animal,
2628
cell_phone,
2729
color,
2830
company,

0 commit comments

Comments
 (0)