winter/modules/system/lang/fr/validation.php
Marc-Antoine Thevenet 55e7e1e545 🇫🇷 array strings fixed following 🇬🇧 version (#2063)
🇫🇷 array strings fixed following 🇬🇧 version
2016-05-29 08:16:18 +10:00

100 lines
5.5 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
return [
/*
|--------------------------------------------------------------------------
| Validation Language Lines
|--------------------------------------------------------------------------
|
| The following language lines contain the default error messages used by
| the validator class. Some of these rules have multiple versions such
| such as the size rules. Feel free to tweak each of these messages.
|
*/
"accepted" => 'Le champ :attribute doit être accepté.',
"active_url" => 'Le champ :attribute nest pas une URL valide.',
"after" => 'Le champ :attribute doit être une date après le :date.',
"alpha" => 'Le champ :attribute ne peut contenir que des lettres.',
"alpha_dash" => 'Le champ :attribute ne peut contenir que des lettres, des chiffres et des tirets.',
"alpha_num" => 'Le champ :attribute ne peut contenir que des lettres et des chiffres.',
"array" => 'Le champ :attribute doit être un groupe.',
"before" => 'Le champ :attribute doit être une date avant le :date.',
"between" => [
"numeric" => 'Le champ :attribute doit être compris entre :min - :max.',
"file" => 'Le champ :attribute doit être compris entre :min - :max kilooctets.',
"string" => 'Le champ :attribute doit être compris entre :min - :max caractères.',
"array" => 'Le champ :attribute doit être compris entre :min - :max objets.',
],
"confirmed" => 'Le champ de confirmation :attribute ne correspond pas.',
"date" => 'Le champ :attribute nest pas une date valide.',
"date_format" => 'Le champ :attribute ne correspond pas au format :format.',
"different" => 'Le champ :attribute et :other doivent être différents.',
"digits" => 'Le champ :attribute doit être de :digits chiffres.',
"digits_between" => 'Le champ :attribute doit être compris entre :min et :max chiffres.',
"email" => 'Le format du champ :attribute nest pas valide.',
"exists" => 'Le champ :attribute sélectionné nest pas valide.',
"image" => 'Le champ :attribute doit être une image.',
"in" => 'Le champ :attribute sélectionné nest pas valide.',
"integer" => 'Le champ :attribute doit être un entier.',
"ip" => 'Le champ :attribute doit être une adresse IP valide.',
"max" => [
"numeric" => 'Le champ :attribute ne peut pas être supérieure à :max.',
"file" => 'Le champ :attribute ne peut pas être supérieure à :max kilooctets.',
"string" => 'Le champ :attribute ne peut pas être supérieure à :max caractères.',
"array" => 'Le champ :attribute ne peut pas être supérieure à :max objets.',
],
"mimes" => 'Le champ :attribute doit être un fichier de type : :values.',
"extensions" => 'Le champ :attribute doit être une extension de : :values.',
"min" => [
"numeric" => 'Le champ :attribute doit être au minimum de :min.',
"file" => 'Le champ :attribute doit être au minimum de :min kilooctets.',
"string" => 'Le champ :attribute doit être au minimum de :min caractères.',
"array" => 'Le champ :attribute doit être au minimum de :min objets.',
],
"not_in" => 'Le champ :attribute sélectionné nest pas valide.',
"numeric" => 'Le champ :attribute doit être un nombre.',
"regex" => 'Le format du champ :attribute nest pas valide.',
"required" => 'Le champ :attribute est obligatoire.',
"required_if" => 'Le champ :attribute est obligatoire quand :other est :value.',
"required_with" => 'Le champ :attribute est obligatoire quand :values est présent.',
"required_without" => 'Le champ :attribute est obligatoire quand :values est absent.',
"same" => 'Le champ :attribute et :other doivent correspondre.',
"size" => [
"numeric" => 'Le champ :attribute doit être de :size.',
"file" => 'Le champ :attribute doit être de :size kilooctets.',
"string" => 'Le champ :attribute doit être de :size caractères.',
"array" => 'Le champ :attribute doit contenir :size objets.',
],
"unique" => 'Le champ :attribute doit être unique. La valeur renseignée est déjà utilisée.',
"url" => 'Le champ :attribute nest pas une URL valide.',
/*
|--------------------------------------------------------------------------
| Custom Validation Language Lines
|--------------------------------------------------------------------------
|
| Here you may specify custom validation messages for attributes using the
| convention "attribute.rule" to name the lines. This makes it quick to
| specify a specific custom language line for a given attribute rule.
|
*/
'custom' => [],
/*
|--------------------------------------------------------------------------
| Custom Validation Attributes
|--------------------------------------------------------------------------
|
| The following language lines are used to swap attribute place-holders
| with something more reader friendly such as E-Mail Address instead
| of "email". This simply helps us make messages a little cleaner.
|
*/
'attributes' => [],
];