Missing strings
Hi, I'm testing out Filament 3 in an existing Laravel project.
I created an admin panel by
php artisan filament:install --panels
and navigation to localhost:8000/admin
It seems like all strings are missing, as only the Laravel string references are shown everywhere.
Like
- filament-panels::pages/dashboard.title
- filament-panels::widgets/filament-info-widget.actions.open_documentation.label
- etc
Any ideas what could be wrong?
Thanks!Solution:Jump to solution
What language and fallback language are you using? It's probably not fully translated.
4 Replies
Solution
What language and fallback language are you using? It's probably not fully translated.
Of course! I switched back to
en
and it worked. Thanks!You should never set the fallback language to the same language as the default language. Best to always use
en
as fallbackYep, that was the problem, they were the same. I've switched to
en
as fallback now. π