ta-in.js 767 B

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