LaravelTest
70 строк · 2.5 Кб
1//! moment.js locale configuration
2//! locale : Maori [mi]
3//! author : John Corrigan <robbiecloset@gmail.com> : https://github.com/johnideal
4
5;(function (global, factory) {6typeof exports === 'object' && typeof module !== 'undefined'7&& typeof require === 'function' ? factory(require('../moment')) :8typeof define === 'function' && define.amd ? define(['../moment'], factory) :9factory(global.moment)10}(this, (function (moment) { 'use strict';11
12//! moment.js locale configuration13
14var mi = moment.defineLocale('mi', {15months: '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(16'_'17),18monthsShort: 'Kohi_Hui_Pou_Pae_Hara_Pipi_Hōngoi_Here_Mahu_Whi-nu_Whi-ra_Haki'.split(19'_'20),21monthsRegex: /(?:['a-z\u0101\u014D\u016B]+\-?){1,3}/i,22monthsStrictRegex: /(?:['a-z\u0101\u014D\u016B]+\-?){1,3}/i,23monthsShortRegex: /(?:['a-z\u0101\u014D\u016B]+\-?){1,3}/i,24monthsShortStrictRegex: /(?:['a-z\u0101\u014D\u016B]+\-?){1,2}/i,25weekdays: 'Rātapu_Mane_Tūrei_Wenerei_Tāite_Paraire_Hātarei'.split('_'),26weekdaysShort: 'Ta_Ma_Tū_We_Tāi_Pa_Hā'.split('_'),27weekdaysMin: 'Ta_Ma_Tū_We_Tāi_Pa_Hā'.split('_'),28longDateFormat: {29LT: 'HH:mm',30LTS: 'HH:mm:ss',31L: 'DD/MM/YYYY',32LL: 'D MMMM YYYY',33LLL: 'D MMMM YYYY [i] HH:mm',34LLLL: 'dddd, D MMMM YYYY [i] HH:mm',35},36calendar: {37sameDay: '[i teie mahana, i] LT',38nextDay: '[apopo i] LT',39nextWeek: 'dddd [i] LT',40lastDay: '[inanahi i] LT',41lastWeek: 'dddd [whakamutunga i] LT',42sameElse: 'L',43},44relativeTime: {45future: 'i roto i %s',46past: '%s i mua',47s: 'te hēkona ruarua',48ss: '%d hēkona',49m: 'he meneti',50mm: '%d meneti',51h: 'te haora',52hh: '%d haora',53d: 'he ra',54dd: '%d ra',55M: 'he marama',56MM: '%d marama',57y: 'he tau',58yy: '%d tau',59},60dayOfMonthOrdinalParse: /\d{1,2}º/,61ordinal: '%dº',62week: {63dow: 1, // Monday is the first day of the week.64doy: 4, // The week that contains Jan 4th is the first week of the year.65},66});67
68return mi;69
70})));71