Add notice about usernames in register form

This commit is contained in:
jvyden 2022-08-01 17:49:34 -04:00
parent fdf1988a34
commit 98a444499e
No known key found for this signature in database
GPG key ID: 18BCF2BE0262B278
5 changed files with 40 additions and 0 deletions

View file

@ -0,0 +1,8 @@
namespace LBPUnion.ProjectLighthouse.Localization.StringLists;
public static class RegisterStrings
{
public static readonly TranslatableString UsernameNotice = create("username_notice");
private static TranslatableString create(string key) => new(TranslationAreas.Register, key);
}