PlanTempusApp/PlanTempus.Application/Features/CashRegister/Components/PeriodInfo/Default.cshtml
Janus C. H. Knudsen ef174af0e1 Adds localization support across application views
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
2026-01-12 15:42:18 +01:00

40 lines
1.6 KiB
Text
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<swp-card>
<swp-card-header>
<swp-card-title localize="cash.period.title">Periodeoplysninger</swp-card-title>
</swp-card-header>
<swp-card-content>
<swp-period-display>
<swp-period-label localize="cash.period.dateRange">Periode</swp-period-label>
<swp-period-value>
<span class="from">28. dec 2025 kl. 18:00</span>
<span class="arrow">→</span>
<span class="to">29. dec 2025</span>
</swp-period-value>
</swp-period-display>
<swp-form-grid style="margin-top: var(--spacing-10);">
<swp-form-field>
<swp-form-label localize="cash.period.register">Kassepunkt</swp-form-label>
<swp-form-input>
<select id="register">
<option>Kasse 1 Reception</option>
<option>Kasse 2 Salon</option>
</select>
</swp-form-input>
</swp-form-field>
<swp-form-field>
<swp-form-label localize="cash.period.employee">Medarbejder</swp-form-label>
<swp-form-input>
<select id="employee">
<option>Anna Jensen</option>
<option>Karina Knudsen</option>
<option>Martin Nielsen</option>
</select>
</swp-form-input>
</swp-form-field>
</swp-form-grid>
<swp-auto-id>Afstemnings-ID: <strong>KA-2025-12-29</strong> · Z-043</swp-auto-id>
</swp-card-content>
</swp-card>