1 //! moment.js locale configuration
2 //! locale : Malay [ms-my]
3 //! note : DEPRECATED, the correct one is [ms]
4 //! author : Weldan Jamili : https://github.com/weldan
6 ;(function (global
, factory
) {
7 typeof exports
=== 'object' && typeof module
!== 'undefined'
8 && typeof require
=== 'function' ? factory(require('../moment')) :
9 typeof define
=== 'function' && define
.amd
? define(['../moment'], factory
) :
10 factory(global
.moment
)
11 }(this, function (moment
) { 'use strict';
14 var ms_my
= moment
.defineLocale('ms-my', {
15 months
: 'Januari_Februari_Mac_April_Mei_Jun_Julai_Ogos_September_Oktober_November_Disember'.split('_'),
16 monthsShort
: 'Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ogs_Sep_Okt_Nov_Dis'.split('_'),
17 weekdays
: 'Ahad_Isnin_Selasa_Rabu_Khamis_Jumaat_Sabtu'.split('_'),
18 weekdaysShort
: 'Ahd_Isn_Sel_Rab_Kha_Jum_Sab'.split('_'),
19 weekdaysMin
: 'Ah_Is_Sl_Rb_Km_Jm_Sb'.split('_'),
25 LLL
: 'D MMMM YYYY [pukul] HH.mm',
26 LLLL
: 'dddd, D MMMM YYYY [pukul] HH.mm'
28 meridiemParse
: /pagi|tengahari|petang|malam/,
29 meridiemHour: function (hour
, meridiem
) {
33 if (meridiem
=== 'pagi') {
35 } else if (meridiem
=== 'tengahari') {
36 return hour
>= 11 ? hour
: hour
+ 12;
37 } else if (meridiem
=== 'petang' || meridiem
=== 'malam') {
41 meridiem : function (hours
, minutes
, isLower
) {
44 } else if (hours
< 15) {
46 } else if (hours
< 19) {
53 sameDay
: '[Hari ini pukul] LT',
54 nextDay
: '[Esok pukul] LT',
55 nextWeek
: 'dddd [pukul] LT',
56 lastDay
: '[Kelmarin pukul] LT',
57 lastWeek
: 'dddd [lepas pukul] LT',
62 past
: '%s yang lepas',
76 dow
: 1, // Monday is the first day of the week.
77 doy
: 7 // The week that contains Jan 1st is the first week of the year.