Renames danish to english

This commit is contained in:
Janus C. H. Knudsen 2026-01-11 21:42:24 +01:00
parent 754681059d
commit 5e0bd9db74
29 changed files with 405 additions and 438 deletions

View file

@ -0,0 +1,12 @@
<swp-card>
<swp-card-header>
<swp-card-title>Note til difference</swp-card-title>
<swp-card-action>Valgfrit</swp-card-action>
</swp-card-header>
<swp-card-content>
<swp-note-field>
<textarea placeholder="Fx kassedifference, fejlslag, runding osv."></textarea>
</swp-note-field>
<swp-note-hint>Kan gøres obligatorisk ved difference over 100 kr.</swp-note-hint>
</swp-card-content>
</swp-card>

View file

@ -0,0 +1,15 @@
using Microsoft.AspNetCore.Mvc;
namespace PlanTempus.Application.Features.CashRegister.Components;
/// <summary>
/// ViewComponent for the note field.
/// Optional field for explaining cash differences.
/// </summary>
public class ReconciliationNoteViewComponent : ViewComponent
{
public IViewComponentResult Invoke()
{
return View();
}
}