To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / public / javascripts / i18n / jquery.ui.datepicker-ca.js @ 1298:4f746d8966dd

History | View | Annotate | Download (879 Bytes)

1
/* Inicialització en català per a l'extenció 'calendar' per jQuery. */
2
/* Writers: (joan.leon@gmail.com). */
3
jQuery(function($){
4
        $.datepicker.regional['ca'] = {
5
                closeText: 'Tancar',
6
                prevText: '<Ant',
7
                nextText: 'Seg>',
8
                currentText: 'Avui',
9
                monthNames: ['Gener','Febrer','Març','Abril','Maig','Juny',
10
                'Juliol','Agost','Setembre','Octubre','Novembre','Desembre'],
11
                monthNamesShort: ['Gen','Feb','Mar','Abr','Mai','Jun',
12
                'Jul','Ago','Set','Oct','Nov','Des'],
13
                dayNames: ['Diumenge','Dilluns','Dimarts','Dimecres','Dijous','Divendres','Dissabte'],
14
                dayNamesShort: ['Dug','Dln','Dmt','Dmc','Djs','Dvn','Dsb'],
15
                dayNamesMin: ['Dg','Dl','Dt','Dc','Dj','Dv','Ds'],
16
                weekHeader: 'Sm',
17
                dateFormat: 'dd/mm/yy',
18
                firstDay: 1,
19
                isRTL: false,
20
                showMonthAfterYear: false,
21
                yearSuffix: ''};
22
        $.datepicker.setDefaults($.datepicker.regional['ca']);
23
});