SearchResultSet: remove hasResults(), unused
[mediawiki.git] / resources / lib / moment / lang / ms-my.js
blob501d5aaa0285fc7602a4556b88515b5c80a86908
1 // moment.js language configuration
2 // language : Bahasa Malaysia (ms-MY)
3 // author : Weldan Jamili : https://github.com/weldan
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.lang('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("_"),
20         longDateFormat : {
21             LT : "HH.mm",
22             L : "DD/MM/YYYY",
23             LL : "D MMMM YYYY",
24             LLL : "D MMMM YYYY [pukul] LT",
25             LLLL : "dddd, D MMMM YYYY [pukul] LT"
26         },
27         meridiem : function (hours, minutes, isLower) {
28             if (hours < 11) {
29                 return 'pagi';
30             } else if (hours < 15) {
31                 return 'tengahari';
32             } else if (hours < 19) {
33                 return 'petang';
34             } else {
35                 return 'malam';
36             }
37         },
38         calendar : {
39             sameDay : '[Hari ini pukul] LT',
40             nextDay : '[Esok pukul] LT',
41             nextWeek : 'dddd [pukul] LT',
42             lastDay : '[Kelmarin pukul] LT',
43             lastWeek : 'dddd [lepas pukul] LT',
44             sameElse : 'L'
45         },
46         relativeTime : {
47             future : "dalam %s",
48             past : "%s yang lepas",
49             s : "beberapa saat",
50             m : "seminit",
51             mm : "%d minit",
52             h : "sejam",
53             hh : "%d jam",
54             d : "sehari",
55             dd : "%d hari",
56             M : "sebulan",
57             MM : "%d bulan",
58             y : "setahun",
59             yy : "%d tahun"
60         },
61         week : {
62             dow : 1, // Monday is the first day of the week.
63             doy : 7  // The week that contains Jan 1st is the first week of the year.
64         }
65     });
66 }));