- 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.
90 lines
3.5 KiB
PHP
90 lines
3.5 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(
|
||
'Project' => "Proje",
|
||
'SINGLE_Project' => "Proje",
|
||
'LBL_ADD_RECORD' => "Proje Ekle",
|
||
'LBL_RECORDS_LIST' => "Projeler Listesi",
|
||
'LBL_PROJECT_INFORMATION' => "Proje Detayları",
|
||
'Project Name' => "Proje Adı",
|
||
'Start Date' => "Başlangıç Tarihi",
|
||
'Target End Date' => "Hedef Bitiş Tarihi",
|
||
'Actual End Date' => "Gerçek Bitiş Tarihi",
|
||
'Project No' => "Proje Numarası",
|
||
'Target Budget' => "Hedef Bütçe",
|
||
'Project Url' => "Proje URL",
|
||
'Progress' => "Ilerleme",
|
||
'Type' => 'Tip' ,
|
||
'Related to' => 'İlgili' ,
|
||
'LBL_TASKS_OPEN' => "Görevler açın",
|
||
'LBL_TASKS_DUE' => "Nedeniyle Görevler",
|
||
'LBL_TASKS_COMPLETED' => "Görevler Tamamlandı",
|
||
'LBL_PEOPLE' => "Insanlar",
|
||
'LBL_CHARTS' => "Grafikler",
|
||
'LBL_TASKS_LIST' => "Görevler Listesi",
|
||
'LBL_MILESTONES' => "Kilometre Taşları",
|
||
'LBL_TASKS' => "Görevler",
|
||
'LBL_STATUS_IS' => "Durumudur",
|
||
'LBL_STATUS' => "Durum",
|
||
'LBL_TICKET_PRIORITY' => "Öncelik",
|
||
'LBL_MILESTONES_LIST' => "Kilometre Taşları Listesi",
|
||
'LBL_DOWNLOAD_FILE' => "Dosya indir",
|
||
'LBL_TASKS_HIGH' => 'Yüksek Öncelikli',
|
||
'LBL_TASKS_NORMAL' => 'Normal Öncelik',
|
||
'LBL_TASKS_LOW' => 'Düşük Öncelik',
|
||
'LBL_TASKS_OTHER' => 'Diğer Öncelikler',
|
||
'LBL_SELECT_PROGRESS' => 'İlerleme - Tüm',
|
||
'LBL_SELECT_STATUS' => 'Durumu - Tüm',
|
||
|
||
//picklist values
|
||
'prospecting' => 'Zenginleştirilmesi',
|
||
'in progress' => 'Devam',
|
||
'initiated' => 'Başlatılan',
|
||
'waiting for feedback' => 'Feedback için bekliyor',
|
||
'on hold' => 'On Hold',
|
||
'archived' => 'Arşivlenen',
|
||
'completed' => 'Tamamlandı',
|
||
'delivered' => 'Teslim',
|
||
'administrative' => 'Idari',
|
||
'operative' => 'Faal',
|
||
'other' => 'Diğer',
|
||
'low' => 'Düşük',
|
||
'normal' => 'Normal',
|
||
'high' => 'Yüksek',
|
||
|
||
//Gantt chart
|
||
'LBL_CHART' => 'Gantt şeması',
|
||
'LBL_PROGRESS_CHART' => 'Gantt şeması',
|
||
'LBL_DAY_SCALE' => 'gün Ölçeği',
|
||
'LBL_WEEK_SCALE' => 'hafta ölçek',
|
||
'LBL_MONTH_SCALE' => 'ay ölçek',
|
||
'LBL_YEAR_SCALE' => 'yıl ölçek',
|
||
'LBL_INFO' => 'Bilgi',
|
||
'LBL_GANTT_INFO1' => 'Süresini genişletmek için görevin sağ tarafında slayt',
|
||
'LBL_GANTT_INFO2' => 'Sol veya görevin merkezinde Sürükle başlangıç ve bitiş tarihini değiştirmek için.',
|
||
'LBL_EDIT_PROJECT_TASK_STATUS_COLOR' => 'Düzenleme Projesi Görev Durumu Rengi',
|
||
'LBL_SELECT_PROJECT_TASK_STATUS_COLOR' => 'Proje Görev Durumu Renk Seçiniz',
|
||
'LBL_SELECT_STATUS' => 'Seçiniz Durum',
|
||
'LBL_EDIT_COLOR' => 'Rengi Düzenle',
|
||
|
||
'LBL_TASK_NAME' => 'Görev Adı',
|
||
'LBL_START_DATE' => 'Başlangıç Tarihi',
|
||
'LBL_END_DATE' => 'Bitiş Tarihi',
|
||
'LBL_DURATION' => 'Süresi',
|
||
|
||
);
|
||
|
||
$jsLanguageStrings = array(
|
||
'JS_START_DATE' => 'başlangıç tarihi',
|
||
'JS_END_DATE' => 'bitiş tarihi',
|
||
'JS_PROJECT_TASKS' => 'proje görevleri',
|
||
'JS_TASK_NAME' => 'görev adı',
|
||
'JS_COLOR_SAVED_SUCESSFULLY' => 'Renk Kaydedildi Başarıyla',
|
||
); |