Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

bm.js 2.2KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. //! moment.js locale configuration
  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. '_'
  14. ),
  15. monthsShort: 'Zan_Few_Mar_Awi_Mɛ_Zuw_Zul_Uti_Sɛt_ɔku_Now_Des'.split('_'),
  16. weekdays: 'Kari_Ntɛnɛn_Tarata_Araba_Alamisa_Juma_Sibiri'.split('_'),
  17. weekdaysShort: 'Kar_Ntɛ_Tar_Ara_Ala_Jum_Sib'.split('_'),
  18. weekdaysMin: 'Ka_Nt_Ta_Ar_Al_Ju_Si'.split('_'),
  19. longDateFormat: {
  20. LT: 'HH:mm',
  21. LTS: 'HH:mm:ss',
  22. L: 'DD/MM/YYYY',
  23. LL: 'MMMM [tile] D [san] YYYY',
  24. LLL: 'MMMM [tile] D [san] YYYY [lɛrɛ] HH:mm',
  25. LLLL: 'dddd MMMM [tile] D [san] YYYY [lɛrɛ] HH:mm',
  26. },
  27. calendar: {
  28. sameDay: '[Bi lɛrɛ] LT',
  29. nextDay: '[Sini lɛrɛ] LT',
  30. nextWeek: 'dddd [don lɛrɛ] LT',
  31. lastDay: '[Kunu lɛrɛ] LT',
  32. lastWeek: 'dddd [tɛmɛnen lɛrɛ] LT',
  33. sameElse: 'L',
  34. },
  35. relativeTime: {
  36. future: '%s kɔnɔ',
  37. past: 'a bɛ %s bɔ',
  38. s: 'sanga dama dama',
  39. ss: 'sekondi %d',
  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. return bm;
  57. })));