27 lines
930 B
PHP
27 lines
930 B
PHP
<?php
|
||
/**
|
||
* MineAdmin is committed to providing solutions for quickly building web applications
|
||
* Please view the LICENSE file that was distributed with this source code,
|
||
* For the full copyright and license information.
|
||
* Thank you very much for using MineAdmin.
|
||
*
|
||
* @Author X.Mo<root@imoi.cn>
|
||
* @Link https://gitee.com/xmo/MineAdmin
|
||
*/
|
||
|
||
declare(strict_types=1);
|
||
|
||
return [
|
||
'no_login' => '用户异常或未登录,请重新登录',
|
||
'token_blacklist' => 'token已在黑名单,请重新登陆',
|
||
'validate_fail' => 'Token 验证失败,可能已过期或者在黑名单',
|
||
'no_token' => 'Token 不合法或者不存在',
|
||
|
||
'login_success' => '登录成功',
|
||
'username_error' => '用户不存在',
|
||
'password_error' => '密码不正确',
|
||
'user_ban' => '用户被禁用',
|
||
'code_error' => '验证码错误或已失效',
|
||
'unknown_error' => '未知错误',
|
||
'unknown' => '未知',
|
||
]; |