UNPKG

645 BJavaScriptView Raw
1FullCalendar.globalLocales.push(function () {
2 'use strict';
3
4 var arMa = {
5 code: "ar-ma",
6 week: {
7 dow: 6, // Saturday is the first day of the week.
8 doy: 12 // The week that contains Jan 1st is the first week of the year.
9 },
10 direction: 'rtl',
11 buttonText: {
12 prev: "السابق",
13 next: "التالي",
14 today: "اليوم",
15 month: "شهر",
16 week: "أسبوع",
17 day: "يوم",
18 list: "أجندة"
19 },
20 weekText: "أسبوع",
21 allDayText: "اليوم كله",
22 moreLinkText: "أخرى",
23 noEventsText: "أي أحداث لعرض"
24 };
25
26 return arMa;
27
28}());