- 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.
58 lines
3.4 KiB
PHP
58 lines
3.4 KiB
PHP
<?php
|
|
/*+**********************************************************************************
|
|
* The content of this file is subject to the ITS4GoogleCalendarSync license.
|
|
* ("License"); You may not use this file except in compliance with the License
|
|
* The Initial Developer of the Original Code is IT-Solutions4You s.r.o.
|
|
* Portions created by IT-Solutions4You s.r.o. are Copyright(C) IT-Solutions4You s.r.o.
|
|
* All Rights Reserved.
|
|
************************************************************************************/
|
|
|
|
$languageStrings = array(
|
|
'LBL_MODULE_NAME' => 'Sincronizar Calendario Google',
|
|
"LBL_CALENDAR_MAPP" => "Mapeo de Calendario",
|
|
"LBL_CALENDAR_SETTINGS" => "Configuración del Calendario",
|
|
'LBL_BI_DIRECTIONAL_SYNC' => 'Sincronización Bidireccional',
|
|
'LBL_ONLY_SYNC_FROM_GOOGLE_TO_VTIGER' => 'Solo de Google al CRM',
|
|
'LBL_ONLY_SYNC_FROM_VTIGER_TO_GOOGLE' => 'Solo del CRM a Google',
|
|
'LBL_SELECT_SYNC_DIRECTION' => 'Seleccione la Dirección de Sincronización',
|
|
'LBL_CLIENTID' => 'Id Cliente',
|
|
'LBL_CLIENT_SECRET' => 'Secreto Cliente',
|
|
'LBL_CREDENTIALS' => 'Credenciales',
|
|
'LBL_CONNECT_GOOGLE' => 'Conectar a Google',
|
|
'LBL_SET_CREDENTIALS' => 'Por favor, configure las credenciales para la conexión a Google en la configuración del calendario.',
|
|
'LBL_SYNC_BUTTON' => 'Sincronizar Ahora',
|
|
'LBL_UPDATES_CRM' => 'Actualizar en CRM',
|
|
'LBL_UPDATES_GOOGLE' => 'Actualizar en Google',
|
|
'LBL_VTIGER_TO_GOOGLE' => 'Mapeo CRM a Google',
|
|
'LBL_GOOGLE_CALENDARS' => 'Calendarios',
|
|
'LBL_ACTIVITY_TYPES' => 'Tipos de Actividad',
|
|
'LBL_REMOVE_CONNECTION' => 'Eliminar Conexión',
|
|
'LBL_SYNCHRONIZED' => 'Sincronizado',
|
|
'LBL_UNINSTALL_AND_LICENSE' => 'Desinstalar y Licenciar',
|
|
'LBL_UNINSTALL' => 'Desinstalar',
|
|
"LBL_UNINSTALL_DESC" => "Eliminar el módulo Sincronizar Calendario Google del sistema.",
|
|
'LBL_VERSION' => 'Versión',
|
|
'LBL_SUCCESS' => 'Éxito',
|
|
'LBL_CREDENTIALS_SAVED' => 'Se han guardado las Credenciales correctamente.',
|
|
'LBL_MAPPING_SUCCESSFUL' => 'El Mapeo de Calendarios se ha guardado.',
|
|
'LBL_REMOVE_CONNECTION_SUCCESS' => 'Has sido desconectado del calendario de Google.',
|
|
'LBL_REMOVE_USER_CONNECTION_SUCCESS' => 'El usuario ha sido desconectado del calendario de Google.',
|
|
'LBL_NOT_SYNCHRONIZED' => 'Aún no ha sincronizado',
|
|
'LBL_CONNECTION_SUCCESSFUL' => 'Conexión exitosa',
|
|
'LBL_RECORDS_SYNC' => 'Los registros han sido sincronizados. Por favor, actualice la página.',
|
|
'LBL_NO_RECORDS_SYNC' => 'No hay registros sincronizados.',
|
|
'LBL_ADD_IS_NOT_ENABLED' => 'No se puede agregar más Google Sync. Su número permitido de licencias ha sido alcanzado. Por favor, póngase en contacto con su administrador.',
|
|
'LBL_DEFAULT_CREDENTIALS' => 'Credenciales predeterminadas de Google',
|
|
'LBL_CREDENTIALS_TYPE' => 'Credenciales de Google',
|
|
'LBL_OWN' => 'Propietario',
|
|
'LBL_LICENSE' => 'Licencia',
|
|
'LBL_UPGRADE' => 'Actualizar',
|
|
'LBL_DEFAULT' => 'Predeterminado',
|
|
"LBL_DEACTIVATE_ERROR" => "Se produjo un error al desactivar la clave de licencia.",
|
|
"LBL_DEACTIVATE_SUCCESS" => "La clave de licencia ha sido desactivada exitosamente.",
|
|
);
|
|
|
|
$jsLanguageStrings = array(
|
|
"LBL_DEACTIVATE_QUESTION" => "¿Realmente quieres desactivar tu clave de licencia?",
|
|
"JS_CONNECTION_SUCCESSFUL" => "Conexión exitosa",
|
|
); |