UNPKG

723 BJavaScriptView Raw
1FullCalendar.globalLocales.push(function () {
2 'use strict';
3
4 var bn = {
5 code: 'bn',
6 week: {
7 dow: 0, // Sunday is the first day of the week.
8 doy: 6, // The week that contains Jan 1st is the first week of the year.
9 },
10 buttonText: {
11 prev: 'পেছনে',
12 next: 'সামনে',
13 today: 'আজ',
14 month: 'মাস',
15 week: 'সপ্তাহ',
16 day: 'দিন',
17 list: 'তালিকা',
18 },
19 weekText: 'সপ্তাহ',
20 allDayText: 'সারাদিন',
21 moreLinkText: function(n) {
22 return '+অন্যান্য ' + n
23 },
24 noEventsText: 'কোনো ইভেন্ট নেই',
25 };
26
27 return bn;
28
29}());