1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 12:57:36 +08:00

Also rename Welcome to WelcomeTitle to match other usages

This commit is contained in:
Dean Herbert 2022-04-21 19:55:15 +09:00
parent 1f967ecba3
commit ed6481f708
2 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ namespace osu.Game.Localisation
/// <summary>
/// "Welcome"
/// </summary>
public static LocalisableString Welcome => new TranslatableString(getKey(@"welcome"), @"Welcome");
public static LocalisableString WelcomeTitle => new TranslatableString(getKey(@"welcome_title"), @"Welcome");
/// <summary>
/// "Welcome to the first-run setup guide!

View File

@ -68,7 +68,7 @@ namespace osu.Game.Overlays
private readonly FirstRunStep[] steps =
{
new FirstRunStep(typeof(ScreenWelcome), FirstRunSetupOverlayStrings.Welcome),
new FirstRunStep(typeof(ScreenWelcome), FirstRunSetupOverlayStrings.WelcomeTitle),
new FirstRunStep(typeof(ScreenUIScale), GraphicsSettingsStrings.UIScaling),
};