blob: d87ac8deee6f4df72dc109e1076c5d941effa303 [file] [log] [blame]
Phil Sturgeon96bd33b2011-05-04 01:30:36 +01001<?php
Derek Jonesf4a4bd82011-10-20 12:18:42 -05002/**
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 Sturgeon96bd33b2011-05-04 01:30:36 +010027
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 Traub87db1b72011-09-03 17:19:06 +020033$lang['migration_missing_down_method'] = "The migration class \"%s\" is missing a 'down' method.";
Phil Sturgeon96bd33b2011-05-04 01:30:36 +010034$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 */