LaravelTest
62 строки · 2.2 Кб
1//! moment.js locale configuration
2//! locale : Bambara [bm]
3//! author : Estelle Comment : https://github.com/estellecomment
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 bm = moment.defineLocale('bm', {15months: 'Zanwuyekalo_Fewuruyekalo_Marisikalo_Awirilikalo_Mɛkalo_Zuwɛnkalo_Zuluyekalo_Utikalo_Sɛtanburukalo_ɔkutɔburukalo_Nowanburukalo_Desanburukalo'.split(16'_'17),18monthsShort: 'Zan_Few_Mar_Awi_Mɛ_Zuw_Zul_Uti_Sɛt_ɔku_Now_Des'.split('_'),19weekdays: 'Kari_Ntɛnɛn_Tarata_Araba_Alamisa_Juma_Sibiri'.split('_'),20weekdaysShort: 'Kar_Ntɛ_Tar_Ara_Ala_Jum_Sib'.split('_'),21weekdaysMin: 'Ka_Nt_Ta_Ar_Al_Ju_Si'.split('_'),22longDateFormat: {23LT: 'HH:mm',24LTS: 'HH:mm:ss',25L: 'DD/MM/YYYY',26LL: 'MMMM [tile] D [san] YYYY',27LLL: 'MMMM [tile] D [san] YYYY [lɛrɛ] HH:mm',28LLLL: 'dddd MMMM [tile] D [san] YYYY [lɛrɛ] HH:mm',29},30calendar: {31sameDay: '[Bi lɛrɛ] LT',32nextDay: '[Sini lɛrɛ] LT',33nextWeek: 'dddd [don lɛrɛ] LT',34lastDay: '[Kunu lɛrɛ] LT',35lastWeek: 'dddd [tɛmɛnen lɛrɛ] LT',36sameElse: 'L',37},38relativeTime: {39future: '%s kɔnɔ',40past: 'a bɛ %s bɔ',41s: 'sanga dama dama',42ss: 'sekondi %d',43m: 'miniti kelen',44mm: 'miniti %d',45h: 'lɛrɛ kelen',46hh: 'lɛrɛ %d',47d: 'tile kelen',48dd: 'tile %d',49M: 'kalo kelen',50MM: 'kalo %d',51y: 'san kelen',52yy: 'san %d',53},54week: {55dow: 1, // Monday is the first day of the week.56doy: 4, // The week that contains Jan 4th is the first week of the year.57},58});59
60return bm;61
62})));63