Implements localization for dashboard, cash register, account, and profile sections Adds localization keys for various UI elements, improving internationalization support Refactors view components to use ILocalizationService for dynamic text rendering Prepares ground for multi-language support with translation-ready markup
21 lines
750 B
Text
21 lines
750 B
Text
@using PlanTempus.Application.Features.Dashboard.Components
|
|
|
|
<swp-waitlist-drawer data-drawer="lg" id="waitlist-drawer">
|
|
<swp-drawer-header>
|
|
<swp-drawer-title>
|
|
<span localize="dashboard.waitlist.title">Venteliste</span> <swp-count>(@WaitlistItemCatalog.AllKeys.Count())</swp-count>
|
|
</swp-drawer-title>
|
|
<swp-drawer-close data-drawer-close>
|
|
<i class="ph ph-x"></i>
|
|
</swp-drawer-close>
|
|
</swp-drawer-header>
|
|
|
|
<swp-drawer-body>
|
|
<swp-waitlist-list>
|
|
@foreach (var key in WaitlistItemCatalog.AllKeys)
|
|
{
|
|
@await Component.InvokeAsync("WaitlistItem", key)
|
|
}
|
|
</swp-waitlist-list>
|
|
</swp-drawer-body>
|
|
</swp-waitlist-drawer>
|