ProjectLighthouse/ProjectLighthouse.Localization/StringLists/StatusStrings.cs
Josh d640c000aa
Implement LBP1 tags, stricter resource checking, and more (#463)
* Add LBP1 tags, more strict resource checking, and more.

* Fix unit tests

* Add more length checking to dependency parser

* Online editor problems

* Fix tests pt 2

* Self code review and fixed digest bugs

* Don't add content length if it was already set

* Fix status endpoint

* Fix review bug and simplify review serialization

* Fix a typo in review serialization

* Remove duplicated code and fix search

* Remove duplicate database call
2022-08-31 20:38:58 -05:00

10 lines
No EOL
446 B
C#

namespace LBPUnion.ProjectLighthouse.Localization.StringLists;
public static class StatusStrings
{
public static readonly TranslatableString CurrentlyOnline = create("currently_online");
public static readonly TranslatableString LastOnline = create("last_online");
public static readonly TranslatableString Offline = create("offline");
private static TranslatableString create(string key) => new(TranslationAreas.Status, key);
}