Initial Kohana install
[speedfreak] / Server / system / i18n / en_US / image.php
1 <?php defined('SYSPATH') OR die('No direct access allowed.');
2
3 $lang = array
4 (
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.',
15
16         // ImageMagick specific messages
17         'imagemagick' => array
18         (
19                 'not_found' => 'The ImageMagick directory specified does not contain a required program, %s.',
20         ),
21         
22         // GraphicsMagick specific messages
23         'graphicsmagick' => array
24         (
25                 'not_found' => 'The GraphicsMagick directory specified does not contain a required program, %s.',
26         ),
27         
28         // GD specific messages
29         'gd' => array
30         (
31                 'requires_v2' => 'The Image library requires GD2. Please see http://php.net/gd_info for more information.',
32         ),
33 );