diff options
| author | Oskar Nyberg <oskar@mullvad.net> | 2020-02-19 15:59:50 +0100 |
|---|---|---|
| committer | Oskar Nyberg <oskar@mullvad.net> | 2020-02-19 15:59:50 +0100 |
| commit | e2eb2c6a40de00fd19d3d9a337b268580535d4c3 (patch) | |
| tree | f6c09b7e2fb0349f3e91449e849eb305504b6c09 /gui/src/shared/gettext.ts | |
| parent | 937cd41dc54d9426e8970f6d83ead110817c27e7 (diff) | |
| parent | a423058d74447fb9f24d12631d644b7cd597a517 (diff) | |
| download | mullvadvpn-e2eb2c6a40de00fd19d3d9a337b268580535d4c3.tar.xz mullvadvpn-e2eb2c6a40de00fd19d3d9a337b268580535d4c3.zip | |
Merge branch 'fix-lint-no-explicit-any'
Diffstat (limited to 'gui/src/shared/gettext.ts')
| -rw-r--r-- | gui/src/shared/gettext.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gui/src/shared/gettext.ts b/gui/src/shared/gettext.ts index e98a38ac33..5f33190109 100644 --- a/gui/src/shared/gettext.ts +++ b/gui/src/shared/gettext.ts @@ -22,6 +22,7 @@ export function loadTranslations(currentLocale: string, catalogue: Gettext) { } // NOTE: domain is not publicly exposed + // eslint-disable-next-line @typescript-eslint/no-explicit-any const domain = (catalogue as any).domain; for (const locale of preferredLocales) { @@ -67,6 +68,7 @@ function parseTranslation(locale: string, domain: string, catalogue: Gettext): b function setErrorHandler(catalogue: Gettext) { catalogue.on('error', (error) => { // NOTE: locale is not publicly exposed + // eslint-disable-next-line @typescript-eslint/no-explicit-any const catalogueLocale = (catalogue as any).locale; // Filter out the "no translation was found" errors for the source language. |
