Skip to content

Commit bc845e3

Browse files
feat: add urdu locale (#266)
1 parent 13bc085 commit bc845e3

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

src/locale/ur_PK.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: 'ur_PK',
5+
today: 'آج',
6+
now: 'ابھی',
7+
backToToday: 'آج واپس',
8+
ok: 'ٹھیک ہے',
9+
clear: 'صاف',
10+
month: 'مہینہ',
11+
year: 'سال',
12+
timeSelect: 'وقت منتخب کریں',
13+
dateSelect: 'تاریخ منتخب کریں',
14+
weekSelect: 'ایک ہفتہ کا انتخاب کریں',
15+
monthSelect: 'ایک مہینہ کا انتخاب کریں',
16+
yearSelect: 'ایک سال کا انتخاب کریں',
17+
decadeSelect: 'ایک دہائی کا انتخاب کریں',
18+
yearFormat: 'YYYY',
19+
dateFormat: 'M/D/YYYY',
20+
dayFormat: 'D',
21+
dateTimeFormat: 'M/D/YYYY HH:mm:ss',
22+
monthBeforeYear: true,
23+
previousMonth: 'پچھلے مہینے (PageUp)',
24+
nextMonth: 'اگلے مہینے (PageDown)',
25+
previousYear: 'گزشتہ سال (Control + left)',
26+
nextYear: 'اگلے سال (Control + right)',
27+
previousDecade: 'پچھلی دہائی',
28+
nextDecade: 'اگلی دہائی',
29+
previousCentury: 'پچھلی صدی',
30+
nextCentury: 'اگلی صدی',
31+
};
32+
33+
export default locale;

0 commit comments

Comments
 (0)