Ingen beskrivning

fa.js 1.0KB

123456789101112131415161718192021222324252627282930313233
  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.fa = factory()));
  5. }(this, function () { 'use strict';
  6. var fa = {
  7. code: "fa",
  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: function (n) {
  25. return "بیش از " + n;
  26. },
  27. noEventsMessage: "هیچ رویدادی به نمایش"
  28. };
  29. return fa;
  30. }));