resources: Bump moment.js from 2.15.0 to 2.19.3
[lhc/web/wiklou.git] / resources / lib / moment / locale / tet.js
1 //! moment.js locale configuration
2 //! locale : Tetun Dili (East Timor) [tet]
3 //! author : Joshua Brooks : https://github.com/joshbrooks
4 //! author : Onorio De J. Afonso : https://github.com/marobo
5
6 ;(function (global, factory) {
7 typeof exports === 'object' && typeof module !== 'undefined'
8 && typeof require === 'function' ? factory(require('../moment')) :
9 typeof define === 'function' && define.amd ? define(['../moment'], factory) :
10 factory(global.moment)
11 }(this, (function (moment) { 'use strict';
12
13
14 var tet = moment.defineLocale('tet', {
15 months : 'Janeiru_Fevereiru_Marsu_Abril_Maiu_Juniu_Juliu_Augustu_Setembru_Outubru_Novembru_Dezembru'.split('_'),
16 monthsShort : 'Jan_Fev_Mar_Abr_Mai_Jun_Jul_Aug_Set_Out_Nov_Dez'.split('_'),
17 weekdays : 'Domingu_Segunda_Tersa_Kuarta_Kinta_Sexta_Sabadu'.split('_'),
18 weekdaysShort : 'Dom_Seg_Ters_Kua_Kint_Sext_Sab'.split('_'),
19 weekdaysMin : 'Do_Seg_Te_Ku_Ki_Sex_Sa'.split('_'),
20 longDateFormat : {
21 LT : 'HH:mm',
22 LTS : 'HH:mm:ss',
23 L : 'DD/MM/YYYY',
24 LL : 'D MMMM YYYY',
25 LLL : 'D MMMM YYYY HH:mm',
26 LLLL : 'dddd, D MMMM YYYY HH:mm'
27 },
28 calendar : {
29 sameDay: '[Ohin iha] LT',
30 nextDay: '[Aban iha] LT',
31 nextWeek: 'dddd [iha] LT',
32 lastDay: '[Horiseik iha] LT',
33 lastWeek: 'dddd [semana kotuk] [iha] LT',
34 sameElse: 'L'
35 },
36 relativeTime : {
37 future : 'iha %s',
38 past : '%s liuba',
39 s : 'minutu balun',
40 m : 'minutu ida',
41 mm : 'minutus %d',
42 h : 'horas ida',
43 hh : 'horas %d',
44 d : 'loron ida',
45 dd : 'loron %d',
46 M : 'fulan ida',
47 MM : 'fulan %d',
48 y : 'tinan ida',
49 yy : 'tinan %d'
50 },
51 dayOfMonthOrdinalParse: /\d{1,2}(st|nd|rd|th)/,
52 ordinal : function (number) {
53 var b = number % 10,
54 output = (~~(number % 100 / 10) === 1) ? 'th' :
55 (b === 1) ? 'st' :
56 (b === 2) ? 'nd' :
57 (b === 3) ? 'rd' : 'th';
58 return number + output;
59 },
60 week : {
61 dow : 1, // Monday is the first day of the week.
62 doy : 4 // The week that contains Jan 4th is the first week of the year.
63 }
64 });
65
66 return tet;
67
68 })));