mirror of
https://github.com/ppy/osu.git
synced 2025-02-13 15:03:13 +08:00
Fix some missed instances of verbatim string conversion
This commit is contained in:
parent
e6f337a3c8
commit
c082498955
@ -27,11 +27,11 @@ namespace osu.Game.Overlays.Rankings.Tables
|
||||
{
|
||||
new ColouredRowText
|
||||
{
|
||||
Text = item.TotalScore.ToLocalisableString("N0"),
|
||||
Text = item.TotalScore.ToLocalisableString(@"N0"),
|
||||
},
|
||||
new RowText
|
||||
{
|
||||
Text = item.RankedScore.ToLocalisableString("N0")
|
||||
Text = item.RankedScore.ToLocalisableString(@"N0")
|
||||
}
|
||||
};
|
||||
}
|
||||
|
@ -48,12 +48,12 @@ namespace osu.Game.Overlays.Rankings.Tables
|
||||
protected sealed override Drawable[] CreateAdditionalContent(UserStatistics item) => new[]
|
||||
{
|
||||
new ColouredRowText { Text = item.DisplayAccuracy, },
|
||||
new ColouredRowText { Text = item.PlayCount.ToLocalisableString("N0") },
|
||||
new ColouredRowText { Text = item.PlayCount.ToLocalisableString(@"N0") },
|
||||
}.Concat(CreateUniqueContent(item)).Concat(new[]
|
||||
{
|
||||
new ColouredRowText { Text = (item.GradesCount[ScoreRank.XH] + item.GradesCount[ScoreRank.X]).ToLocalisableString("N0"), },
|
||||
new ColouredRowText { Text = (item.GradesCount[ScoreRank.SH] + item.GradesCount[ScoreRank.S]).ToLocalisableString("N0"), },
|
||||
new ColouredRowText { Text = item.GradesCount[ScoreRank.A].ToLocalisableString("N0"), }
|
||||
new ColouredRowText { Text = (item.GradesCount[ScoreRank.XH] + item.GradesCount[ScoreRank.X]).ToLocalisableString(@"N0"), },
|
||||
new ColouredRowText { Text = (item.GradesCount[ScoreRank.SH] + item.GradesCount[ScoreRank.S]).ToLocalisableString(@"N0"), },
|
||||
new ColouredRowText { Text = item.GradesCount[ScoreRank.A].ToLocalisableString(@"N0"), }
|
||||
}).ToArray();
|
||||
|
||||
protected abstract RankingsTableColumn[] CreateUniqueHeaders();
|
||||
|
Loading…
Reference in New Issue
Block a user