+
+ ${modifierLabel.length > 0
+ ? html`
+ ${modifierLabel.map(
+ (label) => html`
+
+ ${label}
+
+ `,
+ )}
+
+
+
+
+ ${this.currLobby
+ ? isStarting
+ ? html`${translateText(
+ "public_lobby.starting_game",
+ )}`
+ : html`${translateText(
+ "public_lobby.waiting_for_players",
+ )}
+ ${[0, 1, 2]
+ .map((i) =>
+ i === this.joiningDotIndex ? "•" : "·",
+ )
+ .join("")}`
+ : html`${translateText("public_lobby.join")}`}
+
+
+
+
${lobby.numClients}/${lobby.gameConfig
+ .maxPlayers}
+
+
+
+
+
+
+ ${translateText(
+ `map.${lobby.gameConfig.gameMap.toLowerCase().replace(/[\s.]+/g, "")}`,
+ )}
+
-
-
- ${translateText(
- `map.${lobby.gameConfig.gameMap.toLowerCase().replace(/[\s.]+/g, "")}`,
- )}
+
+