diff --git a/src/i18n/en_US.json b/src/i18n/en_US.json
index 98f7ddde6..f3ae339c9 100644
--- a/src/i18n/en_US.json
+++ b/src/i18n/en_US.json
@@ -890,6 +890,7 @@
"Participation without account": "Participation without account",
"Participations": "Participations",
"Password": "Password",
+ "Password and confirmation password must be identical.":"Password and confirmation password must be identical.",
"Password (confirmation)": "Password (confirmation)",
"Password reset": "Password reset",
"Past activities": "Passed activities",
@@ -1574,6 +1575,7 @@
"Your participation still has to be approved by the organisers.": "Your participation still has to be approved by the organisers.",
"Your participation will be validated once you click the confirmation link into the email, and after the organizer manually validates your participation.": "Your participation will be validated once you click the confirmation link into the email, and after the organizer manually validates your participation.",
"Your participation will be validated once you click the confirmation link into the email.": "Your participation will be validated once you click the confirmation link into the email.",
+ "Your password has been successfully changed. You now need to logged-in with your new password.":"Your password has been successfully changed. You now need to logged-in with your new password.",
"Your position was not available.": "Your position was not available.",
"Your profile will be shown as contact.": "Your profile will be shown as contact.",
"Your timezone is currently set to {timezone}.": "Your timezone is currently set to {timezone}.",
diff --git a/src/i18n/fr_FR.json b/src/i18n/fr_FR.json
index 34a8ab97d..15b321473 100644
--- a/src/i18n/fr_FR.json
+++ b/src/i18n/fr_FR.json
@@ -892,6 +892,7 @@
"Participation without account": "Participation sans compte",
"Participations": "Participations",
"Password": "Mot de passe",
+ "Password and confirmation password must be identical.":"Le mot de passe et le mot de passe de confirmation doivent être identiques.",
"Password (confirmation)": "Mot de passe (confirmation)",
"Password reset": "R\u00e9initialisation du mot de passe",
"Past activities": "Activit\u00e9s pass\u00e9es",
@@ -1573,6 +1574,7 @@
"Your participation will be validated once you click the confirmation link into the email.": "Votre participation sera valid\u00e9e une fois que vous aurez cliqu\u00e9 sur le lien de confirmation contenu dans le courriel.",
"Your position was not available.": "Votre position n'\u00e9tait pas disponible.",
"Your profile will be shown as contact.": "Votre profil sera affich\u00e9 en tant que contact.",
+ "Your password has been successfully changed. You now need to logged-in with your new password.":"Votre mot de passe a bien été changé. Vous devez maintenant vous connecter avec votre nouveau mot de passe.",
"Your timezone is currently set to {timezone}.": "Votre fuseau horaire est actuellement d\u00e9fini \u00e0 {timezone}.",
"Your timezone was detected as {timezone}.": "Votre fuseau horaire a \u00e9t\u00e9 d\u00e9tect\u00e9 en tant que {timezone}.",
"Your timezone {timezone} isn't supported.": "Votre fuseau horaire {timezone} n'est pas support\u00e9.",
diff --git a/src/views/User/PasswordReset.vue b/src/views/User/PasswordReset.vue
index 6d77de77b..39a942c5b 100644
--- a/src/views/User/PasswordReset.vue
+++ b/src/views/User/PasswordReset.vue
@@ -20,6 +20,7 @@
minlength="6"
v-model="credentials.password"
expanded
+ @input="resetErrors()"
/>
@@ -31,18 +32,18 @@
minlength="6"
v-model="credentials.passwordConfirmation"
expanded
+ @input="resetErrors()"
/>
-
+ {{
+ $t("Reset my password")
+ }}