easyappointments/application/language/french/migration_lang.php

19 lines
1.1 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/**
* System messages translation for CodeIgniter(tm)
* @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
*/
defined('BASEPATH') or exit('No direct script access allowed');
$lang['migration_none_found'] = 'Aucune migration trouvée.';
$lang['migration_not_found'] = 'Aucune migration na été trouvée avec le numéro de version : %d.';
$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.';
$lang['migration_class_doesnt_exist'] = 'La classe de migration "%s" na pas pu être trouvée.';
$lang['migration_missing_up_method'] = 'La classe de migration "%s" ne dispose pas dune méthode "up".';
$lang['migration_missing_down_method'] = 'La classe de migration "%s" ne dispose pas dune méthode "down".';
$lang['migration_invalid_filename'] = 'Le nom de fichier de la migration "%s" est invalide.';