<?php
/**
* This file is part of Aksara CMS, both framework and publishing
* platform.
*
* @author Aby Dahana <abydahana@gmail.com>
* @copyright (c) Aksara Laboratory <https://aksaracms.com>
* @license MIT License
*
* This source file is subject to the MIT license that is bundled
* with this source code in the LICENSE.txt file.
*
* When the signs come, those who don't believe at "that time"
* will have only two choices, commit suicide or become brutal.
*/
declare(strict_types=1);
/**
* 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.
*/
// Cast language settings
return [
'baseCastMissing' => '"{0}" ???? "CodeIgniter\Entity\Cast\BaseCast" ???? ???? ???.', // 'The "{0}" class must inherit the "CodeIgniter\Entity\Cast\BaseCast" class.'
'enumInvalidCaseName' => '???(Enum) "{1}"? ???? ?? ??? ?? "{0}"?(?) ????..', // 'Invalid case name "{0}" for enum "{1}".'
'enumInvalidType' => '???(Enum) ?? "{1}"?(?) ?????, "{0}"?(?) ???????..', // 'Expected enum of type "{1}", but received "{0}".'
'enumInvalidValue' => '???(Enum) "{0}"? ??? ? "{1}"?(?) ???????.', // 'Invalid value "{1}" for enum "{0}".'
'enumMissingClass' => '???(Enum) ???? ?? enum ???? ????? ???.', // 'Enum class must be specified for enum casting.'
'enumNotEnum' => '"{0}"?(?) ??? ???(Enum) ??? ??? ????.', // 'The "{0}" is not a valid enum class.'
'invalidCastMethod' => '"{0}"? ???? ?? ??? ?????, ??? ????? ["get", "set"]???.', // 'The "{0}" is invalid cast method, valid methods are: ["get", "set"].'
'invalidTimestamp' => '"timestamp" ??? ??? timestamp?? ???.', // 'Type casting "timestamp" expects a correct timestamp.'
'jsonErrorCtrlChar' => '??? ?? ?? ?? ??', // 'Unexpected control character found.'
'jsonErrorDepth' => '?? ?? ?? ??', // 'Maximum stack depth exceeded.'
'jsonErrorStateMismatch' => 'Underflow ?? modes ???', // 'Underflow or the modes mismatch.'
'jsonErrorSyntax' => 'JSON ?? ??', // 'Syntax error, malformed JSON.'
'jsonErrorUnknown' => '? ? ?? ??', // 'Unknown error.'
'jsonErrorUtf8' => 'UTF-8 ??? ?? ??. ???? ????? ?? ????.', // 'Malformed UTF-8 characters, possibly incorrectly encoded.'
];
|