Add Blog module to Citrus Platform: Created Blog resource with CRUD pages, schemas, and models. Implemented localization for English and Turkish, ensuring consistent user experience. Added migrations for blog categories, posts, and comments, including soft delete functionality. Enhanced table and form structures for better organization and usability.
This commit is contained in:
+56
-5
@@ -22,6 +22,40 @@ return [
|
||||
'status_field' => 'Durum',
|
||||
'published_at_field' => 'Yayın Tarihi',
|
||||
|
||||
// Form sections
|
||||
'form_section_content' => 'İçerik',
|
||||
'form_section_page_settings' => 'Sayfa Ayarları',
|
||||
'form_section_seo_settings' => 'SEO Ayarları',
|
||||
|
||||
// Form fields
|
||||
'title_field' => 'Başlık',
|
||||
'slug_field' => 'URL Slug',
|
||||
'content_field' => 'İçerik',
|
||||
'excerpt_field' => 'Özet',
|
||||
'featured_image_field' => 'Öne Çıkan Görsel',
|
||||
'author_field' => 'Yazar',
|
||||
'published_at_field' => 'Yayın Tarihi',
|
||||
'status_field' => 'Durum',
|
||||
'parent_field' => 'Üst Sayfa',
|
||||
'template_field' => 'Şablon',
|
||||
'sort_order_field' => 'Sıra',
|
||||
'is_homepage_field' => 'Ana Sayfa',
|
||||
'show_in_menu_field' => 'Menüde Göster',
|
||||
'meta_title_field' => 'Meta Başlık',
|
||||
'meta_description_field' => 'Meta Açıklama',
|
||||
|
||||
// Helper texts
|
||||
'slug_helper_text' => 'URL\'de görünecek kısım. Örnek: hakkimizda',
|
||||
'excerpt_helper_text' => 'Sayfa özeti (maksimum 500 karakter)',
|
||||
'featured_image_helper_text' => 'Sayfa için öne çıkan görsel seçin',
|
||||
'published_at_helper_text' => 'Boş bırakılırsa şu anki tarih kullanılır',
|
||||
'parent_helper_text' => 'Bu sayfayı başka bir sayfanın alt sayfası yapmak için seçin',
|
||||
'sort_order_helper_text' => 'Menüde görünme sırası',
|
||||
'is_homepage_helper_text' => 'Bu sayfayı ana sayfa olarak ayarla',
|
||||
'show_in_menu_helper_text' => 'Bu sayfa menüde görünsün mü?',
|
||||
'meta_title_helper_text' => 'Arama motorları için başlık (maksimum 60 karakter)',
|
||||
'meta_description_helper_text' => 'Arama motorları için açıklama (maksimum 160 karakter)',
|
||||
|
||||
// Status options
|
||||
'status_draft' => 'Taslak',
|
||||
'status_published' => 'Yayınlandı',
|
||||
@@ -34,11 +68,28 @@ return [
|
||||
'restored_successfully' => 'Sayfa başarıyla geri yüklendi.',
|
||||
|
||||
// Table columns
|
||||
'table_title' => 'Başlık',
|
||||
'table_slug' => 'URL Yolu',
|
||||
'table_status' => 'Durum',
|
||||
'table_created_at' => 'Oluşturulma Tarihi',
|
||||
'table_updated_at' => 'Güncellenme Tarihi',
|
||||
'table_column_featured_image' => 'Öne Çıkan Görsel',
|
||||
'table_column_title' => 'Başlık',
|
||||
'table_column_slug' => 'URL Yolu',
|
||||
'table_column_status' => 'Durum',
|
||||
'table_column_author' => 'Yazar',
|
||||
'table_column_published_at' => 'Yayın Tarihi',
|
||||
'table_column_parent' => 'Üst Sayfa',
|
||||
'table_column_template' => 'Şablon',
|
||||
'table_column_is_homepage' => 'Ana Sayfa',
|
||||
'table_column_show_in_menu' => 'Menüde Göster',
|
||||
'table_column_sort_order' => 'Sıralama',
|
||||
'table_column_created_at' => 'Oluşturulma Tarihi',
|
||||
'table_column_updated_at' => 'Güncellenme Tarihi',
|
||||
|
||||
// Template options
|
||||
'template_default' => 'Varsayılan',
|
||||
'template_landing' => 'Landing Page',
|
||||
'template_blog' => 'Blog',
|
||||
'template_contact' => 'İletişim',
|
||||
|
||||
// Copy message
|
||||
'copy_url_message' => 'URL kopyalandı',
|
||||
|
||||
// Validation messages
|
||||
'title_required' => 'Başlık alanı zorunludur.',
|
||||
|
||||
Reference in New Issue
Block a user