diff --git a/osu.Game/Localisation/EditorStrings.cs b/osu.Game/Localisation/EditorStrings.cs index 7d1c3074e4..2a9be8700d 100644 --- a/osu.Game/Localisation/EditorStrings.cs +++ b/osu.Game/Localisation/EditorStrings.cs @@ -210,14 +210,14 @@ namespace osu.Game.Localisation public static LocalisableString OpenDiscussionPage => new TranslatableString(getKey(@"open_discussion_page"), @"Open beatmap discussion page"); /// - /// "This difficulty" + /// "Difficulty" /// - public static LocalisableString ThisDifficulty => new TranslatableString(getKey(@"this_difficulty"), @"This difficulty"); + public static LocalisableString Difficulty => new TranslatableString(getKey(@"this_difficulty"), @"Difficulty"); /// - /// "General" + /// "Beatmapset" /// - public static LocalisableString General => new TranslatableString(getKey(@"general"), @"General"); + public static LocalisableString Beatmapset => new TranslatableString(getKey(@"this_beatmapset"), @"Beatmapset"); private static string getKey(string key) => $@"{prefix}:{key}"; } diff --git a/osu.Game/Rulesets/Edit/Checks/Components/VerifyChecksScope.cs b/osu.Game/Rulesets/Edit/Checks/Components/VerifyChecksScope.cs index 3d775c2cac..6542ffff37 100644 --- a/osu.Game/Rulesets/Edit/Checks/Components/VerifyChecksScope.cs +++ b/osu.Game/Rulesets/Edit/Checks/Components/VerifyChecksScope.cs @@ -11,13 +11,13 @@ namespace osu.Game.Rulesets.Edit.Checks.Components /// /// Run checks that apply to the current difficulty. /// - [LocalisableDescription(typeof(EditorStrings), nameof(EditorStrings.ThisDifficulty))] - ThisDifficulty, + [LocalisableDescription(typeof(EditorStrings), nameof(EditorStrings.Difficulty))] + Difficulty, /// /// Run checks that apply to the beatmapset as a whole. /// - [LocalisableDescription(typeof(EditorStrings), nameof(EditorStrings.General))] - General, + [LocalisableDescription(typeof(EditorStrings), nameof(EditorStrings.Beatmapset))] + Beatmapset, } } diff --git a/osu.Game/Screens/Edit/Verify/IssueList.cs b/osu.Game/Screens/Edit/Verify/IssueList.cs index ac4afd5677..20c3426880 100644 --- a/osu.Game/Screens/Edit/Verify/IssueList.cs +++ b/osu.Game/Screens/Edit/Verify/IssueList.cs @@ -106,11 +106,11 @@ namespace osu.Game.Screens.Edit.Verify switch (verify.VerifyChecksScope.Value) { - case VerifyChecksScope.General: + case VerifyChecksScope.Beatmapset: issues = filterByScope(generalVerifier.Run(context), true); break; - case VerifyChecksScope.ThisDifficulty: + case VerifyChecksScope.Difficulty: var generalIssues = filterByScope(generalVerifier.Run(context), false); var rulesetIssues = rulesetVerifier?.Run(context) ?? Enumerable.Empty(); issues = generalIssues.Concat(rulesetIssues);