6cef891cb1dcb4160f5ee6d2fbdeb885277bf0d9c49d9fd5dd420958e7ef1eb0d7277b193843340dee54d5b2e28f040e513d9dacf465081fde0bea86d5c8c8 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. //! moment.js locale configuration
  2. //! locale : Swahili [sw]
  3. //! author : Fahad Kassim : https://github.com/fadsel
  4. import moment from '../moment';
  5. export default moment.defineLocale('sw', {
  6. months : 'Januari_Februari_Machi_Aprili_Mei_Juni_Julai_Agosti_Septemba_Oktoba_Novemba_Desemba'.split('_'),
  7. monthsShort : 'Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ago_Sep_Okt_Nov_Des'.split('_'),
  8. weekdays : 'Jumapili_Jumatatu_Jumanne_Jumatano_Alhamisi_Ijumaa_Jumamosi'.split('_'),
  9. weekdaysShort : 'Jpl_Jtat_Jnne_Jtan_Alh_Ijm_Jmos'.split('_'),
  10. weekdaysMin : 'J2_J3_J4_J5_Al_Ij_J1'.split('_'),
  11. weekdaysParseExact : true,
  12. longDateFormat : {
  13. LT : 'HH:mm',
  14. LTS : 'HH:mm:ss',
  15. L : 'DD.MM.YYYY',
  16. LL : 'D MMMM YYYY',
  17. LLL : 'D MMMM YYYY HH:mm',
  18. LLLL : 'dddd, D MMMM YYYY HH:mm'
  19. },
  20. calendar : {
  21. sameDay : '[leo saa] LT',
  22. nextDay : '[kesho saa] LT',
  23. nextWeek : '[wiki ijayo] dddd [saat] LT',
  24. lastDay : '[jana] LT',
  25. lastWeek : '[wiki iliyopita] dddd [saat] LT',
  26. sameElse : 'L'
  27. },
  28. relativeTime : {
  29. future : '%s baadaye',
  30. past : 'tokea %s',
  31. s : 'hivi punde',
  32. m : 'dakika moja',
  33. mm : 'dakika %d',
  34. h : 'saa limoja',
  35. hh : 'masaa %d',
  36. d : 'siku moja',
  37. dd : 'masiku %d',
  38. M : 'mwezi mmoja',
  39. MM : 'miezi %d',
  40. y : 'mwaka mmoja',
  41. yy : 'miaka %d'
  42. },
  43. week : {
  44. dow : 1, // Monday is the first day of the week.
  45. doy : 7 // The week that contains Jan 1st is the first week of the year.
  46. }
  47. });