44 lines
1.4 KiB
PHP
44 lines
1.4 KiB
PHP
<?php
|
|
|
|
return [
|
|
'failed' => 'These credentials do not match our records.',
|
|
'password' => 'The provided password is incorrect.',
|
|
'throttle' => 'Too many login attempts. Please try again in :seconds seconds.',
|
|
|
|
'login' => [
|
|
'title' => 'Log in',
|
|
'username_or_email' => 'Username or email',
|
|
'password' => 'Password',
|
|
'remember' => 'Remember me',
|
|
'submit' => 'Log in',
|
|
'generic_error' => 'Login failed. Please try again.',
|
|
],
|
|
|
|
'already_authenticated' => 'Already signed in',
|
|
'logged_in_as' => 'You are signed in as :email.',
|
|
'skip_to_payment' => 'Continue to payment',
|
|
'verify_notice' => 'Please verify your email address to continue.',
|
|
'user' => 'current user',
|
|
|
|
'register' => [
|
|
'title' => 'Register',
|
|
'name' => 'Full name',
|
|
'username' => 'Username',
|
|
'email' => 'Email address',
|
|
'password' => 'Password',
|
|
'password_confirmation' => 'Confirm password',
|
|
'first_name' => 'First name',
|
|
'last_name' => 'Last name',
|
|
'address' => 'Address',
|
|
'phone' => 'Phone number',
|
|
'privacy_consent' => 'I agree to the privacy policy and consent to the processing of my personal data.',
|
|
'submit' => 'Sign up',
|
|
'generic_error' => 'Registration failed. Please try again.',
|
|
],
|
|
|
|
'verification' => [
|
|
'notice' => 'Please verify your email address.',
|
|
'resend' => 'Resend email',
|
|
],
|
|
];
|