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