Keine Beschreibung

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. //! moment.js locale configuration
  2. //! locale : Maori [mi]
  3. //! author : John Corrigan <robbiecloset@gmail.com> : https://github.com/johnideal
  4. import moment from '../moment';
  5. export default moment.defineLocale('mi', {
  6. months: 'Kohi-tāte_Hui-tanguru_Poutū-te-rangi_Paenga-whāwhā_Haratua_Pipiri_Hōngoingoi_Here-turi-kōkā_Mahuru_Whiringa-ā-nuku_Whiringa-ā-rangi_Hakihea'.split('_'),
  7. monthsShort: 'Kohi_Hui_Pou_Pae_Hara_Pipi_Hōngoi_Here_Mahu_Whi-nu_Whi-ra_Haki'.split('_'),
  8. monthsRegex: /(?:['a-z\u0101\u014D\u016B]+\-?){1,3}/i,
  9. monthsStrictRegex: /(?:['a-z\u0101\u014D\u016B]+\-?){1,3}/i,
  10. monthsShortRegex: /(?:['a-z\u0101\u014D\u016B]+\-?){1,3}/i,
  11. monthsShortStrictRegex: /(?:['a-z\u0101\u014D\u016B]+\-?){1,2}/i,
  12. weekdays: 'Rātapu_Mane_Tūrei_Wenerei_Tāite_Paraire_Hātarei'.split('_'),
  13. weekdaysShort: 'Ta_Ma_Tū_We_Tāi_Pa_Hā'.split('_'),
  14. weekdaysMin: 'Ta_Ma_Tū_We_Tāi_Pa_Hā'.split('_'),
  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 [i] HH:mm',
  21. LLLL: 'dddd, D MMMM YYYY [i] HH:mm'
  22. },
  23. calendar: {
  24. sameDay: '[i teie mahana, i] LT',
  25. nextDay: '[apopo i] LT',
  26. nextWeek: 'dddd [i] LT',
  27. lastDay: '[inanahi i] LT',
  28. lastWeek: 'dddd [whakamutunga i] LT',
  29. sameElse: 'L'
  30. },
  31. relativeTime: {
  32. future: 'i roto i %s',
  33. past: '%s i mua',
  34. s: 'te hēkona ruarua',
  35. ss: '%d hēkona',
  36. m: 'he meneti',
  37. mm: '%d meneti',
  38. h: 'te haora',
  39. hh: '%d haora',
  40. d: 'he ra',
  41. dd: '%d ra',
  42. M: 'he marama',
  43. MM: '%d marama',
  44. y: 'he tau',
  45. yy: '%d tau'
  46. },
  47. dayOfMonthOrdinalParse: /\d{1,2}º/,
  48. ordinal: '%dº',
  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. });