1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 19:27:24 +08:00

Make string read better

This commit is contained in:
Dean Herbert 2022-04-07 18:20:15 +09:00
parent 555aee7b6a
commit b2c0eaeab4
2 changed files with 3 additions and 3 deletions

View File

@ -30,9 +30,9 @@ namespace osu.Game.Localisation
public static LocalisableString PreferOriginalMetadataLanguage => new TranslatableString(getKey(@"prefer_original"), @"Prefer metadata in original language");
/// <summary>
/// "Prefer 24-hour time"
/// "Prefer 24-hour time display"
/// </summary>
public static LocalisableString Prefer24HourTime => new TranslatableString(getKey(@"prefer_24_hour_time"), @"Prefer 24-hour time");
public static LocalisableString Prefer24HourTimeDisplay => new TranslatableString(getKey(@"prefer_24_hour_time_display"), @"Prefer 24-hour time display");
/// <summary>
/// "Updates"

View File

@ -37,7 +37,7 @@ namespace osu.Game.Overlays.Settings.Sections.General
},
new SettingsCheckbox
{
LabelText = GeneralSettingsStrings.Prefer24HourTime,
LabelText = GeneralSettingsStrings.Prefer24HourTimeDisplay,
Current = config.GetBindable<bool>(OsuSetting.Prefer24HourTime)
},
};