2010-09-24 12:58:18 +00:00
|
|
|
/* Portuguese initialisation for the jQuery UI date picker plugin. */
|
2015-08-24 13:00:11 +00:00
|
|
|
( function( factory ) {
|
2013-07-17 15:10:30 +00:00
|
|
|
if ( typeof define === "function" && define.amd ) {
|
|
|
|
|
|
|
|
// AMD. Register as an anonymous module.
|
2015-08-24 13:00:11 +00:00
|
|
|
define( [ "../widgets/datepicker" ], factory );
|
2013-07-17 15:10:30 +00:00
|
|
|
} else {
|
|
|
|
|
|
|
|
// Browser globals
|
|
|
|
factory( jQuery.datepicker );
|
|
|
|
}
|
2015-08-24 13:00:11 +00:00
|
|
|
}( function( datepicker ) {
|
2013-07-17 15:10:30 +00:00
|
|
|
|
2015-08-24 13:00:11 +00:00
|
|
|
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",
|
2014-02-19 11:55:50 +00:00
|
|
|
firstDay: 0,
|
|
|
|
isRTL: false,
|
|
|
|
showMonthAfterYear: false,
|
2015-08-24 13:00:11 +00:00
|
|
|
yearSuffix: "" };
|
|
|
|
datepicker.setDefaults( datepicker.regional.pt );
|
2014-02-19 11:55:50 +00:00
|
|
|
|
2015-08-24 13:00:11 +00:00
|
|
|
return datepicker.regional.pt;
|
2013-07-17 15:10:30 +00:00
|
|
|
|
2015-08-24 13:00:11 +00:00
|
|
|
} ) );
|