Move frontend.auth.* to auth.*

This commit is contained in:
Nabeel Shahzad
2018-05-18 14:30:59 -05:00
parent 203b6496fc
commit b63c9a8cd4
14 changed files with 75 additions and 65 deletions

View File

@@ -1,19 +1,24 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Authentication Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used during 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.
|
*/
'failed' => 'These credentials do not match our records.',
'throttle' => 'Too many login attempts. Please try again in :seconds seconds.',
'failed' => 'These credentials do not match our records.',
'throttle' => 'Too many login attempts. Please try again in :seconds seconds.',
'login' => 'Log In',
'password' => 'Password',
'createaccount' => 'Create Account',
'forgotpassword' => 'Forgot Password',
'fullname' => 'Full Name',
'emailaddress' => 'Email Address',
'fillcaptcha' => 'Fill out the captcha',
'tocaccept' => 'By registering, you agree to the Terms and Conditions.',
'register' => 'Register',
'registrationpending' => 'Registration Pending',
'pendingmessage' => 'Your registration is pending approval. Please check your email!',
'registrationsubmitted' => 'Registration Submitted',
'registrationconfirmation' => 'Registration Confirmation',
'confirmationmessage' => 'Your application has been submitted. It requires staff member approval, once a\nstaff member has reviewed your application, you will receive a confirmation email.',
'registrationdenied' => 'Registration Denied',
'deniedmessage' => 'Your registration was denied. Please contact an administrator.',
'accountsuspended' => 'Account Suspended',
'suspendedmessage' => 'Your account has been suspended. Please contact an administrator.',
];