29 lines
1.0 KiB
PHP
29 lines
1.0 KiB
PHP
<?php
|
|
|
|
return [
|
|
// Laravel default auth lines
|
|
'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
|
|
'login_title' => 'Sign in to CluPilot',
|
|
'login_subtitle' => 'Sign in with your credentials.',
|
|
'email' => 'Email',
|
|
'password_label' => 'Password',
|
|
'remember' => 'Stay signed in',
|
|
'sign_in' => 'Sign in',
|
|
|
|
// Two-factor
|
|
'twofa_title' => 'Two-factor confirmation',
|
|
'twofa_subtitle' => 'Enter the code from your authenticator app.',
|
|
'twofa_recovery_subtitle' => 'Enter one of your recovery codes.',
|
|
'otp_digit' => 'Digit',
|
|
'recovery_code' => 'Recovery code',
|
|
'verify' => 'Verify',
|
|
'use_recovery' => 'Use a recovery code',
|
|
'use_otp' => 'Use authenticator code',
|
|
'account_suspended' => 'Your account is suspended. Please contact support.',
|
|
'account_closed' => 'This account has been closed.',
|
|
];
|