- 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.
71 lines
3.8 KiB
PHP
71 lines
3.8 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.
|
|
* Translated by ABOnline solutions - http://www.abo-s.com/
|
|
* Boris CLEMENT
|
|
* December 2013
|
|
* *********************************************************************************** */
|
|
|
|
$languageStrings = array(
|
|
'LBL_INSTALLATION_WIZARD' => 'Assistant d\'installation',
|
|
'LBL_WELCOME' => 'Bienvenue',
|
|
'LBL_WELCOME_TO_VTIGER6_SETUP_WIZARD' => 'Bienvenue dans l\'assistant d\'installation de Vtiger CRM 6',
|
|
'LBL_VTIGER6_SETUP_WIZARD_DESCRIPTION' => 'Cette assistant vous guidera durant l\'installation de Vtiger CRM 6',
|
|
'LBL_INSTALL_BUTTON' => 'Installer',
|
|
'LBL_DISAGREE' => 'Je ne suis pas d\'accord',
|
|
'LBL_I_AGREE' => 'Je suis d\'accord',
|
|
'LBL_INSTALL_PREREQUISITES' => 'Pré-requis à l\'installation',
|
|
'LBL_RECHECK' => 'Vérifier à nouveau',
|
|
'LBL_PHP_CONFIGURATION' => 'Configuration PHP',
|
|
'LBL_REQUIRED_VALUE' => 'Valeur requise',
|
|
'LBL_PRESENT_VALUE' => 'Valeur actuelle',
|
|
'LBL_TRUE' => 'Vrai',
|
|
'LBL_PHP_RECOMMENDED_SETTINGS'=>'Réglages PHP recommandés',
|
|
'LBL_READ_WRITE_ACCESS' => 'Accès en Lecture/Ecriture',
|
|
'LBL_SYSTEM_CONFIGURATION' => 'Configuration Système',
|
|
'LBL_DATABASE_INFORMATION' => 'Information de base de données',
|
|
'LBL_DATABASE_TYPE' => 'Type de base de données',
|
|
'LBL_HOST_NAME' => 'Nom d\'hôte',
|
|
'LBL_USERNAME' => 'Nom d\'utilisateur',
|
|
'LBL_PASSWORD' => 'Mot de passe',
|
|
'LBL_DB_NAME' => 'Nom de la base de données',
|
|
'LBL_CREATE_NEW_DB'=>'Créer une nouvelle base de données',
|
|
'LBL_ROOT_USERNAME' => 'Nom d\'utilisareur root',
|
|
'LBL_ROOT_PASSWORD' => 'Mot de passe root',
|
|
'LBL_SYSTEM_INFORMATION' => 'Information du système',
|
|
'LBL_CURRENCIES'=>'Monnaie',
|
|
'LBL_ADMIN_INFORMATION'=>'Information de l\'utilisateur admin',
|
|
'LBL_RETYPE_PASSWORD' => 'Saisir à nouveau le mot de passe',
|
|
'LBL_DATE_FORMAT'=>'Format de la date ',
|
|
'LBL_TIME_ZONE' => 'Fuseau horaire',
|
|
'LBL_PLEASE_WAIT'=>'Veuillez patienter',
|
|
'LBL_INSTALLATION_IN_PROGRESS'=>'Installation en cours',
|
|
'LBL_EMAIL' => 'Email',
|
|
'LBL_ADMIN_USER_INFORMATION' => 'Information de l\'utilisateur admin',
|
|
'LBL_CURRENCY' => 'Monnaie',
|
|
'LBL_URL' => 'URL',
|
|
'LBL_CONFIRM_CONFIGURATION_SETTINGS' => 'Confirmer les réglages de configuration',
|
|
'LBL_NEXT' => 'Suivant',
|
|
'LBL_PHP_VERSION' => 'Version de PHP',
|
|
'LBL_IMAP_SUPPORT' => 'Support Imap',
|
|
'LBL_ZLIB_SUPPORT' => 'Support Zlib',
|
|
'LBL_GD_LIBRARY' => 'Support GD Library ',
|
|
'ERR_DATABASE_CONNECTION_FAILED' => 'Unable to connect to database Server',
|
|
'ERR_INVALID_MYSQL_PARAMETERS' => 'Invalid mySQL Connection Parameters specified',
|
|
'MSG_LIST_REASONS' => 'This may be due to the following reasons',
|
|
'MSG_DB_PARAMETERS_INVALID' => 'specified database user, password, hostname, database type, or port is invalid',
|
|
'MSG_DB_USER_NOT_AUTHORIZED' => 'specified database user does not have access to connect to the database server from the host',
|
|
'LBL_MORE_INFORMATION' => 'Plus Informations',
|
|
'ERR_INVALID_MYSQL_VERSION' => 'MySQL version is not supported, kindly connect to MySQL 5.1.x or above',
|
|
'ERR_UNABLE_CREATE_DATABASE' => 'Unable to Create database',
|
|
'MSG_DB_ROOT_USER_NOT_AUTHORIZED' => 'Message: Specified database Root User doesn\'t have permission to Create database or the Database name has special characters. Try changing the Database settings',
|
|
'ERR_DB_NOT_FOUND' => 'This Database is not found.Try changing the Database settings',
|
|
'LBL_PASSWORD_MISMATCH' => 'Please re-enter passwords. The \"Password\" and \"Re-type password\" values do not match.',
|
|
);
|