- 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
3.6 KiB
PHP
73 lines
3.6 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_SELECT_PICKLIST_IN' => 'Selecciona Lista en',
|
|
'LBL_ADD_VALUE' => 'Añadir Valor',
|
|
'LBL_RENAME_VALUE' => 'Renombrar Valor',
|
|
'LBL_DELETE_VALUE' => 'Eliminar Valor',
|
|
'LBL_ITEMS' => 'Valores',
|
|
'LBL_DRAG_ITEMS_TO_RESPOSITION' => 'Arrastra los elementos para reordenar',
|
|
'LBL_SELECT_AN_ITEM_TO_RENAME_OR_DELETE' => 'Selecciona un elemento para renombrar o eliminar',
|
|
'LBL_TO_DELETE_MULTIPLE_HOLD_CONTROL_KEY' => 'Para eliminar varios elementos seleccionalos manteniendo pulsado la tecla',
|
|
'LBL_ADD_ITEM_TO' => 'Añadir elemento a',
|
|
'LBL_ITEM_VALUE' => 'Valor elemento',
|
|
'LBL_ITEM_TO_RENAME' => 'Elemento a renombrar',
|
|
'LBL_ENTER_NEW_NAME' => 'Introduce el nuevo Nombre',
|
|
'LBL_RENAME_PICKLIST_ITEM' => 'Renombrar Elemento de la Lista',
|
|
'LBL_DELETE_PICKLIST_ITEMS' => 'Eliminar Elementos de la Lista',
|
|
'LBL_ITEMS_TO_DELETE' => 'Elementos a Eliminar',
|
|
'LBL_REPLACE_IT_WITH' => 'Reemplazar con',
|
|
'LBL_ASSIGN_TO_ROLE' => 'Asignar a Rol',
|
|
'LBL_ALL_ROLES' => 'Todos los Roles',
|
|
'LBL_CHOOSE_ROLES' => 'Selecciona roles',
|
|
'LBL_ALL_VALUES' => 'Todos los valores',
|
|
'LBL_VALUES_ASSIGNED_TO_A_ROLE' => 'Valores asignados a un rol',
|
|
'LBL_ASSIGN_VALUE' => 'Asignar Valor',
|
|
'LBL_SAVE_ORDER' => 'Guardar Orden',
|
|
'LBL_ROLE_NAME' => 'Nombre Rol',
|
|
'LBL_SELECTED_VALUES_MESSGAE' => 'aparecerán para los usuarios con este rol',
|
|
'LBL_ENABLE/DISABLE_MESSGAE' => 'Selecciona el valor para Habilitar/Deshabilitarlo. Pulsa Guardar al finalizar',
|
|
'LBL_ASSIGN_VALUES_TO_ROLES' => 'Asignar Valores a Roles',
|
|
'LBL_SELECTED_VALUES' => 'Valores Seleccionados',
|
|
'NO_PICKLIST_FIELDS'=> 'no tiene campos de tipo lista desplegable',
|
|
'LBL_EDIT_PICKLIST_ITEM' => 'Editar lista de selección de artículos',
|
|
|
|
//Translation for module
|
|
'Calendar' => 'Tarea',
|
|
|
|
'LBL_NON_EDITABLE_PICKLIST_VALUES' => 'No Editable Valores',
|
|
|
|
);
|
|
$jsLanguageStrings = array(
|
|
//PickList
|
|
'JS_ITEM_RENAMED_SUCCESSFULLY' => 'Se ha renombrado el elemento',
|
|
'JS_ITEM_ADDED_SUCCESSFULLY' => 'Se ha añadido el elemento',
|
|
'JS_NO_ITEM_SELECTED' => 'No hay elementos seleccionados',
|
|
'JS_MORE_THAN_ONE_ITEM_SELECTED' => 'Se ha seleccionado más de un elemento',
|
|
'JS_ITEMS_DELETED_SUCCESSFULLY' => 'Se ha eliminado el elemento',
|
|
'JS_YOU_CANNOT_DELETE_ALL_THE_VALUES' => 'No se pueden eliminar todos los valores',
|
|
'JS_ALL_ROLES_SELECTED' => 'Se han seleccionado todos los roles',
|
|
'JS_LIST_UPDATED_SUCCESSFULLY' => 'Se ha actualizado la Lista',
|
|
'JS_SEQUENCE_UPDATED_SUCCESSFULLY' => 'Se ha actualizado la secuencia',
|
|
'JS_VALUE_ASSIGNED_SUCCESSFULLY' => 'Se han asignado los valores',
|
|
'JS_PLEASE_SELECT_MODULE' => 'Selecciona un módulo',
|
|
|
|
'JS_SPECIAL_CHARACTERS' => 'Los Caracteres especiales como',
|
|
'JS_NOT_ALLOWED' => 'no están permitidos',
|
|
|
|
);
|