UNPKG

676 BJavaScriptView Raw
1FullCalendar.globalLocales.push(function () {
2 'use strict';
3
4 var fa = {
5 code: "fa",
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: function(n) {
23 return "بیش از " + n;
24 },
25 noEventsText: "هیچ رویدادی به نمایش"
26 };
27
28 return fa;
29
30}());