8 lines
418 B
PHP
8 lines
418 B
PHP
<?php
|
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
|
|
$lang['required'] = 'Le champ {field} est requis.';
|
|
$lang['min_length'] = 'Le champ {field} doit contenir au moins {param} caractères.';
|
|
$lang['valid_email'] = 'Le champ {field} doit contenir une adresse courriel valide.';
|
|
$lang['matches'] = 'Le champ {field} doit correspondre au champ {param}.';
|