Skip to content

Commit

Permalink
French translation update + ErrorMessage params accessor from @zephyx (
Browse files Browse the repository at this point in the history
  • Loading branch information
zephyx authored May 31, 2024
1 parent c0fd0a6 commit b19f2ab
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions src/ErrorMessage.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@ public function key(): string
return $this->key;
}

public function params(): array
{
return $this->params;
}

public function addParam(string $key, mixed $value): self
{
$this->params[$key] = $value;
Expand Down
2 changes: 1 addition & 1 deletion src/Resources/i18n/fr.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
'rule.digits_between' => 'Le champ :attribute doit contenir entre :min et :max chiffres.',
'rule.email' => 'Le champ :attribute doit être une adresse email valide.',
'rule.ends_with' => 'Le champ :attribute doit se terminer par une des valeurs suivantes : :compare_with.',
'rule.exists' => 'Le champ :attribute sélectionné est invalide.',
'rule.exists' => 'Le champ :attribute sélectionné doit correspondre à un enregistrement existant.',
'rule.extension' => 'Le champ :attribute doit être un fichier de type :allowed_extensions.',
'rule.float' => 'Le champ :attribute doit être un nombre à virgule.',
'rule.in' => 'Le champ :attribute doit être une des valeurs suivantes :allowed_values.',
Expand Down

0 comments on commit b19f2ab

Please sign in to comment.