source: trunk/template-common/lib/ui/i18n/ui.datepicker-pt-BR.js @ 4918

Last change on this file since 4918 was 4918, checked in by nikrou, 14 years ago

Feature 1442 : update jquery

  • update jquery to 1.4.1
  • update jquery ui to 1.7.2
  • Property svn:eol-style set to LF
File size: 890 bytes
Line 
1/* Brazilian initialisation for the jQuery UI date picker plugin. */
2/* Written by Leonildo Costa Silva (leocsilva@gmail.com). */
3jQuery(function($){
4        $.datepicker.regional['pt-BR'] = {
5                closeText: 'Fechar',
6                prevText: '<Anterior',
7                nextText: 'Próximo>',
8                currentText: 'Hoje',
9                monthNames: ['Janeiro','Fevereiro','Março','Abril','Maio','Junho',
10                'Julho','Agosto','Setembro','Outubro','Novembro','Dezembro'],
11                monthNamesShort: ['Jan','Fev','Mar','Abr','Mai','Jun',
12                'Jul','Ago','Set','Out','Nov','Dez'],
13                dayNames: ['Domingo','Segunda-feira','Terça-feira','Quarta-feira','Quinta-feira','Sexta-feira','Sabado'],
14                dayNamesShort: ['Dom','Seg','Ter','Qua','Qui','Sex','Sab'],
15                dayNamesMin: ['Dom','Seg','Ter','Qua','Qui','Sex','Sab'],
16                dateFormat: 'dd/mm/yy', firstDay: 0,
17                isRTL: false};
18        $.datepicker.setDefaults($.datepicker.regional['pt-BR']);
19});
Note: See TracBrowser for help on using the repository browser.