LaravelTest
69 строк · 2.3 Кб
1//! moment.js locale configuration
2//! locale : Filipino [fil]
3//! author : Dan Hagman : https://github.com/hagmandan
4//! author : Matthew Co : https://github.com/matthewdeeco
5
6;(function (global, factory) {7typeof exports === 'object' && typeof module !== 'undefined'8&& typeof require === 'function' ? factory(require('../moment')) :9typeof define === 'function' && define.amd ? define(['../moment'], factory) :10factory(global.moment)11}(this, (function (moment) { 'use strict';12
13//! moment.js locale configuration14
15var fil = moment.defineLocale('fil', {16months: 'Enero_Pebrero_Marso_Abril_Mayo_Hunyo_Hulyo_Agosto_Setyembre_Oktubre_Nobyembre_Disyembre'.split(17'_'18),19monthsShort: 'Ene_Peb_Mar_Abr_May_Hun_Hul_Ago_Set_Okt_Nob_Dis'.split('_'),20weekdays: 'Linggo_Lunes_Martes_Miyerkules_Huwebes_Biyernes_Sabado'.split(21'_'22),23weekdaysShort: 'Lin_Lun_Mar_Miy_Huw_Biy_Sab'.split('_'),24weekdaysMin: 'Li_Lu_Ma_Mi_Hu_Bi_Sab'.split('_'),25longDateFormat: {26LT: 'HH:mm',27LTS: 'HH:mm:ss',28L: 'MM/D/YYYY',29LL: 'MMMM D, YYYY',30LLL: 'MMMM D, YYYY HH:mm',31LLLL: 'dddd, MMMM DD, YYYY HH:mm',32},33calendar: {34sameDay: 'LT [ngayong araw]',35nextDay: '[Bukas ng] LT',36nextWeek: 'LT [sa susunod na] dddd',37lastDay: 'LT [kahapon]',38lastWeek: 'LT [noong nakaraang] dddd',39sameElse: 'L',40},41relativeTime: {42future: 'sa loob ng %s',43past: '%s ang nakalipas',44s: 'ilang segundo',45ss: '%d segundo',46m: 'isang minuto',47mm: '%d minuto',48h: 'isang oras',49hh: '%d oras',50d: 'isang araw',51dd: '%d araw',52M: 'isang buwan',53MM: '%d buwan',54y: 'isang taon',55yy: '%d taon',56},57dayOfMonthOrdinalParse: /\d{1,2}/,58ordinal: function (number) {59return number;60},61week: {62dow: 1, // Monday is the first day of the week.63doy: 4, // The week that contains Jan 4th is the first week of the year.64},65});66
67return fil;68
69})));70