- 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
2.9 KiB
PHP
104 lines
2.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.
|
|
* All Rights Reserved.
|
|
*************************************************************************************/
|
|
|
|
/* NOTE: Should be inline with Calendar language translation but few variations */
|
|
|
|
$languageStrings = array(
|
|
// Basic Strings
|
|
'Events' => 'Händelser',
|
|
'SINGLE_Events' => 'Händelse',
|
|
'LBL_ADD_RECORD' => 'Lägg till Händelse',
|
|
'LBL_RECORDS_LIST' => 'Händelselista',
|
|
'LBL_EVENTS' => 'Händelser',
|
|
'LBL_TODOS' => 'Uppgift',
|
|
'LBL_HOLD_FOLLOWUP_ON' => 'Håll uppföljning på',
|
|
'LBL_CREATE_FOLLOWUP_EVENT' => 'Skapa Följ upp Händelse',
|
|
|
|
// Blocks
|
|
'LBL_EVENT_INFORMATION' => 'Händelseuppgifter',
|
|
'LBL_RECURRENCE_INFORMATION' => 'Återkommande uppgifter',
|
|
'LBL_RELATED_TO' => 'Relaterat Till',
|
|
'Related To' => 'Relaterat till',
|
|
|
|
//Fields
|
|
'Start Date & Time'=>'Startdatum & Tid',
|
|
'Recurrence' => 'Återkommande',
|
|
'Send Notification' => 'Skicka Notifiering',
|
|
'Location'=>'Plats',
|
|
'Send Reminder' => 'Skicka Påminnelse',
|
|
'End Date & Time' => 'Slutdatum & Tid',
|
|
'End Date' => 'Slutdatum & Tid',
|
|
'Activity Type'=>'Aktivitetstyp',
|
|
'Visibility' => 'Synlighet',
|
|
'Recurrence' => 'Upprepa',
|
|
|
|
//Visibility picklist values
|
|
'Private' => 'Privat',
|
|
'Public' => 'Publik',
|
|
|
|
//Activity Type picklist values
|
|
'Call' => 'Ring',
|
|
'Meeting' => 'Möte',
|
|
|
|
//Status picklist values
|
|
'Planned' => 'Planerad',
|
|
'Held' => 'Anordnad',
|
|
'Not Held' => 'Inte Anordnad',
|
|
|
|
//Reminder Labels
|
|
'LBL_DAYS' => 'Dag(ar)',
|
|
'LBL_HOURS' => 'Timmas',
|
|
|
|
//Repeat Labels
|
|
'LBL_DAYS_TYPE' => 'Dag(s)',
|
|
'LBL_WEEKS_TYPE' => 'Vecka(s)',
|
|
'LBL_MONTHS_TYPE' => 'Månad(s)',
|
|
'LBL_YEAR_TYPE' => 'År',
|
|
|
|
'LBL_FIRST' => 'Först',
|
|
'LBL_LAST' => 'Sist',
|
|
|
|
'LBL_SM_SUN' => 'Sön',
|
|
'LBL_SM_MON' => 'Mån',
|
|
'LBL_SM_TUE' => 'Tis',
|
|
'LBL_SM_WED' => 'Ons',
|
|
'LBL_SM_THU' => 'Tor',
|
|
'LBL_SM_FRI' => 'Fre',
|
|
'LBL_SM_SAT' => 'Lör',
|
|
|
|
'LBL_DAY0' => 'Söndag',
|
|
'LBL_DAY1' => 'Måndag',
|
|
'LBL_DAY2' => 'Tisdag',
|
|
'LBL_DAY3' => 'Onsdag',
|
|
'LBL_DAY4' => 'Torsdag',
|
|
'LBL_DAY5' => 'Fredag',
|
|
'LBL_DAY6' => 'Lördag',
|
|
|
|
'Daily'=>'Dag(s)',
|
|
'Weekly'=>'Vecka(s)',
|
|
'Monthly'=>'Månad(s)',
|
|
'Yearly'=>'År',
|
|
|
|
'LBL_REPEATEVENT' => 'En gång i varje',
|
|
'LBL_UNTIL' => 'tills',
|
|
'LBL_DAY_OF_THE_MONTH' => 'dagen i månaden',
|
|
'LBL_ON' => 'på',
|
|
|
|
'LBL_RECORDS_LIST' => 'Listvy',
|
|
'LBL_CALENDAR_VIEW' => 'Kalendervy',
|
|
|
|
'LBL_INVITE_USER_BLOCK' => 'Bjud in',
|
|
'LBL_INVITE_USERS' => 'Bjud in Användare',
|
|
'LBL_INVITE_PEOPLE' => 'Bjud in personer',
|
|
|
|
'INVITATION' => ' Inbjudan ',
|
|
'Busy' => 'Upptagen',
|
|
|
|
); |