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,15 @@
|
|||
using Microsoft.AspNetCore.Mvc;
|
||||
|
||||
namespace PlanTempus.Application.Features.CashRegister.Components;
|
||||
|
||||
/// <summary>
|
||||
/// ViewComponent for displaying the cash difference.
|
||||
/// Shows positive/negative/neutral states with color coding.
|
||||
/// </summary>
|
||||
public class CashDifferenceViewComponent : ViewComponent
|
||||
{
|
||||
public IViewComponentResult Invoke()
|
||||
{
|
||||
return View();
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
<swp-difference-box id="differenceBox" class="neutral">
|
||||
<swp-difference-label>
|
||||
Kontant difference
|
||||
<small>Optalt minus forventet</small>
|
||||
</swp-difference-label>
|
||||
<swp-difference-value id="differenceValue">– kr</swp-difference-value>
|
||||
</swp-difference-box>
|
||||
Loading…
Add table
Add a link
Reference in a new issue