No Description

ar.js 1000B

12345678910111213141516171819202122232425262728293031
  1. (function (global, factory) {
  2. typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
  3. typeof define === 'function' && define.amd ? define(factory) :
  4. (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.ar = factory()));
  5. }(this, function () { 'use strict';
  6. var ar = {
  7. code: "ar",
  8. week: {
  9. dow: 6,
  10. doy: 12 // The week that contains Jan 1st is the first week of the year.
  11. },
  12. dir: 'rtl',
  13. buttonText: {
  14. prev: "السابق",
  15. next: "التالي",
  16. today: "اليوم",
  17. month: "شهر",
  18. week: "أسبوع",
  19. day: "يوم",
  20. list: "أجندة"
  21. },
  22. weekLabel: "أسبوع",
  23. allDayText: "اليوم كله",
  24. eventLimitText: "أخرى",
  25. noEventsMessage: "أي أحداث لعرض"
  26. };
  27. return ar;
  28. }));