added missing translations

This commit is contained in:
Codex Agent
2025-11-26 14:41:39 +01:00
parent ff168834b4
commit ecac9507a4
35 changed files with 2812 additions and 256 deletions

View File

@@ -1,11 +1,13 @@
import React from 'react';
import { useEffect } from 'react';
import { useLocation, useNavigate } from 'react-router-dom';
import { useTranslation } from 'react-i18next';
import { ADMIN_LOGIN_PATH } from '../constants';
export default function LoginStartPage(): React.ReactElement {
const location = useLocation();
const navigate = useNavigate();
const { t } = useTranslation('auth');
useEffect(() => {
const params = new URLSearchParams(location.search);
@@ -20,7 +22,7 @@ export default function LoginStartPage(): React.ReactElement {
return (
<div className="flex min-h-screen flex-col items-center justify-center gap-4 bg-slate-950 p-6 text-center text-white/70">
<p className="text-sm font-medium">Weiterleitung zum Login </p>
<p className="text-sm font-medium">{t('redirecting', 'Redirecting to login …')}</p>
</div>
);
}