feat(i18n): migrate hardcoded German strings to t() across 104 components/pages — AST-based batch with re-parse gate, 423 new de.json keys; tsc clean; vitest failures byte-identical to clean-tree baseline (pre-existing)

This commit is contained in:
Agent Zero
2026-08-27 01:43:06 +02:00
parent 5680179260
commit 4cb5298768
105 changed files with 1204 additions and 459 deletions
+3 -1
View File
@@ -2,8 +2,10 @@
// Guest contacts page now redirects to normal contacts page
import { useEffect } from 'react';
import { useNavigate } from 'react-router-dom';
import { useTranslation } from 'react-i18next';
export function GuestContactsPage() {
const { t } = useTranslation();
const navigate = useNavigate();
useEffect(() => {
@@ -13,7 +15,7 @@ export function GuestContactsPage() {
return (
<div className="flex items-center justify-center min-h-screen">
<p className="text-gray-500">Weiterleitung zu Kontakten...</p>
<p className="text-gray-500">{t('guestContacts.weiterleitungzukontakten')}</p>
</div>
);
}