- 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.1 KiB
PHP
80 lines
3.1 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' => "Projekt",
|
||
'SINGLE_Project' => "Projekt",
|
||
'LBL_ADD_RECORD' => "Projekt hinzufügen",
|
||
'LBL_RECORDS_LIST' => "Projekte Liste",
|
||
'LBL_PROJECT_INFORMATION' => "Projekt-Details",
|
||
'Project Name' => "Project Name",
|
||
'Start Date' => "Startdatum",
|
||
'Target End Date' => "Ziel End Date",
|
||
'Actual End Date' => "Tatsächliche Enddatum",
|
||
'Project No' => "Projektnummer",
|
||
'Target Budget' => "Ziel Budget",
|
||
'Project Url' => "Projekt-URL",
|
||
'Progress' => "Fortschritt",
|
||
'LBL_TASKS_OPEN' => "Aufgaben öffnen",
|
||
'LBL_TASKS_DUE' => "Fällige Aufgaben",
|
||
'LBL_TASKS_COMPLETED' => "Abgeschlossene",
|
||
'LBL_PEOPLE' => "Menschen",
|
||
'LBL_CHARTS' => "Charts",
|
||
'LBL_TASKS_LIST' => "Aufgabenliste",
|
||
'LBL_MILESTONES' => "Meilensteine",
|
||
'LBL_TASKS' => "Aufgaben",
|
||
'LBL_STATUS_IS' => "Der Status ist",
|
||
'LBL_STATUS' => "Status",
|
||
'LBL_TICKET_PRIORITY' => "Priority",
|
||
'LBL_MILESTONES_LIST' => "Meilensteine Liste",
|
||
'LBL_DOWNLOAD_FILE' => "Datei herunterladen",
|
||
'LBL_TASKS_HIGH' => 'Hohe Priorität',
|
||
'LBL_TASKS_NORMAL' => 'Normale Priorität',
|
||
'LBL_TASKS_LOW' => 'Niedrige Priorität',
|
||
'LBL_TASKS_OTHER' => 'Andere Prioritäten',
|
||
'LBL_SELECT_PROGRESS' => 'Progress - Alle',
|
||
'LBL_SELECT_STATUS' => 'Status - Alle',
|
||
'Type' => 'Typ',
|
||
'Related to' => 'Bezogen auf',
|
||
|
||
//picklist values
|
||
'prospecting' => 'Prospektion',
|
||
'in progress' => 'In Progress',
|
||
'initiated' => 'Initiiert',
|
||
'waiting for feedback' => 'Warten auf Rückmeldung',
|
||
'on hold' => 'On Hold',
|
||
'archived' => 'Archivierte',
|
||
'completed' => 'Fertiggestellt',
|
||
'delivered' => 'Lieferung',
|
||
'administrative' => 'Administrativ',
|
||
'operative' => 'Operativ',
|
||
'other' => 'Andere',
|
||
'low' => 'Niedrig',
|
||
'normal' => 'Normal',
|
||
'high' => 'Hoch',
|
||
|
||
//Gantt chart
|
||
'LBL_CHART' => 'Gantt-Diagramm',
|
||
'LBL_PROGRESS_CHART' => 'Gantt-Diagramm',
|
||
'LBL_TASK_NAME' => 'Task-Namen',
|
||
'LBL_START_DATE' => 'Startdatum',
|
||
'LBL_END_DATE' => 'Enddatum',
|
||
'LBL_DURATION' => 'Dauer',
|
||
'LBL_INFO' => 'Info',
|
||
'LBL_GANTT_INFO1' => 'Schieben Sie auf der rechten Seite der Aufgabe auf Dauer zu erweitern',
|
||
'LBL_GANTT_INFO2' => 'Ziehen Sie auf der linken Seite oder in der Mitte der Aufgabe, die Start-und Enddatum zu ändern.',
|
||
'LBL_EDIT_PROJECT_TASK_STATUS_COLOR' => 'Projekt bearbeiten Aufgabenstatus Farbe',
|
||
'LBL_SELECT_PROJECT_TASK_STATUS_COLOR' => 'Wählen Sie Projekt Aufgabenstatus Farbe',
|
||
'LBL_SELECT_STATUS' => 'Wählen Sie Status',
|
||
'LBL_EDIT_COLOR' => 'Farbe bearbeiten',
|
||
);
|
||
|
||
$jsLanguageStrings = array(
|
||
'JS_COLOR_SAVED_SUCESSFULLY' => 'Farbe erfolgreich gespeichert',
|
||
); |