mirror of
https://github.com/ppy/osu.git
synced 2024-11-15 11:47:24 +08:00
parent
71b08b54c1
commit
d7021f989b
@ -34,16 +34,6 @@ namespace osu.Game.Localisation
|
||||
/// </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>
|
||||
|
@ -31,9 +31,9 @@ namespace osu.Game.Skinning
|
||||
|
||||
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)
|
||||
|
@ -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
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user