diff options
author | Phil Sturgeon <email@philsturgeon.co.uk> | 2011-05-04 02:30:36 +0200 |
---|---|---|
committer | Phil Sturgeon <email@philsturgeon.co.uk> | 2011-05-04 02:30:36 +0200 |
commit | 96bd33b2edc1b0e6a04cb8e3bcf97e8c7b3adf3e (patch) | |
tree | 259233389b50f115fd0b4fa137268f9fe6683be4 /system/language/english | |
parent | 57e5336547e80a81e20c08e80703d59af052c043 (diff) |
Added Migration class and language file.
Diffstat (limited to 'system/language/english')
-rw-r--r-- | system/language/english/migration_lang.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/system/language/english/migration_lang.php b/system/language/english/migration_lang.php new file mode 100644 index 000000000..4763ca243 --- /dev/null +++ b/system/language/english/migration_lang.php @@ -0,0 +1,13 @@ +<?php + +$lang['migration_none_found'] = "No migrations were found."; +$lang['migration_not_found'] = "This migration could not be found."; +$lang['migration_multiple_version'] = "This are multiple migrations with the same version number: %d."; +$lang['migration_class_doesnt_exist'] = "The migration class \"%s\" could not be found."; +$lang['migration_missing_up_method'] = "The migration class \"%s\" is missing an 'up' method."; +$lang['migration_missing_down_method'] = "The migration class \"%s\" is missing an 'up' method."; +$lang['migration_invalid_filename'] = "Migration \"%s\" has an invalid filename."; + + +/* End of file migration_lang.php */ +/* Location: ./system/language/english/migration_lang.php */
\ No newline at end of file |