1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-30 05:47:25 +08:00
osu-lazer/osu.Game/Overlays/Comments/CommentReportReason.cs

27 lines
903 B
C#
Raw Normal View History

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