diff options
| author | Harsohail Brar <[email protected]> | 2022-05-22 13:14:09 -0600 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-05-22 21:14:09 +0200 |
| commit | bee6054f8da67e26dcfdf572103eebabbd6443c0 (patch) | |
| tree | 2390cf171db82a39acea58b793f630a5034feb35 /src/locales/ru | |
| parent | bd4d3dbc5ca54983ad28745825e4767c1f291e60 (diff) | |
| download | faker-bee6054f8da67e26dcfdf572103eebabbd6443c0.tar.xz faker-bee6054f8da67e26dcfdf572103eebabbd6443c0.zip | |
feat: color module (#801)
Co-authored-by: Shinigami <[email protected]>
Diffstat (limited to 'src/locales/ru')
| -rw-r--r-- | src/locales/ru/color/human.ts (renamed from src/locales/ru/commerce/color.ts) | 0 | ||||
| -rw-r--r-- | src/locales/ru/color/index.ts | 12 | ||||
| -rw-r--r-- | src/locales/ru/commerce/index.ts | 2 | ||||
| -rw-r--r-- | src/locales/ru/index.ts | 2 |
4 files changed, 14 insertions, 2 deletions
diff --git a/src/locales/ru/commerce/color.ts b/src/locales/ru/color/human.ts index 2f4af921..2f4af921 100644 --- a/src/locales/ru/commerce/color.ts +++ b/src/locales/ru/color/human.ts diff --git a/src/locales/ru/color/index.ts b/src/locales/ru/color/index.ts new file mode 100644 index 00000000..79cc39f0 --- /dev/null +++ b/src/locales/ru/color/index.ts @@ -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; diff --git a/src/locales/ru/commerce/index.ts b/src/locales/ru/commerce/index.ts index 823fcbd2..7e5f4475 100644 --- a/src/locales/ru/commerce/index.ts +++ b/src/locales/ru/commerce/index.ts @@ -3,12 +3,10 @@ * Run 'pnpm run generate:locales' to update. */ import type { CommerceDefinitions } from '../../..'; -import color from './color'; import department from './department'; import product_name from './product_name'; const commerce: CommerceDefinitions = { - color, department, product_name, }; diff --git a/src/locales/ru/index.ts b/src/locales/ru/index.ts index b5366714..d8e94dee 100644 --- a/src/locales/ru/index.ts +++ b/src/locales/ru/index.ts @@ -4,6 +4,7 @@ */ import type { LocaleDefinition } from '../..'; import address from './address'; +import color from './color'; import commerce from './commerce'; import company from './company'; import date from './date'; @@ -17,6 +18,7 @@ const ru: LocaleDefinition = { title: 'Russian', separator: ' и ', address, + color, commerce, company, date, |
