Fix StatusStrings TranslationArea

This commit is contained in:
jvyden 2022-07-27 16:56:21 -04:00
parent f0befef31f
commit 7bb851a575
No known key found for this signature in database
GPG key ID: 18BCF2BE0262B278
2 changed files with 2 additions and 1 deletions

View file

@ -6,5 +6,5 @@ public static class StatusStrings
public static readonly TranslatableString LastOnline = create("last_online"); // TODO: implement
public static readonly TranslatableString Offline = create("offline");
private static TranslatableString create(string key) => new(TranslationAreas.LoggedOut, key);
private static TranslatableString create(string key) => new(TranslationAreas.Status, key);
}

View file

@ -6,4 +6,5 @@ public enum TranslationAreas
LandingPage,
General,
LoggedOut,
Status,
}