- 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.
64 lines
3.1 KiB
PHP
64 lines
3.1 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(
|
|
'LBL_SELECT_PICKLIST_IN' => 'Select Picklist in',
|
|
'LBL_ADD_VALUE' => 'Add Value',
|
|
'LBL_RENAME_VALUE' => 'Rename Value',
|
|
'LBL_DELETE_VALUE' => 'Delete Value',
|
|
'LBL_ITEMS' => 'Values',
|
|
'LBL_DRAG_ITEMS_TO_RESPOSITION' => 'Drag items to reposition them',
|
|
'LBL_SELECT_AN_ITEM_TO_RENAME_OR_DELETE' => 'Select an item to rename or delete',
|
|
'LBL_TO_DELETE_MULTIPLE_HOLD_CONTROL_KEY' => 'To Delete multiple items hold Ctrl key down while selecting items',
|
|
'LBL_ADD_ITEM_TO' => 'Add Item to',
|
|
'LBL_ITEM_VALUE' => 'Item value',
|
|
'LBL_ITEM_TO_RENAME' => 'Item to rename',
|
|
'LBL_ENTER_NEW_NAME' => 'Enter new Name',
|
|
'LBL_RENAME_PICKLIST_ITEM' => 'Rename PickList Item',
|
|
'LBL_DELETE_PICKLIST_ITEMS' => 'Delete PickList Items',
|
|
'LBL_ITEMS_TO_DELETE' => 'Items to Delete',
|
|
'LBL_REPLACE_IT_WITH' => 'Replace it with',
|
|
'LBL_ASSIGN_TO_ROLE' => 'Assign to Role',
|
|
'LBL_ALL_ROLES' => 'All Roles',
|
|
'LBL_CHOOSE_ROLES' => 'Choose Roles',
|
|
'LBL_ALL_VALUES' => 'All values',
|
|
'LBL_VALUES_ASSIGNED_TO_A_ROLE' => 'Values assigned to a role',
|
|
'LBL_ASSIGN_VALUE' => 'Assign Value',
|
|
'LBL_SAVE_ORDER' => 'Save Order',
|
|
'LBL_ROLE_NAME' => 'Role name',
|
|
'LBL_SELECTED_VALUES_MESSGAE' => 'will appear for the user with this role',
|
|
'LBL_ENABLE/DISABLE_MESSGAE' => 'Click on value to Enable/Disable it.After done click on save',
|
|
'LBL_ASSIGN_VALUES_TO_ROLES' => 'Assign Values to Roles',
|
|
'LBL_SELECTED_VALUES' => 'Selected Values',
|
|
'NO_PICKLIST_FIELDS'=> 'do not have any picklist fields',
|
|
'LBL_EDIT_PICKLIST_ITEM' => 'تحرير قائمة الاختيار البند',
|
|
|
|
//Translation for module
|
|
'Calendar' => 'مهمة',
|
|
|
|
'LBL_NON_EDITABLE_PICKLIST_VALUES' => 'غير قابل للتحرير القيم',
|
|
|
|
);
|
|
$jsLanguageStrings = array(
|
|
//PickList
|
|
'JS_ITEM_RENAMED_SUCCESSFULLY' => 'Item Renamed Successfully',
|
|
'JS_ITEM_ADDED_SUCCESSFULLY' => 'Item added Successfully',
|
|
'JS_NO_ITEM_SELECTED' => 'No item Selected',
|
|
'JS_MORE_THAN_ONE_ITEM_SELECTED' => 'More than one Item selected',
|
|
'JS_ITEMS_DELETED_SUCCESSFULLY' => 'Items Deleted Successfully',
|
|
'JS_YOU_CANNOT_DELETE_ALL_THE_VALUES' => 'You cannot delete all the values',
|
|
'JS_ALL_ROLES_SELECTED' => 'All Roles Selected',
|
|
'JS_LIST_UPDATED_SUCCESSFULLY' => 'List updated Successfully',
|
|
'JS_SEQUENCE_UPDATED_SUCCESSFULLY' => 'Sequence updated successfully',
|
|
'JS_VALUE_ASSIGNED_SUCCESSFULLY' => 'Value assigned successfully',
|
|
'JS_PLEASE_SELECT_MODULE' => 'Please select module',
|
|
'JS_SPECIAL_CHARACTERS' => 'Special Characters like',
|
|
'JS_NOT_ALLOWED' => 'are not allowed',
|
|
);
|