lang bugfix
All checks were successful
Build & Push Docker Image / docker (push) Successful in 1m51s

This commit is contained in:
Ahmed Darrazi 2025-12-18 21:17:40 +01:00
parent f892054e53
commit bf507baaff
3 changed files with 14 additions and 14 deletions

View File

@ -48,7 +48,7 @@ class PasswordResetLinkController extends Controller
$user->notify(new ResetPasswordNotification($token)); $user->notify(new ResetPasswordNotification($token));
} }
return back()->with('status', __('A reset link will be sent if the account exists.')); return back()->with('status', __('Ein Link zum Zurücksetzen wird gesendet, wenn das Konto existiert.'));
} }
/** /**

View File

@ -45,26 +45,26 @@
<body> <body>
<h1 style="font-size: 1.5em; font-weight: 600; margin-bottom: 1em;"> <h1 style="font-size: 1.5em; font-weight: 600; margin-bottom: 1em;">
Hello, {{ $user->name }}! Hallo, {{ $user->name }}!
</h1> </h1>
<p style="margin-bottom: 1.5em;"> <p style="margin-bottom: 1.5em;">
Thank you for registering with us. Please verify your email address by clicking the button below: Danke für deine Registrierung. Bitte bestätige deine E-Mail-Adresse, indem du auf den untenstehenden Button klickst:
</p> </p>
<a <a
href="{{ $url }}" href="{{ $url }}"
style="display: inline-block; padding: 0.75em 1.5em; background-color: #0969da; color: #fff; border-radius: 0.5em; text-decoration: none; font-weight: 600; margin-bottom: 1.5em;" style="display: inline-block; padding: 0.75em 1.5em; background-color: #0969da; color: #fff; border-radius: 0.5em; text-decoration: none; font-weight: 600; margin-bottom: 1.5em;"
> >
Verify Email Address E-Mail-Adresse bestätigen
</a> </a>
<p style="margin-bottom: 1em;"> <p style="margin-bottom: 1em;">
This verification link will expire in 5 minutes. Dieser Bestätigungslink läuft in 5 Minuten ab.
</p> </p>
<p style="margin-bottom: 1em;"> <p style="margin-bottom: 1em;">
If you did not create an account, no further action is required. Wenn du kein Konto erstellt hast, musst du nichts weiter tun.
</p> </p>
<p style="margin: 2em 0 0;"> <p style="margin: 2em 0 0;">
Thanks,<br> Vielen Dank,<br>
{{ config('mail.from.name') }} {{ config('mail.from.name') }}
</p> </p>
</body> </body>

View File

@ -45,34 +45,34 @@
<body> <body>
<h1 style="font-size: 1.5em; font-weight: 600; margin-bottom: 1em;"> <h1 style="font-size: 1.5em; font-weight: 600; margin-bottom: 1em;">
Hello, {{ $user->name }}! Hallo, {{ $user->name }}!
</h1> </h1>
<h2 style="font-size: 1.25em; font-weight: 600; margin: 1.5em 0 1em;"> <h2 style="font-size: 1.25em; font-weight: 600; margin: 1.5em 0 1em;">
Reset Password Notification Passwort zurücksetzen
</h2> </h2>
<p style="margin-bottom: 1.5em;"> <p style="margin-bottom: 1.5em;">
You are receiving this email because we received a password reset request for your account. Du erhältst diese E-Mail, weil wir eine Anfrage zum Zurücksetzen des Passworts für dein Konto erhalten haben.
</p> </p>
<a <a
href="{{ $url }}" href="{{ $url }}"
style="display: inline-block; padding: 0.75em 1.5em; background-color: #0969da; color: #fff; border-radius: 0.5em; text-decoration: none; font-weight: 600; margin-bottom: 1.5em;" style="display: inline-block; padding: 0.75em 1.5em; background-color: #0969da; color: #fff; border-radius: 0.5em; text-decoration: none; font-weight: 600; margin-bottom: 1.5em;"
> >
Reset Password Passwort zurücksetzen
</a> </a>
<p style="margin-bottom: 1em;"> <p style="margin-bottom: 1em;">
This password reset link will expire in {{ $count }} minutes. Dieser Link zum Zurücksetzen des Passworts läuft in {{ $count }} Minuten ab.
</p> </p>
<p style="margin-bottom: 1em;"> <p style="margin-bottom: 1em;">
If you did not request a password reset, no further action is required. Wenn du kein Zurücksetzen des Passworts angefordert hast, musst du nichts weiter tun.
</p> </p>
<p style="margin: 2em 0 0;"> <p style="margin: 2em 0 0;">
Thanks,<br> Vielen Dank,<br>
{{ config('mail.from.name') }} {{ config('mail.from.name') }}
</p> </p>
</body> </body>