osu/osu.Game/Overlays/Comments/CommentReportReason.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
903 B
C#
Raw Normal View History

2022-10-14 12:52:09 +00: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.
2022-10-16 16:50:55 +00:00
using osu.Framework.Localisation;
using osu.Game.Resources.Localisation.Web;
2022-10-14 12:52:09 +00:00
namespace osu.Game.Overlays.Comments
{
public enum CommentReportReason
{
2022-10-16 16:50:55 +00:00
[LocalisableDescription(typeof(UsersStrings), nameof(UsersStrings.ReportOptionsInsults))]
2022-10-14 12:52:09 +00:00
Insults,
2022-10-16 16:50:55 +00:00
[LocalisableDescription(typeof(UsersStrings), nameof(UsersStrings.ReportOptionsSpam))]
2022-10-14 12:52:09 +00:00
Spam,
2022-10-16 16:50:55 +00:00
[LocalisableDescription(typeof(UsersStrings), nameof(UsersStrings.ReportOptionsUnwantedContent))]
2022-10-14 12:52:09 +00:00
UnwantedContent,
2022-10-16 16:50:55 +00:00
[LocalisableDescription(typeof(UsersStrings), nameof(UsersStrings.ReportOptionsNonsense))]
2022-10-14 12:52:09 +00:00
Nonsense,
2022-10-16 16:50:55 +00:00
[LocalisableDescription(typeof(UsersStrings), nameof(UsersStrings.ReportOptionsOther))]
2022-10-14 12:52:09 +00:00
Other
}
}