mirror of
https://github.com/Kovah/LinkAce.git
synced 2025-01-17 13:18:21 +01:00
28 lines
1019 B
PHP
28 lines
1019 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Authentication Language Lines
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| The following language lines are used during authentication for various
|
|
| messages that we need to display to the user. You are free to modify
|
|
| these language lines according to your application's requirements.
|
|
|
|
|
*/
|
|
|
|
'failed' => 'These credentials do not match our records.',
|
|
'throttle' => 'Too many login attempts. Please try again in :seconds seconds.',
|
|
|
|
'confirm_title' => 'Confirmation required',
|
|
'confirm' => 'Please confirm this action using your current password.',
|
|
'confirm_action' => 'Confirm action',
|
|
|
|
'two_factor' => 'Two Factor Authentication',
|
|
'two_factor_check' => 'Please enter the one-time-password provided by your Two Factor Authentication app now.',
|
|
'two_factor_with_recovery' => 'Authenticate with Recovery Code',
|
|
|
|
];
|