Files
crm.clientright.ru/languages/es_es/Project.php
Fedor ac7467f0b4 Major CRM updates: AI Assistant, Court Status API, S3 integration improvements, and extensive file storage system
- 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.
2025-10-16 11:17:21 +03:00

88 lines
3.9 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.
* Portions created by JPL TSolucio, S.L. are Copyright (C) jpl tsolucio.
* All Rights Reserved.
* ********************************************************************************
* Language : Español es_es
* Version : 6.0.0
* Created Date : 2012-10-26
* Author : JPL TSolucio, S. L. Joe Bordes
* Last change : 2013-05-03
* Author : JPL TSolucio, S. L. Joe Bordes
************************************************************************************/
$languageStrings = array(
'Project' => 'Proyecto',
'SINGLE_Project' => 'Proyecto',
'LBL_ADD_RECORD' => 'Añadir Proyecto',
'LBL_RECORDS_LIST' => 'Lista de Proyectos',
'LBL_PROJECT_INFORMATION' => 'Detalles del Proyecto',
'Project Name' => 'Nombre Proyecto',
'Start Date' => 'Fecha inicio',
'Target End Date' => 'Fecha fin prevista',
'Actual End Date' => 'Fecha fin real',
'Project No' => 'Número Proyecto',
'Target Budget' => 'Presupuesto previsto',
'Project Url' => 'Url Proyecto',
'Progress' => 'Progreso',
'Type' => 'Tipo',
'Related to' => 'En relación con',
'LBL_TASKS_OPEN' => 'Actividades Abiertas',
'LBL_TASKS_DUE' => 'Actividades Pendientes',
'LBL_TASKS_COMPLETED' => 'Actividades Terminadas',
'LBL_PEOPLE' => 'Personas',
'LBL_CHARTS' => 'Gráficos',
'LBL_TASKS_LIST' => 'Lista Actividades',
'LBL_MILESTONES' => 'Hitos',
'LBL_TASKS' => 'Actividades',
'LBL_STATUS_IS' => 'Estado es',
'LBL_STATUS' => 'Estado',
'LBL_TICKET_PRIORITY' => 'Prioridad',
'LBL_DOWNLOAD_FILE' => 'Descargar Fichero',
'LBL_MILESTONES_LIST' => 'Lista de Hitos',
'LBL_TASKS_HIGH' => 'Alta Prioridad',
'LBL_TASKS_NORMAL' => 'Prioridad Normal',
'LBL_TASKS_LOW' => 'Prioridad baja',
'LBL_TASKS_OTHER' => 'Otras prioridades',
'LBL_SELECT_PROGRESS' => 'Progress - Todos',
'LBL_SELECT_STATUS' => 'estado - todo',
//picklist values
'prospecting' => 'Prospección',
'in progress' => 'En curso',
'initiated' => 'Iniciado',
'waiting for feedback' => 'Esperando Feedback',
'on hold' => 'En espera',
'archived' => 'Archivado',
'completed' => 'Terminado',
'delivered' => 'Liberado',
'administrative' => 'Administrativo',
'operative' => 'Operatorio',
'other' => 'Otro',
'low' => 'Bajo',
'normal' => 'Normal',
'high' => 'Alto',
//Gantt chart
'LBL_CHART' => 'Diagrama de Gantt',
'LBL_PROGRESS_CHART' => 'Diagrama de Gantt',
'LBL_TASK_NAME' => 'nombre de la tarea',
'LBL_START_DATE' => 'fecha de inicio',
'LBL_END_DATE' => 'fecha de finalización',
'LBL_DURATION' => 'duración',
'LBL_INFO' => 'Info',
'LBL_GANTT_INFO1' => 'Deslice el lado derecho de la tarea de ampliar la duración',
'LBL_GANTT_INFO2' => 'Arrastrar a la izquierda o en el centro de la tarea de cambiar de inicio y fecha de finalización.',
'LBL_EDIT_PROJECT_TASK_STATUS_COLOR' => 'Estado Editar tarea Proyecto color',
'LBL_SELECT_PROJECT_TASK_STATUS_COLOR' => 'Seleccione Estado del Proyecto Tarea color',
'LBL_SELECT_STATUS' => 'Seleccione Estado',
'LBL_EDIT_COLOR' => 'Editar color',
);
$jsLanguageStrings = array(
'JS_COLOR_SAVED_SUCESSFULLY' => 'Color Saved Successfully',
);