From e49137f0e8fd2de47c9523144d0c07551703457a Mon Sep 17 00:00:00 2001 From: Richard Frost Date: Wed, 30 Oct 2024 21:01:29 -0600 Subject: [PATCH] :bug: Add namespaces to Options page translation --- src/script/optionPage.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/script/optionPage.ts b/src/script/optionPage.ts index 795e50a3..c9752a33 100644 --- a/src/script/optionPage.ts +++ b/src/script/optionPage.ts @@ -69,7 +69,7 @@ export default class OptionPage { this.prefersDarkScheme = window.matchMedia ? window.matchMedia('(prefers-color-scheme: dark)').matches : false; this.setHelpVersion(); this.filter = new this.Class.Filter; - this.translation = new this.Class.Translation; + this.translation = new this.Class.Translation(['common', 'options']); this.t = this.translation.t; this.applyTranslation(); }