diff --git a/osu.Game/Localisation/EditorSetupStrings.cs b/osu.Game/Localisation/EditorSetupStrings.cs index 8597b7d9a1..9469c8e63f 100644 --- a/osu.Game/Localisation/EditorSetupStrings.cs +++ b/osu.Game/Localisation/EditorSetupStrings.cs @@ -188,6 +188,11 @@ namespace osu.Game.Localisation /// public static LocalisableString AudioTrack => new TranslatableString(getKey(@"audio_track"), @"Audio Track"); + /// + /// "Custom sample sets" + /// + public static LocalisableString CustomSampleSets => new TranslatableString(getKey(@"custom_sample_sets"), @"Custom sample sets"); + /// /// "Click to select a track" /// diff --git a/osu.Game/Screens/Edit/Setup/FormSampleSetChooser.cs b/osu.Game/Screens/Edit/Setup/FormSampleSetChooser.cs index 7e3020d78b..f6139da317 100644 --- a/osu.Game/Screens/Edit/Setup/FormSampleSetChooser.cs +++ b/osu.Game/Screens/Edit/Setup/FormSampleSetChooser.cs @@ -13,6 +13,7 @@ using osu.Framework.Graphics.UserInterface; using osu.Framework.Input.Events; using osu.Framework.Localisation; using osu.Game.Graphics.UserInterfaceV2; +using osu.Game.Localisation; namespace osu.Game.Screens.Edit.Setup { @@ -22,7 +23,7 @@ namespace osu.Game.Screens.Edit.Setup public FormSampleSetChooser() { - Caption = "Custom sample sets"; + Caption = EditorSetupStrings.CustomSampleSets; } [BackgroundDependencyLoader]