1/* Malaysian initialisation for the jQuery UI date picker plugin. */
2/* Written by Mohd Nawawi Mohamad Jamili (nawawi@ronggeng.net). */
3( function( factory ) {
4	"use strict";
5
6	if ( typeof define === "function" && define.amd ) {
7
8		// AMD. Register as an anonymous module.
9		define( [ "../widgets/datepicker" ], factory );
10	} else {
11
12		// Browser globals
13		factory( jQuery.datepicker );
14	}
15} )( function( datepicker ) {
16"use strict";
17
18datepicker.regional.ms = {
19	closeText: "Tutup",
20	prevText: "Sebelum",
21	nextText: "Selepas",
22	currentText: "hari ini",
23	monthNames: [ "Januari", "Februari", "Mac", "April", "Mei", "Jun",
24	"Julai", "Ogos", "September", "Oktober", "November", "Disember" ],
25	monthNamesShort: [ "Jan", "Feb", "Mac", "Apr", "Mei", "Jun",
26	"Jul", "Ogo", "Sep", "Okt", "Nov", "Dis" ],
27	dayNames: [ "Ahad", "Isnin", "Selasa", "Rabu", "Khamis", "Jumaat", "Sabtu" ],
28	dayNamesShort: [ "Aha", "Isn", "Sel", "Rab", "kha", "Jum", "Sab" ],
29	dayNamesMin: [ "Ah", "Is", "Se", "Ra", "Kh", "Ju", "Sa" ],
30	weekHeader: "Mg",
31	dateFormat: "dd/mm/yy",
32	firstDay: 0,
33	isRTL: false,
34	showMonthAfterYear: false,
35	yearSuffix: "" };
36datepicker.setDefaults( datepicker.regional.ms );
37
38return datepicker.regional.ms;
39
40} );
41