- 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.
47 lines
2.4 KiB
PHP
47 lines
2.4 KiB
PHP
<?php
|
|
/*********************************************************************************
|
|
* The content of this file is subject to the Process Flow 4 You license.
|
|
* ("License"); You may not use this file except in compliance with the License
|
|
* The Initial Developer of the Original Code is IT-Solutions4You s.r.o.
|
|
* Portions created by IT-Solutions4You s.r.o. are Copyright(C) IT-Solutions4You s.r.o.
|
|
* All Rights Reserved.
|
|
* *******************************************************************************/
|
|
|
|
$languageStrings = Array (
|
|
"ITS4YouProcessFlow" => "Flujos de Procesos",
|
|
"LBL_PROCESSFLOW_NAME" => "Nombre",
|
|
"LBL_TARGET_MODULE" => "Módulo",
|
|
'LBL_PROCESSFLOW_CONDITION' => 'Condiciones',
|
|
"LBL_NO_DISPLAY_CONDITIONS_DEFINED" => "Las condiciones de visualización no han sido definidas",
|
|
'LBL_PROCESSFLOWS' => 'Flujo de Proceso',
|
|
'LBL_PROCESSFLOWS_SEARCH' => 'Buscar Flujo de Proceso',
|
|
'LBL_EXPRESSION' => 'Expresión',
|
|
'LBL_FIELD_NAME' => 'Campo',
|
|
'LBL_SET_VALUE' => 'Establecer Valor',
|
|
'LBL_USE_FIELD' => 'Usar Campo',
|
|
'LBL_USE_FUNCTION' => 'Usar Función',
|
|
'LBL_RAW_TEXT' => 'Texto crudo',
|
|
'LBL_RELATED_PF' => 'Flujos de Procesos Relacionados',
|
|
'LBL_ADD_RELATED_PF' => 'Agregar Flujo de Proceso Relacionado',
|
|
'LBL_NO_RELATED_PF_FOUND' => 'No se encontraron Flujos de Procesos Relacionados',
|
|
"COPYRIGHT" => ":: <a href=\"http://www.its4you.sk/en/\">IT-Solutions4You</a>",
|
|
"LBL_UPGRADE" => "Actualizar",
|
|
"LBL_UNINSTALL" => "Desinstalar",
|
|
"LBL_UNINSTALL_DESC" => "Eliminar el Módulo de Flujos de Procesos del CRM.",
|
|
'LBL_EXAMPLE_FIELD_NAME' => 'Campo',
|
|
'LBL_NOTIFY_OWNER' => 'notify_owner',
|
|
'LBL_ANNUAL_REVENUE' => 'annual_revenue',
|
|
'LBL_EXAMPLE_EXPRESSION' => 'Expresión',
|
|
'LBL_EXPRESSION_EXAMPLE2' => "si mailingcountry == 'Venezuela', entonces concat (firstname, '', lastname) else concat (lastname, '', firstname) end",
|
|
'LBL_ADD_RECORD' => 'Agregar Flujo de Proceso',
|
|
);
|
|
|
|
$jsLanguageStrings = array(
|
|
"JS_ACTION_STATUS_CHANGED" => "Se ha cambiado el estado correctamente",
|
|
"JS_ACTION_DELETED_SUCCESSFULLY" => "La relación se ha eliminado correctamente",
|
|
"JS_PROCESSFLOW_DELETED_SUCCESSFULLY" => "El Flujo de Proceso se ha eliminado correctamente",
|
|
"LBL_UNINSTALL_CONFIRM" => "¿Seguro que quiere eliminar el Módulo de Flujos de Procesos del CRM?",
|
|
);
|
|
|
|
|