blob: 296c4af68763d299119688f52ef2d6e7b87d0957 [file] [log] [blame]
Derek Allard2067d1a2008-11-13 22:59:24 +00001<?php
Derek Jonesf4a4bd82011-10-20 12:18:42 -05002/**
3 * CodeIgniter
4 *
Phil Sturgeon07c1ac82012-03-09 17:03:37 +00005 * An open source application development framework for PHP 5.2.4 or newer
Derek Jonesf4a4bd82011-10-20 12:18:42 -05006 *
7 * NOTICE OF LICENSE
Andrey Andreev34ed3f32012-06-08 00:24:54 +03008 *
Derek Jonesf4a4bd82011-10-20 12:18:42 -05009 * Licensed under the Open Software License version 3.0
Andrey Andreev34ed3f32012-06-08 00:24:54 +030010 *
Derek Jonesf4a4bd82011-10-20 12:18:42 -050011 * This source file is subject to the Open Software License (OSL 3.0) that is
12 * bundled with this package in the files license.txt / license.rst. It is
13 * also available through the world wide web at this URL:
14 * http://opensource.org/licenses/OSL-3.0
15 * If you did not receive a copy of the license and are unable to obtain it
16 * through the world wide web, please send an email to
17 * licensing@ellislab.com so we can send you a copy immediately.
18 *
19 * @package CodeIgniter
20 * @author EllisLab Dev Team
Greg Aker0defe5d2012-01-01 18:46:41 -060021 * @copyright Copyright (c) 2008 - 2012, EllisLab, Inc. (http://ellislab.com/)
Derek Jonesf4a4bd82011-10-20 12:18:42 -050022 * @license http://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
23 * @link http://codeigniter.com
24 * @since Version 1.0
25 * @filesource
26 */
Andrey Andreevc5536aa2012-11-01 17:33:58 +020027defined('BASEPATH') OR exit('No direct script access allowed');
Derek Allard2067d1a2008-11-13 22:59:24 +000028
Alex Bilbie0875d692012-07-15 18:56:48 +010029$lang['imglib_source_image_required'] = 'You must specify a source image in your preferences.';
30$lang['imglib_gd_required'] = 'The GD image library is required for this feature.';
31$lang['imglib_gd_required_for_props'] = 'Your server must support the GD image library in order to determine the image properties.';
32$lang['imglib_unsupported_imagecreate'] = 'Your server does not support the GD function required to process this type of image.';
33$lang['imglib_gif_not_supported'] = 'GIF images are often not supported due to licensing restrictions. You may have to use JPG or PNG images instead.';
34$lang['imglib_jpg_not_supported'] = 'JPG images are not supported.';
35$lang['imglib_png_not_supported'] = 'PNG images are not supported.';
36$lang['imglib_jpg_or_png_required'] = 'The image resize protocol specified in your preferences only works with JPEG or PNG image types.';
37$lang['imglib_copy_error'] = 'An error was encountered while attempting to replace the file. Please make sure your file directory is writable.';
38$lang['imglib_rotate_unsupported'] = 'Image rotation does not appear to be supported by your server.';
39$lang['imglib_libpath_invalid'] = 'The path to your image library is not correct. Please set the correct path in your image preferences.';
40$lang['imglib_image_process_failed'] = 'Image processing failed. Please verify that your server supports the chosen protocol and that the path to your image library is correct.';
41$lang['imglib_rotation_angle_required'] = 'An angle of rotation is required to rotate the image.';
42$lang['imglib_writing_failed_gif'] = 'GIF image.';
43$lang['imglib_invalid_path'] = 'The path to the image is not correct.';
44$lang['imglib_copy_failed'] = 'The image copy routine failed.';
45$lang['imglib_missing_font'] = 'Unable to find a font to use.';
46$lang['imglib_save_failed'] = 'Unable to save the image. Please make sure the image and file directory are writable.';
Derek Jonesa3ffbbb2008-05-11 18:18:29 +000047
48/* End of file imglib_lang.php */
49/* Location: ./system/language/english/imglib_lang.php */