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.
		
		
		
		
		
			
		
			
				
					
					
						
							22 lines
						
					
					
						
							868 B
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							22 lines
						
					
					
						
							868 B
						
					
					
				| /* Portuguese initialisation for the jQuery UI date picker plugin. */ | |
| jQuery(function($){ | |
| 	$.datepicker.regional['pt'] = { | |
| 		closeText: 'Fechar', | |
| 		prevText: 'Anterior', | |
| 		nextText: 'Seguinte', | |
| 		currentText: 'Hoje', | |
| 		monthNames: ['Janeiro','Fevereiro','Março','Abril','Maio','Junho', | |
| 		'Julho','Agosto','Setembro','Outubro','Novembro','Dezembro'], | |
| 		monthNamesShort: ['Jan','Fev','Mar','Abr','Mai','Jun', | |
| 		'Jul','Ago','Set','Out','Nov','Dez'], | |
| 		dayNames: ['Domingo','Segunda-feira','Terça-feira','Quarta-feira','Quinta-feira','Sexta-feira','Sábado'], | |
| 		dayNamesShort: ['Dom','Seg','Ter','Qua','Qui','Sex','Sáb'], | |
| 		dayNamesMin: ['Dom','Seg','Ter','Qua','Qui','Sex','Sáb'], | |
| 		weekHeader: 'Sem', | |
| 		dateFormat: 'dd/mm/yy', | |
| 		firstDay: 0, | |
| 		isRTL: false, | |
| 		showMonthAfterYear: false, | |
| 		yearSuffix: ''}; | |
| 	$.datepicker.setDefaults($.datepicker.regional['pt']); | |
| });
 |