diff --git a/app/Notifications/VerifyEmailNotification.php b/app/Notifications/VerifyEmailNotification.php index 7de0cecc..89f0a715 100644 --- a/app/Notifications/VerifyEmailNotification.php +++ b/app/Notifications/VerifyEmailNotification.php @@ -57,7 +57,7 @@ class VerifyEmailNotification extends Notification $verificationUrl = $this->verificationUrl($notifiable); return (new MailMessage) - ->subject('Verify Email Address') + ->subject('E-Mail-Adresse bestätigen') ->view('mail.email-verification', [ 'user' => $notifiable, 'url' => $verificationUrl, diff --git a/resources/js/layouts/partials/landing-navbar.tsx b/resources/js/layouts/partials/landing-navbar.tsx index 02fe3292..06a24fec 100644 --- a/resources/js/layouts/partials/landing-navbar.tsx +++ b/resources/js/layouts/partials/landing-navbar.tsx @@ -92,7 +92,7 @@ const LandingNavbar = () => { {(user.role === 'admin' || user.role === 'instructor') && ( router.get(route('dashboard'))}> - Dashboard + Übersicht )} @@ -104,24 +104,24 @@ const LandingNavbar = () => { onClick={() => router.get(route('student.index', { tab: slug }))} > - {name} + {name} ))} - router.post('/logout')}> - - Log Out - + router.post('/logout')}> + + Abmelden + ) : (
)} @@ -153,10 +153,10 @@ const LandingNavbar = () => { user.role === 'admin' ? ( <> - Dashboard + Übersicht ) : ( @@ -167,19 +167,19 @@ const LandingNavbar = () => { )} - My Courses + Meine Kurse - Wishlist + Wunschliste - My Profile + Mein Profil - Settings + Einstellungen ) diff --git a/resources/js/pages/auth/verify-email.tsx b/resources/js/pages/auth/verify-email.tsx index c69667d4..5d5716f2 100644 --- a/resources/js/pages/auth/verify-email.tsx +++ b/resources/js/pages/auth/verify-email.tsx @@ -29,7 +29,7 @@ export default function Recaptcha({ status }: { status?: string }) { {button.submit} - diff --git a/resources/js/pages/student/partials/layout.tsx b/resources/js/pages/student/partials/layout.tsx index 737fa0be..6bdf204e 100644 --- a/resources/js/pages/student/partials/layout.tsx +++ b/resources/js/pages/student/partials/layout.tsx @@ -33,7 +33,7 @@ const Layout = ({ children, tab }: { children: ReactNode; tab: string }) => { : [ { id: 'exams', - name: 'Exams', + name: 'Prüfungen', slug: 'exams', Icon: FileQuestion, }, @@ -90,22 +90,22 @@ const Layout = ({ children, tab }: { children: ReactNode; tab: string }) => {
{status === 'verification-link-sent' ? (

- A new verification link has been sent to the email address you provided during registration. + Ein neuer Verifizierungslink wurde an die bei der Registrierung angegebene E-Mail-Adresse gesendet.

) : (

- Your email is not verified yet. Please verify your email address by clicking on the link we just emailed to you. + Ihre E-Mail-Adresse ist noch nicht verifiziert. Bitte bestätigen Sie Ihre E-Mail-Adresse, indem Sie auf den Link klicken, den wir Ihnen soeben per E-Mail gesendet haben.

)}
- +