You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

41 lines
1.2 KiB

  1. /* Italian initialisation for the jQuery UI date picker plugin. */
  2. /* Written by Antonello Pasella (antonello.pasella@gmail.com). */
  3. ( function( factory ) {
  4. "use strict";
  5. if ( typeof define === "function" && define.amd ) {
  6. // AMD. Register as an anonymous module.
  7. define( [ "../widgets/datepicker" ], factory );
  8. } else {
  9. // Browser globals
  10. factory( jQuery.datepicker );
  11. }
  12. } )( function( datepicker ) {
  13. "use strict";
  14. datepicker.regional.it = {
  15. closeText: "Chiudi",
  16. prevText: "Prec",
  17. nextText: "Succ",
  18. currentText: "Oggi",
  19. monthNames: [ "Gennaio", "Febbraio", "Marzo", "Aprile", "Maggio", "Giugno",
  20. "Luglio", "Agosto", "Settembre", "Ottobre", "Novembre", "Dicembre" ],
  21. monthNamesShort: [ "Gen", "Feb", "Mar", "Apr", "Mag", "Giu",
  22. "Lug", "Ago", "Set", "Ott", "Nov", "Dic" ],
  23. dayNames: [ "Domenica", "Lunedì", "Martedì", "Mercoledì", "Giovedì", "Venerdì", "Sabato" ],
  24. dayNamesShort: [ "Dom", "Lun", "Mar", "Mer", "Gio", "Ven", "Sab" ],
  25. dayNamesMin: [ "Do", "Lu", "Ma", "Me", "Gi", "Ve", "Sa" ],
  26. weekHeader: "Sm",
  27. dateFormat: "dd/mm/yy",
  28. firstDay: 1,
  29. isRTL: false,
  30. showMonthAfterYear: false,
  31. yearSuffix: "" };
  32. datepicker.setDefaults( datepicker.regional.it );
  33. return datepicker.regional.it;
  34. } );