From 10ac424514b44df120fdeb225d5a4b3dc751fe0f Mon Sep 17 00:00:00 2001 From: jarek Date: Mon, 12 Dec 2022 11:29:16 +0100 Subject: [PATCH] Update app/client/lib/localization.ts Co-authored-by: George Gevoian <85144792+georgegevoian@users.noreply.github.com> --- app/client/lib/localization.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/lib/localization.ts b/app/client/lib/localization.ts index 8fe6c155..ef28a049 100644 --- a/app/client/lib/localization.ts +++ b/app/client/lib/localization.ts @@ -150,7 +150,7 @@ function isLikeDomContents(value: any): boolean { * namespace and a key prefix (a scope). */ export function makeT(scope: string, instance?: typeof i18next) { - // Can create the scopedInstance yet as it might not be initialized. + // Can't create the scopedInstance yet as it might not be initialized. let scopedInstance: null|typeof i18next = null; let scopedResolver: null|typeof i18next.t = null; return function>(key: string, args?: T|null) {