blob: 67a36e12072321464c4f3de784e555861a0fa313 [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 */
Derek Allard2067d1a2008-11-13 22:59:24 +000027
28$lang['imglib_source_image_required'] = "You must specify a source image in your preferences.";
29$lang['imglib_gd_required'] = "The GD image library is required for this feature.";
30$lang['imglib_gd_required_for_props'] = "Your server must support the GD image library in order to determine the image properties.";
31$lang['imglib_unsupported_imagecreate'] = "Your server does not support the GD function required to process this type of image.";
Derek Jones37f4b9c2011-07-01 17:56:50 -050032$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.";
Derek Allard2067d1a2008-11-13 22:59:24 +000033$lang['imglib_jpg_not_supported'] = "JPG images are not supported.";
34$lang['imglib_png_not_supported'] = "PNG images are not supported.";
35$lang['imglib_jpg_or_png_required'] = "The image resize protocol specified in your preferences only works with JPEG or PNG image types.";
Derek Jones37f4b9c2011-07-01 17:56:50 -050036$lang['imglib_copy_error'] = "An error was encountered while attempting to replace the file. Please make sure your file directory is writable.";
Derek Allard2067d1a2008-11-13 22:59:24 +000037$lang['imglib_rotate_unsupported'] = "Image rotation does not appear to be supported by your server.";
Derek Jones37f4b9c2011-07-01 17:56:50 -050038$lang['imglib_libpath_invalid'] = "The path to your image library is not correct. Please set the correct path in your image preferences.";
39$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.";
Derek Allard2067d1a2008-11-13 22:59:24 +000040$lang['imglib_rotation_angle_required'] = "An angle of rotation is required to rotate the image.";
41$lang['imglib_writing_failed_gif'] = "GIF image.";
42$lang['imglib_invalid_path'] = "The path to the image is not correct.";
43$lang['imglib_copy_failed'] = "The image copy routine failed.";
44$lang['imglib_missing_font'] = "Unable to find a font to use.";
Derek Jones37f4b9c2011-07-01 17:56:50 -050045$lang['imglib_save_failed'] = "Unable to save the image. Please make sure the image and file directory are writable.";
Derek Allard2067d1a2008-11-13 22:59:24 +000046
Derek Jonesa3ffbbb2008-05-11 18:18:29 +000047
48/* End of file imglib_lang.php */
49/* Location: ./system/language/english/imglib_lang.php */