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:
parent
cf987bc027
commit
1174f46656
@ -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>
|
||||||
|
/// ""Lazer" it not an english word. The correct spelling for the bright light is "laser"."
|
||||||
|
/// </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 "FPS" your input and judgements will be accurate!"
|
/// "Multithreading support means that even with low "FPS" your input and judgements will be accurate!"
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -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)];
|
||||||
|
Loading…
Reference in New Issue
Block a user