Translate login and logout pages

This commit is contained in:
jvyden 2022-07-26 17:01:48 -04:00
parent 1e9f672d6c
commit 443b285253
No known key found for this signature in database
GPG key ID: 18BCF2BE0262B278
9 changed files with 132 additions and 13 deletions

View file

@ -0,0 +1,13 @@
namespace LBPUnion.ProjectLighthouse.Localization.StringLists;
public static class GeneralStrings
{
public static readonly TranslatableString Username = create("username");
public static readonly TranslatableString Password = create("password");
public static readonly TranslatableString Register = create("register");
public static readonly TranslatableString ForgotPassword = create("forgot_password");
public static readonly TranslatableString Error = create("error");
public static readonly TranslatableString LogIn = create("log_in");
private static TranslatableString create(string key) => new(TranslationAreas.General, key);
}