Translate profile page

This commit is contained in:
jvyden 2022-08-01 18:29:43 -04:00
commit 018d9d2b9f
No known key found for this signature in database
GPG key ID: 18BCF2BE0262B278
9 changed files with 78 additions and 7 deletions

View file

@ -0,0 +1,10 @@
namespace LBPUnion.ProjectLighthouse.Localization.StringLists;
public static class ProfileStrings
{
public static readonly TranslatableString Title = create("title");
public static readonly TranslatableString Biography = create("biography");
public static readonly TranslatableString NoBiography = create("no_biography");
private static TranslatableString create(string key) => new(TranslationAreas.Profile, key);
}