Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add urdu locale #266

Merged
merged 1 commit into from
Jun 18, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions src/locale/ur_PK.ts
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;