- 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.
48 lines
2.7 KiB
PHP
48 lines
2.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.
|
|
* ********************************************************************************
|
|
* Language : Español es_es
|
|
* Version : 6.0.0
|
|
* Created Date : 2013-05-10
|
|
* Author : JPL TSolucio, S. L. Joe Bordes
|
|
* Last change : 2013-05-10
|
|
* Author : JPL TSolucio, S. L. Joe Bordes
|
|
*************************************************************************************/
|
|
$languageStrings = array(
|
|
'LBL_ADD_RECORD' => 'Nueva Dependencia entre Listas',
|
|
'LBL_PICKLIST_DEPENDENCY' => 'Dependencias entre Listas',
|
|
'LBL_SELECT_MODULE' => 'Módulo',
|
|
'LBL_SOURCE_FIELD' => 'Campo Origen',
|
|
'LBL_TARGET_FIELD' => 'Target Field',
|
|
'LBL_SELECT_FIELD' => 'Campo Destino',
|
|
'LBL_CONFIGURE_DEPENDENCY_INFO' => 'Selecciona la celda para cambiar la asignación de valores del campo destino',
|
|
'LBL_CONFIGURE_DEPENDENCY_HELP_1' => 'Solo se muestran valores asignados (salvo la primera vez)',
|
|
'LBL_CONFIGURE_DEPENDENCY_HELP_2' => "Si quieres ver o cambiar la asignación de los otros valores de la lista origen, <br/>
|
|
puedes seleccionar los valores pulsando el botón <b>'Selecciona Valores Origen'</b> en el lateral derecho",
|
|
'LBL_CONFIGURE_DEPENDENCY_HELP_3' => 'Valores seleccionados del campo destino, se muestran como',
|
|
'LBL_SELECT_SOURCE_VALUES' => 'Selecciona Valores Origen',
|
|
'LBL_SELECT_SOURCE_PICKLIST_VALUES' => 'Selecciona Valores Origen de la Lista',
|
|
'LBL_ERR_CYCLIC_DEPENDENCY' => 'Esta dependencia no esta permitida ya que produce una dependencia cíclica',
|
|
'LBL_SELECT_ALL_VALUES' => 'Seleccionar todo',
|
|
'LBL_UNSELECT_ALL_VALUES' => 'Elija ninguno',
|
|
'LBL_CYCLIC_DEPENDENCY_ERROR' => 'Esto podría terminar en redundancia cíclica como campo %s ya está configurado para el campo %s',
|
|
|
|
'PickListDependency' => 'Lista De Selección De Dependencia',
|
|
|
|
);
|
|
|
|
$jsLanguageStrings = array(
|
|
'JS_LBL_ARE_YOU_SURE_YOU_WANT_TO_DELETE' => '¿Seguro que quieres eliminar esta dependencia?',
|
|
'JS_DEPENDENCY_DELETED_SUEESSFULLY' => 'Se ha eliminado la dependencia',
|
|
'JS_PICKLIST_DEPENDENCY_SAVED' => 'Se ha guardado la dependencia',
|
|
'JS_DEPENDENCY_ATLEAST_ONE_VALUE' => 'Debes seleccionar al menos un valor para',
|
|
'JS_SOURCE_AND_TARGET_FIELDS_SHOULD_NOT_BE_SAME' => 'No pueden coincidir los campos origen y destino',
|
|
'JS_SELECT_SOME_VALUE' => 'Selecciona algún valor'
|
|
);
|