Skip to content

Commit

Permalink
🐛 Add namespaces to Options page translation
Browse files Browse the repository at this point in the history
  • Loading branch information
richardfrost committed Oct 31, 2024
1 parent f4f6246 commit e49137f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/script/optionPage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}
Expand Down

0 comments on commit e49137f

Please sign in to comment.