bn.global.js 924 B

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: 'bn',
  10. week: {
  11. dow: 0,
  12. doy: 6, // The week that contains Jan 1st 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);