2008-07-25 09:59:05 +00:00
|
|
|
/* Lithuanian (UTF-8) initialisation for the jQuery UI date picker plugin. */
|
|
|
|
/* @author Arturas Paleicikas <arturas@avalon.lt> */
|
2015-08-24 13:00:11 +00:00
|
|
|
( function( factory ) {
|
2021-06-06 22:58:12 +00:00
|
|
|
"use strict";
|
|
|
|
|
2013-07-17 15:10:30 +00:00
|
|
|
if ( typeof define === "function" && define.amd ) {
|
|
|
|
|
|
|
|
// AMD. Register as an anonymous module.
|
2015-08-24 13:00:11 +00:00
|
|
|
define( [ "../widgets/datepicker" ], factory );
|
2013-07-17 15:10:30 +00:00
|
|
|
} else {
|
|
|
|
|
|
|
|
// Browser globals
|
|
|
|
factory( jQuery.datepicker );
|
|
|
|
}
|
2021-06-06 22:58:12 +00:00
|
|
|
} )( function( datepicker ) {
|
|
|
|
"use strict";
|
2013-07-17 15:10:30 +00:00
|
|
|
|
2015-08-24 13:00:11 +00:00
|
|
|
datepicker.regional.lt = {
|
|
|
|
closeText: "Uždaryti",
|
2022-02-11 15:33:27 +00:00
|
|
|
prevText: "Atgal",
|
|
|
|
nextText: "Pirmyn",
|
2015-08-24 13:00:11 +00:00
|
|
|
currentText: "Šiandien",
|
2021-06-06 22:58:12 +00:00
|
|
|
monthNames: [ "Sausis", "Vasaris", "Kovas", "Balandis", "Gegužė", "Birželis",
|
|
|
|
"Liepa", "Rugpjūtis", "Rugsėjis", "Spalis", "Lapkritis", "Gruodis" ],
|
|
|
|
monthNamesShort: [ "Sau", "Vas", "Kov", "Bal", "Geg", "Bir",
|
|
|
|
"Lie", "Rugp", "Rugs", "Spa", "Lap", "Gru" ],
|
2016-03-31 04:22:10 +00:00
|
|
|
dayNames: [
|
|
|
|
"sekmadienis",
|
|
|
|
"pirmadienis",
|
|
|
|
"antradienis",
|
|
|
|
"trečiadienis",
|
|
|
|
"ketvirtadienis",
|
|
|
|
"penktadienis",
|
|
|
|
"šeštadienis"
|
|
|
|
],
|
2021-06-06 22:58:12 +00:00
|
|
|
dayNamesShort: [ "sek", "pir", "ant", "tre", "ket", "pen", "šeš" ],
|
|
|
|
dayNamesMin: [ "Se", "Pr", "An", "Tr", "Ke", "Pe", "Še" ],
|
2015-08-24 13:00:11 +00:00
|
|
|
weekHeader: "SAV",
|
|
|
|
dateFormat: "yy-mm-dd",
|
2014-02-19 11:55:50 +00:00
|
|
|
firstDay: 1,
|
|
|
|
isRTL: false,
|
|
|
|
showMonthAfterYear: true,
|
2015-08-24 13:00:11 +00:00
|
|
|
yearSuffix: "" };
|
|
|
|
datepicker.setDefaults( datepicker.regional.lt );
|
2014-02-19 11:55:50 +00:00
|
|
|
|
2015-08-24 13:00:11 +00:00
|
|
|
return datepicker.regional.lt;
|
2013-07-17 15:10:30 +00:00
|
|
|
|
2021-06-06 22:58:12 +00:00
|
|
|
} );
|