auth.php 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <?php
  2. return [
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Authentication Language Lines
  6. |--------------------------------------------------------------------------
  7. |
  8. | The following language lines are used during authentication for various
  9. | messages that we need to display to the user. You are free to modify
  10. | these language lines according to your application's requirements.
  11. |
  12. */
  13. 'failed' => 'These credentials do not match our records.',
  14. 'throttle' => 'Too many login attempts. Please try again in :seconds seconds.',
  15. 'verifyYourEmailAddress' => ' - Verify Your Email Address',
  16. 'loginTitle' => 'Account Login',
  17. 'failed' => 'These credentials do not match our records.',
  18. 'throttle' => 'Too many login attempts. Please try again in :seconds seconds.',
  19. 'password' => 'Password' ,
  20. 'remember' => 'Remember Me',
  21. 'forgot' => 'Forgot Password',
  22. 'login' => 'Login',
  23. 'register' => 'Register',
  24. 'reset' => 'Password Reset',
  25. 'name' => 'Name',
  26. 'username' => 'Username',
  27. 'confirm-password' => 'Confirm Password',
  28. 'age' => 'I am at least 16 years old',
  29. 'terms' => "By signing up, you agree to our <a href=\"".route('site.terms')."\" class=\"font-weight-bold text-dark\">Terms of Use</a> and <a href=\"".route('site.privacy')."\" class=\"font-weight-bold text-dark\">Privacy Policy</a>.",
  30. 'emailAddress' => "E-Mail Address",
  31. 'registerTitle' => 'Register a new account',
  32. 'sendReset' => 'Send Password Reset Link',
  33. 'backLogin' => 'Back to Login',
  34. 'signInMastodon' => 'Sign-in with Mastodon',
  35. ];