standard header in about page (#676)
[openemr.git] / public / assets / jquery-ui-1-12-1 / ui / i18n / datepicker-it-CH.js
blob9895da4cc32150ba22ae6e232c2c2dbac397c77d
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 ) {
6                 // AMD. Register as an anonymous module.
7                 define( [ "../widgets/datepicker" ], factory );
8         } else {
10                 // Browser globals
11                 factory( jQuery.datepicker );
12         }
13 }( function( datepicker ) {
15 datepicker.regional[ "it-CH" ] = {
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-CH" ] );
35 return datepicker.regional[ "it-CH" ];
37 } ) );