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 1.7KB

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