bm.js 2.1 KB

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