blob: 66ce456806ec32aa1d32b36c42f833375c6a01dc [file] [log] [blame]
Phil Sturgeon96bd33b2011-05-04 01:30:36 +01001<?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 *
Andrey Andreevbdb96ca2014-10-28 00:13:31 +02007 * This content is released under the MIT License (MIT)
Andrey Andreev34ed3f32012-06-08 00:24:54 +03008 *
Andrey Andreevbdb96ca2014-10-28 00:13:31 +02009 * Copyright (c) 2014, British Columbia Institute of Technology
Andrey Andreev34ed3f32012-06-08 00:24:54 +030010 *
Andrey Andreevbdb96ca2014-10-28 00:13:31 +020011 * Permission is hereby granted, free of charge, to any person obtaining a copy
12 * of this software and associated documentation files (the "Software"), to deal
13 * in the Software without restriction, including without limitation the rights
14 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15 * copies of the Software, and to permit persons to whom the Software is
16 * furnished to do so, subject to the following conditions:
Derek Jonesf4a4bd82011-10-20 12:18:42 -050017 *
Andrey Andreevbdb96ca2014-10-28 00:13:31 +020018 * The above copyright notice and this permission notice shall be included in
19 * all copies or substantial portions of the Software.
20 *
21 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
26 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
27 * THE SOFTWARE.
28 *
29 * @package CodeIgniter
30 * @author EllisLab Dev Team
darwinel871754a2014-02-11 17:34:57 +010031 * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (http://ellislab.com/)
Andrey Andreevbdb96ca2014-10-28 00:13:31 +020032 * @copyright Copyright (c) 2014, British Columbia Institute of Technology (http://bcit.ca/)
33 * @license http://opensource.org/licenses/MIT MIT License
34 * @link http://codeigniter.com
35 * @since Version 3.0.0
Derek Jonesf4a4bd82011-10-20 12:18:42 -050036 * @filesource
37 */
Andrey Andreevc5536aa2012-11-01 17:33:58 +020038defined('BASEPATH') OR exit('No direct script access allowed');
Phil Sturgeon96bd33b2011-05-04 01:30:36 +010039
Andrey Andreev838a9d62012-12-03 14:37:47 +020040$lang['migration_none_found'] = 'No migrations were found.';
Andrey Andreev3a9f3252014-02-25 11:47:45 +020041$lang['migration_not_found'] = 'No migration could be found with the version number: %s.';
42$lang['migration_sequence_gap'] = 'There is a gap in the migration sequence near version number: %s.';
43$lang['migration_multiple_version'] = 'There are multiple migrations with the same version number: %s.';
Alex Bilbie0875d692012-07-15 18:56:48 +010044$lang['migration_class_doesnt_exist'] = 'The migration class "%s" could not be found.';
45$lang['migration_missing_up_method'] = 'The migration class "%s" is missing an "up" method.';
46$lang['migration_missing_down_method'] = 'The migration class "%s" is missing a "down" method.';
Andrey Andreev838a9d62012-12-03 14:37:47 +020047$lang['migration_invalid_filename'] = 'Migration "%s" has an invalid filename.';
Phil Sturgeon96bd33b2011-05-04 01:30:36 +010048
Phil Sturgeon96bd33b2011-05-04 01:30:36 +010049/* End of file migration_lang.php */
50/* Location: ./system/language/english/migration_lang.php */