Skip to content

Commit

Permalink
add german animal types (#3334)
Browse files Browse the repository at this point in the history
  • Loading branch information
motz0815 authored Dec 13, 2024
1 parent 5ec4a6c commit 13538a7
Show file tree
Hide file tree
Showing 3 changed files with 60 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/locales/de/animal/index.ts
Original file line number Diff line number Diff line change
@@ -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;
46 changes: 46 additions & 0 deletions src/locales/de/animal/type.ts
Original file line number Diff line number Diff line change
@@ -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',
];
2 changes: 2 additions & 0 deletions src/locales/de/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand All @@ -23,6 +24,7 @@ import word from './word';
* - Endonym: Deutsch
*/
const de: LocaleDefinition = {
animal,
cell_phone,
color,
company,
Expand Down

0 comments on commit 13538a7

Please # to comment.