reports: Fix id of custom date selector
[ninja.git] / system / i18n / en_US / image.php
blob9f18493087d0353a94d1a671eb0809ec0aa8d1fb
1 <?php defined('SYSPATH') OR die('No direct access allowed.');
3 $lang = array
5 'getimagesize_missing' => 'The Image library requires the getimagesize() PHP function, which is not available in your installation.',
6 'unsupported_method' => 'Your configured driver does not support the %s image transformation.',
7 'file_not_found' => 'The specified image, %s, was not found. Please verify that images exist by using file_exists() before manipulating them.',
8 'type_not_allowed' => 'The specified image, %s, is not an allowed image type.',
9 'invalid_width' => 'The width you specified, %s, is not valid.',
10 'invalid_height' => 'The height you specified, %s, is not valid.',
11 'invalid_dimensions' => 'The dimensions specified for %s are not valid.',
12 'invalid_master' => 'The master dimension specified is not valid.',
13 'invalid_flip' => 'The flip direction specified is not valid.',
14 'directory_unwritable' => 'The specified directory, %s, is not writable.',
16 // ImageMagick specific messages
17 'imagemagick' => array
19 'not_found' => 'The ImageMagick directory specified does not contain a required program, %s.',
22 // GraphicsMagick specific messages
23 'graphicsmagick' => array
25 'not_found' => 'The GraphicsMagick directory specified does not contain a required program, %s.',
28 // GD specific messages
29 'gd' => array
31 'requires_v2' => 'The Image library requires GD2. Please see http://php.net/gd_info for more information.',