]> BookStack Code Mirror - bookstack/blob - resources/lang/en/auth.php
Merge branch 'diff' of git://github.com/younes0/BookStack into younes0-diff
[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      * Email Confirmation Text
18      */
19     'email_confirm_subject' => 'Confirm your email on :appName',
20     'email_confirm_greeting' => 'Thanks for joining :appName!',
21     'email_confirm_text' => 'Please confirm your email address by clicking the button below:',
22     'email_confirm_action' => 'Confirm Email',
23     '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.',
24     'email_confirm_success' => 'Your email has been confirmed!',
25     'email_confirm_resent' => 'Confirmation email resent, Please check your inbox.',
26 ];