Blame view

resources/lang/en-GB/auth.php 1.54 KB
b7c7a5f6   Alexey Boroda   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
  <?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',
      
      'password' => [
          'current'           => 'Password',
          'current_confirm'   => 'Password Confirmation',
          'new'               => 'New Password',
          'new_confirm'       => 'New Password Confirmation',
      ],
      
      'error' => [
          'self_delete'       => 'Error: Can not delete yourself!',
          'no_company'        => 'Error: No company assigned to your account. Please, contact the system administrator.',
      ],
  
      'failed'                => 'These credentials do not match our records.',
      'disabled'              => 'This account is disabled. Please, contact the system administrator.',
      'throttle'              => 'Too many login attempts. Please try again in :seconds seconds.',
  
      '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',
      ],
  
  ];