รวม code แก้ไข OP 3138, 3141, 2736, 2654

This commit is contained in:
Nakorn Rientrakrunchai
2020-08-11 16:13:02 +07:00
parent ecf60f7b5b
commit c980d4cc38
282 changed files with 21778 additions and 190 deletions

View File

@@ -0,0 +1,25 @@
/* http://keith-wood.name/calendars.html
Malaysian localisation for Gregorian/Julian calendars for jQuery.
Written by Mohd Nawawi Mohamad Jamili (nawawi@ronggeng.net). */
(function($) {
'use strict';
$.calendars.calendars.gregorian.prototype.regionalOptions.ms = {
name: 'Gregorian',
epochs: ['BCE', 'CE'],
monthNames: ['Januari','Februari','Mac','April','Mei','Jun',
'Julai','Ogos','September','Oktober','November','Disember'],
monthNamesShort: ['Jan','Feb','Mac','Apr','Mei','Jun',
'Jul','Ogo','Sep','Okt','Nov','Dis'],
dayNames: ['Ahad','Isnin','Selasa','Rabu','Khamis','Jumaat','Sabtu'],
dayNamesShort: ['Aha','Isn','Sel','Rab','Kha','Jum','Sab'],
dayNamesMin: ['Ah','Is','Se','Ra','Kh','Ju','Sa'],
digits: null,
dateFormat: 'dd/mm/yyyy',
firstDay: 0,
isRTL: false
};
if ($.calendars.calendars.julian) {
$.calendars.calendars.julian.prototype.regionalOptions.ms =
$.calendars.calendars.gregorian.prototype.regionalOptions.ms;
}
})(jQuery);