cscg24-guacamole

CSCG 2024 Challenge 'Guacamole Mashup'
git clone https://git.sinitax.com/sinitax/cscg24-guacamole
Log | Files | Refs | sfeed.txt

bm.js (2233B)


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