Fix i18n
This commit is contained in:
parent
0dddcfca36
commit
134ba508e2
2 changed files with 3 additions and 3 deletions
|
@ -31,8 +31,8 @@ class LocaleController extends Controller
|
|||
{
|
||||
$data = $this->translator->getLoader()->load($locale, str_replace('.', '/', $namespace));
|
||||
|
||||
return JsonResponse::create($data, 200, [
|
||||
'E-Tag' => md5(json_encode($data)),
|
||||
return new JsonResponse($data, 200, [
|
||||
'E-Tag' => md5(json_encode($data)), // @phpstan-ignore-line
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -8,7 +8,7 @@ i18n
|
|||
.use(Backend)
|
||||
.use(initReactI18next)
|
||||
.init({
|
||||
debug: process.env.NODE_ENV !== 'production',
|
||||
debug: process.env.I18N_DEBUG === 'true',
|
||||
lng: 'en',
|
||||
fallbackLng: 'en',
|
||||
keySeparator: '.',
|
||||
|
|
Loading…
Reference in a new issue