- 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.
104 lines
3.0 KiB
PHP
104 lines
3.0 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.
|
|
* Contributor(s): Valmir C. Trindade - Brazilian Portuguese Translation - www.ttcasolucoes.com.br
|
|
*************************************************************************************/
|
|
|
|
/* NOTE: Should be inline with Calendar language translation but few variations */
|
|
|
|
$languageStrings = array(
|
|
// Basic Strings
|
|
'Events' => 'Eventos',
|
|
'SINGLE_Events' => 'Evento',
|
|
'LBL_ADD_RECORD' => 'Adicionar Evento',
|
|
'LBL_RECORDS_LIST' => 'Lista Eventos',
|
|
'LBL_EVENTS' => 'Eventos',
|
|
'LBL_TODOS' => 'Tarefa',
|
|
'LBL_HOLD_FOLLOWUP_ON' => 'Manter Follow up em',
|
|
'LBL_CREATE_FOLLOWUP_EVENT' => 'Criar Evento Follow Up',
|
|
|
|
// Blocks
|
|
'LBL_EVENT_INFORMATION' => 'Detalhes Evento',
|
|
'LBL_RECURRENCE_INFORMATION' => 'Detalhes Recorrência',
|
|
'LBL_RELATED_TO' => 'Relacionado a',
|
|
|
|
//Fields
|
|
'Start Date & Time'=>'Data e Hora Inicial',
|
|
'Recurrence' => 'Recorrência',
|
|
'Send Notification' => 'Enviar Notificação',
|
|
'Location'=>'Localização',
|
|
'Send Reminder' => 'Envia Email de Lembrete antes',
|
|
'End Date & Time' => 'Data e Hora Final',
|
|
'End Date' => 'Data e Hora Final',
|
|
'Activity Type'=>'Tipo Atividade',
|
|
'Visibility' => 'Visibilidade',
|
|
'Recurrence' => 'Repetir',
|
|
'Related To' => 'Relacionado a',
|
|
|
|
//Visibility picklist values
|
|
'Private' => 'Particular',
|
|
'Public' => 'Público',
|
|
|
|
//Activity Type picklist values
|
|
'Call' => 'Chamada',
|
|
'Meeting' => 'Reunião',
|
|
|
|
//Status picklist values
|
|
'Planned' => 'Planejado',
|
|
'Held' => 'Realizado',
|
|
'Not Held' => 'Não Realizado',
|
|
|
|
//Reminder Labels
|
|
'LBL_DAYS' => 'Dias',
|
|
'LBL_HOURS' => 'Horas',
|
|
|
|
//Repeat Labels
|
|
'LBL_DAYS_TYPE' => 'Dia(s)',
|
|
'LBL_WEEKS_TYPE' => 'Semana(s)',
|
|
'LBL_MONTHS_TYPE' => 'Mês(es)',
|
|
'LBL_YEAR_TYPE' => 'Ano',
|
|
|
|
'LBL_FIRST' => 'Primeiro',
|
|
'LBL_LAST' => 'Último',
|
|
|
|
'LBL_SM_FRI' => 'Sex',
|
|
'LBL_SM_MON' => 'Seg',
|
|
'LBL_SM_SAT' => 'Sab',
|
|
'LBL_SM_SUN' => 'Don',
|
|
'LBL_SM_THU' => 'Qui',
|
|
'LBL_SM_TUE' => 'Ter',
|
|
'LBL_SM_WED' => 'Qua',
|
|
|
|
'LBL_DAY0' => 'Domingo',
|
|
'LBL_DAY1' => 'Segunda',
|
|
'LBL_DAY2' => 'Terça',
|
|
'LBL_DAY3' => 'Quarta',
|
|
'LBL_DAY4' => 'Quinta',
|
|
'LBL_DAY5' => 'Sexta',
|
|
'LBL_DAY6' => 'Sábado',
|
|
|
|
'Daily'=>'Dia(s)',
|
|
'Weekly'=>'Semana(s)',
|
|
'Monthly'=>'Mês(es)',
|
|
'Yearly'=>'Ano',
|
|
|
|
'LBL_REPEATEVENT' => 'Uma vez',
|
|
'LBL_UNTIL' => 'Até',
|
|
'LBL_DAY_OF_THE_MONTH' => 'dia do mês',
|
|
'LBL_ON' => 'em',
|
|
|
|
'LBL_RECORDS_LIST' => 'Lista Visualização',
|
|
'LBL_CALENDAR_VIEW' => 'Visualizar Agenda',
|
|
|
|
'LBL_INVITE_USER_BLOCK' => 'Convite',
|
|
'LBL_INVITE_USERS' => 'Convidar Usuários',
|
|
'LBL_INVITE_PEOPLE' => 'Convidar Pessoas',
|
|
'INVITATION'=>' Convite ',
|
|
'Busy' => 'Ocupado',
|
|
|
|
);
|