- 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.
98 lines
5.5 KiB
PHP
98 lines
5.5 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_Documents' => 'Document' ,
|
|
'Documents' => 'Documents' , // TODO: Review
|
|
'LBL_ADD_RECORD' => 'Add Document' ,
|
|
'LBL_RECORDS_LIST' => 'Documents List' ,
|
|
'LBL_NOTE_INFORMATION' => 'Basic Information' ,
|
|
'LBL_FILE_INFORMATION' => 'File Information' ,
|
|
'LBL_DESCRIPTION' => 'Description' ,
|
|
'Title' => 'Title' ,
|
|
'File Name' => 'File Name' ,
|
|
'Note' => 'Notes' ,
|
|
'File Type' => 'File Type' ,
|
|
'File Size' => 'Size' ,
|
|
'Download Type' => 'Download Type' ,
|
|
'Version' => 'Version' ,
|
|
'Active' => 'Active' ,
|
|
'Download Count' => 'Download Count' ,
|
|
'Folder Name' => 'Folder Name' ,
|
|
'Document No' => 'Document No.' ,
|
|
'Last Modified By' => 'Last Modified By' ,
|
|
'LBL_FOLDER_HAS_DOCUMENTS' => 'Please move documents from folder before deleting',
|
|
'LBL_DOWNLOAD_FILE' => 'Download file' ,
|
|
'LBL_CHECK_FILE_INTEGRITY' => 'Check file integrity' ,
|
|
'LBL_INTERNAL' => 'Internal' ,
|
|
'LBL_EXTERNAL' => 'External' ,
|
|
'LBL_MAX_UPLOAD_SIZE' => 'Maximum upload size' ,
|
|
'LBL_MOVE' => 'Move' ,
|
|
'LBL_ADD_FOLDER' => 'Add Folder' ,
|
|
'LBL_FOLDERS_LIST' => 'Folders List' ,
|
|
'LBL_FOLDERS' => 'Folders' ,
|
|
'LBL_DOCUMENTS_MOVED_SUCCESSFULLY' => 'Documents Moved Successfully',
|
|
'LBL_DENIED_DOCUMENTS' => 'Denied Documents' ,
|
|
'MB' => 'MB' ,
|
|
'LBL_ADD_NEW_FOLDER' => 'Add Folder' ,
|
|
'LBL_FOLDER_NAME' => 'Folder Name' ,
|
|
'LBL_FOLDER_DESCRIPTION' => 'Folder Description' ,
|
|
'LBL_FILE_AVAILABLE' => 'File is available for download',
|
|
'LBL_FILE_NOT_AVAILABLE' => 'This Document is not available for Download',
|
|
'LBL_VIEW_FILE' => 'View File',
|
|
'LBL_PREVIEW_NOT_AVAILABLE' => 'Preview Not Available',
|
|
'LBL_VIEW_FILE' => 'View File',
|
|
'LBL_PREVIEW_NOT_AVAILABLE' => 'Preview Not Available',
|
|
'LBL_INTERNAL_DOCUMENT_TYPE' =>'Internal Document',
|
|
'LBL_EXTERNAL_DOCUMENT_TYPE' =>'External URL',
|
|
'LBL_WEBDOCUMENT_TYPE' =>'Web Document',
|
|
'LBL_DRAG_&_DROP_FILE_HERE' => 'Drag & Drop File Here',
|
|
'LBL_WEB' => 'Web',
|
|
'LBL_UPLOAD_DOCUMENT_TO_VTIGER' => 'Upload Documents To Vtiger',
|
|
'LBL_ROOT' => 'Root',
|
|
'LBL_AUTHORIZE' => 'Authorize',
|
|
'LBL_DOCUMENT_SOURCE' => 'Document Source',
|
|
'LBL_FILE_URL' => 'File Url',
|
|
|
|
'LBL_EMAIL_FILE_AS_ATTACHMENT' => 'Email file as attachment',
|
|
'LBL_UPLOAD_TO' => 'Upload To',
|
|
'LBL_NEW_DOCUMENT' => 'New Document',
|
|
'LBL_VTIGER' => 'Vtiger',
|
|
'LBL_CREATE_YOUR_OWN' => 'Create your own',
|
|
'LBL_SHARE_DOCUMENT' => 'Share a Document',
|
|
'LBL_UPLOAD_TO_VTIGER' => 'Upload Document to Vtiger',
|
|
'LBL_UPLOAD' => 'Upload',
|
|
'LBL_SELECT_FILE_FROM_COMPUTER' => 'Select File from my Computer',
|
|
'LBL_FILE_UPLOAD' => 'File Upload',
|
|
'LBL_LINK_EXTERNAL_DOCUMENT' => 'Link External Document',
|
|
'LBL_TO_SERVICE' => 'To %s',
|
|
'LBL_FROM_SERVICE' => 'From %s',
|
|
'LBL_CREATE_NEW' => 'Create New %s',
|
|
'LBL_SELECT_A_FOLDER_TO_MOVE' => 'Please select a folder to move',
|
|
);
|
|
$jsLanguageStrings = array(
|
|
'JS_NEW_FOLDER' => 'New Folder' ,
|
|
'JS_MOVE_DOCUMENTS' => 'Move Documents' ,
|
|
'JS_ARE_YOU_SURE_YOU_WANT_TO_MOVE_DOCUMENTS_TO' => 'Are you sure you want to move the file(s) to',
|
|
'JS_FOLDER' => 'folder' ,
|
|
'JS_OPERATION_DENIED' => 'Operation Denied' ,
|
|
'JS_FOLDER_IS_NOT_EMPTY' => 'Please Delete/Move all the documents in the current folder before deleting it',
|
|
'JS_SPECIAL_CHARACTERS' => 'Special Characters like',
|
|
'JS_NOT_ALLOWED' => 'are not allowed',
|
|
'JS_ARE_YOU_SURE_TO_REVOKE_ACCESS' => 'Are you sure you want to revoke access ?',
|
|
'JS_ACCESS_REVOKED' => 'Access Revoked',
|
|
'JS_DELETE_AND_TRASH_FILE_IN_DROPBOX' => 'Delete and trash file in dropbox',
|
|
|
|
'JS_DELETE_AND_TRASH_FILE_IN_DRIVE' => 'Delete and trash file in drive',
|
|
'JS_FAILED_TO_UPLOAD_FILE' => 'Failed to upload file',
|
|
'JS_UPLOAD_SUCCESSFUL' => 'File Uploaded Successfuly',
|
|
'JS_UPLOAD_FAILED' => 'File Upload Failed',
|
|
'JS_DOCUMENT_CREATED' => 'Document created',
|
|
'JS_DOCUMENT_CREATION_FAILED' => 'Document creation failed',
|
|
); |