- 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.
57 lines
3.3 KiB
PHP
57 lines
3.3 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' => 'Comenzi' ,
|
|
'SINGLE_PurchaseOrder' => 'Comenzi' ,
|
|
'LBL_EXPORT_TO_PDF' => 'Exporta in PDF' ,
|
|
'LBL_SEND_MAIL_PDF' => 'Send Email with PDF' , // TODO: Review
|
|
'LBL_ADD_RECORD' => 'Add Purchase Order' ,
|
|
'LBL_RECORDS_LIST' => 'Lista comenzi cumparare' ,
|
|
'LBL_COPY_SHIPPING_ADDRESS' => 'Adresa copie Transport' , // TODO: Review
|
|
'LBL_COPY_BILLING_ADDRESS' => 'Adresa copie de facturare' , // TODO: Review
|
|
'LBL_PO_INFORMATION' => 'Info comanda cumparare' ,
|
|
'PurchaseOrder No' => 'ID Comenzi' ,
|
|
'Requisition No' => 'Nr achizitie' ,
|
|
'Tracking Number' => 'Nr urmarire' ,
|
|
'Sales Commission' => 'Comision vanzari' ,
|
|
'LBL_PAID' => 'Paid' , // TODO: Review
|
|
'LBL_BALANCE' => 'Balance' , // TODO: Review
|
|
'Received Shipment' => 'Marfa primita' ,
|
|
'LBL_LIST_PRICE' => 'Lista de preturi',
|
|
'List Price' => 'Lista de preturi',
|
|
|
|
'LBL_COPY_COMPANY_ADDRESS' => 'Adresa copie de companie',
|
|
'LBL_COPY_ACCOUNT_ADDRESS' => 'Copie Organizația Adresa',
|
|
'LBL_SELECT_ADDRESS_OPTION' => 'Selectati Adresa de copiat',
|
|
'LBL_BILLING_ADDRESS' => 'Adresa de facturare',
|
|
'LBL_COMPANY_ADDRESS' => 'Adresa companie',
|
|
'LBL_ACCOUNT_ADDRESS' => 'Organizația Adresa',
|
|
'LBL_VENDOR_ADDRESS' => 'Adresa Vendor',
|
|
'LBL_CONTACT_ADDRESS' => 'Contact Adresa',
|
|
|
|
'LBL_THIS' => 'Acest lucru',
|
|
'LBL_IS_DELETED_FROM_THE_SYSTEM_PLEASE_REMOVE_OR_REPLACE_THIS_ITEM' => 'va fi eliminat din sistem.vă rugăm să eliminați sau înlocuiți elementul',
|
|
'LBL_THIS_LINE_ITEM_IS_DELETED_FROM_THE_SYSTEM_PLEASE_REMOVE_THIS_LINE_ITEM' => 'Această poziție este eliminat din sistem,vă rugăm să ștergeți acest șir de elemente',
|
|
|
|
);
|
|
|
|
$jsLanguageStrings = array(
|
|
'JS_ORGANIZATION_NOT_FOUND'=> 'Organizație gol',
|
|
'JS_ORGANIZATION_NOT_FOUND_MESSAGE'=> 'Vă rugăm să selectați o organizație înainte de a copia adresa',
|
|
'JS_ACCOUNT_NOT_FOUND' => 'Organizația gol!!',
|
|
'JS_ACCOUNT_NOT_FOUND_MESSAGE' => 'Vă rugăm să selectați o organizație înainte de a copia adresa',
|
|
'JS_VENDOR_NOT_FOUND' => 'Vendor gol',
|
|
'JS_VENDOR_NOT_FOUND_MESSAGE' => 'Vă rugăm să selectați un furnizor înainte de a copia adresa',
|
|
'JS_CONTACT_NOT_FOUND' => 'Contact gol',
|
|
'JS_CONTACT_NOT_FOUND_MESSAGE' => 'Vă rugăm să selectați o persoană de contact înainte de a copia adresa',
|
|
|
|
'JS_PLEASE_REMOVE_LINE_ITEM_THAT_IS_DELETED' => 'Vă rugăm să eliminați de comandă element, care va fi eliminat',
|
|
|
|
); |