mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-04-28 07:18:24 +00:00
Fix StatusStrings TranslationArea
This commit is contained in:
parent
f0befef31f
commit
7bb851a575
2 changed files with 2 additions and 1 deletions
|
@ -6,5 +6,5 @@ public static class StatusStrings
|
||||||
public static readonly TranslatableString LastOnline = create("last_online"); // TODO: implement
|
public static readonly TranslatableString LastOnline = create("last_online"); // TODO: implement
|
||||||
public static readonly TranslatableString Offline = create("offline");
|
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);
|
||||||
}
|
}
|
|
@ -6,4 +6,5 @@ public enum TranslationAreas
|
||||||
LandingPage,
|
LandingPage,
|
||||||
General,
|
General,
|
||||||
LoggedOut,
|
LoggedOut,
|
||||||
|
Status,
|
||||||
}
|
}
|
Loading…
Add table
Add a link
Reference in a new issue