mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-06-01 21:52:27 +00:00
Add banned users and hidden levels page to mod panel
This commit is contained in:
parent
4be8efc244
commit
67bad4fd1e
8 changed files with 178 additions and 3 deletions
|
@ -24,4 +24,10 @@
|
|||
<data name="greeting" xml:space="preserve">
|
||||
<value>Welcome to the moderation panel, {0}!</value>
|
||||
</data>
|
||||
<data name="banned_users" xml:space="preserve">
|
||||
<value>Banned Users</value>
|
||||
</data>
|
||||
<data name="hidden_levels" xml:space="preserve">
|
||||
<value>Hidden Levels</value>
|
||||
</data>
|
||||
</root>
|
|
@ -4,6 +4,8 @@ public static class ModPanelStrings
|
|||
{
|
||||
public static readonly TranslatableString ModPanelTitle = create("mod_panel_title");
|
||||
public static readonly TranslatableString Greeting = create("greeting");
|
||||
public static readonly TranslatableString BannedUsers = create("banned_users");
|
||||
public static readonly TranslatableString HiddenLevels = create("hidden_levels");
|
||||
|
||||
private static TranslatableString create(string key) => new(TranslationAreas.ModPanel, key);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue