Release note for Id83eda95
[mediawiki.git] / resources / lib / moment / locale / tl-ph.js
blob40dbb07540ac366bc6c816b3c479d48b7fecfe5e
1 // moment.js locale configuration
2 // locale : Tagalog/Filipino (tl-ph)
3 // author : Dan Hagman
5 (function (factory) {
6     if (typeof define === 'function' && define.amd) {
7         define(['moment'], factory); // AMD
8     } else if (typeof exports === 'object') {
9         module.exports = factory(require('../moment')); // Node
10     } else {
11         factory((typeof global !== 'undefined' ? global : this).moment); // node or other global
12     }
13 }(function (moment) {
14     return moment.defineLocale('tl-ph', {
15         months : 'Enero_Pebrero_Marso_Abril_Mayo_Hunyo_Hulyo_Agosto_Setyembre_Oktubre_Nobyembre_Disyembre'.split('_'),
16         monthsShort : 'Ene_Peb_Mar_Abr_May_Hun_Hul_Ago_Set_Okt_Nob_Dis'.split('_'),
17         weekdays : 'Linggo_Lunes_Martes_Miyerkules_Huwebes_Biyernes_Sabado'.split('_'),
18         weekdaysShort : 'Lin_Lun_Mar_Miy_Huw_Biy_Sab'.split('_'),
19         weekdaysMin : 'Li_Lu_Ma_Mi_Hu_Bi_Sab'.split('_'),
20         longDateFormat : {
21             LT : 'HH:mm',
22             LTS : 'LT:ss',
23             L : 'MM/D/YYYY',
24             LL : 'MMMM D, YYYY',
25             LLL : 'MMMM D, YYYY LT',
26             LLLL : 'dddd, MMMM DD, YYYY LT'
27         },
28         calendar : {
29             sameDay: '[Ngayon sa] LT',
30             nextDay: '[Bukas sa] LT',
31             nextWeek: 'dddd [sa] LT',
32             lastDay: '[Kahapon sa] LT',
33             lastWeek: 'dddd [huling linggo] LT',
34             sameElse: 'L'
35         },
36         relativeTime : {
37             future : 'sa loob ng %s',
38             past : '%s ang nakalipas',
39             s : 'ilang segundo',
40             m : 'isang minuto',
41             mm : '%d minuto',
42             h : 'isang oras',
43             hh : '%d oras',
44             d : 'isang araw',
45             dd : '%d araw',
46             M : 'isang buwan',
47             MM : '%d buwan',
48             y : 'isang taon',
49             yy : '%d taon'
50         },
51         ordinalParse: /\d{1,2}/,
52         ordinal : function (number) {
53             return number;
54         },
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 }));