Add language mappings for non-standard language names

This commit is contained in:
jvyden 2022-04-16 19:29:31 -04:00
parent 066f734378
commit 528d3b1335
No known key found for this signature in database
GPG key ID: 18BCF2BE0262B278
5 changed files with 54 additions and 6 deletions

View file

@ -11,5 +11,5 @@ public static class LandingPageStrings
public static readonly TranslatableString AuthAttemptsPending = create("authAttemptsPending");
private static TranslatableString create(string key) => new(TranslationAreas.BaseLayout, key);
private static TranslatableString create(string key) => new(TranslationAreas.LandingPage, key);
}