summaryrefslogtreecommitdiff
path: root/system/i18n/en_US/image.php
diff options
context:
space:
mode:
authorTim Almdal <tnalmdal@shaw.ca>2009-12-26 11:24:50 -0800
committerTim Almdal <tnalmdal@shaw.ca>2009-12-26 11:24:50 -0800
commit3060a6f662da66008d57a461bf1c9b5b4aa2b002 (patch)
tree442fd290505817efc0324f2af6e01805cb7396aa /system/i18n/en_US/image.php
parent1cd6a615bb47a33794e4a4f690c87a348ab752d7 (diff)
parent32d25dafd5b033338b6a9bb8c7c53edab462543a (diff)
Merge branch 'master' into talmdal_dev
Conflicts: modules/gallery/controllers/albums.php modules/gallery/controllers/movies.php modules/gallery/controllers/photos.php
Diffstat (limited to 'system/i18n/en_US/image.php')
-rw-r--r--system/i18n/en_US/image.php33
1 files changed, 0 insertions, 33 deletions
diff --git a/system/i18n/en_US/image.php b/system/i18n/en_US/image.php
deleted file mode 100644
index 9f184930..00000000
--- a/system/i18n/en_US/image.php
+++ /dev/null
@@ -1,33 +0,0 @@
-<?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.',
- ),
-);