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