Files
crm.clientright.ru/languages/sv_se/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

92 lines
3.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.
*************************************************************************************/
$languageStrings = array(
// Basic Strings
'Project' => 'Projekt',
'SINGLE_Project' => 'Projekt',
'LBL_ADD_RECORD' => 'Lägg till projekt',
'LBL_RECORDS_LIST' => 'Projektlista',
'LBL_MILESTONES_LIST'=>'Milstolpar Lista',
// Blocks
'LBL_PROJECT_INFORMATION' => 'Projektuppgifter',
//Field Labels
'Project Name' => 'Projektnamn',
'Start Date' => 'Startdatum',
'Target End Date' => 'Målsättningför slutdatum',
'Actual End Date' => 'Faktiskt slutdatum',
'Project No' => 'Projektnummer',
'Target Budget' => 'Målbudget',
'Project Url' => 'Projekt URL',
'Progress' => 'Framsteg',
'Type' => 'Typ',
'Related to' => 'Relaterat till',
//Summary Information
'LBL_TASKS_OPEN' => 'Uppgifter Öppna',
'LBL_TASKS_DUE' => 'Uppgifter Förfaller',
'LBL_TASKS_COMPLETED' => 'Uppgifter Genomförd',
'LBL_PEOPLE' => 'Människor',
'LBL_TASKS_HIGH' => 'Hög prioritet',
'LBL_TASKS_NORMAL' => 'Normal prioritet',
'LBL_TASKS_LOW' => 'Låg prioritet',
'LBL_TASKS_OTHER' => 'Andra prioriteringar',
'LBL_SELECT_PROGRESS' => 'framsteg - alla',
'LBL_SELECT_STATUS' => 'status - alla',
//Related List
'LBL_CHARTS' => 'Topplista',
'LBL_TASKS_LIST' => 'Uppgiftslista',
'LBL_MILESTONES' => 'Milstolpar',
'LBL_TASKS' => 'Uppgifter',
'LBL_STATUS_IS' => 'Status är',
'LBL_STATUS' => 'Status',
'LBL_TICKET_PRIORITY' => 'Prioritet',
//Summary View Widgets
'LBL_DOWNLOAD_FILE' => 'Ladda ner fil',
'LBL_MILESTONES_LIST' => "Milestones Lista",
//picklist values
'prospecting' => 'Prospektering',
'in progress' => 'In Progress',
'initiated' => 'Initierat',
'waiting for feedback' => 'Väntar på återkoppling',
'on hold' => 'On Hold',
'archived' => 'Arkiverad',
'completed' => 'Avslutat',
'delivered' => 'Levereras',
'administrative' => 'Administrativ',
'operative' => 'Operative',
'other' => 'Annat',
'low' => 'Låg',
'normal' => 'Normal',
'high' => 'Hög',
//Gantt chart
'LBL_CHART' => 'Gantt-schema',
'LBL_PROGRESS_CHART' => 'framsteg Gantt-schema',
'LBL_TASK_NAME' => 'uppgiftsnamn',
'LBL_START_DATE' => 'startdatum',
'LBL_END_DATE' => 'slutdatum',
'LBL_DURATION' => 'varaktighet',
'LBL_INFO' => 'Info',
'LBL_GANTT_INFO1' => 'Skjut på höger sida av uppgiften att utöka varaktig',
'LBL_GANTT_INFO2' => 'Dra till vänster eller mitten av uppgiften att ändra start-och slutdatum.',
'LBL_EDIT_PROJECT_TASK_STATUS_COLOR' => 'Redigera Project Aktivitetsstatus Färg',
'LBL_SELECT_PROJECT_TASK_STATUS_COLOR' => 'Välj Project Aktivitetsstatus Färg',
'LBL_SELECT_STATUS' => 'Välj Status',
'LBL_EDIT_COLOR' => 'Redigera färg',
);
$jsLanguageStrings = array(
'JS_COLOR_SAVED_SUCESSFULLY' => 'Färg sparats',
);