-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Add Arabic (Iraq) [ar-iq] locale (#1627)
* Add iraqi arabic locale * Update ar-iq.js Co-authored-by: iamkun <[email protected]>
- Loading branch information
Showing
1 changed file
with
41 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,41 @@ | ||
// Arabic (Iraq) [ar-iq] | ||
import dayjs from 'dayjs' | ||
|
||
const locale = { | ||
name: 'ar-iq', | ||
weekdays: 'الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'), | ||
months: 'كانون الثاني_شباط_آذار_نيسان_أيار_حزيران_تموز_آب_أيلول_تشرين الأول_ تشرين الثاني_كانون الأول'.split('_'), | ||
weekStart: 1, | ||
weekdaysShort: 'أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت'.split('_'), | ||
monthsShort: 'كانون الثاني_شباط_آذار_نيسان_أيار_حزيران_تموز_آب_أيلول_تشرين الأول_ تشرين الثاني_كانون الأول'.split('_'), | ||
weekdaysMin: 'ح_ن_ث_ر_خ_ج_س'.split('_'), | ||
ordinal: n => n, | ||
formats: { | ||
LT: 'HH:mm', | ||
LTS: 'HH:mm:ss', | ||
L: 'DD/MM/YYYY', | ||
LL: 'D MMMM YYYY', | ||
LLL: 'D MMMM YYYY HH:mm', | ||
LLLL: 'dddd D MMMM YYYY HH:mm' | ||
}, | ||
meridiem: hour => (hour > 12 ? 'ص' : 'م'), | ||
relativeTime: { | ||
future: 'في %s', | ||
past: 'منذ %s', | ||
s: 'ثوان', | ||
m: 'دقيقة', | ||
mm: '%d دقائق', | ||
h: 'ساعة', | ||
hh: '%d ساعات', | ||
d: 'يوم', | ||
dd: '%d أيام', | ||
M: 'شهر', | ||
MM: '%d أشهر', | ||
y: 'سنة', | ||
yy: '%d سنوات' | ||
} | ||
} | ||
|
||
dayjs.locale(locale, null, true) | ||
|
||
export default locale |