Merge "Add support for PHP7 random_bytes in favor of mcrypt_create_iv"
[lhc/web/wiklou.git] / resources / lib / moment / locale / tl-ph.js
1 //! moment.js locale configuration
2 //! locale : Tagalog (Philippines) [tl-ph]
3 //! author : Dan Hagman : https://github.com/hagmandan
4
5 ;(function (global, factory) {
6 typeof exports === 'object' && typeof module !== 'undefined'
7 && typeof require === 'function' ? factory(require('../moment')) :
8 typeof define === 'function' && define.amd ? define(['../moment'], factory) :
9 factory(global.moment)
10 }(this, function (moment) { 'use strict';
11
12
13 var tl_ph = moment.defineLocale('tl-ph', {
14 months : 'Enero_Pebrero_Marso_Abril_Mayo_Hunyo_Hulyo_Agosto_Setyembre_Oktubre_Nobyembre_Disyembre'.split('_'),
15 monthsShort : 'Ene_Peb_Mar_Abr_May_Hun_Hul_Ago_Set_Okt_Nob_Dis'.split('_'),
16 weekdays : 'Linggo_Lunes_Martes_Miyerkules_Huwebes_Biyernes_Sabado'.split('_'),
17 weekdaysShort : 'Lin_Lun_Mar_Miy_Huw_Biy_Sab'.split('_'),
18 weekdaysMin : 'Li_Lu_Ma_Mi_Hu_Bi_Sab'.split('_'),
19 longDateFormat : {
20 LT : 'HH:mm',
21 LTS : 'HH:mm:ss',
22 L : 'MM/D/YYYY',
23 LL : 'MMMM D, YYYY',
24 LLL : 'MMMM D, YYYY HH:mm',
25 LLLL : 'dddd, MMMM DD, YYYY HH:mm'
26 },
27 calendar : {
28 sameDay: '[Ngayon sa] LT',
29 nextDay: '[Bukas sa] LT',
30 nextWeek: 'dddd [sa] LT',
31 lastDay: '[Kahapon sa] LT',
32 lastWeek: 'dddd [huling linggo] LT',
33 sameElse: 'L'
34 },
35 relativeTime : {
36 future : 'sa loob ng %s',
37 past : '%s ang nakalipas',
38 s : 'ilang segundo',
39 m : 'isang minuto',
40 mm : '%d minuto',
41 h : 'isang oras',
42 hh : '%d oras',
43 d : 'isang araw',
44 dd : '%d araw',
45 M : 'isang buwan',
46 MM : '%d buwan',
47 y : 'isang taon',
48 yy : '%d taon'
49 },
50 ordinalParse: /\d{1,2}/,
51 ordinal : function (number) {
52 return number;
53 },
54 week : {
55 dow : 1, // Monday is the first day of the week.
56 doy : 4 // The week that contains Jan 4th is the first week of the year.
57 }
58 });
59
60 return tl_ph;
61
62 }));