summaryrefslogtreecommitdiff
path: root/system/i18n/en_US/image.php
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2009-05-28 06:11:53 +0800
committerGallery Role Account <gallery@menalto.com>2009-05-28 11:07:08 +0800
commit3413fe6bfd423d45d083ff4ed62c0f72c2cc272f (patch)
tree9310d1c82838d3e5076042be48178f5d53f5d971 /system/i18n/en_US/image.php
parentb245e3475f66c94afb94f8b2287bf0185a343732 (diff)
Rename 'kohana' to 'system' to conform to the Kohana filesystem layout. I'm comfortable with us not clearly drawing the distinction about the fact that it's Kohana.
Signed-off-by: Gallery Role Account <gallery@menalto.com>
Diffstat (limited to 'system/i18n/en_US/image.php')
-rw-r--r--system/i18n/en_US/image.php33
1 files changed, 33 insertions, 0 deletions
diff --git a/system/i18n/en_US/image.php b/system/i18n/en_US/image.php
new file mode 100644
index 00000000..9f184930
--- /dev/null
+++ b/system/i18n/en_US/image.php
@@ -0,0 +1,33 @@
+<?php defined('SYSPATH') OR die('No direct access allowed.');
+
+$lang = array
+(
+ 'getimagesize_missing' => 'The Image library requires the getimagesize() PHP function, which is not available in your installation.',
+ 'unsupported_method' => 'Your configured driver does not support the %s image transformation.',
+ 'file_not_found' => 'The specified image, %s, was not found. Please verify that images exist by using file_exists() before manipulating them.',
+ 'type_not_allowed' => 'The specified image, %s, is not an allowed image type.',
+ 'invalid_width' => 'The width you specified, %s, is not valid.',
+ 'invalid_height' => 'The height you specified, %s, is not valid.',
+ 'invalid_dimensions' => 'The dimensions specified for %s are not valid.',
+ 'invalid_master' => 'The master dimension specified is not valid.',
+ 'invalid_flip' => 'The flip direction specified is not valid.',
+ 'directory_unwritable' => 'The specified directory, %s, is not writable.',
+
+ // ImageMagick specific messages
+ 'imagemagick' => array
+ (
+ 'not_found' => 'The ImageMagick directory specified does not contain a required program, %s.',
+ ),
+
+ // GraphicsMagick specific messages
+ 'graphicsmagick' => array
+ (
+ 'not_found' => 'The GraphicsMagick directory specified does not contain a required program, %s.',
+ ),
+
+ // GD specific messages
+ 'gd' => array
+ (
+ 'requires_v2' => 'The Image library requires GD2. Please see http://php.net/gd_info for more information.',
+ ),
+);