1 //! moment.js locale configuration
2 //! locale : Bengali [bn]
3 //! author : Kaushik Gandhi : https://github.com/kaushikgandhi
5 ;(function (global, factory) {
6 typeof exports === 'object' && typeof module !== 'undefined'
7 && typeof require === 'function' ? factory(require('../moment')) :
8 typeof define === 'function' && define.amd ? define(['../moment'], factory) :
10 }(this, (function (moment) { 'use strict';
12 //! moment.js locale configuration
39 var bn = moment.defineLocale('bn', {
40 months: 'জানুয়ারি_ফেব্রুয়ারি_মার্চ_এপ্রিল_মে_জুন_জুলাই_আগস্ট_সেপ্টেম্বর_অক্টোবর_নভেম্বর_ডিসেম্বর'.split(
43 monthsShort: 'জানু_ফেব্রু_মার্চ_এপ্রিল_মে_জুন_জুলাই_আগস্ট_সেপ্ট_অক্টো_নভে_ডিসে'.split(
46 weekdays: 'রবিবার_সোমবার_মঙ্গলবার_বুধবার_বৃহস্পতিবার_শুক্রবার_শনিবার'.split(
49 weekdaysShort: 'রবি_সোম_মঙ্গল_বুধ_বৃহস্পতি_শুক্র_শনি'.split('_'),
50 weekdaysMin: 'রবি_সোম_মঙ্গল_বুধ_বৃহ_শুক্র_শনি'.split('_'),
56 LLL: 'D MMMM YYYY, A h:mm সময়',
57 LLLL: 'dddd, D MMMM YYYY, A h:mm সময়',
61 nextDay: '[আগামীকাল] LT',
63 lastDay: '[গতকাল] LT',
64 lastWeek: '[গত] dddd, LT',
83 preparse: function (string) {
84 return string.replace(/[১২৩৪৫৬৭৮৯০]/g, function (match) {
85 return numberMap[match];
88 postformat: function (string) {
89 return string.replace(/\d/g, function (match) {
90 return symbolMap[match];
93 meridiemParse: /রাত|সকাল|দুপুর|বিকাল|রাত/,
94 meridiemHour: function (hour, meridiem) {
99 (meridiem === 'রাত' && hour >= 4) ||
100 (meridiem === 'দুপুর' && hour < 5) ||
108 meridiem: function (hour, minute, isLower) {
111 } else if (hour < 10) {
113 } else if (hour < 17) {
115 } else if (hour < 20) {
122 dow: 0, // Sunday is the first day of the week.
123 doy: 6, // The week that contains Jan 6th is the first week of the year.