<?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.
*/
// Database language settings
return [
'invalidEvent' => '"{0}"? ??? ???? ?? ?? ??? ?????.', // '"{0}" is not a valid Model Event callback.'
'invalidArgument' => '"{0}" ?? ??? ??? ??? ????? ???.', // 'You must provide a valid "{0}".'
'invalidAllowedFields' => 'Model? ?? fileds? ??? ??? ??? ???: "{0}"', // 'Allowed fields must be specified for model: "{0}"'
'emptyDataset' => '{0}? ???? ????.', // 'There is no data to {0}.'
'emptyPrimaryKey' => '{0}?(?) ???? ?? ?? ? ???? ????.', // 'There is no primary key defined when trying to make {0}.'
'failGetFieldData' => '???????? ?? ???? ?? ?? ?????.', // 'Failed to get field data from database.'
'failGetIndexData' => '???????? ??? ???? ?? ?? ?????.', // 'Failed to get index data from database.'
'failGetForeignKeyData' => '???????? ?? ? ???? ?? ?? ?????.', // 'Failed to get foreign key data from database.'
'parseStringFail' => '? ??? ?? ??? ??????.', // 'Parsing key string failed.'
'featureUnavailable' => '? ??? ???? ???????? ??? ? ????.', // 'This feature is not available for the database you are using.'
'tableNotFound' => '?? ???????? "{0}" ???? ?? ? ????.', // 'Table "{0}" was not found in the current database.'
'noPrimaryKey' => '"{0}" ?? ???? ?? ?? ???? ????.', // '"{0}" model class does not specify a Primary Key.'
'noDateFormat' => '"{0}" ?? ???? ??? dateFormat? ????.', // '"{0}" model class does not have a valid dateFormat.'
'fieldNotExists' => '"{0}" ??? ?? ? ????.', // 'Field "{0}" not found.'
'forEmptyInputGiven' => '?? "{0}"? ? ?? ??????.', // 'Empty statement is given for the field "{0}"'
'forFindColumnHaveMultipleColumns' => '? ???? ??? ?? ?????.', // 'Only single column allowed in Column name.'
'methodNotAvailable' => '`Query Builder` ??? "{0}" ????? "{1}"?(?) ??? ? ????.', // 'You cannot use "{1}" in "{0}". This is a method of the Query Builder Class.'
];
|