選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

31 行
678B

  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. }());