Refactor and localize settings and resources

- Updated GeneralSettings page to include localized labels and structured sections for better organization.
- Enhanced CarouselSlide, Category, Collection, and Product resources with localized model labels and improved form/table configurations.
- Modified HomeController to utilize query builder for better performance and added collection items retrieval.
- Updated views to reflect localized settings and improved layout for collections and footer.
- Adjusted timezone and locale settings in app configuration for better regional support.
This commit is contained in:
Mekan1206
2026-06-04 22:15:18 +05:00
parent b13d61b342
commit 6ea6701963
119 changed files with 5304 additions and 98 deletions

265
lang/vendor/filament-tables/tk/table.php vendored Normal file
View File

@@ -0,0 +1,265 @@
<?php
return [
'column_manager' => [
'heading' => 'Sütunlar',
'actions' => [
'apply' => [
'label' => 'Sütunları uygula',
],
'reset' => [
'label' => 'Sıfırla',
],
],
],
'columns' => [
'actions' => [
'label' => 'İşlem|İşlemler',
],
'select' => [
'loading_message' => 'Yükleniyor...',
'no_search_results_message' => 'Arama kriterlerinize uyan seçenek yok.',
'placeholder' => 'Bir seçenek seçin',
'searching_message' => 'Aranıyor...',
'search_prompt' => 'Aramak için yazmaya başlayın...',
],
'text' => [
'actions' => [
'collapse_list' => ':count kayıt az göster',
'expand_list' => ':count kayıt daha göster',
],
'more_list_items' => 've :count daha',
],
],
'fields' => [
'bulk_select_page' => [
'label' => 'Toplu işlemler için tüm öğeleri seç/seçimi kaldır.',
],
'bulk_select_record' => [
'label' => 'Toplu işlemler için :key öğesini seç/seçimi kaldır.',
],
'bulk_select_group' => [
'label' => 'Toplu işlemler için :title grubunu seç/seçimi kaldır.',
],
'search' => [
'label' => 'Ara',
'placeholder' => 'Ara',
'indicator' => 'Ara',
],
],
'summary' => [
'heading' => 'Özet',
'subheadings' => [
'all' => 'Tüm :label',
'group' => ':group özeti',
'page' => 'Bu sayfa',
],
'summarizers' => [
'average' => [
'label' => 'Ortalama',
],
'count' => [
'label' => 'Sayı',
],
'sum' => [
'label' => 'Toplam',
],
],
],
'actions' => [
'disable_reordering' => [
'label' => 'Sıralamayı bitir',
],
'enable_reordering' => [
'label' => 'Kayıtları sırala',
],
'filter' => [
'label' => 'Filtrele',
],
'group' => [
'label' => 'Grupla',
],
'open_bulk_actions' => [
'label' => 'Toplu işlemler',
],
'column_manager' => [
'label' => 'Sütunları göster/gizle',
],
],
'empty' => [
'heading' => ':model Yok',
'description' => 'Başlamak için bir :model oluşturun.',
],
'filters' => [
'actions' => [
'apply' => [
'label' => 'Filtreleri uygula',
],
'remove' => [
'label' => 'Filtreyi kaldır',
],
'remove_all' => [
'label' => 'Tüm filtreleri kaldır',
'tooltip' => 'Tüm filtreleri kaldır',
],
'reset' => [
'label' => 'Sıfırla',
],
],
'heading' => 'Filtreler',
'indicator' => 'Aktif filtreler',
'multi_select' => [
'placeholder' => 'Tümü',
],
'select' => [
'placeholder' => 'Tümü',
'relationship' => [
'empty_option_label' => 'Yok',
],
],
'trashed' => [
'label' => 'Silinmiş kayıtlar',
'only_trashed' => 'Sadece silinmiş kayıtlar',
'with_trashed' => 'Silinmiş kayıtlarla birlikte',
'without_trashed' => 'Silinmiş kayıtlar olmadan',
],
],
'grouping' => [
'fields' => [
'group' => [
'label' => 'Şuna göre grupla',
],
'direction' => [
'label' => 'Grup yönü',
'options' => [
'asc' => 'Artan',
'desc' => 'Azalan',
],
],
],
],
'reorder_indicator' => 'Kayıtları sıralamak için sürükleyip bırakın.',
'selection_indicator' => [
'selected_count' => '1 kayıt seçildi|:count kayıt seçildi',
'actions' => [
'select_all' => [
'label' => 'Tüm :count kaydı seç ',
],
'deselect_all' => [
'label' => 'Tüm seçimleri kaldır',
],
],
],
'sorting' => [
'fields' => [
'column' => [
'label' => 'Şuna göre sırala',
],
'direction' => [
'label' => 'Sıralama yönü',
'options' => [
'asc' => 'Artan',
'desc' => 'Azalan',
],
],
],
],
'default_model_label' => 'kayıt',
];