mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-15 14:03:27 +00:00
43 lines
1.1 KiB
JavaScript
43 lines
1.1 KiB
JavaScript
var fdLocale = {
|
|
months:[
|
|
"January",
|
|
"February",
|
|
"March",
|
|
"April",
|
|
"May",
|
|
"June",
|
|
"July",
|
|
"August",
|
|
"September",
|
|
"October",
|
|
"November",
|
|
"December"
|
|
],
|
|
fullDay:[
|
|
"Monday",
|
|
"Tuesday",
|
|
"Wednesday",
|
|
"Thursday",
|
|
"Friday",
|
|
"Saturday",
|
|
"Sunday"
|
|
],
|
|
/* Only stipulate the dayAbbr should the first letter of the fullDay not suffice
|
|
|
|
dayAbbr:[],
|
|
*/
|
|
|
|
/* Only stipulate the firstDayOfWeek should the first day not be Monday
|
|
|
|
firstDayOfWeek:0,
|
|
*/
|
|
titles:[
|
|
"Previous month",
|
|
"Next month",
|
|
"Previous year",
|
|
"Next year",
|
|
"Today",
|
|
"Show Calendar"
|
|
]
|
|
};
|