1 // moment.js locale configuration
2 // locale : Bengali (bn)
3 // author : Kaushik Gandhi : https://github.com/kaushikgandhi
6 // Comment out broken wrapper, see T145382
7 /*if (typeof define === 'function' && define.amd) {
8 define(['moment'], factory); // AMD
9 } else if (typeof exports === 'object') {
10 module.exports = factory(require('../moment')); // Node
12 factory((typeof global !== 'undefined' ? global : this).moment); // node or other global
41 return moment
.defineLocale('bn', {
42 months
: 'জানুয়ারী_ফেবুয়ারী_মার্চ_এপ্রিল_মে_জুন_জুলাই_অগাস্ট_সেপ্টেম্বর_অক্টোবর_নভেম্বর_ডিসেম্বর'.split('_'),
43 monthsShort
: 'জানু_ফেব_মার্চ_এপর_মে_জুন_জুল_অগ_সেপ্ট_অক্টো_নভ_ডিসেম্'.split('_'),
44 weekdays
: 'রবিবার_সোমবার_মঙ্গলবার_বুধবার_বৃহস্পত্তিবার_শুক্রুবার_শনিবার'.split('_'),
45 weekdaysShort
: 'রবি_সোম_মঙ্গল_বুধ_বৃহস্পত্তি_শুক্রু_শনি'.split('_'),
46 weekdaysMin
: 'রব_সম_মঙ্গ_বু_ব্রিহ_শু_শনি'.split('_'),
49 LTS
: 'A h:mm:ss সময়',
52 LLL
: 'D MMMM YYYY, LT',
53 LLLL
: 'dddd, D MMMM YYYY, LT'
57 nextDay
: '[আগামীকাল] LT',
58 nextWeek
: 'dddd, LT',
59 lastDay
: '[গতকাল] LT',
60 lastWeek
: '[গত] dddd, LT',
78 preparse: function (string
) {
79 return string
.replace(/[১২৩৪৫৬৭৮৯০]/g, function (match
) {
80 return numberMap
[match
];
83 postformat: function (string
) {
84 return string
.replace(/\d/g, function (match
) {
85 return symbolMap
[match
];
88 //Bengali is a vast language its spoken
89 //in different forms in various parts of the world.
90 //I have just generalized with most common one used
91 meridiem : function (hour
, minute
, isLower
) {
94 } else if (hour
< 10) {
96 } else if (hour
< 17) {
98 } else if (hour
< 20) {
105 dow
: 0, // Sunday is the first day of the week.
106 doy
: 6 // The week that contains Jan 1st is the first week of the year.