mirror of
https://github.com/osukey/osukey.git
synced 2025-08-03 06:36:31 +09:00
Add localisation support for beatmap editor setup
This commit is contained in:
@ -7,12 +7,14 @@ using osu.Framework.Allocation;
|
||||
using osu.Framework.Graphics;
|
||||
using osu.Framework.Localisation;
|
||||
using osu.Game.Graphics.UserInterfaceV2;
|
||||
using osu.Game.Localisation;
|
||||
using osu.Game.Resources.Localisation.Web;
|
||||
|
||||
namespace osu.Game.Screens.Edit.Setup
|
||||
{
|
||||
internal class ColoursSection : SetupSection
|
||||
{
|
||||
public override LocalisableString Title => "Colours";
|
||||
public override LocalisableString Title => EditorSetupColoursStrings.Colours;
|
||||
|
||||
private LabelledColourPalette comboColours;
|
||||
|
||||
@ -23,9 +25,9 @@ namespace osu.Game.Screens.Edit.Setup
|
||||
{
|
||||
comboColours = new LabelledColourPalette
|
||||
{
|
||||
Label = "Hitcircle / Slider Combos",
|
||||
Label = EditorSetupColoursStrings.HitcircleSliderCombos,
|
||||
FixedLabelWidth = LABEL_WIDTH,
|
||||
ColourNamePrefix = "Combo"
|
||||
ColourNamePrefix = MatchesStrings.MatchScoreStatsCombo
|
||||
}
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user