You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
// Arabic (Morocco) [ar-ma]
import dayjs from '../index' ;
var locale = {
name : 'ar-ma' ,
weekdays : 'ا لأحد_ا لإثنين_ا لثلا ثا ء_ا لأربعا ء_ا لخميس_ا لجمعة_ا لسبت' . split ( '_' ) ,
months : 'ينا ير_فبرا ير_ما رس_أبريل_ما ي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر' . split ( '_' ) ,
weekStart : 6 ,
weekdaysShort : 'ا حد_إثنين_ثلا ثا ء_ا ربعا ء_خميس_جمعة_سبت' . split ( '_' ) ,
monthsShort : 'ينا ير_فبرا ير_ما رس_أبريل_ما ي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر' . split ( '_' ) ,
weekdaysMin : 'ح_ن_ث_ر_خ_ج_س' . split ( '_' ) ,
ordinal : function ordinal ( n ) {
return 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 : function meridiem ( hour ) {
return 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 ;