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:
Mekan1206
2026-06-03 22:10:17 +05:00
parent 96eefd70ba
commit 6f3069f619
75 changed files with 2830 additions and 47 deletions

View 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ň.',
],
],
];