Rename class and key to better match expectations

This commit is contained in:
Dean Herbert 2023-06-26 13:38:34 +09:00
parent a7153478d6
commit b240ce295b
2 changed files with 7 additions and 7 deletions

View File

@ -5,9 +5,9 @@ using osu.Framework.Localisation;
namespace osu.Game.Localisation namespace osu.Game.Localisation
{ {
public static class MultiplayerCountdownButtonStrings public static class MultiplayerMatchStrings
{ {
private const string prefix = @"osu.Game.Resources.Localisation.MultiplayerCountdownButton"; private const string prefix = @"osu.Game.Resources.Localisation.MultiplayerMatchStrings";
/// <summary> /// <summary>
/// "Stop countdown" /// "Stop countdown"
@ -20,9 +20,9 @@ namespace osu.Game.Localisation
public static LocalisableString CountdownSettings => new TranslatableString(getKey(@"countdown_settings"), @"Countdown settings"); public static LocalisableString CountdownSettings => new TranslatableString(getKey(@"countdown_settings"), @"Countdown settings");
/// <summary> /// <summary>
/// "Start match in {0} minute/seconds" /// "Start match in {0}"
/// </summary> /// </summary>
public static LocalisableString StartMatchInTime(string humanReadableTime) => new TranslatableString(getKey(@"start_match_in"), @"Start match in {0}", humanReadableTime); public static LocalisableString StartMatchWithCountdown(string humanReadableTime) => new TranslatableString(getKey(@"start_match_width_countdown"), @"Start match in {0}", humanReadableTime);
private static string getKey(string key) => $@"{prefix}:{key}"; private static string getKey(string key) => $@"{prefix}:{key}";
} }

View File

@ -57,7 +57,7 @@ namespace osu.Game.Screens.OnlinePlay.Multiplayer.Match
base.Action = this.ShowPopover; base.Action = this.ShowPopover;
TooltipText = MultiplayerCountdownButtonStrings.CountdownSettings; TooltipText = MultiplayerMatchStrings.CountdownSettings;
} }
[BackgroundDependencyLoader] [BackgroundDependencyLoader]
@ -113,7 +113,7 @@ namespace osu.Game.Screens.OnlinePlay.Multiplayer.Match
flow.Add(new RoundedButton flow.Add(new RoundedButton
{ {
RelativeSizeAxes = Axes.X, RelativeSizeAxes = Axes.X,
Text = MultiplayerCountdownButtonStrings.StartMatchInTime(duration.Humanize()), Text = MultiplayerMatchStrings.StartMatchWithCountdown(duration.Humanize()),
BackgroundColour = colours.Green, BackgroundColour = colours.Green,
Action = () => Action = () =>
{ {
@ -128,7 +128,7 @@ namespace osu.Game.Screens.OnlinePlay.Multiplayer.Match
flow.Add(new RoundedButton flow.Add(new RoundedButton
{ {
RelativeSizeAxes = Axes.X, RelativeSizeAxes = Axes.X,
Text = MultiplayerCountdownButtonStrings.StopCountdown, Text = MultiplayerMatchStrings.StopCountdown,
BackgroundColour = colours.Red, BackgroundColour = colours.Red,
Action = () => Action = () =>
{ {