Skip to content

Commit

Permalink
feat(locale): de color human (#1997)
Browse files Browse the repository at this point in the history
  • Loading branch information
xDivisionByZerox committed Apr 23, 2023
1 parent acb9cf5 commit 2675ec2
Show file tree
Hide file tree
Showing 3 changed files with 70 additions and 0 deletions.
56 changes: 56 additions & 0 deletions src/locales/de/color/human.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
export default [
'Anthrazit',
'Beige',
'Blau',
'Blutrot',
'Bordeauxrot',
'Braun',
'Bronze',
'Cyan',
'Dunkelblau',
'Dunkelbraun',
'Dunkelgrau',
'Dunkelgrün',
'Dunkelrot',
'Eisblau',
'Feuerrot',
'Gelb',
'Giftgrün',
'Gold',
'Grau',
'Grün',
'Hellblau',
'Hellbraun',
'Hellgrün',
'Hellrot',
'Himmelblau',
'Indigo',
'Jadegrün',
'Kastanienbraun',
'Kupfer',
'Königsblau',
'Lila',
'Magenta',
'Mintgrün',
'Nachtblau',
'Neonblau',
'Neongelb',
'Neongrün',
'Neonrot',
'Ocker',
'Orange',
'Pink',
'Rosa',
'Rot',
'Rubinrot',
'Saphirblau',
'Schneeweiß',
'Schwarz',
'Silber',
'Smaragdgrün',
'Türkis',
'Violett',
'Weinrot',
'Weiß',
'Zinnoberrot',
];
12 changes: 12 additions & 0 deletions src/locales/de/color/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 { ColorDefinitions } from '../../..';
import human from './human';

const color: ColorDefinitions = {
human,
};

export default color;
2 changes: 2 additions & 0 deletions src/locales/de/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
*/
import type { LocaleDefinition } from '../..';
import cell_phone from './cell_phone';
import color from './color';
import company from './company';
import date from './date';
import internet from './internet';
Expand All @@ -16,6 +17,7 @@ import word from './word';

const de: LocaleDefinition = {
cell_phone,
color,
company,
date,
internet,
Expand Down

0 comments on commit 2675ec2

Please sign in to comment.