mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-14 21:43:18 +00:00
51 lines
1.3 KiB
JavaScript
51 lines
1.3 KiB
JavaScript
var fdLocale = {
|
|
months:[
|
|
"Janeiro",
|
|
"Fevereiro",
|
|
"Mar\u00E7o",
|
|
"Abril",
|
|
"Maio",
|
|
"Junho",
|
|
"Julho",
|
|
"Agosto",
|
|
"Setembro",
|
|
"Outubro",
|
|
"Novembro",
|
|
"Dezembro"
|
|
],
|
|
fullDay:[
|
|
"Segunda",
|
|
"Ter\u00E7a",
|
|
"Quarta",
|
|
"Quinta",
|
|
"Sexta",
|
|
"S\u00E1bado",
|
|
"Domingo"
|
|
],
|
|
/* Only stipulate the dayAbbr should the first letter of the fullDay not suffice
|
|
|
|
dayAbbr:[],
|
|
*/
|
|
dayAbbr:["Seg",
|
|
"Ter",
|
|
"Qua",
|
|
"Qui",
|
|
"Sex",
|
|
"Sab",
|
|
"Dom"],
|
|
|
|
/* Only stipulate the firstDayOfWeek should the first day not be Monday
|
|
|
|
firstDayOfWeek:0,
|
|
*/
|
|
firstDayOfWeek:6,
|
|
titles:[
|
|
"M\u00EAs anterior",
|
|
"Pr\u00F3ximo m\u00EAs",
|
|
"Ano anterior",
|
|
"Pr\u00F3ximo ano",
|
|
"Hoje",
|
|
"Exibir calend\u00E1rio"
|
|
]
|
|
};
|