Update pinned score container header to use localised title

This commit is contained in:
Salman Ahmed 2022-02-11 09:22:09 +03:00
parent b06caf2bf7
commit ccd6648961
1 changed files with 1 additions and 2 deletions

View File

@ -18,8 +18,7 @@ public RanksSection()
{
Children = new[]
{
// todo: update to use UsersStrings.ShowExtraTopRanksPinnedTitle once that exists.
new PaginatedScoreContainer(ScoreType.Pinned, User, "Pinned Scores"),
new PaginatedScoreContainer(ScoreType.Pinned, User, UsersStrings.ShowExtraTopRanksPinnedTitle),
new PaginatedScoreContainer(ScoreType.Best, User, UsersStrings.ShowExtraTopRanksBestTitle),
new PaginatedScoreContainer(ScoreType.Firsts, User, UsersStrings.ShowExtraTopRanksFirstTitle)
};