blob: f17530f00b1ceb929e34ace0d258b8cc9b96d7d8 [file] [log] [blame]
Phil Sturgeon96bd33b2011-05-04 01:30:36 +01001<?php
2
3$lang['migration_none_found'] = "No migrations were found.";
4$lang['migration_not_found'] = "This migration could not be found.";
5$lang['migration_multiple_version'] = "This are multiple migrations with the same version number: %d.";
6$lang['migration_class_doesnt_exist'] = "The migration class \"%s\" could not be found.";
7$lang['migration_missing_up_method'] = "The migration class \"%s\" is missing an 'up' method.";
Repoxc1a66512012-04-23 13:14:27 +02008$lang['migration_missing_down_method'] = "The migration class \"%s\" is missing an 'down' method.";
Phil Sturgeon96bd33b2011-05-04 01:30:36 +01009$lang['migration_invalid_filename'] = "Migration \"%s\" has an invalid filename.";
10
11
12/* End of file migration_lang.php */
13/* Location: ./system/language/english/migration_lang.php */