Translate mod panel

This commit is contained in:
jvyden 2022-07-27 17:05:41 -04:00
parent 836e2293e0
commit bc998b1ba9
No known key found for this signature in database
GPG key ID: 18BCF2BE0262B278
5 changed files with 44 additions and 2 deletions

View file

@ -0,0 +1,9 @@
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);
}