Localise profile header stat buttons.

This commit is contained in:
Lucas A 2021-07-24 10:14:13 +02:00
parent be26414fe3
commit 5b55366178
1 changed files with 2 additions and 1 deletions

View File

@ -4,6 +4,7 @@
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Sprites;
using osu.Framework.Localisation;
using osu.Game.Graphics;
using osu.Game.Graphics.Sprites;
using osuTK;
@ -46,6 +47,6 @@ protected ProfileHeaderStatisticsButton()
protected abstract IconUsage Icon { get; }
protected void SetValue(int value) => drawableText.Text = value.ToString("#,##0");
protected void SetValue(int value) => drawableText.Text = value.ToLocalisableString("#,##0");
}
}