forked from miguel456/rbrecruiter
New translations validation.php (French)
This commit is contained in:
parent
3c966036d9
commit
0e8b3d28a6
|
@ -13,110 +13,110 @@ return [
|
|||
|
|
||||
*/
|
||||
|
||||
'accepted' => 'The :attribute must be accepted.',
|
||||
'active_url' => 'The :attribute is not a valid URL.',
|
||||
'after' => 'The :attribute must be a date after :date.',
|
||||
'after_or_equal' => 'The :attribute must be a date after or equal to :date.',
|
||||
'alpha' => 'The :attribute may only contain letters.',
|
||||
'alpha_dash' => 'The :attribute may only contain letters, numbers, dashes and underscores.',
|
||||
'alpha_num' => 'The :attribute may only contain letters and numbers.',
|
||||
'array' => 'The :attribute must be an array.',
|
||||
'before' => 'The :attribute must be a date before :date.',
|
||||
'before_or_equal' => 'The :attribute must be a date before or equal to :date.',
|
||||
'accepted' => 'L\'attribut :attribute doit être accepté.',
|
||||
'active_url' => 'Le champ :attribute n\'est pas une URL valide.',
|
||||
'after' => 'Le champ :attribute doit être une date après :date.',
|
||||
'after_or_equal' => 'Le champ :attribute doit être une date postérieure ou égale à :date.',
|
||||
'alpha' => 'Le champ :attribute ne peut contenir que des lettres.',
|
||||
'alpha_dash' => ':attribute ne peut contenir que des lettres, des chiffres, des tirets et des tirets bas.',
|
||||
'alpha_num' => 'Le champ :attribute ne peut contenir que des lettres et des chiffres.',
|
||||
'array' => ':attribute doit être un tableau.',
|
||||
'before' => 'Le champ :attribute doit être une date avant :date.',
|
||||
'before_or_equal' => ':attribute doit être une date antérieure ou égale à :date.',
|
||||
'between' => [
|
||||
'numeric' => 'The :attribute must be between :min and :max.',
|
||||
'file' => 'The :attribute must be between :min and :max kilobytes.',
|
||||
'string' => 'The :attribute must be between :min and :max characters.',
|
||||
'array' => 'The :attribute must have between :min and :max items.',
|
||||
'numeric' => 'Le champ :attribute doit être entre :min et :max.',
|
||||
'file' => 'Le champ :attribute doit être compris entre :min et :max kilo-octets.',
|
||||
'string' => 'Le champ :attribute doit contenir entre :min et :max caractères.',
|
||||
'array' => 'Le champ :attribute doit avoir entre :min et :max éléments.',
|
||||
],
|
||||
'boolean' => 'The :attribute field must be true or false.',
|
||||
'confirmed' => 'The :attribute confirmation does not match.',
|
||||
'date' => 'The :attribute is not a valid date.',
|
||||
'date_equals' => 'The :attribute must be a date equal to :date.',
|
||||
'date_format' => 'The :attribute does not match the format :format.',
|
||||
'different' => 'The :attribute and :other must be different.',
|
||||
'digits' => 'The :attribute must be :digits digits.',
|
||||
'digits_between' => 'The :attribute must be between :min and :max digits.',
|
||||
'dimensions' => 'The :attribute has invalid image dimensions.',
|
||||
'distinct' => 'The :attribute field has a duplicate value.',
|
||||
'email' => 'The :attribute must be a valid email address.',
|
||||
'ends_with' => 'The :attribute must end with one of the following: :values.',
|
||||
'exists' => 'The selected :attribute is invalid.',
|
||||
'file' => 'The :attribute must be a file.',
|
||||
'filled' => 'The :attribute field must have a value.',
|
||||
'boolean' => 'Le champ :attribute doit être vrai ou faux.',
|
||||
'confirmed' => 'La confirmation de l\'attribut :attribute ne correspond pas.',
|
||||
'date' => 'Le champ :attribute n\'est pas une date valide.',
|
||||
'date_equals' => 'Le champ :attribute doit être une date égale à :date.',
|
||||
'date_format' => 'Le champ :attribute ne correspond pas au format :format.',
|
||||
'different' => ':attribute et :other doivent être différents.',
|
||||
'digits' => ':attribute doit être de :digits chiffres.',
|
||||
'digits_between' => 'Le champ :attribute doit contenir entre :min et :max chiffres.',
|
||||
'dimensions' => ':attribute a des dimensions d\'image non valides.',
|
||||
'distinct' => 'Le champ :attribute a une valeur en double.',
|
||||
'email' => 'Le champ :attribute doit être une adresse e-mail valide.',
|
||||
'ends_with' => ':attribute doit se terminer par un des :values suivantes.',
|
||||
'exists' => 'Le champ :attribute sélectionné est invalide.',
|
||||
'file' => 'Le champ :attribute doit être un fichier.',
|
||||
'filled' => 'Le champ :attribute doit avoir une valeur.',
|
||||
'gt' => [
|
||||
'numeric' => 'The :attribute must be greater than :value.',
|
||||
'file' => 'The :attribute must be greater than :value kilobytes.',
|
||||
'string' => 'The :attribute must be greater than :value characters.',
|
||||
'array' => 'The :attribute must have more than :value items.',
|
||||
'numeric' => 'Le champ :attribute doit être supérieur à :value.',
|
||||
'file' => ':attribute doit être plus grand que :value kilo-octets.',
|
||||
'string' => 'Le champ :attribute doit être plus grand que :value caractères.',
|
||||
'array' => 'Le champ :attribute doit avoir plus de :value éléments.',
|
||||
],
|
||||
'gte' => [
|
||||
'numeric' => 'The :attribute must be greater than or equal :value.',
|
||||
'file' => 'The :attribute must be greater than or equal :value kilobytes.',
|
||||
'string' => 'The :attribute must be greater than or equal :value characters.',
|
||||
'array' => 'The :attribute must have :value items or more.',
|
||||
'numeric' => 'Le champ :attribute doit être supérieur ou égal à :value.',
|
||||
'file' => ':attribute doit être supérieur ou égal à :value kilo-octets.',
|
||||
'string' => 'Le champ :attribute doit être supérieur ou égal à :value caractères.',
|
||||
'array' => 'L\'attribut :attribute doit avoir :value éléments ou plus.',
|
||||
],
|
||||
'image' => 'The :attribute must be an image.',
|
||||
'in' => 'The selected :attribute is invalid.',
|
||||
'in_array' => 'The :attribute field does not exist in :other.',
|
||||
'integer' => 'The :attribute must be an integer.',
|
||||
'ip' => 'The :attribute must be a valid IP address.',
|
||||
'ipv4' => 'The :attribute must be a valid IPv4 address.',
|
||||
'ipv6' => 'The :attribute must be a valid IPv6 address.',
|
||||
'json' => 'The :attribute must be a valid JSON string.',
|
||||
'image' => 'Le champ :attribute doit être une image.',
|
||||
'in' => 'Le champ :attribute sélectionné est invalide.',
|
||||
'in_array' => 'Le champ :attribute n\'existe pas dans :other.',
|
||||
'integer' => ':attribute doit être un nombre entier.',
|
||||
'ip' => 'Le champ :attribute doit être une adresse IP valide.',
|
||||
'ipv4' => 'Le champ :attribute doit être une adresse IPv4 valide.',
|
||||
'ipv6' => 'Le champ :attribute doit être une adresse IPv6 valide.',
|
||||
'json' => 'Le champ :attribute doit être une chaîne JSON valide.',
|
||||
'lt' => [
|
||||
'numeric' => 'The :attribute must be less than :value.',
|
||||
'file' => 'The :attribute must be less than :value kilobytes.',
|
||||
'string' => 'The :attribute must be less than :value characters.',
|
||||
'array' => 'The :attribute must have less than :value items.',
|
||||
'numeric' => 'Le champ :attribute doit être inférieur à :value.',
|
||||
'file' => ':attribute doit être inférieur à :value kilo-octets.',
|
||||
'string' => 'Le champ :attribute doit être inférieur à :value caractères.',
|
||||
'array' => 'Le champ :attribute doit avoir moins de :value éléments.',
|
||||
],
|
||||
'lte' => [
|
||||
'numeric' => 'The :attribute must be less than or equal :value.',
|
||||
'file' => 'The :attribute must be less than or equal :value kilobytes.',
|
||||
'string' => 'The :attribute must be less than or equal :value characters.',
|
||||
'array' => 'The :attribute must not have more than :value items.',
|
||||
'numeric' => 'Le champ :attribute doit être inférieur ou égal à :value.',
|
||||
'file' => ':attribute doit être inférieur ou égal à :value kilo-octets.',
|
||||
'string' => 'Le champ :attribute doit être inférieur ou égal à :value caractères.',
|
||||
'array' => 'Le champ :attribute ne doit pas avoir plus de :value éléments.',
|
||||
],
|
||||
'max' => [
|
||||
'numeric' => 'The :attribute may not be greater than :max.',
|
||||
'file' => 'The :attribute may not be greater than :max kilobytes.',
|
||||
'string' => 'The :attribute may not be greater than :max characters.',
|
||||
'array' => 'The :attribute may not have more than :max items.',
|
||||
'numeric' => 'Le champ :attribute ne peut pas être plus grand que :max.',
|
||||
'file' => ':attribute ne doit pas être plus grand que :max kilo-octets.',
|
||||
'string' => 'Le champ :attribute ne doit pas être plus grand que :max caractères.',
|
||||
'array' => ':attribute ne peut pas avoir plus de :max éléments.',
|
||||
],
|
||||
'mimes' => 'The :attribute must be a file of type: :values.',
|
||||
'mimetypes' => 'The :attribute must be a file of type: :values.',
|
||||
'mimes' => ':attribute doit être un fichier de type: :values.',
|
||||
'mimetypes' => ':attribute doit être un fichier de type: :values.',
|
||||
'min' => [
|
||||
'numeric' => 'The :attribute must be at least :min.',
|
||||
'file' => 'The :attribute must be at least :min kilobytes.',
|
||||
'string' => 'The :attribute must be at least :min characters.',
|
||||
'array' => 'The :attribute must have at least :min items.',
|
||||
'numeric' => 'Le champ :attribute doit être d\'au moins :min.',
|
||||
'file' => 'Le champ :attribute doit être d\'au moins :min kilo-octets.',
|
||||
'string' => 'Le champ :attribute doit contenir au moins :min caractères.',
|
||||
'array' => 'Le champ :attribute doit avoir au moins :min éléments.',
|
||||
],
|
||||
'not_in' => 'The selected :attribute is invalid.',
|
||||
'not_regex' => 'The :attribute format is invalid.',
|
||||
'numeric' => 'The :attribute must be a number.',
|
||||
'password' => 'The password is incorrect.',
|
||||
'present' => 'The :attribute field must be present.',
|
||||
'regex' => 'The :attribute format is invalid.',
|
||||
'required' => 'The :attribute field is required.',
|
||||
'required_if' => 'The :attribute field is required when :other is :value.',
|
||||
'required_unless' => 'The :attribute field is required unless :other is in :values.',
|
||||
'required_with' => 'The :attribute field is required when :values is present.',
|
||||
'required_with_all' => 'The :attribute field is required when :values are present.',
|
||||
'required_without' => 'The :attribute field is required when :values is not present.',
|
||||
'required_without_all' => 'The :attribute field is required when none of :values are present.',
|
||||
'same' => 'The :attribute and :other must match.',
|
||||
'not_in' => 'Le champ :attribute sélectionné est invalide.',
|
||||
'not_regex' => 'Le format de l\'attribut :attribute est invalide.',
|
||||
'numeric' => 'Le champ :attribute doit être un nombre.',
|
||||
'password' => 'Le mot de passe est incorrect.',
|
||||
'present' => 'Le champ :attribute doit être présent.',
|
||||
'regex' => 'Le format de l\'attribut :attribute est invalide.',
|
||||
'required' => 'Le champ :attribute est requis.',
|
||||
'required_if' => 'Le champ :attribute est requis lorsque :other est :value.',
|
||||
'required_unless' => 'Le champ :attribute est requis sauf si :other est en :values.',
|
||||
'required_with' => 'Le champ :attribute est requis lorsque :values est présent.',
|
||||
'required_with_all' => 'Le champ :attribute est requis lorsque :values sont présentes.',
|
||||
'required_without' => 'Le champ :attribute est requis lorsque :values n\'est pas présent.',
|
||||
'required_without_all' => 'Le champ :attribute est requis quand aucun des :values n\'est présent.',
|
||||
'same' => ':attribute et :other doivent correspondre.',
|
||||
'size' => [
|
||||
'numeric' => 'The :attribute must be :size.',
|
||||
'file' => 'The :attribute must be :size kilobytes.',
|
||||
'string' => 'The :attribute must be :size characters.',
|
||||
'array' => 'The :attribute must contain :size items.',
|
||||
'numeric' => 'Le champ :attribute doit être :size.',
|
||||
'file' => ':attribute doit être de :size kilo-octets.',
|
||||
'string' => 'Le champ :attribute doit être de :size caractères.',
|
||||
'array' => ':attribute doit contenir :size éléments.',
|
||||
],
|
||||
'starts_with' => 'The :attribute must start with one of the following: :values.',
|
||||
'string' => 'The :attribute must be a string.',
|
||||
'timezone' => 'The :attribute must be a valid zone.',
|
||||
'unique' => 'The :attribute has already been taken.',
|
||||
'uploaded' => 'The :attribute failed to upload.',
|
||||
'url' => 'The :attribute format is invalid.',
|
||||
'uuid' => 'The :attribute must be a valid UUID.',
|
||||
'starts_with' => ':attribute doit commencer par l\'un des :values suivants.',
|
||||
'string' => 'Le champ :attribute doit être une chaîne.',
|
||||
'timezone' => 'Le champ :attribute doit être une zone valide.',
|
||||
'unique' => 'Le champ :attribute a déjà été pris.',
|
||||
'uploaded' => 'L\'attribut :attribute n\'a pas pu être envoyé.',
|
||||
'url' => 'Le format de l\'attribut :attribute est invalide.',
|
||||
'uuid' => ':attribute doit être un UUID valide.',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
|
@ -131,7 +131,7 @@ return [
|
|||
|
||||
'custom' => [
|
||||
'attribute-name' => [
|
||||
'rule-name' => 'custom-message',
|
||||
'rule-name' => 'message personnalisé',
|
||||
],
|
||||
],
|
||||
|
||||
|
|
Loading…
Reference in New Issue