1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-12 16:43:00 +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"); public static LocalisableString PreferOriginalMetadataLanguage => new TranslatableString(getKey(@"prefer_original"), @"Prefer metadata in original language");
/// <summary> /// <summary>
/// "Prefer 24-hour time" /// "Prefer 24-hour time display"
/// </summary> /// </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> /// <summary>
/// "Updates" /// "Updates"

View File

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