mirror of https://github.com/gogits/gogs.git
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.
17 lines
715 B
17 lines
715 B
/** |
|
* Italian translation for bootstrap-datepicker |
|
* Enrico Rubboli <rubboli@gmail.com> |
|
*/ |
|
;(function($){ |
|
$.fn.datepicker.dates['it'] = { |
|
days: ["Domenica", "Lunedì", "Martedì", "Mercoledì", "Giovedì", "Venerdì", "Sabato", "Domenica"], |
|
daysShort: ["Dom", "Lun", "Mar", "Mer", "Gio", "Ven", "Sab", "Dom"], |
|
daysMin: ["Do", "Lu", "Ma", "Me", "Gi", "Ve", "Sa", "Do"], |
|
months: ["Gennaio", "Febbraio", "Marzo", "Aprile", "Maggio", "Giugno", "Luglio", "Agosto", "Settembre", "Ottobre", "Novembre", "Dicembre"], |
|
monthsShort: ["Gen", "Feb", "Mar", "Apr", "Mag", "Giu", "Lug", "Ago", "Set", "Ott", "Nov", "Dic"], |
|
today: "Oggi", |
|
clear: "Cancella", |
|
weekStart: 1, |
|
format: "dd/mm/yyyy" |
|
}; |
|
}(jQuery));
|
|
|