- 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.
68 lines
3.6 KiB
PHP
68 lines
3.6 KiB
PHP
<?php
|
|
/*+***********************************************************************************
|
|
* The contents of this file are subject to the vtiger CRM Public License Version 1.0
|
|
* ("License"); You may not use this file except in compliance with the License
|
|
* The Original Code is: vtiger CRM Open Source
|
|
* The Initial Developer of the Original Code is vtiger.
|
|
* Portions created by vtiger are Copyright (C) vtiger.
|
|
* All Rights Reserved.
|
|
*************************************************************************************/
|
|
$languageStrings = array(
|
|
'SINGLE_Settings:Webforms' => 'Webform',
|
|
//Basic Field Names
|
|
'WebForm Name' => 'Webform Name',
|
|
'Public Id' => 'Public Id',
|
|
'Enabled' => 'Status',
|
|
'Module' => 'Module',
|
|
'Return Url' => 'Return Url',
|
|
'Post Url' => 'Post Url',
|
|
'SINGLE_Webforms' => 'Webform',
|
|
'Captcha Enabled' => 'كلمة التحقق ممكن',
|
|
|
|
//Actions
|
|
'LBL_SHOW_FORM' => 'Show Form',
|
|
'LBL_DUPLICATES_EXIST' => 'Webform Name already exists',
|
|
|
|
//Blocks
|
|
'LBL_WEBFORM_INFORMATION' => 'Webform Information',
|
|
'LBL_FIELD_INFORMATION' => 'Field Information',
|
|
'LBL_FIELD_NAME' => 'Field Name',
|
|
'LBL_OVERRIDE_VALUE' => 'Override Value',
|
|
'LBL_MANDATORY' => 'Mandatory',
|
|
'LBL_WEBFORM_REFERENCE_FIELD' => 'Webforms reference Field',
|
|
'LBL_SELECT_FIELDS_OF_TARGET_MODULE' => 'Select Fields for Target Module...',
|
|
'LBL_ALLOWS_YOU_TO_MANAGE_WEBFORMS' => 'Allows you to manage webforms',
|
|
'LBL_ADD_FIELDS' => 'Add Fields',
|
|
'LBL_EMBED_THE_FOLLOWING_FORM_IN_YOUR_WEBSITE' => 'Embed the following form in your website',
|
|
'LBL_SELECT_VALUE' => 'Select Value',
|
|
'LBL_LABEL' => 'label',
|
|
'LBL_SAVE_FIELDS_ORDER' => 'من أجل إنقاذ الحقول',
|
|
'LBL_HIDDEN' => 'مخفي',
|
|
'LBL_ENABLE_TARGET_MODULES_FOR_WEBFORM' => 'تمكين وحدات الهدف ليبفورم',
|
|
'LBL_ASSIGN_USERS' => 'تعيين المستخدم',
|
|
'LBL_ASSIGN_ROUND_ROBIN' => 'تعيين المستخدمين في جولة روبن',
|
|
'LBL_ROUNDROBIN_USERS_LIST' => 'جولة روبن قائمة المستخدمين',
|
|
|
|
'LBL_ADD_RECORD' => 'إضافة Webform',
|
|
|
|
'LBL_UPLOAD_DOCUMENTS' => 'وثائق للتحميل',
|
|
'LBL_ADD_FILE_FIELD' => 'رفع ملف الميدان',
|
|
'LBL_FIELD_LABEL' => 'عنوان الوثيقة',
|
|
'LBL_FILE_FIELD_INFO' => 'لكل ملف مرفوع من على شبكة الإنترنت تشكل يتم إنشاء وثيقة جديدة مع الملف المرفق. يرتبط الوثيقة أيضا إلى هذه المنشأة حديثا٪ الصورة.',
|
|
'LBL_NO_FILE_FIELD' => 'وأضافت أية حقول الملف.',
|
|
'LBL_COPY_TO_CLIPBOARD' => 'نسخ إلى الحافظة',
|
|
);
|
|
$jsLanguageStrings = array(
|
|
'JS_WEBFORM_DELETED_SUCCESSFULLY' => 'Webform deleted successfully',
|
|
'JS_LOADING_TARGET_MODULE_FIELDS' => 'Loading Target Module Fields',
|
|
'JS_SELECT_AN_OPTION' => 'Select an Option',
|
|
'JS_LABEL' => 'label',
|
|
'JS_MANDATORY_FIELDS_WITHOUT_OVERRIDE_VALUE_CANT_BE_HIDDEN' => 'الحقول الإلزامية دون تجاوز القيم غير قادر على أن تكون مخفية',
|
|
'JS_REFERENCE_FIELDS_CANT_BE_MANDATORY_WITHOUT_OVERRIDE_VALUE' => 'الحقول المرجعية غير قادر على أن يكون إلزاميا دون تجاوز القيمة',
|
|
'JS_TYPE_TO_SEARCH' => 'اكتب للبحث',
|
|
"JS_WEBFORM_WITH_THIS_NAME_ALREADY_EXISTS" => 'يبفورم مع هذا الاسم موجود بالفعل',
|
|
|
|
'JS_MAX_FILE_FIELDS_LIMIT' => 'الحد الأقصى الذي يمكن أن تضيف٪ الصورة حقول الملف.',
|
|
'JS_COPIED_SUCCESSFULLY' => 'نسخ بنجاح.',
|
|
'JS_COPY_FAILED' => 'فشل نسخة. يرجى نسخ يدويا.',
|
|
); |