Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

tl-ph.js 1.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. //! moment.js locale configuration
  2. //! locale : Tagalog (Philippines) [tl-ph]
  3. //! author : Dan Hagman : https://github.com/hagmandan
  4. import moment from '../moment';
  5. export default moment.defineLocale('tl-ph', {
  6. months : 'Enero_Pebrero_Marso_Abril_Mayo_Hunyo_Hulyo_Agosto_Setyembre_Oktubre_Nobyembre_Disyembre'.split('_'),
  7. monthsShort : 'Ene_Peb_Mar_Abr_May_Hun_Hul_Ago_Set_Okt_Nob_Dis'.split('_'),
  8. weekdays : 'Linggo_Lunes_Martes_Miyerkules_Huwebes_Biyernes_Sabado'.split('_'),
  9. weekdaysShort : 'Lin_Lun_Mar_Miy_Huw_Biy_Sab'.split('_'),
  10. weekdaysMin : 'Li_Lu_Ma_Mi_Hu_Bi_Sab'.split('_'),
  11. longDateFormat : {
  12. LT : 'HH:mm',
  13. LTS : 'HH:mm:ss',
  14. L : 'MM/D/YYYY',
  15. LL : 'MMMM D, YYYY',
  16. LLL : 'MMMM D, YYYY HH:mm',
  17. LLLL : 'dddd, MMMM DD, YYYY HH:mm'
  18. },
  19. calendar : {
  20. sameDay: 'LT [ngayong araw]',
  21. nextDay: '[Bukas ng] LT',
  22. nextWeek: 'LT [sa susunod na] dddd',
  23. lastDay: 'LT [kahapon]',
  24. lastWeek: 'LT [noong nakaraang] dddd',
  25. sameElse: 'L'
  26. },
  27. relativeTime : {
  28. future : 'sa loob ng %s',
  29. past : '%s ang nakalipas',
  30. s : 'ilang segundo',
  31. ss : '%d segundo',
  32. m : 'isang minuto',
  33. mm : '%d minuto',
  34. h : 'isang oras',
  35. hh : '%d oras',
  36. d : 'isang araw',
  37. dd : '%d araw',
  38. M : 'isang buwan',
  39. MM : '%d buwan',
  40. y : 'isang taon',
  41. yy : '%d taon'
  42. },
  43. dayOfMonthOrdinalParse: /\d{1,2}/,
  44. ordinal : function (number) {
  45. return number;
  46. },
  47. week : {
  48. dow : 1, // Monday is the first day of the week.
  49. doy : 4 // The week that contains Jan 4th is the first week of the year.
  50. }
  51. });