-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathmigration_lang.php
More file actions
13 lines (10 loc) · 831 Bytes
/
migration_lang.php
File metadata and controls
13 lines (10 loc) · 831 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php
$lang['migration_none_found'] = "Pas de migrations trouvées.";
$lang['migration_not_found'] = "Cette migration n'a pas pu être trouvée.";
$lang['migration_multiple_version'] = "Il y a plusieurs migrations avec le même numéro de version : %d.";
$lang['migration_class_doesnt_exist'] = "La classe de migration \"%s\" n'a pas pu être trouvée.";
$lang['migration_missing_up_method'] = "La classe de migration \"%s\" ne dispose pas d'une méthode 'up'.";
$lang['migration_missing_down_method'] = "La classe de migration \"%s\" ne dispose pas d'une méthode 'down'.";
$lang['migration_invalid_filename'] = "Le nom de fichier de la migration \"%s\" n'est pas valide.";
/* End of file migration_lang.php */
/* Location: ./system/language/french/migration_lang.php */