blob: 86d28fa7d1ceeb03058778fda760c6401f3f393f [file] [log] [blame]
Adrià Vilanova Martínez33a009c2024-11-09 22:41:56 +01001import Script, { ScriptEnvironment, ScriptPage, ScriptRunPhase } from "../../../common/architecture/scripts/Script"
2import MWI18nServer from "../../../common/mainWorldI18n/Server";
Adrià Vilanova Martínez2ba5d8d2024-05-04 21:17:16 +02003
4export default class MWI18nServerScript extends Script {
5 // The server should be available as soon as possible, since e.g. the
6 // XHRProxy already sends a request to the optionsWatcher server as soon as it
7 // is constructed.
8 priority = 1;
9
10 page = ScriptPage.CommunityConsole;
11 environment = ScriptEnvironment.ContentScript;
12 runPhase = ScriptRunPhase.Start;
13
14 execute() {
15 new MWI18nServer();
16 }
17}