We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f4b5da commit 781edcdCopy full SHA for 781edcd
resources/lang/en.json
@@ -214,7 +214,7 @@
214
"game_settings": "Game Settings",
215
"map": "Map",
216
"map_size": "Map Size",
217
- "difficulty": "Difficulty",
+ "difficulty": "Difficulty: ",
218
"bots": "Bots",
219
"game_mode": "Game Mode",
220
"teams": "Teams",
src/client/components/LobbyCard.ts
@@ -175,8 +175,9 @@ export class LobbyCard extends LitElement {
175
</div>
176
${this.showDifficulty
177
? html`<div class="text-md font-medium text-blue-100 mt-1">
178
- ${translateText("private_lobby.difficulty")}:
179
- ${this.formatDifficulty()}
+ ${translateText(
+ "private_lobby.difficulty",
180
+ )}${this.formatDifficulty()}
181
</div>`
182
: ""}
183
0 commit comments