Fix condition to check that a translation key exists

pull/322/head
Arnaud Peich 2 years ago
parent 4bb1d8c011
commit bac3067719

@ -71,7 +71,7 @@ export async function setupLocale() {
* Resolves the translation of the given key, using the given options.
*/
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}`);
reportError(error);
}

Loading…
Cancel
Save