ta-in.global.js 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  1. /*!
  2. FullCalendar Core v6.1.14
  3. Docs & License: https://fullcalendar.io
  4. (c) 2024 Adam Shaw
  5. */
  6. (function (index_js) {
  7. 'use strict';
  8. var locale = {
  9. code: 'ta-in',
  10. week: {
  11. dow: 1,
  12. doy: 4, // The week that contains Jan 4th is the first week of the year.
  13. },
  14. buttonText: {
  15. prev: 'முந்தைய',
  16. next: 'அடுத்தது',
  17. today: 'இன்று',
  18. year: 'ஆண்டு',
  19. month: 'மாதம்',
  20. week: 'வாரம்',
  21. day: 'நாள்',
  22. list: 'தினசரி அட்டவணை',
  23. },
  24. weekText: 'வாரம்',
  25. allDayText: 'நாள் முழுவதும்',
  26. moreLinkText(n) {
  27. return '+ மேலும் ' + n;
  28. },
  29. noEventsText: 'காண்பிக்க நிகழ்வுகள் இல்லை',
  30. };
  31. index_js.globalLocales.push(locale);
  32. })(FullCalendar);