NavBar traduction

blazor
Lucie GOIGOUX 1 year ago
parent 07b3d6bb56
commit 20045b0e3d

@ -1,10 +1,10 @@

<div class="navbar">
<a href="http://localhost/SAE_2A_Anglais/Project/php/#page-top">Home</a>
<a href="/list">Users</a>
<a href="/account">My Account</a>
<a href="/voc">Vocabulary Lists</a>
<a href="http://localhost/SAE_2A_Anglais/Project/php/#page-top">@Localizer["Home"]</a>
<a href="/list">@Localizer["Users"]</a>
<a href="/account">@Localizer["My account"]</a>
<a href="/voc">@Localizer["Vocabulary Lists"]</a>
</div>

@ -0,0 +1,12 @@
using Microsoft.AspNetCore.Components;
using Microsoft.Extensions.Localization;
namespace adminBlazor.Shared
{
public partial class NavBar
{
[Inject]
public IStringLocalizer<NavBar> Localizer { get; set; }
}
}
Loading…
Cancel
Save