- 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.
73 lines
4.7 KiB
PHP
73 lines
4.7 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' => 'Контакты' ,
|
||
'SINGLE_Contacts' => 'Контакт' ,
|
||
'LBL_ADD_RECORD' => 'Добавить Контакт' , // TODO: Review
|
||
'LBL_RECORDS_LIST' => 'Список Контактов' , // TODO: Review
|
||
'LBL_CONTACT_INFORMATION' => 'Информация о контакте',
|
||
'LBL_CUSTOMER_PORTAL_INFORMATION' => 'Информация пользователя портала',
|
||
'LBL_IMAGE_INFORMATION' => 'Изображение Контакта',
|
||
'LBL_COPY_OTHER_ADDRESS' => 'Копировать другой адрес', // KEY 5.x: LBL_CPY_OTHER_ADDRESS
|
||
'LBL_COPY_MAILING_ADDRESS' => 'Копировать почтовый адрес', // KEY 5.x: LBL_CPY_MAILING_ADDRESS
|
||
'Office Phone' => 'Рабочий тел.' ,
|
||
'Home Phone' => 'Домашний тел.' ,
|
||
'Mobile Phone' => 'Мобильный тел.',
|
||
'Title' => 'Должность' ,
|
||
'Department' => 'Отдел' ,
|
||
'Birthdate' => 'День рождения' ,
|
||
'Reports To' => 'Начальник:' ,
|
||
'Assistant' => 'Ассистент' ,
|
||
'Assistant Phone' => 'Тел.ассистента' ,
|
||
'Do Not Call' => 'Не звонить' ,
|
||
'Reference' => 'Рекомендации' ,
|
||
'Portal User' => 'Пользователь портала',
|
||
'Mailing Street' => 'Улица' ,
|
||
'Mailing City' => 'Город' ,
|
||
'Mailing State' => 'Область' ,
|
||
'Mailing Zip' => 'Индекс' ,
|
||
'Mailing Country' => 'Страна' ,
|
||
'Mailing Po Box' => 'А/я (почта)' , // TODO: Review
|
||
'Other Street' => 'Доп. адрес: улица',
|
||
'Other City' => 'Доп. адрес: город',
|
||
'Other State' => 'Доп. адрес: область',
|
||
'Other Zip' => 'Доп. адрес: индекс',
|
||
'Other Country' => 'Доп. адрес: страна',
|
||
'Other Po Box' => 'А/я (другое)' , // TODO: Review
|
||
'Contact Image' => 'Изображение' ,
|
||
'Mr.' => 'Г-н.' ,
|
||
'Ms.' => 'Г-жа.' ,
|
||
'Mrs.' => 'Мис' ,
|
||
'Dr.' => 'Д-р.' ,
|
||
'Prof.' => 'Проф.' ,
|
||
'User List' => 'Список Пользователей',
|
||
'Contact Id' => 'Контакт №',
|
||
'Contacted - Successful' => 'Успешный Контакт',
|
||
'LBL_SETUP_WEBFORMS' => 'Установка Веб-Форм',
|
||
'Please Login Here' => 'Войти',
|
||
'Support Start Date' => 'Дата начала поддержки',
|
||
'Support End Date' => 'Дата завершения поддержки',
|
||
'LBL_TRANSACTIONS' => 'Операции',
|
||
'Other Phone' => 'Другой тел.',
|
||
'Email' => 'Основной адрес электронной почты',
|
||
'Secondary Email' => 'Второй адрес электронной почты',
|
||
);
|
||
$jsLanguageStrings = array(
|
||
'LBL_SYNC_BUTTON' => 'Синхронизировать',
|
||
'LBL_SYNCRONIZING' => 'Синхронизация...',
|
||
'LBL_NOT_SYNCRONIZED' => 'Не синхронизировано',
|
||
'LBL_FIELD_MAPPING' => 'Соответствие полей',
|
||
'Contacted - Successful' => 'Успешный Контакт',
|
||
'JS_SAVED_SUCCESSFULLY' => 'Настройки сохранены',
|
||
);
|
||
|
||
// SalesPlatform.ru begin SPConfiguration fix
|
||
include 'renamed/Contacts.php';
|
||
// SalesPlatform.ru end
|