Fix condition to check that a translation key exists

This commit is contained in:
Arnaud Peich 2022-10-19 15:45:19 +02:00
parent 4bb1d8c011
commit bac3067719

View File

@ -71,7 +71,7 @@ export async function setupLocale() {
* Resolves the translation of the given key, using the given options. * Resolves the translation of the given key, using the given options.
*/ */
export function t(key: string, args?: any): string { export function t(key: string, args?: any): string {
if (!i18next.exists(key)) { if (!i18next.exists(key, args)) {
const error = new Error(`Missing translation for key: ${key} and language: ${i18next.language}`); const error = new Error(`Missing translation for key: ${key} and language: ${i18next.language}`);
reportError(error); reportError(error);
} }