Skip to content

Commit 776a625

Browse files
authored
feat(locale): extend Uzbek locale for date and color (#2724)
1 parent a409b46 commit 776a625

6 files changed

Lines changed: 99 additions & 0 deletions

File tree

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
export default [
2+
'binofsha',
3+
'fayruz rang',
4+
"ko'k",
5+
"ko'k-binofsha rang",
6+
'krem rang',
7+
'kulrang',
8+
'kumush rang',
9+
'limon rang',
10+
'moviy',
11+
'oq',
12+
'osmon rang',
13+
'olov rang',
14+
'oltin rang',
15+
'pushti',
16+
'qizil',
17+
'qizil-kulrang',
18+
'qizil-siyoh binofsha',
19+
"qizg'ish to'q sariq",
20+
'qora',
21+
'sariq',
22+
'sariq-kulrang',
23+
'siyoh binofsha',
24+
"to'q sariq",
25+
'yashil',
26+
'zaytun rang',
27+
];
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
/*
2+
* This file is automatically generated.
3+
* Run 'pnpm run generate:locales' to update.
4+
*/
5+
import type { ColorDefinition } from '../../..';
6+
import human from './human';
7+
8+
const color: ColorDefinition = {
9+
human,
10+
};
11+
12+
export default color;
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
/*
2+
* This file is automatically generated.
3+
* Run 'pnpm run generate:locales' to update.
4+
*/
5+
import type { DateDefinition } from '../../..';
6+
import month from './month';
7+
import weekday from './weekday';
8+
9+
const date: DateDefinition = {
10+
month,
11+
weekday,
12+
};
13+
14+
export default date;
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
export default {
2+
wide: [
3+
'Yanvar',
4+
'Fevral',
5+
'Mart',
6+
'Aprel',
7+
'May',
8+
'Iyun',
9+
'Iyul',
10+
'Avgust',
11+
'Sentyabr',
12+
'Oktyabr',
13+
'Noyabr',
14+
'Dekabr',
15+
],
16+
abbr: [
17+
'Yan.',
18+
'Fev.',
19+
'Mar',
20+
'Apr.',
21+
'May',
22+
'Iyn',
23+
'Iyl',
24+
'Avg.',
25+
'Sen.',
26+
'Okt.',
27+
'Noy.',
28+
'Dek.',
29+
],
30+
};
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
export default {
2+
wide: [
3+
'Yakshanba',
4+
'Dushanba',
5+
'Seshanba',
6+
'Chorshanba',
7+
'Payshanba',
8+
'Juma',
9+
'Shanba',
10+
],
11+
abbr: ['Ya', 'Du', 'Se', 'Ch', 'Pa', 'Ju', 'Sh'],
12+
};

src/locales/uz_UZ_latin/index.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,14 @@
33
* Run 'pnpm run generate:locales' to update.
44
*/
55
import type { LocaleDefinition } from '../..';
6+
import color from './color';
7+
import date from './date';
68
import metadata from './metadata';
79
import person from './person';
810

911
const uz_UZ_latin: LocaleDefinition = {
12+
color,
13+
date,
1014
metadata,
1115
person,
1216
};

0 commit comments

Comments
 (0)