1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-18 21:02:56 +08:00

Add menu tip hinting at correct spelling of laser

This commit is contained in:
Dean Herbert 2024-12-21 21:41:48 +09:00
parent cf987bc027
commit 1174f46656
No known key found for this signature in database
2 changed files with 7 additions and 1 deletions

View File

@ -119,6 +119,11 @@ namespace osu.Game.Localisation
/// </summary> /// </summary>
public static LocalisableString AutoplayBeatmapShortcut => new TranslatableString(getKey(@"autoplay_beatmap_shortcut"), @"Ctrl-Enter at song select will start a beatmap in autoplay mode!"); public static LocalisableString AutoplayBeatmapShortcut => new TranslatableString(getKey(@"autoplay_beatmap_shortcut"), @"Ctrl-Enter at song select will start a beatmap in autoplay mode!");
/// <summary>
/// "&quot;Lazer&quot; it not an english word. The correct spelling for the bright light is &quot;laser&quot;."
/// </summary>
public static LocalisableString LazerIsNotAWord => new TranslatableString(getKey(@"lazer_is_not_a_word"), @"""Lazer"" it not an english word. The correct spelling for the bright light is ""laser"".");
/// <summary> /// <summary>
/// "Multithreading support means that even with low &quot;FPS&quot; your input and judgements will be accurate!" /// "Multithreading support means that even with low &quot;FPS&quot; your input and judgements will be accurate!"
/// </summary> /// </summary>

View File

@ -122,7 +122,8 @@ namespace osu.Game.Screens.Menu
MenuTipStrings.RandomSkinShortcut, MenuTipStrings.RandomSkinShortcut,
MenuTipStrings.ToggleReplaySettingsShortcut, MenuTipStrings.ToggleReplaySettingsShortcut,
MenuTipStrings.CopyModsFromScore, MenuTipStrings.CopyModsFromScore,
MenuTipStrings.AutoplayBeatmapShortcut MenuTipStrings.AutoplayBeatmapShortcut,
MenuTipStrings.LazerIsNotAWord
}; };
return tips[RNG.Next(0, tips.Length)]; return tips[RNG.Next(0, tips.Length)];