filament-panels labels not "rendering"
I installed filament in an existing project and I came across this problem. It looks like it doesn't convert/rendering the labels correctly. I deleted the vendor and node_modules, rebuild, published the translations, redid the layout according to the documentation, without success. And everything else already exists "it's a chat application", it continues to work correctly
Has anyone gone through something similar? The worst thing is that it seems very silly. PS I'm new to laravel.
8 Replies
Sounds like you just configured you Laravel app to use a
fallback_locale
that doesn't fit as fallback
What you are seeing is the translation string themselves. Means: There is no translation in your defined locale
and fallback_locale
It makes sense, I tried publishing the translation to resolve it, but it still didn't work.
I'm going to try to "reset" everything I have working in pt_BR for English
thanks
What's your
fallback_locale
in config/app.php
?pt_BR
I did a clean install, and with this fallback_locale, it worked correctly, but in this existing project it didn't.
That should be
en
in 99.9% of the cases π
Hm weird. We actually have pt_BR
localeYes, I tested it on a new project, it worked fine. I think I'm going to migrate all the code, part by part, to this new project to understand what is causing the problem.
thanks for your time!