- 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.
70 lines
2.6 KiB
PHP
70 lines
2.6 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(
|
|
// Basic Strings
|
|
'Accounts' => 'Kontrahenci',
|
|
'SINGLE_Accounts' => 'Kontrahent',
|
|
'LBL_ADD_RECORD' => 'Dodaj Kontrahenta',
|
|
'LBL_RECORDS_LIST' => 'Lista Kontrahentów',
|
|
'LBL_RECORD_SUMMARY' => 'Podsumowanie Kontrahenta',
|
|
|
|
// Blocks
|
|
'LBL_ACCOUNT_INFORMATION' => 'Szczegóły Kontrahenta',
|
|
|
|
// Mass Action
|
|
'LBL_SHOW_ACCOUNT_HIERARCHY' => 'Hierarchia Kontrahenta',
|
|
|
|
//Field Labels
|
|
'industry' => 'Branża',
|
|
'Account Name' => 'Nazwa Kontrahenta',
|
|
'Account No' => 'Numer Kontrahenta',
|
|
'Website' => 'Strona WWW',
|
|
'Ticker Symbol' => 'Symbol giełdowy',
|
|
'Member Of' => 'Powiązany z',
|
|
'Employees' => 'Liczba pracowników',
|
|
'Ownership' => 'Właściciel',
|
|
'SIC Code' => 'Numer EKD',
|
|
'Other Email' => 'Drugi mail',
|
|
'Type' => 'Rodzaj',
|
|
|
|
//Added for existing picklist entries
|
|
|
|
'Analyst'=>'Analityk',
|
|
'Competitor'=>'Konkurencja',
|
|
'Customer'=>'Klient',
|
|
'Integrator'=>'Integrator',
|
|
'Investor'=>'Inwestor',
|
|
'Press'=>'Media',
|
|
'Prospect'=>'Potencjalny Klient',
|
|
'Reseller'=>'Partner',
|
|
'LBL_START_DATE' => 'Data rozpoczęcia',
|
|
'LBL_END_DATE' => 'Data zakończenia',
|
|
|
|
//Duplication error message
|
|
'LBL_DUPLICATES_EXIST' => 'Taka nazwa Kontrahenta już istnieje!',
|
|
'LBL_COPY_SHIPPING_ADDRESS' => "Kopiuj adres wysyłki" , // TODO: Review
|
|
'LBL_COPY_BILLING_ADDRESS' => "Adres kopia płatności" ,
|
|
'LBL_IMAGE_INFORMATION' => 'Zdjęcie Profilu',
|
|
'Organization Image' => 'Organizacja Obraz',
|
|
|
|
'Other Phone' => 'Średnia Telefon',
|
|
'Phone' => 'Podstawowy Telefon',
|
|
'Email' => 'Podstawowy Adres E-Mail',
|
|
|
|
);
|
|
|
|
$jsLanguageStrings = array(
|
|
'LBL_DELETE_CONFIRMATION' => 'Usunięcie Kontrahenta spowoduje usunięcie powiązanych z nim Szans Sprzedaży i Ofert, czy na pewno chcesz to zrobić?',
|
|
'LBL_MASS_DELETE_CONFIRMATION' => 'Usunięcie Kontrahentów spowoduje usunięcie powiązanych z nimi Szans Sprzedaży i Ofert, czy na pewno chcesz to zrobić?',
|
|
|
|
'LBL_RELATED_RECORD_DELETE_CONFIRMATION' => 'Jesteś pewien, że chcesz usunąć?',
|
|
'JS_DUPLICATE_CREATION_CONFIRMATION' => 'Organizacja o takiej nazwie już istnieje.Naprawdę chcesz utworzyć kopię nagrania?',
|
|
|
|
); |