Translate index page text content from German to English
Build and Push Docker Image / build-and-push (push) Successful in 24s

This commit is contained in:
2026-07-04 17:38:46 +02:00
parent 38dbbc8157
commit c5ec10ddd1
+7 -7
View File
@@ -6,26 +6,26 @@
</head> </head>
<body> <body>
<div class="container mt-5"> <div class="container mt-5">
<h1>Projekt Javadoc Übersicht</h1> <h1>Project Javadoc Overview</h1>
<table class="table table-striped"> <table class="table table-striped">
<thead> <thead>
<tr> <tr>
<th>Name</th> <th>Name</th>
<th>Git URL</th> <th>Git URL</th>
<th>Letzter Tag</th> <th>Latest Tag</th>
<th>Letztes Update</th> <th>Last Update</th>
<th>Aktion</th> <th>Action</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<tr th:each="repo : ${repos}"> <tr th:each="repo : ${repos}">
<td th:text="${repo.name}">Projekt</td> <td th:text="${repo.name}">Project</td>
<td th:text="${repo.url}">URL</td> <td th:text="${repo.url}">URL</td>
<td th:text="${repo.lastTag}">v1.0</td> <td th:text="${repo.lastTag}">v1.0</td>
<td th:text="${#temporals.format(repo.updated, 'dd.MM.yyyy HH:mm')}">-</td> <td th:text="${#temporals.format(repo.updated, 'dd.MM.yyyy HH:mm')}">-</td>
<td> <td>
<a th:if="${repo.lastTag != null}" th:href="@{/{name}/index.html(name=${repo.name})}" class="btn btn-primary btn-sm">Javadoc öffnen</a> <a th:if="${repo.lastTag != null}" th:href="@{/{name}/index.html(name=${repo.name})}" class="btn btn-primary btn-sm">Open Javadoc</a>
<span th:if="${repo.lastTag == null}" class="badge bg-secondary">Noch nicht generiert</span> <span th:if="${repo.lastTag == null}" class="badge bg-secondary">Not yet generated</span>
</td> </td>
</tr> </tr>
</tbody> </tbody>