mirror of
https://github.com/ppy/osu.git
synced 2026-05-13 20:33:35 +08:00
Merge pull request #36511 from MayoCollector/localisation/sample-set-chooser
Localise "Custom sample sets" caption in `FormSampleSetChooser` dropdown
This commit is contained in:
@@ -188,6 +188,11 @@ namespace osu.Game.Localisation
|
||||
/// </summary>
|
||||
public static LocalisableString AudioTrack => new TranslatableString(getKey(@"audio_track"), @"Audio Track");
|
||||
|
||||
/// <summary>
|
||||
/// "Custom sample sets"
|
||||
/// </summary>
|
||||
public static LocalisableString CustomSampleSets => new TranslatableString(getKey(@"custom_sample_sets"), @"Custom sample sets");
|
||||
|
||||
/// <summary>
|
||||
/// "Click to select a track"
|
||||
/// </summary>
|
||||
|
||||
@@ -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]
|
||||
|
||||
Reference in New Issue
Block a user