Email Confirmation Language

Updated the language of the email confirmation page to be more clear in that the user must click the button to receive the verification email.
This commit is contained in:
Refringe 2024-07-06 19:45:42 -04:00
parent 53b67b23dd
commit d4443ff4da
Signed by: Refringe
SSH Key Fingerprint: SHA256:t865XsQpfTeqPRBMN2G6+N8wlDjkgUCZF3WGW6O9N/k

View File

@ -5,12 +5,12 @@
</x-slot>
<div class="mb-4 text-sm text-gray-600 dark:text-gray-400">
{{ __('Before continuing, could you verify your email address by clicking on the link we just emailed to you? If you didn\'t receive the email, we will gladly send you another.') }}
{{ __('Before continuing, please verify your email address. Click the button below and check your email for a verification link.') }}
</div>
@if (session('status') == 'verification-link-sent')
<div class="mb-4 font-medium text-sm text-green-600 dark:text-green-400">
{{ __('A new verification link has been sent to the email address you provided in your profile settings.') }}
{{ __('A verification link has been sent to the email address you provided in your profile settings.') }}
</div>
@endif
@ -20,7 +20,7 @@
<div>
<x-button type="submit">
{{ __('Resend Verification Email') }}
{{ __('Send Verification Email') }}
</x-button>
</div>
</form>