Files
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

58 lines
4.5 KiB
PHP
Raw Permalink 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(
'LBL_SELECT_PICKLIST_IN' => 'Выберите список в',
'LBL_ADD_VALUE' => 'Добавить значение',
'LBL_RENAME_VALUE' => 'Переименовать значение',
'LBL_DELETE_VALUE' => 'Удалить значение',
'LBL_ITEMS' => 'Значения', // KEY 5.x: Values
'LBL_DRAG_ITEMS_TO_RESPOSITION' => 'Перетащите элементы, чтобы изменить их порядок',
'LBL_SELECT_AN_ITEM_TO_RENAME_OR_DELETE' => 'Выберите пункт чтобы переименовать или удалить',
'LBL_TO_DELETE_MULTIPLE_HOLD_CONTROL_KEY' => 'Чтобы удалить несколько элементов удерживайте кнопку Ctrl при выборе элементов', // TODO: Review
'LBL_ADD_ITEM_TO' => 'Добавить значение к',
'LBL_ITEM_VALUE' => 'Значение',
'LBL_ITEM_TO_RENAME' => 'Переименовать значение',
'LBL_ENTER_NEW_NAME' => 'Введите новое имя',
'LBL_RENAME_PICKLIST_ITEM' => 'Переименовать значение списка',
'LBL_DELETE_PICKLIST_ITEMS' => 'Удалить значения списка',
'LBL_ITEMS_TO_DELETE' => 'Значения для удаления',
'LBL_REPLACE_IT_WITH' => 'Заменить на',
'LBL_ASSIGN_TO_ROLE' => 'Назначить роли',
'LBL_ALL_ROLES' => 'Все роли',
'LBL_CHOOSE_ROLES' => 'Выберите роли',
'LBL_ALL_VALUES' => 'Все значения',
'LBL_VALUES_ASSIGNED_TO_A_ROLE' => 'Значения присвоенные роли',
'LBL_ASSIGN_VALUE' => 'Присвоить значение',
'LBL_SAVE_ORDER' => 'Сохранить порядок',
'LBL_ROLE_NAME' => 'Название Роли',
'LBL_SELECTED_VALUES_MESSGAE' => 'появятся для пользователя с этой ролью',
'LBL_ENABLE/DISABLE_MESSGAE' => 'Нажмите на значение чтобы Включить/Отключить его. После этого нажмите на кнопку Сохранить',
'LBL_ASSIGN_VALUES_TO_ROLES' => 'Назначить значения ролям',
'LBL_SELECTED_VALUES' => 'Выбранные значения',
'NO_PICKLIST_FIELDS' => 'отсутствуют поля-списки',
'LBL_NON_EDITABLE_PICKLIST_VALUES' => 'Не редактируемые значения списка',
'LBL_EDIT_PICKLIST_ITEM' => 'Изменить элемент списка',
'Calendar' => 'Задача',
);
$jsLanguageStrings = array(
'JS_ITEM_RENAMED_SUCCESSFULLY' => 'Значение успешно переименовано',
'JS_ITEM_ADDED_SUCCESSFULLY' => 'Значение успешно добавлено',
'JS_NO_ITEM_SELECTED' => 'Не выбрано ни одного значения',
'JS_MORE_THAN_ONE_ITEM_SELECTED' => 'Выбрано более одного значения',
'JS_ITEMS_DELETED_SUCCESSFULLY' => 'Значения успешно удалены',
'JS_YOU_CANNOT_DELETE_ALL_THE_VALUES' => 'Вы не можете удалить все значения',
'JS_ALL_ROLES_SELECTED' => 'Все роли выбраны',
'JS_LIST_UPDATED_SUCCESSFULLY' => 'Список успешно обновлен',
'JS_SEQUENCE_UPDATED_SUCCESSFULLY' => 'Последовательность успешно обновлена',
'JS_VALUE_ASSIGNED_SUCCESSFULLY' => 'Значение успешно назначено',
'JS_PLEASE_SELECT_MODULE' => 'Пожалуйста, выберите модуль',
'JS_SPECIAL_CHARACTERS' => 'Специальные символы, такие как',
'JS_NOT_ALLOWED' => 'не разрешается',
);