1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 11:42:56 +08:00

Localise user history graph.

This commit is contained in:
Lucas A 2021-07-24 10:13:20 +02:00
parent 6095aa2791
commit be26414fe3

View File

@ -34,8 +34,8 @@ namespace osu.Game.Overlays.Profile.Sections.Historical
return new TooltipDisplayContent return new TooltipDisplayContent
{ {
Name = tooltipCounterName, Name = tooltipCounterName,
Count = playCount.ToString("N0"), Count = playCount.ToLocalisableString("N0"),
Date = date.ToString("MMMM yyyy") Date = date.ToLocalisableString("MMMM yyyy")
}; };
} }
@ -63,8 +63,8 @@ namespace osu.Game.Overlays.Profile.Sections.Historical
private class TooltipDisplayContent private class TooltipDisplayContent
{ {
public LocalisableString Name; public LocalisableString Name;
public string Count; public LocalisableString Count;
public string Date; public LocalisableString Date;
} }
} }
} }