- 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' => 'Projet',
|
|
'SINGLE_Project' => 'Projet',
|
|
'LBL_ADD_RECORD' => "Ajouter un projet",
|
|
'LBL_RECORDS_LIST' => "Liste des projets",
|
|
'LBL_PROJECT_INFORMATION' => "Détails du projet",
|
|
'Project Name' => "Nom du projet",
|
|
'Start Date' => "Date de début",
|
|
'Target End Date' => "Échéance Fin",
|
|
'Actual End Date' => "Date effective de fin",
|
|
'Project No' => "Numéro du projet",
|
|
'Target Budget' => "Budget cible",
|
|
'Project Url' => "Url de projet",
|
|
'Progress' => "Progress",
|
|
'Type' => 'Type',
|
|
'Related to' => 'Relatif à la',
|
|
'LBL_TASKS_OPEN' => "Tâches ouvertes",
|
|
'LBL_TASKS_DUE' => "Tâches en raison",
|
|
'LBL_TASKS_COMPLETED' => "Les tâches terminées",
|
|
'LBL_PEOPLE' => "Personnes",
|
|
'LBL_CHARTS' => "Graphiques",
|
|
'LBL_TASKS_LIST' => "Liste des tâches",
|
|
'LBL_MILESTONES' => "Jalons",
|
|
'LBL_TASKS' => "Tâches",
|
|
'LBL_STATUS_IS' => "Le statut est",
|
|
'LBL_STATUS' => "Statut",
|
|
'LBL_TICKET_PRIORITY' => "Priorité",
|
|
'LBL_MILESTONES_LIST' => "Liste des jalons",
|
|
'LBL_DOWNLOAD_FILE' => "Télécharger le fichier",
|
|
'LBL_TASKS_HIGH' => 'Haute priorité',
|
|
'LBL_TASKS_NORMAL' => 'Priorité Normale',
|
|
'LBL_TASKS_LOW' => 'Faible priorité',
|
|
'LBL_TASKS_OTHER' => 'Autres priorités',
|
|
'LBL_SELECT_PROGRESS' => 'Progrès - Tous',
|
|
'LBL_SELECT_STATUS' => 'Statut - Tous',
|
|
|
|
//picklist values
|
|
'prospecting' => 'Prospection',
|
|
'in progress' => 'En cours',
|
|
'initiated' => 'Initié',
|
|
'waiting for feedback' => 'En attente de Commentaires',
|
|
'on hold' => 'En attente',
|
|
'archived' => 'Archivé',
|
|
'completed' => 'Terminé',
|
|
'delivered' => 'Livré',
|
|
'administrative' => 'Administratif',
|
|
'operative' => 'Opératoire',
|
|
'other' => 'Autre',
|
|
'low' => 'Faible',
|
|
'normal' => 'Normal',
|
|
'high' => 'Haut',
|
|
|
|
//Gantt chart
|
|
'LBL_CHART' => 'Diagramme de Gantt',
|
|
'LBL_PROGRESS_CHART' => 'Diagramme de Gantt',
|
|
'LBL_TASK_NAME' => 'nom tâche',
|
|
'LBL_START_DATE' => 'date de début',
|
|
'LBL_END_DATE' => 'date de fin',
|
|
'LBL_DURATION' => 'durée',
|
|
'LBL_INFO' => 'Infos',
|
|
'LBL_GANTT_INFO1' => 'Faites glisser sur le côté droit de la tâche d\'étendre la durée',
|
|
'LBL_GANTT_INFO2' => 'Faites glisser à gauche ou au centre de la tâche de changer de début et de fin.',
|
|
'LBL_EDIT_PROJECT_TASK_STATUS_COLOR' => 'Modifier la tâche Projet Statut Couleur',
|
|
'LBL_SELECT_PROJECT_TASK_STATUS_COLOR' => 'Sélectionnez Groupe de Projet Etat Couleur',
|
|
'LBL_SELECT_STATUS' => 'Sélectionnez État',
|
|
'LBL_EDIT_COLOR' => 'Editer la couleur',
|
|
);
|
|
|
|
$jsLanguageStrings = array(
|
|
'JS_COLOR_SAVED_SUCESSFULLY' => 'Couleur enregistré avec succès',
|
|
); |