1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-04 11:44:27 +08:00

Adjust formats to be EN-UK

This commit is contained in:
HoutarouOreki
2018-06-15 14:11:21 +02:00
Unverified
parent 39224931f8
commit f0fbc04d92
2 changed files with 2 additions and 2 deletions
+1 -1
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}");
}
}
+1 -1
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}");
}
}