mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-13 03:23:18 +03:00
c4f00aae48
\' TO ’
18 lines
1.1 KiB
PHP
18 lines
1.1 KiB
PHP
<?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 n’a é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" 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.';
|