xref: /dokuwiki/inc/lang/ta/jquery.ui.datepicker.js (revision f449b8c9764a91a15cbda1130ef0cd053c48f8e8)
1/* Tamil (UTF-8) initialisation for the jQuery UI date picker plugin. */
2/* Written by S A Sureshkumar (saskumar@live.com). */
3(function( factory ) {
4	if ( typeof define === "function" && define.amd ) {
5
6		// AMD. Register as an anonymous module.
7		define([ "../datepicker" ], factory );
8	} else {
9
10		// Browser globals
11		factory( jQuery.datepicker );
12	}
13}(function( datepicker ) {
14
15datepicker.regional['ta'] = {
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['ta']);
34
35return datepicker.regional['ta'];
36
37}));
38