xref: /dokuwiki/inc/lang/ml/jquery.ui.datepicker.js (revision e1d9dcc8b460b6f029ac9c8d5d3b8d23b6e73402)
1/* Malayalam (UTF-8) initialisation for the jQuery UI date picker plugin. */
2/* Written by Saji Nediyanchath (saji89@gmail.com). */
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
15datepicker.regional.ml = {
16	closeText: "ശരി",
17	prevText: "മുന്നത്തെ",
18	nextText: "അടുത്തത് ",
19	currentText: "ഇന്ന്",
20	monthNames: [ "ജനുവരി","ഫെബ്രുവരി","മാര്‍ച്ച്","ഏപ്രില്‍","മേയ്","ജൂണ്‍",
21	"ജൂലൈ","ആഗസ്റ്റ്","സെപ്റ്റംബര്‍","ഒക്ടോബര്‍","നവംബര്‍","ഡിസംബര്‍" ],
22	monthNamesShort: [ "ജനു", "ഫെബ്", "മാര്‍", "ഏപ്രി", "മേയ്", "ജൂണ്‍",
23	"ജൂലാ", "ആഗ", "സെപ്", "ഒക്ടോ", "നവം", "ഡിസ" ],
24	dayNames: [ "ഞായര്‍", "തിങ്കള്‍", "ചൊവ്വ", "ബുധന്‍", "വ്യാഴം", "വെള്ളി", "ശനി" ],
25	dayNamesShort: [ "ഞായ", "തിങ്ക", "ചൊവ്വ", "ബുധ", "വ്യാഴം", "വെള്ളി", "ശനി" ],
26	dayNamesMin: [ "ഞാ","തി","ചൊ","ബു","വ്യാ","വെ","ശ" ],
27	weekHeader: "ആ",
28	dateFormat: "dd/mm/yy",
29	firstDay: 1,
30	isRTL: false,
31	showMonthAfterYear: false,
32	yearSuffix: "" };
33datepicker.setDefaults( datepicker.regional.ml );
34
35return datepicker.regional.ml;
36
37} ) );
38