diff options
| author | Miraziz Khidoyatov <[email protected]> | 2024-03-15 02:48:06 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-03-15 10:48:06 +0100 |
| commit | 776a6258de07108548fb5918bdb8b572a278075a (patch) | |
| tree | e31d5129d4d397b21dcc887e348befe61139b770 /src | |
| parent | a409b468f942d964ce22ff42b52f8a756e0ca815 (diff) | |
| download | faker-776a6258de07108548fb5918bdb8b572a278075a.tar.xz faker-776a6258de07108548fb5918bdb8b572a278075a.zip | |
feat(locale): extend Uzbek locale for date and color (#2724)
Diffstat (limited to 'src')
| -rw-r--r-- | src/locales/uz_UZ_latin/color/human.ts | 27 | ||||
| -rw-r--r-- | src/locales/uz_UZ_latin/color/index.ts | 12 | ||||
| -rw-r--r-- | src/locales/uz_UZ_latin/date/index.ts | 14 | ||||
| -rw-r--r-- | src/locales/uz_UZ_latin/date/month.ts | 30 | ||||
| -rw-r--r-- | src/locales/uz_UZ_latin/date/weekday.ts | 12 | ||||
| -rw-r--r-- | src/locales/uz_UZ_latin/index.ts | 4 |
6 files changed, 99 insertions, 0 deletions
diff --git a/src/locales/uz_UZ_latin/color/human.ts b/src/locales/uz_UZ_latin/color/human.ts new file mode 100644 index 00000000..5d227b33 --- /dev/null +++ b/src/locales/uz_UZ_latin/color/human.ts @@ -0,0 +1,27 @@ +export default [ + 'binofsha', + 'fayruz rang', + "ko'k", + "ko'k-binofsha rang", + 'krem rang', + 'kulrang', + 'kumush rang', + 'limon rang', + 'moviy', + 'oq', + 'osmon rang', + 'olov rang', + 'oltin rang', + 'pushti', + 'qizil', + 'qizil-kulrang', + 'qizil-siyoh binofsha', + "qizg'ish to'q sariq", + 'qora', + 'sariq', + 'sariq-kulrang', + 'siyoh binofsha', + "to'q sariq", + 'yashil', + 'zaytun rang', +]; diff --git a/src/locales/uz_UZ_latin/color/index.ts b/src/locales/uz_UZ_latin/color/index.ts new file mode 100644 index 00000000..e7cf1e89 --- /dev/null +++ b/src/locales/uz_UZ_latin/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/uz_UZ_latin/date/index.ts b/src/locales/uz_UZ_latin/date/index.ts new file mode 100644 index 00000000..a28ce823 --- /dev/null +++ b/src/locales/uz_UZ_latin/date/index.ts @@ -0,0 +1,14 @@ +/* + * This file is automatically generated. + * Run 'pnpm run generate:locales' to update. + */ +import type { DateDefinition } from '../../..'; +import month from './month'; +import weekday from './weekday'; + +const date: DateDefinition = { + month, + weekday, +}; + +export default date; diff --git a/src/locales/uz_UZ_latin/date/month.ts b/src/locales/uz_UZ_latin/date/month.ts new file mode 100644 index 00000000..2b385b46 --- /dev/null +++ b/src/locales/uz_UZ_latin/date/month.ts @@ -0,0 +1,30 @@ +export default { + wide: [ + 'Yanvar', + 'Fevral', + 'Mart', + 'Aprel', + 'May', + 'Iyun', + 'Iyul', + 'Avgust', + 'Sentyabr', + 'Oktyabr', + 'Noyabr', + 'Dekabr', + ], + abbr: [ + 'Yan.', + 'Fev.', + 'Mar', + 'Apr.', + 'May', + 'Iyn', + 'Iyl', + 'Avg.', + 'Sen.', + 'Okt.', + 'Noy.', + 'Dek.', + ], +}; diff --git a/src/locales/uz_UZ_latin/date/weekday.ts b/src/locales/uz_UZ_latin/date/weekday.ts new file mode 100644 index 00000000..805dc023 --- /dev/null +++ b/src/locales/uz_UZ_latin/date/weekday.ts @@ -0,0 +1,12 @@ +export default { + wide: [ + 'Yakshanba', + 'Dushanba', + 'Seshanba', + 'Chorshanba', + 'Payshanba', + 'Juma', + 'Shanba', + ], + abbr: ['Ya', 'Du', 'Se', 'Ch', 'Pa', 'Ju', 'Sh'], +}; diff --git a/src/locales/uz_UZ_latin/index.ts b/src/locales/uz_UZ_latin/index.ts index 025d9196..ca9feb44 100644 --- a/src/locales/uz_UZ_latin/index.ts +++ b/src/locales/uz_UZ_latin/index.ts @@ -3,10 +3,14 @@ * Run 'pnpm run generate:locales' to update. */ import type { LocaleDefinition } from '../..'; +import color from './color'; +import date from './date'; import metadata from './metadata'; import person from './person'; const uz_UZ_latin: LocaleDefinition = { + color, + date, metadata, person, }; |
