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:
parent
555aee7b6a
commit
b2c0eaeab4
@ -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"
|
||||||
|
@ -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)
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user