date-object
Version:
JavaScript library for working with Date and Time in different calendars and locals
32 lines (31 loc) • 822 B
JavaScript
module.exports = {
name: "gregorian_ar",
months: [
["يناير", "ينا"],
["فبراير", "فبر"],
["مارس", "ما"],
["إبريل", "إبر"],
["مايو", "ما"],
["يونيو", "يو"],
["يوليو", "يوليو"],
["أغسطس", "أغس"],
["سبتمبر", "سب"],
["أكتوبر", "اک"],
["نوفمبر", "نو"],
["ديسمبر", "دس"],
],
weekDays: [
["السّبت", "سب"],
["الأحد", "اح"],
["الإثنينِ", "ثن"],
["الثلاثاء", "ثل"],
["الأربعاء", "ار"],
["الخميس", "خم"],
["الجمعة", "جم"],
],
digits: ["٠", "١", "٢", "٣", "٤", "٥", "٦", "٧", "٨", "٩"],
meridiems: [
["قبل الظهر", "ق.ظ"],
["بعد الظهر", "ب.ظ"],
],
};