42 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| return [
 | |
| 
 | |
|     'profile'               => 'Profile',
 | |
|     'logout'                => 'Logout',
 | |
|     'login'                 => 'Login',
 | |
|     'login_to'              => 'Login to start your session',
 | |
|     'remember_me'           => 'Remember Me',
 | |
|     'forgot_password'       => 'I forgot my password',
 | |
|     'reset_password'        => 'Reset Password',
 | |
|     'enter_email'           => 'Enter Your Email Address',
 | |
|     'current_email'         => 'Current Email',
 | |
|     'reset'                 => 'Reset',
 | |
|     'never'                 => 'never',
 | |
|     'landing_page'          => 'Landing Page',
 | |
| 
 | |
|     'password' => [
 | |
|         'current'           => 'Password',
 | |
|         'current_confirm'   => 'Password Confirmation',
 | |
|         'new'               => 'New Password',
 | |
|         'new_confirm'       => 'New Password Confirmation',
 | |
|     ],
 | |
| 
 | |
|     'error' => [
 | |
|         'self_delete'       => 'Error: Can not delete yourself!',
 | |
|         'self_disable'      => 'Error: Can not disable yourself!',
 | |
|         'no_company'        => 'Error: No company assigned to your account. Please, contact the system administrator.',
 | |
|     ],
 | |
| 
 | |
|     'failed'                => 'These credentials do not match our records.',
 | |
|     'throttle'              => 'Too many login attempts. Please try again in :seconds seconds.',
 | |
|     'disabled'              => 'This account is disabled. Please, contact the system administrator.',
 | |
| 
 | |
|     'notification' => [
 | |
|         'message_1'     => 'You are receiving this email because we received a password reset request for your account.',
 | |
|         'message_2'     => 'If you did not request a password reset, no further action is required.',
 | |
|         'button'        => 'Reset Password',
 | |
|     ],
 | |
| 
 | |
| ];
 |