- 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.
56 lines
3.2 KiB
PHP
56 lines
3.2 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' => 'Inkooporders' ,
|
|
'SINGLE_PurchaseOrder' => 'Inkooporder' ,
|
|
'LBL_EXPORT_TO_PDF' => 'Exporteer naar PDF' ,
|
|
'LBL_SEND_MAIL_PDF' => 'Send Email with PDF' , // TODO: Review
|
|
'LBL_ADD_RECORD' => 'Voeg Inkooporder toe' ,
|
|
'LBL_RECORDS_LIST' => 'Inkooporder lijst' ,
|
|
'LBL_COPY_SHIPPING_ADDRESS' => 'Copy verzendadres' , // TODO: Review
|
|
'LBL_COPY_BILLING_ADDRESS' => 'Kopieer factuuradres' , // TODO: Review
|
|
'LBL_PO_INFORMATION' => 'Inkooporder Informatie' ,
|
|
'PurchaseOrder No' => 'Inkoopordernummer' ,
|
|
'Requisition No' => 'Vorderingsnummer' ,
|
|
'Tracking Number' => 'Volgnummer' ,
|
|
'Sales Commission' => 'Verkoopcommissie' ,
|
|
'LBL_PAID' => 'Paid' , // TODO: Review
|
|
'LBL_BALANCE' => 'Balance' , // TODO: Review
|
|
'Received Shipment' => 'Goederen ontvangen' ,
|
|
'LBL_LIST_PRICE' => 'Adviesprijs',
|
|
'List Price' => 'Adviesprijs',
|
|
'LBL_COPY_COMPANY_ADDRESS' => 'Copy Company Adres',
|
|
'LBL_COPY_ACCOUNT_ADDRESS' => 'Copy Organisatie Adres',
|
|
'LBL_SELECT_ADDRESS_OPTION' => 'Kies Adres om te kopiëren',
|
|
'LBL_BILLING_ADDRESS' => 'Factuuradres',
|
|
'LBL_COMPANY_ADDRESS' => 'Azienda Indirizzo',
|
|
'LBL_ACCOUNT_ADDRESS' => 'Organisatie Adres',
|
|
'LBL_VENDOR_ADDRESS' => 'Vendor Adres',
|
|
'LBL_CONTACT_ADDRESS' => 'Contact Adres',
|
|
|
|
'LBL_THIS' => 'Dit',
|
|
'LBL_IS_DELETED_FROM_THE_SYSTEM_PLEASE_REMOVE_OR_REPLACE_THIS_ITEM' => 'wordt het verwijderd uit het systeem.verwijder of vervang deze post',
|
|
'LBL_THIS_LINE_ITEM_IS_DELETED_FROM_THE_SYSTEM_PLEASE_REMOVE_THIS_LINE_ITEM' => 'Dit onderdeel van het systeem is verwijderd,verwijder deze regelitems',
|
|
|
|
);
|
|
|
|
$jsLanguageStrings = array(
|
|
'JS_ORGANIZATION_NOT_FOUND'=> 'Organisatie leeg',
|
|
'JS_ORGANIZATION_NOT_FOUND_MESSAGE'=> "Si prega di selezionare una organizzazione prima di copiare l'indirizzo",
|
|
'JS_ACCOUNT_NOT_FOUND' => 'Organisatie leeg!',
|
|
'JS_ACCOUNT_NOT_FOUND_MESSAGE' => 'Selecteer een organisatie voordat je adres te kopiëren',
|
|
'JS_VENDOR_NOT_FOUND' => 'Vendor Leeg',
|
|
'JS_VENDOR_NOT_FOUND_MESSAGE' => 'Selecteer een leverancier voordat u het adres kopiëren',
|
|
'JS_CONTACT_NOT_FOUND' => 'Contact Leeg',
|
|
'JS_CONTACT_NOT_FOUND_MESSAGE' => 'Selecteer aub een contact voordat u het adres kopiëren',
|
|
|
|
'JS_PLEASE_REMOVE_LINE_ITEM_THAT_IS_DELETED' => 'Verwijder line-item is verwijderd',
|
|
|
|
); |