- 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
3.5 KiB
PHP
66 lines
3.5 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.
|
|
* Portions created by JPL TSolucio, S.L. are Copyright (C) jpl tsolucio.
|
|
* All Rights Reserved.
|
|
* ********************************************************************************
|
|
* Language : Español es_es
|
|
* Version : 6.0.0
|
|
* Created Date : 2012-10-26
|
|
* Author : JPL TSolucio, S. L. Joe Bordes
|
|
* Last change : 2013-05-03
|
|
* Author : JPL TSolucio, S. L. Joe Bordes
|
|
************************************************************************************/
|
|
$languageStrings = array(
|
|
'PurchaseOrder' => 'Ordenes de compra',
|
|
'SINGLE_PurchaseOrder' => 'Ordenes de compra',
|
|
'LBL_EXPORT_TO_PDF' => 'Exportar a PDF',
|
|
'LBL_ADD_RECORD' => 'Añadir Orden Compra',
|
|
'LBL_RECORDS_LIST' => 'Lista de Orden Compra',
|
|
'LBL_PO_INFORMATION' => 'Detalles de Orden Compra',
|
|
'PurchaseOrder No' => 'Número Orden Compra',
|
|
'Requisition No' => 'Referencia del pedido',
|
|
'Tracking Number' => 'Nº de seguimiento',
|
|
'Sales Commission' => 'Comisión sobre Ventas',
|
|
'Received Shipment' => 'Recibido',
|
|
'LBL_SEND_MAIL_PDF' => 'Enviar Email con PDF',
|
|
'LBL_COPY_SHIPPING_ADDRESS' => 'Copiar Dirección Envío',
|
|
'LBL_COPY_BILLING_ADDRESS' => 'Copiar Dirección Facturación',
|
|
'LBL_PAID' => 'Pagado',
|
|
'LBL_BALANCE' => 'Balance',
|
|
'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 organización',
|
|
'LBL_SELECT_ADDRESS_OPTION' => 'Seleccione Dirección para copiar',
|
|
'LBL_BILLING_ADDRESS' => 'Dirección de Envio',
|
|
'LBL_COMPANY_ADDRESS' => 'Dirección de la empresa',
|
|
'LBL_ACCOUNT_ADDRESS' => 'Organización Dirección',
|
|
'LBL_VENDOR_ADDRESS' => 'Vendor Dirección',
|
|
'LBL_CONTACT_ADDRESS' => 'Contacto Dirección',
|
|
|
|
'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 elimina del sistema.por favor, quitar o reemplazar este elemento',
|
|
'LBL_THIS_LINE_ITEM_IS_DELETED_FROM_THE_SYSTEM_PLEASE_REMOVE_THIS_LINE_ITEM' => 'Esta línea de ítem es eliminado del sistema,por favor, elimine esta línea de artículos',
|
|
|
|
);
|
|
|
|
$jsLanguageStrings = array(
|
|
'JS_ORGANIZATION_NOT_FOUND'=> 'Cuenta vacío',
|
|
'JS_ORGANIZATION_NOT_FOUND_MESSAGE'=> 'Por favor, seleccione una Cuenta antes de copiar la dirección',
|
|
'JS_ACCOUNT_NOT_FOUND' => 'Organización vacía!',
|
|
'JS_ACCOUNT_NOT_FOUND_MESSAGE' => 'Por favor, seleccione una organización antes de copiar la dirección',
|
|
'JS_VENDOR_NOT_FOUND' => 'Vendor vacíox',
|
|
'JS_VENDOR_NOT_FOUND_MESSAGE' => 'Por favor, seleccione un proveedor antes de copiar la dirección',
|
|
'JS_CONTACT_NOT_FOUND' => 'Contacto vacía',
|
|
'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, quitar el elemento de línea que se elimina',
|
|
|
|
); |