- 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.
69 lines
4.8 KiB
PHP
69 lines
4.8 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(
|
||
'Potentials' => 'Сделки' ,
|
||
'SINGLE_Potentials' => 'Сделка' ,
|
||
'LBL_ADD_RECORD' => 'Добавить Сделку' , // TODO: Review
|
||
'LBL_RECORDS_LIST' => 'Список сделок' , // TODO: Review
|
||
'LBL_OPPORTUNITY_INFORMATION' => 'Информация' ,
|
||
'Potential No' => 'Сделка №' ,
|
||
'Amount' => 'Сумма' ,
|
||
'Next Step' => 'Дальнейшие действия',
|
||
'Sales Stage' => 'Стадия' ,
|
||
'Probability' => 'Вероятность (%)' ,
|
||
'Campaign Source' => 'Кампания источник',
|
||
'Forecast Amount' => 'Прогнозируемая сумма',
|
||
'Funnel' => 'Воронка продаж' , // TODO: Review
|
||
'Potentials by Stage' => 'Стадии Сделок' , // TODO: Review
|
||
'Total Revenue' => 'Доход от продаж' , // TODO: Review
|
||
'Top Potentials' => 'Последние Сделки' , // TODO: Review
|
||
'Forecast' => 'Прогноз продаж' , // TODO: Review
|
||
'Prospecting' => 'Переговоры' ,
|
||
'Qualification' => 'Оценка' ,
|
||
'Needs Analysis' => 'Нуждается в анализе',
|
||
'Value Proposition' => 'Предложение' ,
|
||
'Id. Decision Makers' => 'Поиск принимающих решение',
|
||
'Perception Analysis' => 'Анализ ситуации',
|
||
'Proposal or Price Quote' => 'Ценовое предложение',
|
||
'Negotiation or Review' => 'Переговоры или отзыв',
|
||
'Proposal/Price Quote' => 'Коммерческое предложение/цены',
|
||
'Negotiation/Review' => 'Переговоры/ознакомление',
|
||
'Closed Won' => 'Закрыта удачно' ,
|
||
'Closed Lost' => 'Закрыта неудачно',
|
||
'--None--' => '--Нет--' ,
|
||
'Existing Business' => 'Существующий бизнес',
|
||
'New Business' => 'Новый бизнес' ,
|
||
'LBL_EXPECTED_CLOSE_DATE_ON' => 'Expected to close on' , // TODO: Review
|
||
'LBL_RELATED_CONTACTS' => 'Контакты' , // TODO: Review
|
||
'LBL_RELATED_PRODUCTS' => 'Продукты' , // TODO: Review
|
||
'Unit Price' => 'Цена за единицу',
|
||
'LBL_SETUP_WEBFORMS' => 'Установка Веб-Форм',
|
||
'LBL_EXPORT_TO_PDF' => 'Экспорт в PDF:',
|
||
'LBL_SEND_MAIL_PDF' => 'Отправить PDF по Email:',
|
||
'Related To' => 'Название организации',
|
||
'Type' => 'Тип' ,
|
||
'LBL_CONVERT_POTENTIAL' => 'Преобразование возможности',
|
||
'LBL_POTENTIALS_FIELD_MAPPING' => 'Возможности отображение полей',
|
||
'LBL_CONVERT_POTENTIALS_ERROR' => 'Вы должны включить проект для преобразования возможности',
|
||
'LBL_POTENTIALS_FIELD_MAPPING_INCOMPLETE' => 'Отображение возможностей полей является неполным (Настройки> Менеджер модулей> Возможности> Возможности Поле Mapping)',
|
||
'LBL_CREATE_PROJECT' => 'Создать проект',
|
||
'LBL_CUSTOM_FIELD_MAPPING'=> 'Возможность сопоставления проектов',
|
||
'Contact Name' => 'Имя Контакта',
|
||
);
|
||
|
||
$jsLanguageStrings = array(
|
||
'Prospecting' => 'Переговоры',
|
||
'Qualification' => 'Оценка',
|
||
'JS_SELECT_PROJECT_TO_CONVERT_LEAD' => 'Для преобразования требуется выбор проекта',
|
||
);
|
||
|
||
// SalesPlatform.ru begin SPConfiguration fix
|
||
include 'renamed/Potentials.php';
|
||
// SalesPlatform.ru end
|