mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-02-22 18:55:43 +01:00
17 lines
495 B
PHP
17 lines
495 B
PHP
|
<?php
|
|||
|
|
|||
|
return [
|
|||
|
'not-found' => [
|
|||
|
'code' => '404',
|
|||
|
'title' => '这个页面失踪了!',
|
|||
|
'message' => '抱歉,但我们无法找到您要访问的的页面。请检查你的 URL,然后重试。',
|
|||
|
'link' => '返回主页',
|
|||
|
],
|
|||
|
'unauthorized' => [
|
|||
|
'code' => '401',
|
|||
|
'title' => '未授权',
|
|||
|
'message' => '很抱歉,您需要管理员权限才能看到此页面。',
|
|||
|
'link' => '返回主页',
|
|||
|
],
|
|||
|
];
|