Skip to content

Commit

Permalink
feat(locale): extend Uzbek locale for date and color (#2724)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mirazyzz committed Mar 15, 2024
1 parent a409b46 commit 776a625
Show file tree
Hide file tree
Showing 6 changed files with 99 additions and 0 deletions.
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',
"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',
'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

0 comments on commit 776a625

Please sign in to comment.