This commit is contained in:
schiavoanto 2024-10-14 16:14:23 +02:00
parent 71b08b54c1
commit d7021f989b
3 changed files with 6 additions and 17 deletions

View File

@ -34,16 +34,6 @@ public static class SkinEditorStrings
/// </summary>
public static LocalisableString Gameplay => new TranslatableString(getKey(@"gameplay"), @"Gameplay");
/// <summary>
/// "HUD"
/// </summary>
public static LocalisableString HUD => new TranslatableString(getKey(@"hud"), @"HUD");
/// <summary>
/// "Playfield"
/// </summary>
public static LocalisableString Playfield => new TranslatableString(getKey(@"playfield"), @"Playfield");
/// <summary>
/// "Settings ({0})"
/// </summary>

View File

@ -31,9 +31,9 @@ public GlobalSkinnableContainerLookup(GlobalSkinnableContainers lookup, RulesetI
public override string ToString()
{
if (Ruleset == null) return Lookup.GetLocalisableDescription().ToString();
if (Ruleset == null) return Lookup.GetDescription();
return $"{Lookup.GetLocalisableDescription().ToString()} (\"{Ruleset.Name}\" only)";
return $"{Lookup.GetDescription()} (\"{Ruleset.Name}\" only)";
}
public bool Equals(GlobalSkinnableContainerLookup? other)

View File

@ -1,8 +1,7 @@
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Framework.Localisation;
using osu.Game.Localisation;
using System.ComponentModel;
namespace osu.Game.Skinning
{
@ -11,13 +10,13 @@ namespace osu.Game.Skinning
/// </summary>
public enum GlobalSkinnableContainers
{
[LocalisableDescription(typeof(SkinEditorStrings), nameof(SkinEditorStrings.HUD))]
[Description("HUD")]
MainHUDComponents,
[LocalisableDescription(typeof(SkinEditorStrings), nameof(SkinEditorStrings.SongSelect))]
[Description("Song select")]
SongSelect,
[LocalisableDescription(typeof(SkinEditorStrings), nameof(SkinEditorStrings.Playfield))]
[Description("Playfield")]
Playfield
}
}