You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
723B

  1. FullCalendar.globalLocales.push(function () {
  2. 'use strict';
  3. var bn = {
  4. code: 'bn',
  5. week: {
  6. dow: 0, // Sunday is the first day of the week.
  7. doy: 6, // The week that contains Jan 1st 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 bn;
  26. }());