Renames danish to english
This commit is contained in:
parent
754681059d
commit
5e0bd9db74
29 changed files with 405 additions and 438 deletions
|
|
@ -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>
|
||||
|
|
@ -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();
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue