mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-01-17 21:49:01 +01:00
26 lines
783 B
PHP
Executable File
26 lines
783 B
PHP
Executable File
<?php
|
|
|
|
/*
|
|
* This file is part of Cachet.
|
|
*
|
|
* (c) Alt Three Services Limited
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
return [
|
|
'not-found' => [
|
|
'code' => '404',
|
|
'title' => '해당 페이지가 없습니다!',
|
|
'message' => '죄송합니다, 찾으시는 페이지가 없습니다. URL 을 확인하고 다시 시도해주세요.',
|
|
'link' => '홈페이지로 돌아가기',
|
|
],
|
|
'unauthorized' => [
|
|
'code' => '401',
|
|
'title' => '허용되지 않음',
|
|
'message' => '죄송합니다. 이 페이지를 보려면 관리자 권한이 필요합니다.',
|
|
'link' => '홈페이지로 돌아가기',
|
|
],
|
|
];
|