Skip to content

Commit

Permalink
Localize round end summary window gamemode
Browse files Browse the repository at this point in the history
  • Loading branch information
stalengd committed Sep 17, 2024
1 parent 3ea3470 commit 3467021
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Content.Client/RoundEnd/RoundEndSummaryWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,10 @@ private BoxContainer MakeRoundEndSummaryTab(string gamemode, string roundEnd, Ti
var gamemodeMessage = new FormattedMessage();
gamemodeMessage.AddMarkupOrThrow(Loc.GetString("round-end-summary-window-round-id-label", ("roundId", roundId)));
gamemodeMessage.AddText(" ");
gamemodeMessage.AddMarkupOrThrow(Loc.GetString("round-end-summary-window-gamemode-name-label", ("gamemode", gamemode)));
// SS220 Round End Titles begin
//gamemodeMessage.AddMarkupOrThrow(Loc.GetString("round-end-summary-window-gamemode-name-label", ("gamemode", gamemode)));
gamemodeMessage.AddMarkupOrThrow(Loc.GetString("round-end-summary-window-gamemode-name-label", ("gamemode", Loc.GetString(gamemode))));
// SS220 Round End Titles end
gamemodeLabel.SetMessage(gamemodeMessage);
roundEndSummaryContainer.AddChild(gamemodeLabel);

Expand Down

0 comments on commit 3467021

Please sign in to comment.