2021-03-26 06:20:10 +08:00
|
|
|
// 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 System.ComponentModel;
|
2021-06-16 14:58:07 +08:00
|
|
|
using osu.Framework.Localisation;
|
|
|
|
using osu.Game.Resources.Localisation.Web;
|
2021-03-26 06:20:10 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Overlays.BeatmapListing
|
|
|
|
{
|
|
|
|
public enum SearchGeneral
|
|
|
|
{
|
2021-07-31 06:38:54 +08:00
|
|
|
[LocalisableDescription(typeof(BeatmapsStrings), nameof(BeatmapsStrings.GeneralRecommended))]
|
2021-03-26 06:20:10 +08:00
|
|
|
[Description("Recommended difficulty")]
|
|
|
|
Recommended,
|
|
|
|
|
2021-07-31 06:38:54 +08:00
|
|
|
[LocalisableDescription(typeof(BeatmapsStrings), nameof(BeatmapsStrings.GeneralConverts))]
|
2021-03-26 06:20:10 +08:00
|
|
|
[Description("Include converted beatmaps")]
|
|
|
|
Converts,
|
|
|
|
|
2021-07-31 06:38:54 +08:00
|
|
|
[LocalisableDescription(typeof(BeatmapsStrings), nameof(BeatmapsStrings.GeneralFollows))]
|
2021-03-26 06:20:10 +08:00
|
|
|
[Description("Subscribed mappers")]
|
2021-09-07 15:44:45 +08:00
|
|
|
Follows,
|
|
|
|
|
|
|
|
[LocalisableDescription(typeof(BeatmapsStrings), nameof(BeatmapsStrings.GeneralFeaturedArtists))]
|
|
|
|
[Description("Featured artists")]
|
|
|
|
FeaturedArtists
|
2021-03-26 06:20:10 +08:00
|
|
|
}
|
|
|
|
}
|