diff --git a/Content.Client/RoundEnd/RoundEndSummaryWindow.cs b/Content.Client/RoundEnd/RoundEndSummaryWindow.cs index 9288195d7b..93212013a9 100644 --- a/Content.Client/RoundEnd/RoundEndSummaryWindow.cs +++ b/Content.Client/RoundEnd/RoundEndSummaryWindow.cs @@ -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 diff --git a/Resources/Locale/en-US/round-end/round-end-summary-window.ftl b/Resources/Locale/en-US/round-end/round-end-summary-window.ftl index 8069838e11..58d26319b3 100644 --- a/Resources/Locale/en-US/round-end/round-end-summary-window.ftl +++ b/Resources/Locale/en-US/round-end/round-end-summary-window.ftl @@ -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.