Translate UserStatus, titles of pages in header

This commit is contained in:
jvyden 2022-07-27 16:37:38 -04:00
commit f0befef31f
No known key found for this signature in database
GPG key ID: 18BCF2BE0262B278
45 changed files with 699 additions and 120 deletions

View file

@ -1,12 +1,13 @@
@page "/users/{pageNumber:int}"
@using LBPUnion.ProjectLighthouse.Extensions
@using LBPUnion.ProjectLighthouse.Localization.StringLists
@using LBPUnion.ProjectLighthouse.PlayerData.Profiles
@using LBPUnion.ProjectLighthouse.Types
@model LBPUnion.ProjectLighthouse.Servers.Website.Pages.UsersPage
@{
Layout = "Layouts/BaseLayout";
Model.Title = "Users";
Model.Title = Model.Translate(BaseLayoutStrings.HeaderUsers);
}
<p>There are @Model.UserCount total users.</p>
@ -31,6 +32,9 @@
{
"IsMobile", isMobile
},
{
"Language", Model.GetLanguage()
},
})
</div>
}