- 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.
97 lines
3.0 KiB
PHP
97 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.
|
|
*************************************************************************************/
|
|
|
|
/* NOTE: Should be inline with Calendar language translation but few variations */
|
|
|
|
$languageStrings = array(
|
|
// Basic Strings
|
|
'Events' => 'Czynności',
|
|
'SINGLE_Events' => 'Czynność',
|
|
'LBL_ADD_RECORD' => 'Dodaj czynność',
|
|
'LBL_RECORDS_LIST' => 'Lista czynności',
|
|
'LBL_RECORD_SUMMARY' => 'Podsumowanie czynności',
|
|
'LBL_EVENTS' => 'Czynności',
|
|
'LBL_TODOS' => 'Zadanie',
|
|
'LBL_HOLD_FOLLOWUP_ON' => 'Trzymaj Nawiązanie na',
|
|
'LBL_CREATE_FOLLOWUP_EVENT' => 'Stwórz śledzić wydarzenie',
|
|
|
|
// Blocks
|
|
'LBL_EVENT_INFORMATION' => 'Szczegóły czynności',
|
|
'LBL_RECURRENCE_INFORMATION' => 'Informacje o powtarzalności',
|
|
|
|
//Fields
|
|
'Start Date & Time'=>'Czas rozpoczęcia',
|
|
'Recurrence' => 'Powtarzalność',
|
|
'Send Notification' => 'Wyślij powiadomienie',
|
|
'Location'=>'Miejsce',
|
|
'Send Reminder' => 'Wyślij przypomnienie',
|
|
'End Date & Time' => 'Czas zakończenia',
|
|
'End Date' => 'Czas zakończenia',
|
|
'Activity Type'=>'Rodzaj czynności',
|
|
'Visibility' => 'Widoczność',
|
|
'Related To' => 'Związane z',
|
|
|
|
//Visibility picklist values
|
|
'Private' => 'Prywatne',
|
|
'Public' => 'Publiczne',
|
|
|
|
//Activity Type picklist values
|
|
'Call' => 'Telefon',
|
|
'Meeting' => 'Spotkanie',
|
|
|
|
//Status picklist values
|
|
'Planned' => 'Planowane',
|
|
'Held' => 'Wykonane',
|
|
'Not Held' => 'Niewykonane',
|
|
|
|
//Reminder Labels
|
|
'LBL_DAYS' => 'Dni',
|
|
'LBL_HOURS' => 'Godzin',
|
|
|
|
'LBL_RECORDS_LIST' => 'Widok listy',
|
|
'LBL_CALENDAR_VIEW' => 'Widok kalendarza',
|
|
'LBL_REPEATEVENT' => 'Raz w każdy',
|
|
'LBL_INVITE_PEOPLE' => 'Zaproś ludzi',
|
|
|
|
|
|
'LBL_RELATED_TO' => 'Związane Z',
|
|
'LBL_DAYS_TYPE' => 'Dzień(s',
|
|
'LBL_WEEKS_TYPE' => 'Tydzień(y',
|
|
'LBL_MONTHS_TYPE' => 'Miesiąc(y',
|
|
'LBL_YEAR_TYPE' => 'Rok',
|
|
'LBL_FIRST' => 'Pierwszy',
|
|
'LBL_LAST' => 'W przeszłości',
|
|
'LBL_SM_SUN' => 'Słońce',
|
|
'LBL_SM_MON' => 'Pon.',
|
|
'LBL_SM_TUE' => 'W',
|
|
'LBL_SM_WED' => 'Sr',
|
|
'LBL_SM_THU' => 'Chet',
|
|
'LBL_SM_FRI' => 'Pt',
|
|
'LBL_SM_SAT' => 'Coll',
|
|
'LBL_DAY0' => 'Niedziela',
|
|
'LBL_DAY1' => 'Poniedziałek',
|
|
'LBL_DAY2' => 'Wtorek',
|
|
'LBL_DAY3' => 'Środa',
|
|
'LBL_DAY4' => 'Czwartek',
|
|
'LBL_DAY5' => 'Piątek',
|
|
'LBL_DAY6' => 'Sobota',
|
|
'Daily' => 'Dzień(s',
|
|
'Weekly' => 'Tydzień(y',
|
|
'Monthly' => 'Miesiąc(y',
|
|
'Yearly' => 'Rok',
|
|
'LBL_UNTIL' => 'Aż',
|
|
'LBL_DAY_OF_THE_MONTH' => 'dzień miesiąca',
|
|
'LBL_ON' => 'na',
|
|
'LBL_INVITE_USER_BLOCK' => 'Zapraszamy',
|
|
'LBL_INVITE_USERS' => 'Zapraszamy Użytkowników',
|
|
'INVITATION' => ' Zaproszenie ',
|
|
'Busy' => 'Zajęty',
|
|
|
|
); |