mirror of
https://github.com/Kovah/LinkAce.git
synced 2025-01-17 13:18:21 +01:00
28 lines
947 B
PHP
28 lines
947 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' => '您输入的信息与我们的记录不匹配。',
|
|
'throttle' => '登录失败次数过多,请 :seconds 秒后再试。',
|
|
|
|
'confirm_title' => '需要确认',
|
|
'confirm' => '请使用您当前的密码确认此操作。',
|
|
'confirm_action' => '确认操作',
|
|
|
|
'two_factor' => '双重验证',
|
|
'two_factor_check' => '请输入您的双重验证应用程序提供的一次性密码。',
|
|
'two_factor_with_recovery' => '验证恢复码',
|
|
|
|
];
|