<?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.
*/
// Images language settings
return [
'sourceImageRequired' => '?? ???? ??? ?? ???? ????? ???.', // 'You must specify a source image in your preferences.'
'gdRequired' => '? ??? ????? GD image ?????? ?????.', // 'The GD image library is required to use this feature.'
'gdRequiredForProps' => '???? ??? ????? ???? GD image ?????? ????? ???.', // 'Your server must support the GD image library in order to determine the image properties.'
'gifNotSupported' => 'GIF ????? ???? ???? ???? ?? ??? ????. GIF ??? ??? JPG ?? PNG ??? ???? ??? ?? ?? ????.', // 'GIF images are often not supported due to licensing restrictions. You may have to use JPG or PNG images instead.'
'jpgNotSupported' => 'JPG ????? ???? ????.', // 'JPG images are not supported.'
'pngNotSupported' => 'PNG ????? ???? ????.', // 'PNG images are not supported.'
'webpNotSupported' => 'WEBP ????? ???? ????.', // 'WEBP images are not supported.'
'fileNotSupported' => '??? ??? ???? ?? ??? ?????.', // 'The supplied file is not a supported image type.'
'unsupportedImageCreate' => '? ??? ???? ???? ??? ??? GD ??? ???? ???? ????.', // 'Your server does not support the required functionality to process this type of image.'
'jpgOrPngRequired' => '?? ??? ??? ??? ?? ?? ????? JPEG ?? PNG ??? ???? ??? ? ????.', // 'The image resize protocol specified in your preferences only works with JPEG or PNG image types.'
'rotateUnsupported' => '???? ??? ??? ???? ?? ? ????.', // 'Image rotation does not appear to be supported by your server.'
'imageProcessFailed' => '??? ?? ??. ??? ?????? ??? ???? ??????, ??? ????? ???? ????? ???? ????.', // 'Image processing failed. Please verify that your server supports the chosen protocol and that the path to your image library is correct.'
'rotationAngleRequired' => '???? ????? ??? ?? ??? ?????.', // 'An angle of rotation is required to rotate the image.'
'invalidPath' => '??? ??? ???? ????.', // 'The path to the image is not correct.'
'copyFailed' => '?? ???? ?? ??? ??????.', // 'The image copy routine failed.'
'missingFont' => '??? ???? ???? ??? ?? ? ????.', // 'Unable to find a font to use.'
'saveFailed' => '??? ??? ? ????. ?? ??? ? ?? ????? ? ? ??? ?????.', // 'Unable to save the image. Please make sure the image and file directory are writable.'
'invalidDirection' => '?? ??? ?? ?? ?? ??? ?????. ??: "{0}"', // 'Flip direction can be only "vertical" or "horizontal". Given: "{0}"'
'exifNotSupported' => '?? PHP ????? EXIF ???? ?? ? ??? ???? ????.', // 'Reading EXIF data is not supported by this PHP installation.'
// @deprecated
'libPathInvalid' => '??? ????? ??? ???? ????. ??? ??? ??? ?????? ???? ????. "{0}")', // 'The path to your image library is not correct. Please set the correct path in your image preferences. "{0}"'
];
|