diff --git a/src/locales/de/animal/index.ts b/src/locales/de/animal/index.ts new file mode 100644 index 00000000000..333108c01bb --- /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 00000000000..9da42887f9e --- /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 a64e7755d49..6c0c0ead05c 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,