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 | * |
| 5 | * An open source application development framework for PHP 5.1.6 or newer |
| 6 | * |
| 7 | * NOTICE OF LICENSE |
| 8 | * |
| 9 | * Licensed under the Open Software License version 3.0 |
| 10 | * |
| 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 |
| 21 | * @copyright Copyright (c) 2008 - 2011, EllisLab, Inc. (http://ellislab.com/) |
| 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."; |
| 29 | $lang['migration_not_found'] = "This migration could not be found."; |
| 30 | $lang['migration_multiple_version'] = "This are multiple migrations with the same version number: %d."; |
| 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 */ |