37 lines
1.4 KiB
PHP
37 lines
1.4 KiB
PHP
<?php
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| OTP Language Lines
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| The following language lines are used during OTP authentication for various
|
|
| messages that we need to display to the user. You are free to modify
|
|
| these language lines according to your application's requirements.
|
|
|
|
|
*/
|
|
|
|
'title' => 'Verify Your Phone',
|
|
'description' => 'We sent a 6-digit code to :phone',
|
|
'enter_code' => 'Enter verification code',
|
|
'invalid_code' => 'Please enter a valid 6-digit code',
|
|
'verify' => 'Verify',
|
|
'back_to_login' => 'Back to login',
|
|
'resend_code' => 'Resend code',
|
|
'resend_in' => 'Resend in',
|
|
'need_help' => 'Need help?',
|
|
'invalid_phone' => 'Please enter a valid phone number',
|
|
'user_not_found' => 'User not found with this phone number',
|
|
'sent' => 'OTP sent successfully',
|
|
'expired' => 'OTP has expired',
|
|
'max_attempts' => 'Maximum attempts reached. Please request a new OTP',
|
|
'invalid' => 'Invalid OTP code',
|
|
'login_success' => 'Login successful',
|
|
'resend_failed' => 'Failed to resend OTP. Please try again',
|
|
'generate_failed' => 'Failed to generate OTP. Please try again',
|
|
'verification_failed' => 'OTP verification failed. Please try again',
|
|
|
|
];
|