diff options
| author | Matthias <[email protected]> | 2024-12-13 11:30:39 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-12-13 10:30:39 +0000 |
| commit | 13538a71203f02a87e49422549ab0160878bfcf4 (patch) | |
| tree | cb879707c0905a6325089ea7cecfb739f2cb61ae /src | |
| parent | 5ec4a6c9ddc037ae189ee93f339fa52065ac2a26 (diff) | |
| download | faker-13538a71203f02a87e49422549ab0160878bfcf4.tar.xz faker-13538a71203f02a87e49422549ab0160878bfcf4.zip | |
add german animal types (#3334)
Diffstat (limited to 'src')
| -rw-r--r-- | src/locales/de/animal/index.ts | 12 | ||||
| -rw-r--r-- | src/locales/de/animal/type.ts | 46 | ||||
| -rw-r--r-- | src/locales/de/index.ts | 2 |
3 files changed, 60 insertions, 0 deletions
diff --git a/src/locales/de/animal/index.ts b/src/locales/de/animal/index.ts new file mode 100644 index 00000000..333108c0 --- /dev/null +++ b/src/locales/de/animal/index.ts @@ -0,0 +1,12 @@ +/* + * This file is automatically generated. + * Run 'pnpm run generate:locales' to update. + */ +import type { AnimalDefinition } from '../../..'; +import type_ from './type'; + +const animal: AnimalDefinition = { + type: type_, +}; + +export default animal; diff --git a/src/locales/de/animal/type.ts b/src/locales/de/animal/type.ts new file mode 100644 index 00000000..9da42887 --- /dev/null +++ b/src/locales/de/animal/type.ts @@ -0,0 +1,46 @@ +export default [ + 'Adler', + 'Affe', + 'Biene', + 'Bär', + 'Delfin', + 'Eichhörnchen', + 'Eisbär', + 'Elefant', + 'Fisch', + 'Flamingo', + 'Fledermaus', + 'Frosch', + 'Fuchs', + 'Gecko', + 'Giraffe', + 'Gorilla', + 'Hai', + 'Hamster', + 'Hund', + 'Kaninchen', + 'Katze', + 'Koala', + 'Krokodil', + 'Kuh', + 'Känguru', + 'Löwe', + 'Nashorn', + 'Nilpferd', + 'Panda', + 'Papagei', + 'Pfau', + 'Pferd', + 'Pinguin', + 'Reh', + 'Schildkröte', + 'Schlange', + 'Schmetterling', + 'Seelöwe', + 'Strauß', + 'Tiger', + 'Vogel', + 'Wal', + 'Wolf', + 'Zebra', +]; diff --git a/src/locales/de/index.ts b/src/locales/de/index.ts index a64e7755..6c0c0ead 100644 --- a/src/locales/de/index.ts +++ b/src/locales/de/index.ts @@ -3,6 +3,7 @@ * Run 'pnpm run generate:locales' to update. */ import type { LocaleDefinition } from '../..'; +import animal from './animal'; import cell_phone from './cell_phone'; import color from './color'; import company from './company'; @@ -23,6 +24,7 @@ import word from './word'; * - Endonym: Deutsch */ const de: LocaleDefinition = { + animal, cell_phone, color, company, |
