1 //! moment.js locale configuration
2 //! locale : Malay [ms]
3 //! author : Weldan Jamili : https://github.com/weldan
5 ;(function (global, factory) {
6 typeof exports === 'object' && typeof module !== 'undefined'
7 && typeof require === 'function' ? factory(require('../moment')) :
8 typeof define === 'function' && define.amd ? define(['../moment'], factory) :
10 }(this, (function (moment) { 'use strict';
12 //! moment.js locale configuration
14 var ms = moment.defineLocale('ms', {
15 months: 'Januari_Februari_Mac_April_Mei_Jun_Julai_Ogos_September_Oktober_November_Disember'.split(
18 monthsShort: 'Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ogs_Sep_Okt_Nov_Dis'.split('_'),
19 weekdays: 'Ahad_Isnin_Selasa_Rabu_Khamis_Jumaat_Sabtu'.split('_'),
20 weekdaysShort: 'Ahd_Isn_Sel_Rab_Kha_Jum_Sab'.split('_'),
21 weekdaysMin: 'Ah_Is_Sl_Rb_Km_Jm_Sb'.split('_'),
27 LLL: 'D MMMM YYYY [pukul] HH.mm',
28 LLLL: 'dddd, D MMMM YYYY [pukul] HH.mm',
30 meridiemParse: /pagi|tengahari|petang|malam/,
31 meridiemHour: function (hour, meridiem) {
35 if (meridiem === 'pagi') {
37 } else if (meridiem === 'tengahari') {
38 return hour >= 11 ? hour : hour + 12;
39 } else if (meridiem === 'petang' || meridiem === 'malam') {
43 meridiem: function (hours, minutes, isLower) {
46 } else if (hours < 15) {
48 } else if (hours < 19) {
55 sameDay: '[Hari ini pukul] LT',
56 nextDay: '[Esok pukul] LT',
57 nextWeek: 'dddd [pukul] LT',
58 lastDay: '[Kelmarin pukul] LT',
59 lastWeek: 'dddd [lepas pukul] LT',
64 past: '%s yang lepas',
79 dow: 1, // Monday is the first day of the week.
80 doy: 7, // The week that contains Jan 7th is the first week of the year.