blob: dbd87fedf8ee9441ec1bdd4a3e02962c0ff42490 [file] [log] [blame]
Adrià Vilanova Martínez2ba5d8d2024-05-04 21:17:16 +02001import Script, { ScriptEnvironment, ScriptPage, ScriptRunPhase } from "../../common/architecture/scripts/Script"
2import MWI18nServer from "../../common/mainWorldI18n/Server";
3
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}