Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

feat(locale): add german animal types #3334

Merged
merged 1 commit into from
Dec 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading