- 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.
55 lines
2.1 KiB
PHP
55 lines
2.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(
|
|
// Basic Strings
|
|
'Profiles' => 'Profiler',
|
|
'SINGLE_Profiles' => 'Profil',
|
|
'LBL_ADD_RECORD' => 'Lägg till Profil',
|
|
'LBL_CREATE_PROFILE' => 'Skapa Profil',
|
|
'LBL_PROFILE_NAME' => 'Profilnamn',
|
|
'LBL_DESCRIPTION' => 'Beskrivning',
|
|
'LBL_EDIT_PRIVILIGES_FOR_THIS_PROFILE' => 'Redigera privilegier för denna profil',
|
|
'LBL_MODULES' => 'Moduler',
|
|
'LBL_PROFILE_VIEW' => 'Profilvy',
|
|
'LBL_FIELDS' => 'Fält',
|
|
'LBL_TOOLS' => 'Verktyg',
|
|
'LBL_FIELD_AND_TOOL_PRIVILEGES' => 'Fält och Verktygs privilegier',
|
|
'LBL_EDIT_RECORD' => 'Redigera',
|
|
'LBL_DUPLICATE_RECORD' => 'Duplicera',
|
|
'LBL_DELETE_RECORD' => 'Ta Bort',
|
|
|
|
'LBL_VIEW_PRVILIGE' => 'Vy',
|
|
'LBL_EDIT_PRVILIGE' => 'Skapa/Redigera',
|
|
'LBL_DELETE_PRVILIGE' => 'Ta Bort',
|
|
'LBL_INIVISIBLE' => 'Osynlig',
|
|
'LBL_READ_ONLY' => 'Läs Endast',
|
|
'LBL_WRITE' => 'Skriv',
|
|
|
|
'LBL_DELETE_PROFILE' => 'Ta Bort Profil',
|
|
'LBL_TRANSFER_ROLES_TO_PROFILE' => 'Skifta roller till profil',
|
|
'LBL_PROFILES' => 'Profiler',
|
|
'LBL_CHOOSE_PROFILES' => 'Välj Profiler',
|
|
|
|
'LBL_VIEW_ALL' => 'Granska Alla',
|
|
'LBL_EDIT_ALL' => 'Redigera Alla',
|
|
'LBL_VIEW_ALL_DESC' => 'Kan visa alla moduler uppgifter',
|
|
'LBL_EDIT_ALL_DESC' => 'Kan redigera alla moduler uppgifter',
|
|
'LBL_DUPLICATES_EXIST' => 'Dubbletter av Profil Existerar',
|
|
'LBL_GLOBAL_PERMISSION_WARNING' => 'Varning: Användare som är förknippade med den här profilen kan komma åt alla poster i CRM',
|
|
|
|
|
|
'LBL_EDIT_PRIVILEGES_OF_THIS_PROFILE' => 'Ändra privilegier för denna profil',
|
|
'LBL_EDIT_PROFILE' => 'Redigera Profil',
|
|
|
|
);
|
|
|
|
$jsLanguageStrings = array(
|
|
'JS_RECORD_DELETED_SUCCESSFULLY' => 'Profil raderad Framgångsrikt',
|
|
); |