mirror of
https://github.com/ppy/osu.git
synced 2026-05-13 20:33:35 +08:00
Use LocalisableString interpolation to make strings update properly
This commit is contained in:
@@ -266,8 +266,8 @@ namespace osu.Game.Tournament.Screens.Schedule
|
||||
}
|
||||
|
||||
protected override LocalisableString Format() => Date < DateTimeOffset.Now
|
||||
? $"Started {base.Format()}"
|
||||
: $"Starting {base.Format()}";
|
||||
? LocalisableString.Interpolate($"Started {base.Format()}")
|
||||
: LocalisableString.Interpolate($"Starting {base.Format()}");
|
||||
}
|
||||
|
||||
public partial class ScheduleContainer : Container
|
||||
|
||||
Reference in New Issue
Block a user