Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1 | <?php |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 2 | /** |
| 3 | * CodeIgniter |
| 4 | * |
Phil Sturgeon | 07c1ac8 | 2012-03-09 17:03:37 +0000 | [diff] [blame] | 5 | * An open source application development framework for PHP 5.2.4 or newer |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 6 | * |
| 7 | * NOTICE OF LICENSE |
Andrey Andreev | 34ed3f3 | 2012-06-08 00:24:54 +0300 | [diff] [blame] | 8 | * |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 9 | * Licensed under the Open Software License version 3.0 |
Andrey Andreev | 34ed3f3 | 2012-06-08 00:24:54 +0300 | [diff] [blame] | 10 | * |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 11 | * 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 Aker | 0defe5d | 2012-01-01 18:46:41 -0600 | [diff] [blame] | 21 | * @copyright Copyright (c) 2008 - 2012, EllisLab, Inc. (http://ellislab.com/) |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 22 | * @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 Andreev | c5536aa | 2012-11-01 17:33:58 +0200 | [diff] [blame^] | 27 | defined('BASEPATH') OR exit('No direct script access allowed'); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 28 | |
Alex Bilbie | 0875d69 | 2012-07-15 18:56:48 +0100 | [diff] [blame] | 29 | $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 Jones | a3ffbbb | 2008-05-11 18:18:29 +0000 | [diff] [blame] | 47 | |
| 48 | /* End of file imglib_lang.php */ |
| 49 | /* Location: ./system/language/english/imglib_lang.php */ |