Phil Sturgeon | 96bd33b | 2011-05-04 01:30:36 +0100 | [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 3.0 |
| 25 | * @filesource |
| 26 | */ |
Phil Sturgeon | 96bd33b | 2011-05-04 01:30:36 +0100 | [diff] [blame] | 27 | |
| 28 | $lang['migration_none_found'] = "No migrations were found."; |
Phil Sturgeon | af6d850 | 2012-06-19 15:30:47 -0500 | [diff] [blame] | 29 | $lang['migration_not_found'] = "No migration could be found with the version number: %d."; |
lee Tengum | 5eb72e6 | 2012-07-10 22:26:10 -0600 | [diff] [blame] | 30 | $lang['migration_multiple_version'] = "There are multiple migrations with the same version number: %d."; |
Phil Sturgeon | 96bd33b | 2011-05-04 01:30:36 +0100 | [diff] [blame] | 31 | $lang['migration_class_doesnt_exist'] = "The migration class \"%s\" could not be found."; |
| 32 | $lang['migration_missing_up_method'] = "The migration class \"%s\" is missing an 'up' method."; |
Thomas Traub | 87db1b7 | 2011-09-03 17:19:06 +0200 | [diff] [blame] | 33 | $lang['migration_missing_down_method'] = "The migration class \"%s\" is missing a 'down' method."; |
Phil Sturgeon | 96bd33b | 2011-05-04 01:30:36 +0100 | [diff] [blame] | 34 | $lang['migration_invalid_filename'] = "Migration \"%s\" has an invalid filename."; |
| 35 | |
| 36 | |
| 37 | /* End of file migration_lang.php */ |
| 38 | /* Location: ./system/language/english/migration_lang.php */ |