Language files (translations) not loading #1551
Replies: 4 comments 5 replies
-
Hi @ElisameAraujo, It looks like Laravel can't find the language file for your locale and fallback locale. Let's check some configurations...
I had no issue using PowerGrid in Portuguese when configuring my .env like so: APP_LOCALE='pt_BR'
APP_FALLBACK_LOCALE=en
APP_FAKER_LOCALE=en_US My 'locale' => env('APP_LOCALE', 'en'),
'fallback_locale' => env('APP_FALLBACK_LOCALE', 'en'), I tried with and without published languages. |
Beta Was this translation helpful? Give feedback.
-
Glad to hear it is working now! Did you check out the Flatpickr config section? Also, the Troubleshooting Flatpickr Locale Support may be useful to read. ⭐ Please consider starring our repository. It is a great way to support the project. |
Beta Was this translation helpful? Give feedback.
-
Please add the following code to your import flatpickr from "flatpickr";
import 'flatpickr/dist/flatpickr.min.css'; |
Beta Was this translation helpful? Give feedback.
-
Try to mirror this
|
Beta Was this translation helpful? Give feedback.
-
After install, configuration and creation of table following the configuration guide, I facing problems with loading the components
The date filter not working
I tried to republish the views and run
php artisan optimize:clear
, but got no luckIn the
livewire-powergrid.php
file I only change the theme for Bootstrap 5I using Laravel 11 + Bootstrap 5.3
resources/js/app.js
Beta Was this translation helpful? Give feedback.
All reactions