xref: /dokuwiki/inc/lang/lt/jquery.ui.datepicker.js (revision 0bfe603c05ef0cbcbf38272445c8c954a93e942e)
1/* Lithuanian (UTF-8) initialisation for the jQuery UI date picker plugin. */
2/* @author Arturas Paleicikas <arturas@avalon.lt> */
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.lt = {
16	closeText: "Uždaryti",
17	prevText: "&#x3C;Atgal",
18	nextText: "Pirmyn&#x3E;",
19	currentText: "Šiandien",
20	monthNames: [ "Sausis","Vasaris","Kovas","Balandis","Gegužė","Birželis",
21	"Liepa","Rugpjūtis","Rugsėjis","Spalis","Lapkritis","Gruodis" ],
22	monthNamesShort: [ "Sau","Vas","Kov","Bal","Geg","Bir",
23	"Lie","Rugp","Rugs","Spa","Lap","Gru" ],
24	dayNames: [
25		"sekmadienis",
26		"pirmadienis",
27		"antradienis",
28		"trečiadienis",
29		"ketvirtadienis",
30		"penktadienis",
31		"šeštadienis"
32	],
33	dayNamesShort: [ "sek","pir","ant","tre","ket","pen","šeš" ],
34	dayNamesMin: [ "Se","Pr","An","Tr","Ke","Pe","Še" ],
35	weekHeader: "SAV",
36	dateFormat: "yy-mm-dd",
37	firstDay: 1,
38	isRTL: false,
39	showMonthAfterYear: true,
40	yearSuffix: "" };
41datepicker.setDefaults( datepicker.regional.lt );
42
43return datepicker.regional.lt;
44
45} ) );
46