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