-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmigration_lang.php
More file actions
20 lines (15 loc) · 817 Bytes
/
migration_lang.php
File metadata and controls
20 lines (15 loc) · 817 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php
/**
*
* @version 2.1.2
*
*/
$lang['migration_none_found'] = "Aucune migration n'a été trouvée.";
$lang['migration_not_found'] = "Cette migration n'a pas été trouvée.";
$lang['migration_multiple_version'] = "Ces migrations ont le même numéro de version : %d.";
$lang['migration_class_doesnt_exist'] = "La classe de migration \"%s\" n'a pas été trouvée.";
$lang['migration_missing_up_method'] = "Il manque une méthode 'up' à la classe de migration \"%s\".";
$lang['migration_missing_down_method'] = "Il manque une méthode 'down' à la classe de migration \"%s\".";
$lang['migration_invalid_filename'] = "La migration \"%s\" a un nom de fichier incorrect.";
/* End of file migration_lang.php */
/* Location: ./system/language/french/migration_lang.php */