Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f2ff48f

Browse files
committed
Merge pull request Laravel-Lang#550 from Spidersouris/master
[FR] Translation Enhancement
2 parents 21b4df6 + f172dc1 commit f2ff48f

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

src/fr/passwords.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
|
1414
*/
1515

16-
'password' => 'Les mots de passe doivent avoir au moins six caractères et doivent être identiques.',
16+
'password' => 'Les mots de passe doivent contenir au moins six caractères et doivent être identiques.',
1717
'reset' => 'Votre mot de passe a été réinitialisé !',
1818
'sent' => 'Nous vous avons envoyé par courriel le lien de réinitialisation du mot de passe !',
1919
'token' => "Ce jeton de réinitialisation du mot de passe n'est pas valide.",

src/fr/validation.php

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -23,19 +23,19 @@
2323
'before' => 'Le champ :attribute doit être une date antérieure au :date.',
2424
'between' => [
2525
'numeric' => 'La valeur de :attribute doit être comprise entre :min et :max.',
26-
'file' => 'Le fichier :attribute doit avoir une taille entre :min et :max kilo-octets.',
27-
'string' => 'Le texte :attribute doit avoir entre :min et :max caractères.',
28-
'array' => 'Le tableau :attribute doit avoir entre :min et :max éléments.',
26+
'file' => 'La taille du fichier de :attribute doit être comprise entre :min et :max kilo-octets.',
27+
'string' => 'Le texte :attribute doit contenir entre :min et :max caractères.',
28+
'array' => 'Le tableau :attribute doit contenir entre :min et :max éléments.',
2929
],
3030
'boolean' => 'Le champ :attribute doit être vrai ou faux.',
3131
'confirmed' => 'Le champ de confirmation :attribute ne correspond pas.',
3232
'date' => "Le champ :attribute n'est pas une date valide.",
3333
'date_format' => 'Le champ :attribute ne correspond pas au format :format.',
3434
'different' => 'Les champs :attribute et :other doivent être différents.',
35-
'digits' => 'Le champ :attribute doit avoir :digits chiffres.',
36-
'digits_between' => 'Le champ :attribute doit avoir entre :min et :max chiffres.',
35+
'digits' => 'Le champ :attribute doit contenir :digits chiffres.',
36+
'digits_between' => 'Le champ :attribute doit contenir entre :min et :max chiffres.',
3737
'distinct' => 'Le champ :attribute a une valeur dupliquée.',
38-
'email' => 'Le champ :attribute doit être une adresse email valide.',
38+
'email' => 'Le champ :attribute doit être une adresse e-mail valide.',
3939
'exists' => 'Le champ :attribute sélectionné est invalide.',
4040
'filled' => 'Le champ :attribute est obligatoire.',
4141
'image' => 'Le champ :attribute doit être une image.',
@@ -46,16 +46,16 @@
4646
'json' => 'Le champ :attribute doit être un document JSON valide.',
4747
'max' => [
4848
'numeric' => 'La valeur de :attribute ne peut être supérieure à :max.',
49-
'file' => 'Le fichier :attribute ne peut être plus gros que :max kilo-octets.',
49+
'file' => 'La taille du fichier de :attribute ne peut pas dépasser :max kilo-octets.',
5050
'string' => 'Le texte de :attribute ne peut contenir plus de :max caractères.',
51-
'array' => 'Le tableau :attribute ne peut avoir plus de :max éléments.',
51+
'array' => 'Le tableau :attribute ne peut contenir plus de :max éléments.',
5252
],
5353
'mimes' => 'Le champ :attribute doit être un fichier de type : :values.',
5454
'min' => [
5555
'numeric' => 'La valeur de :attribute doit être supérieure à :min.',
56-
'file' => 'Le fichier :attribute doit être plus gros que :min kilo-octets.',
56+
'file' => 'La taille du fichier de :attribute doit être supérieure à :min kilo-octets.',
5757
'string' => 'Le texte :attribute doit contenir au moins :min caractères.',
58-
'array' => 'Le tableau :attribute doit avoir au moins :min éléments.',
58+
'array' => 'Le tableau :attribute doit contenir au moins :min éléments.',
5959
],
6060
'not_in' => "Le champ :attribute sélectionné n'est pas valide.",
6161
'numeric' => 'Le champ :attribute doit contenir un nombre.',
@@ -111,7 +111,7 @@
111111
'attributes' => [
112112
'name' => 'Nom',
113113
'username' => 'Pseudo',
114-
'email' => 'E-mail',
114+
'email' => 'Adresse e-mail',
115115
'first_name' => 'Prénom',
116116
'last_name' => 'Nom',
117117
'password' => 'Mot de passe',

0 commit comments

Comments
 (0)