mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 20:29:29 +00:00
16 lines
741 B
PHP
16 lines
741 B
PHP
<?php
|
|
/**
|
|
* FH-Complete
|
|
*
|
|
*/
|
|
if (! defined('BASEPATH')) exit('No direct script access allowed');
|
|
|
|
$lang['seed_none_found'] = 'No seeds were found.';
|
|
$lang['seed_not_found'] = 'No seed could be found with the version number: %s.';
|
|
$lang['seed_sequence_gap'] = 'There is a gap in the seed sequence near version number: %s.';
|
|
$lang['seed_multiple_version'] = 'There are multiple seeds with the same version number: %s.';
|
|
$lang['seed_class_doesnt_exist'] = 'The seed class "%s" could not be found.';
|
|
$lang['seed_missing_up_method'] = 'The seed class "%s" is missing an "up" method.';
|
|
$lang['seed_missing_down_method'] = 'The seed class "%s" is missing a "down" method.';
|
|
$lang['seed_invalid_filename'] = 'Seed "%s" has an invalid filename.';
|