You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

2 vuotta sitten
123456789101112131415161718192021222324252627282930
  1. FullCalendar.globalLocales.push(function () {
  2. 'use strict';
  3. var fa = {
  4. code: 'fa',
  5. week: {
  6. dow: 6, // Saturday is the first day of the week.
  7. doy: 12, // The week that contains Jan 1st is the first week of the year.
  8. },
  9. direction: 'rtl',
  10. buttonText: {
  11. prev: 'قبلی',
  12. next: 'بعدی',
  13. today: 'امروز',
  14. month: 'ماه',
  15. week: 'هفته',
  16. day: 'روز',
  17. list: 'برنامه',
  18. },
  19. weekText: 'هف',
  20. allDayText: 'تمام روز',
  21. moreLinkText: function(n) {
  22. return 'بیش از ' + n
  23. },
  24. noEventsText: 'هیچ رویدادی به نمایش',
  25. };
  26. return fa;
  27. }());