1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-06 09:47:52 +08:00

Adjust formats to be EN-UK

This commit is contained in:
HoutarouOreki 2018-06-15 14:11:21 +02:00
parent 39224931f8
commit f0fbc04d92
2 changed files with 2 additions and 2 deletions

View File

@ -62,6 +62,6 @@ namespace osu.Game.Graphics
private void updateTime() => Format();
public virtual string TooltipText => string.Format($"{date:d MMMM yyyy H:mm \"UTC\"z}");
public virtual string TooltipText => string.Format($"{date:MMMM d, yyyy h:mm tt \"UTC\"z}");
}
}

View File

@ -16,6 +16,6 @@ namespace osu.Game.Graphics
protected override string Format() => Text = string.Format($"{date:MMMM yyyy}");
public override string TooltipText => string.Format($"{date:d MMMM yyyy}");
public override string TooltipText => string.Format($"{date:MMMM d, yyyy}");
}
}