1
Some checks failed
Deploy / deploy (push) Has been cancelled

This commit is contained in:
ssww23
2026-03-17 01:59:00 +03:00
parent 93a655235a
commit 0ee9f05416
48 changed files with 1193 additions and 413 deletions

View File

@@ -78,11 +78,30 @@ return [
|
*/
'locale' => env('APP_LOCALE', 'en'),
'locale' => env('APP_LOCALE', 'ru'),
'fallback_locale' => env('APP_FALLBACK_LOCALE', 'en'),
'fallback_locale' => env('APP_FALLBACK_LOCALE', 'ru'),
'faker_locale' => env('APP_FAKER_LOCALE', 'en_US'),
'faker_locale' => env('APP_FAKER_LOCALE', 'ru_RU'),
'supported_locales' => [
'ru' => [
'label' => 'Русский',
'native' => 'Русский',
'short' => 'Рус',
'flag' => '🇷🇺',
'hreflang' => 'ru-RU',
'og_locale' => 'ru_RU',
],
'kk' => [
'label' => 'Kazakh',
'native' => 'Қазақша',
'short' => 'Қаз',
'flag' => '🇰🇿',
'hreflang' => 'kk-KZ',
'og_locale' => 'kk_KZ',
],
],
/*
|--------------------------------------------------------------------------