blob: 94cb882fbe37b37fda27bbb0d401a8e7c6817356 [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.";
Thomas Traub87db1b72011-09-03 17:19:06 +02008$lang['migration_missing_down_method'] = "The migration class \"%s\" is missing a '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 */