mirror of
https://github.com/osukey/osukey.git
synced 2025-05-01 11:47:18 +09:00
43 lines
1.5 KiB
C#
43 lines
1.5 KiB
C#
// 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;
|
|
using osu.Framework.Localisation;
|
|
using osu.Game.Resources.Localisation.Web;
|
|
|
|
namespace osu.Game.Overlays.BeatmapListing
|
|
{
|
|
public enum SearchCategory
|
|
{
|
|
[LocalisableDescription(typeof(BeatmapsStrings), nameof(BeatmapsStrings.StatusAny))]
|
|
Any,
|
|
|
|
[LocalisableDescription(typeof(BeatmapsStrings), nameof(BeatmapsStrings.StatusLeaderboard))]
|
|
[Description("Has Leaderboard")]
|
|
Leaderboard,
|
|
|
|
[LocalisableDescription(typeof(BeatmapsStrings), nameof(BeatmapsStrings.StatusRanked))]
|
|
Ranked,
|
|
|
|
[LocalisableDescription(typeof(BeatmapsStrings), nameof(BeatmapsStrings.StatusQualified))]
|
|
Qualified,
|
|
|
|
[LocalisableDescription(typeof(BeatmapsStrings), nameof(BeatmapsStrings.StatusLoved))]
|
|
Loved,
|
|
|
|
[LocalisableDescription(typeof(BeatmapsStrings), nameof(BeatmapsStrings.StatusFavourites))]
|
|
Favourites,
|
|
|
|
[LocalisableDescription(typeof(BeatmapsStrings), nameof(BeatmapsStrings.StatusPending))]
|
|
[Description("Pending & WIP")]
|
|
Pending,
|
|
|
|
[LocalisableDescription(typeof(BeatmapsStrings), nameof(BeatmapsStrings.StatusGraveyard))]
|
|
Graveyard,
|
|
|
|
[LocalisableDescription(typeof(BeatmapsStrings), nameof(BeatmapsStrings.StatusMine))]
|
|
[Description("My Maps")]
|
|
Mine,
|
|
}
|
|
}
|