Add localization files for settings module: Created English and Turkish language files for settings, including keys for actions, form fields, messages, table columns, types, groups, and validation. This enhances the localization support for the settings module, ensuring a consistent user experience across languages.
This commit is contained in:
@@ -0,0 +1,87 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'title' => 'Ayarlar',
|
||||
'navigation_label' => 'Ayarlar',
|
||||
'model_label' => 'Ayar',
|
||||
'plural_model_label' => 'Ayarlar',
|
||||
|
||||
// Actions
|
||||
'create' => 'Yeni Ayar Oluştur',
|
||||
'edit' => 'Ayarı Düzenle',
|
||||
'delete' => 'Ayarı Sil',
|
||||
'restore' => 'Ayarı Geri Yükle',
|
||||
'force_delete' => 'Ayarı Kalıcı Olarak Sil',
|
||||
'save' => 'Kaydet',
|
||||
'cancel' => 'İptal',
|
||||
|
||||
// Form fields
|
||||
'key' => 'Anahtar',
|
||||
'key_helper' => 'Ayar anahtarı (örn: site_name, site_email)',
|
||||
'value' => 'Değer',
|
||||
'value_helper' => 'Ayar değeri',
|
||||
'type' => 'Tip',
|
||||
'type_helper' => 'Değer tipi',
|
||||
'group' => 'Grup',
|
||||
'group_helper' => 'Ayar grubu (örn: general, email, seo)',
|
||||
'label' => 'Etiket',
|
||||
'label_helper' => 'Kullanıcı dostu etiket',
|
||||
'description' => 'Açıklama',
|
||||
'description_helper' => 'Ayar açıklaması',
|
||||
'is_public' => 'Herkese Açık',
|
||||
'is_public_helper' => 'Bu ayar herkese açık mı?',
|
||||
'is_active' => 'Aktif',
|
||||
'is_active_helper' => 'Bu ayar aktif mi?',
|
||||
|
||||
// Messages
|
||||
'created_successfully' => 'Ayar başarıyla oluşturuldu.',
|
||||
'updated_successfully' => 'Ayar başarıyla güncellendi.',
|
||||
'deleted_successfully' => 'Ayar başarıyla silindi.',
|
||||
'restored_successfully' => 'Ayar başarıyla geri yüklendi.',
|
||||
'force_deleted_successfully' => 'Ayar kalıcı olarak silindi.',
|
||||
|
||||
// Table columns
|
||||
'table_key' => 'Anahtar',
|
||||
'table_value' => 'Değer',
|
||||
'table_type' => 'Tip',
|
||||
'table_group' => 'Grup',
|
||||
'table_label' => 'Etiket',
|
||||
'table_public' => 'Herkese Açık',
|
||||
'table_active' => 'Aktif',
|
||||
'table_created_at' => 'Oluşturulma',
|
||||
'table_updated_at' => 'Güncellenme',
|
||||
|
||||
// Types
|
||||
'type_string' => 'Metin',
|
||||
'type_text' => 'Uzun Metin',
|
||||
'type_boolean' => 'Evet/Hayır',
|
||||
'type_integer' => 'Tam Sayı',
|
||||
'type_float' => 'Ondalıklı Sayı',
|
||||
'type_array' => 'Dizi',
|
||||
'type_json' => 'JSON',
|
||||
|
||||
// Groups
|
||||
'group_general' => 'Genel',
|
||||
'group_email' => 'E-posta',
|
||||
'group_seo' => 'SEO',
|
||||
'group_social' => 'Sosyal Medya',
|
||||
'group_security' => 'Güvenlik',
|
||||
'group_payment' => 'Ödeme',
|
||||
'group_notification' => 'Bildirim',
|
||||
'group_other' => 'Diğer',
|
||||
|
||||
// Validation messages
|
||||
'key_required' => 'Anahtar alanı zorunludur.',
|
||||
'key_unique' => 'Bu anahtar zaten kullanılıyor.',
|
||||
'key_regex' => 'Anahtar sadece harf, rakam, alt çizgi ve tire içerebilir.',
|
||||
'value_required' => 'Değer alanı zorunludur.',
|
||||
'type_required' => 'Tip alanı zorunludur.',
|
||||
'label_required' => 'Etiket alanı zorunludur.',
|
||||
|
||||
// Filters
|
||||
'filter_group' => 'Gruba Göre',
|
||||
'filter_type' => 'Tipe Göre',
|
||||
'filter_active' => 'Aktif',
|
||||
'filter_public' => 'Herkese Açık',
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user