- 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.
67 lines
4.6 KiB
PHP
67 lines
4.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(
|
||
'Leads' => 'Обращения' ,
|
||
'SINGLE_Leads' => 'Обращение' ,
|
||
'LBL_RECORDS_LIST' => 'Список Обращений' , // TODO: Review
|
||
'LBL_ADD_RECORD' => 'Добавить Обращение' , // TODO: Review
|
||
'LBL_LEAD_INFORMATION' => 'Информация об Обращении',
|
||
'Lead No' => 'Обращение №' ,
|
||
'Company' => 'Организация' ,
|
||
'Designation' => 'Должность' ,
|
||
'Website' => 'Веб-сайт' ,
|
||
'Industry' => 'Отрасль' ,
|
||
'Lead Status' => 'Статус' ,
|
||
'No Of Employees' => 'Кол-во сотрудников',
|
||
'--None--' => '--нет--' ,
|
||
'Mr.' => 'Г-н.' ,
|
||
'Ms.' => 'Г-жа.' ,
|
||
'Mrs.' => 'Мис.' ,
|
||
'Dr.' => 'Д-р.' ,
|
||
'Prof.' => 'Проф.' ,
|
||
'Attempted to Contact' => 'Попытка связаться',
|
||
'Cold' => 'Холодный' ,
|
||
'Contact in Future' => 'Контакт в будущем',
|
||
'Contacted' => 'Есть Контакт' ,
|
||
'Hot' => 'Горячий' ,
|
||
'Hot Leads' => 'Горячие Обращения',
|
||
'Junk Lead' => 'Ненужное Обращение',
|
||
'Lost Lead' => 'Утерянное Обращение',
|
||
'Not Contacted' => 'Не связывался' ,
|
||
'Pre Qualified' => 'Предв. классифицирован',
|
||
'Qualified' => 'Классифицирован',
|
||
'Warm' => 'Теплый' ,
|
||
'LBL_CONVERT_LEAD' => 'Преобразовать' ,
|
||
'LBL_TRANSFER_RELATED_RECORD' => 'Связать с' , // TODO: Review
|
||
'LBL_CONVERT_LEAD_ERROR' => 'You have to enable either Organization or Contact to convert the Lead', // TODO: Review
|
||
'LBL_CONVERT_LEAD_ERROR_TITLE' => 'Modules Disabled' , // TODO: Review
|
||
'CANNOT_CONVERT' => 'Невозможно Конвертировать',
|
||
'LBL_FOLLOWING_ARE_POSSIBLE_REASONS' => 'Ниже приведены возможные причины',
|
||
'LBL_LEADS_FIELD_MAPPING_INCOMPLETE' => 'поле отображения неполной',
|
||
'LBL_MANDATORY_FIELDS_ARE_EMPTY' => 'обязательные поля пусты',
|
||
'LBL_LEADS_FIELD_MAPPING' => 'Ведет поле отображения',
|
||
'LBL_CUSTOM_FIELD_MAPPING' => 'Изменить соответствия полей' , // TODO: Review
|
||
'LBL_SETUP_WEBFORMS' => 'Установка Веб-Форм' , // TODO: Review
|
||
'Prospecting' => 'Разведка',
|
||
'LBL_IMAGE_INFORMATION' => 'Изображение профиля',
|
||
'Lead Image' => 'Изображение Обращения',
|
||
'Phone' => 'Основной телефон',
|
||
'Secondary Email' => 'Второй адрес электронной почты',
|
||
'Email' => 'Основной адрес электронной почты',
|
||
);
|
||
$jsLanguageStrings = array(
|
||
'JS_SELECT_CONTACTS' => 'Выберите контакты для продолжения' , // TODO: Review
|
||
'JS_SELECT_ORGANIZATION' => 'Выберите клиентов для продолжения', // TODO: Review
|
||
'JS_SELECT_ORGANIZATION_OR_CONTACT_TO_CONVERT_LEAD' => 'Преобразование требует выбора контактов и клиентов', // TODO: Review
|
||
);
|
||
|
||
// SalesPlatform.ru begin SPConfiguration fix
|
||
include 'renamed/Leads.php';
|
||
// SalesPlatform.ru end
|