- 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.
80 lines
3.2 KiB
PHP
80 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(
|
|
'Project' => "Proiect",
|
|
'SINGLE_Project' => "Proiect",
|
|
'LBL_ADD_RECORD' => "Adauga proiectului",
|
|
'LBL_RECORDS_LIST' => "Lista proiectelor",
|
|
'LBL_PROJECT_INFORMATION' => "Detalii proiect",
|
|
'Project Name' => "Denumirea proiectului",
|
|
'Start Date' => "Data de începere",
|
|
'Target End Date' => "Target Data de încheiere",
|
|
'Actual End Date' => "Reală Data de încheiere",
|
|
'Project No' => "Numărul proiectului",
|
|
'Target Budget' => "Bugetul țintă",
|
|
'Project Url' => "Url-ul proiectului",
|
|
'Progress' => "Progres",
|
|
'Type' => 'Tip' ,
|
|
'Related to' => 'Legate de' ,
|
|
'LBL_TASKS_OPEN' => "Sarcini Deschideți",
|
|
'LBL_TASKS_DUE' => "Sarcini Datorită",
|
|
'LBL_TASKS_COMPLETED' => "Sarcinile finalizate",
|
|
'LBL_PEOPLE' => "Oameni",
|
|
'LBL_CHARTS' => "Grafice",
|
|
'LBL_TASKS_LIST' => "Lista de sarcini",
|
|
'LBL_MILESTONES' => "Repere",
|
|
'LBL_TASKS' => "Sarcini",
|
|
'LBL_STATUS_IS' => "Starea este",
|
|
'LBL_STATUS' => "Starea",
|
|
'LBL_TICKET_PRIORITY' => "Prioritate",
|
|
'LBL_MILESTONES_LIST' => "Lista Repere",
|
|
'LBL_DOWNLOAD_FILE' => "Descărcare fișier",
|
|
'LBL_TASKS_HIGH' => 'Prioritate',
|
|
'LBL_TASKS_NORMAL' => 'Prioritate normală',
|
|
'LBL_TASKS_LOW' => 'Prioritate scăzută',
|
|
'LBL_TASKS_OTHER' => 'Alte priorități',
|
|
'LBL_SELECT_PROGRESS' => 'Progress - Toate',
|
|
'LBL_SELECT_STATUS' => 'Stare - Toate',
|
|
|
|
//picklist values
|
|
'prospecting' => 'Prospectarea',
|
|
'in progress' => 'În progres',
|
|
'initiated' => 'Inițiat',
|
|
'waiting for feedback' => 'Așteptare pentru feedback',
|
|
'on hold' => 'În așteptare',
|
|
'archived' => 'Arhivate',
|
|
'completed' => 'Terminat',
|
|
'delivered' => 'Livrate',
|
|
'administrative' => 'Administrativ',
|
|
'operative' => 'Operativ',
|
|
'other' => 'Alte',
|
|
'low' => 'Scăzut',
|
|
'normal' => 'Normal',
|
|
'high' => 'Mare',
|
|
|
|
//Gantt chart
|
|
'LBL_CHART' => 'Gantt Chart',
|
|
'LBL_PROGRESS_CHART' => 'progres Gantt Chart...',
|
|
'LBL_TASK_NAME' => 'Numele sarcină',
|
|
'LBL_START_DATE' => 'data de început',
|
|
'LBL_END_DATE' => 'Data de sfârșit',
|
|
'LBL_DURATION' => 'Durata',
|
|
'LBL_INFO' => 'Info',
|
|
'LBL_GANTT_INFO1' => 'Slide pe partea dreaptă de sarcina de a extinde durata',
|
|
'LBL_GANTT_INFO2' => 'Trageți la stânga sau centru de sarcina de a schimba de început și data de sfârșit.',
|
|
'LBL_EDIT_PROJECT_TASK_STATUS_COLOR' => 'Editare Proiect de sarcini Culoare Stare',
|
|
'LBL_SELECT_PROJECT_TASK_STATUS_COLOR' => 'Selectați proiect Sarcina de culoare Starea',
|
|
'LBL_SELECT_STATUS' => 'Selectați Stare',
|
|
'LBL_EDIT_COLOR' => 'Editați Culoare',
|
|
);
|
|
|
|
$jsLanguageStrings = array(
|
|
'JS_COLOR_SAVED_SUCESSFULLY' => 'Culoare salvate cu succes',
|
|
); |