Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(locale): extend Uzbek locale for date and color #2724

Merged
merged 11 commits into from
Mar 15, 2024
27 changes: 27 additions & 0 deletions src/locales/uz_UZ_latin/color/human.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
export default [
'binofsha',
'fayruz rang',
ST-DDT marked this conversation as resolved.
Show resolved Hide resolved
"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',
];
12 changes: 12 additions & 0 deletions src/locales/uz_UZ_latin/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 { ColorDefinition } from '../../..';
import human from './human';

const color: ColorDefinition = {
human,
};

export default color;
14 changes: 14 additions & 0 deletions src/locales/uz_UZ_latin/date/index.ts
Original file line number Diff line number Diff line change
@@ -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;
30 changes: 30 additions & 0 deletions src/locales/uz_UZ_latin/date/month.ts
Original file line number Diff line number Diff line change
@@ -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',
ST-DDT marked this conversation as resolved.
Show resolved Hide resolved
'Avg.',
'Sen.',
'Okt.',
'Noy.',
'Dek.',
],
};
12 changes: 12 additions & 0 deletions src/locales/uz_UZ_latin/date/weekday.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
export default {
wide: [
'Yakshanba',
'Dushanba',
'Seshanba',
'Chorshanba',
'Payshanba',
'Juma',
'Shanba',
],
abbr: ['Ya', 'Du', 'Se', 'Ch', 'Pa', 'Ju', 'Sh'],
};
4 changes: 4 additions & 0 deletions src/locales/uz_UZ_latin/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
};
Expand Down