mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-06-17 09:57:30 +08:00
14 lines
595 B
PHP
14 lines
595 B
PHP
<?php
|
|
|
|
$lang_takelogin = array
|
|
(
|
|
'std_login_fail_note' => "<b>错误</b>: 用户名或密码不正确!<br /><br />忘记密码了?<b><a href=recover.php>找回</a></b>你的密码!",
|
|
'std_login_fail' => "登录失败!",
|
|
'std_account_disabled' => "该账号已被禁用。",
|
|
'std_user_account_unconfirmed' => "该账户还未通过验证。如果你没有收到验证邮件,试试<a href='confirm_resend.php'><b>重新发送验证邮件</b></a>。",
|
|
'std_require_two_step_code' => '需要两步验证 code',
|
|
'std_invalid_two_step_code' => '两步验证 code 无效',
|
|
);
|
|
|
|
?>
|