Translate UI to Swedish

This commit is contained in:
2026-03-23 10:46:39 +01:00
parent 1929b3ed49
commit bc586e21e7
3 changed files with 29 additions and 29 deletions

View File

@@ -1,8 +1,8 @@
<!DOCTYPE html>
<html lang="en">
<html lang="sv">
<head>
<meta charset="UTF-8">
<title>Invoice Overview</title>
<title>Fakturaöversikt</title>
<style>
@page {
size: A4;
@@ -59,18 +59,18 @@
</style>
</head>
<body>
<h1>Invoice Overview</h1>
<h1>Fakturaöversikt</h1>
<div class="batch-info">
<strong>Processed Batches:</strong> {{ batches | join(", ") }}
<strong>Bearbetade batchar:</strong> {{ batches | join(", ") }}
</div>
<table>
<thead>
<tr>
<th>Customer Number</th>
<th>Cards</th>
<th>Invoice</th>
<th>Kundnummer</th>
<th>Kort</th>
<th>Faktura</th>
</tr>
</thead>
<tbody>
@@ -78,7 +78,7 @@
<tr>
<td>{{ num }}</td>
<td>{{ card_count }}</td>
<td><a href="customer_{{ num }}.html">View</a></td>
<td><a href="customer_{{ num }}.html">Visa</a></td>
</tr>
{% endfor %}
</tbody>