diff options
author | Scott González <scott.gonzalez@gmail.com> | 2013-03-21 17:11:59 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2013-03-21 17:11:59 -0400 |
commit | ae4753b3f1c8d320e11a63f028ec02dc621d24e9 (patch) | |
tree | 4ae9c15ad2aa037bea1b6da67bbc262063f5bb84 /ui/i18n | |
parent | ff11b69a67e0176c851ff3bdec997c7a75d47a42 (diff) | |
download | jquery-ui-ae4753b3f1c8d320e11a63f028ec02dc621d24e9.tar.gz jquery-ui-ae4753b3f1c8d320e11a63f028ec02dc621d24e9.zip |
Datepicker Added it-CH locale. Fixes #9175 - Datepicker: Add Italian in Switzerland locale.
Diffstat (limited to 'ui/i18n')
-rw-r--r-- | ui/i18n/jquery.ui.datepicker-it-CH.js | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/ui/i18n/jquery.ui.datepicker-it-CH.js b/ui/i18n/jquery.ui.datepicker-it-CH.js new file mode 100644 index 000000000..f19a56d34 --- /dev/null +++ b/ui/i18n/jquery.ui.datepicker-it-CH.js @@ -0,0 +1,23 @@ +/* Italian initialisation for the jQuery UI date picker plugin. */ +/* Written by Antonello Pasella (antonello.pasella@gmail.com). */ +jQuery(function($){ + $.datepicker.regional['it-CH'] = { + closeText: 'Chiudi', + prevText: '<Prec', + nextText: 'Succ>', + currentText: 'Oggi', + monthNames: ['Gennaio','Febbraio','Marzo','Aprile','Maggio','Giugno', + 'Luglio','Agosto','Settembre','Ottobre','Novembre','Dicembre'], + monthNamesShort: ['Gen','Feb','Mar','Apr','Mag','Giu', + 'Lug','Ago','Set','Ott','Nov','Dic'], + dayNames: ['Domenica','Lunedì','Martedì','Mercoledì','Giovedì','Venerdì','Sabato'], + dayNamesShort: ['Dom','Lun','Mar','Mer','Gio','Ven','Sab'], + dayNamesMin: ['Do','Lu','Ma','Me','Gi','Ve','Sa'], + weekHeader: 'Sm', + dateFormat: 'dd.mm.yy', + firstDay: 1, + isRTL: false, + showMonthAfterYear: false, + yearSuffix: ''}; + $.datepicker.setDefaults($.datepicker.regional['it-CH']); +}); |