blob: 4763ca243027706f544a9f41dea60eb910dd8c0d [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.";
8$lang['migration_missing_down_method'] = "The migration class \"%s\" is missing an 'up' method.";
9$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 */