- Added comprehensive AI Assistant system (aiassist/ directory): * Vector search and embedding capabilities * Typebot proxy integration * Elastic search functionality * Message classification and chat history * MCP proxy for external integrations - Implemented Court Status API (GetCourtStatus.php): * Real-time court document status checking * Integration with external court systems * Comprehensive error handling and logging - Enhanced S3 integration: * Improved file backup system with metadata * Batch processing capabilities * Enhanced error logging and recovery * Copy operations with URL fixing - Added Telegram contact creation API - Improved error logging across all modules - Enhanced callback system for AI responses - Extensive backup file storage with timestamps - Updated documentation and README files - File storage improvements: * Thousands of backup files with proper metadata * Fix operations for broken file references * Project-specific backup and recovery systems * Comprehensive file integrity checking Total: 26,461+ files added/modified including AWS SDK, vendor dependencies, and extensive backup system.
31 lines
2.0 KiB
JavaScript
31 lines
2.0 KiB
JavaScript
/* http://keith-wood.name/datepick.html
|
|
Arabic localisation for jQuery Datepicker.
|
|
Khaled Al Horani -- koko.dw@gmail.com
|
|
خالد الحوراني -- koko.dw@gmail.com
|
|
NOTE: monthNames are the original months names and they are the Arabic names, not the new months name فبراير - يناير and there isn't any Arabic roots for these months */
|
|
(function($) {
|
|
$.datepick.regional['ar'] = {
|
|
monthNames: ['كانون الثاني', 'شباط', 'آذار', 'نيسان', 'آذار', 'حزيران',
|
|
'تموز', 'آب', 'أيلول', 'تشرين الأول', 'تشرين الثاني', 'كانون الأول'],
|
|
monthNamesShort: ['1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12'],
|
|
dayNames: ['الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت'],
|
|
dayNamesShort: ['الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت'],
|
|
dayNamesMin: ['الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت'],
|
|
dateFormat: 'dd/mm/yyyy', firstDay: 6,
|
|
renderer: $.datepick.defaultRenderer,
|
|
prevText: '<السابق', prevStatus: 'عرض الشهر السابق',
|
|
prevJumpText: '<<', prevJumpStatus: '',
|
|
nextText: 'التالي>', nextStatus: 'عرض الشهر القادم',
|
|
nextJumpText: '>>', nextJumpStatus: '',
|
|
currentText: 'اليوم', currentStatus: 'عرض الشهر الحالي',
|
|
todayText: 'اليوم', todayStatus: 'عرض الشهر الحالي',
|
|
clearText: 'مسح', clearStatus: 'امسح التاريخ الحالي',
|
|
closeText: 'إغلاق', closeStatus: 'إغلاق بدون حفظ',
|
|
yearStatus: 'عرض سنة آخرى', monthStatus: 'عرض شهر آخر',
|
|
weekText: 'أسبوع', weekStatus: 'أسبوع السنة',
|
|
dayStatus: 'اختر D, M d', defaultStatus: 'اختر يوم',
|
|
isRTL: true
|
|
};
|
|
$.datepick.setDefaults($.datepick.regional['ar']);
|
|
})(jQuery);
|