Changes for Kiseki

This commit is contained in:
rjindael 2023-06-10 23:45:50 -07:00
parent a16589ef92
commit 0e7b6eff0c
No known key found for this signature in database
GPG Key ID: D069369C906CCF31
8 changed files with 6 additions and 6 deletions

View File

@ -22,7 +22,7 @@ class Dictionary
{ {
// Get default locale string in laravel project // Get default locale string in laravel project
// and set it as default dictionary // and set it as default dictionary
$locale = Config::has('app.locale') ? Config::get('app.locale') : 'en'; $locale = Config::has('app.locale') ? Config::get('app.locale') : 'en_US';
$this->setDictionary($dictionary ?: $locale); $this->setDictionary($dictionary ?: $locale);
} }