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