- 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.
54 lines
2.2 KiB
PHP
54 lines
2.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.
|
|
* All Rights Reserved. Contributor(s): Valmir C. Trindade - Brazilian Portuguese Translation - www.ttcasolucoes.com.br
|
|
************************************************************************************/
|
|
$languageStrings = array(
|
|
// Basic Strings
|
|
'Profiles' => 'Perfis',
|
|
'SINGLE_Profiles' => 'Perfil',
|
|
'LBL_ADD_RECORD' => 'Adicionar Perfil',
|
|
'LBL_CREATE_PROFILE' => 'Criar Perfil',
|
|
'LBL_PROFILE_NAME' => 'Nome Perfil',
|
|
'LBL_DESCRIPTION' => 'Descrição',
|
|
'LBL_EDIT_PRIVILEGES_OF_THIS_PROFILE' => 'Editar privilégios para este Perfil',
|
|
'LBL_MODULES' => 'Módulos',
|
|
'LBL_PROFILE_VIEW' => 'Visualizar Perfil',
|
|
'LBL_FIELDS' => 'Campos',
|
|
'LBL_TOOLS' => 'Ferramentas',
|
|
'LBL_FIELD_AND_TOOL_PRIVILEGES' => 'Privilégios Campos e Ferramentas',
|
|
'LBL_EDIT_RECORD' => 'Editar',
|
|
'LBL_DUPLICATE_RECORD' => 'Duplicar',
|
|
'LBL_DELETE_RECORD' => 'Apagar',
|
|
|
|
'LBL_VIEW_PRVILIGE' => 'Visualizar',
|
|
'LBL_EDIT_PRVILIGE' => 'Criar/Editar',
|
|
'LBL_DELETE_PRVILIGE' => 'Apagar',
|
|
'LBL_INIVISIBLE' => 'Invisível',
|
|
'LBL_READ_ONLY' => 'Somente leitura',
|
|
'LBL_WRITE' => 'Escrita',
|
|
|
|
'LBL_DELETE_PROFILE' => 'Apagar Perfil',
|
|
'LBL_TRANSFER_ROLES_TO_PROFILE' => 'Transferir Funçao para o Perfil',
|
|
'LBL_PROFILES' => 'Perfis',
|
|
'LBL_CHOOSE_PROFILES' => 'Escolher Perfis',
|
|
|
|
'LBL_VIEW_ALL' => 'Visualizar Todos',
|
|
'LBL_EDIT_ALL' => 'Editar Todos',
|
|
'LBL_VIEW_ALL_DESC' => 'Pode visualizar informação de todos os Módulos',
|
|
'LBL_EDIT_ALL_DESC' => 'Pode editar informações de todos os Módulos',
|
|
'LBL_DUPLICATES_EXIST' => 'Existe Perfil Duplicado',
|
|
|
|
/*Vtiger7 Strings*/
|
|
'LBL_EDIT_PROFILE' => 'Editar Perfil',
|
|
'LBL_GLOBAL_PERMISSION_WARNING' => 'Aviso : Usuários associados com este Perfil pode acessar todos os registros no CRM',
|
|
);
|
|
|
|
$jsLanguageStrings = array(
|
|
'JS_RECORD_DELETED_SUCCESSFULLY' => 'O Perfil foi apagado com sucesso',
|
|
);
|