From 19635a7ef3381a475185a2857b59f943dee9be54 Mon Sep 17 00:00:00 2001 From: Matt Mayer <152770+matthewmayer@users.noreply.github.com> Date: Sat, 17 Jun 2023 13:05:59 +0700 Subject: [PATCH] feat(color): migrate hu human colors (#2157) --- src/locales/hu/{commerce/color.ts => color/human.ts} | 0 src/locales/hu/color/index.ts | 12 ++++++++++++ src/locales/hu/commerce/index.ts | 2 -- src/locales/hu/index.ts | 2 ++ 4 files changed, 14 insertions(+), 2 deletions(-) rename src/locales/hu/{commerce/color.ts => color/human.ts} (100%) create mode 100644 src/locales/hu/color/index.ts diff --git a/src/locales/hu/commerce/color.ts b/src/locales/hu/color/human.ts similarity index 100% rename from src/locales/hu/commerce/color.ts rename to src/locales/hu/color/human.ts diff --git a/src/locales/hu/color/index.ts b/src/locales/hu/color/index.ts new file mode 100644 index 00000000000..e7cf1e89436 --- /dev/null +++ b/src/locales/hu/color/index.ts @@ -0,0 +1,12 @@ +/* + * This file is automatically generated. + * Run 'pnpm run generate:locales' to update. + */ +import type { ColorDefinition } from '../../..'; +import human from './human'; + +const color: ColorDefinition = { + human, +}; + +export default color; diff --git a/src/locales/hu/commerce/index.ts b/src/locales/hu/commerce/index.ts index cc7c4e7b1a1..29c9eeb2006 100644 --- a/src/locales/hu/commerce/index.ts +++ b/src/locales/hu/commerce/index.ts @@ -3,13 +3,11 @@ * Run 'pnpm run generate:locales' to update. */ import type { CommerceDefinition } from '../../..'; -import color from './color'; import department from './department'; import product_description from './product_description'; import product_name from './product_name'; const commerce: CommerceDefinition = { - color, department, product_description, product_name, diff --git a/src/locales/hu/index.ts b/src/locales/hu/index.ts index 9e4387810b0..8ae89f488c8 100644 --- a/src/locales/hu/index.ts +++ b/src/locales/hu/index.ts @@ -4,6 +4,7 @@ */ import type { LocaleDefinition } from '../..'; import animal from './animal'; +import color from './color'; import commerce from './commerce'; import company from './company'; import date from './date'; @@ -17,6 +18,7 @@ import word from './word'; const hu: LocaleDefinition = { animal, + color, commerce, company, date,