Localise counter pills.

This commit is contained in:
Lucas A
2021-07-24 10:06:31 +02:00
parent d23e47c253
commit c92f69467a

View File

@ -8,6 +8,7 @@ using osu.Game.Graphics;
using osu.Framework.Bindables; using osu.Framework.Bindables;
using osu.Game.Graphics.Sprites; using osu.Game.Graphics.Sprites;
using osu.Framework.Allocation; using osu.Framework.Allocation;
using osu.Framework.Localisation;
namespace osu.Game.Overlays.Profile.Sections namespace osu.Game.Overlays.Profile.Sections
{ {
@ -48,7 +49,7 @@ namespace osu.Game.Overlays.Profile.Sections
private void onCurrentChanged(ValueChangedEvent<int> value) private void onCurrentChanged(ValueChangedEvent<int> value)
{ {
counter.Text = value.NewValue.ToString("N0"); counter.Text = value.NewValue.ToLocalisableString("N0");
} }
} }
} }