Files
crm.clientright.ru/libraries/jquery/jquery.datepick.package-4.1.0/jquery.datepick-km.js
Fedor ac7467f0b4 Major CRM updates: AI Assistant, Court Status API, S3 integration improvements, and extensive file storage system
- 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.
2025-10-16 11:17:21 +03:00

30 lines
1.9 KiB
JavaScript

/* http://keith-wood.name/datepick.html
Khmer initialisation for jQuery Datepicker.
Written by Sovichet Tep (sovichet.tep@gmail.com). */
(function($){
$.datepick.regional['km'] = {
monthNames: ['ខែ​មករា','ខែ​កុម្ភៈ','ខែ​មិនា','ខែ​មេសា','ខែ​ឧសភា','ខែ​មិថុនា',
'ខែ​កក្កដា','ខែ​សីហា','ខែ​កញ្ញា','ខែ​តុលា','ខែ​វិច្ឆិកា','ខែ​ធ្នូ'],
monthNamesShort: ['មក', 'កុ', 'មិនា', 'មេ', 'ឧស', 'មិថុ',
'កក្ក', 'សី', 'កញ្ញា', 'តុលា', 'វិច្ឆិ', 'ធ្នូ'],
dayNames: ['ថ្ងៃ​អាទិត្យ', 'ថ្ងៃ​ចន្ទ', 'ថ្ងៃ​អង្គារ', 'ថ្ងៃ​ពុធ', 'ថ្ងៃ​ព្រហស្បត្តិ៍', 'ថ្ងៃ​សុក្រ', 'ថ្ងៃ​សៅរ៍'],
dayNamesShort: ['អា', 'ចន្ទ', 'អង្គ', 'ពុធ', 'ព្រហ', 'សុ', 'សៅរ៍'],
dayNamesMin: ['អា','ច','អ','ពុ','ព្រ','សុ','ស'],
dateFormat: 'dd/mm/yyyy', firstDay: 1,
renderer: $.datepick.defaultRenderer,
prevText: 'ថយ​ក្រោយ', prevStatus: '',
prevJumpText: '<<', prevJumpStatus: '',
nextText: 'ទៅ​មុខ', nextStatus: '',
nextJumpText: '>>', nextJumpStatus: '',
currentText: 'ថ្ងៃ​នេះ', currentStatus: '',
todayText: 'ថ្ងៃ​នេះ', todayStatus: '',
clearText: 'X', clearStatus: '',
closeText: 'រួច​រាល់', closeStatus: '',
yearStatus: '', monthStatus: '',
weekText: 'Wk', weekStatus: '',
dayStatus: 'DD d MM', defaultStatus: '',
isRTL: false
};
$.datepick.setDefaults($.datepick.regional['km']);
});