- 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.
49 lines
3.2 KiB
PHP
49 lines
3.2 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(
|
|
'Profiles' => 'Profili' ,
|
|
'SINGLE_Profiles' => 'Profilo' ,
|
|
'LBL_ADD_RECORD' => 'Add Profile' ,
|
|
'LBL_CREATE_PROFILE' => 'Create Profile' , // TODO: Review
|
|
'LBL_PROFILE_NAME' => 'Profile name' , // TODO: Review
|
|
'LBL_DESCRIPTION' => 'Description' , // TODO: Review
|
|
'LBL_EDIT_PRIVILIGES_FOR_THIS_PROFILE' => 'Edit priviliges for this profile', // TODO: Review
|
|
'LBL_MODULES' => 'Modules' , // TODO: Review
|
|
'LBL_PROFILE_VIEW' => 'Profile view' , // TODO: Review
|
|
'LBL_FIELDS' => 'Fields' , // TODO: Review
|
|
'LBL_TOOLS' => 'Tools' , // TODO: Review
|
|
'LBL_FIELD_AND_TOOL_PRIVILEGES' => 'Campo e utensili privilegi' , // TODO: Review
|
|
'LBL_EDIT_RECORD' => 'Edit' , // TODO: Review
|
|
'LBL_DUPLICATE_RECORD' => 'Duplicate' , // TODO: Review
|
|
'LBL_DELETE_RECORD' => 'Delete' , // TODO: Review
|
|
'LBL_VIEW_PRVILIGE' => 'Visualizza' ,
|
|
'LBL_EDIT_PRVILIGE' => 'Crea/Modifica' ,
|
|
'LBL_DELETE_PRVILIGE' => 'Elimina' ,
|
|
'LBL_INIVISIBLE' => 'Invisible' , // TODO: Review
|
|
'LBL_READ_ONLY' => 'Read only' , // TODO: Review
|
|
'LBL_WRITE' => 'Write' , // TODO: Review
|
|
'LBL_DELETE_PROFILE' => 'Delete Profile' , // TODO: Review
|
|
'LBL_TRANSFER_ROLES_TO_PROFILE' => 'Transfer roles to profile' , // TODO: Review
|
|
'LBL_PROFILES' => 'Profiles' , // TODO: Review
|
|
'LBL_CHOOSE_PROFILES' => 'Choose Profiles' , // TODO: Review
|
|
'LBL_GLOBAL_PERMISSION_WARNING' => 'Attenzione: gli utenti associati a questo profilo può accedere a tutti i record nel CRM',
|
|
|
|
'LBL_EDIT_PRIVILEGES_OF_THIS_PROFILE' => 'I privilegi di modifica a questo profilo',
|
|
'LBL_VIEW_ALL' => 'Vedi Tutti',
|
|
'LBL_EDIT_ALL' => 'Modifica Tutti',
|
|
'LBL_VIEW_ALL_DESC' => 'Possibile visualizzare tutti i moduli di informazioni',
|
|
'LBL_EDIT_ALL_DESC' => 'Possibile modificare tutti i moduli di informazioni',
|
|
'LBL_DUPLICATES_EXIST' => 'Profilo Duplicato Esiste',
|
|
'LBL_EDIT_PROFILE' => 'Modifica Profilo',
|
|
|
|
);
|
|
$jsLanguageStrings = array(
|
|
'JS_RECORD_DELETED_SUCCESSFULLY' => 'Profile deleted successfully', // TODO: Review
|
|
); |