- 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.
66 lines
4.1 KiB
PHP
66 lines
4.1 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(
|
|
'SINGLE_Settings:Webforms' => 'Formulario web' ,
|
|
'WebForm Name' => 'Nombre del formulario web' ,
|
|
'Public Id' => 'Id pública' ,
|
|
'Enabled' => 'Estatus' ,
|
|
'Module' => 'Módulo' ,
|
|
'Return Url' => 'Url de retorno' ,
|
|
'Post Url' => 'Publicar Url' ,
|
|
'Captcha Enabled' => 'Captcha habilitado' ,
|
|
'SINGLE_Webforms' => 'Formulario web' ,
|
|
'LBL_SHOW_FORM' => 'Mostrar formulario' ,
|
|
'LBL_DUPLICATES_EXIST' => 'El nombre del formulario web ya existe' ,
|
|
'LBL_WEBFORM_INFORMATION' => 'Información del formulario web' ,
|
|
'LBL_FIELD_INFORMATION' => 'Información del campo' ,
|
|
'LBL_FIELD_NAME' => 'Nombre del campo' ,
|
|
'LBL_OVERRIDE_VALUE' => 'Anular el valor' ,
|
|
'LBL_MANDATORY' => 'Obligatorio' ,
|
|
'LBL_WEBFORM_REFERENCE_FIELD' => 'Campo de referencia del formulario web' ,
|
|
'LBL_SELECT_FIELDS_OF_TARGET_MODULE' => 'Seleccione los campos para el módulo de destino...',
|
|
'LBL_ALLOWS_YOU_TO_MANAGE_WEBFORMS' => 'Le permite administrar los formularios web',
|
|
'LBL_ADD_FIELDS' => 'Añadir campos' ,
|
|
'LBL_EMBED_THE_FOLLOWING_FORM_IN_YOUR_WEBSITE' => 'Coloque el siguiente formulario en su sitio web',
|
|
'LBL_SELECT_VALUE' => 'Seleccione el valor' ,
|
|
'LBL_LABEL' => 'etiqueta' ,
|
|
'LBL_SAVE_FIELDS_ORDER' => 'Guardar el orden de los campos',
|
|
'LBL_HIDDEN' => 'Oculto',
|
|
'LBL_ENABLE_TARGET_MODULES_FOR_WEBFORM' => 'Habilitar módulos de destino para formulario web',
|
|
'LBL_ASSIGN_USERS' => 'Asignación de usuario',
|
|
'LBL_ASSIGN_ROUND_ROBIN' => 'Asignar usuarios en round robin',
|
|
'LBL_ROUNDROBIN_USERS_LIST' => 'Lista de usuarios de round robin',
|
|
|
|
'LBL_ADD_RECORD' => 'Agregar formulario web',
|
|
|
|
'LBL_UPLOAD_DOCUMENTS' => 'Subir documentos',
|
|
'LBL_ADD_FILE_FIELD' => 'Campo de carga de archivos',
|
|
'LBL_FIELD_LABEL' => 'Titulo del documento',
|
|
'LBL_FILE_FIELD_INFO' => 'Para cada archivo subido desde un formulario web, se crea un nuevo documento con el archivo adjunto. El documento también se vincula con este %s de nueva creación.',
|
|
'LBL_NO_FILE_FIELD' => 'No se añadieron campos de archivo.',
|
|
'LBL_COPY_TO_CLIPBOARD' => 'Copiar al portapapeles',
|
|
);
|
|
$jsLanguageStrings = array(
|
|
'JS_WEBFORM_DELETED_SUCCESSFULLY' => 'Formulario web borrado exitosamente',
|
|
'JS_LOADING_TARGET_MODULE_FIELDS' => 'Cargando campos del módulo de destino',
|
|
'JS_SELECT_VALUE' => 'Seleccionar valor' ,
|
|
'JS_MANDATORY_FIELDS_WITHOUT_OVERRIDE_VALUE_CANT_BE_HIDDEN' => 'Los campos obligatorios sin valores de reemplazo no pueden estar ocultos',
|
|
'JS_REFERENCE_FIELDS_CANT_BE_MANDATORY_WITHOUT_OVERRIDE_VALUE' => 'Los campos de referencia no pueden ser obligatorios sin valor de reemplazo',
|
|
'JS_TYPE_TO_SEARCH' => 'Escriba para buscar',
|
|
"JS_WEBFORM_WITH_THIS_NAME_ALREADY_EXISTS" => 'El formulario web con este nombre ya existe',
|
|
|
|
'JS_SELECT_AN_OPTION' => 'Seleccione una opción',
|
|
'JS_LABEL' => 'etiqueta',
|
|
|
|
'JS_MAX_FILE_FIELDS_LIMIT' => 'El máximo que se puede añadir de campos de archivo%s.',
|
|
'JS_COPIED_SUCCESSFULLY' => 'Copiado con éxito.',
|
|
'JS_COPY_FAILED' => 'La copia falló. Por favor, haga la copia manualmente.',
|
|
);
|