forked from ant-design/ant-design
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add urdu locale (ant-design#266)
- Loading branch information
1 parent
13bc085
commit bc845e3
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
import type { Locale } from '../interface'; | ||
|
||
const locale: Locale = { | ||
locale: 'ur_PK', | ||
today: 'آج', | ||
now: 'ابھی', | ||
backToToday: 'آج واپس', | ||
ok: 'ٹھیک ہے', | ||
clear: 'صاف', | ||
month: 'مہینہ', | ||
year: 'سال', | ||
timeSelect: 'وقت منتخب کریں', | ||
dateSelect: 'تاریخ منتخب کریں', | ||
weekSelect: 'ایک ہفتہ کا انتخاب کریں', | ||
monthSelect: 'ایک مہینہ کا انتخاب کریں', | ||
yearSelect: 'ایک سال کا انتخاب کریں', | ||
decadeSelect: 'ایک دہائی کا انتخاب کریں', | ||
yearFormat: 'YYYY', | ||
dateFormat: 'M/D/YYYY', | ||
dayFormat: 'D', | ||
dateTimeFormat: 'M/D/YYYY HH:mm:ss', | ||
monthBeforeYear: true, | ||
previousMonth: 'پچھلے مہینے (PageUp)', | ||
nextMonth: 'اگلے مہینے (PageDown)', | ||
previousYear: 'گزشتہ سال (Control + left)', | ||
nextYear: 'اگلے سال (Control + right)', | ||
previousDecade: 'پچھلی دہائی', | ||
nextDecade: 'اگلی دہائی', | ||
previousCentury: 'پچھلی صدی', | ||
nextCentury: 'اگلی صدی', | ||
}; | ||
|
||
export default locale; |