1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 06:47:24 +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
{
Name = tooltipCounterName,
Count = playCount.ToString("N0"),
Date = date.ToString("MMMM yyyy")
Count = playCount.ToLocalisableString("N0"),
Date = date.ToLocalisableString("MMMM yyyy")
};
}
@ -63,8 +63,8 @@ namespace osu.Game.Overlays.Profile.Sections.Historical
private class TooltipDisplayContent
{
public LocalisableString Name;
public string Count;
public string Date;
public LocalisableString Count;
public LocalisableString Date;
}
}
}