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 00000000000..5d227b33777 --- /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 00000000000..e7cf1e89436 --- /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 00000000000..a28ce823bb8 --- /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 00000000000..2b385b46264 --- /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 00000000000..805dc023a27 --- /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 025d9196cc3..ca9feb446a4 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, };