]> BookStack Code Mirror - bookstack/blob - resources/lang/en/auth.php
de_informal - remove comments from unused lines
[bookstack] / resources / lang / en / auth.php
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
16     /**
17      * Login & Register
18      */
19     'sign_up' => 'Sign up',
20     'log_in' => 'Log in',
21     'log_in_with' => 'Login with :socialDriver',
22     'sign_up_with' => 'Sign up with :socialDriver',
23     'logout' => 'Logout',
24
25     'name' => 'Name',
26     'username' => 'Username',
27     'email' => 'Email',
28     'password' => 'Password',
29     'password_confirm' => 'Confirm Password',
30     'password_hint' => 'Must be over 5 characters',
31     'forgot_password' => 'Forgot Password?',
32     'remember_me' => 'Remember Me',
33     'ldap_email_hint' => 'Please enter an email to use for this account.',
34     'create_account' => 'Create Account',
35     'social_login' => 'Social Login',
36     'social_registration' => 'Social Registration',
37     'social_registration_text' => 'Register and sign in using another service.',
38
39     'register_thanks' => 'Thanks for registering!',
40     'register_confirm' => 'Please check your email and click the confirmation button to access :appName.',
41     'registrations_disabled' => 'Registrations are currently disabled',
42     'registration_email_domain_invalid' => 'That email domain does not have access to this application',
43     'register_success' => 'Thanks for signing up! You are now registered and signed in.',
44
45
46     /**
47      * Password Reset
48      */
49     'reset_password' => 'Reset Password',
50     'reset_password_send_instructions' => 'Enter your email below and you will be sent an email with a password reset link.',
51     'reset_password_send_button' => 'Send Reset Link',
52     'reset_password_sent_success' => 'A password reset link has been sent to :email.',
53     'reset_password_success' => 'Your password has been successfully reset.',
54
55     'email_reset_subject' => 'Reset your :appName password',
56     'email_reset_text' => 'You are receiving this email because we received a password reset request for your account.',
57     'email_reset_not_requested' => 'If you did not request a password reset, no further action is required.',
58
59
60     /**
61      * Email Confirmation
62      */
63     'email_confirm_subject' => 'Confirm your email on :appName',
64     'email_confirm_greeting' => 'Thanks for joining :appName!',
65     'email_confirm_text' => 'Please confirm your email address by clicking the button below:',
66     'email_confirm_action' => 'Confirm Email',
67     'email_confirm_send_error' => 'Email confirmation required but the system could not send the email. Contact the admin to ensure email is set up correctly.',
68     'email_confirm_success' => 'Your email has been confirmed!',
69     'email_confirm_resent' => 'Confirmation email resent, Please check your inbox.',
70
71     'email_not_confirmed' => 'Email Address Not Confirmed',
72     'email_not_confirmed_text' => 'Your email address has not yet been confirmed.',
73     'email_not_confirmed_click_link' => 'Please click the link in the email that was sent shortly after you registered.',
74     'email_not_confirmed_resend' => 'If you cannot find the email you can re-send the confirmation email by submitting the form below.',
75     'email_not_confirmed_resend_button' => 'Resend Confirmation Email',
76 ];