2016-03-25 01:18:05 -07:00
|
|
|
<?php
|
|
|
|
|
|
|
|
return array(
|
|
|
|
|
|
|
|
'account_already_exists' => 'An account with the this email already exists.',
|
|
|
|
'account_not_found' => 'The username or password is incorrect.',
|
|
|
|
'account_not_activated' => 'This user account is not activated.',
|
|
|
|
'account_suspended' => 'This user account is suspended.',
|
|
|
|
'account_banned' => 'This user account is banned.',
|
2020-10-06 19:30:04 -07:00
|
|
|
'throttle' => 'Too many failed login attempts. Please try again in :seconds seconds.',
|
2019-03-20 01:24:31 -07:00
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
'signin' => array(
|
|
|
|
'error' => 'There was a problem while trying to log you in, please try again.',
|
|
|
|
'success' => 'You have successfully logged in.',
|
|
|
|
),
|
|
|
|
|
|
|
|
'signup' => array(
|
|
|
|
'error' => 'There was a problem while trying to create your account, please try again.',
|
|
|
|
'success' => 'Account sucessfully created.',
|
|
|
|
),
|
|
|
|
|
2020-10-06 19:30:04 -07:00
|
|
|
'forgot-password' => array(
|
|
|
|
'error' => 'There was a problem while trying to get a reset password code, please try again.',
|
|
|
|
'success' => 'Password recovery email successfully sent.',
|
|
|
|
),
|
2020-03-04 22:07:35 -08:00
|
|
|
|
2020-10-06 19:30:04 -07:00
|
|
|
'forgot-password-confirm' => array(
|
|
|
|
'error' => 'There was a problem while trying to reset your password, please try again.',
|
|
|
|
'success' => 'Your password has been successfully reset.',
|
|
|
|
),
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2020-10-06 19:30:04 -07:00
|
|
|
'activate' => array(
|
|
|
|
'error' => 'There was a problem while trying to activate your account, please try again.',
|
|
|
|
'success' => 'Your account has been successfully activated.',
|
|
|
|
),
|
2016-03-25 01:18:05 -07:00
|
|
|
|
|
|
|
);
|