- 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.
30 lines
2.3 KiB
JavaScript
30 lines
2.3 KiB
JavaScript
/* http://keith-wood.name/datepick.html
|
|
Gujarati (ગુજરાતી) localisation for jQuery Datepicker.
|
|
Naymesh Mistry (naymesh@yahoo.com). */
|
|
(function($) {
|
|
$.datepick.regional['gu'] = {
|
|
monthNames: ['જાન્યુઆરી','ફેબ્રુઆરી','માર્ચ','એપ્રિલ','મે','જૂન',
|
|
'જુલાઈ','ઑગસ્ટ','સપ્ટેમ્બર','ઑક્ટોબર','નવેમ્બર','ડિસેમ્બર'],
|
|
monthNamesShort: ['જાન્યુ','ફેબ્રુ','માર્ચ','એપ્રિલ','મે','જૂન',
|
|
'જુલાઈ','ઑગસ્ટ','સપ્ટે','ઑક્ટો','નવે','ડિસે'],
|
|
dayNames: ['રવિવાર','સોમવાર','મંગળવાર','બુધવાર','ગુરુવાર','શુક્રવાર','શનિવાર'],
|
|
dayNamesShort: ['રવિ','સોમ','મંગળ','બુધ','ગુરુ','શુક્ર','શનિ'],
|
|
dayNamesMin: ['ર','સો','મં','બુ','ગુ','શુ','શ'],
|
|
dateFormat: 'dd-M-yyyy', firstDay: 1,
|
|
renderer: $.datepick.defaultRenderer,
|
|
prevText: '<પાછળ', prevStatus: 'પાછલો મહિનો બતાવો',
|
|
prevJumpText: '<<', prevJumpStatus: 'પાછળ',
|
|
nextText: 'આગળ>', nextStatus: 'આગલો મહિનો બતાવો',
|
|
nextJumpText: '>>', nextJumpStatus: 'આગળ',
|
|
currentText: 'આજે', currentStatus: 'આજનો દિવસ બતાવો',
|
|
todayText: 'આજે', todayStatus: 'આજનો દિવસ',
|
|
clearText: 'ભૂંસો', clearStatus: 'હાલ પસંદ કરેલી તારીખ ભૂંસો',
|
|
closeText: 'બંધ કરો', closeStatus: 'તારીખ પસંદ કર્યા વગર બંધ કરો',
|
|
yearStatus: 'જુદુ વર્ષ બતાવો', monthStatus: 'જુદો મહિનો બતાવો',
|
|
weekText: 'અઠવાડિયું', weekStatus: 'અઠવાડિયું',
|
|
dayStatus: 'અઠવાડિયાનો પહેલો દિવસ પસંદ કરો', defaultStatus: 'તારીખ પસંદ કરો',
|
|
isRTL: false
|
|
};
|
|
$.datepick.setDefaults($.datepick.regional['gu']);
|
|
})(jQuery);
|