2018-07-13 02:13:25 +03:00
|
|
|
|
<?php
|
|
|
|
|
/**
|
|
|
|
|
* System messages translation for CodeIgniter(tm)
|
2020-12-09 15:17:45 +03:00
|
|
|
|
* @author CodeIgniter community
|
|
|
|
|
* @copyright Copyright (c) 2014-2018, British Columbia Institute of Technology (http://bcit.ca/)
|
|
|
|
|
* @license http://opensource.org/licenses/MIT MIT License
|
|
|
|
|
* @link https://codeigniter.com
|
2018-07-13 02:13:25 +03:00
|
|
|
|
*/
|
2020-12-09 15:17:45 +03:00
|
|
|
|
defined('BASEPATH') or exit('No direct script access allowed');
|
2015-01-15 00:15:27 +02:00
|
|
|
|
|
2023-11-29 12:24:09 +03:00
|
|
|
|
$lang['migration_none_found'] = 'Aucune migration trouvée.';
|
2024-04-23 20:20:46 +03:00
|
|
|
|
$lang['migration_not_found'] = 'Aucune migration n’a été trouvée avec le numéro de version : %d.';
|
2023-11-29 12:24:09 +03:00
|
|
|
|
$lang['migration_sequence_gap'] = 'Il y a un trou dans la séquence de migration près de la version numéro : %s.';
|
|
|
|
|
$lang['migration_multiple_version'] = 'Il y a plusieurs migrations avec le même numéro de version : %d.';
|
2024-04-23 20:20:46 +03:00
|
|
|
|
$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" est invalide.';
|