Skip to content
Snippets Groups Projects
Commit 23b7c282 authored by Sebastien's avatar Sebastien
Browse files

Merge branch 'tuleap-112-missing-translations-for-already-existing-email-address' into 'main'

Fix translation for email unique validation in register form

See merge request !29
parents c28f8604 0663ba5e
No related branches found
No related tags found
1 merge request!29Fix translation for email unique validation in register form
Pipeline #640 passed
...@@ -13,7 +13,7 @@ use Symfony\Component\Validator\Constraints as Assert; ...@@ -13,7 +13,7 @@ use Symfony\Component\Validator\Constraints as Assert;
/** /**
* @ORM\Entity(repositoryClass=UserRepository::class) * @ORM\Entity(repositoryClass=UserRepository::class)
* @ORM\Table(name="`user`") * @ORM\Table(name="`user`")
* @UniqueEntity(fields={"email"}, message="There is already an account with this email") * @UniqueEntity(fields={"email"}, message="email.unique")
*/ */
class User implements UserInterface, LegacyPasswordAuthenticatedUserInterface class User implements UserInterface, LegacyPasswordAuthenticatedUserInterface
{ {
......
...@@ -6,6 +6,7 @@ lastName: ...@@ -6,6 +6,7 @@ lastName:
email: email:
not_blank: Please enter your email adress not_blank: Please enter your email adress
unique: There is already an account with this email
password: password:
not_blank: Please enter your password not_blank: Please enter your password
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment