Files
crm.clientright.ru/languages/ru_ru/Leads.php
Fedor ac7467f0b4 Major CRM updates: AI Assistant, Court Status API, S3 integration improvements, and extensive file storage system
- 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.
2025-10-16 11:17:21 +03:00

67 lines
4.6 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?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