Merge "objectcache: use INTERIM_KEY_TTL constant in WANObjectCache for readability"
[lhc/web/wiklou.git] / resources / lib / moment / locale / bm.js
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 // Language contact person : Abdoufata Kane : https://github.com/abdoufata
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 monthsShort : 'Zan_Few_Mar_Awi_Mɛ_Zuw_Zul_Uti_Sɛt_ɔku_Now_Des'.split('_'),
17 weekdays : 'Kari_Ntɛnɛn_Tarata_Araba_Alamisa_Juma_Sibiri'.split('_'),
18 weekdaysShort : 'Kar_Ntɛ_Tar_Ara_Ala_Jum_Sib'.split('_'),
19 weekdaysMin : 'Ka_Nt_Ta_Ar_Al_Ju_Si'.split('_'),
20 longDateFormat : {
21 LT : 'HH:mm',
22 LTS : 'HH:mm:ss',
23 L : 'DD/MM/YYYY',
24 LL : 'MMMM [tile] D [san] YYYY',
25 LLL : 'MMMM [tile] D [san] YYYY [lɛrɛ] HH:mm',
26 LLLL : 'dddd MMMM [tile] D [san] YYYY [lɛrɛ] HH:mm'
27 },
28 calendar : {
29 sameDay : '[Bi lɛrɛ] LT',
30 nextDay : '[Sini lɛrɛ] LT',
31 nextWeek : 'dddd [don lɛrɛ] LT',
32 lastDay : '[Kunu lɛrɛ] LT',
33 lastWeek : 'dddd [tɛmɛnen lɛrɛ] LT',
34 sameElse : 'L'
35 },
36 relativeTime : {
37 future : '%s kɔnɔ',
38 past : 'a bɛ %s bɔ',
39 s : 'sanga dama dama',
40 m : 'miniti kelen',
41 mm : 'miniti %d',
42 h : 'lɛrɛ kelen',
43 hh : 'lɛrɛ %d',
44 d : 'tile kelen',
45 dd : 'tile %d',
46 M : 'kalo kelen',
47 MM : 'kalo %d',
48 y : 'san kelen',
49 yy : 'san %d'
50 },
51 week : {
52 dow : 1, // Monday is the first day of the week.
53 doy : 4 // The week that contains Jan 4th is the first week of the year.
54 }
55 });
56
57 return bm;
58
59 })));