25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

2 yıl önce
1234567891011121314151617181920212223242526272829
  1. FullCalendar.globalLocales.push(function () {
  2. 'use strict';
  3. var taIn = {
  4. code: 'ta-in',
  5. week: {
  6. dow: 1, // Monday is the first day of the week.
  7. doy: 4, // The week that contains Jan 4th is the first week of the year.
  8. },
  9. buttonText: {
  10. prev: 'முந்தைய',
  11. next: 'அடுத்தது',
  12. today: 'இன்று',
  13. month: 'மாதம்',
  14. week: 'வாரம்',
  15. day: 'நாள்',
  16. list: 'தினசரி அட்டவணை',
  17. },
  18. weekText: 'வாரம்',
  19. allDayText: 'நாள் முழுவதும்',
  20. moreLinkText: function(n) {
  21. return '+ மேலும் ' + n
  22. },
  23. noEventsText: 'காண்பிக்க நிகழ்வுகள் இல்லை',
  24. };
  25. return taIn;
  26. }());