source: trunk/themes/default/js/ui/i18n/jquery.ui.datepicker-ca.js @ 18630

Last change on this file since 18630 was 18630, checked in by rvelices, 12 years ago

feature 2771: upgrade jquery from 1.7.2 to 1.8.2 and jquery.ui from 1.8.16 to 1.9.0
Attention plugins: jquery ui effect script ids change when using combine_script because file names changed ...

File size: 874 bytes
Line 
1/* Inicialització en català per a l'extensió 'UI date picker' per jQuery. */
2/* Writers: (joan.leon@gmail.com). */
3jQuery(function($){
4        $.datepicker.regional['ca'] = {
5                closeText: 'Tanca',
6                prevText: 'Anterior',
7                nextText: 'Següent',
8                currentText: 'Avui',
9                monthNames: ['gener','febrer','març','abril','maig','juny',
10                'juliol','agost','setembre','octubre','novembre','desembre'],
11                monthNamesShort: ['gen','feb','març','abr','maig','juny',
12                'jul','ag','set','oct','nov','des'],
13                dayNames: ['diumenge','dilluns','dimarts','dimecres','dijous','divendres','dissabte'],
14                dayNamesShort: ['dg','dl','dt','dc','dj','dv','ds'],
15                dayNamesMin: ['dg','dl','dt','dc','dj','dv','ds'],
16                weekHeader: 'Set',
17                dateFormat: 'dd/mm/yy',
18                firstDay: 1,
19                isRTL: false,
20                showMonthAfterYear: false,
21                yearSuffix: ''};
22        $.datepicker.setDefaults($.datepicker.regional['ca']);
23});
Note: See TracBrowser for help on using the repository browser.