Merge pull request #19223

* Change manifesto to manifest
This commit is contained in:
Sailor
2023-08-17 01:20:09 +03:00
committed by GitHub
parent 24404fa010
commit b38685622e
2 changed files with 4 additions and 4 deletions

View File

@@ -33,7 +33,7 @@ namespace Content.Client.RoundEnd
RoundId = roundId;
var roundEndTabs = new TabContainer();
roundEndTabs.AddChild(MakeRoundEndSummaryTab(gm, roundEnd, roundTimeSpan, roundId));
roundEndTabs.AddChild(MakePlayerManifestoTab(info));
roundEndTabs.AddChild(MakePlayerManifestTab(info));
Contents.AddChild(roundEndTabs);
@@ -90,12 +90,12 @@ namespace Content.Client.RoundEnd
return roundEndSummaryTab;
}
private BoxContainer MakePlayerManifestoTab(RoundEndMessageEvent.RoundEndPlayerInfo[] playersInfo)
private BoxContainer MakePlayerManifestTab(RoundEndMessageEvent.RoundEndPlayerInfo[] playersInfo)
{
var playerManifestTab = new BoxContainer
{
Orientation = LayoutOrientation.Vertical,
Name = Loc.GetString("round-end-summary-window-player-manifesto-tab-title")
Name = Loc.GetString("round-end-summary-window-player-manifest-tab-title")
};
var playerInfoContainerScrollbox = new ScrollContainer

View File

@@ -1,6 +1,6 @@
round-end-summary-window-title = Round End Summary
round-end-summary-window-round-end-summary-tab-title = Round Information
round-end-summary-window-player-manifesto-tab-title = Player Manifesto
round-end-summary-window-player-manifest-tab-title = Player Manifest
round-end-summary-window-round-id-label = Round [color=white]#{$roundId}[/color] has ended.
round-end-summary-window-gamemode-name-label = The game mode was [color=white]{$gamemode}[/color].
round-end-summary-window-duration-label = It lasted for [color=yellow]{$hours} hours, {$minutes} minutes, and {$seconds} seconds.