cant change lang of filamentphp v3
hi i tried to change language to spanish but its not working, i changed locale in app.php, also published all filament translations even clear cache but i still see my app in english. what im missing?
config/app.php
'locale' => env('APP_LOCALE', 'es'),
'fallback_locale' => env('APP_FALLBACK_LOCALE', 'es'),
}
'faker_locale' => env('APP_FAKER_LOCALE', 'es_ES'),
3 Replies
Any tip? Thank you
Did you adjust you
.env
file at all? Because all you did was setting the default values if there is no ENV var
Btw: If you set your fallback_locale
to the same locale as the default one, then it's not a "fallback":
'fallback_locale' => env('APP_FALLBACK_LOCALE', 'es'),
Correct i changed env too