mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-15 05:53:13 +00:00
51 lines
1.4 KiB
JavaScript
51 lines
1.4 KiB
JavaScript
var fdLocale = {
|
|
months:[
|
|
"يناير",
|
|
"فبراير",
|
|
"مارس",
|
|
"أبريل",
|
|
"مايو",
|
|
"يونيو",
|
|
"يوليو",
|
|
"أغسطس",
|
|
"سبتمبر",
|
|
"أكتوبر",
|
|
"نوٿمبر",
|
|
"ديسمبر"
|
|
],
|
|
fullDay:[
|
|
"الاثنين",
|
|
"الثلاثاء",
|
|
"الأربعاء",
|
|
"الخميس",
|
|
"الجمعة",
|
|
"السبت",
|
|
"الأحد"
|
|
],
|
|
|
|
/* 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:[
|
|
"الشهر السابق",
|
|
"الشهر المقبل",
|
|
"السنة السابقة",
|
|
"السنة المقبلة"
|
|
]
|
|
};
|