LaravelTest
129 строк · 4.6 Кб
1//! moment.js locale configuration
2//! locale : Bengali [bn]
3//! author : Kaushik Gandhi : https://github.com/kaushikgandhi
4
5;(function (global, factory) {6typeof exports === 'object' && typeof module !== 'undefined'7&& typeof require === 'function' ? factory(require('../moment')) :8typeof define === 'function' && define.amd ? define(['../moment'], factory) :9factory(global.moment)10}(this, (function (moment) { 'use strict';11
12//! moment.js locale configuration13
14var symbolMap = {151: '১',162: '২',173: '৩',184: '৪',195: '৫',206: '৬',217: '৭',228: '৮',239: '৯',240: '০',25},26numberMap = {27'১': '1',28'২': '2',29'৩': '3',30'৪': '4',31'৫': '5',32'৬': '6',33'৭': '7',34'৮': '8',35'৯': '9',36'০': '0',37};38
39var bn = moment.defineLocale('bn', {40months: 'জানুয়ারি_ফেব্রুয়ারি_মার্চ_এপ্রিল_মে_জুন_জুলাই_আগস্ট_সেপ্টেম্বর_অক্টোবর_নভেম্বর_ডিসেম্বর'.split(41'_'42),43monthsShort: 'জানু_ফেব্রু_মার্চ_এপ্রিল_মে_জুন_জুলাই_আগস্ট_সেপ্ট_অক্টো_নভে_ডিসে'.split(44'_'45),46weekdays: 'রবিবার_সোমবার_মঙ্গলবার_বুধবার_বৃহস্পতিবার_শুক্রবার_শনিবার'.split(47'_'48),49weekdaysShort: 'রবি_সোম_মঙ্গল_বুধ_বৃহস্পতি_শুক্র_শনি'.split('_'),50weekdaysMin: 'রবি_সোম_মঙ্গল_বুধ_বৃহ_শুক্র_শনি'.split('_'),51longDateFormat: {52LT: 'A h:mm সময়',53LTS: 'A h:mm:ss সময়',54L: 'DD/MM/YYYY',55LL: 'D MMMM YYYY',56LLL: 'D MMMM YYYY, A h:mm সময়',57LLLL: 'dddd, D MMMM YYYY, A h:mm সময়',58},59calendar: {60sameDay: '[আজ] LT',61nextDay: '[আগামীকাল] LT',62nextWeek: 'dddd, LT',63lastDay: '[গতকাল] LT',64lastWeek: '[গত] dddd, LT',65sameElse: 'L',66},67relativeTime: {68future: '%s পরে',69past: '%s আগে',70s: 'কয়েক সেকেন্ড',71ss: '%d সেকেন্ড',72m: 'এক মিনিট',73mm: '%d মিনিট',74h: 'এক ঘন্টা',75hh: '%d ঘন্টা',76d: 'এক দিন',77dd: '%d দিন',78M: 'এক মাস',79MM: '%d মাস',80y: 'এক বছর',81yy: '%d বছর',82},83preparse: function (string) {84return string.replace(/[১২৩৪৫৬৭৮৯০]/g, function (match) {85return numberMap[match];86});87},88postformat: function (string) {89return string.replace(/\d/g, function (match) {90return symbolMap[match];91});92},93meridiemParse: /রাত|সকাল|দুপুর|বিকাল|রাত/,94meridiemHour: function (hour, meridiem) {95if (hour === 12) {96hour = 0;97}98if (99(meridiem === 'রাত' && hour >= 4) ||100(meridiem === 'দুপুর' && hour < 5) ||101meridiem === 'বিকাল'102) {103return hour + 12;104} else {105return hour;106}107},108meridiem: function (hour, minute, isLower) {109if (hour < 4) {110return 'রাত';111} else if (hour < 10) {112return 'সকাল';113} else if (hour < 17) {114return 'দুপুর';115} else if (hour < 20) {116return 'বিকাল';117} else {118return 'রাত';119}120},121week: {122dow: 0, // Sunday is the first day of the week.123doy: 6, // The week that contains Jan 6th is the first week of the year.124},125});126
127return bn;128
129})));130