Update string keys and change "setup" to "set up" to fix grammar

This commit is contained in:
Dean Herbert 2022-04-21 19:52:28 +09:00
parent d17c16d904
commit 1f967ecba3
2 changed files with 5 additions and 5 deletions

View File

@ -22,12 +22,12 @@ namespace osu.Game.Localisation
/// <summary>
/// "First-run setup"
/// </summary>
public static LocalisableString FirstRunSetup => new TranslatableString(getKey(@"first_run_setup"), @"First-run setup");
public static LocalisableString FirstRunSetupTitle => new TranslatableString(getKey(@"first_run_setup_title"), @"First-run setup");
/// <summary>
/// "Setup osu! to suit you"
/// "Set up osu! to suit you"
/// </summary>
public static LocalisableString SetupOsuToSuitYou => new TranslatableString(getKey(@"setup_osu_to_suit_you"), @"Setup osu! to suit you");
public static LocalisableString FirstRunSetupDescription => new TranslatableString(getKey(@"first_run_setup_description"), @"Set up osu! to suit you");
/// <summary>
/// "Welcome"

View File

@ -141,7 +141,7 @@ namespace osu.Game.Overlays
{
new OsuSpriteText
{
Text = FirstRunSetupOverlayStrings.FirstRunSetup,
Text = FirstRunSetupOverlayStrings.FirstRunSetupTitle,
Font = OsuFont.Default.With(size: 32),
Colour = colourProvider.Content1,
Anchor = Anchor.TopCentre,
@ -149,7 +149,7 @@ namespace osu.Game.Overlays
},
new OsuTextFlowContainer
{
Text = FirstRunSetupOverlayStrings.SetupOsuToSuitYou,
Text = FirstRunSetupOverlayStrings.FirstRunSetupDescription,
Colour = colourProvider.Content2,
Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre,