Skip to content

Commit 7d937d2

Browse files
authored
feat: add Uzbek language (uz_UZ) (#446)
1 parent 1a882c4 commit 7d937d2

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

src/locale/uz_UZ.ts

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
import type { Locale } from '../interface';
2+
3+
const locale: Locale = {
4+
locale: 'uz_UZ',
5+
today: 'Bugun',
6+
now: 'Hozir',
7+
backToToday: 'Bugunga qaytish',
8+
ok: 'OK',
9+
clear: 'Toza',
10+
month: 'Oy',
11+
year: 'Yil',
12+
timeSelect: 'vaqtni tanlang',
13+
dateSelect: 'sanani tanlang',
14+
weekSelect: 'Haftani tanlang',
15+
monthSelect: 'Oyni tanlang',
16+
yearSelect: 'Yilni tanlang',
17+
decadeSelect: 'O\'n yilni tanlang',
18+
yearFormat: 'YYYY',
19+
dateFormat: 'M/D/YYYY',
20+
dayFormat: 'D',
21+
dateTimeFormat: 'M/D/YYYY HH:mm:ss',
22+
monthBeforeYear: true,
23+
previousMonth: 'Oldingi oy (PageUp)',
24+
nextMonth: 'Keyingi oy (PageDown)',
25+
previousYear: 'O\'tgan yili (Control + left)',
26+
nextYear: 'Keyingi yil (Control + right)',
27+
previousDecade: 'Oxirgi o\'n yil',
28+
nextDecade: 'Keyingi o\'n yil',
29+
previousCentury: 'O\'tgan asr',
30+
nextCentury: 'Keyingi asr',
31+
};
32+
33+
export default locale;

0 commit comments

Comments
 (0)