mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-04-27 14:58:23 +00:00
9 lines
No EOL
371 B
C#
9 lines
No EOL
371 B
C#
namespace LBPUnion.ProjectLighthouse.Localization.StringLists;
|
|
|
|
public static class ModPanelStrings
|
|
{
|
|
public static readonly TranslatableString ModPanelTitle = create("mod_panel_title");
|
|
public static readonly TranslatableString Greeting = create("greeting");
|
|
|
|
private static TranslatableString create(string key) => new(TranslationAreas.ModPanel, key);
|
|
} |