19 lines
830 B
PHP
19 lines
830 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.
|
|
*/
|
|
|
|
// Format language settings
|
|
return [
|
|
'invalidFormatter' => '"{0}"은(는) 유효한 포맷터 클래스가 아닙니다.', // '"{0}" is not a valid Formatter class.'
|
|
'invalidJSON' => 'JSON 문자열 파싱 실패, 에러: {0}.', // 'Failed to parse JSON string. Error: {0}'
|
|
'invalidMime' => 'MIME 유형에 대해 정의 된 포맷터 없음 : "{0}".', // 'No Formatter defined for mime type: "{0}".'
|
|
'missingExtension' => 'XML 형식을 지정하려면 SimpleXML 확장이 필요합니다.', // 'The SimpleXML extension is required to format XML.'
|
|
];
|