- 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.
58 lines
3.4 KiB
PHP
58 lines
3.4 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(
|
|
'PurchaseOrder' => 'Órdenes de compra' ,
|
|
'SINGLE_PurchaseOrder' => 'Orden de compra' ,
|
|
'LBL_EXPORT_TO_PDF' => 'Exportar a PDF' ,
|
|
'LBL_SEND_MAIL_PDF' => 'Enviar email con PDF' ,
|
|
'LBL_ADD_RECORD' => 'Agregar Orden de compra' ,
|
|
'LBL_RECORDS_LIST' => 'Lista de Órdenes de compra' ,
|
|
'LBL_COPY_SHIPPING_ADDRESS' => 'Copiar dirección de envío' ,
|
|
'LBL_COPY_BILLING_ADDRESS' => 'Copiar dirección de facturación' ,
|
|
'LBL_PO_INFORMATION' => 'Información de la Orden de compra',
|
|
'PurchaseOrder No' => 'No. de Orden de compra' ,
|
|
'Requisition No' => 'Referencia del pedido' ,
|
|
'Tracking Number' => 'Nº de seguimiento' ,
|
|
'Sales Commission' => 'Comisión de ventas' ,
|
|
'LBL_PAID' => 'Pagada' ,
|
|
'LBL_BALANCE' => 'Saldo' ,
|
|
'Received Shipment' => 'Recibido' ,
|
|
'LBL_LIST_PRICE' => 'Precio de lista',
|
|
'List Price' => 'Precio de lista',
|
|
'LBL_COPY_COMPANY_ADDRESS'=> 'Copiar dirección de la empresa',
|
|
'LBL_COPY_ACCOUNT_ADDRESS' => 'Copiar dirección de la cuenta',
|
|
'LBL_SELECT_ADDRESS_OPTION' => 'Seleccione la dirección para copiar',
|
|
'LBL_BILLING_ADDRESS' => 'Dirección de envío',
|
|
'LBL_COMPANY_ADDRESS' => 'Dirección de la empresa',
|
|
'LBL_ACCOUNT_ADDRESS' => 'Dirección de la Cuenta',
|
|
'LBL_VENDOR_ADDRESS' => 'Dirección del vendedor',
|
|
'LBL_CONTACT_ADDRESS' => 'Dirección del Contacto',
|
|
|
|
'LBL_COPY_ACCOUNT_ADDRESS' => 'Copiar dirección de la Cuenta',
|
|
|
|
'LBL_THIS' => 'Este',
|
|
'LBL_IS_DELETED_FROM_THE_SYSTEM_PLEASE_REMOVE_OR_REPLACE_THIS_ITEM' => 'Se ha eliminado del sistema. Por favor elimine o reemplace este artículo',
|
|
'LBL_THIS_LINE_ITEM_IS_DELETED_FROM_THE_SYSTEM_PLEASE_REMOVE_THIS_LINE_ITEM' => 'Este artículo se ha eliminado del sistema. Por favor elimine este artículo',
|
|
|
|
);
|
|
|
|
$jsLanguageStrings = array(
|
|
'JS_ORGANIZATION_NOT_FOUND'=> 'Cuenta no encontrada',
|
|
'JS_ORGANIZATION_NOT_FOUND_MESSAGE'=> 'Por favor seleccione una organización antes de copiar la dirección',
|
|
'JS_ACCOUNT_NOT_FOUND' => 'Organización no encontrada',
|
|
'JS_ACCOUNT_NOT_FOUND_MESSAGE' => 'Por favor seleccione una organización antes de copiar la dirección',
|
|
'JS_VENDOR_NOT_FOUND' => 'Vendedor no encontrado',
|
|
'JS_VENDOR_NOT_FOUND_MESSAGE' => 'Por favor seleccione un proveedor antes de copiar la dirección',
|
|
'JS_CONTACT_NOT_FOUND' => 'Contacto no encontrado',
|
|
'JS_CONTACT_NOT_FOUND_MESSAGE' => 'Por favor seleccione un contacto antes de copiar la dirección',
|
|
|
|
'JS_PLEASE_REMOVE_LINE_ITEM_THAT_IS_DELETED' => 'Por favor elimine el artículo que se ha borrado',
|
|
|
|
); |