UNPKG

jquery-datepicker

Version:

Just the datepicker lib from jquery-ui 1.12.1

46 lines (43 loc) 1.57 kB
(function (global, factory) { if (typeof define === "function" && define.amd) { define(['module', 'exports'], factory); } else if (typeof exports !== "undefined") { factory(module, exports); } else { var mod = { exports: {} }; factory(mod, mod.exports); global.jqueryUiDatepickerLt = mod.exports; } })(this, function (module, exports) { 'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = function (jQuery) { /* Lithuanian (UTF-8) initialisation for the jQuery UI date picker plugin. */ /* @author Arturas Paleicikas <arturas@avalon.lt> */ jQuery(function ($) { $.datepicker.regional['lt'] = { closeText: 'Uždaryti', prevText: '&#x3C;Atgal', nextText: 'Pirmyn&#x3E;', currentText: 'Šiandien', 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'], dayNames: ['sekmadienis', 'pirmadienis', 'antradienis', 'trečiadienis', 'ketvirtadienis', 'penktadienis', 'šeštadienis'], dayNamesShort: ['sek', 'pir', 'ant', 'tre', 'ket', 'pen', 'šeš'], dayNamesMin: ['Se', 'Pr', 'An', 'Tr', 'Ke', 'Pe', 'Še'], weekHeader: 'SAV', dateFormat: 'yy-mm-dd', firstDay: 1, isRTL: false, showMonthAfterYear: true, yearSuffix: '' }; $.datepicker.setDefaults($.datepicker.regional['lt']); }); }; ; module.exports = exports['default']; });