[ Index ] |
PHP Cross Reference of MediaWiki-1.24.0 |
[Summary view] [Print] [Text view]
1 // moment.js locale configuration 2 // locale : Tagalog/Filipino (tl-ph) 3 // author : Dan Hagman 4 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(window.moment); // Browser 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 L : 'MM/D/YYYY', 23 LL : 'MMMM D, YYYY', 24 LLL : 'MMMM D, YYYY LT', 25 LLLL : 'dddd, MMMM DD, YYYY LT' 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 ordinal : function (number) { 51 return number; 52 }, 53 week : { 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. 56 } 57 }); 58 }));
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Fri Nov 28 14:03:12 2014 | Cross-referenced by PHPXref 0.7.1 |