- 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.
61 lines
3.5 KiB
PHP
61 lines
3.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(
|
|
'Contacts' => 'Contatti' ,
|
|
'SINGLE_Contacts' => 'Contatto' ,
|
|
'LBL_ADD_RECORD' => 'Add Contact' ,
|
|
'LBL_RECORDS_LIST' => 'Contacts List' ,
|
|
'LBL_CONTACT_INFORMATION' => 'Informazioni Contatto' ,
|
|
'LBL_CUSTOMER_PORTAL_INFORMATION' => 'Informazioni Portale Clienti',
|
|
'LBL_IMAGE_INFORMATION' => 'Informazioni Immagine Contatto:',
|
|
'LBL_COPY_OTHER_ADDRESS' => 'Copia Altro indirizzo' , // TODO: Review
|
|
'LBL_COPY_MAILING_ADDRESS' => 'Copia Indirizzo postale' , // TODO: Review
|
|
'Office Phone' => 'Telefono Ufficio' ,
|
|
'Home Phone' => 'Telefono Casa' ,
|
|
'Title' => 'Titolo' ,
|
|
'Department' => 'Dipartimento' ,
|
|
'Birthdate' => 'Compleanno' ,
|
|
'Reports To' => 'Riporta a' ,
|
|
'Assistant' => 'Assistente' ,
|
|
'Assistant Phone' => 'Telefono Assistente' ,
|
|
'Do Not Call' => 'Non Chiamare' ,
|
|
'Reference' => 'Riferimento' ,
|
|
'Portal User' => 'Utente Portale' ,
|
|
'Mailing Street' => 'Via (spedizione)' ,
|
|
'Mailing City' => 'Città (spedizione)' ,
|
|
'Mailing State' => 'Provincia (spedizione)' ,
|
|
'Mailing Zip' => 'CAP (spedizione)' ,
|
|
'Mailing Country' => 'Stato (spedizione)' ,
|
|
'Mailing Po Box' => 'Casella postale di mailing' ,
|
|
'Other Street' => 'Altra Via' ,
|
|
'Other City' => 'Altra Città' ,
|
|
'Other State' => 'Altra Provincia' ,
|
|
'Other Zip' => 'Altro CAP' ,
|
|
'Other Country' => 'Altro Stato' ,
|
|
'Other Po Box' => 'Other P.O. Box' ,
|
|
'Contact Image' => 'Immagine Contatto' ,
|
|
'Mr.' => 'Sig.' ,
|
|
'Ms.' => 'Sig.ra' ,
|
|
'Mrs.' => 'Sig.ina' ,
|
|
'Dr.' => 'Dr.' ,
|
|
'Prof.' => 'Prof.' ,
|
|
'User List' => 'Lista Utente' ,
|
|
'Contact Id' => 'Contatto Id',
|
|
'Support Start Date' => 'Supporto Data di inizio' ,
|
|
'Support End Date' => 'Data di supporto End' ,
|
|
'LBL_TRANSACTIONS' => 'Transazioni',
|
|
|
|
'Other Phone' => 'Telefono Secondario',
|
|
'Email' => 'Email Principale',
|
|
'Secondary Email' => 'E-Mail Secondaria',
|
|
|
|
);
|
|
$jsLanguageStrings = array(
|
|
); |