22 lines
673 B
PHP
22 lines
673 B
PHP
<?php
|
||
/**
|
||
* header.php
|
||
*
|
||
* @copyright 2022 beikeshop.com - All Rights Reserved
|
||
* @link https://beikeshop.com
|
||
* @author Edward Yang <yangjin@guangda.work>
|
||
* @created 2022-08-02 19:03:19
|
||
* @modified 2022-08-02 19:03:19
|
||
*/
|
||
|
||
return [
|
||
'admin_users_index' => '用戶列表',
|
||
'admin_users_create' => '創建用戶',
|
||
'admin_users_show' => '用戶詳情',
|
||
'admin_users_update' => '更新用戶',
|
||
'admin_users_delete' => '刪除用戶',
|
||
'verify_code_expired' => '您的驗證碼已過期(10分鐘),請重新獲取',
|
||
'verify_code_error' => '您的驗證碼錯誤',
|
||
'account_not_exist' => '賬號不存在',
|
||
];
|