cscg24-guacamole

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

bm.js (1784B)


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