This commit is contained in:
Dane Everitt 2022-02-26 12:01:05 -05:00
parent 0dddcfca36
commit 134ba508e2
No known key found for this signature in database
GPG Key ID: EEA66103B3D71F53
2 changed files with 3 additions and 3 deletions

View File

@ -31,8 +31,8 @@ class LocaleController extends Controller
{ {
$data = $this->translator->getLoader()->load($locale, str_replace('.', '/', $namespace)); $data = $this->translator->getLoader()->load($locale, str_replace('.', '/', $namespace));
return JsonResponse::create($data, 200, [ return new JsonResponse($data, 200, [
'E-Tag' => md5(json_encode($data)), 'E-Tag' => md5(json_encode($data)), // @phpstan-ignore-line
]); ]);
} }
} }

View File

@ -8,7 +8,7 @@ i18n
.use(Backend) .use(Backend)
.use(initReactI18next) .use(initReactI18next)
.init({ .init({
debug: process.env.NODE_ENV !== 'production', debug: process.env.I18N_DEBUG === 'true',
lng: 'en', lng: 'en',
fallbackLng: 'en', fallbackLng: 'en',
keySeparator: '.', keySeparator: '.',