Refactor SMS and Coupon resources to utilize localization for labels and messages, enhancing internationalization support. Update .env.example to change APP_LOCALE to 'tk'.
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'notifications' => [
|
||||
'blocked' => [
|
||||
'title' => 'E-posta adresi güncelleme isteği engellendi',
|
||||
'body' => 'Başarılı bir şekilde E-posta adresinizin :email olarak güncellenme isteğini engellediniz. Eğer bu isteği siz yapmadıysanız lütfen bizimle iletişime geçin.',
|
||||
],
|
||||
'failed' => [
|
||||
'title' => 'E-posta adresi güncelleme isteği engellenirken bir hata oluştu',
|
||||
'body' => 'Ne yazık ki, E-posta adresinizin :email olarak güncellenme isteğini engelleme işleminiz başarısız oldu, siz engelleyemeden E-posta adresi onaylandı. Eğer bu isteği siz yapmadıysanız lütfen bizimle iletişime geçin.',
|
||||
],
|
||||
],
|
||||
];
|
||||
10
lang/vendor/filament-panels/tk/auth/http/controllers/email-change-verification-controller.php
vendored
Normal file
10
lang/vendor/filament-panels/tk/auth/http/controllers/email-change-verification-controller.php
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'notifications' => [
|
||||
'verified' => [
|
||||
'title' => 'E-posta adresi güncellendi',
|
||||
'body' => 'E-posta adresiniz başarıyla :email olarak güncellendi.',
|
||||
],
|
||||
],
|
||||
];
|
||||
40
lang/vendor/filament-panels/tk/auth/multi-factor/app/actions/disable.php
vendored
Normal file
40
lang/vendor/filament-panels/tk/auth/multi-factor/app/actions/disable.php
vendored
Normal file
@@ -0,0 +1,40 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'label' => 'Ýap',
|
||||
'modal' => [
|
||||
'heading' => 'Doğrulama uygulamasını devre dışı bırak',
|
||||
'description' => 'Doğrulama uygulamasını devre dışı bırakmak istediğinize emin misiniz? Bunu devre dışı bırakmak hesabınızda bulunan ekstra koruma katmanını kaldıracaktır.',
|
||||
'form' => [
|
||||
'code' => [
|
||||
'label' => 'Doğrulama uygulamanızdaki 6 haneli kodu girin',
|
||||
'validation_attribute' => 'kod',
|
||||
'actions' => [
|
||||
'use_recovery_code' => [
|
||||
'label' => 'Bunun yerine kurtarma kodu girin',
|
||||
],
|
||||
],
|
||||
'messages' => [
|
||||
'invalid' => 'Girmiş olduğunuz kod geçersiz.',
|
||||
],
|
||||
],
|
||||
'recovery_code' => [
|
||||
'label' => 'Veya, bir kurtarma kodu girin',
|
||||
'validation_attribute' => 'kurtarma kodu',
|
||||
'messages' => [
|
||||
'invalid' => 'Girmiş olduğunuz kurtarma kodu geçersiz.',
|
||||
],
|
||||
],
|
||||
],
|
||||
'actions' => [
|
||||
'submit' => [
|
||||
'label' => 'Uygulamayı devre dışı bırak',
|
||||
],
|
||||
],
|
||||
],
|
||||
'notifications' => [
|
||||
'disabled' => [
|
||||
'title' => 'Doğrulama uygulaması devre dışı bırakıldı',
|
||||
],
|
||||
],
|
||||
];
|
||||
43
lang/vendor/filament-panels/tk/auth/multi-factor/app/actions/regenerate-recovery-codes.php
vendored
Normal file
43
lang/vendor/filament-panels/tk/auth/multi-factor/app/actions/regenerate-recovery-codes.php
vendored
Normal file
@@ -0,0 +1,43 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'label' => 'Kurtarma kodlarını yeniden oluştur',
|
||||
'modal' => [
|
||||
'heading' => 'Kurtarma kodlarını yeniden oluştur',
|
||||
'description' => 'Eğer kurtarma kodlarınızı kaybederseniz buradan yeniden oluşturabilirsiniz. Eski kodlarınız devre dışı kalacaktır.',
|
||||
'form' => [
|
||||
'code' => [
|
||||
'label' => 'Doğrulama uygulamanızdaki 6 haneli kodu girin',
|
||||
'validation_attribute' => 'kod',
|
||||
'messages' => [
|
||||
'invalid' => 'Girmiş olduğunuz kod geçersiz.',
|
||||
],
|
||||
],
|
||||
'password' => [
|
||||
'label' => 'Veya, geçerli şifrenizi girin',
|
||||
'validation_attribute' => 'şifre',
|
||||
],
|
||||
],
|
||||
'actions' => [
|
||||
'submit' => [
|
||||
'label' => 'Kodları yeniden oluştur',
|
||||
],
|
||||
],
|
||||
],
|
||||
'notifications' => [
|
||||
'regenerated' => [
|
||||
'title' => 'Yeni kurtarma kodları oluşturuldu',
|
||||
],
|
||||
],
|
||||
'show_new_recovery_codes' => [
|
||||
'modal' => [
|
||||
'heading' => 'Yeni kodlar',
|
||||
'description' => 'Lütfen bu kodları güvenli bir şekilde saklayın. Bu kodlar size sadece bir kere gösterilecek ve eğer doğrulama uygulamanıza erişiminizi kaybederseniz bu kodları kullanmanız gerekecek:',
|
||||
'actions' => [
|
||||
'submit' => [
|
||||
'label' => 'Ýap',
|
||||
],
|
||||
],
|
||||
],
|
||||
],
|
||||
];
|
||||
44
lang/vendor/filament-panels/tk/auth/multi-factor/app/actions/set-up.php
vendored
Normal file
44
lang/vendor/filament-panels/tk/auth/multi-factor/app/actions/set-up.php
vendored
Normal file
@@ -0,0 +1,44 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'label' => 'Kur',
|
||||
'modal' => [
|
||||
'heading' => 'Doğrulama uygulaması kur',
|
||||
'description' => 'Devam etmek için Google Authenticator gibi (<x-filament::link href="https://itunes.apple.com/us/app/google-authenticator/id388497605" target="_blank">iOS</x-filament::link>, <x-filament::link href="https://play.google.com/store/apps/details?id=com.google.android.apps.authenticator2" target="_blank">Android</x-filament::link>) uygulamalardan birine ihtiyacınız olacak.',
|
||||
'content' => [
|
||||
'qr_code' => [
|
||||
'instruction' => 'Doğrulama uygulamanızla aşağıdaki QR kodunu taratın:',
|
||||
'alt' => 'QR kodunu taratın',
|
||||
],
|
||||
'text_code' => [
|
||||
'instruction' => 'Veya aşağıdaki kodu elle girin:',
|
||||
'messages' => [
|
||||
'copied' => 'Göçürildi',
|
||||
],
|
||||
],
|
||||
'recovery_codes' => [
|
||||
'instruction' => 'Lütfen bu kodları güvenli bir şekilde saklayın. Bu kodlar size sadece bir kere gösterilecek ve eğer doğrulama uygulamanıza erişiminizi kaybederseniz bu kodları kullanmanız gerekecek:',
|
||||
],
|
||||
],
|
||||
'form' => [
|
||||
'code' => [
|
||||
'label' => 'Doğrulama uygulamanızdaki 6 haneli kodu girin',
|
||||
'validation_attribute' => 'kod',
|
||||
'below_content' => 'Giriş yaparken veya hassas bir işlem gerçekleştirirken doğrulama uygulamanız tarafından oluşturulan 6 haneli kodu girmeniz gerekecek.',
|
||||
'messages' => [
|
||||
'invalid' => 'Girmiş olduğunuz kod geçersiz.',
|
||||
],
|
||||
],
|
||||
],
|
||||
'actions' => [
|
||||
'submit' => [
|
||||
'label' => 'Doğrulama uygulamasını etkinleştir',
|
||||
],
|
||||
],
|
||||
],
|
||||
'notifications' => [
|
||||
'enabled' => [
|
||||
'title' => 'Doğrulama uygulaması etkinleştirildi',
|
||||
],
|
||||
],
|
||||
];
|
||||
36
lang/vendor/filament-panels/tk/auth/multi-factor/app/provider.php
vendored
Normal file
36
lang/vendor/filament-panels/tk/auth/multi-factor/app/provider.php
vendored
Normal file
@@ -0,0 +1,36 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'management_schema' => [
|
||||
'actions' => [
|
||||
'label' => 'Doğrulama uygulaması',
|
||||
'below_content' => 'Girişinizi doğrulamak için doğrulama uygulamanız tarafından oluşturulan kodları kullanın',
|
||||
'messages' => [
|
||||
'enabled' => 'Etkin',
|
||||
'disabled' => 'Devre Dışı',
|
||||
],
|
||||
],
|
||||
],
|
||||
'login_form' => [
|
||||
'label' => 'Use a code from your authenticator app',
|
||||
'code' => [
|
||||
'label' => 'Girişinizi doğrulamak için doğrulama uygulamanız tarafından oluşturulan bir kod girin',
|
||||
'validation_attribute' => 'kod',
|
||||
'actions' => [
|
||||
'use_recovery_code' => [
|
||||
'label' => 'Kurtarma kodu kullan',
|
||||
],
|
||||
],
|
||||
'messages' => [
|
||||
'invalid' => 'Girmiş olduğunuz kod geçersiz.',
|
||||
],
|
||||
],
|
||||
'recovery_code' => [
|
||||
'label' => 'Veya kurtarma kodu girin',
|
||||
'validation_attribute' => 'kurtarma kodu',
|
||||
'messages' => [
|
||||
'invalid' => 'Girmiş olduğunuz kurtarma kodu geçersiz.',
|
||||
],
|
||||
],
|
||||
],
|
||||
];
|
||||
38
lang/vendor/filament-panels/tk/auth/multi-factor/email/actions/disable.php
vendored
Normal file
38
lang/vendor/filament-panels/tk/auth/multi-factor/email/actions/disable.php
vendored
Normal file
@@ -0,0 +1,38 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'label' => 'Ýap',
|
||||
'modal' => [
|
||||
'heading' => 'E-posta doğrulama kodlarını devre dışı bırak',
|
||||
'description' => 'E-posta doğrulama kodları almayı durdurmak istediğinizden emin misiniz? Bu özelliği devre dışı bırakmak hesabınızdan ek bir güvenlik katmanını kaldıracaktır.',
|
||||
'form' => [
|
||||
'code' => [
|
||||
'label' => 'Size e-posta ile gönderdiğimiz 6 haneli kodu girin',
|
||||
'validation_attribute' => 'kod',
|
||||
'actions' => [
|
||||
'resend' => [
|
||||
'label' => 'E-posta ile yeni kod gönder',
|
||||
'notifications' => [
|
||||
'resent' => [
|
||||
'title' => 'Size e-posta ile yeni bir kod gönderdik',
|
||||
],
|
||||
],
|
||||
],
|
||||
],
|
||||
'messages' => [
|
||||
'invalid' => 'Girdiğiniz kod geçersiz.',
|
||||
],
|
||||
],
|
||||
],
|
||||
'actions' => [
|
||||
'submit' => [
|
||||
'label' => 'E-posta doğrulama kodlarını devre dışı bırak',
|
||||
],
|
||||
],
|
||||
],
|
||||
'notifications' => [
|
||||
'disabled' => [
|
||||
'title' => 'E-posta doğrulama kodları devre dışı bırakıldı',
|
||||
],
|
||||
],
|
||||
];
|
||||
38
lang/vendor/filament-panels/tk/auth/multi-factor/email/actions/set-up.php
vendored
Normal file
38
lang/vendor/filament-panels/tk/auth/multi-factor/email/actions/set-up.php
vendored
Normal file
@@ -0,0 +1,38 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'label' => 'Kur',
|
||||
'modal' => [
|
||||
'heading' => 'E-posta doğrulama kodlarını kur',
|
||||
'description' => 'Her giriş yaptığınızda veya hassas işlemler gerçekleştirdiğinizde size e-posta ile gönderdiğimiz 6 haneli kodu girmeniz gerekecek. Kurulumu tamamlamak için e-postanızı kontrol edin ve 6 haneli kodu girin.',
|
||||
'form' => [
|
||||
'code' => [
|
||||
'label' => 'Size e-posta ile gönderdiğimiz 6 haneli kodu girin',
|
||||
'validation_attribute' => 'kod',
|
||||
'actions' => [
|
||||
'resend' => [
|
||||
'label' => 'E-posta ile yeni kod gönder',
|
||||
'notifications' => [
|
||||
'resent' => [
|
||||
'title' => 'Size e-posta ile yeni bir kod gönderdik',
|
||||
],
|
||||
],
|
||||
],
|
||||
],
|
||||
'messages' => [
|
||||
'invalid' => 'Girdiğiniz kod geçersiz.',
|
||||
],
|
||||
],
|
||||
],
|
||||
'actions' => [
|
||||
'submit' => [
|
||||
'label' => 'E-posta doğrulama kodlarını etkinleştir',
|
||||
],
|
||||
],
|
||||
],
|
||||
'notifications' => [
|
||||
'enabled' => [
|
||||
'title' => 'E-posta doğrulama kodları etkinleştirildi',
|
||||
],
|
||||
],
|
||||
];
|
||||
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'subject' => 'Giriş kodunuz',
|
||||
'lines' => [
|
||||
0 => 'Giriş kodunuz: :code',
|
||||
1 => 'Bu kod 1 dakika içinde geçersiz olacak.|Bu kod :minutes dakika içinde geçersiz olacak.',
|
||||
],
|
||||
];
|
||||
34
lang/vendor/filament-panels/tk/auth/multi-factor/email/provider.php
vendored
Normal file
34
lang/vendor/filament-panels/tk/auth/multi-factor/email/provider.php
vendored
Normal file
@@ -0,0 +1,34 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'management_schema' => [
|
||||
'actions' => [
|
||||
'label' => 'E-posta doğrulama kodları',
|
||||
'below_content' => 'Giriş sırasında kimliğinizi doğrulamak için e-posta adresinize geçici bir kod alın.',
|
||||
'messages' => [
|
||||
'enabled' => 'Etkin',
|
||||
'disabled' => 'Devre dışı',
|
||||
],
|
||||
],
|
||||
],
|
||||
'login_form' => [
|
||||
'label' => 'E-postanıza kod gönder',
|
||||
'code' => [
|
||||
'label' => 'Size e-posta ile gönderdiğimiz 6 haneli kodu girin',
|
||||
'validation_attribute' => 'kod',
|
||||
'actions' => [
|
||||
'resend' => [
|
||||
'label' => 'E-posta ile yeni kod gönder',
|
||||
'notifications' => [
|
||||
'resent' => [
|
||||
'title' => 'Size e-posta ile yeni bir kod gönderdik',
|
||||
],
|
||||
],
|
||||
],
|
||||
],
|
||||
'messages' => [
|
||||
'invalid' => 'Girdiğiniz kod geçersiz.',
|
||||
],
|
||||
],
|
||||
],
|
||||
];
|
||||
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'title' => 'İki faktörlü kimlik doğrulamayı (2FA) kur',
|
||||
'heading' => 'İki faktörlü kimlik doğrulamayı kur',
|
||||
'subheading' => '2FA, giriş yaparken ikinci bir doğrulama formu gerektirerek hesabınıza ek bir güvenlik katmanı ekler.',
|
||||
'actions' => [
|
||||
'continue' => [
|
||||
'label' => 'Devam et',
|
||||
],
|
||||
],
|
||||
];
|
||||
18
lang/vendor/filament-panels/tk/auth/multi-factor/recovery-codes-modal-content.php
vendored
Normal file
18
lang/vendor/filament-panels/tk/auth/multi-factor/recovery-codes-modal-content.php
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'actions' => [
|
||||
0 => 'Tüm kodları',
|
||||
'copy' => [
|
||||
'label' => 'kopyalamak',
|
||||
],
|
||||
1 => 'or',
|
||||
'download' => [
|
||||
'label' => 'indirmek',
|
||||
],
|
||||
2 => 'için tıklayın.',
|
||||
],
|
||||
'messages' => [
|
||||
'copied' => 'Göçürildi',
|
||||
],
|
||||
];
|
||||
12
lang/vendor/filament-panels/tk/auth/notifications/notice-of-email-change-request.php
vendored
Normal file
12
lang/vendor/filament-panels/tk/auth/notifications/notice-of-email-change-request.php
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'subject' => 'E-posta adresiniz güncelleniyor',
|
||||
'lines' => [
|
||||
0 => 'E-posta adresinizin güncellenmesi isteğini aldık. Bu güncelleme işlemi şifreniz kullanılarak doğrulanmıştır.',
|
||||
1 => 'Doğrulanınca hesabınızın E-posta adresi belirtilen adres olarak güncellenecektir: :email.',
|
||||
2 => 'Aşağıdaki butonu kullanarak E-posta adresi doğrulanmadan bu güncelleme isteğini iptal edebilirsiniz.',
|
||||
3 => 'Eğer bu isteği siz yapmadıysanız lütfen bizimle iletişime geçin.',
|
||||
],
|
||||
'action' => 'Güncelleme İsteğini İptal Et',
|
||||
];
|
||||
48
lang/vendor/filament-panels/tk/auth/pages/edit-profile.php
vendored
Normal file
48
lang/vendor/filament-panels/tk/auth/pages/edit-profile.php
vendored
Normal file
@@ -0,0 +1,48 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'label' => 'Profil',
|
||||
'form' => [
|
||||
'email' => [
|
||||
'label' => 'E-poçta salgysy',
|
||||
],
|
||||
'name' => [
|
||||
'label' => 'Ad',
|
||||
],
|
||||
'password' => [
|
||||
'label' => 'Yeni şifre',
|
||||
'validation_attribute' => 'şifre',
|
||||
],
|
||||
'password_confirmation' => [
|
||||
'label' => 'Yeni şifreyi onayla',
|
||||
'validation_attribute' => 'şifre onayı',
|
||||
],
|
||||
'current_password' => [
|
||||
'label' => 'Güncel şifre',
|
||||
'below_content' => 'Güvenliğiniz için lütfen güncel şifrenizi girin.',
|
||||
'validation_attribute' => 'güncel şifre',
|
||||
],
|
||||
'actions' => [
|
||||
'save' => [
|
||||
'label' => 'Değişiklikleri Kaydet',
|
||||
],
|
||||
],
|
||||
],
|
||||
'multi_factor_authentication' => [
|
||||
'label' => 'İki Faktörlü Doğrulama (2FA)',
|
||||
],
|
||||
'notifications' => [
|
||||
'email_change_verification_sent' => [
|
||||
'title' => 'E-posta adresi güncelleme isteği gönderildi',
|
||||
'body' => 'E-posta adresi güncelleme isteği :email adresine gönderildi. Lütfen güncellemeyi tamamlamak için E-posta adresinizi doğrulayın.',
|
||||
],
|
||||
'saved' => [
|
||||
'title' => 'Kaydedildi',
|
||||
],
|
||||
],
|
||||
'actions' => [
|
||||
'cancel' => [
|
||||
'label' => 'Ýatyr',
|
||||
],
|
||||
],
|
||||
];
|
||||
24
lang/vendor/filament-panels/tk/auth/pages/email-verification/email-verification-prompt.php
vendored
Normal file
24
lang/vendor/filament-panels/tk/auth/pages/email-verification/email-verification-prompt.php
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'title' => 'E-posta adresinizi doğrulayın',
|
||||
'heading' => 'E-posta adresinizi doğrulayın',
|
||||
'actions' => [
|
||||
'resend_notification' => [
|
||||
'label' => 'Yeniden Gönder',
|
||||
],
|
||||
],
|
||||
'messages' => [
|
||||
'notification_not_received' => 'Gönderdiğimiz e-postayı almadınız mı?',
|
||||
'notification_sent' => ':email adresine, e-posta adresinizi nasıl doğrulayacağınıza ilişkin talimatları içeren bir e-posta gönderdik.',
|
||||
],
|
||||
'notifications' => [
|
||||
'notification_resent' => [
|
||||
'title' => 'E-posta yeniden gönderildi.',
|
||||
],
|
||||
'notification_resend_throttled' => [
|
||||
'title' => 'Çok fazla yeniden gönderme denemesi',
|
||||
'body' => ':seconds sekuntdan soň gaýtadan synanyşyň.',
|
||||
],
|
||||
],
|
||||
];
|
||||
85
lang/vendor/filament-panels/tk/auth/pages/login.php
vendored
Normal file
85
lang/vendor/filament-panels/tk/auth/pages/login.php
vendored
Normal file
@@ -0,0 +1,85 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => 'Giriş',
|
||||
|
||||
'heading' => 'Girmek',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'register' => [
|
||||
'before' => 'ýa-da',
|
||||
'label' => 'hasap açmak',
|
||||
],
|
||||
|
||||
'request_password_reset' => [
|
||||
'label' => 'Paroly ýatdan çykardyňyzmy?',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'email' => [
|
||||
'label' => 'E-poçta salgysy',
|
||||
],
|
||||
|
||||
'password' => [
|
||||
'label' => 'Parol',
|
||||
],
|
||||
|
||||
'remember' => [
|
||||
'label' => 'Meni ýatda sakla',
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'authenticate' => [
|
||||
'label' => 'Girmek',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'multi_factor' => [
|
||||
|
||||
'heading' => 'Şahsyýetiňizi tassyklaň',
|
||||
|
||||
'subheading' => 'Girmegi dowam etdirmek üçin şahsyýetiňizi tassyklaň.',
|
||||
|
||||
'form' => [
|
||||
|
||||
'provider' => [
|
||||
'label' => 'Nähili tassyklamak isleýärsiňiz?',
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'authenticate' => [
|
||||
'label' => 'Girişi tassykla',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'messages' => [
|
||||
|
||||
'failed' => 'Bu maglumatlar biziň ýazgylarymyza gabat gelenok.',
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'throttled' => [
|
||||
'title' => 'Giriş synanyşyklary köp',
|
||||
'body' => ':seconds sekuntdan soň gaýtadan synanyşyň.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
30
lang/vendor/filament-panels/tk/auth/pages/password-reset/request-password-reset.php
vendored
Normal file
30
lang/vendor/filament-panels/tk/auth/pages/password-reset/request-password-reset.php
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'title' => 'Şifrenizi sıfırlayın',
|
||||
'heading' => 'Şifrenizi mi unuttunuz?',
|
||||
'actions' => [
|
||||
'login' => [
|
||||
'label' => 'girişe geri dön',
|
||||
],
|
||||
],
|
||||
'form' => [
|
||||
'email' => [
|
||||
'label' => 'E-poçta salgysy',
|
||||
],
|
||||
'actions' => [
|
||||
'request' => [
|
||||
'label' => 'E-posta gönder',
|
||||
],
|
||||
],
|
||||
],
|
||||
'notifications' => [
|
||||
'sent' => [
|
||||
'body' => 'Eğer hesabınız yoksa bir e-posta almayacaksınız.',
|
||||
],
|
||||
'throttled' => [
|
||||
'title' => 'Çok fazla istek',
|
||||
'body' => ':seconds sekuntdan soň gaýtadan synanyşyň.',
|
||||
],
|
||||
],
|
||||
];
|
||||
29
lang/vendor/filament-panels/tk/auth/pages/password-reset/reset-password.php
vendored
Normal file
29
lang/vendor/filament-panels/tk/auth/pages/password-reset/reset-password.php
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'title' => 'Şifrenizi sıfırlayın',
|
||||
'heading' => 'Şifrenizi sıfırlayın',
|
||||
'form' => [
|
||||
'email' => [
|
||||
'label' => 'E-poçta salgysy',
|
||||
],
|
||||
'password' => [
|
||||
'label' => 'Parol',
|
||||
'validation_attribute' => 'password',
|
||||
],
|
||||
'password_confirmation' => [
|
||||
'label' => 'Şifreyi onayla',
|
||||
],
|
||||
'actions' => [
|
||||
'reset' => [
|
||||
'label' => 'Şifreyi sıfırla',
|
||||
],
|
||||
],
|
||||
],
|
||||
'notifications' => [
|
||||
'throttled' => [
|
||||
'title' => 'Çok fazla sıfırlama denemesi',
|
||||
'body' => ':seconds sekuntdan soň gaýtadan synanyşyň.',
|
||||
],
|
||||
],
|
||||
];
|
||||
38
lang/vendor/filament-panels/tk/auth/pages/register.php
vendored
Normal file
38
lang/vendor/filament-panels/tk/auth/pages/register.php
vendored
Normal file
@@ -0,0 +1,38 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'title' => 'Kayıt Ol',
|
||||
'heading' => 'Üye Ol',
|
||||
'actions' => [
|
||||
'login' => [
|
||||
'before' => 'ýa-da',
|
||||
'label' => 'hesabınıza giriş yapın',
|
||||
],
|
||||
],
|
||||
'form' => [
|
||||
'email' => [
|
||||
'label' => 'E-poçta salgysy',
|
||||
],
|
||||
'name' => [
|
||||
'label' => 'Ad',
|
||||
],
|
||||
'password' => [
|
||||
'label' => 'Parol',
|
||||
'validation_attribute' => 'password',
|
||||
],
|
||||
'password_confirmation' => [
|
||||
'label' => 'Şifreyi onayla',
|
||||
],
|
||||
'actions' => [
|
||||
'register' => [
|
||||
'label' => 'Üye ol',
|
||||
],
|
||||
],
|
||||
],
|
||||
'notifications' => [
|
||||
'throttled' => [
|
||||
'title' => 'Çok fazla kayıt denemesi',
|
||||
'body' => ':seconds sekuntdan soň gaýtadan synanyşyň.',
|
||||
],
|
||||
],
|
||||
];
|
||||
6
lang/vendor/filament-panels/tk/error-notifications.php
vendored
Normal file
6
lang/vendor/filament-panels/tk/error-notifications.php
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'title' => 'Sayfa yüklenirken hata oluştu',
|
||||
'body' => 'Sayfa yüklenirken bir hata oluştu. Lütfen daha sonra tekrar deneyin.',
|
||||
];
|
||||
9
lang/vendor/filament-panels/tk/global-search.php
vendored
Normal file
9
lang/vendor/filament-panels/tk/global-search.php
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'field' => [
|
||||
'label' => 'Genel arama',
|
||||
'placeholder' => 'Gözleg',
|
||||
],
|
||||
'no_results_message' => 'Sonuç bulunamadı.',
|
||||
];
|
||||
72
lang/vendor/filament-panels/tk/layout.php
vendored
Normal file
72
lang/vendor/filament-panels/tk/layout.php
vendored
Normal file
@@ -0,0 +1,72 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'direction' => 'ltr',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'billing' => [
|
||||
'label' => 'Abunalygy dolandyr',
|
||||
],
|
||||
|
||||
'logout' => [
|
||||
'label' => 'Çykmak',
|
||||
],
|
||||
|
||||
'open_database_notifications' => [
|
||||
'label' => 'Habarnamalar',
|
||||
],
|
||||
|
||||
'open_user_menu' => [
|
||||
'label' => 'Ulanyjy menýusy',
|
||||
],
|
||||
|
||||
'sidebar' => [
|
||||
|
||||
'collapse' => [
|
||||
'label' => 'Gapdal paneli ýygnamak',
|
||||
],
|
||||
|
||||
'expand' => [
|
||||
'label' => 'Gapdal paneli giňeltmek',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'theme_switcher' => [
|
||||
|
||||
'dark' => [
|
||||
'label' => 'Gara tema açmak',
|
||||
],
|
||||
|
||||
'light' => [
|
||||
'label' => 'Açyk tema açmak',
|
||||
],
|
||||
|
||||
'system' => [
|
||||
'label' => 'Ulgam temasyny açmak',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'avatar' => [
|
||||
'alt' => ':name awatary',
|
||||
],
|
||||
|
||||
'logo' => [
|
||||
'alt' => ':name logotipi',
|
||||
],
|
||||
|
||||
'tenant_menu' => [
|
||||
|
||||
'search_field' => [
|
||||
'label' => 'Kirdeçi gözlegi',
|
||||
'placeholder' => 'Gözleg',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
33
lang/vendor/filament-panels/tk/pages/dashboard.php
vendored
Normal file
33
lang/vendor/filament-panels/tk/pages/dashboard.php
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => 'Dolandyryş paneli',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'filter' => [
|
||||
|
||||
'label' => 'Süzgüç',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Süzgüç',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'apply' => [
|
||||
|
||||
'label' => 'Ulan',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
16
lang/vendor/filament-panels/tk/pages/tenancy/edit-tenant-profile.php
vendored
Normal file
16
lang/vendor/filament-panels/tk/pages/tenancy/edit-tenant-profile.php
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'form' => [
|
||||
'actions' => [
|
||||
'save' => [
|
||||
'label' => 'Değişiklikleri kaydet',
|
||||
],
|
||||
],
|
||||
],
|
||||
'notifications' => [
|
||||
'saved' => [
|
||||
'title' => 'Kaydedildi',
|
||||
],
|
||||
],
|
||||
];
|
||||
24
lang/vendor/filament-panels/tk/resources/pages/create-record.php
vendored
Normal file
24
lang/vendor/filament-panels/tk/resources/pages/create-record.php
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'title' => ':label oluştur',
|
||||
'breadcrumb' => 'Döret',
|
||||
'form' => [
|
||||
'actions' => [
|
||||
'cancel' => [
|
||||
'label' => 'Ýatyr',
|
||||
],
|
||||
'create' => [
|
||||
'label' => 'Döret',
|
||||
],
|
||||
'create_another' => [
|
||||
'label' => 'Oluştur & yeni oluştur',
|
||||
],
|
||||
],
|
||||
],
|
||||
'notifications' => [
|
||||
'created' => [
|
||||
'title' => 'Oluşturuldu',
|
||||
],
|
||||
],
|
||||
];
|
||||
27
lang/vendor/filament-panels/tk/resources/pages/edit-record.php
vendored
Normal file
27
lang/vendor/filament-panels/tk/resources/pages/edit-record.php
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'title' => ':label üýtget',
|
||||
'breadcrumb' => 'Üýtget',
|
||||
'navigation_label' => 'Üýtget',
|
||||
'form' => [
|
||||
'actions' => [
|
||||
'cancel' => [
|
||||
'label' => 'Ýatyr',
|
||||
],
|
||||
'save' => [
|
||||
'label' => 'Değişiklikleri kaydet',
|
||||
],
|
||||
],
|
||||
],
|
||||
'content' => [
|
||||
'tab' => [
|
||||
'label' => 'Üýtget',
|
||||
],
|
||||
],
|
||||
'notifications' => [
|
||||
'saved' => [
|
||||
'title' => 'Kaydedildi',
|
||||
],
|
||||
],
|
||||
];
|
||||
5
lang/vendor/filament-panels/tk/resources/pages/list-records.php
vendored
Normal file
5
lang/vendor/filament-panels/tk/resources/pages/list-records.php
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'breadcrumb' => 'Sanaw',
|
||||
];
|
||||
5
lang/vendor/filament-panels/tk/resources/pages/manage-related-records.php
vendored
Normal file
5
lang/vendor/filament-panels/tk/resources/pages/manage-related-records.php
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'title' => ':label :relationship yönet',
|
||||
];
|
||||
12
lang/vendor/filament-panels/tk/resources/pages/view-record.php
vendored
Normal file
12
lang/vendor/filament-panels/tk/resources/pages/view-record.php
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'title' => ':label gör',
|
||||
'breadcrumb' => 'Gör',
|
||||
'navigation_label' => 'Gör',
|
||||
'content' => [
|
||||
'tab' => [
|
||||
'label' => 'Gör',
|
||||
],
|
||||
],
|
||||
];
|
||||
5
lang/vendor/filament-panels/tk/unsaved-changes-alert.php
vendored
Normal file
5
lang/vendor/filament-panels/tk/unsaved-changes-alert.php
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'body' => 'Kayıt edilmemiş değişiklikleriniz mevcut. Bu sayfayı terk etmek istediğinize emin misiniz?',
|
||||
];
|
||||
10
lang/vendor/filament-panels/tk/widgets/account-widget.php
vendored
Normal file
10
lang/vendor/filament-panels/tk/widgets/account-widget.php
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'actions' => [
|
||||
'logout' => [
|
||||
'label' => 'Çykmak',
|
||||
],
|
||||
],
|
||||
'welcome' => 'Hoş geldin',
|
||||
];
|
||||
12
lang/vendor/filament-panels/tk/widgets/filament-info-widget.php
vendored
Normal file
12
lang/vendor/filament-panels/tk/widgets/filament-info-widget.php
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'actions' => [
|
||||
'open_documentation' => [
|
||||
'label' => 'Dokümantasyon',
|
||||
],
|
||||
'open_github' => [
|
||||
'label' => 'GitHub',
|
||||
],
|
||||
],
|
||||
];
|
||||
Reference in New Issue
Block a user