1 // moment.js language configuration
2 // language : Tagalog/Filipino (tl-ph)
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
11 factory(window
.moment
); // Browser global
14 return moment
.lang('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("_"),
24 LLL
: "MMMM D, YYYY LT",
25 LLLL
: "dddd, MMMM DD, YYYY LT"
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',
36 future
: "sa loob ng %s",
37 past
: "%s ang nakalipas",
50 ordinal : function (number
) {
54 dow
: 1, // Monday is the first day of the week.
55 doy
: 4 // The week that contains Jan 4th is the first week of the year.