Advertisement
Kirsiina

Untitled

Dec 14th, 2023
1,024
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 3.41 KB | None | 0 0
  1. <?php
  2.  
  3. return [
  4.  
  5.     /*
  6.     |--------------------------------------------------------------------------
  7.     | Authentication Language Lines
  8.     |--------------------------------------------------------------------------
  9.     |
  10.     | The following language lines are used during authentication for various
  11.     | messages that we need to display to the user. You are free to modify
  12.     | these language lines according to your application's requirements.
  13.     |
  14.     */
  15.  
  16.     'failed'   => 'These credentials do not match our records.',
  17.     'throttle' => 'Too many login attempts. Please try again in :seconds seconds.',
  18.  
  19.     // Activation items
  20.     'sentEmail'        => 'We have sent an email to :email.',
  21.     'clickInEmail'     => 'Please click the link in it to activate your account.',
  22.     'anEmailWasSent'   => 'An email was sent to :email on :date.',
  23.     'clickHereResend'  => 'Click here to resend the email.',
  24.     'successActivated' => 'Success, your account has been activated.',
  25.     'unsuccessful'     => 'Your account could not be activated; please try again.',
  26.     'notCreated'       => 'Your account could not be created; please try again.',
  27.     'tooManyEmails'    => 'Too many activation emails have been sent to :email. <br />Please try again in <span class="label label-danger">:hours hours</span>.',
  28.     'regThanks'        => 'Thank you for registering, ',
  29.     'invalidToken'     => 'Invalid activation token. ',
  30.     'activationSent'   => 'Activation email sent. ',
  31.     'alreadyActivated' => 'Already activated. ',
  32.  
  33.     // Labels
  34.     'whoops'          => 'Whoops! ',
  35.     'someProblems'    => 'There were some problems with your input.',
  36.     'email'           => 'E-Mail Address',
  37.     'password'        => 'Password',
  38.     'rememberMe'      => ' Remember Me',
  39.     'login'           => 'Login',
  40.     'forgot'          => 'Forgot Your Password?',
  41.     'forgot_message'  => 'Password Troubles?',
  42.     'name'            => 'Username',
  43.     'first_name'      => 'First Name',
  44.     'last_name'       => 'Last Name',
  45.     'confirmPassword' => 'Confirm Password',
  46.     'register'        => 'Register',
  47.  
  48.     // Placeholders
  49.     'ph_name'          => 'Username',
  50.     'ph_email'         => 'E-mail Address',
  51.     'ph_firstname'     => 'First Name',
  52.     'ph_lastname'      => 'Last Name',
  53.     'ph_password'      => 'Password',
  54.     'ph_password_conf' => 'Confirm Password',
  55.  
  56.     // User flash messages
  57.     'sendResetLink' => 'Send Password Reset Link',
  58.     'resetPassword' => 'Reset Password',
  59.     'loggedIn'      => 'You are logged in!',
  60.  
  61.     // email links
  62.     'pleaseActivate'    => 'Please activate your account.',
  63.     'clickHereReset'    => 'Click here to reset your password: ',
  64.     'clickHereActivate' => 'Click here to activate your account: ',
  65.  
  66.     // Validators
  67.     'userNameTaken'    => 'Username is taken',
  68.     'userNameRequired' => 'Username is required',
  69.     'fNameRequired'    => 'First Name is required',
  70.     'lNameRequired'    => 'Last Name is required',
  71.     'emailRequired'    => 'Email is required',
  72.     'emailInvalid'     => 'Email is invalid',
  73.     'passwordRequired' => 'Password is required',
  74.     'PasswordMin'      => 'Password needs to have at least 6 characters',
  75.     'PasswordMax'      => 'Password maximum length is 20 characters',
  76.     'captchaRequire'   => 'Captcha is required',
  77.     'CaptchaWrong'     => 'Wrong captcha, please try again.',
  78.     'roleRequired'     => 'User role is required.',
  79.  
  80. ];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement