27 lines
997 B
PHP
27 lines
997 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' => 'The user is abnormal or not logged in, please log in again',
|
|
'token_blacklist' => 'Token has been blacklisted, please login again',
|
|
'validate_fail' => 'Token verification failed. It may be expired or in the blacklist',
|
|
'no_token' => 'The token is illegal or does not exist',
|
|
|
|
'login_success' => 'Login successful',
|
|
'username_error' => 'User does not exist',
|
|
'password_error' => 'The password is incorrect',
|
|
'user_ban' => 'User disabled',
|
|
'code_error' => 'Verification code error or expired',
|
|
'unknown_error' => 'unknown error',
|
|
'unknown' => 'unknown',
|
|
]; |