1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-18 14:10:33 +08:00

remove unnecessary localisations

This commit is contained in:
Hivie
2025-08-04 22:07:41 +01:00
Unverified
parent bb156d4206
commit 2c5aa73ccb
2 changed files with 0 additions and 15 deletions
-10
View File
@@ -209,16 +209,6 @@ namespace osu.Game.Localisation
/// </summary>
public static LocalisableString OpenDiscussionPage => new TranslatableString(getKey(@"open_discussion_page"), @"Open beatmap discussion page");
/// <summary>
/// "Difficulty"
/// </summary>
public static LocalisableString Difficulty => new TranslatableString(getKey(@"this_difficulty"), @"Difficulty");
/// <summary>
/// "Beatmapset"
/// </summary>
public static LocalisableString Beatmapset => new TranslatableString(getKey(@"this_beatmapset"), @"Beatmapset");
private static string getKey(string key) => $@"{prefix}:{key}";
}
}
@@ -1,9 +1,6 @@
// 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;
namespace osu.Game.Rulesets.Edit.Checks.Components
{
public enum CheckScope
@@ -11,13 +8,11 @@ namespace osu.Game.Rulesets.Edit.Checks.Components
/// <summary>
/// Run checks that apply to the current difficulty.
/// </summary>
[LocalisableDescription(typeof(EditorStrings), nameof(EditorStrings.Difficulty))]
Difficulty,
/// <summary>
/// Run checks that apply to the beatmapset as a whole.
/// </summary>
[LocalisableDescription(typeof(EditorStrings), nameof(EditorStrings.Beatmapset))]
Beatmapset,
}
}