- 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.
35 lines
2.2 KiB
PHP
35 lines
2.2 KiB
PHP
<?php
|
|
|
|
/* Farsi - by "Peyman Hooshmandi Raad" <phooshmand#gmail.com> */
|
|
|
|
$ADODB_LANG_ARRAY = array (
|
|
'LANG' => 'fa',
|
|
DB_ERROR => 'خطای ناشناخته',
|
|
DB_ERROR_ALREADY_EXISTS => 'وجود دارد',
|
|
DB_ERROR_CANNOT_CREATE => 'امکان create وجود ندارد',
|
|
DB_ERROR_CANNOT_DELETE => 'امکان حذف وجود ندارد',
|
|
DB_ERROR_CANNOT_DROP => 'امکان drop وجود ندارد',
|
|
DB_ERROR_CONSTRAINT => 'نقض شرط',
|
|
DB_ERROR_DIVZERO => 'تقسیم بر صفر',
|
|
DB_ERROR_INVALID => 'نامعتبر',
|
|
DB_ERROR_INVALID_DATE => 'زمان یا تاریخ نامعتبر',
|
|
DB_ERROR_INVALID_NUMBER => 'عدد نامعتبر',
|
|
DB_ERROR_MISMATCH => 'عدم مطابقت',
|
|
DB_ERROR_NODBSELECTED => 'بانک اطلاعاتی انتخاب نشده است',
|
|
DB_ERROR_NOSUCHFIELD => 'چنین ستونی وجود ندارد',
|
|
DB_ERROR_NOSUCHTABLE => 'چنین جدولی وجود ندارد',
|
|
DB_ERROR_NOT_CAPABLE => 'backend بانک اطلاعاتی قادر نیست',
|
|
DB_ERROR_NOT_FOUND => 'پیدا نشد',
|
|
DB_ERROR_NOT_LOCKED => 'قفل نشده',
|
|
DB_ERROR_SYNTAX => 'خطای دستوری',
|
|
DB_ERROR_UNSUPPORTED => 'پشتیبانی نمی شود',
|
|
DB_ERROR_VALUE_COUNT_ON_ROW => 'شمارش مقادیر روی ردیف',
|
|
DB_ERROR_INVALID_DSN => 'DSN نامعتبر',
|
|
DB_ERROR_CONNECT_FAILED => 'ارتباط برقرار نشد',
|
|
0 => 'بدون خطا', // DB_OK
|
|
DB_ERROR_NEED_MORE_DATA => 'داده ناکافی است',
|
|
DB_ERROR_EXTENSION_NOT_FOUND=> 'extension پیدا نشد',
|
|
DB_ERROR_NOSUCHDB => 'چنین بانک اطلاعاتی وجود ندارد',
|
|
DB_ERROR_ACCESS_VIOLATION => 'حق دسترسی ناکافی'
|
|
);
|