mirror of https://github.com/ppy/osu
Localise profile line chart.
This commit is contained in:
parent
c92f69467a
commit
6095aa2791
|
@ -170,7 +170,7 @@ private void addRowTick(float y, double value)
|
|||
Origin = Anchor.CentreRight,
|
||||
RelativePositionAxes = Axes.Y,
|
||||
Margin = new MarginPadding { Right = 3 },
|
||||
Text = value.ToString("N0"),
|
||||
Text = value.ToLocalisableString("N0"),
|
||||
Font = OsuFont.GetFont(size: 12),
|
||||
Y = y
|
||||
});
|
||||
|
@ -193,7 +193,7 @@ private void addColumnTick(float x, DateTime value)
|
|||
{
|
||||
Origin = Anchor.CentreLeft,
|
||||
RelativePositionAxes = Axes.X,
|
||||
Text = value.ToString("MMM yyyy"),
|
||||
Text = value.ToLocalisableString("MMM yyyy"),
|
||||
Font = OsuFont.GetFont(size: 12, weight: FontWeight.SemiBold),
|
||||
Rotation = 45,
|
||||
X = x
|
||||
|
|
Loading…
Reference in New Issue