2023-06-23 01:37:25 +09:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
2021-03-25 23:20:10 +01:00
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
|
|
|
|
|
|
using System.ComponentModel;
|
2021-06-16 15:58:07 +09:00
|
|
|
|
using osu.Framework.Localisation;
|
|
|
|
|
using osu.Game.Resources.Localisation.Web;
|
2021-03-25 23:20:10 +01:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.BeatmapListing
|
|
|
|
|
{
|
|
|
|
|
public enum SearchGeneral
|
|
|
|
|
{
|
2021-07-31 01:38:54 +03:00
|
|
|
|
[LocalisableDescription(typeof(BeatmapsStrings), nameof(BeatmapsStrings.GeneralRecommended))]
|
2021-03-25 23:20:10 +01:00
|
|
|
|
[Description("Recommended difficulty")]
|
|
|
|
|
Recommended,
|
|
|
|
|
|
2021-07-31 01:38:54 +03:00
|
|
|
|
[LocalisableDescription(typeof(BeatmapsStrings), nameof(BeatmapsStrings.GeneralConverts))]
|
2021-03-25 23:20:10 +01:00
|
|
|
|
[Description("Include converted beatmaps")]
|
|
|
|
|
Converts,
|
|
|
|
|
|
2021-07-31 01:38:54 +03:00
|
|
|
|
[LocalisableDescription(typeof(BeatmapsStrings), nameof(BeatmapsStrings.GeneralFollows))]
|
2021-03-25 23:20:10 +01:00
|
|
|
|
[Description("Subscribed mappers")]
|
2021-09-07 16:44:45 +09:00
|
|
|
|
Follows,
|
|
|
|
|
|
2022-05-23 18:45:53 -07:00
|
|
|
|
[LocalisableDescription(typeof(BeatmapsStrings), nameof(BeatmapsStrings.GeneralSpotlights))]
|
|
|
|
|
Spotlights,
|
|
|
|
|
|
2021-09-07 16:44:45 +09:00
|
|
|
|
[LocalisableDescription(typeof(BeatmapsStrings), nameof(BeatmapsStrings.GeneralFeaturedArtists))]
|
|
|
|
|
[Description("Featured artists")]
|
|
|
|
|
FeaturedArtists
|
2021-03-25 23:20:10 +01:00
|
|
|
|
}
|
|
|
|
|
}
|