2021-09-19 21:09:03 +02: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-01-27 20:53:48 -08:00
|
|
|
using osu.Framework.Localisation;
|
|
|
|
using osu.Game.Resources.Localisation.Web;
|
2023-01-16 20:39:38 +03:00
|
|
|
using osu.Game.Localisation;
|
2021-09-17 18:30:38 +09:00
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Login
|
|
|
|
{
|
|
|
|
public enum UserAction
|
|
|
|
{
|
2022-01-27 20:53:48 -08:00
|
|
|
[LocalisableDescription(typeof(UsersStrings), nameof(UsersStrings.StatusOnline))]
|
2021-09-17 18:30:38 +09:00
|
|
|
Online,
|
|
|
|
|
2023-01-16 20:39:38 +03:00
|
|
|
[LocalisableDescription(typeof(LoginPanelStrings), nameof(LoginPanelStrings.DoNotDisturb))]
|
2021-09-17 18:30:38 +09:00
|
|
|
DoNotDisturb,
|
|
|
|
|
2023-01-16 20:39:38 +03:00
|
|
|
[LocalisableDescription(typeof(LoginPanelStrings), nameof(LoginPanelStrings.AppearOffline))]
|
2021-09-17 18:30:38 +09:00
|
|
|
AppearOffline,
|
|
|
|
|
2023-07-02 21:51:32 +09:00
|
|
|
[LocalisableDescription(typeof(LoginPanelStrings), nameof(LoginPanelStrings.SignOut))]
|
2021-09-17 18:30:38 +09:00
|
|
|
SignOut,
|
|
|
|
}
|
2022-06-17 16:37:17 +09:00
|
|
|
}
|