()
| 42 | transCon = new TranslateController(this); |
| 43 | |
| 44 | constructor() { |
| 45 | super(); |
| 46 | this.config.load(); |
| 47 | // Lazy load to avoid circular dependencies |
| 48 | const { customTranslatorManager } = require("@/common/translate/custom-translators"); |
| 49 | customTranslatorManager.reload(); |
| 50 | observers.push(this); |
| 51 | observers.push(this.transCon); |
| 52 | this.bindLinks(actionLinks); |
| 53 | } |
| 54 | |
| 55 | set(identifier: Identifier, value: any): boolean { |
| 56 | return this.config.set(identifier, value); |