Ohm-Management - Projektarbeit B-ME
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.

sw.js 2.0KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. //! moment.js locale configuration
  2. ;(function (global, factory) {
  3. typeof exports === 'object' && typeof module !== 'undefined'
  4. && typeof require === 'function' ? factory(require('../moment')) :
  5. typeof define === 'function' && define.amd ? define(['../moment'], factory) :
  6. factory(global.moment)
  7. }(this, (function (moment) { 'use strict';
  8. var sw = moment.defineLocale('sw', {
  9. months : 'Januari_Februari_Machi_Aprili_Mei_Juni_Julai_Agosti_Septemba_Oktoba_Novemba_Desemba'.split('_'),
  10. monthsShort : 'Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ago_Sep_Okt_Nov_Des'.split('_'),
  11. weekdays : 'Jumapili_Jumatatu_Jumanne_Jumatano_Alhamisi_Ijumaa_Jumamosi'.split('_'),
  12. weekdaysShort : 'Jpl_Jtat_Jnne_Jtan_Alh_Ijm_Jmos'.split('_'),
  13. weekdaysMin : 'J2_J3_J4_J5_Al_Ij_J1'.split('_'),
  14. weekdaysParseExact : true,
  15. longDateFormat : {
  16. LT : 'HH:mm',
  17. LTS : 'HH:mm:ss',
  18. L : 'DD.MM.YYYY',
  19. LL : 'D MMMM YYYY',
  20. LLL : 'D MMMM YYYY HH:mm',
  21. LLLL : 'dddd, D MMMM YYYY HH:mm'
  22. },
  23. calendar : {
  24. sameDay : '[leo saa] LT',
  25. nextDay : '[kesho saa] LT',
  26. nextWeek : '[wiki ijayo] dddd [saat] LT',
  27. lastDay : '[jana] LT',
  28. lastWeek : '[wiki iliyopita] dddd [saat] LT',
  29. sameElse : 'L'
  30. },
  31. relativeTime : {
  32. future : '%s baadaye',
  33. past : 'tokea %s',
  34. s : 'hivi punde',
  35. ss : 'sekunde %d',
  36. m : 'dakika moja',
  37. mm : 'dakika %d',
  38. h : 'saa limoja',
  39. hh : 'masaa %d',
  40. d : 'siku moja',
  41. dd : 'masiku %d',
  42. M : 'mwezi mmoja',
  43. MM : 'miezi %d',
  44. y : 'mwaka mmoja',
  45. yy : 'miaka %d'
  46. },
  47. week : {
  48. dow : 1, // Monday is the first day of the week.
  49. doy : 7 // The week that contains Jan 7th is the first week of the year.
  50. }
  51. });
  52. return sw;
  53. })));