[ Index ]

PHP Cross Reference of DokuWiki

title

Body

[close]

/inc/lang/lt/ -> jquery.ui.datepicker.js (source)

   1  /* Lithuanian (UTF-8) initialisation for the jQuery UI date picker plugin. */
   2  /* @author Arturas Paleicikas <arturas@avalon.lt> */
   3  ( function( factory ) {
   4      "use strict";
   5  
   6      if ( typeof define === "function" && define.amd ) {
   7  
   8          // AMD. Register as an anonymous module.
   9          define( [ "../widgets/datepicker" ], factory );
  10      } else {
  11  
  12          // Browser globals
  13          factory( jQuery.datepicker );
  14      }
  15  } )( function( datepicker ) {
  16  "use strict";
  17  
  18  datepicker.regional.lt = {
  19      closeText: "Uždaryti",
  20      prevText: "Atgal",
  21      nextText: "Pirmyn",
  22      currentText: "Šiandien",
  23      monthNames: [ "Sausis", "Vasaris", "Kovas", "Balandis", "Gegužė", "Birželis",
  24      "Liepa", "Rugpjūtis", "Rugsėjis", "Spalis", "Lapkritis", "Gruodis" ],
  25      monthNamesShort: [ "Sau", "Vas", "Kov", "Bal", "Geg", "Bir",
  26      "Lie", "Rugp", "Rugs", "Spa", "Lap", "Gru" ],
  27      dayNames: [
  28          "sekmadienis",
  29          "pirmadienis",
  30          "antradienis",
  31          "trečiadienis",
  32          "ketvirtadienis",
  33          "penktadienis",
  34          "šeštadienis"
  35      ],
  36      dayNamesShort: [ "sek", "pir", "ant", "tre", "ket", "pen", "šeš" ],
  37      dayNamesMin: [ "Se", "Pr", "An", "Tr", "Ke", "Pe", "Še" ],
  38      weekHeader: "SAV",
  39      dateFormat: "yy-mm-dd",
  40      firstDay: 1,
  41      isRTL: false,
  42      showMonthAfterYear: true,
  43      yearSuffix: "" };
  44  datepicker.setDefaults( datepicker.regional.lt );
  45  
  46  return datepicker.regional.lt;
  47  
  48  } );