1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-12 22:17:18 +08:00

25 lines
801 B
C#
Raw Normal View History

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