19 lines
733 B
PHP
19 lines
733 B
PHP
<?php
|
|
|
|
/**
|
|
* This file is part of CodeIgniter 4 framework.
|
|
*
|
|
* (c) CodeIgniter Foundation <admin@codeigniter.com>
|
|
*
|
|
* For the full copyright and license information, please view
|
|
* the LICENSE file that was distributed with this source code.
|
|
*/
|
|
|
|
// Errors language settings
|
|
return [
|
|
'pageNotFound' => '404 - Page Not Found', // '404 - Page Not Found'
|
|
'sorryCannotFind' => '죄송합니다! 찾으시던 페이지를 찾을 수 없습니다.', // 'Sorry! Cannot seem to find the page you were looking for.'
|
|
'whoops' => 'Whoops!', // 'Whoops!'
|
|
'weHitASnag' => '문제가 발생하였습니다. 나중에 다시 시도해 주세요.', // 'We seem to have hit a snag. Please try again later...'
|
|
];
|