[ Index ]

PHP Cross Reference of DokuWiki

title

Body

[close]

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

   1  /* Croatian i18n for the jQuery UI date picker plugin. */
   2  /* Written by Vjekoslav Nesek. */
   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.hr = {
  19      closeText: "Zatvori",
  20      prevText: "Prethodno",
  21      nextText: "Sljedeći",
  22      currentText: "Danas",
  23      monthNames: [ "Siječanj", "Veljača", "Ožujak", "Travanj", "Svibanj", "Lipanj",
  24      "Srpanj", "Kolovoz", "Rujan", "Listopad", "Studeni", "Prosinac" ],
  25      monthNamesShort: [ "Sij", "Velj", "Ožu", "Tra", "Svi", "Lip",
  26      "Srp", "Kol", "Ruj", "Lis", "Stu", "Pro" ],
  27      dayNames: [ "Nedjelja", "Ponedjeljak", "Utorak", "Srijeda", "Četvrtak", "Petak", "Subota" ],
  28      dayNamesShort: [ "Ned", "Pon", "Uto", "Sri", "Čet", "Pet", "Sub" ],
  29      dayNamesMin: [ "Ne", "Po", "Ut", "Sr", "Če", "Pe", "Su" ],
  30      weekHeader: "Tje",
  31      dateFormat: "dd.mm.yy.",
  32      firstDay: 1,
  33      isRTL: false,
  34      showMonthAfterYear: false,
  35      yearSuffix: "" };
  36  datepicker.setDefaults( datepicker.regional.hr );
  37  
  38  return datepicker.regional.hr;
  39  
  40  } );