Deutsche Umlaute in UI und Dokumentation korrigieren

This commit is contained in:
2026-07-14 22:11:33 +02:00
parent f9544f24fd
commit 539117b409
31 changed files with 561 additions and 564 deletions
+3 -3
View File
@@ -19,7 +19,7 @@ if ($_SERVER['REQUEST_METHOD'] === 'POST') {
$identity = $tenantId > 0 ? saas_identity_for_user_tenant($pdo, $pendingUserId, $tenantId) : null;
if ($identity === null) {
$errors[] = 'Dieser Mandant ist fuer dein Konto nicht verfuegbar.';
$errors[] = 'Dieser Mandant ist für dein Konto nicht verfügbar.';
} else {
saas_session_login($identity);
header('Location: konto.php');
@@ -34,7 +34,7 @@ include 'nav.php';
<section id="banner">
<div class="content">
<h2>Mandant auswaehlen</h2>
<h2>Mandant auswählen</h2>
<?php if ($errors !== []): ?>
<div class="hint-box error">
@@ -45,7 +45,7 @@ include 'nav.php';
<?php endif; ?>
<?php if ($memberships === []): ?>
<div class="hint-box error"><p>Fuer dieses Konto ist kein aktiver Mandant verfuegbar.</p></div>
<div class="hint-box error"><p>Für dieses Konto ist kein aktiver Mandant verfügbar.</p></div>
<?php else: ?>
<form method="post" action="mandant-auswahl.php">
<?php echo app_csrf_field(); ?>